Repository: alexyoung/nodeinpractice
Branch: master
Commit: f05313b43a1a
Files: 359
Total size: 7.1 MB
Directory structure:
gitextract_9ul7wap6/
├── ERRATA.md
├── LICENSE
├── Makefile
├── README.md
├── contributions.md
└── listings/
├── README.md
├── buffers/
│ ├── buffers.js
│ ├── data-uri.js
│ ├── names.txt
│ ├── network.js
│ └── world.dbf
├── child-process/
│ ├── detached/
│ │ ├── detached.js
│ │ ├── longrun
│ │ ├── longrun.c
│ │ ├── longrun.err
│ │ └── longrun.out
│ ├── fork/
│ │ ├── child.js
│ │ └── parent.js
│ ├── ipc/
│ │ ├── ipc
│ │ ├── ipc-pl.js
│ │ ├── ipc-py.js
│ │ ├── ipc-rb.js
│ │ ├── ipc.c
│ │ ├── ipc.js
│ │ ├── ipc.pl
│ │ ├── ipc.py
│ │ └── ipc.rb
│ ├── pool/
│ │ ├── example.js
│ │ ├── pooler.js
│ │ └── worker.js
│ └── sync/
│ ├── error.js
│ ├── execFileSync.js
│ ├── execSync.js
│ ├── spawnError.js
│ └── spawnSync.js
├── debugging/
│ ├── debug/
│ │ ├── start.js
│ │ ├── start2.js
│ │ ├── start3.js
│ │ └── start4.js
│ ├── exceptions/
│ │ ├── domain.js
│ │ ├── stable.js
│ │ └── unstable.js
│ ├── inspector/
│ │ └── test.js
│ ├── memory/
│ │ ├── heapdump-32047931.395300.heapsnapshot
│ │ ├── heapdump-32067948.553924.heapsnapshot
│ │ ├── leak1.js
│ │ ├── leak2.js
│ │ └── leak3.js
│ ├── prof/
│ │ ├── iotest.js
│ │ ├── test.js
│ │ └── v8.log
│ ├── repl/
│ │ ├── repl-app.js
│ │ ├── repl-basic.js
│ │ ├── repl-client.js
│ │ ├── repl-tcp-terminal.js
│ │ └── repl-tcp.js
│ └── trace/
│ └── hello.js
├── events/
│ ├── category.js
│ ├── connect-utils-merge.js
│ ├── detect-2.js
│ ├── errors.js
│ ├── events-domains.js
│ ├── express-1.js
│ ├── inherit-2.js
│ ├── inherit-3.js
│ ├── inherit.js
│ ├── js-signals.js
│ ├── mixin-1.js
│ ├── mqtest.js
│ ├── rabbitmq.js
│ ├── redis-pubsub.js
│ ├── reflection-1.js
│ ├── reflection-2.js
│ ├── reflection-3.js
│ └── short.js
├── file-system/
│ ├── database/
│ │ ├── client.js
│ │ └── database.js
│ ├── locking/
│ │ ├── index.js
│ │ └── locker.js
│ ├── posix/
│ │ ├── file.txt
│ │ └── posix.js
│ ├── recursive/
│ │ ├── dir-a/
│ │ │ ├── dir-b/
│ │ │ │ ├── file-c.js
│ │ │ │ └── file-d.txt
│ │ │ ├── file-a.js
│ │ │ └── file-b.txt
│ │ └── finder.js
│ ├── sync-cost/
│ │ ├── bad.js
│ │ └── good.js
│ └── watching/
│ ├── watchdir/
│ │ └── file.js
│ ├── watcher.js
│ └── watchfile
├── globals/
│ ├── arch.js
│ ├── arguments-benchmark.js
│ ├── arguments-status-code.js
│ ├── arguments.js
│ ├── bad-nexttick.js
│ ├── cleartimeout.js
│ ├── console-1.js
│ ├── group/
│ │ ├── index.js
│ │ ├── one.js
│ │ ├── package-text.json
│ │ ├── package.json
│ │ └── two.js
│ ├── group_example.js
│ ├── module-2.js
│ ├── module-3.js
│ ├── myclass.js
│ ├── nexttick-order.js
│ ├── nexttick.js
│ ├── npm.txt
│ ├── npm.txt2
│ ├── paths.js
│ ├── process.js
│ ├── setinterval-unref.js
│ ├── setinterval.js
│ ├── settimeout-bind.js
│ └── signals.js
├── intro/
│ ├── bad-scope.js
│ ├── bad-semi.js
│ ├── equality-strict.js
│ ├── equality.js
│ ├── first-project/
│ │ ├── countstream.js
│ │ ├── index.js
│ │ ├── package.json
│ │ └── test.js
│ ├── http.js
│ ├── null-string.js
│ └── null.js
├── modules/
│ ├── fastfib/
│ │ ├── benchmark/
│ │ │ └── index.js
│ │ ├── bin/
│ │ │ └── index.js
│ │ ├── index.js
│ │ ├── lib/
│ │ │ ├── bigiter.js
│ │ │ ├── iter.js
│ │ │ ├── recurse.js
│ │ │ └── tail.js
│ │ ├── package.json
│ │ └── test/
│ │ └── index.js
│ └── fastfibserver/
│ ├── package.json
│ └── server.js
├── network/
│ ├── client.js
│ ├── dns-lookup.js
│ ├── dns-resolve.js
│ ├── http-instruments-test.js
│ ├── http.js
│ ├── https-client.js
│ ├── https.js
│ ├── nagle.js
│ ├── proxy.js
│ ├── redirects.js
│ ├── server.js
│ ├── tls-client.js
│ ├── tls.js
│ ├── udp-chat.js
│ └── udp-client-server.js
├── production/
│ ├── apache.conf
│ ├── haproxy/
│ │ ├── .vagrant/
│ │ │ └── machines/
│ │ │ └── default/
│ │ │ └── virtualbox/
│ │ │ ├── action_provision
│ │ │ ├── action_set_name
│ │ │ └── id
│ │ ├── Vagrantfile
│ │ ├── haproxy.cfg
│ │ ├── haproxy2.cfg
│ │ └── vagrant.ssh.config
│ ├── http-proxy-scale.js
│ ├── http-proxy-ws.js
│ ├── http-proxy.js
│ ├── inky/
│ │ ├── .vagrant/
│ │ │ └── machines/
│ │ │ └── default/
│ │ │ └── virtualbox/
│ │ │ ├── action_provision
│ │ │ ├── action_set_name
│ │ │ └── id
│ │ ├── Vagrantfile
│ │ ├── app.js
│ │ ├── models/
│ │ │ └── posts.json
│ │ ├── package.json
│ │ ├── public/
│ │ │ └── css/
│ │ │ └── style.css
│ │ ├── routes/
│ │ │ └── index.js
│ │ ├── server.js
│ │ ├── vagrant.ssh.config
│ │ └── views/
│ │ ├── index.jade
│ │ └── layout.jade
│ ├── inky-cluster/
│ │ ├── .vagrant/
│ │ │ └── machines/
│ │ │ └── default/
│ │ │ └── virtualbox/
│ │ │ ├── action_provision
│ │ │ ├── action_set_name
│ │ │ └── id
│ │ ├── Vagrantfile
│ │ ├── app.js
│ │ ├── models/
│ │ │ └── posts.json
│ │ ├── package.json
│ │ ├── public/
│ │ │ └── css/
│ │ │ └── style.css
│ │ ├── routes/
│ │ │ └── index.js
│ │ ├── server-1.js
│ │ ├── server-single.js
│ │ ├── server.js
│ │ ├── vagrant.ssh.config
│ │ └── views/
│ │ ├── index.jade
│ │ └── layout.jade
│ ├── logrotate.conf
│ ├── nginx-websockets.conf
│ ├── nginx.conf
│ ├── runit.sh
│ ├── runit.txt
│ ├── upstart.conf
│ └── vagrant_nginx/
│ ├── .vagrant/
│ │ └── machines/
│ │ └── default/
│ │ └── virtualbox/
│ │ ├── action_provision
│ │ ├── action_set_name
│ │ └── id
│ ├── Vagrantfile
│ └── vagrant.ssh.config
├── streams/
│ ├── node-0.10/
│ │ ├── advanced-pipe.js
│ │ ├── buffer-size.js
│ │ ├── csvparser.js
│ │ ├── duplex.js
│ │ ├── errors.js
│ │ ├── express.js
│ │ ├── index.html
│ │ ├── json-line-reader.js
│ │ ├── json-lines.txt
│ │ ├── objectmode.js
│ │ ├── readable.js
│ │ ├── sample.csv
│ │ ├── static-web-gz.js
│ │ ├── static-web-server.js
│ │ ├── testing.js
│ │ ├── transform.js
│ │ ├── wrap.js
│ │ └── writable.js
│ └── node-0.8/
│ ├── advanced-pipe.js
│ ├── buffer-size.js
│ ├── csvparser.js
│ ├── duplex.js
│ ├── errors.js
│ ├── index.html
│ ├── json-line-reader.js
│ ├── json-lines.txt
│ ├── objectmode.js
│ ├── sample.csv
│ ├── static-web-gz.js
│ ├── static-web-server.js
│ ├── testing.js
│ ├── transform.js
│ └── writable.js
├── testing/
│ ├── assertions.js
│ ├── custom_assert.js
│ ├── deepequal.js
│ ├── iferror.js
│ ├── mocha-data-loading.js
│ ├── mocha-example-1/
│ │ ├── index.js
│ │ ├── package.json
│ │ └── test/
│ │ └── example_test.js
│ ├── mocha-example-web/
│ │ ├── index.js
│ │ ├── package.json
│ │ └── test/
│ │ ├── example_test.js
│ │ └── improved_test.js
│ ├── mocha-init.js
│ ├── mocha-sinon/
│ │ ├── db.js
│ │ ├── index.js
│ │ ├── package.json
│ │ ├── test/
│ │ │ ├── integration_equivalent.js
│ │ │ └── user_test.js
│ │ └── user.js
│ ├── runner/
│ │ ├── package-text.json
│ │ ├── package.json
│ │ ├── test-runner.js
│ │ ├── test.js
│ │ └── test2.js
│ ├── tap-example/
│ │ ├── index.js
│ │ ├── package.json
│ │ └── test/
│ │ └── index_test.js
│ ├── throws.js
│ └── travis-example/
│ ├── .travis.yml
│ ├── package.json
│ └── test.js
└── web/
├── browserify-1/
│ ├── bundle.js
│ ├── index.html
│ └── index.js
├── browserify-2/
│ ├── bundle.js
│ ├── index.html
│ ├── index.js
│ ├── messagebus.js
│ └── package.json
├── cheerio-manning/
│ ├── index.html
│ ├── index.js
│ └── package.json
├── config-dir/
│ ├── app.js
│ └── config/
│ ├── development.json
│ ├── index.js
│ ├── production.json
│ └── test.json
├── config-nconf/
│ ├── app.js
│ └── routes.js
├── config.js
├── csrf-tests/
│ ├── app.js
│ ├── middleware.js
│ ├── package.json
│ ├── server.js
│ └── test/
│ └── index.js
├── error-handling/
│ ├── app.js
│ ├── db.js
│ ├── errors.js
│ ├── package.json
│ ├── readme.md
│ ├── routes/
│ │ ├── index.js
│ │ └── notes.js
│ ├── server.js
│ └── test/
│ └── routes/
│ └── notes.js
├── events-structure/
│ ├── app.js
│ ├── emails/
│ │ └── index.js
│ ├── models/
│ │ └── user.js
│ ├── package.json
│ ├── readme.md
│ ├── routes/
│ │ ├── index.js
│ │ └── users.js
│ ├── server.js
│ └── tmp/
│ └── note.txt
├── express-middleware/
│ ├── package.json
│ └── server.js
├── express-rest/
│ ├── app.js
│ ├── db.js
│ ├── errors.js
│ ├── package.json
│ ├── routes/
│ │ ├── index.js
│ │ └── pages.js
│ └── server.js
├── express4/
│ ├── app.js
│ ├── package.json
│ └── restful.js
├── grunt-example/
│ ├── Gruntfile.js
│ ├── package.json
│ └── public/
│ └── index.html
├── nodemon.json
├── paypal-mock-test/
│ ├── app.js
│ ├── package.json
│ ├── paypal.js
│ ├── server.js
│ └── test/
│ ├── paypalmock.js
│ └── store_test.js
├── quick-connect.js
├── restify/
│ ├── app.js
│ ├── db.js
│ ├── errors.js
│ ├── package.json
│ ├── routes/
│ │ ├── index.js
│ │ └── pages.js
│ └── server.js
├── route-separation/
│ ├── app.js
│ ├── app_monolithic.js
│ ├── db.js
│ ├── errors.js
│ ├── package.json
│ ├── readme.md
│ ├── routes/
│ │ ├── index.js
│ │ └── notes.js
│ ├── server.js
│ └── test/
│ └── routes/
│ └── notes.js
├── testing-auth/
│ ├── app.js
│ ├── package.json
│ ├── server.js
│ └── test/
│ └── test_auth.js
├── watch/
│ ├── server.js
│ └── watch.js
└── websocket-sessions/
├── package.json
├── public/
│ └── index.html
└── server.js
================================================
FILE CONTENTS
================================================
================================================
FILE: ERRATA.md
================================================
# Node In Practice Errata
If you find any any errors in Node.js in Practice not listed below, or just find something that you think is not well explained, it would be most appreciated if you would post in the book's [Google Group](https://groups.google.com/forum/#!forum/nodejsinpractice) forum so that they may be collected here for everyone's benefit. Thanks!
### Formatting of newline characters
Some newline (`\n`) characters were truncated to simply an `n` character during production in various code examples in the book. For instance:
Page 97, Listing 5.6
```js
lineIndex = this._buffer.indexOf('n');
```
should be
```js
lineIndex = this._buffer.indexOf('\n');
```
================================================
FILE: LICENSE
================================================
The MIT License (MIT)
Copyright (c) 2014 Alex Young
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: Makefile
================================================
strip_xml_comments:
@find -E listings/ -type f -regex '.*\.(js|txt|txt2|html)' -exec sed -i '' -e 's/ \/\/
#include
#include
#include
int main () {
char buffer[80];
int rc;
while (rc = recv(3, buffer, sizeof(buffer), 0)) {
printf("child received: %s", buffer);
send(3, buffer, rc, 0);
memset(buffer, 0, sizeof(buffer));
}
}
================================================
FILE: listings/child-process/ipc/ipc.js
================================================
var cp = require('child_process')
var child = cp.spawn('./ipc', [], { stdio: [ 0, 1, 2, 'ipc'] })
child.on('message', function (msg) {
console.log('parent received:', msg)
})
child.send('monkeys')
child.send(true)
child.send('larger than the characters you have in your 80 char buffer object, hope you survive')
setTimeout(function () {
child.send(23)
child.send({ an: 'object' })
}, 2000)
console.log(child)
================================================
FILE: listings/child-process/ipc/ipc.pl
================================================
#!/usr/bin/env perl
use IO::Socket;
print 'NODE_CHANNEL_FD: '.$ENV{'NODE_CHANNEL_FD'};
my $ipc = IO::Socket->new();
$ipc->fdopen($ENV{'NODE_CHANNEL_FD'}, '+<');
while (my $line = $ipc->getline) {
print "child received: ".$line;
$ipc->send($line);
}
================================================
FILE: listings/child-process/ipc/ipc.py
================================================
#!/usr/bin/env python
import socket
import os
print 'NODE_CHANNEL_FD: ', os.environ['NODE_CHANNEL_FD'], '\n'
ipc = socket.fromfd(int(os.environ['NODE_CHANNEL_FD']), socket.AF_UNIX, socket.SOCK_STREAM)
while True:
line = ipc.recv(256)
print "child received", line
ipc.send(line)
================================================
FILE: listings/child-process/ipc/ipc.rb
================================================
#!/usr/bin/env ruby
require 'socket'
IPC = Socket.for_fd(ENV['NODE_CHANNEL_FD'].to_i)
loop do
data = IPC.recv(256)
puts 'child received', data
IPC.send(data, 0)
end
================================================
FILE: listings/child-process/pool/example.js
================================================
var http = require('http')
var makePool = require('./pooler')
var doJob = makePool('./worker')
http.createServer(function (req, res) {
doJob('send dummy job', function (er, data) {
if (er) return res.end('got an error:' + er.message)
res.end(data)
})
}).listen(3000)
================================================
FILE: listings/child-process/pool/pooler.js
================================================
var cp = require('child_process')
var cpus = require('os').cpus().length
module.exports = function (workModule) {
var awaiting = []
var readyPool = []
var poolSize = 0
return function doWork (job, cb) {
if (!readyPool.length && poolSize > cpus) return awaiting.push([ doWork, job, cb ]) // no process available, rerun later
var child = readyPool.length ? readyPool.shift() : (poolSize++, cp.fork(workModule))
var cbTriggered = false
child // this pattern always keeps one listener listening
.removeAllListeners()
.once('error', function (er) {
if (!cbTriggered) {
cb(er)
cbTriggered = true
}
child.kill()
})
.once('exit', function () {
if (!cbTriggered) cb(new Error('Child exited with code: ' + code))
poolSize--
var childIdx = readyPool.indexOf(child) // splice out child if it happened to be pushed back on the stack
if (childIdx > -1) readyPool.splice(childIdx, 1)
})
.once('message', function (msg) {
cb(null, msg)
cbTriggered = true
readyPool.push(child)
if (awaiting.length) setImmediate.apply(null, awaiting.shift())
})
.send(job)
}
}
================================================
FILE: listings/child-process/pool/worker.js
================================================
// var failTurn = Math.round(Math.random()*10)
// console.log('child process set to fail on', failTurn, 'turn')
process.on('message', function (job) {
for (var i = 0; i < 1000000000; i++);
process.send('finished: ' + job)
// if (--failTurn == 0) throw new Error('some horrible error occurred')
})
================================================
FILE: listings/child-process/sync/error.js
================================================
var ex = require('child_process').execFileSync
try {
ex('cd', ['non-existent-dir'], {
encoding: 'utf8'
})
} catch (er) {
console.log('exit status was', er.status)
console.log('stderr', er.stderr)
}
================================================
FILE: listings/child-process/sync/execFileSync.js
================================================
var ex = require('child_process').execFileSync
var stdout = ex('echo', ['hello']).toString()
console.log(stdout)
================================================
FILE: listings/child-process/sync/execSync.js
================================================
var ex = require('child_process').execSync
var stdout = ex('ps aux | grep node').toString()
console.log(stdout)
================================================
FILE: listings/child-process/sync/spawnError.js
================================================
var sp = require('child_process').spawnSync
try {
var ps = sp('cd', ['non-existant-dir'])
console.log(ps)
}
catch (er) {
console.log('error')
}
================================================
FILE: listings/child-process/sync/spawnSync.js
================================================
var sp = require('child_process').spawnSync
var ps = sp('ps', ['aux'])
var grep = sp('grep', ['node'], {
input: ps.stdout,
encoding: 'utf8'
})
console.log(grep)
================================================
FILE: listings/debugging/debug/start.js
================================================
var a = 0
function changeA () {
a = 50
}
function addToA (toAdd) {
a += toAdd
}
changeA()
addToA(25)
addToA(25)
================================================
FILE: listings/debugging/debug/start2.js
================================================
var a = 0
function changeA () {
debugger
a = 100
}
function addToA (toAdd) {
a += toAdd
}
changeA()
addToA(25)
addToA(25)
================================================
FILE: listings/debugging/debug/start3.js
================================================
var a = 0
function changeA () {
a = 100
foo = baz
}
function addToA (toAdd) {
a += toAdd
}
changeA()
addToA(25)
addToA(25)
================================================
FILE: listings/debugging/debug/start4.js
================================================
var util = require('util')
var a = 0
util.log('starting')
function changeA () {
a = 100
}
function addToA (toAdd) {
a += toAdd
}
changeA()
addToA(25)
addToA(25)
util.log('ending')
================================================
FILE: listings/debugging/exceptions/domain.js
================================================
var domain = require('domain')
var http = require('http')
var d = domain.create()
d.on('error', function () {
console.error(er)
server.close()
setTimeout(process.exit, 15000, 1)
})
d.run(function () {
var server = http.createServer(function (req, res) {
response.end('data') // ReferenceError
})
server.listen(3000)
})
================================================
FILE: listings/debugging/exceptions/stable.js
================================================
var http = require('http')
var server = http.createServer(function (req, res) {
response.end('data') // ReferenceError
})
server.listen(3000)
process.on('uncaughtException', function (er) {
console.error(er)
server.close()
setTimeout(process.exit, 15000, 1)
})
================================================
FILE: listings/debugging/exceptions/unstable.js
================================================
var http = require('http')
var server = http.createServer(function (req, res) {
response.end('data') // ReferenceError
})
server.listen(3000)
process.on('uncaughtException', function (er) {
console.error(er)
})
================================================
FILE: listings/debugging/inspector/test.js
================================================
var http = require('http')
var server = http.createServer()
server.on('request', function (req, res) {
res.end('Hello World')
})
server.listen(3000)
================================================
FILE: listings/debugging/memory/heapdump-32047931.395300.heapsnapshot
================================================
{"snapshot":{"title":"","uid":1,"meta":{"node_fields":["type","name","id","self_size","edge_count"],"node_types":[["hidden","array","string","object","code","closure","regexp","number","native","synthetic"],"string","number","number","number","number","number"],"edge_fields":["type","name_or_index","to_node"],"edge_types":[["context","element","property","internal","hidden","shortcut","weak"],"string_or_number","node"]},"node_count":28559,"edge_count":93469},
"nodes":[3,1,1,0,3
,3,2,3,0,12
,3,3,9,0,193
,3,4,11,0,1
,3,5,31,0,1
,3,6,15,0,42
,3,7,17,0,3
,3,8,19,0,2
,3,9,21,0,11
,3,10,23,0,85
,3,11,25,0,89
,3,12,27,0,58
,3,13,5,0,2
,3,14,7,0,42
,0,15,33,32,2
,0,16,35,64,1
,2,17,37,32,0
,0,15,39,32,3
,2,18,41,40,0
,7,19,43,16,1
,0,15,45,32,2
,2,20,47,32,0
,0,15,49,32,2
,2,21,51,32,0
,0,15,53,32,2
,2,22,55,32,0
,0,15,57,32,2
,2,23,59,40,0
,0,15,61,32,2
,2,24,63,56,0
,0,15,65,32,2
,2,25,67,48,0
,0,26,69,16,1
,0,16,71,64,1
,1,1,73,24,0
,0,16,75,64,1
,1,1,77,24,0
,1,1,79,1040,23
,2,27,81,32,0
,2,28,83,32,0
,2,29,85,32,0
,2,30,87,32,0
,2,31,89,32,0
,2,32,91,32,0
,2,33,93,32,0
,2,34,95,32,0
,2,35,97,32,0
,2,36,99,32,0
,2,37,101,32,0
,2,38,103,32,0
,2,39,105,32,0
,2,40,107,32,0
,2,41,109,32,0
,2,42,111,32,0
,2,43,113,32,0
,2,44,115,32,0
,2,45,117,32,0
,2,46,119,32,0
,2,47,121,32,0
,2,48,123,32,0
,2,49,125,32,0
,1,1,127,2064,0
,1,1,129,2064,0
,4,50,131,160,7
,2,50,133,32,0
,4,51,135,512,12
,1,52,137,56,2
,4,51,139,544,5
,2,53,141,24,0
,0,16,143,64,1
,5,50,145,72,23
,5,54,147,72,7
,5,55,149,72,7
,5,56,151,72,7
,5,57,153,72,7
,5,58,155,72,7
,5,59,157,72,7
,5,60,159,72,7
,5,61,161,72,7
,5,62,163,72,6
,5,63,165,72,7
,5,64,167,72,7
,5,65,169,72,7
,5,66,171,72,7
,5,67,173,72,7
,5,68,175,72,11
,3,50,177,24,13
,1,69,179,32,1
,0,70,181,48,4
,1,1,183,16,0
,0,16,185,64,3
,0,16,187,64,24
,5,71,189,72,6
,5,72,191,72,7
,5,73,193,72,6
,5,74,195,72,6
,5,75,197,72,7
,5,76,199,72,6
,5,77,201,72,6
,5,78,203,72,6
,5,79,205,72,6
,5,80,207,72,6
,0,16,209,64,3
,4,68,211,160,7
,2,68,213,32,0
,4,51,215,128,3
,4,1,217,120,3
,5,81,219,72,9
,5,82,221,72,6
,5,71,223,72,6
,5,83,225,72,6
,5,84,227,72,6
,0,85,229,544,55
,0,16,231,64,3
,2,86,233,32,0
,0,16,235,64,1
,0,87,237,16,1
,0,88,239,24,3
,0,16,241,64,1
,5,89,243,72,7
,0,88,245,24,3
,0,88,247,24,3
,0,88,249,24,3
,0,88,251,24,3
,0,88,253,24,3
,4,89,255,160,6
,2,89,257,40,0
,4,51,259,128,3
,1,90,261,824,1
,0,16,263,64,3
,4,91,265,160,6
,2,53,267,24,0
,4,51,269,128,3
,5,53,271,72,8
,3,50,273,24,4
,0,16,275,64,5
,0,16,277,64,3
,3,50,279,56,69
,5,53,281,72,8
,5,92,283,72,8
,5,93,285,72,9
,5,94,287,72,9
,5,95,289,72,9
,7,19,291,16,1
,3,96,293,24,4
,3,50,295,32,2
,5,97,297,72,9
,5,98,299,72,6
,5,53,301,72,8
,5,53,303,72,14
,5,99,305,72,6
,5,53,307,72,14
,5,53,309,72,8
,5,100,311,72,8
,5,101,313,72,6
,5,102,315,72,9
,5,53,317,72,8
,5,53,319,72,8
,5,103,321,72,9
,5,104,323,72,11
,5,105,325,72,8
,5,53,327,72,14
,5,53,329,72,8
,5,106,331,72,8
,5,107,333,72,16
,5,53,335,72,14
,5,108,337,72,9
,5,109,339,72,9
,5,110,341,72,9
,5,111,343,72,52
,3,112,345,104,28
,5,113,347,72,8
,5,53,349,72,14
,5,114,351,72,6
,5,115,353,72,6
,5,116,355,72,6
,5,117,357,72,11
,5,118,359,72,8
,5,119,361,72,8
,5,120,363,72,9
,5,53,365,72,14
,5,53,367,72,8
,5,121,369,72,8
,3,122,371,24,64
,5,123,373,72,9
,5,124,375,72,9
,0,88,377,24,2
,5,125,379,72,6
,5,126,381,72,6
,5,127,383,72,6
,5,128,385,72,30
,5,53,387,72,8
,5,129,389,72,6
,5,130,391,72,6
,3,50,393,552,507
,1,131,395,3128,125
,0,16,397,64,3
,4,91,399,160,6
,2,132,401,32,0
,5,53,403,72,8
,3,50,405,24,3
,0,16,407,64,3
,0,16,409,64,3
,4,81,411,160,7
,2,81,413,32,0
,4,51,415,1216,60
,1,52,417,112,9
,1,69,419,32,1
,0,16,421,64,3
,4,120,423,160,6
,2,120,425,32,0
,4,51,427,800,5
,4,51,429,800,5
,5,133,431,72,6
,3,120,433,32,24
,0,16,435,64,3
,0,16,437,64,6
,4,107,439,160,7
,2,107,441,32,0
,4,51,443,480,11
,1,52,445,64,3
,7,19,447,16,1
,7,19,449,16,1
,7,19,451,16,1
,7,19,453,16,1
,5,98,455,72,6
,5,114,457,72,6
,3,107,459,32,9
,1,131,461,56,5
,0,16,463,64,3
,0,16,465,64,3
,4,113,467,160,7
,2,113,469,32,0
,4,51,471,416,12
,1,52,473,56,2
,3,113,475,32,5
,0,16,477,64,3
,4,110,479,160,7
,2,110,481,32,0
,4,51,483,544,12
,1,52,485,64,3
,4,51,487,512,6
,5,134,489,72,6
,3,110,491,32,39
,0,16,493,64,3
,0,16,495,64,4
,4,117,497,160,7
,2,117,499,32,0
,4,51,501,2080,77
,1,52,503,144,13
,5,135,505,72,6
,5,136,507,72,6
,5,137,509,72,6
,3,117,511,96,58
,0,16,513,64,3
,0,16,515,64,3
,4,111,517,160,7
,2,111,519,32,0
,4,51,521,480,13
,1,52,523,64,3
,5,53,525,72,7
,5,53,527,72,7
,5,53,529,72,7
,5,53,531,72,7
,5,138,533,72,6
,5,53,535,72,7
,5,139,537,72,6
,5,140,539,72,6
,5,141,541,72,6
,5,53,543,72,6
,5,53,545,72,6
,5,53,547,72,6
,5,53,549,72,6
,5,53,551,72,6
,5,53,553,72,6
,5,53,555,72,6
,5,53,557,72,6
,5,53,559,72,6
,6,53,561,72,12
,0,16,563,64,3
,0,16,565,64,4
,4,96,567,160,6
,2,96,569,32,0
,5,96,571,72,8
,0,16,573,64,3
,5,136,575,72,7
,5,142,577,72,7
,0,16,579,64,4
,4,143,581,160,6
,2,143,583,40,0
,4,51,585,640,6
,0,16,587,64,5
,5,143,589,72,8
,0,88,591,24,3
,0,88,593,24,3
,4,91,595,160,6
,2,144,597,48,0
,5,53,599,72,8
,3,50,601,24,3
,0,16,603,64,3
,4,91,605,160,6
,4,51,607,128,3
,5,53,609,72,8
,3,50,611,24,3
,0,16,613,64,3
,4,91,615,160,6
,4,51,617,128,3
,5,53,619,72,8
,3,50,621,24,3
,0,16,623,64,3
,1,145,625,24,1
,1,1,627,304,1
,1,146,629,528,0
,4,91,631,160,6
,2,147,633,32,0
,5,53,635,72,8
,0,16,637,64,2
,5,148,639,72,7
,5,149,641,72,6
,5,150,643,72,6
,5,151,645,72,6
,5,152,647,72,6
,5,153,649,72,7
,5,154,651,72,7
,5,155,653,72,6
,5,156,655,72,7
,5,135,657,72,6
,5,157,659,72,6
,5,158,661,72,7
,5,159,663,72,6
,3,120,665,32,3
,5,160,667,72,6
,5,161,669,72,6
,5,162,671,72,6
,5,163,673,72,6
,5,164,675,72,6
,5,165,677,72,6
,3,166,679,32,3
,5,167,681,72,6
,5,168,683,72,6
,5,169,685,72,6
,5,170,687,72,7
,5,171,689,72,6
,3,166,691,32,123
,5,172,693,72,6
,5,173,695,72,6
,5,174,697,72,6
,5,175,699,72,7
,5,176,701,72,6
,5,177,703,72,6
,5,178,705,72,6
,5,179,707,72,7
,5,180,709,72,6
,5,181,711,72,6
,5,182,713,72,7
,5,183,715,72,7
,5,184,717,72,6
,5,185,719,72,7
,5,186,721,72,6
,5,187,723,72,6
,5,188,725,72,6
,5,189,727,72,6
,5,190,729,72,6
,5,191,731,72,7
,5,73,733,72,6
,5,192,735,72,6
,5,193,737,72,6
,3,97,739,104,7
,5,194,741,72,7
,5,195,743,72,6
,5,196,745,72,6
,5,197,747,72,6
,5,198,749,72,6
,5,199,751,72,6
,5,200,753,72,6
,5,201,755,72,7
,5,202,757,72,7
,5,203,759,72,6
,5,204,761,72,6
,5,205,763,72,6
,5,206,765,72,7
,5,207,767,72,6
,5,208,769,72,6
,5,209,771,72,6
,5,210,773,72,6
,5,211,775,72,6
,5,212,777,72,7
,5,213,779,72,6
,5,214,781,72,6
,5,215,783,72,7
,5,216,785,72,6
,5,217,787,72,7
,5,218,789,72,6
,5,219,791,72,7
,5,220,793,72,6
,5,221,795,72,6
,5,222,797,72,7
,5,223,799,72,6
,5,224,801,72,7
,5,225,803,72,6
,5,226,805,72,6
,5,227,807,72,6
,5,228,809,72,6
,5,229,811,72,6
,5,230,813,72,6
,5,231,815,72,6
,5,232,817,72,6
,5,233,819,72,7
,5,234,821,72,6
,5,235,823,72,6
,5,73,825,72,6
,5,236,827,72,6
,5,237,829,72,6
,5,238,831,72,6
,5,239,833,72,6
,5,71,835,72,6
,5,240,837,72,6
,5,241,839,72,6
,5,242,841,72,6
,5,243,843,72,6
,5,244,845,72,6
,5,245,847,72,6
,5,246,849,72,6
,5,247,851,72,7
,5,248,853,72,6
,5,249,855,72,6
,5,250,857,72,6
,5,251,859,72,7
,5,252,861,72,6
,5,253,863,72,6
,5,254,865,72,6
,5,255,867,72,6
,5,256,869,72,6
,5,257,871,72,6
,5,258,873,72,6
,5,259,875,72,6
,5,260,877,72,6
,5,261,879,72,7
,5,262,881,72,6
,5,263,883,72,7
,5,264,885,72,6
,5,265,887,72,6
,5,266,889,72,6
,5,267,891,72,6
,5,268,893,72,7
,5,73,895,72,6
,5,269,897,72,6
,5,270,899,72,7
,5,271,901,72,7
,5,272,903,72,6
,5,273,905,72,6
,5,274,907,72,6
,5,275,909,72,6
,5,276,911,72,6
,5,277,913,72,6
,5,278,915,72,7
,5,279,917,72,6
,5,280,919,72,6
,5,281,921,72,6
,5,282,923,72,6
,5,283,925,72,6
,5,284,927,72,6
,5,285,929,72,6
,5,286,931,72,7
,5,287,933,72,6
,3,166,935,32,2
,5,288,937,72,6
,5,289,939,72,7
,5,290,941,72,6
,5,291,943,72,7
,5,292,945,72,7
,5,293,947,72,6
,5,294,949,72,7
,5,295,951,72,7
,5,296,953,72,6
,5,297,955,72,6
,5,298,957,72,6
,5,299,959,72,6
,5,300,961,72,7
,5,301,963,72,6
,5,302,965,72,6
,5,303,967,72,6
,5,304,969,72,7
,5,305,971,72,6
,5,306,973,72,7
,5,307,975,72,6
,5,308,977,72,6
,5,309,979,72,6
,5,310,981,72,6
,5,311,983,72,6
,3,166,985,32,5
,5,71,987,72,6
,5,312,989,72,6
,5,313,991,72,6
,5,314,993,72,6
,3,120,995,32,10
,5,315,997,72,6
,5,316,999,72,6
,5,317,1001,72,6
,5,318,1003,72,6
,5,319,1005,72,6
,5,320,1007,72,6
,5,321,1009,72,7
,5,322,1011,72,6
,5,71,1013,72,6
,5,323,1015,72,6
,5,324,1017,72,6
,5,325,1019,72,6
,5,326,1021,72,6
,3,120,1023,32,15
,5,327,1025,72,7
,5,328,1027,72,6
,5,329,1029,72,6
,5,112,1031,72,8
,5,72,1033,72,6
,5,330,1035,72,7
,5,331,1037,72,6
,5,71,1039,72,7
,5,332,1041,72,6
,5,333,1043,72,6
,5,334,1045,72,6
,5,335,1047,72,6
,5,336,1049,72,6
,5,337,1051,72,7
,5,338,1053,72,6
,5,339,1055,72,6
,5,340,1057,72,6
,5,341,1059,72,7
,5,342,1061,72,6
,5,343,1063,72,7
,5,344,1065,72,6
,5,345,1067,72,7
,5,346,1069,72,6
,5,347,1071,72,6
,5,71,1073,72,6
,5,348,1075,72,7
,5,349,1077,72,7
,5,350,1079,72,6
,5,351,1081,72,6
,5,352,1083,72,7
,5,353,1085,72,7
,5,354,1087,72,6
,5,355,1089,72,6
,5,356,1091,72,6
,5,357,1093,72,7
,5,358,1095,72,6
,5,359,1097,72,7
,5,360,1099,72,6
,5,361,1101,72,8
,5,362,1103,72,7
,5,363,1105,72,7
,5,364,1107,72,7
,5,365,1109,72,6
,5,166,1111,72,8
,5,366,1113,72,6
,5,367,1115,72,6
,5,278,1117,72,7
,5,368,1119,72,6
,5,369,1121,72,6
,5,370,1123,72,6
,5,371,1125,72,7
,5,372,1127,72,7
,3,50,1129,40,4
,5,373,1131,72,6
,5,374,1133,72,6
,5,375,1135,72,6
,5,376,1137,72,6
,5,377,1139,72,7
,5,378,1141,72,6
,5,379,1143,72,6
,5,380,1145,72,6
,5,381,1147,72,6
,5,382,1149,72,6
,3,166,1151,32,3
,5,383,1153,72,6
,5,384,1155,72,6
,5,385,1157,72,6
,5,386,1159,72,6
,5,387,1161,72,6
,5,388,1163,72,6
,5,72,1165,72,7
,5,389,1167,72,7
,5,390,1169,72,6
,5,391,1171,72,6
,5,392,1173,72,6
,5,393,1175,72,6
,5,394,1177,72,6
,3,120,1179,32,15
,5,395,1181,72,7
,5,396,1183,72,7
,5,397,1185,72,8
,5,398,1187,72,7
,5,399,1189,72,6
,5,400,1191,72,6
,5,401,1193,72,7
,5,71,1195,72,7
,5,402,1197,72,7
,5,403,1199,72,7
,5,404,1201,72,8
,5,405,1203,72,6
,5,406,1205,72,6
,5,407,1207,72,6
,5,408,1209,72,6
,5,409,1211,72,6
,5,410,1213,72,6
,5,411,1215,72,6
,5,412,1217,72,7
,5,413,1219,72,6
,5,414,1221,72,7
,5,415,1223,72,6
,3,166,1225,32,3
,5,416,1227,72,6
,5,417,1229,72,6
,5,418,1231,72,7
,5,419,1233,72,6
,5,72,1235,72,6
,5,420,1237,72,6
,5,421,1239,72,6
,5,422,1241,72,6
,5,423,1243,72,6
,5,424,1245,72,6
,5,425,1247,72,6
,5,426,1249,72,6
,5,427,1251,72,6
,5,428,1253,72,6
,5,429,1255,72,6
,5,430,1257,72,6
,5,175,1259,72,7
,5,431,1261,72,6
,3,50,1263,24,2
,5,432,1265,72,7
,5,433,1267,72,6
,5,434,1269,72,6
,5,71,1271,72,6
,5,435,1273,72,6
,5,436,1275,72,7
,5,437,1277,72,6
,5,438,1279,72,6
,5,439,1281,72,6
,5,440,1283,72,6
,5,441,1285,72,6
,5,442,1287,72,6
,5,443,1289,72,7
,5,444,1291,72,7
,5,445,1293,72,6
,5,446,1295,72,6
,5,447,1297,72,7
,5,448,1299,72,6
,5,449,1301,72,6
,5,450,1303,72,7
,5,451,1305,72,7
,5,452,1307,72,6
,5,453,1309,72,6
,5,454,1311,72,7
,5,455,1313,72,7
,3,120,1315,32,5
,5,456,1317,72,7
,5,457,1319,72,7
,5,458,1321,72,6
,5,459,1323,72,6
,5,460,1325,72,6
,5,461,1327,72,6
,5,73,1329,72,6
,5,462,1331,72,6
,5,463,1333,72,6
,5,464,1335,72,6
,3,50,1337,24,3
,5,465,1339,72,6
,3,120,1341,32,10
,5,466,1343,72,7
,5,467,1345,72,6
,5,468,1347,72,6
,5,469,1349,72,7
,5,470,1351,72,6
,5,471,1353,72,6
,1,131,1355,24632,885
,0,16,1357,64,2
,4,51,1359,2336,50
,4,51,1361,544,9
,4,51,1363,1312,25
,4,51,1365,800,24
,4,51,1367,416,12
,4,51,1369,416,12
,4,51,1371,416,12
,4,51,1373,416,12
,4,51,1375,416,12
,4,51,1377,576,15
,4,51,1379,416,12
,4,51,1381,320,10
,4,51,1383,320,10
,4,51,1385,416,12
,4,51,1387,576,15
,4,51,1389,416,12
,4,51,1391,288,12
,4,51,1393,576,19
,4,51,1395,896,32
,4,51,1397,320,11
,4,51,1399,544,18
,4,51,1401,544,18
,4,51,1403,352,12
,4,51,1405,320,10
,4,51,1407,256,9
,4,51,1409,256,9
,4,51,1411,256,9
,4,51,1413,800,19
,4,51,1415,800,18
,4,51,1417,1440,48
,4,51,1419,288,13
,4,91,1421,160,6
,5,53,1423,72,7
,4,361,1425,160,7
,2,361,1427,32,0
,4,51,1429,288,13
,1,52,1431,56,2
,3,361,1433,24,18
,0,16,1435,64,4
,1,131,1437,72,0
,0,16,1439,64,3
,4,1,1441,120,3
,0,87,1443,16,1
,4,404,1445,160,6
,2,404,1447,40,0
,3,50,1449,24,2
,0,16,1451,64,3
,0,16,1453,64,3
,4,166,1455,160,6
,2,166,1457,40,0
,4,51,1459,800,5
,3,50,1461,24,5
,0,16,1463,64,4
,5,472,1465,72,6
,5,473,1467,72,6
,0,16,1469,64,3
,4,474,1471,120,4
,2,475,1473,40,0
,2,474,1475,48,0
,0,87,1477,16,1
,4,384,1479,160,8
,2,384,1481,32,0
,1,52,1483,64,3
,4,467,1485,160,8
,2,467,1487,40,0
,1,52,1489,56,2
,4,173,1491,160,8
,2,173,1493,32,0
,1,52,1495,96,7
,4,393,1497,160,8
,2,393,1499,32,0
,1,52,1501,72,4
,4,329,1503,160,8
,2,329,1505,40,0
,1,52,1507,56,2
,4,326,1509,160,8
,2,326,1511,40,0
,1,52,1513,64,3
,4,355,1515,160,8
,2,355,1517,32,0
,1,52,1519,64,3
,4,246,1521,160,8
,2,246,1523,32,0
,1,52,1525,64,3
,4,423,1527,160,8
,2,423,1529,32,0
,1,52,1531,64,3
,4,283,1533,160,8
,2,283,1535,32,0
,1,52,1537,64,3
,4,214,1539,160,8
,2,214,1541,32,0
,1,52,1543,64,3
,4,244,1545,160,8
,2,244,1547,32,0
,1,52,1549,64,3
,4,452,1551,160,8
,2,452,1553,32,0
,1,52,1555,64,3
,4,248,1557,160,8
,2,248,1559,40,0
,1,52,1561,56,2
,4,415,1563,160,8
,2,415,1565,32,0
,1,52,1567,56,2
,4,186,1569,160,8
,2,186,1571,32,0
,1,52,1573,64,3
,4,368,1575,160,8
,2,368,1577,32,0
,1,52,1579,64,3
,4,180,1581,160,8
,2,180,1583,32,0
,1,52,1585,64,3
,4,416,1587,160,8
,2,416,1589,32,0
,1,52,1591,64,3
,4,466,1593,160,8
,2,466,1595,32,0
,1,52,1597,56,2
,4,371,1599,160,8
,2,371,1601,40,0
,1,52,1603,80,5
,4,242,1605,160,8
,2,242,1607,40,0
,1,52,1609,64,3
,4,182,1611,160,8
,2,182,1613,48,0
,1,52,1615,64,3
,4,353,1617,160,8
,2,353,1619,56,0
,1,52,1621,64,3
,4,264,1623,160,8
,2,264,1625,48,0
,1,52,1627,80,5
,4,254,1629,160,8
,2,254,1631,64,0
,1,52,1633,72,4
,4,291,1635,160,8
,2,291,1637,40,0
,1,52,1639,64,3
,4,362,1641,160,8
,2,362,1643,40,0
,1,52,1645,56,2
,4,421,1647,160,8
,2,421,1649,40,0
,1,52,1651,48,1
,4,437,1653,160,8
,2,437,1655,40,0
,1,52,1657,48,1
,4,277,1659,160,8
,2,277,1661,40,0
,1,52,1663,48,1
,4,419,1665,160,8
,2,419,1667,40,0
,4,51,1669,640,17
,1,52,1671,64,3
,4,213,1673,160,8
,2,213,1675,40,0
,4,51,1677,640,12
,1,52,1679,56,2
,4,305,1681,160,8
,2,305,1683,32,0
,4,51,1685,640,15
,1,52,1687,56,2
,4,405,1689,160,7
,2,405,1691,48,0
,4,51,1693,160,4
,4,149,1695,160,8
,2,149,1697,32,0
,4,51,1699,608,17
,1,52,1701,56,2
,4,369,1703,160,8
,2,369,1705,48,0
,4,51,1707,544,18
,1,52,1709,56,2
,4,389,1711,160,8
,2,389,1713,32,0
,4,51,1715,704,25
,1,52,1717,56,2
,4,197,1719,160,7
,2,197,1721,40,0
,4,317,1723,160,8
,2,317,1725,32,0
,4,51,1727,352,11
,1,52,1729,56,2
,4,281,1731,160,7
,2,281,1733,32,0
,4,267,1735,160,7
,2,267,1737,40,0
,4,275,1739,160,7
,2,275,1741,40,0
,4,154,1743,160,7
,2,154,1745,40,0
,4,215,1747,160,7
,2,215,1749,40,0
,1,1,1751,864,98
,2,476,1753,32,0
,2,477,1755,32,0
,2,478,1757,32,0
,2,479,1759,32,0
,2,480,1761,40,0
,2,481,1763,32,0
,2,482,1765,32,0
,0,483,1767,32,2
,0,16,1769,64,1
,1,1,1771,32,1
,0,484,1773,16,0
,1,52,1775,56,2
,0,16,1777,64,1
,2,485,1779,32,0
,4,53,1781,160,8
,4,51,1783,864,57
,1,69,1785,32,1
,1,69,1787,40,1
,1,69,1789,32,1
,1,69,1791,32,1
,1,69,1793,48,1
,1,69,1795,32,1
,1,69,1797,32,1
,1,69,1799,32,1
,1,69,1801,32,1
,0,483,1803,32,1
,2,486,1805,32,0
,0,483,1807,32,1
,0,483,1809,32,1
,2,487,1811,32,0
,2,488,1813,32,0
,2,489,1815,32,0
,2,490,1817,32,0
,0,483,1819,32,1
,0,483,1821,32,1
,0,483,1823,32,1
,0,483,1825,32,1
,0,483,1827,32,1
,0,483,1829,32,1
,0,483,1831,32,1
,0,483,1833,32,1
,0,483,1835,32,1
,0,483,1837,32,1
,0,483,1839,32,1
,0,483,1841,32,1
,0,483,1843,32,1
,0,483,1845,32,1
,1,1,1847,32,0
,1,1,1849,32,1
,0,483,1851,32,1
,1,1,1853,24,0
,1,1,1855,32,1
,1,1,1857,24,0
,1,1,1859,32,1
,0,483,1861,32,1
,0,483,1863,32,1
,1,1,1865,24,0
,1,1,1867,32,1
,0,483,1869,32,1
,2,491,1871,40,0
,1,1,1873,24,0
,1,1,1875,32,1
,0,483,1877,32,1
,0,483,1879,32,1
,0,483,1881,32,1
,0,483,1883,32,1
,0,483,1885,32,1
,0,483,1887,32,1
,0,483,1889,32,1
,0,483,1891,32,1
,1,1,1893,32,0
,1,1,1895,32,0
,1,1,1897,32,1
,1,1,1899,32,0
,0,483,1901,32,1
,1,1,1903,32,0
,0,483,1905,32,1
,4,492,1907,120,4
,2,493,1909,40,0
,2,492,1911,48,0
,0,87,1913,16,1
,4,162,1915,160,8
,2,162,1917,40,0
,4,51,1919,736,29
,1,52,1921,96,7
,4,245,1923,160,8
,2,245,1925,48,0
,4,51,1927,1056,45
,1,52,1929,112,9
,4,114,1931,160,7
,2,114,1933,32,0
,4,98,1935,160,7
,2,98,1937,32,0
,4,115,1939,160,7
,2,115,1941,32,0
,4,99,1943,160,7
,2,99,1945,40,0
,4,129,1947,160,7
,2,129,1949,32,0
,4,417,1951,160,8
,2,417,1953,40,0
,4,51,1955,672,44
,1,52,1957,48,1
,4,71,1959,160,7
,2,71,1961,32,0
,4,72,1963,160,7
,2,72,1965,40,0
,4,73,1967,160,7
,2,73,1969,32,0
,4,74,1971,160,8
,2,74,1973,40,0
,4,51,1975,608,22
,1,52,1977,64,3
,4,75,1979,160,7
,2,75,1981,40,0
,4,76,1983,160,7
,2,76,1985,48,0
,4,77,1987,160,8
,2,77,1989,40,0
,4,51,1991,832,36
,1,52,1993,80,5
,4,78,1995,160,7
,2,78,1997,40,0
,4,79,1999,160,7
,2,79,2001,40,0
,4,80,2003,160,7
,2,80,2005,40,0
,4,54,2007,160,8
,2,54,2009,32,0
,4,51,2011,544,25
,1,52,2013,72,4
,4,273,2015,160,8
,2,273,2017,48,0
,4,51,2019,352,12
,1,52,2021,56,2
,4,379,2023,160,8
,2,379,2025,40,0
,4,51,2027,352,12
,1,52,2029,56,2
,4,249,2031,160,8
,2,249,2033,48,0
,4,51,2035,384,13
,1,52,2037,56,2
,4,394,2039,160,8
,2,394,2041,48,0
,4,51,2043,288,12
,1,52,2045,56,2
,4,401,2047,160,7
,2,401,2049,48,0
,4,460,2051,160,7
,2,460,2053,56,0
,4,212,2055,160,8
,2,212,2057,48,0
,4,51,2059,1984,86
,1,52,2061,80,5
,4,324,2063,160,7
,2,324,2065,56,0
,4,397,2067,160,8
,2,397,2069,48,0
,4,51,2071,544,31
,1,52,2073,48,1
,4,274,2075,160,8
,2,274,2077,64,0
,4,51,2079,672,34
,1,52,2081,64,3
,4,377,2083,160,7
,2,377,2085,32,0
,4,413,2087,160,7
,2,413,2089,40,0
,4,299,2091,160,7
,2,299,2093,40,0
,4,342,2095,160,7
,2,342,2097,40,0
,4,414,2099,160,7
,2,414,2101,40,0
,4,170,2103,160,7
,2,170,2105,32,0
,4,398,2107,160,7
,2,398,2109,48,0
,4,300,2111,160,8
,2,300,2113,48,0
,4,51,2115,5024,283
,1,52,2117,136,12
,4,263,2119,160,7
,2,263,2121,48,0
,4,334,2123,160,8
,2,334,2125,48,0
,4,51,2127,448,17
,1,52,2129,88,6
,4,59,2131,160,7
,2,59,2133,40,0
,4,60,2135,160,7
,2,60,2137,48,0
,4,183,2139,160,7
,2,183,2141,40,0
,4,61,2143,160,7
,2,61,2145,48,0
,4,55,2147,160,8
,2,55,2149,32,0
,4,51,2151,576,22
,1,52,2153,72,4
,4,56,2155,160,8
,2,56,2157,40,0
,4,51,2159,1088,31
,1,52,2161,104,8
,4,311,2163,160,8
,2,311,2165,56,0
,4,51,2167,832,20
,1,52,2169,72,4
,4,57,2171,160,8
,2,57,2173,40,0
,4,51,2175,960,47
,1,52,2177,96,7
,4,357,2179,160,7
,2,357,2181,32,0
,4,67,2183,160,7
,2,67,2185,32,0
,4,58,2187,160,7
,2,58,2189,32,0
,4,66,2191,160,7
,2,66,2193,48,0
,4,65,2195,160,7
,2,65,2197,32,0
,4,64,2199,160,7
,2,64,2201,32,0
,4,63,2203,160,7
,2,63,2205,40,0
,4,62,2207,160,7
,2,62,2209,32,0
,4,367,2211,160,8
,2,367,2213,40,0
,4,51,2215,1152,94
,1,52,2217,48,1
,4,71,2219,160,7
,4,73,2221,160,7
,4,411,2223,160,8
,2,411,2225,40,0
,4,51,2227,384,22
,1,52,2229,48,1
,4,71,2231,160,7
,4,72,2233,160,7
,4,73,2235,160,7
,4,447,2237,160,7
,2,447,2239,32,0
,4,247,2241,160,7
,2,247,2243,40,0
,4,341,2245,160,7
,2,341,2247,40,0
,4,98,2249,160,7
,4,114,2251,160,7
,4,193,2253,160,8
,2,193,2255,40,0
,4,51,2257,1280,91
,1,52,2259,48,1
,4,204,2261,160,7
,2,204,2263,48,0
,4,71,2265,160,7
,4,82,2267,160,7
,2,82,2269,32,0
,4,349,2271,160,8
,2,349,2273,40,0
,4,181,2275,160,8
,2,181,2277,40,0
,4,51,2279,384,22
,1,52,2281,48,1
,1,1,2283,1216,148
,2,494,2285,32,0
,2,495,2287,40,0
,2,496,2289,40,0
,2,497,2291,40,0
,2,498,2293,40,0
,2,499,2295,40,0
,2,500,2297,40,0
,2,501,2299,40,0
,2,502,2301,48,0
,2,503,2303,40,0
,2,504,2305,48,0
,2,505,2307,48,0
,2,506,2309,56,0
,2,507,2311,48,0
,2,508,2313,48,0
,2,509,2315,48,0
,2,510,2317,48,0
,2,511,2319,40,0
,2,512,2321,48,0
,2,513,2323,56,0
,2,514,2325,56,0
,2,515,2327,40,0
,2,516,2329,48,0
,2,517,2331,48,0
,2,518,2333,40,0
,2,519,2335,40,0
,2,520,2337,48,0
,2,521,2339,40,0
,2,522,2341,40,0
,2,523,2343,48,0
,2,524,2345,32,0
,2,525,2347,40,0
,2,526,2349,40,0
,2,527,2351,40,0
,2,528,2353,48,0
,2,529,2355,40,0
,2,530,2357,40,0
,2,531,2359,48,0
,2,532,2361,48,0
,2,533,2363,40,0
,2,534,2365,40,0
,2,535,2367,40,0
,2,536,2369,40,0
,4,53,2371,160,8
,4,91,2373,160,7
,2,537,2375,40,2
,4,91,2377,160,9
,4,51,2379,256,11
,1,52,2381,56,2
,2,538,2383,40,2
,1,1,2385,64,2
,4,91,2387,160,8
,4,51,2389,224,9
,1,52,2391,48,1
,4,91,2393,160,8
,4,51,2395,224,9
,1,52,2397,48,1
,4,91,2399,160,9
,4,51,2401,256,11
,1,52,2403,56,2
,2,539,2405,40,2
,1,1,2407,64,2
,4,91,2409,160,8
,4,51,2411,224,9
,1,52,2413,48,1
,4,91,2415,160,8
,4,51,2417,224,9
,1,52,2419,48,1
,4,91,2421,160,9
,4,51,2423,256,11
,1,52,2425,56,2
,2,540,2427,40,2
,1,1,2429,64,2
,4,91,2431,160,8
,4,51,2433,224,9
,1,52,2435,48,1
,4,91,2437,160,8
,4,51,2439,224,9
,1,52,2441,48,1
,4,91,2443,160,9
,4,51,2445,256,11
,1,52,2447,56,2
,2,541,2449,40,0
,1,1,2451,64,2
,4,91,2453,160,8
,4,51,2455,224,9
,1,52,2457,48,1
,4,91,2459,160,8
,4,51,2461,224,9
,1,52,2463,48,1
,4,91,2465,160,9
,4,51,2467,256,11
,1,52,2469,56,2
,2,542,2471,40,0
,1,1,2473,64,2
,4,91,2475,160,8
,4,51,2477,224,9
,1,52,2479,48,1
,4,91,2481,160,8
,4,51,2483,224,9
,1,52,2485,48,1
,4,91,2487,160,8
,1,1,2489,64,2
,4,91,2491,160,7
,4,91,2493,160,8
,4,51,2495,224,9
,1,52,2497,48,1
,4,53,2499,160,8
,4,53,2501,160,8
,0,483,2503,32,2
,1,1,2505,48,2
,0,484,2507,16,0
,0,484,2509,16,0
,1,52,2511,56,2
,4,53,2513,160,8
,4,51,2515,2592,165
,0,16,2517,64,3
,1,69,2519,32,1
,1,69,2521,32,1
,1,69,2523,32,1
,1,69,2525,40,1
,1,69,2527,56,1
,3,397,2529,24,35
,0,16,2531,64,5
,1,69,2533,40,1
,1,69,2535,32,1
,1,69,2537,32,1
,1,69,2539,32,1
,1,69,2541,80,1
,1,69,2543,48,1
,1,69,2545,32,1
,1,69,2547,32,1
,1,69,2549,48,1
,1,69,2551,40,1
,1,69,2553,32,1
,1,69,2555,40,1
,1,69,2557,32,1
,1,69,2559,40,1
,1,69,2561,32,1
,1,69,2563,32,1
,1,69,2565,32,1
,1,69,2567,32,1
,1,69,2569,32,1
,1,69,2571,32,1
,1,69,2573,32,1
,1,69,2575,32,1
,1,69,2577,32,1
,1,69,2579,32,1
,1,69,2581,32,1
,0,483,2583,32,1
,0,483,2585,32,1
,0,483,2587,32,1
,0,483,2589,32,1
,0,483,2591,32,1
,0,483,2593,32,1
,0,483,2595,32,1
,0,483,2597,32,1
,0,483,2599,32,1
,0,483,2601,32,1
,0,483,2603,32,1
,1,1,2605,32,0
,0,483,2607,32,2
,1,1,2609,32,1
,0,484,2611,16,0
,0,483,2613,32,1
,4,543,2615,120,4
,2,544,2617,40,0
,2,543,2619,40,0
,0,87,2621,16,1
,4,271,2623,160,7
,2,271,2625,48,0
,4,387,2627,160,7
,2,387,2629,48,0
,4,445,2631,160,7
,2,445,2633,40,0
,4,209,2635,160,8
,2,209,2637,40,0
,4,51,2639,480,14
,1,52,2641,72,4
,4,198,2643,160,8
,2,198,2645,32,0
,4,51,2647,4096,91
,1,52,2649,128,11
,4,350,2651,160,7
,2,350,2653,40,0
,4,164,2655,160,7
,2,164,2657,48,0
,4,184,2659,160,7
,2,184,2661,40,0
,4,199,2663,160,7
,2,199,2665,40,0
,4,172,2667,160,8
,2,172,2669,40,0
,4,51,2671,576,16
,1,52,2673,112,9
,4,243,2675,160,7
,2,243,2677,40,0
,4,71,2679,160,7
,4,72,2681,160,7
,4,402,2683,160,8
,2,402,2685,32,0
,4,51,2687,1472,23
,1,52,2689,64,3
,4,348,2691,160,7
,2,348,2693,32,0
,4,185,2695,160,7
,2,185,2697,40,0
,4,450,2699,160,8
,2,450,2701,40,0
,4,51,2703,800,31
,1,52,2705,88,6
,4,226,2707,160,7
,2,226,2709,40,0
,4,148,2711,160,7
,2,148,2713,32,0
,4,436,2715,160,7
,2,436,2717,40,0
,4,469,2719,160,7
,2,469,2721,40,0
,4,363,2723,160,8
,2,363,2725,40,0
,4,51,2727,1344,45
,1,52,2729,96,7
,4,289,2731,160,7
,2,289,2733,40,0
,4,359,2735,160,7
,2,359,2737,32,0
,4,352,2739,160,8
,2,352,2741,32,0
,4,51,2743,1984,72
,1,52,2745,120,10
,4,432,2747,160,8
,2,432,2749,32,0
,4,51,2751,1696,54
,1,52,2753,96,7
,4,418,2755,160,7
,2,418,2757,32,0
,4,395,2759,160,7
,2,395,2761,32,0
,4,456,2763,160,7
,2,456,2765,32,0
,4,278,2767,160,7
,2,278,2769,32,0
,4,175,2771,160,7
,2,175,2773,40,0
,4,191,2775,160,7
,2,191,2777,32,0
,4,327,2779,160,7
,2,327,2781,40,0
,4,133,2783,160,7
,2,133,2785,32,0
,4,295,2787,160,8
,2,295,2789,40,0
,4,51,2791,2784,196
,1,52,2793,72,3
,1,1,2795,592,71
,2,545,2797,40,0
,2,546,2799,40,0
,2,547,2801,48,0
,2,548,2803,40,0
,2,549,2805,40,0
,2,550,2807,40,0
,2,551,2809,40,0
,2,552,2811,40,0
,2,553,2813,40,0
,2,554,2815,40,0
,2,555,2817,32,0
,2,556,2819,40,0
,2,557,2821,40,0
,2,558,2823,40,0
,2,559,2825,40,0
,2,560,2827,40,0
,0,483,2829,32,2
,1,1,2831,32,1
,0,484,2833,16,0
,1,52,2835,56,2
,4,53,2837,160,8
,4,51,2839,352,17
,1,69,2841,32,1
,1,69,2843,32,1
,1,69,2845,32,1
,1,69,2847,32,1
,1,69,2849,32,1
,1,69,2851,32,1
,1,69,2853,32,1
,1,69,2855,32,1
,1,69,2857,40,2
,3,120,2859,32,2
,1,69,2861,40,1
,1,69,2863,32,1
,1,69,2865,40,1
,1,69,2867,40,1
,1,69,2869,40,1
,1,69,2871,40,1
,1,69,2873,40,1
,1,69,2875,32,1
,1,69,2877,32,1
,1,69,2879,48,1
,1,69,2881,48,1
,1,69,2883,32,2
,3,50,2885,24,2
,4,53,2887,160,8
,4,51,2889,384,12
,1,52,2891,80,5
,2,561,2893,40,0
,0,483,2895,32,2
,1,1,2897,400,24
,0,484,2899,16,0
,0,484,2901,16,0
,0,484,2903,16,0
,0,484,2905,16,0
,0,484,2907,16,0
,0,484,2909,16,0
,0,484,2911,16,0
,0,484,2913,16,0
,0,484,2915,16,0
,0,484,2917,16,0
,0,484,2919,16,0
,0,484,2921,16,0
,0,484,2923,16,0
,0,484,2925,16,0
,0,484,2927,16,0
,0,484,2929,16,0
,0,484,2931,16,0
,0,484,2933,16,0
,0,484,2935,16,0
,0,484,2937,16,0
,0,484,2939,16,0
,0,484,2941,16,0
,0,484,2943,16,0
,0,484,2945,16,0
,4,472,2947,160,6
,2,472,2949,32,0
,4,51,2951,128,3
,4,473,2953,160,6
,2,473,2955,32,0
,4,51,2957,128,3
,4,562,2959,160,6
,2,562,2961,32,0
,4,51,2963,128,3
,5,562,2965,72,6
,4,563,2967,160,6
,2,563,2969,32,0
,4,51,2971,128,3
,5,563,2973,72,6
,4,294,2975,160,6
,2,294,2977,32,0
,4,51,2979,128,3
,5,294,2981,72,6
,4,564,2983,160,6
,2,564,2985,32,0
,4,51,2987,128,3
,5,564,2989,72,6
,4,251,2991,160,6
,2,251,2993,32,0
,4,51,2995,128,3
,5,251,2997,72,6
,0,483,2999,32,1
,0,483,3001,32,1
,4,565,3003,120,4
,2,566,3005,40,0
,2,565,3007,40,0
,0,87,3009,16,1
,1,90,3011,56,3
,0,16,3013,64,1
,1,1,3015,32,1
,4,71,3017,160,7
,4,73,3019,160,7
,4,222,3021,160,8
,2,222,3023,32,0
,4,51,3025,1728,34
,1,52,3027,64,3
,4,451,3029,160,8
,2,451,3031,40,0
,4,51,3033,1376,28
,1,52,3035,64,3
,4,251,3037,160,7
,4,278,3039,160,8
,4,51,3041,928,29
,1,52,3043,72,4
,4,175,3045,160,7
,4,153,3047,160,7
,2,153,3049,40,0
,4,304,3051,160,7
,2,304,3053,32,0
,4,459,3055,160,8
,2,459,3057,40,0
,4,51,3059,832,18
,1,52,3061,72,4
,4,343,3063,160,8
,2,343,3065,32,0
,4,51,3067,2496,97
,1,52,3069,120,10
,4,374,3071,160,7
,2,374,3073,48,0
,4,461,3075,160,7
,2,461,3077,40,0
,4,424,3079,160,7
,2,424,3081,64,0
,4,332,3083,160,7
,2,332,3085,64,0
,4,455,3087,160,7
,2,455,3089,32,0
,4,294,3091,160,8
,4,51,3093,1152,37
,1,52,3095,96,7
,4,372,3097,160,8
,2,372,3099,32,0
,4,51,3101,1216,37
,1,52,3103,96,7
,4,443,3105,160,8
,2,443,3107,48,0
,4,51,3109,3232,89
,1,52,3111,160,15
,4,224,3113,160,8
,2,224,3115,40,0
,4,51,3117,1664,39
,1,52,3119,104,8
,4,444,3121,160,8
,2,444,3123,32,0
,4,51,3125,1728,51
,1,52,3127,88,6
,4,206,3129,160,8
,2,206,3131,40,0
,4,51,3133,512,16
,1,52,3135,48,1
,4,194,3137,160,7
,2,194,3139,48,0
,4,321,3141,160,7
,2,321,3143,40,0
,4,261,3145,160,7
,2,261,3147,48,0
,4,457,3149,160,7
,2,457,3151,32,0
,4,306,3153,160,7
,2,306,3155,32,0
,4,412,3157,160,7
,2,412,3159,40,0
,4,134,3161,160,7
,2,134,3163,40,0
,4,268,3165,160,7
,2,268,3167,40,0
,4,390,3169,160,7
,2,390,3171,32,0
,4,318,3173,160,7
,2,318,3175,32,0
,4,309,3177,160,7
,2,309,3179,40,0
,4,431,3181,160,7
,2,431,3183,32,0
,4,308,3185,160,7
,2,308,3187,32,0
,4,380,3189,160,7
,2,380,3191,32,0
,4,229,3193,160,7
,2,229,3195,32,0
,4,400,3197,160,7
,2,400,3199,32,0
,4,163,3201,160,7
,2,163,3203,32,0
,4,338,3205,160,7
,2,338,3207,32,0
,4,239,3209,160,7
,2,239,3211,32,0
,4,320,3213,160,7
,2,320,3215,32,0
,4,161,3217,160,7
,2,161,3219,32,0
,4,202,3221,160,7
,2,202,3223,48,0
,4,178,3225,160,8
,2,178,3227,40,0
,4,51,3229,1632,138
,1,52,3231,48,1
,1,1,3233,784,93
,2,567,3235,40,0
,2,568,3237,40,0
,2,569,3239,40,0
,2,570,3241,40,0
,2,571,3243,40,0
,2,572,3245,40,0
,2,573,3247,48,0
,2,574,3249,48,0
,2,575,3251,40,0
,2,576,3253,48,0
,2,577,3255,40,0
,2,578,3257,48,0
,2,579,3259,40,0
,2,580,3261,40,0
,2,581,3263,40,0
,2,582,3265,40,0
,2,583,3267,40,0
,2,584,3269,48,0
,2,585,3271,48,0
,2,586,3273,48,0
,2,587,3275,48,0
,2,588,3277,40,0
,2,589,3279,40,0
,2,590,3281,40,0
,2,591,3283,48,0
,2,592,3285,48,0
,2,593,3287,40,0
,2,594,3289,40,0
,2,595,3291,40,0
,2,596,3293,40,0
,2,597,3295,40,0
,2,598,3297,40,0
,2,599,3299,40,0
,2,600,3301,40,0
,2,601,3303,40,0
,2,602,3305,40,0
,2,603,3307,40,0
,2,604,3309,40,0
,2,605,3311,40,0
,4,53,3313,160,8
,4,91,3315,160,7
,4,91,3317,160,7
,4,91,3319,160,7
,0,483,3321,32,2
,1,1,3323,64,3
,0,484,3325,16,0
,0,484,3327,16,0
,0,484,3329,16,0
,1,52,3331,56,2
,4,53,3333,160,8
,4,51,3335,1024,61
,1,69,3337,32,1
,1,69,3339,32,1
,1,69,3341,32,1
,1,69,3343,32,1
,1,69,3345,32,1
,1,69,3347,32,1
,1,69,3349,40,1
,1,69,3351,40,2
,5,53,3353,72,10
,4,1,3355,3744,86
,3,120,3357,32,4
,1,69,3359,32,1
,1,69,3361,32,1
,1,69,3363,56,1
,1,69,3365,56,2
,3,120,3367,32,2
,1,69,3369,32,1
,1,69,3371,32,1
,1,69,3373,32,1
,1,69,3375,32,1
,1,69,3377,32,1
,1,69,3379,32,1
,1,69,3381,32,1
,1,69,3383,32,1
,1,69,3385,32,1
,1,69,3387,56,1
,3,202,3389,24,9
,0,483,3391,32,1
,0,483,3393,32,1
,4,606,3395,120,4
,2,607,3397,40,0
,2,606,3399,40,0
,0,87,3401,16,1
,4,220,3403,160,7
,2,220,3405,56,0
,4,270,3407,160,7
,2,270,3409,40,0
,4,381,3411,160,7
,2,381,3413,40,0
,4,382,3415,160,7
,2,382,3417,40,0
,4,312,3419,160,7
,2,312,3421,48,0
,4,195,3423,160,7
,2,195,3425,40,0
,4,439,3427,160,7
,2,439,3429,32,0
,4,240,3431,160,7
,2,240,3433,32,0
,4,101,3435,160,7
,2,101,3437,40,0
,4,130,3439,160,7
,2,130,3441,48,0
,4,205,3443,160,7
,2,205,3445,40,0
,4,125,3447,160,7
,2,125,3449,40,0
,4,126,3451,160,7
,2,126,3453,48,0
,4,284,3455,160,7
,2,284,3457,40,0
,4,158,3459,160,7
,2,158,3461,48,0
,4,433,3463,160,7
,2,433,3465,40,0
,4,116,3467,160,7
,2,116,3469,32,0
,4,127,3471,160,7
,2,127,3473,32,0
,4,256,3475,160,8
,2,256,3477,32,0
,4,51,3479,480,32
,1,52,3481,48,1
,1,1,3483,352,40
,2,608,3485,40,0
,2,609,3487,40,0
,2,610,3489,40,0
,2,611,3491,48,0
,2,612,3493,40,0
,2,613,3495,48,0
,2,614,3497,40,0
,2,615,3499,40,0
,0,483,3501,32,1
,1,52,3503,56,2
,4,53,3505,160,8
,4,51,3507,352,15
,1,69,3509,32,1
,1,69,3511,32,1
,0,483,3513,32,1
,4,616,3515,120,4
,2,617,3517,40,0
,2,616,3519,40,0
,0,87,3521,16,1
,4,112,3523,160,8
,2,112,3525,40,0
,4,51,3527,224,7
,1,52,3529,48,1
,2,618,3531,32,0
,0,16,3533,64,5
,4,250,3535,160,7
,2,250,3537,32,0
,4,262,3539,160,7
,2,262,3541,32,0
,4,325,3543,160,7
,2,325,3545,32,0
,4,440,3547,160,7
,2,440,3549,32,0
,4,252,3551,160,7
,2,252,3553,32,0
,4,171,3555,160,8
,2,171,3557,32,0
,4,51,3559,320,10
,1,52,3561,56,2
,4,442,3563,160,7
,2,442,3565,32,0
,4,151,3567,160,7
,2,151,3569,32,0
,4,227,3571,160,7
,2,227,3573,32,0
,4,200,3575,160,7
,2,200,3577,32,0
,4,370,3579,160,7
,2,370,3581,32,0
,4,150,3583,160,7
,2,150,3585,32,0
,4,257,3587,160,7
,2,257,3589,32,0
,4,383,3591,160,7
,2,383,3593,32,0
,4,296,3595,160,7
,2,296,3597,32,0
,4,420,3599,160,7
,2,420,3601,32,0
,4,468,3603,160,7
,2,468,3605,32,0
,4,290,3607,160,7
,2,290,3609,32,0
,4,319,3611,160,8
,2,319,3613,40,0
,4,51,3615,1568,114
,1,52,3617,48,1
,1,1,3619,384,43
,2,619,3621,32,0
,2,620,3623,32,0
,2,621,3625,32,0
,2,622,3627,32,0
,2,623,3629,32,0
,2,624,3631,32,0
,2,625,3633,32,0
,2,626,3635,40,0
,2,627,3637,32,0
,2,628,3639,32,0
,2,629,3641,32,0
,2,630,3643,40,0
,2,631,3645,32,0
,2,632,3647,32,0
,2,633,3649,32,0
,2,634,3651,32,0
,2,635,3653,40,0
,2,636,3655,40,0
,2,637,3657,32,0
,2,638,3659,32,0
,2,639,3661,32,0
,0,483,3663,32,2
,1,1,3665,32,1
,0,484,3667,16,0
,1,52,3669,56,2
,4,53,3671,160,8
,4,51,3673,672,43
,3,112,3675,24,4
,0,483,3677,32,1
,0,483,3679,32,1
,4,640,3681,120,4
,2,641,3683,40,0
,2,640,3685,48,0
,0,87,3687,16,1
,1,1,3689,32,1
,1,1,3691,32,1
,1,1,3693,32,0
,4,298,3695,160,7
,2,298,3697,40,0
,4,410,3699,160,7
,2,410,3701,48,0
,4,425,3703,160,7
,2,425,3705,48,0
,4,331,3707,160,7
,2,331,3709,40,0
,4,233,3711,160,8
,2,233,3713,40,0
,4,51,3715,416,17
,1,52,3717,80,5
,4,156,3719,160,7
,2,156,3721,40,0
,4,347,3723,160,7
,2,347,3725,40,0
,4,293,3727,160,7
,2,293,3729,40,0
,4,282,3731,160,7
,2,282,3733,40,0
,4,272,3735,160,8
,2,272,3737,40,0
,4,51,3739,256,11
,1,52,3741,64,3
,4,463,3743,160,7
,2,463,3745,40,0
,4,307,3747,160,7
,2,307,3749,48,0
,4,230,3751,160,7
,2,230,3753,40,0
,4,441,3755,160,7
,2,441,3757,40,0
,4,351,3759,160,7
,2,351,3761,48,0
,4,237,3763,160,7
,2,237,3765,56,0
,4,465,3767,160,7
,2,465,3769,48,0
,4,188,3771,160,7
,2,188,3773,48,0
,4,177,3775,160,7
,2,177,3777,40,0
,4,315,3779,160,7
,2,315,3781,40,0
,4,179,3783,160,7
,2,179,3785,48,0
,4,337,3787,160,8
,2,337,3789,40,0
,1,1,3791,160,6
,4,386,3793,160,7
,2,386,3795,48,0
,4,458,3797,160,7
,2,458,3799,48,0
,4,330,3801,160,8
,2,330,3803,40,0
,1,1,3805,136,5
,4,328,3807,160,7
,2,328,3809,48,0
,4,336,3811,160,7
,2,336,3813,48,0
,4,210,3815,160,7
,2,210,3817,48,0
,4,392,3819,160,8
,2,392,3821,48,0
,4,51,3823,416,15
,1,52,3825,136,9
,4,219,3827,160,8
,2,219,3829,32,0
,1,1,3831,88,3
,4,265,3833,160,7
,2,265,3835,40,0
,4,470,3837,160,7
,2,470,3839,48,0
,4,388,3841,160,7
,2,388,3843,48,0
,4,196,3845,160,7
,2,196,3847,40,0
,4,322,3849,160,7
,2,322,3851,48,0
,4,276,3853,160,7
,2,276,3855,56,0
,4,169,3857,160,7
,2,169,3859,48,0
,4,187,3861,160,7
,2,187,3863,48,0
,4,462,3865,160,7
,2,462,3867,48,0
,4,258,3869,160,7
,2,258,3871,48,0
,4,378,3873,160,7
,2,378,3875,48,0
,4,422,3877,160,7
,2,422,3879,48,0
,4,165,3881,160,7
,2,165,3883,40,0
,4,280,3885,160,7
,2,280,3887,48,0
,4,266,3889,160,7
,2,266,3891,48,0
,4,231,3893,160,7
,2,231,3895,40,0
,4,207,3897,160,7
,2,207,3899,40,0
,4,364,3901,160,7
,2,364,3903,40,0
,4,201,3905,160,7
,2,201,3907,48,0
,4,340,3909,160,7
,2,340,3911,40,0
,4,176,3913,160,8
,2,176,3915,48,0
,4,51,3917,608,25
,1,52,3919,88,5
,4,235,3921,160,8
,2,235,3923,40,0
,4,51,3925,640,37
,1,52,3927,56,2
,4,253,3929,160,7
,2,253,3931,64,0
,4,446,3933,160,7
,2,446,3935,48,0
,4,71,3937,160,7
,1,1,3939,992,116
,2,642,3941,56,0
,2,643,3943,40,0
,2,644,3945,40,0
,2,645,3947,40,0
,2,646,3949,48,0
,2,647,3951,40,0
,2,648,3953,56,0
,4,53,3955,160,8
,0,483,3957,32,2
,1,1,3959,48,2
,0,484,3961,16,0
,0,484,3963,16,0
,1,52,3965,56,2
,4,53,3967,160,8
,4,51,3969,2656,209
,1,69,3971,32,1
,1,69,3973,968,1
,1,69,3975,32,1
,3,337,3977,24,12
,3,330,3979,24,10
,3,219,3981,24,23
,1,69,3983,32,1
,1,69,3985,32,1
,1,69,3987,32,1
,0,483,3989,32,2
,1,1,3991,32,1
,0,484,3993,16,0
,4,91,3995,160,8
,4,51,3997,960,52
,1,52,3999,88,5
,2,649,4001,40,0
,4,104,4003,160,7
,2,104,4005,32,0
,4,51,4007,704,29
,1,52,4009,56,2
,4,118,4011,160,7
,2,118,4013,40,0
,4,97,4015,160,7
,2,97,4017,40,0
,0,16,4019,64,5
,4,105,4021,160,7
,2,105,4023,40,0
,4,119,4025,160,7
,2,119,4027,40,0
,4,106,4029,160,7
,2,106,4031,40,0
,4,121,4033,160,7
,2,121,4035,32,0
,0,483,4037,32,2
,1,1,4039,128,7
,0,484,4041,16,0
,0,484,4043,16,0
,0,484,4045,16,0
,0,484,4047,16,0
,0,484,4049,16,0
,0,484,4051,16,0
,0,484,4053,16,0
,4,91,4055,160,8
,4,51,4057,224,7
,1,52,4059,48,1
,0,16,4061,64,3
,4,53,4063,160,8
,0,483,4065,32,2
,1,1,4067,48,2
,0,484,4069,16,0
,0,484,4071,16,0
,0,483,4073,32,1
,4,91,4075,160,7
,0,483,4077,32,2
,1,1,4079,32,1
,0,484,4081,16,0
,4,53,4083,160,7
,0,483,4085,32,1
,0,483,4087,32,1
,1,1,4089,32,0
,0,483,4091,32,2
,1,1,4093,32,1
,0,484,4095,16,0
,4,91,4097,160,7
,2,650,4099,40,2
,4,91,4101,160,7
,2,651,4103,40,2
,0,483,4105,32,1
,2,652,4107,32,0
,0,88,4109,24,2
,5,53,4111,72,9
,0,88,4113,24,3
,5,53,4115,72,9
,4,653,4117,120,4
,2,654,4119,40,0
,2,653,4121,48,0
,0,87,4123,16,1
,4,189,4125,160,8
,2,189,4127,40,0
,4,51,4129,288,13
,1,52,4131,64,3
,4,292,4133,160,8
,2,292,4135,40,0
,4,51,4137,704,28
,1,52,4139,88,6
,4,396,4141,160,8
,2,396,4143,48,0
,4,51,4145,1248,51
,1,52,4147,128,11
,4,216,4149,160,8
,2,216,4151,56,0
,4,51,4153,928,32
,1,52,4155,120,10
,1,1,4157,112,10
,2,655,4159,48,0
,2,656,4161,40,0
,0,483,4163,32,2
,1,1,4165,32,1
,0,484,4167,16,0
,1,52,4169,56,2
,4,53,4171,160,8
,4,51,4173,384,19
,1,69,4175,32,2
,3,50,4177,24,2
,1,69,4179,32,2
,3,50,4181,24,2
,4,657,4183,120,4
,2,658,4185,40,0
,2,657,4187,40,0
,0,87,4189,16,1
,1,1,4191,48,2
,2,659,4193,32,0
,2,660,4195,32,0
,1,90,4197,72,8
,2,661,4199,32,0
,2,662,4201,32,0
,2,663,4203,32,0
,2,664,4205,32,0
,2,665,4207,32,0
,2,666,4209,32,0
,2,667,4211,32,0
,1,1,4213,32,1
,1,90,4215,112,13
,2,668,4217,32,0
,2,669,4219,32,0
,2,670,4221,32,0
,2,671,4223,32,0
,2,672,4225,32,0
,2,673,4227,32,0
,2,674,4229,32,0
,2,675,4231,32,0
,2,676,4233,32,0
,2,677,4235,32,0
,2,678,4237,32,0
,2,679,4239,32,0
,1,1,4241,32,1
,1,90,4243,72,8
,2,680,4245,32,0
,2,681,4247,32,0
,2,682,4249,32,0
,2,683,4251,40,0
,2,684,4253,32,0
,2,685,4255,32,0
,2,686,4257,32,0
,1,1,4259,32,1
,1,90,4261,112,13
,2,687,4263,32,0
,2,688,4265,32,0
,2,689,4267,32,0
,2,690,4269,32,0
,2,691,4271,32,0
,2,692,4273,32,0
,2,693,4275,32,0
,2,694,4277,40,0
,2,695,4279,32,0
,2,696,4281,32,0
,2,697,4283,32,0
,1,1,4285,32,1
,4,223,4287,160,7
,2,223,4289,48,0
,4,339,4291,160,7
,2,339,4293,40,0
,4,135,4295,160,7
,2,135,4297,32,0
,4,218,4299,160,7
,2,218,4301,32,0
,4,174,4303,160,7
,2,174,4305,40,0
,4,391,4307,160,7
,2,391,4309,32,0
,4,438,4311,160,7
,2,438,4313,32,0
,4,228,4315,160,7
,2,228,4317,32,0
,4,358,4319,160,7
,2,358,4321,40,0
,4,406,4323,160,7
,2,406,4325,40,0
,4,365,4327,160,7
,2,365,4329,40,0
,4,333,4331,160,7
,2,333,4333,40,0
,4,238,4335,160,7
,2,238,4337,40,0
,4,449,4339,160,7
,2,449,4341,48,0
,4,335,4343,160,7
,2,335,4345,40,0
,4,136,4347,160,7
,2,136,4349,32,0
,4,135,4351,160,7
,4,137,4353,160,8
,2,137,4355,32,0
,4,51,4357,224,9
,1,52,4359,48,1
,4,71,4361,160,7
,4,448,4363,160,7
,2,448,4365,40,0
,4,356,4367,160,7
,2,356,4369,40,0
,4,72,4371,160,7
,4,409,4373,160,7
,2,409,4375,48,0
,4,376,4377,160,7
,2,376,4379,48,0
,4,73,4381,160,7
,4,429,4383,160,7
,2,429,4385,32,0
,4,236,4387,160,7
,2,236,4389,40,0
,4,260,4391,160,7
,2,260,4393,40,0
,4,385,4395,160,7
,2,385,4397,32,0
,4,323,4399,160,7
,2,323,4401,40,0
,4,427,4403,160,7
,2,427,4405,32,0
,4,434,4407,160,7
,2,434,4409,40,0
,4,302,4411,160,7
,2,302,4413,32,0
,4,310,4415,160,7
,2,310,4417,40,0
,4,471,4419,160,7
,2,471,4421,32,0
,4,301,4423,160,7
,2,301,4425,40,0
,4,192,4427,160,7
,2,192,4429,40,0
,4,255,4431,160,7
,2,255,4433,40,0
,4,279,4435,160,7
,2,279,4437,40,0
,4,160,4439,160,7
,2,160,4441,40,0
,4,159,4443,160,7
,2,159,4445,40,0
,4,287,4447,160,7
,2,287,4449,48,0
,4,155,4451,160,7
,2,155,4453,48,0
,4,399,4455,160,8
,2,399,4457,32,0
,4,51,4459,480,17
,1,52,4461,56,2
,4,407,4463,160,7
,2,407,4465,40,0
,4,303,4467,160,7
,2,303,4469,48,0
,4,408,4471,160,7
,2,408,4473,40,0
,4,285,4475,160,7
,2,285,4477,40,0
,4,314,4479,160,7
,2,314,4481,40,0
,4,152,4483,160,7
,2,152,4485,40,0
,4,269,4487,160,7
,2,269,4489,32,0
,4,373,4491,160,7
,2,373,4493,40,0
,4,208,4495,160,7
,2,208,4497,32,0
,4,313,4499,160,7
,2,313,4501,40,0
,4,211,4503,160,7
,2,211,4505,32,0
,4,234,4507,160,7
,2,234,4509,40,0
,4,232,4511,160,7
,2,232,4513,40,0
,4,259,4515,160,7
,2,259,4517,40,0
,4,354,4519,160,7
,2,354,4521,40,0
,4,297,4523,160,7
,2,297,4525,32,0
,4,464,4527,160,7
,2,464,4529,32,0
,4,167,4531,160,7
,2,167,4533,40,0
,4,344,4535,160,7
,2,344,4537,32,0
,4,217,4539,160,7
,2,217,4541,40,0
,4,428,4543,160,7
,2,428,4545,32,0
,4,346,4547,160,7
,2,346,4549,40,0
,4,360,4551,160,8
,2,360,4553,40,0
,4,51,4555,2048,177
,1,52,4557,48,1
,1,1,4559,1232,143
,2,698,4561,32,0
,2,699,4563,48,0
,2,700,4565,48,0
,2,701,4567,40,0
,2,702,4569,32,0
,2,703,4571,32,0
,2,704,4573,40,0
,2,705,4575,40,0
,2,706,4577,40,0
,2,707,4579,40,0
,2,708,4581,32,0
,2,709,4583,32,0
,2,710,4585,40,0
,2,711,4587,40,0
,2,712,4589,40,0
,2,713,4591,48,0
,2,714,4593,48,0
,2,715,4595,48,0
,2,716,4597,40,0
,2,717,4599,40,0
,2,718,4601,40,0
,2,719,4603,48,0
,2,720,4605,40,0
,2,721,4607,40,0
,2,722,4609,40,0
,2,723,4611,40,0
,2,724,4613,40,0
,2,725,4615,40,0
,2,726,4617,40,0
,2,727,4619,40,0
,2,728,4621,40,0
,2,729,4623,48,0
,2,730,4625,40,0
,2,731,4627,48,0
,2,732,4629,48,0
,2,733,4631,48,0
,2,734,4633,48,0
,2,735,4635,40,0
,2,736,4637,48,0
,2,737,4639,48,0
,2,738,4641,40,0
,2,739,4643,48,0
,2,740,4645,40,0
,2,741,4647,48,0
,2,742,4649,40,0
,2,743,4651,40,0
,2,744,4653,40,0
,2,745,4655,40,0
,2,746,4657,40,0
,2,747,4659,40,0
,2,748,4661,40,0
,2,749,4663,48,0
,2,750,4665,40,0
,2,751,4667,40,0
,2,752,4669,40,0
,2,753,4671,40,0
,2,754,4673,40,0
,2,755,4675,40,0
,4,53,4677,160,8
,0,483,4679,32,2
,1,1,4681,32,1
,0,484,4683,16,0
,1,52,4685,56,2
,4,53,4687,160,8
,4,51,4689,1056,65
,5,756,4691,72,30
,4,1,4693,224,5
,1,69,4695,32,1
,0,483,4697,32,2
,1,1,4699,32,1
,0,484,4701,16,0
,2,757,4703,32,0
,2,758,4705,32,0
,2,759,4707,32,0
,2,760,4709,32,0
,0,483,4711,32,1
,4,761,4713,120,4
,2,762,4715,40,0
,2,761,4717,40,0
,0,87,4719,16,1
,4,168,4721,160,8
,2,168,4723,32,0
,4,51,4725,1536,36
,1,52,4727,112,9
,4,136,4729,160,8
,4,51,4731,576,21
,1,52,4733,72,4
,4,225,4735,160,7
,2,225,4737,40,0
,4,430,4739,160,7
,2,430,4741,40,0
,4,288,4743,160,7
,2,288,4745,40,0
,4,157,4747,160,8
,2,157,4749,48,0
,4,51,4751,2752,125
,1,52,4753,112,9
,4,221,4755,160,8
,2,221,4757,48,0
,4,51,4759,1056,56
,1,52,4761,120,10
,4,435,4763,160,8
,2,435,4765,48,0
,4,51,4767,2112,71
,1,52,4769,88,6
,4,142,4771,160,8
,2,142,4773,40,0
,4,51,4775,2336,66
,1,52,4777,96,7
,4,426,4779,160,8
,2,426,4781,40,0
,4,51,4783,352,20
,1,52,4785,48,1
,1,1,4787,192,21
,2,763,4789,32,0
,2,764,4791,40,0
,2,765,4793,40,0
,0,483,4795,32,1
,1,52,4797,56,2
,4,53,4799,160,8
,4,51,4801,352,17
,1,69,4803,32,2
,3,50,4805,24,4
,1,69,4807,32,1
,0,483,4809,32,1
,4,766,4811,120,4
,2,767,4813,40,0
,2,766,4815,40,0
,0,87,4817,16,1
,4,345,4819,160,8
,2,345,4821,48,0
,4,51,4823,2144,89
,1,52,4825,112,9
,4,366,4827,160,8
,2,366,4829,48,0
,4,286,4831,160,7
,2,286,4833,32,0
,4,203,4835,160,8
,2,203,4837,40,0
,4,51,4839,320,12
,1,52,4841,80,5
,4,453,4843,160,8
,2,453,4845,48,0
,4,51,4847,2016,51
,1,52,4849,112,9
,4,375,4851,160,7
,2,375,4853,48,0
,4,454,4855,160,8
,2,454,4857,32,0
,4,51,4859,1056,46
,1,52,4861,88,6
,4,403,4863,160,7
,2,403,4865,32,0
,4,316,4867,160,7
,2,316,4869,40,0
,4,71,4871,160,7
,4,138,4873,160,7
,2,138,4875,48,0
,4,139,4877,160,7
,2,139,4879,48,0
,4,140,4881,160,7
,2,140,4883,48,0
,4,141,4885,160,7
,2,141,4887,48,0
,4,241,4889,160,8
,2,241,4891,48,0
,4,51,4893,288,11
,1,52,4895,72,3
,4,190,4897,160,8
,2,190,4899,40,0
,4,51,4901,2336,151
,1,52,4903,112,8
,1,1,4905,352,37
,2,768,4907,32,0
,2,769,4909,40,0
,2,770,4911,40,0
,2,771,4913,40,0
,2,772,4915,40,0
,2,773,4917,40,0
,2,774,4919,40,0
,2,775,4921,40,0
,2,776,4923,48,0
,0,483,4925,32,2
,1,1,4927,32,1
,0,484,4929,16,0
,1,52,4931,56,2
,4,53,4933,160,8
,4,51,4935,576,30
,1,69,4937,64,1
,1,69,4939,32,1
,1,69,4941,40,1
,1,69,4943,48,1
,1,69,4945,32,1
,4,91,4947,160,7
,2,777,4949,40,2
,4,91,4951,160,7
,2,778,4953,40,2
,4,91,4955,160,7
,2,779,4957,40,2
,4,91,4959,160,7
,2,780,4961,40,2
,4,91,4963,160,7
,2,781,4965,40,2
,0,483,4967,32,1
,0,483,4969,32,2
,1,1,4971,32,1
,0,484,4973,16,0
,0,88,4975,24,3
,0,88,4977,24,3
,0,88,4979,24,3
,0,88,4981,24,3
,0,88,4983,24,3
,0,88,4985,24,3
,0,88,4987,24,3
,0,88,4989,24,3
,0,88,4991,24,3
,0,88,4993,24,3
,0,88,4995,24,3
,0,88,4997,24,3
,0,88,4999,24,3
,0,483,5001,32,1
,0,483,5003,32,1
,4,91,5005,160,7
,0,483,5007,32,1
,0,88,5009,24,3
,0,88,5011,24,3
,0,88,5013,24,3
,0,88,5015,24,3
,0,88,5017,24,3
,0,88,5019,24,3
,0,88,5021,24,3
,0,88,5023,24,3
,0,88,5025,24,3
,4,83,5027,160,6
,2,83,5029,32,0
,4,51,5031,512,6
,4,84,5033,160,6
,2,84,5035,32,0
,4,51,5037,512,6
,0,782,5039,128,2
,0,16,5041,64,1
,2,122,5043,32,0
,0,483,5045,32,2
,1,1,5047,32,1
,0,484,5049,16,0
,1,1,5051,24,0
,0,483,5053,32,1
,4,122,5055,160,7
,4,51,5057,128,3
,4,51,5059,544,5
,5,122,5061,72,8
,3,122,5063,24,3
,0,16,5065,64,30
,0,16,5067,64,3
,1,1,5069,24,0
,0,483,5071,32,1
,0,783,5073,56,4
,0,16,5075,64,1
,0,87,5077,16,1
,0,87,5079,16,1
,2,784,5081,32,0
,0,785,5083,40,2
,0,16,5085,64,1
,0,782,5087,128,3
,0,786,5089,56,7
,0,16,5091,64,1
,0,87,5093,16,1
,0,87,5095,16,1
,0,87,5097,16,1
,0,87,5099,16,1
,0,87,5101,16,1
,3,50,5103,24,3
,4,91,5105,160,7
,5,53,5107,72,8
,3,50,5109,24,3
,0,16,5111,64,3
,0,783,5113,56,4
,0,87,5115,16,1
,0,87,5117,16,1
,2,787,5119,48,0
,0,783,5121,56,4
,0,87,5123,16,1
,0,87,5125,16,1
,2,788,5127,40,0
,0,782,5129,128,2
,0,789,5131,24,2
,0,16,5133,64,1
,0,87,5135,16,1
,4,91,5137,160,7
,5,53,5139,72,8
,3,50,5141,24,3
,0,16,5143,64,3
,0,782,5145,128,2
,0,789,5147,24,2
,0,87,5149,16,1
,4,91,5151,160,7
,5,53,5153,72,8
,3,50,5155,24,3
,0,16,5157,64,3
,0,782,5159,128,2
,0,789,5161,24,2
,0,87,5163,16,1
,4,91,5165,160,7
,5,53,5167,72,8
,3,50,5169,24,3
,0,16,5171,64,3
,0,782,5173,128,2
,0,789,5175,24,2
,0,87,5177,16,1
,4,91,5179,160,7
,5,53,5181,72,8
,3,50,5183,24,3
,0,16,5185,64,3
,0,782,5187,128,2
,0,789,5189,24,2
,0,87,5191,16,1
,4,91,5193,160,7
,5,53,5195,72,8
,3,50,5197,24,3
,0,16,5199,64,3
,0,782,5201,128,2
,0,789,5203,24,2
,0,87,5205,16,1
,4,91,5207,160,7
,5,53,5209,72,8
,3,50,5211,24,3
,0,16,5213,64,3
,0,782,5215,128,2
,0,789,5217,24,2
,0,87,5219,16,1
,4,91,5221,160,7
,5,53,5223,72,8
,3,50,5225,24,3
,0,16,5227,64,3
,0,782,5229,128,2
,0,789,5231,24,2
,0,87,5233,16,1
,4,91,5235,160,7
,5,53,5237,72,8
,3,50,5239,24,3
,0,16,5241,64,3
,0,782,5243,128,2
,0,789,5245,24,2
,0,87,5247,16,1
,4,91,5249,160,7
,5,53,5251,72,8
,3,50,5253,24,3
,0,16,5255,64,3
,0,782,5257,128,2
,0,789,5259,24,2
,0,87,5261,16,1
,4,91,5263,160,7
,5,53,5265,72,8
,3,50,5267,24,3
,0,16,5269,64,3
,0,782,5271,128,2
,0,789,5273,24,2
,0,87,5275,16,1
,4,91,5277,160,7
,5,53,5279,72,8
,3,50,5281,24,3
,0,16,5283,64,3
,0,782,5285,128,2
,0,789,5287,24,2
,0,87,5289,16,1
,4,91,5291,160,7
,5,53,5293,72,8
,3,50,5295,24,3
,0,16,5297,64,3
,0,782,5299,128,2
,0,789,5301,24,2
,0,87,5303,16,1
,4,91,5305,160,7
,5,53,5307,72,8
,3,50,5309,24,3
,0,16,5311,64,3
,0,782,5313,128,2
,0,789,5315,24,2
,0,87,5317,16,1
,4,91,5319,160,7
,5,53,5321,72,8
,3,50,5323,24,3
,0,16,5325,64,3
,0,782,5327,128,2
,0,789,5329,24,2
,0,87,5331,16,1
,4,91,5333,160,7
,5,53,5335,72,8
,3,50,5337,24,3
,0,16,5339,64,3
,0,782,5341,128,2
,0,789,5343,24,2
,0,87,5345,16,1
,4,91,5347,160,7
,5,53,5349,72,8
,3,50,5351,24,3
,0,16,5353,64,3
,0,782,5355,128,2
,0,789,5357,24,2
,0,87,5359,16,1
,4,91,5361,160,7
,5,53,5363,72,8
,3,50,5365,24,3
,0,16,5367,64,3
,0,782,5369,128,2
,0,789,5371,24,2
,0,87,5373,16,1
,4,91,5375,160,7
,5,53,5377,72,8
,3,50,5379,24,3
,0,16,5381,64,3
,0,782,5383,128,2
,0,789,5385,24,2
,0,87,5387,16,1
,4,91,5389,160,7
,5,53,5391,72,8
,3,50,5393,24,3
,0,16,5395,64,3
,0,782,5397,128,2
,0,789,5399,24,2
,0,87,5401,16,1
,4,91,5403,160,7
,5,53,5405,72,8
,3,50,5407,24,3
,0,16,5409,64,3
,0,782,5411,128,2
,0,789,5413,24,2
,0,87,5415,16,1
,4,91,5417,160,7
,5,53,5419,72,8
,3,50,5421,24,3
,0,16,5423,64,3
,0,782,5425,128,2
,0,789,5427,24,2
,0,87,5429,16,1
,4,91,5431,160,7
,5,53,5433,72,8
,3,50,5435,24,3
,0,16,5437,64,3
,0,782,5439,128,2
,0,789,5441,24,2
,0,87,5443,16,1
,4,91,5445,160,7
,5,53,5447,72,8
,3,50,5449,24,3
,0,16,5451,64,3
,0,782,5453,128,2
,0,789,5455,24,2
,0,87,5457,16,1
,4,91,5459,160,7
,5,53,5461,72,8
,3,50,5463,24,3
,0,16,5465,64,3
,0,782,5467,128,2
,0,789,5469,24,2
,0,87,5471,16,1
,4,91,5473,160,7
,5,53,5475,72,8
,3,50,5477,24,3
,0,16,5479,64,3
,0,782,5481,128,4
,0,789,5483,24,2
,0,785,5485,40,3
,2,92,5487,40,0
,0,87,5489,16,1
,3,50,5491,24,5
,0,790,5493,24,2
,0,16,5495,64,1
,0,782,5497,128,3
,0,789,5499,24,2
,0,87,5501,16,1
,4,92,5503,160,7
,3,92,5505,24,3
,0,16,5507,64,3
,0,782,5509,128,5
,3,50,5511,24,4
,0,789,5513,24,2
,0,785,5515,40,3
,2,102,5517,40,0
,0,87,5519,16,1
,3,50,5521,24,12
,0,790,5523,24,2
,0,782,5525,128,3
,0,789,5527,24,2
,0,87,5529,16,1
,0,782,5531,128,3
,0,789,5533,24,2
,0,87,5535,16,1
,0,782,5537,128,3
,0,789,5539,24,2
,0,87,5541,16,1
,0,782,5543,128,3
,0,789,5545,24,2
,0,87,5547,16,1
,4,102,5549,160,7
,3,102,5551,24,3
,1,131,5553,40,0
,0,16,5555,64,4
,0,16,5557,64,3
,0,782,5559,128,5
,3,50,5561,24,4
,0,789,5563,24,2
,0,785,5565,40,3
,2,103,5567,40,0
,0,87,5569,16,1
,3,50,5571,24,12
,0,790,5573,24,2
,0,782,5575,128,3
,0,789,5577,24,2
,0,87,5579,16,1
,0,782,5581,128,3
,0,789,5583,24,2
,0,87,5585,16,1
,0,782,5587,128,3
,0,789,5589,24,2
,0,87,5591,16,1
,0,782,5593,128,3
,0,789,5595,24,2
,0,87,5597,16,1
,4,103,5599,160,7
,3,103,5601,24,3
,1,131,5603,40,0
,0,16,5605,64,3
,0,782,5607,128,5
,3,50,5609,24,4
,0,789,5611,24,2
,0,785,5613,40,3
,2,94,5615,48,0
,0,87,5617,16,1
,3,50,5619,24,12
,0,790,5621,24,2
,0,782,5623,128,3
,0,789,5625,24,2
,0,87,5627,16,1
,0,782,5629,128,3
,0,789,5631,24,2
,0,87,5633,16,1
,0,782,5635,128,3
,0,789,5637,24,2
,0,87,5639,16,1
,0,782,5641,128,3
,0,789,5643,24,2
,0,87,5645,16,1
,4,94,5647,160,7
,3,94,5649,24,3
,1,131,5651,40,0
,0,16,5653,64,3
,0,782,5655,128,5
,3,50,5657,24,4
,0,789,5659,24,2
,0,785,5661,40,3
,2,108,5663,40,0
,0,87,5665,16,1
,3,50,5667,24,12
,0,790,5669,24,2
,0,782,5671,128,3
,0,789,5673,24,2
,0,87,5675,16,1
,0,782,5677,128,3
,0,789,5679,24,2
,0,87,5681,16,1
,0,782,5683,128,3
,0,789,5685,24,2
,0,87,5687,16,1
,0,782,5689,128,3
,0,789,5691,24,2
,0,87,5693,16,1
,4,108,5695,160,7
,3,108,5697,24,3
,1,131,5699,40,0
,0,16,5701,64,3
,0,782,5703,128,5
,3,50,5705,24,4
,0,789,5707,24,2
,0,785,5709,40,3
,2,124,5711,40,0
,0,87,5713,16,1
,3,50,5715,24,12
,0,790,5717,24,2
,0,782,5719,128,3
,0,789,5721,24,2
,0,87,5723,16,1
,0,782,5725,128,3
,0,789,5727,24,2
,0,87,5729,16,1
,0,782,5731,128,3
,0,789,5733,24,2
,0,87,5735,16,1
,0,782,5737,128,3
,0,789,5739,24,2
,0,87,5741,16,1
,4,124,5743,160,7
,3,124,5745,24,3
,1,131,5747,40,0
,0,16,5749,64,3
,0,782,5751,128,5
,3,50,5753,24,4
,0,789,5755,24,2
,0,785,5757,40,3
,2,109,5759,40,0
,0,87,5761,16,1
,3,50,5763,24,12
,0,790,5765,24,2
,0,782,5767,128,3
,0,789,5769,24,2
,0,87,5771,16,1
,0,782,5773,128,3
,0,789,5775,24,2
,0,87,5777,16,1
,0,782,5779,128,3
,0,789,5781,24,2
,0,87,5783,16,1
,0,782,5785,128,3
,0,789,5787,24,2
,0,87,5789,16,1
,4,109,5791,160,7
,3,109,5793,24,3
,1,131,5795,40,0
,0,16,5797,64,3
,0,782,5799,128,5
,3,50,5801,24,4
,0,789,5803,24,2
,0,785,5805,40,3
,2,123,5807,40,0
,0,87,5809,16,1
,3,50,5811,24,12
,0,790,5813,24,2
,0,782,5815,128,3
,0,789,5817,24,2
,0,87,5819,16,1
,0,782,5821,128,3
,0,789,5823,24,2
,0,87,5825,16,1
,0,782,5827,128,3
,0,789,5829,24,2
,0,87,5831,16,1
,0,782,5833,128,3
,0,789,5835,24,2
,0,87,5837,16,1
,4,123,5839,160,7
,3,123,5841,24,3
,1,131,5843,40,0
,0,16,5845,64,3
,0,782,5847,128,5
,3,50,5849,24,4
,0,789,5851,24,2
,0,785,5853,40,3
,2,95,5855,40,0
,0,87,5857,16,1
,3,50,5859,24,12
,0,790,5861,24,2
,0,782,5863,128,3
,0,789,5865,24,2
,0,87,5867,16,1
,0,782,5869,128,3
,0,789,5871,24,2
,0,87,5873,16,1
,0,782,5875,128,3
,0,789,5877,24,2
,0,87,5879,16,1
,0,782,5881,128,3
,0,789,5883,24,2
,0,87,5885,16,1
,4,95,5887,160,7
,3,95,5889,24,3
,1,131,5891,40,0
,0,16,5893,64,3
,0,782,5895,128,5
,3,50,5897,24,4
,0,789,5899,24,2
,0,785,5901,40,3
,2,93,5903,40,0
,0,87,5905,16,1
,3,50,5907,24,12
,0,790,5909,24,2
,0,782,5911,128,3
,0,789,5913,24,2
,0,87,5915,16,1
,0,782,5917,128,3
,0,789,5919,24,2
,0,87,5921,16,1
,0,782,5923,128,3
,0,789,5925,24,2
,0,87,5927,16,1
,0,782,5929,128,3
,0,789,5931,24,2
,0,87,5933,16,1
,4,93,5935,160,7
,3,93,5937,24,3
,1,131,5939,40,0
,0,16,5941,64,3
,0,782,5943,128,4
,0,789,5945,24,2
,0,785,5947,40,3
,2,100,5949,32,0
,0,87,5951,16,1
,3,50,5953,24,50
,0,790,5955,24,2
,0,782,5957,128,3
,0,789,5959,24,2
,0,87,5961,16,1
,0,782,5963,128,3
,0,789,5965,24,2
,0,87,5967,16,1
,0,782,5969,128,3
,0,789,5971,24,2
,0,87,5973,16,1
,0,782,5975,128,3
,0,789,5977,24,2
,0,87,5979,16,1
,0,782,5981,128,3
,0,789,5983,24,2
,0,87,5985,16,1
,0,782,5987,128,3
,0,789,5989,24,2
,0,87,5991,16,1
,0,782,5993,128,3
,0,789,5995,24,2
,0,87,5997,16,1
,0,782,5999,128,3
,0,789,6001,24,2
,0,87,6003,16,1
,0,782,6005,128,3
,0,789,6007,24,2
,0,87,6009,16,1
,0,782,6011,128,3
,0,789,6013,24,2
,0,87,6015,16,1
,0,782,6017,128,3
,0,789,6019,24,2
,0,87,6021,16,1
,0,782,6023,128,3
,0,789,6025,24,2
,0,87,6027,16,1
,0,782,6029,128,3
,0,789,6031,24,2
,0,87,6033,16,1
,0,782,6035,128,3
,0,789,6037,24,2
,0,87,6039,16,1
,0,782,6041,128,3
,0,789,6043,24,2
,0,87,6045,16,1
,0,782,6047,128,3
,0,789,6049,24,2
,0,87,6051,16,1
,4,100,6053,160,7
,3,100,6055,24,3
,0,16,6057,64,3
,4,791,6059,120,4
,2,792,6061,40,0
,2,791,6063,40,0
,0,87,6065,16,1
,1,90,6067,32,3
,2,793,6069,88,0
,2,794,6071,32,0
,1,1,6073,32,1
,4,795,6075,160,8
,2,795,6077,32,0
,4,51,6079,2784,199
,1,52,6081,128,10
,4,796,6083,160,7
,2,796,6085,40,0
,4,797,6087,160,7
,2,797,6089,40,0
,4,798,6091,160,7
,2,798,6093,56,0
,4,799,6095,160,8
,2,799,6097,40,0
,4,51,6099,320,18
,1,52,6101,56,2
,4,91,6103,160,8
,4,51,6105,640,51
,1,52,6107,48,1
,2,800,6109,40,2
,4,91,6111,160,8
,4,51,6113,672,43
,1,52,6115,48,1
,2,801,6117,40,2
,4,91,6119,160,8
,4,51,6121,256,14
,1,52,6123,48,1
,2,802,6125,40,2
,4,91,6127,160,7
,2,803,6129,40,2
,4,91,6131,160,8
,4,51,6133,256,11
,1,52,6135,48,1
,2,804,6137,40,2
,4,91,6139,160,8
,4,51,6141,320,12
,1,52,6143,48,1
,2,805,6145,40,2
,4,91,6147,160,8
,4,51,6149,736,37
,1,52,6151,56,2
,2,806,6153,40,2
,4,91,6155,160,8
,4,51,6157,1248,50
,1,52,6159,248,16
,2,807,6161,40,2
,4,91,6163,160,8
,4,51,6165,480,27
,1,52,6167,96,4
,2,808,6169,40,2
,4,91,6171,160,8
,4,51,6173,320,15
,1,52,6175,48,1
,2,809,6177,40,2
,4,91,6179,160,8
,4,51,6181,672,29
,1,52,6183,112,5
,2,810,6185,40,2
,4,91,6187,160,8
,4,51,6189,640,36
,1,52,6191,64,3
,2,811,6193,40,2
,4,91,6195,160,8
,4,51,6197,640,36
,1,52,6199,80,5
,2,812,6201,40,2
,4,91,6203,160,8
,4,51,6205,640,38
,1,52,6207,72,4
,2,813,6209,40,2
,4,91,6211,160,8
,4,51,6213,224,10
,1,52,6215,56,2
,2,814,6217,40,2
,4,91,6219,160,8
,4,51,6221,256,11
,1,52,6223,56,2
,2,815,6225,40,2
,4,91,6227,160,8
,4,51,6229,224,10
,1,52,6231,56,2
,2,816,6233,40,2
,4,91,6235,160,8
,4,51,6237,288,15
,1,52,6239,56,2
,2,817,6241,40,2
,4,91,6243,160,8
,4,51,6245,512,27
,1,52,6247,64,3
,2,818,6249,40,2
,4,91,6251,160,8
,4,51,6253,256,12
,1,52,6255,48,1
,2,819,6257,40,2
,0,483,6259,32,2
,1,1,6261,32,1
,0,484,6263,16,0
,1,52,6265,192,11
,2,820,6267,32,0
,2,821,6269,40,0
,4,91,6271,160,8
,4,51,6273,2400,134
,0,483,6275,32,1
,1,52,6277,56,2
,4,53,6279,160,8
,4,51,6281,256,9
,0,782,6283,128,2
,0,789,6285,24,2
,0,87,6287,16,1
,4,91,6289,160,7
,3,50,6291,24,3
,0,16,6293,64,3
,0,782,6295,128,2
,0,789,6297,24,2
,0,87,6299,16,1
,4,91,6301,160,7
,3,50,6303,24,3
,0,16,6305,64,3
,0,782,6307,128,2
,0,789,6309,24,2
,0,87,6311,16,1
,4,91,6313,160,7
,3,50,6315,24,3
,0,16,6317,64,3
,0,782,6319,128,2
,0,789,6321,24,2
,0,87,6323,16,1
,4,91,6325,160,7
,3,50,6327,24,3
,0,16,6329,64,3
,0,782,6331,128,2
,0,789,6333,24,2
,0,87,6335,16,1
,4,91,6337,160,7
,3,50,6339,24,3
,0,16,6341,64,3
,0,782,6343,128,2
,0,789,6345,24,2
,0,87,6347,16,1
,4,91,6349,160,7
,3,50,6351,24,3
,0,16,6353,64,3
,0,782,6355,128,2
,0,789,6357,24,2
,0,87,6359,16,1
,4,91,6361,160,7
,3,50,6363,24,3
,0,16,6365,64,3
,0,782,6367,128,2
,0,789,6369,24,2
,0,87,6371,16,1
,4,91,6373,160,7
,3,50,6375,24,3
,0,16,6377,64,3
,5,53,6379,72,14
,5,795,6381,72,30
,5,53,6383,72,14
,5,796,6385,72,14
,5,797,6387,72,14
,5,798,6389,72,15
,5,53,6391,72,8
,5,799,6393,72,26
,0,70,6395,112,12
,5,53,6397,72,14
,5,53,6399,72,14
,5,53,6401,72,14
,5,53,6403,72,14
,5,53,6405,72,14
,5,53,6407,72,15
,1,69,6409,32,2
,6,28,6411,72,7
,5,53,6413,72,15
,1,69,6415,32,2
,3,120,6417,32,2
,5,53,6419,72,14
,5,53,6421,72,14
,5,53,6423,72,15
,1,69,6425,32,2
,3,50,6427,24,2
,5,53,6429,72,14
,5,53,6431,72,14
,0,782,6433,128,4
,0,789,6435,24,2
,0,785,6437,40,2
,2,822,6439,32,0
,0,87,6441,16,1
,4,822,6443,160,7
,5,822,6445,72,8
,3,822,6447,24,3
,0,16,6449,64,3
,0,782,6451,128,6
,3,50,6453,24,14
,0,789,6455,24,2
,0,785,6457,40,2
,0,785,6459,40,2
,2,823,6461,40,0
,0,87,6463,16,1
,0,782,6465,128,2
,0,789,6467,24,2
,0,87,6469,16,1
,3,50,6471,24,14
,0,782,6473,128,2
,0,789,6475,24,2
,0,87,6477,16,1
,0,782,6479,128,2
,0,789,6481,24,2
,0,87,6483,16,1
,0,782,6485,128,2
,0,789,6487,24,2
,0,87,6489,16,1
,0,782,6491,128,2
,0,789,6493,24,2
,0,87,6495,16,1
,4,91,6497,160,7
,5,53,6499,72,8
,3,50,6501,24,3
,0,16,6503,64,3
,0,782,6505,128,2
,0,789,6507,24,2
,0,87,6509,16,1
,4,91,6511,160,7
,5,53,6513,72,8
,3,50,6515,24,3
,0,16,6517,64,3
,0,782,6519,128,2
,0,789,6521,24,2
,0,87,6523,16,1
,4,91,6525,160,7
,3,50,6527,24,3
,0,16,6529,64,3
,0,782,6531,128,2
,0,789,6533,24,2
,0,87,6535,16,1
,4,91,6537,160,7
,5,53,6539,72,8
,3,50,6541,24,3
,0,16,6543,64,3
,4,823,6545,160,7
,5,823,6547,72,12
,3,823,6549,24,7
,0,16,6551,64,4
,0,16,6553,64,3
,4,824,6555,160,7
,2,824,6557,40,0
,5,824,6559,72,8
,3,824,6561,24,3
,0,16,6563,64,3
,4,825,6565,160,7
,2,825,6567,40,0
,5,825,6569,72,8
,3,825,6571,24,3
,0,16,6573,64,3
,4,821,6575,160,7
,5,821,6577,72,8
,3,821,6579,24,3
,0,16,6581,64,3
,4,826,6583,160,7
,2,826,6585,40,0
,5,826,6587,72,8
,3,826,6589,24,3
,0,16,6591,64,3
,5,53,6593,72,14
,5,53,6595,72,14
,5,53,6597,72,14
,5,53,6599,72,14
,5,53,6601,72,14
,5,53,6603,72,14
,5,53,6605,72,14
,1,1,6607,32,1
,2,827,6609,32,0
,1,1,6611,32,1
,2,828,6613,40,0
,1,1,6615,48,2
,2,829,6617,40,0
,2,830,6619,40,0
,4,53,6621,160,7
,4,53,6623,160,7
,4,53,6625,160,7
,4,53,6627,160,7
,4,53,6629,160,7
,0,483,6631,32,2
,1,1,6633,32,1
,0,484,6635,16,0
,2,831,6637,40,0
,2,832,6639,32,0
,2,833,6641,32,0
,2,834,6643,32,0
,2,835,6645,40,0
,2,836,6647,32,0
,2,837,6649,32,0
,2,838,6651,32,0
,0,483,6653,32,2
,1,1,6655,48,2
,0,484,6657,16,0
,0,484,6659,16,0
,2,839,6661,32,0
,2,840,6663,32,0
,2,841,6665,40,0
,0,483,6667,32,1
,0,483,6669,32,1
,0,483,6671,32,1
,0,483,6673,32,1
,0,483,6675,32,2
,1,1,6677,48,2
,0,484,6679,16,0
,0,484,6681,16,0
,2,842,6683,32,0
,2,843,6685,32,0
,0,483,6687,32,1
,0,483,6689,32,1
,2,844,6691,32,0
,4,845,6693,120,4
,2,846,6695,8584,0
,2,845,6697,40,0
,0,87,6699,16,1
,4,831,6701,160,8
,4,51,6703,704,38
,1,52,6705,48,1
,4,91,6707,160,7
,2,847,6709,40,2
,4,91,6711,160,7
,2,848,6713,40,2
,4,91,6715,160,7
,2,849,6717,40,2
,4,91,6719,160,7
,2,850,6721,40,2
,4,91,6723,160,7
,2,851,6725,40,2
,4,91,6727,160,7
,2,852,6729,40,2
,4,91,6731,160,7
,2,853,6733,40,2
,4,91,6735,160,7
,2,854,6737,40,2
,0,483,6739,32,1
,1,52,6741,160,11
,2,855,6743,32,0
,2,856,6745,32,0
,2,857,6747,32,0
,2,858,6749,40,0
,2,859,6751,40,0
,2,860,6753,32,0
,2,861,6755,48,0
,4,91,6757,160,8
,4,51,6759,1184,71
,0,483,6761,32,1
,1,52,6763,56,2
,4,53,6765,160,8
,4,51,6767,256,9
,5,53,6769,72,9
,3,50,6771,24,5
,0,70,6773,80,6
,5,53,6775,72,10
,1,69,6777,32,1
,5,53,6779,72,10
,1,69,6781,40,1
,5,53,6783,72,9
,5,53,6785,72,9
,5,53,6787,72,10
,1,69,6789,40,1
,5,53,6791,72,10
,1,69,6793,40,1
,5,53,6795,72,9
,1,1,6797,24,0
,1,1,6799,32,1
,0,483,6801,32,2
,1,1,6803,32,1
,0,484,6805,16,0
,1,1,6807,24,2
,2,862,6809,48,0
,1,1,6811,32,1
,0,483,6813,32,2
,1,1,6815,32,1
,0,484,6817,16,0
,1,1,6819,32,0
,0,483,6821,32,2
,1,1,6823,64,3
,0,484,6825,16,0
,0,484,6827,16,0
,0,484,6829,16,0
,0,483,6831,32,2
,1,1,6833,48,2
,0,484,6835,16,0
,0,484,6837,16,0
,1,1,6839,24,0
,1,1,6841,32,1
,1,1,6843,24,0
,1,1,6845,32,1
,1,1,6847,24,0
,1,1,6849,32,1
,1,1,6851,24,0
,1,1,6853,32,1
,0,483,6855,32,2
,1,1,6857,32,1
,0,484,6859,16,0
,0,483,6861,32,1
,0,483,6863,32,1
,0,483,6865,32,1
,0,483,6867,32,1
,0,483,6869,32,1
,0,483,6871,32,1
,0,483,6873,32,1
,1,1,6875,24,0
,1,1,6877,32,1
,1,1,6879,24,0
,1,1,6881,32,1
,1,1,6883,24,0
,1,1,6885,32,1
,1,1,6887,24,0
,1,1,6889,32,1
,1,1,6891,24,0
,1,1,6893,32,1
,1,1,6895,24,0
,1,1,6897,32,1
,1,1,6899,24,0
,1,1,6901,32,1
,0,483,6903,32,1
,0,483,6905,32,2
,1,1,6907,32,1
,0,484,6909,16,0
,0,483,6911,32,1
,0,483,6913,32,1
,0,483,6915,32,1
,0,483,6917,32,1
,0,483,6919,32,1
,0,483,6921,32,1
,0,483,6923,32,2
,1,1,6925,32,1
,0,484,6927,16,0
,4,91,6929,160,7
,2,863,6931,40,2
,0,483,6933,32,1
,5,53,6935,72,14
,0,483,6937,32,1
,4,864,6939,120,4
,2,846,6941,25864,0
,2,864,6943,40,0
,0,87,6945,16,1
,4,865,6947,160,7
,2,865,6949,32,0
,4,866,6951,160,7
,2,866,6953,32,0
,4,128,6955,160,8
,2,128,6957,32,0
,4,51,6959,2784,182
,1,52,6961,88,6
,0,16,6963,64,5
,4,867,6965,160,7
,2,867,6967,40,0
,4,868,6969,160,8
,2,868,6971,40,0
,4,51,6973,320,14
,1,52,6975,48,1
,4,869,6977,160,7
,2,869,6979,40,0
,4,870,6981,160,7
,2,870,6983,40,0
,4,871,6985,160,7
,2,871,6987,40,0
,4,872,6989,160,7
,2,872,6991,40,0
,4,873,6993,160,7
,2,873,6995,40,0
,4,874,6997,160,7
,2,874,6999,32,0
,4,875,7001,160,7
,2,875,7003,40,0
,4,876,7005,160,7
,2,876,7007,40,0
,4,91,7009,160,7
,2,877,7011,40,2
,4,91,7013,160,7
,2,878,7015,40,2
,4,91,7017,160,7
,2,879,7019,40,2
,4,91,7021,160,8
,4,51,7023,704,32
,1,52,7025,56,2
,2,880,7027,40,2
,4,881,7029,160,8
,2,881,7031,32,0
,4,51,7033,288,8
,1,52,7035,72,3
,4,882,7037,160,7
,2,882,7039,32,0
,4,883,7041,160,7
,2,883,7043,32,0
,4,884,7045,160,7
,2,884,7047,32,0
,4,91,7049,160,7
,2,885,7051,40,0
,4,91,7053,160,7
,2,886,7055,40,2
,4,91,7057,160,8
,4,51,7059,1472,82
,1,52,7061,72,4
,2,887,7063,40,2
,4,888,7065,160,7
,2,888,7067,32,0
,4,91,7069,160,7
,2,889,7071,40,2
,4,91,7073,160,7
,2,890,7075,40,0
,4,91,7077,160,7
,2,891,7079,40,0
,4,91,7081,160,7
,2,892,7083,40,2
,4,91,7085,160,7
,2,893,7087,40,2
,4,91,7089,160,7
,2,894,7091,40,2
,4,91,7093,160,7
,2,895,7095,40,2
,4,91,7097,160,7
,2,896,7099,40,2
,4,91,7101,160,7
,2,897,7103,40,2
,4,91,7105,160,7
,2,898,7107,40,2
,4,91,7109,160,7
,2,899,7111,40,2
,4,91,7113,160,7
,2,900,7115,40,2
,4,91,7117,160,7
,2,901,7119,40,2
,4,91,7121,160,7
,2,902,7123,40,2
,4,91,7125,160,7
,2,903,7127,40,2
,4,91,7129,160,7
,2,904,7131,40,2
,4,91,7133,160,7
,2,905,7135,40,2
,4,91,7137,160,7
,2,906,7139,40,2
,4,91,7141,160,7
,2,907,7143,40,2
,4,91,7145,160,7
,2,908,7147,40,2
,4,91,7149,160,7
,2,909,7151,40,2
,4,91,7153,160,7
,2,910,7155,40,2
,4,91,7157,160,7
,2,911,7159,40,2
,4,91,7161,160,7
,2,912,7163,40,2
,4,91,7165,160,7
,2,913,7167,40,2
,4,91,7169,160,7
,2,914,7171,40,2
,4,91,7173,160,7
,2,915,7175,40,2
,4,91,7177,160,7
,2,916,7179,40,2
,4,91,7181,160,7
,2,917,7183,40,2
,4,91,7185,160,7
,2,918,7187,40,2
,4,91,7189,160,7
,2,919,7191,40,2
,4,91,7193,160,7
,2,920,7195,40,2
,4,91,7197,160,7
,2,921,7199,40,2
,4,91,7201,160,7
,2,922,7203,40,2
,4,91,7205,160,7
,2,923,7207,40,2
,4,91,7209,160,7
,2,924,7211,40,2
,4,91,7213,160,7
,2,925,7215,40,2
,0,483,7217,32,2
,1,1,7219,48,2
,0,484,7221,16,0
,0,484,7223,16,0
,1,52,7225,368,24
,2,926,7227,40,0
,2,927,7229,40,0
,2,928,7231,32,0
,4,91,7233,160,8
,4,51,7235,5600,368
,0,483,7237,32,1
,1,52,7239,56,2
,4,53,7241,160,8
,4,51,7243,256,9
,0,782,7245,128,5
,0,789,7247,24,2
,0,785,7249,40,2
,0,785,7251,40,2
,0,87,7253,16,1
,0,782,7255,128,2
,0,789,7257,24,2
,0,87,7259,16,1
,3,50,7261,24,108
,0,782,7263,128,2
,0,789,7265,24,2
,0,87,7267,16,1
,0,782,7269,128,2
,0,789,7271,24,2
,0,87,7273,16,1
,0,782,7275,128,2
,0,789,7277,24,2
,0,87,7279,16,1
,0,782,7281,128,2
,0,789,7283,24,2
,0,87,7285,16,1
,0,782,7287,128,2
,0,789,7289,24,2
,0,87,7291,16,1
,0,782,7293,128,2
,0,789,7295,24,2
,0,87,7297,16,1
,0,782,7299,128,2
,0,789,7301,24,2
,0,87,7303,16,1
,0,782,7305,128,2
,0,789,7307,24,2
,0,87,7309,16,1
,0,782,7311,128,2
,0,789,7313,24,2
,0,87,7315,16,1
,0,782,7317,128,2
,0,789,7319,24,2
,0,87,7321,16,1
,0,782,7323,128,2
,0,789,7325,24,2
,0,87,7327,16,1
,0,782,7329,128,2
,0,789,7331,24,2
,0,87,7333,16,1
,0,782,7335,128,2
,0,789,7337,24,2
,0,87,7339,16,1
,0,782,7341,128,2
,0,789,7343,24,2
,0,87,7345,16,1
,0,782,7347,128,2
,0,789,7349,24,2
,0,87,7351,16,1
,0,782,7353,128,2
,0,789,7355,24,2
,0,87,7357,16,1
,0,782,7359,128,2
,0,789,7361,24,2
,0,87,7363,16,1
,0,782,7365,128,2
,0,789,7367,24,2
,0,87,7369,16,1
,0,782,7371,128,2
,0,789,7373,24,2
,0,87,7375,16,1
,0,782,7377,128,2
,0,789,7379,24,2
,0,87,7381,16,1
,0,782,7383,128,2
,0,789,7385,24,2
,0,87,7387,16,1
,4,926,7389,160,7
,5,926,7391,72,10
,5,53,7393,72,8
,5,53,7395,72,8
,3,926,7397,24,28
,0,16,7399,64,4
,0,16,7401,64,5
,4,929,7403,160,7
,2,929,7405,40,0
,5,929,7407,72,8
,3,929,7409,24,3
,0,16,7411,64,3
,4,930,7413,160,7
,2,930,7415,40,0
,5,930,7417,72,8
,3,930,7419,24,3
,0,16,7421,64,3
,4,931,7423,160,7
,2,931,7425,40,0
,5,931,7427,72,8
,3,931,7429,24,3
,0,16,7431,64,3
,4,932,7433,160,7
,2,932,7435,40,0
,5,932,7437,72,8
,3,932,7439,24,3
,0,16,7441,64,3
,4,933,7443,160,7
,2,933,7445,32,0
,5,933,7447,72,8
,3,933,7449,24,3
,0,16,7451,64,3
,4,934,7453,160,7
,2,934,7455,40,0
,5,934,7457,72,8
,3,934,7459,24,3
,0,16,7461,64,3
,4,935,7463,160,7
,2,935,7465,40,0
,5,935,7467,72,8
,3,935,7469,24,3
,0,16,7471,64,3
,4,936,7473,160,7
,2,936,7475,40,0
,5,936,7477,72,8
,3,936,7479,24,3
,0,16,7481,64,3
,4,937,7483,160,7
,2,937,7485,40,0
,5,937,7487,72,8
,3,937,7489,24,3
,0,16,7491,64,3
,4,938,7493,160,7
,2,938,7495,40,0
,5,938,7497,72,8
,3,938,7499,24,3
,0,16,7501,64,3
,4,939,7503,160,7
,2,939,7505,40,0
,5,939,7507,72,8
,3,939,7509,24,3
,0,16,7511,64,3
,4,940,7513,160,7
,2,940,7515,32,0
,5,940,7517,72,8
,3,940,7519,24,3
,0,16,7521,64,3
,4,941,7523,160,7
,2,941,7525,40,0
,5,941,7527,72,8
,3,941,7529,24,3
,0,16,7531,64,3
,4,942,7533,160,7
,2,942,7535,40,0
,5,942,7537,72,8
,3,942,7539,24,3
,0,16,7541,64,3
,4,943,7543,160,7
,2,943,7545,40,0
,5,943,7547,72,8
,3,943,7549,24,3
,0,16,7551,64,3
,4,944,7553,160,7
,2,944,7555,40,0
,5,944,7557,72,8
,3,944,7559,24,3
,0,16,7561,64,3
,4,945,7563,160,7
,2,945,7565,40,0
,5,945,7567,72,8
,3,945,7569,24,3
,0,16,7571,64,3
,4,946,7573,160,7
,2,946,7575,40,0
,5,946,7577,72,8
,3,946,7579,24,3
,0,16,7581,64,3
,4,947,7583,160,7
,2,947,7585,40,0
,5,947,7587,72,8
,3,947,7589,24,3
,0,16,7591,64,3
,4,948,7593,160,7
,2,948,7595,40,0
,5,948,7597,72,8
,3,948,7599,24,3
,0,16,7601,64,3
,4,888,7603,160,7
,5,888,7605,72,8
,3,888,7607,24,3
,0,16,7609,64,3
,4,949,7611,160,7
,2,949,7613,32,0
,5,949,7615,72,8
,3,949,7617,24,3
,0,16,7619,64,3
,0,782,7621,128,2
,0,789,7623,24,2
,0,87,7625,16,1
,4,91,7627,160,7
,3,50,7629,24,3
,0,16,7631,64,3
,0,782,7633,128,2
,0,789,7635,24,2
,0,87,7637,16,1
,4,91,7639,160,7
,3,50,7641,24,3
,0,16,7643,64,3
,0,782,7645,128,2
,0,789,7647,24,2
,0,87,7649,16,1
,4,91,7651,160,7
,5,53,7653,72,8
,3,50,7655,24,3
,0,16,7657,64,3
,4,950,7659,120,4
,2,951,7661,10856,0
,2,950,7663,40,0
,0,87,7665,16,1
,4,952,7667,160,7
,2,952,7669,32,0
,4,953,7671,160,7
,2,953,7673,32,0
,4,954,7675,160,7
,2,954,7677,40,0
,4,955,7679,160,7
,2,955,7681,32,0
,4,756,7683,160,8
,2,756,7685,32,0
,4,51,7687,320,14
,1,52,7689,64,3
,4,956,7691,160,7
,2,956,7693,40,0
,4,957,7695,160,7
,2,957,7697,48,0
,4,958,7699,160,7
,2,958,7701,40,0
,4,959,7703,160,7
,2,959,7705,32,0
,4,960,7707,160,7
,2,960,7709,48,0
,4,961,7711,160,7
,2,961,7713,32,0
,4,962,7715,160,7
,2,962,7717,40,0
,4,963,7719,160,7
,2,963,7721,32,0
,4,964,7723,160,7
,2,964,7725,32,0
,4,965,7727,160,7
,2,965,7729,40,0
,4,966,7731,160,7
,2,966,7733,40,0
,4,967,7735,160,7
,2,967,7737,40,0
,4,968,7739,160,7
,2,968,7741,40,0
,4,91,7743,160,7
,2,969,7745,40,2
,4,91,7747,160,7
,2,970,7749,40,2
,4,91,7751,160,7
,2,971,7753,40,2
,0,483,7755,32,2
,1,1,7757,32,1
,0,484,7759,16,0
,1,52,7761,296,20
,2,972,7763,32,0
,2,973,7765,32,0
,4,91,7767,160,8
,4,51,7769,1920,103
,0,483,7771,32,1
,1,52,7773,56,2
,4,53,7775,160,8
,4,51,7777,256,9
,4,974,7779,120,4
,2,846,7781,15352,0
,2,974,7783,32,0
,0,87,7785,16,1
,1,90,7787,32,1
,1,1,7789,32,1
,1,90,7791,32,1
,1,1,7793,32,1
,1,90,7795,32,1
,1,1,7797,32,1
,1,90,7799,32,1
,1,1,7801,32,1
,1,90,7803,32,1
,1,1,7805,32,1
,1,90,7807,32,1
,1,1,7809,32,1
,1,90,7811,32,1
,1,1,7813,32,1
,1,90,7815,32,1
,1,1,7817,32,1
,1,90,7819,32,1
,1,1,7821,32,1
,1,90,7823,32,1
,1,1,7825,32,1
,1,90,7827,32,1
,1,1,7829,32,1
,1,90,7831,32,1
,1,1,7833,32,1
,1,90,7835,32,1
,1,1,7837,32,1
,1,1,7839,224,26
,1,1,7841,32,1
,2,975,7843,32,0
,1,1,7845,32,1
,2,976,7847,40,0
,1,1,7849,32,1
,2,977,7851,32,0
,1,1,7853,32,1
,2,978,7855,32,0
,1,1,7857,32,1
,2,979,7859,32,0
,1,1,7861,32,1
,2,980,7863,32,0
,1,1,7865,32,1
,2,981,7867,32,0
,1,1,7869,32,1
,2,982,7871,32,0
,1,1,7873,32,1
,2,983,7875,32,0
,1,1,7877,32,1
,2,984,7879,32,0
,1,1,7881,32,1
,2,985,7883,32,0
,1,1,7885,32,1
,2,986,7887,32,0
,1,1,7889,32,1
,1,1,7891,144,16
,2,987,7893,32,0
,2,988,7895,32,0
,2,989,7897,32,0
,2,990,7899,32,0
,2,991,7901,32,0
,1,90,7903,112,13
,1,1,7905,32,1
,4,882,7907,160,7
,4,992,7909,160,7
,2,992,7911,40,0
,4,993,7913,160,7
,2,993,7915,40,0
,4,994,7917,160,7
,2,994,7919,40,0
,4,995,7921,160,7
,2,995,7923,40,0
,4,996,7925,160,7
,2,996,7927,40,0
,4,997,7929,160,7
,2,997,7931,40,0
,4,998,7933,160,7
,2,998,7935,40,0
,4,999,7937,160,7
,2,999,7939,40,0
,4,1000,7941,160,7
,2,1000,7943,48,0
,4,133,7945,160,7
,4,1001,7947,160,7
,2,1001,7949,32,0
,4,1002,7951,160,7
,2,1002,7953,32,0
,4,1003,7955,160,7
,2,1003,7957,32,0
,4,1004,7959,160,7
,2,1004,7961,40,0
,4,1005,7963,160,7
,2,1005,7965,32,0
,4,1006,7967,160,7
,2,1006,7969,40,0
,4,1007,7971,160,7
,2,1007,7973,32,0
,4,74,7975,160,7
,4,91,7977,160,7
,2,1008,7979,40,2
,4,91,7981,160,8
,4,51,7983,512,18
,1,52,7985,120,7
,2,1009,7987,40,2
,4,91,7989,160,7
,2,1010,7991,40,2
,4,91,7993,160,7
,2,1011,7995,40,0
,4,91,7997,160,7
,2,1012,7999,40,2
,4,91,8001,160,7
,2,1013,8003,40,2
,4,91,8005,160,7
,4,91,8007,160,7
,2,1014,8009,40,0
,4,91,8011,160,7
,4,91,8013,160,8
,4,51,8015,416,25
,1,52,8017,64,3
,2,1015,8019,40,2
,4,91,8021,160,7
,2,1016,8023,40,2
,0,483,8025,32,1
,1,52,8027,464,30
,2,1017,8029,40,0
,2,1018,8031,32,0
,2,1019,8033,32,0
,4,91,8035,160,8
,4,51,8037,3200,148
,0,483,8039,32,1
,1,52,8041,56,2
,4,53,8043,160,8
,4,51,8045,256,9
,1,1,8047,32,0
,1,1,8049,24,0
,1,1,8051,32,1
,1,1,8053,24,0
,1,1,8055,32,1
,1,1,8057,24,0
,1,1,8059,32,1
,1,1,8061,24,0
,1,1,8063,32,1
,0,483,8065,32,1
,1,1,8067,24,2
,2,1020,8069,48,0
,1,1,8071,32,1
,0,483,8073,32,1
,5,53,8075,72,30
,3,50,8077,24,19
,6,1021,8079,72,7
,5,53,8081,72,29
,5,882,8083,72,33
,5,992,8085,72,29
,5,993,8087,72,29
,5,994,8089,72,30
,5,995,8091,72,30
,5,996,8093,72,30
,5,997,8095,72,29
,5,998,8097,72,30
,5,999,8099,72,30
,5,1000,8101,72,29
,5,133,8103,72,29
,5,1001,8105,72,29
,5,1002,8107,72,29
,5,1003,8109,72,29
,5,1004,8111,72,29
,5,1005,8113,72,29
,3,120,8115,32,15
,5,1006,8117,72,30
,5,74,8119,72,29
,1,69,8121,32,1
,0,70,8123,232,27
,5,53,8125,72,29
,5,53,8127,72,29
,5,53,8129,72,29
,5,53,8131,72,29
,4,1022,8133,160,7
,2,1022,8135,40,0
,0,483,8137,32,1
,2,1023,8139,32,0
,2,1024,8141,32,0
,5,53,8143,72,29
,5,53,8145,72,30
,1,69,8147,40,3
,3,50,8149,56,6
,3,50,8151,32,3
,5,53,8153,72,29
,5,962,8155,72,20
,5,952,8157,72,18
,5,953,8159,72,18
,5,954,8161,72,18
,5,955,8163,72,19
,5,956,8165,72,18
,5,957,8167,72,18
,5,958,8169,72,18
,5,959,8171,72,18
,5,960,8173,72,19
,5,961,8175,72,18
,3,962,8177,24,4
,0,70,8179,144,16
,0,16,8181,64,4
,1,1,8183,80,4
,2,1025,8185,40,0
,2,1026,8187,32,0
,2,1027,8189,40,0
,1,1,8191,32,1
,0,483,8193,32,1
,2,1028,8195,32,0
,2,1029,8197,40,0
,0,483,8199,32,1
,0,483,8201,32,1
,0,483,8203,32,1
,0,483,8205,32,1
,0,483,8207,32,1
,0,483,8209,32,1
,5,963,8211,72,18
,5,964,8213,72,18
,5,965,8215,72,18
,5,966,8217,72,18
,5,967,8219,72,18
,5,968,8221,72,18
,5,53,8223,72,19
,1,69,8225,32,1
,5,53,8227,72,19
,1,69,8229,32,1
,5,53,8231,72,18
,5,53,8233,72,23
,3,50,8235,24,5
,5,865,8237,72,23
,5,866,8239,72,23
,3,926,8241,32,5
,5,867,8243,72,23
,3,926,8245,32,5
,5,868,8247,72,23
,5,869,8249,72,23
,5,870,8251,72,23
,5,871,8253,72,23
,5,872,8255,72,23
,5,873,8257,72,23
,5,874,8259,72,23
,5,875,8261,72,23
,5,876,8263,72,23
,0,70,8265,184,21
,5,53,8267,72,23
,5,53,8269,72,23
,5,53,8271,72,23
,5,881,8273,72,23
,5,882,8275,72,24
,1,69,8277,32,1
,5,883,8279,72,23
,5,884,8281,72,23
,5,53,8283,72,23
,5,53,8285,72,23
,5,53,8287,72,23
,5,888,8289,72,23
,5,53,8291,72,23
,5,53,8293,72,23
,5,53,8295,72,23
,5,53,8297,72,23
,5,53,8299,72,23
,5,53,8301,72,23
,5,53,8303,72,23
,5,53,8305,72,23
,5,53,8307,72,23
,5,53,8309,72,23
,5,53,8311,72,23
,5,53,8313,72,23
,5,53,8315,72,23
,5,53,8317,72,23
,5,53,8319,72,23
,5,53,8321,72,23
,5,53,8323,72,23
,5,53,8325,72,23
,5,53,8327,72,23
,5,53,8329,72,23
,5,53,8331,72,23
,5,53,8333,72,23
,5,53,8335,72,23
,5,53,8337,72,23
,5,53,8339,72,23
,5,53,8341,72,23
,5,53,8343,72,23
,5,53,8345,72,23
,5,53,8347,72,23
,5,53,8349,72,23
,5,53,8351,72,23
,5,53,8353,72,23
,5,53,8355,72,23
,5,53,8357,72,23
,5,53,8359,72,23
,5,53,8361,72,23
,5,53,8363,72,23
,4,91,8365,160,7
,2,1030,8367,40,2
,4,91,8369,160,8
,4,51,8371,320,15
,1,52,8373,64,3
,2,1031,8375,40,2
,4,91,8377,160,7
,2,1032,8379,40,2
,4,91,8381,160,7
,2,1033,8383,40,2
,4,91,8385,160,7
,2,1034,8387,40,2
,4,91,8389,160,7
,2,1035,8391,40,2
,0,483,8393,32,1
,4,91,8395,160,7
,0,483,8397,32,1
,0,483,8399,32,2
,1,1,8401,48,2
,0,484,8403,16,0
,0,484,8405,16,0
,0,483,8407,32,1
,0,483,8409,32,1
,0,483,8411,32,1
,5,53,8413,72,14
,4,91,8415,160,7
,2,1036,8417,40,2
,0,483,8419,32,1
,4,53,8421,160,8
,4,51,8423,320,11
,1,52,8425,64,3
,0,483,8427,32,1
,2,1037,8429,32,0
,1,1,8431,24,2
,2,1038,8433,48,0
,1,1,8435,32,1
,1,1,8437,24,0
,1,1,8439,32,1
,1,1,8441,32,0
,1,1,8443,32,0
,0,483,8445,32,1
,1,1,8447,24,2
,2,1039,8449,48,0
,1,1,8451,32,1
,0,483,8453,32,1
,1,1,8455,24,0
,0,483,8457,32,2
,1,1,8459,96,5
,0,484,8461,16,0
,0,484,8463,16,0
,0,484,8465,16,0
,0,484,8467,16,0
,0,484,8469,16,0
,0,483,8471,32,1
,0,483,8473,32,1
,1,1,8475,24,2
,2,1040,8477,48,0
,1,1,8479,32,1
,0,483,8481,32,1
,1,1,8483,32,1
,0,483,8485,32,1
,0,483,8487,32,2
,1,1,8489,32,1
,0,484,8491,16,0
,0,483,8493,32,1
,2,1041,8495,32,0
,1,1,8497,32,0
,4,1042,8499,160,7
,2,1042,8501,32,0
,4,1043,8503,160,7
,2,1043,8505,40,0
,4,1044,8507,160,7
,2,1044,8509,40,0
,4,1045,8511,160,8
,2,1045,8513,40,0
,4,51,8515,1376,53
,1,52,8517,72,4
,4,1046,8519,160,7
,2,1046,8521,48,0
,4,1047,8523,160,7
,2,1047,8525,32,0
,4,1048,8527,160,7
,2,1048,8529,40,0
,0,483,8531,32,1
,2,1049,8533,48,0
,2,1050,8535,40,0
,2,1051,8537,40,0
,2,1052,8539,32,0
,2,1053,8541,32,0
,2,1054,8543,32,0
,2,1055,8545,32,0
,2,1056,8547,32,0
,4,91,8549,160,7
,4,91,8551,160,7
,4,91,8553,160,7
,4,91,8555,160,7
,2,1057,8557,40,2
,0,483,8559,32,1
,2,1058,8561,32,0
,2,1059,8563,32,0
,2,1060,8565,32,0
,0,88,8567,24,2
,5,53,8569,72,9
,0,88,8571,24,2
,5,53,8573,72,9
,0,88,8575,24,2
,5,53,8577,72,10
,5,53,8579,72,9
,0,70,8581,72,4
,4,91,8583,160,7
,2,1061,8585,40,0
,4,91,8587,160,7
,2,1062,8589,40,0
,0,483,8591,32,1
,5,53,8593,72,14
,5,53,8595,72,14
,4,1063,8597,160,7
,2,1063,8599,32,0
,4,91,8601,160,7
,2,1064,8603,40,2
,4,91,8605,160,7
,2,1065,8607,40,2
,0,483,8609,32,1
,2,1066,8611,40,0
,2,1067,8613,40,0
,2,1068,8615,40,0
,5,53,8617,72,10
,3,50,8619,24,2
,5,1063,8621,72,10
,0,70,8623,80,8
,5,53,8625,72,10
,0,483,8627,32,2
,1,1,8629,48,2
,0,484,8631,16,0
,0,484,8633,16,0
,2,1069,8635,32,0
,2,1070,8637,32,0
,0,483,8639,32,1
,2,1071,8641,32,0
,2,1072,8643,40,0
,2,1073,8645,32,0
,1,1,8647,24,2
,2,1074,8649,48,0
,1,1,8651,32,1
,0,483,8653,32,1
,4,1075,8655,120,4
,2,846,8657,14376,0
,2,1075,8659,32,0
,0,87,8661,16,1
,4,1076,8663,160,8
,2,1076,8665,40,0
,4,51,8667,928,42
,1,52,8669,88,6
,4,53,8671,160,7
,2,1077,8673,40,0
,4,53,8675,160,7
,2,1078,8677,40,0
,4,53,8679,160,7
,2,1079,8681,40,2
,4,53,8683,160,7
,2,1080,8685,40,2
,4,53,8687,160,7
,2,1081,8689,40,0
,4,53,8691,160,7
,2,1082,8693,40,2
,4,91,8695,160,8
,4,51,8697,256,11
,1,52,8699,56,2
,4,91,8701,160,8
,4,51,8703,1248,58
,1,52,8705,88,6
,2,1079,8707,40,2
,4,91,8709,160,7
,2,1080,8711,40,2
,4,91,8713,160,7
,2,1081,8715,40,0
,4,91,8717,160,7
,2,1082,8719,40,2
,4,91,8721,160,8
,4,51,8723,448,21
,1,52,8725,80,5
,2,1083,8727,40,2
,4,91,8729,160,7
,2,1084,8731,40,2
,4,91,8733,160,8
,4,51,8735,256,10
,1,52,8737,56,2
,2,1085,8739,40,2
,4,91,8741,160,7
,4,91,8743,160,7
,4,53,8745,160,7
,2,1086,8747,40,2
,4,91,8749,160,8
,4,51,8751,192,7
,1,52,8753,56,2
,2,1086,8755,40,2
,0,483,8757,32,2
,1,1,8759,32,1
,0,484,8761,16,0
,1,52,8763,232,16
,2,1087,8765,40,0
,2,1088,8767,40,0
,2,1089,8769,40,0
,4,91,8771,160,8
,4,51,8773,2848,126
,0,483,8775,32,1
,1,52,8777,56,2
,4,53,8779,160,8
,4,51,8781,256,9
,5,53,8783,72,14
,3,50,8785,24,15
,5,1076,8787,72,14
,5,53,8789,72,14
,6,1090,8791,72,7
,0,70,8793,112,9
,5,53,8795,72,14
,5,53,8797,72,14
,5,53,8799,72,15
,1,69,8801,32,1
,5,53,8803,72,14
,5,53,8805,72,14
,5,53,8807,72,14
,5,53,8809,72,14
,4,53,8811,160,8
,4,51,8813,224,8
,1,52,8815,56,2
,0,483,8817,32,2
,1,1,8819,48,2
,0,484,8821,16,0
,0,484,8823,16,0
,2,1091,8825,40,0
,2,1092,8827,40,0
,1,1,8829,24,2
,2,1093,8831,48,0
,1,1,8833,32,1
,1,1,8835,24,0
,1,1,8837,32,1
,0,483,8839,32,2
,1,1,8841,48,2
,0,484,8843,16,0
,0,484,8845,16,0
,0,483,8847,32,1
,0,483,8849,32,1
,2,1094,8851,32,0
,2,1095,8853,40,0
,2,1096,8855,32,0
,2,1097,8857,32,0
,4,1098,8859,120,4
,2,846,8861,14936,0
,2,1098,8863,40,0
,0,87,8865,16,1
,1,1,8867,32,0
,1,1,8869,32,0
,4,74,8871,160,8
,4,51,8873,288,15
,1,52,8875,64,3
,4,834,8877,160,8
,4,51,8879,480,30
,1,52,8881,64,3
,0,16,8883,64,5
,4,1099,8885,160,8
,2,1099,8887,32,0
,4,51,8889,384,16
,1,52,8891,64,3
,4,1100,8893,160,8
,2,1100,8895,40,0
,4,51,8897,864,46
,1,52,8899,88,6
,4,1101,8901,160,8
,2,1101,8903,40,0
,4,51,8905,576,23
,1,52,8907,80,5
,4,1102,8909,160,8
,2,1102,8911,32,0
,4,51,8913,416,20
,1,52,8915,72,4
,4,1103,8917,160,8
,2,1103,8919,40,0
,4,51,8921,544,20
,1,52,8923,88,6
,4,1104,8925,160,8
,2,1104,8927,32,0
,4,51,8929,288,12
,1,52,8931,56,2
,4,91,8933,160,8
,4,51,8935,192,7
,1,52,8937,48,1
,2,1105,8939,40,2
,4,53,8941,160,7
,2,1105,8943,40,2
,4,91,8945,160,8
,4,51,8947,1344,71
,1,52,8949,120,10
,2,1106,8951,40,2
,4,91,8953,160,8
,4,51,8955,1408,57
,1,52,8957,104,8
,2,1107,8959,40,2
,4,91,8961,160,8
,4,51,8963,2208,105
,1,52,8965,112,9
,2,1108,8967,40,2
,4,91,8969,160,8
,4,51,8971,1312,76
,1,52,8973,112,9
,2,1109,8975,40,0
,4,91,8977,160,8
,4,51,8979,704,44
,1,52,8981,104,8
,2,1110,8983,40,2
,4,91,8985,160,8
,4,51,8987,768,51
,1,52,8989,64,3
,2,1111,8991,40,0
,4,91,8993,160,8
,4,51,8995,416,15
,1,52,8997,56,2
,2,1112,8999,40,2
,4,91,9001,160,8
,4,51,9003,3168,170
,1,52,9005,136,11
,2,1113,9007,40,2
,4,91,9009,160,8
,4,51,9011,352,17
,1,52,9013,72,4
,2,1114,9015,40,2
,4,91,9017,160,7
,2,1115,9019,40,2
,4,91,9021,160,8
,4,51,9023,320,18
,1,52,9025,48,1
,2,1116,9027,40,2
,4,91,9029,160,8
,4,51,9031,1088,75
,1,52,9033,80,5
,2,1117,9035,40,2
,4,91,9037,160,7
,2,1118,9039,40,2
,0,483,9041,32,2
,1,1,9043,48,2
,0,484,9045,16,0
,0,484,9047,16,0
,1,52,9049,368,24
,2,1119,9051,40,0
,2,1120,9053,32,0
,2,1121,9055,40,0
,2,1122,9057,40,0
,4,91,9059,160,8
,4,51,9061,3648,205
,0,483,9063,32,1
,1,52,9065,56,2
,4,53,9067,160,8
,4,51,9069,256,9
,5,53,9071,72,23
,5,74,9073,72,23
,5,834,9075,72,45
,3,120,9077,32,6
,5,1099,9079,72,23
,3,50,9081,24,4
,5,1100,9083,72,23
,5,1101,9085,72,23
,5,1102,9087,72,23
,5,1103,9089,72,23
,5,1104,9091,72,23
,0,70,9093,184,20
,5,53,9095,72,24
,1,69,9097,40,3
,3,120,9099,32,4
,3,50,9101,40,4
,5,53,9103,72,24
,1,69,9105,48,3
,6,1123,9107,72,7
,3,120,9109,32,2
,5,53,9111,72,24
,1,69,9113,96,2
,3,120,9115,32,3
,5,53,9117,72,23
,5,53,9119,72,23
,5,53,9121,72,23
,5,53,9123,72,23
,5,53,9125,72,24
,1,69,9127,56,4
,6,1124,9129,72,7
,3,50,9131,32,3
,3,120,9133,32,3
,5,53,9135,72,23
,5,53,9137,72,23
,5,53,9139,72,23
,5,53,9141,72,24
,1,69,9143,32,2
,3,120,9145,32,3
,5,53,9147,72,23
,1,1,9149,24,0
,1,1,9151,32,1
,0,483,9153,32,1
,2,1125,9155,32,0
,2,1126,9157,32,0
,2,1127,9159,32,0
,0,483,9161,32,1
,1,1,9163,24,0
,0,483,9165,32,2
,1,1,9167,80,4
,0,484,9169,16,0
,0,484,9171,16,0
,0,484,9173,16,0
,0,484,9175,16,0
,2,1128,9177,32,0
,2,1129,9179,32,0
,2,1130,9181,32,0
,2,1131,9183,32,0
,2,1132,9185,40,0
,2,1133,9187,40,0
,2,1134,9189,40,0
,0,483,9191,32,2
,1,1,9193,48,2
,0,484,9195,16,0
,0,484,9197,16,0
,2,1135,9199,40,0
,2,1136,9201,32,0
,1,1,9203,32,0
,1,1,9205,32,1
,1,1,9207,32,1
,1,1,9209,32,1
,1,1,9211,32,0
,1,1,9213,32,0
,1,1,9215,32,1
,1,1,9217,24,2
,1,1,9219,32,1
,1,1,9221,32,0
,1,1,9223,32,1
,1,1,9225,24,0
,1,1,9227,32,1
,1,1,9229,32,0
,1,1,9231,32,1
,0,483,9233,32,2
,1,1,9235,32,1
,0,484,9237,16,0
,2,1137,9239,32,0
,2,1138,9241,40,0
,2,1139,9243,32,0
,2,1140,9245,40,0
,1,1,9247,24,2
,2,1141,9249,56,0
,1,1,9251,32,1
,0,483,9253,32,1
,1,1,9255,32,1
,0,483,9257,32,2
,1,1,9259,64,3
,0,484,9261,16,0
,0,484,9263,16,0
,0,484,9265,16,0
,0,483,9267,32,1
,0,483,9269,32,1
,0,483,9271,32,1
,1,90,9273,24,2
,1,1,9275,32,1
,1,1,9277,48,2
,0,483,9279,32,2
,1,1,9281,80,4
,0,484,9283,16,0
,0,484,9285,16,0
,0,484,9287,16,0
,0,484,9289,16,0
,2,1142,9291,32,0
,2,1143,9293,40,0
,2,1144,9295,32,0
,2,1145,9297,32,0
,2,1146,9299,32,0
,1,1,9301,24,2
,2,1147,9303,40,0
,1,1,9305,32,1
,0,483,9307,32,1
,1,1,9309,24,2
,2,1148,9311,48,0
,1,1,9313,32,1
,0,483,9315,32,1
,0,483,9317,32,1
,0,483,9319,32,1
,0,483,9321,32,2
,1,1,9323,32,1
,0,484,9325,16,0
,2,1149,9327,40,0
,2,1150,9329,32,0
,2,1151,9331,32,0
,4,1152,9333,120,4
,2,846,9335,45376,0
,2,1152,9337,32,0
,0,87,9339,16,1
,1,1,9341,48,2
,4,1153,9343,160,7
,2,1153,9345,32,0
,4,1154,9347,160,7
,2,1154,9349,40,0
,4,1155,9351,160,7
,2,1155,9353,40,0
,4,1156,9355,160,8
,2,1156,9357,40,0
,4,51,9359,352,20
,1,52,9361,56,2
,4,1157,9363,160,8
,2,1157,9365,40,0
,4,51,9367,608,29
,1,52,9369,96,5
,4,1158,9371,160,8
,2,1158,9373,40,0
,4,51,9375,1664,79
,1,52,9377,56,2
,4,1159,9379,160,8
,2,1159,9381,32,0
,4,51,9383,448,19
,1,52,9385,64,3
,4,1160,9387,160,7
,2,1160,9389,56,0
,4,1161,9391,160,7
,2,1161,9393,40,0
,4,1162,9395,160,7
,2,1162,9397,32,0
,4,797,9399,160,7
,4,1163,9401,160,7
,2,1163,9403,40,0
,4,1164,9405,160,7
,2,1164,9407,40,0
,4,1165,9409,160,7
,2,1165,9411,40,0
,4,1166,9413,160,7
,2,1166,9415,40,0
,4,1167,9417,160,7
,2,1167,9419,40,0
,4,1168,9421,160,7
,2,1168,9423,40,0
,4,1169,9425,160,7
,2,1169,9427,40,0
,4,91,9429,160,8
,4,51,9431,288,13
,1,52,9433,56,2
,2,1170,9435,40,2
,4,91,9437,160,8
,4,51,9439,256,11
,1,52,9441,48,1
,2,1171,9443,40,2
,4,91,9445,160,7
,2,1172,9447,40,2
,4,91,9449,160,7
,2,1173,9451,40,2
,4,91,9453,160,7
,2,1174,9455,40,2
,4,91,9457,160,8
,4,51,9459,256,11
,1,52,9461,48,1
,2,1175,9463,40,2
,4,91,9465,160,7
,2,1176,9467,40,2
,4,91,9469,160,7
,2,1177,9471,40,2
,4,91,9473,160,7
,2,1178,9475,40,0
,4,91,9477,160,7
,2,1179,9479,40,2
,4,91,9481,160,7
,2,1180,9483,40,0
,4,91,9485,160,8
,4,51,9487,2400,94
,1,52,9489,144,13
,2,1181,9491,40,2
,4,91,9493,160,7
,2,1182,9495,32,0
,4,91,9497,160,8
,4,51,9499,224,9
,1,52,9501,56,2
,2,1183,9503,40,0
,4,91,9505,160,7
,2,1184,9507,32,0
,4,91,9509,160,8
,4,51,9511,416,17
,1,52,9513,72,4
,2,1185,9515,40,0
,4,91,9517,160,7
,2,1186,9519,32,0
,4,91,9521,160,8
,4,51,9523,1280,43
,1,52,9525,208,16
,2,1187,9527,40,0
,4,91,9529,160,7
,2,1188,9531,32,0
,4,91,9533,160,7
,2,1189,9535,40,0
,4,91,9537,160,7
,2,1190,9539,40,0
,4,91,9541,160,7
,2,1191,9543,40,2
,4,91,9545,160,7
,2,1192,9547,40,0
,4,91,9549,160,7
,2,1193,9551,40,2
,4,91,9553,160,7
,2,1194,9555,40,0
,4,91,9557,160,7
,2,1195,9559,40,2
,4,91,9561,160,7
,2,1196,9563,32,0
,4,91,9565,160,7
,2,1197,9567,40,0
,4,91,9569,160,7
,2,1198,9571,40,0
,4,91,9573,160,7
,2,1199,9575,40,2
,4,91,9577,160,7
,2,1200,9579,32,0
,4,91,9581,160,7
,2,1201,9583,40,0
,4,91,9585,160,7
,2,1202,9587,32,0
,4,91,9589,160,7
,2,1203,9591,40,0
,4,91,9593,160,7
,2,1204,9595,40,0
,4,91,9597,160,7
,2,1205,9599,40,2
,4,91,9601,160,7
,2,1206,9603,32,0
,4,91,9605,160,7
,2,1207,9607,32,0
,4,91,9609,160,7
,2,1208,9611,32,0
,4,91,9613,160,8
,4,51,9615,224,9
,1,52,9617,56,2
,2,1209,9619,40,0
,4,91,9621,160,8
,4,51,9623,288,13
,1,52,9625,56,2
,2,1210,9627,40,0
,4,91,9629,160,8
,4,51,9631,288,13
,1,52,9633,56,2
,2,1211,9635,40,0
,4,91,9637,160,7
,2,1212,9639,40,0
,4,91,9641,160,7
,2,1213,9643,40,2
,4,91,9645,160,7
,2,1214,9647,40,0
,4,91,9649,160,7
,2,1215,9651,40,2
,4,91,9653,160,7
,2,1216,9655,32,0
,4,91,9657,160,7
,2,1217,9659,40,0
,4,91,9661,160,7
,2,1218,9663,40,0
,4,91,9665,160,7
,2,1219,9667,40,2
,4,91,9669,160,7
,2,1220,9671,40,0
,4,91,9673,160,7
,2,1221,9675,40,2
,4,91,9677,160,7
,2,1222,9679,40,0
,4,91,9681,160,7
,2,1223,9683,40,2
,4,91,9685,160,7
,2,1224,9687,32,0
,4,91,9689,160,7
,2,1225,9691,40,0
,4,91,9693,160,7
,2,1226,9695,40,0
,4,91,9697,160,7
,2,1227,9699,40,2
,4,91,9701,160,7
,2,1228,9703,40,0
,4,91,9705,160,7
,2,1229,9707,40,2
,4,91,9709,160,7
,2,1230,9711,32,0
,4,91,9713,160,7
,2,1231,9715,40,0
,4,91,9717,160,7
,2,1232,9719,40,0
,4,91,9721,160,7
,2,1233,9723,40,2
,4,91,9725,160,7
,2,1234,9727,40,0
,4,91,9729,160,7
,2,1235,9731,40,2
,4,91,9733,160,7
,2,1236,9735,40,0
,4,91,9737,160,7
,2,1237,9739,40,2
,4,91,9741,160,7
,2,1238,9743,40,2
,4,91,9745,160,7
,2,1239,9747,40,2
,4,91,9749,160,7
,2,1240,9751,40,2
,4,91,9753,160,7
,2,1241,9755,40,2
,4,91,9757,160,7
,2,1242,9759,32,0
,4,91,9761,160,7
,2,1243,9763,40,2
,4,91,9765,160,7
,2,1244,9767,40,2
,4,91,9769,160,7
,2,1245,9771,40,0
,4,91,9773,160,7
,2,1246,9775,40,2
,4,1247,9777,160,8
,2,1247,9779,40,0
,4,51,9781,2432,109
,1,52,9783,240,18
,4,1248,9785,160,7
,2,1248,9787,32,0
,4,91,9789,160,7
,2,1249,9791,40,2
,4,91,9793,160,7
,2,1250,9795,40,2
,4,91,9797,160,7
,2,1251,9799,40,2
,4,91,9801,160,7
,2,1252,9803,40,2
,4,91,9805,160,7
,2,1253,9807,40,2
,4,91,9809,160,7
,2,1254,9811,40,2
,4,91,9813,160,7
,2,1255,9815,40,2
,4,91,9817,160,7
,2,1256,9819,40,2
,4,91,9821,160,7
,2,1257,9823,40,2
,4,91,9825,160,7
,2,1258,9827,40,2
,4,91,9829,160,7
,2,1259,9831,40,2
,0,483,9833,32,2
,1,1,9835,80,4
,0,484,9837,16,0
,0,484,9839,16,0
,0,484,9841,16,0
,0,484,9843,16,0
,1,52,9845,792,53
,2,1260,9847,40,0
,2,1261,9849,32,0
,2,1262,9851,40,0
,2,1263,9853,40,0
,2,1264,9855,40,0
,2,1265,9857,40,0
,2,1266,9859,32,0
,2,1267,9861,40,0
,2,1268,9863,32,0
,2,1269,9865,32,0
,2,1270,9867,32,0
,2,1271,9869,40,0
,2,1272,9871,32,0
,2,1273,9873,32,0
,2,1274,9875,32,0
,2,1275,9877,32,0
,2,1276,9879,32,0
,2,1277,9881,32,0
,2,1278,9883,32,0
,2,1279,9885,32,0
,2,1280,9887,32,0
,2,1281,9889,40,0
,2,1282,9891,40,0
,2,1283,9893,40,0
,4,91,9895,160,8
,4,51,9897,12928,695
,0,483,9899,32,1
,1,52,9901,56,2
,4,53,9903,160,8
,4,51,9905,256,9
,0,782,9907,128,1
,4,91,9909,160,7
,5,53,9911,72,8
,3,50,9913,24,11
,0,16,9915,64,5
,0,782,9917,128,2
,0,789,9919,24,2
,0,87,9921,16,1
,4,91,9923,160,7
,5,53,9925,72,8
,3,50,9927,24,3
,0,16,9929,64,3
,0,782,9931,128,2
,0,789,9933,24,2
,0,87,9935,16,1
,4,91,9937,160,7
,5,53,9939,72,8
,3,50,9941,24,3
,0,16,9943,64,3
,0,782,9945,128,2
,0,789,9947,24,2
,0,87,9949,16,1
,4,91,9951,160,7
,5,53,9953,72,8
,3,50,9955,24,3
,0,16,9957,64,3
,0,782,9959,128,2
,0,789,9961,24,2
,0,87,9963,16,1
,4,91,9965,160,7
,5,53,9967,72,8
,3,50,9969,24,3
,0,16,9971,64,3
,0,782,9973,128,2
,0,789,9975,24,2
,0,87,9977,16,1
,4,91,9979,160,7
,5,53,9981,72,8
,3,50,9983,24,3
,0,16,9985,64,3
,0,782,9987,128,2
,0,789,9989,24,2
,0,87,9991,16,1
,4,91,9993,160,7
,5,53,9995,72,8
,3,50,9997,24,3
,0,16,9999,64,3
,0,782,10001,128,2
,0,789,10003,24,2
,0,87,10005,16,1
,4,91,10007,160,7
,5,53,10009,72,8
,3,50,10011,24,3
,0,16,10013,64,3
,0,782,10015,128,2
,0,789,10017,24,2
,0,87,10019,16,1
,4,91,10021,160,7
,5,53,10023,72,8
,3,50,10025,24,3
,0,16,10027,64,3
,0,782,10029,128,2
,0,789,10031,24,2
,0,87,10033,16,1
,4,91,10035,160,7
,5,53,10037,72,8
,3,50,10039,24,3
,0,16,10041,64,3
,0,782,10043,128,2
,0,789,10045,24,2
,0,87,10047,16,1
,4,91,10049,160,7
,5,53,10051,72,8
,3,50,10053,24,3
,0,16,10055,64,3
,0,782,10057,128,2
,0,789,10059,24,2
,0,87,10061,16,1
,4,91,10063,160,7
,5,53,10065,72,8
,3,50,10067,24,3
,0,16,10069,64,3
,0,782,10071,128,2
,0,789,10073,24,2
,0,87,10075,16,1
,4,91,10077,160,7
,5,53,10079,72,8
,3,50,10081,24,3
,0,16,10083,64,3
,0,782,10085,128,2
,0,789,10087,24,2
,0,87,10089,16,1
,4,91,10091,160,7
,5,53,10093,72,8
,3,50,10095,24,3
,0,16,10097,64,3
,0,782,10099,128,2
,0,789,10101,24,2
,0,87,10103,16,1
,4,91,10105,160,7
,5,53,10107,72,8
,3,50,10109,24,3
,0,16,10111,64,3
,0,782,10113,128,2
,0,789,10115,24,2
,0,87,10117,16,1
,4,91,10119,160,7
,5,53,10121,72,8
,3,50,10123,24,3
,0,16,10125,64,3
,0,782,10127,128,2
,0,789,10129,24,2
,0,87,10131,16,1
,4,91,10133,160,7
,5,53,10135,72,8
,3,50,10137,24,3
,0,16,10139,64,3
,0,782,10141,128,2
,0,789,10143,24,2
,0,87,10145,16,1
,4,91,10147,160,7
,5,53,10149,72,8
,3,50,10151,24,3
,0,16,10153,64,3
,0,782,10155,128,2
,0,789,10157,24,2
,0,87,10159,16,1
,4,91,10161,160,7
,5,53,10163,72,8
,3,50,10165,24,3
,0,16,10167,64,3
,0,782,10169,128,2
,0,789,10171,24,2
,0,87,10173,16,1
,4,91,10175,160,7
,5,53,10177,72,8
,3,50,10179,24,3
,0,16,10181,64,3
,0,782,10183,128,2
,0,789,10185,24,2
,0,87,10187,16,1
,4,91,10189,160,7
,5,53,10191,72,8
,3,50,10193,24,3
,0,16,10195,64,3
,0,782,10197,128,2
,0,789,10199,24,2
,0,87,10201,16,1
,4,91,10203,160,7
,5,53,10205,72,8
,3,50,10207,24,3
,0,16,10209,64,3
,0,782,10211,128,2
,0,789,10213,24,2
,0,87,10215,16,1
,4,91,10217,160,7
,5,53,10219,72,8
,3,50,10221,24,3
,0,16,10223,64,3
,0,782,10225,128,2
,0,789,10227,24,2
,0,87,10229,16,1
,4,91,10231,160,7
,5,53,10233,72,8
,3,50,10235,24,3
,0,16,10237,64,3
,0,782,10239,128,2
,0,789,10241,24,2
,0,87,10243,16,1
,4,91,10245,160,7
,5,53,10247,72,8
,3,50,10249,24,3
,0,16,10251,64,3
,0,782,10253,128,5
,0,789,10255,24,2
,0,785,10257,40,2
,0,785,10259,40,2
,0,87,10261,16,1
,0,782,10263,128,2
,0,789,10265,24,2
,0,87,10267,16,1
,3,50,10269,24,8
,0,782,10271,128,2
,0,789,10273,24,2
,0,87,10275,16,1
,4,1164,10277,160,7
,5,1164,10279,72,8
,3,1164,10281,24,5
,0,16,10283,64,3
,4,1137,10285,160,7
,5,1137,10287,72,8
,3,1137,10289,24,3
,0,16,10291,64,3
,4,1284,10293,160,7
,2,1284,10295,32,0
,5,1284,10297,72,8
,3,1284,10299,24,3
,0,16,10301,64,3
,4,1285,10303,120,4
,2,846,10305,3664,0
,2,1285,10307,40,0
,0,87,10309,16,1
,4,1268,10311,160,7
,4,91,10313,160,7
,2,1286,10315,40,0
,0,483,10317,32,2
,1,1,10319,128,7
,0,484,10321,16,0
,0,484,10323,16,0
,0,484,10325,16,0
,0,484,10327,16,0
,0,484,10329,16,0
,0,484,10331,16,0
,0,484,10333,16,0
,1,52,10335,120,9
,2,1287,10337,32,0
,4,91,10339,160,8
,4,51,10341,928,56
,0,483,10343,32,1
,1,52,10345,56,2
,4,53,10347,160,8
,4,51,10349,256,9
,4,1288,10351,120,4
,2,846,10353,25648,0
,2,1288,10355,40,2
,0,87,10357,16,1
,4,1289,10359,160,7
,2,1289,10361,40,0
,4,1269,10363,160,7
,4,1290,10365,160,7
,2,1290,10367,40,0
,4,1291,10369,160,7
,2,1291,10371,40,0
,4,1292,10373,160,7
,2,1292,10375,48,0
,4,1293,10377,160,7
,2,1293,10379,40,0
,4,1294,10381,160,7
,2,1294,10383,40,0
,4,1295,10385,160,7
,2,1295,10387,40,0
,4,1296,10389,160,7
,2,1296,10391,40,0
,4,1297,10393,160,7
,2,1297,10395,40,0
,4,1298,10397,160,7
,2,1298,10399,40,0
,4,1299,10401,160,7
,2,1299,10403,40,0
,4,1300,10405,160,7
,2,1300,10407,40,0
,4,1301,10409,160,7
,2,1301,10411,32,0
,4,1302,10413,160,7
,2,1302,10415,40,0
,4,1303,10417,160,7
,2,1303,10419,40,0
,4,1304,10421,160,7
,2,1304,10423,32,0
,4,1305,10425,160,7
,2,1305,10427,40,0
,4,91,10429,160,7
,2,1306,10431,40,2
,4,91,10433,160,7
,2,1307,10435,40,2
,4,91,10437,160,7
,2,1308,10439,40,2
,4,91,10441,160,7
,2,1309,10443,40,2
,4,91,10445,160,7
,2,1310,10447,40,2
,4,91,10449,160,7
,2,1311,10451,40,2
,4,91,10453,160,7
,2,1312,10455,40,2
,4,91,10457,160,7
,2,1313,10459,40,0
,4,91,10461,160,7
,2,1314,10463,40,2
,4,91,10465,160,7
,2,1315,10467,40,2
,4,91,10469,160,7
,2,1316,10471,40,2
,0,483,10473,32,2
,1,1,10475,64,3
,0,484,10477,16,0
,0,484,10479,16,0
,0,484,10481,16,0
,1,52,10483,464,30
,2,1317,10485,40,0
,2,1318,10487,32,0
,4,91,10489,160,8
,4,51,10491,2912,159
,0,483,10493,32,1
,1,52,10495,56,2
,4,53,10497,160,8
,4,51,10499,256,9
,5,53,10501,72,28
,5,831,10503,72,12
,5,1268,10505,72,16
,5,1289,10507,72,29
,5,1269,10509,72,32
,5,1290,10511,72,28
,5,1291,10513,72,28
,5,1292,10515,72,28
,5,1293,10517,72,28
,5,1294,10519,72,28
,5,1295,10521,72,28
,5,1296,10523,72,28
,5,1297,10525,72,28
,5,1298,10527,72,28
,5,1299,10529,72,28
,5,1300,10531,72,28
,5,1301,10533,72,28
,5,1302,10535,72,28
,5,1303,10537,72,28
,5,1304,10539,72,28
,5,1305,10541,72,28
,0,70,10543,232,25
,5,53,10545,72,28
,5,53,10547,72,28
,5,53,10549,72,28
,5,53,10551,72,28
,5,53,10553,72,29
,1,69,10555,40,1
,5,53,10557,72,28
,5,53,10559,72,28
,5,53,10561,72,28
,5,53,10563,72,28
,5,53,10565,72,29
,1,69,10567,32,1
,4,1319,10569,120,4
,2,846,10571,10680,0
,2,1319,10573,40,2
,0,87,10575,16,1
,4,1320,10577,160,8
,2,1320,10579,32,0
,1,1,10581,88,3
,4,1321,10583,160,7
,2,1321,10585,40,0
,4,1270,10587,160,7
,4,1322,10589,160,7
,2,1322,10591,40,0
,4,1323,10593,160,7
,2,1323,10595,40,0
,4,1324,10597,160,7
,2,1324,10599,40,0
,4,1325,10601,160,7
,2,1325,10603,40,0
,4,1326,10605,160,7
,2,1326,10607,32,0
,4,1327,10609,160,7
,2,1327,10611,40,0
,4,1328,10613,160,7
,2,1328,10615,48,0
,4,1329,10617,160,7
,2,1329,10619,32,0
,4,1330,10621,160,7
,2,1330,10623,40,0
,4,1331,10625,160,7
,2,1331,10627,40,0
,4,1332,10629,160,7
,2,1332,10631,40,0
,4,1333,10633,160,7
,2,1333,10635,40,0
,4,1334,10637,160,7
,2,1334,10639,40,0
,4,1335,10641,160,7
,2,1335,10643,40,0
,4,91,10645,160,7
,2,1336,10647,40,2
,4,91,10649,160,7
,2,1337,10651,40,2
,4,91,10653,160,7
,2,1338,10655,40,2
,4,91,10657,160,7
,2,1339,10659,40,0
,0,483,10661,32,2
,1,1,10663,64,3
,0,484,10665,16,0
,0,484,10667,16,0
,0,484,10669,16,0
,1,52,10671,392,26
,4,91,10673,160,8
,4,51,10675,1920,99
,0,483,10677,32,1
,1,52,10679,56,2
,4,53,10681,160,8
,4,51,10683,256,9
,5,53,10685,72,24
,5,1320,10687,72,24
,5,1321,10689,72,25
,5,1270,10691,72,27
,5,1322,10693,72,24
,5,1323,10695,72,24
,5,1324,10697,72,24
,5,1325,10699,72,24
,5,1326,10701,72,24
,5,1327,10703,72,24
,5,1328,10705,72,24
,5,1329,10707,72,24
,5,1330,10709,72,24
,5,1331,10711,72,24
,5,1332,10713,72,24
,5,1333,10715,72,24
,5,1334,10717,72,24
,5,1335,10719,72,24
,0,70,10721,192,22
,5,53,10723,72,24
,5,53,10725,72,24
,5,53,10727,72,24
,4,1340,10729,120,4
,2,846,10731,2560,0
,2,1340,10733,40,2
,0,87,10735,16,1
,4,1341,10737,160,7
,2,1341,10739,32,0
,4,1342,10741,160,7
,2,1342,10743,32,0
,4,53,10745,160,8
,4,51,10747,320,17
,1,52,10749,56,2
,2,1343,10751,32,0
,0,483,10753,32,2
,1,1,10755,64,3
,0,484,10757,16,0
,0,484,10759,16,0
,0,484,10761,16,0
,1,52,10763,160,11
,4,91,10765,160,8
,4,51,10767,768,39
,0,483,10769,32,1
,1,52,10771,56,2
,4,53,10773,160,8
,4,51,10775,256,9
,1,1,10777,24,2
,2,1344,10779,48,0
,1,1,10781,32,1
,1,1,10783,24,0
,1,1,10785,32,1
,0,483,10787,32,1
,0,483,10789,32,1
,2,1345,10791,32,0
,4,1346,10793,120,4
,2,846,10795,7400,0
,2,1346,10797,40,2
,0,87,10799,16,1
,4,1347,10801,160,7
,2,1347,10803,40,0
,4,1348,10805,160,7
,2,1348,10807,40,0
,4,1349,10809,160,7
,2,1349,10811,40,0
,4,1350,10813,160,7
,2,1350,10815,32,0
,4,91,10817,160,7
,2,1351,10819,40,2
,4,91,10821,160,7
,2,1352,10823,40,2
,4,91,10825,160,7
,2,1353,10827,40,2
,4,91,10829,160,7
,2,1354,10831,40,2
,0,483,10833,32,2
,1,1,10835,48,2
,0,484,10837,16,0
,0,484,10839,16,0
,1,52,10841,176,12
,4,91,10843,160,8
,4,51,10845,992,55
,0,483,10847,32,1
,1,52,10849,56,2
,4,53,10851,160,8
,4,51,10853,256,9
,5,53,10855,72,11
,5,1341,10857,72,13
,5,1347,10859,72,11
,5,1348,10861,72,11
,5,1349,10863,72,14
,5,1350,10865,72,11
,0,70,10867,88,9
,5,53,10869,72,11
,5,53,10871,72,11
,5,53,10873,72,11
,4,1355,10875,120,4
,2,846,10877,1736,0
,2,1355,10879,40,2
,0,87,10881,16,1
,4,1356,10883,160,7
,2,1356,10885,40,0
,4,91,10887,160,7
,2,1357,10889,40,2
,0,483,10891,32,2
,1,1,10893,48,2
,0,484,10895,16,0
,0,484,10897,16,0
,1,52,10899,128,9
,4,91,10901,160,8
,4,51,10903,576,28
,0,483,10905,32,1
,1,52,10907,56,2
,4,53,10909,160,8
,4,51,10911,256,9
,5,53,10913,72,8
,5,1356,10915,72,11
,0,70,10917,64,6
,5,53,10919,72,7
,0,70,10921,56,5
,5,53,10923,72,38
,3,50,10925,24,29
,3,50,10927,24,5
,3,50,10929,24,79
,5,1153,10931,72,38
,5,1154,10933,72,38
,5,1155,10935,72,38
,5,1156,10937,72,38
,5,1157,10939,72,38
,5,1158,10941,72,38
,5,1159,10943,72,38
,5,1160,10945,72,39
,5,1161,10947,72,38
,5,1162,10949,72,38
,5,797,10951,72,38
,5,1163,10953,72,41
,5,1164,10955,72,41
,3,50,10957,24,2
,5,1165,10959,72,38
,6,1358,10961,72,7
,6,1359,10963,72,7
,5,1166,10965,72,38
,5,1167,10967,72,42
,5,1168,10969,72,42
,0,70,10971,376,33
,5,53,10973,72,38
,5,53,10975,72,38
,5,53,10977,72,38
,5,53,10979,72,38
,5,53,10981,72,38
,5,53,10983,72,38
,5,53,10985,72,38
,5,53,10987,72,38
,5,53,10989,72,38
,5,53,10991,72,39
,1,69,10993,48,1
,5,53,10995,72,39
,1,69,10997,48,2
,3,50,10999,40,4
,1,1,11001,24,2
,2,1360,11003,48,0
,1,1,11005,32,1
,0,483,11007,32,2
,1,1,11009,32,1
,0,484,11011,16,0
,5,53,11013,72,38
,5,53,11015,72,38
,5,53,11017,72,38
,5,53,11019,72,38
,5,53,11021,72,38
,5,53,11023,72,39
,1,69,11025,32,1
,5,53,11027,72,38
,5,53,11029,72,38
,5,53,11031,72,38
,5,53,11033,72,38
,5,53,11035,72,38
,5,53,11037,72,38
,5,53,11039,72,38
,5,53,11041,72,38
,5,53,11043,72,38
,5,53,11045,72,38
,5,53,11047,72,38
,5,53,11049,72,38
,5,53,11051,72,38
,5,53,11053,72,38
,5,53,11055,72,38
,5,53,11057,72,38
,5,53,11059,72,38
,5,53,11061,72,38
,5,53,11063,72,38
,5,53,11065,72,38
,5,53,11067,72,38
,5,53,11069,72,38
,5,53,11071,72,38
,5,53,11073,72,38
,5,53,11075,72,38
,5,53,11077,72,38
,5,53,11079,72,38
,5,53,11081,72,38
,5,53,11083,72,38
,5,53,11085,72,38
,5,53,11087,72,38
,5,53,11089,72,38
,5,53,11091,72,38
,5,53,11093,72,38
,5,53,11095,72,38
,5,53,11097,72,38
,5,53,11099,72,38
,5,53,11101,72,38
,5,53,11103,72,38
,5,53,11105,72,38
,5,53,11107,72,38
,5,53,11109,72,38
,5,53,11111,72,38
,5,53,11113,72,38
,5,53,11115,72,38
,5,53,11117,72,38
,5,53,11119,72,38
,5,53,11121,72,38
,5,53,11123,72,39
,1,69,11125,48,1
,5,53,11127,72,39
,1,69,11129,48,1
,5,53,11131,72,39
,1,69,11133,56,1
,5,53,11135,72,39
,1,69,11137,48,1
,5,53,11139,72,38
,5,53,11141,72,38
,5,53,11143,72,39
,1,69,11145,32,1
,5,53,11147,72,38
,5,53,11149,72,38
,5,53,11151,72,39
,1,69,11153,32,1
,5,53,11155,72,38
,5,1247,11157,72,39
,1,69,11159,40,3
,3,50,11161,24,2
,3,50,11163,24,2
,5,1248,11165,72,39
,1,69,11167,40,1
,5,53,11169,72,38
,5,53,11171,72,38
,5,53,11173,72,38
,5,53,11175,72,38
,5,53,11177,72,38
,5,53,11179,72,38
,5,53,11181,72,38
,5,53,11183,72,38
,5,53,11185,72,38
,5,53,11187,72,38
,5,53,11189,72,38
,1,1,11191,24,0
,0,483,11193,32,1
,0,483,11195,32,2
,1,1,11197,32,1
,0,484,11199,16,0
,4,53,11201,160,7
,0,483,11203,32,2
,1,1,11205,32,1
,0,484,11207,16,0
,2,1361,11209,32,0
,2,1362,11211,32,0
,0,483,11213,32,1
,0,483,11215,32,2
,1,1,11217,32,1
,0,484,11219,16,0
,0,483,11221,32,1
,0,483,11223,32,1
,0,483,11225,32,1
,2,1363,11227,32,0
,4,1137,11229,160,8
,4,51,11231,640,25
,1,52,11233,56,2
,0,483,11235,32,2
,1,1,11237,48,2
,0,484,11239,16,0
,0,484,11241,16,0
,2,1364,11243,32,0
,2,1365,11245,32,0
,2,1366,11247,40,0
,2,1367,11249,32,0
,2,1368,11251,40,0
,2,1369,11253,32,0
,2,1370,11255,40,0
,2,1371,11257,40,0
,2,1372,11259,32,0
,2,1373,11261,32,0
,2,1374,11263,32,0
,2,1375,11265,32,0
,0,483,11267,32,1
,1,1,11269,32,1
,2,1376,11271,48,0
,1,1,11273,32,1
,0,483,11275,32,1
,0,483,11277,32,1
,0,483,11279,32,2
,1,1,11281,32,1
,0,484,11283,16,0
,0,483,11285,32,1
,1,1,11287,32,0
,0,483,11289,32,1
,0,483,11291,32,2
,1,1,11293,48,2
,0,484,11295,16,0
,0,484,11297,16,0
,2,1377,11299,40,0
,0,483,11301,32,2
,1,1,11303,32,1
,0,484,11305,16,0
,2,1378,11307,32,0
,0,483,11309,32,2
,1,1,11311,32,1
,0,484,11313,16,0
,2,1379,11315,32,0
,2,1380,11317,32,0
,0,483,11319,32,1
,1,1,11321,24,2
,2,1381,11323,48,0
,1,1,11325,32,1
,0,483,11327,32,1
,1,1,11329,32,0
,0,483,11331,32,1
,2,1382,11333,32,0
,2,1383,11335,32,0
,2,1384,11337,32,0
,2,1385,11339,32,0
,1,1,11341,32,0
,1,1,11343,24,0
,1,1,11345,32,1
,1,1,11347,32,0
,0,483,11349,32,1
,2,1386,11351,32,0
,0,483,11353,32,1
,1,1,11355,24,2
,2,1387,11357,48,0
,1,1,11359,32,1
,0,483,11361,32,2
,1,1,11363,32,1
,0,484,11365,16,0
,0,483,11367,32,2
,1,1,11369,32,1
,0,484,11371,16,0
,0,483,11373,32,2
,1,1,11375,32,1
,0,484,11377,16,0
,2,1388,11379,32,0
,1,1,11381,48,3
,2,1389,11383,32,0
,2,1390,11385,32,0
,2,1391,11387,32,0
,1,1,11389,48,3
,1,1,11391,32,0
,1,1,11393,32,0
,0,483,11395,32,2
,1,1,11397,80,4
,0,484,11399,16,0
,0,484,11401,16,0
,0,484,11403,16,0
,0,484,11405,16,0
,2,1392,11407,32,0
,2,1393,11409,32,0
,2,1394,11411,32,0
,2,1395,11413,32,0
,2,1396,11415,32,0
,2,1397,11417,40,0
,0,483,11419,32,2
,1,1,11421,32,1
,0,484,11423,16,0
,0,483,11425,32,1
,1,1,11427,24,2
,2,1398,11429,56,0
,1,1,11431,32,1
,0,483,11433,32,1
,0,483,11435,32,2
,1,1,11437,64,3
,0,484,11439,16,0
,0,484,11441,16,0
,0,484,11443,16,0
,2,1399,11445,32,0
,2,1400,11447,32,0
,0,483,11449,32,2
,1,1,11451,32,1
,0,484,11453,16,0
,2,1401,11455,32,0
,0,483,11457,32,2
,1,1,11459,48,2
,0,484,11461,16,0
,0,484,11463,16,0
,0,483,11465,32,1
,0,483,11467,32,2
,1,1,11469,112,6
,0,484,11471,16,0
,0,484,11473,16,0
,0,484,11475,16,0
,0,484,11477,16,0
,0,484,11479,16,0
,0,484,11481,16,0
,2,1402,11483,32,0
,2,1403,11485,32,0
,2,1404,11487,32,0
,0,483,11489,32,1
,0,483,11491,32,2
,1,1,11493,32,1
,0,484,11495,16,0
,1,1,11497,32,0
,1,1,11499,32,1
,0,483,11501,32,2
,1,1,11503,48,2
,0,484,11505,16,0
,0,484,11507,16,0
,2,1405,11509,32,0
,2,1406,11511,32,0
,2,1407,11513,32,0
,0,483,11515,32,1
,0,483,11517,32,1
,0,483,11519,32,2
,1,1,11521,32,1
,0,484,11523,16,0
,2,1408,11525,32,0
,0,483,11527,32,1
,1,1,11529,24,2
,2,1409,11531,56,0
,1,1,11533,32,1
,0,483,11535,32,1
,1,1,11537,32,1
,1,1,11539,56,0
,1,1,11541,32,1
,4,856,11543,160,8
,4,51,11545,224,9
,1,52,11547,56,2
,4,53,11549,160,7
,2,1410,11551,40,2
,4,53,11553,160,7
,2,1411,11555,40,2
,4,53,11557,160,7
,2,1412,11559,40,2
,0,483,11561,32,2
,1,1,11563,112,6
,0,484,11565,16,0
,0,484,11567,16,0
,0,484,11569,16,0
,0,484,11571,16,0
,0,484,11573,16,0
,0,484,11575,16,0
,2,1413,11577,32,0
,2,1414,11579,32,0
,2,1415,11581,32,0
,2,1416,11583,40,0
,2,1417,11585,32,0
,2,1418,11587,32,0
,4,1419,11589,120,4
,2,1420,11591,384,0
,2,1419,11593,184,0
,0,87,11595,16,1
,1,1,11597,32,0
,4,91,11599,160,8
,4,51,11601,544,19
,1,52,11603,48,1
,4,91,11605,160,8
,4,51,11607,288,15
,1,52,11609,48,1
,0,483,11611,32,2
,1,1,11613,32,1
,0,484,11615,16,0
,1,52,11617,152,10
,2,1421,11619,32,0
,2,1422,11621,32,0
,2,1423,11623,32,0
,4,91,11625,160,8
,4,51,11627,640,26
,0,483,11629,32,1
,1,52,11631,56,2
,4,53,11633,160,8
,4,51,11635,256,9
,0,483,11637,32,1
,0,483,11639,32,2
,1,1,11641,48,2
,0,484,11643,16,0
,0,484,11645,16,0
,0,483,11647,32,2
,1,1,11649,32,1
,0,484,11651,16,0
,2,1424,11653,32,0
,0,483,11655,32,2
,1,1,11657,80,4
,0,484,11659,16,0
,0,484,11661,16,0
,0,484,11663,16,0
,0,484,11665,16,0
,2,1425,11667,32,0
,1,1,11669,32,0
,0,483,11671,32,2
,1,1,11673,32,1
,0,484,11675,16,0
,2,1426,11677,32,0
,2,1427,11679,32,0
,0,483,11681,32,1
,2,1428,11683,32,0
,2,1429,11685,32,0
,0,782,11687,128,2
,0,789,11689,24,2
,0,87,11691,16,1
,4,91,11693,160,7
,5,53,11695,72,8
,3,50,11697,24,3
,0,16,11699,64,3
,0,483,11701,32,1
,2,1430,11703,32,0
,4,1431,11705,120,4
,2,846,11707,11608,0
,2,1431,11709,40,0
,0,87,11711,16,1
,4,1432,11713,160,8
,2,1432,11715,32,0
,4,51,11717,672,38
,1,52,11719,72,4
,4,1433,11721,160,8
,2,1433,11723,40,0
,4,51,11725,1824,87
,1,52,11727,112,8
,4,1434,11729,160,7
,2,1434,11731,40,0
,4,1435,11733,160,7
,2,1435,11735,40,0
,4,53,11737,160,7
,4,91,11739,160,8
,4,51,11741,192,8
,1,52,11743,48,1
,4,91,11745,160,7
,2,1436,11747,40,2
,4,91,11749,160,7
,2,1437,11751,40,2
,4,91,11753,160,8
,4,51,11755,480,26
,1,52,11757,72,4
,2,1438,11759,40,2
,4,91,11761,160,7
,2,1439,11763,40,2
,4,91,11765,160,7
,2,1440,11767,40,2
,4,91,11769,160,8
,4,51,11771,1024,47
,1,52,11773,144,9
,2,1441,11775,40,2
,4,91,11777,160,7
,2,1442,11779,40,2
,4,91,11781,160,8
,4,51,11783,352,19
,1,52,11785,56,2
,2,1443,11787,32,0
,0,16,11789,64,5
,4,91,11791,160,7
,2,1444,11793,40,2
,4,91,11795,160,7
,2,1445,11797,40,0
,4,91,11799,160,7
,2,1446,11801,40,2
,4,91,11803,160,7
,2,1447,11805,40,2
,4,91,11807,160,7
,2,1448,11809,40,2
,4,91,11811,160,7
,2,1449,11813,40,2
,0,483,11815,32,2
,1,1,11817,48,2
,0,484,11819,16,0
,0,484,11821,16,0
,1,52,11823,360,23
,2,1450,11825,32,0
,2,1451,11827,32,0
,2,1452,11829,40,0
,2,1453,11831,32,0
,2,1454,11833,32,0
,2,1455,11835,40,0
,2,1456,11837,40,0
,2,1457,11839,40,0
,4,91,11841,160,8
,4,51,11843,2816,135
,0,483,11845,32,1
,1,52,11847,56,2
,4,53,11849,160,8
,4,51,11851,256,9
,0,782,11853,128,5
,0,789,11855,24,2
,0,785,11857,40,2
,0,785,11859,40,2
,0,87,11861,16,1
,0,782,11863,128,2
,0,789,11865,24,2
,0,87,11867,16,1
,3,50,11869,24,26
,0,782,11871,128,2
,0,789,11873,24,2
,0,87,11875,16,1
,0,782,11877,128,2
,0,789,11879,24,2
,0,87,11881,16,1
,0,782,11883,128,2
,0,789,11885,24,2
,0,87,11887,16,1
,0,782,11889,128,2
,0,789,11891,24,2
,0,87,11893,16,1
,0,782,11895,128,2
,0,789,11897,24,2
,0,87,11899,16,1
,0,782,11901,128,2
,0,789,11903,24,2
,0,87,11905,16,1
,0,782,11907,128,2
,0,789,11909,24,2
,0,87,11911,16,1
,4,1450,11913,160,7
,5,1450,11915,72,8
,3,1450,11917,24,11
,0,16,11919,64,5
,4,1458,11921,160,7
,2,1458,11923,32,0
,5,1458,11925,72,8
,3,1458,11927,24,3
,0,16,11929,64,3
,4,1459,11931,160,7
,2,1459,11933,32,0
,5,1459,11935,72,8
,3,1459,11937,24,3
,0,16,11939,64,3
,4,1460,11941,160,7
,2,1460,11943,32,0
,5,1460,11945,72,8
,3,1460,11947,24,3
,0,16,11949,64,3
,4,1137,11951,160,7
,5,1137,11953,72,8
,3,1137,11955,24,3
,0,16,11957,64,3
,4,1284,11959,160,7
,5,1284,11961,72,8
,3,1284,11963,24,3
,0,16,11965,64,3
,4,1461,11967,160,7
,2,1461,11969,40,0
,5,1461,11971,72,8
,3,1461,11973,24,3
,0,16,11975,64,3
,4,1462,11977,160,7
,2,1462,11979,40,0
,5,1462,11981,72,8
,3,1462,11983,24,3
,0,16,11985,64,3
,4,1463,11987,160,7
,2,1463,11989,32,0
,5,1463,11991,72,8
,3,1463,11993,24,3
,0,16,11995,64,3
,4,1464,11997,120,4
,2,846,11999,2248,0
,2,1464,12001,40,0
,0,87,12003,16,1
,4,1465,12005,160,8
,2,1465,12007,32,0
,4,51,12009,256,11
,1,52,12011,56,2
,4,1466,12013,160,8
,2,1466,12015,32,0
,4,51,12017,288,13
,1,52,12019,56,2
,4,562,12021,160,7
,4,1467,12023,160,8
,2,1467,12025,32,0
,4,51,12027,448,30
,1,52,12029,56,2
,4,1468,12031,160,8
,2,1468,12033,32,0
,4,51,12035,352,22
,1,52,12037,64,3
,4,1469,12039,160,8
,2,1469,12041,32,0
,4,51,12043,256,11
,1,52,12045,56,2
,0,483,12047,32,1
,1,52,12049,144,12
,4,91,12051,160,8
,4,51,12053,512,33
,0,483,12055,32,1
,1,52,12057,56,2
,4,53,12059,160,8
,4,51,12061,256,9
,5,53,12063,72,22
,3,50,12065,24,12
,3,50,12067,24,8
,5,53,12069,72,22
,3,50,12071,24,5
,5,1432,12073,72,22
,5,1433,12075,72,22
,5,53,12077,72,24
,3,50,12079,24,5
,5,1434,12081,72,22
,5,1435,12083,72,22
,0,70,12085,184,18
,5,53,12087,72,22
,5,53,12089,72,22
,4,1,12091,2208,47
,5,53,12093,72,22
,5,53,12095,72,22
,5,53,12097,72,22
,5,53,12099,72,22
,5,53,12101,72,22
,5,53,12103,72,22
,5,53,12105,72,22
,0,483,12107,32,1
,2,1470,12109,32,0
,5,53,12111,72,23
,1,69,12113,32,1
,5,53,12115,72,22
,5,53,12117,72,23
,1,69,12119,32,1
,4,1415,12121,160,8
,4,51,12123,448,24
,1,52,12125,48,1
,0,483,12127,32,2
,1,1,12129,32,1
,0,484,12131,16,0
,2,1471,12133,32,0
,2,1472,12135,32,0
,0,483,12137,32,1
,2,1473,12139,32,0
,1,1,12141,24,2
,2,1474,12143,48,0
,1,1,12145,32,1
,1,1,12147,32,0
,0,483,12149,32,1
,0,483,12151,32,1
,0,483,12153,32,2
,1,1,12155,32,1
,0,484,12157,16,0
,2,1475,12159,32,0
,2,1476,12161,32,0
,0,483,12163,32,2
,1,1,12165,48,2
,0,484,12167,16,0
,0,484,12169,16,0
,0,483,12171,32,1
,0,483,12173,32,2
,1,1,12175,32,1
,0,484,12177,16,0
,0,483,12179,32,1
,0,483,12181,32,1
,1,1,12183,24,0
,0,483,12185,32,2
,1,1,12187,80,4
,0,484,12189,16,0
,0,484,12191,16,0
,0,484,12193,16,0
,0,484,12195,16,0
,2,1477,12197,40,0
,1,1,12199,24,0
,4,53,12201,160,7
,0,483,12203,32,2
,1,1,12205,112,6
,0,484,12207,16,0
,0,484,12209,16,0
,0,484,12211,16,0
,0,484,12213,16,0
,0,484,12215,16,0
,0,484,12217,16,0
,2,1478,12219,32,0
,2,1479,12221,32,0
,0,483,12223,32,1
,1,1,12225,262160,0
,0,483,12227,32,1
,0,483,12229,32,1
,0,483,12231,32,1
,0,483,12233,32,1
,1,1480,12235,240,0
,1,1480,12237,248,1
,1,1,12239,88,1
,1,1480,12241,272,0
,1,1480,12243,216,1
,1,1,12245,104,1
,1,1480,12247,64,0
,1,1480,12249,120,1
,1,1,12251,40,1
,1,1480,12253,688,0
,1,1480,12255,344,1
,1,1,12257,136,1
,1,1480,12259,128,0
,1,1480,12261,248,1
,1,1,12263,88,1
,1,1480,12265,48,0
,1,1480,12267,88,1
,1,1,12269,32,1
,1,1480,12271,704,0
,1,1480,12273,864,0
,1,1480,12275,1264,0
,1,1480,12277,1400,2
,1,1,12279,1184,1
,1,1,12281,32,1
,1,1480,12283,432,0
,1,1480,12285,504,2
,1,1,12287,304,1
,1,1,12289,24,1
,5,1467,12291,72,7
,1,1480,12293,576,0
,1,1480,12295,672,0
,1,1480,12297,600,1
,1,1,12299,208,1
,1,1480,12301,208,0
,1,1480,12303,248,1
,1,1,12305,104,1
,0,16,12307,64,4
,1,1481,12309,56,2
,0,16,12311,64,4
,1,1481,12313,56,2
,0,16,12315,64,4
,1,1481,12317,56,2
,0,16,12319,64,4
,1,1481,12321,56,2
,0,16,12323,64,4
,1,1481,12325,56,2
,5,53,12327,72,7
,0,16,12329,64,1
,1,1481,12331,488,37
,0,87,12333,16,1
,2,1482,12335,32,0
,0,87,12337,16,1
,0,87,12339,16,1
,2,1483,12341,32,0
,0,87,12343,16,1
,2,1484,12345,40,0
,0,87,12347,16,1
,2,1485,12349,40,0
,2,1486,12351,40,0
,2,1487,12353,40,0
,2,1488,12355,40,0
,2,1489,12357,40,0
,2,1490,12359,40,0
,2,1491,12361,40,0
,2,1492,12363,40,0
,2,1493,12365,40,0
,2,1494,12367,40,0
,2,1495,12369,48,0
,2,1496,12371,48,0
,2,1497,12373,40,0
,2,1498,12375,40,0
,1,1499,12377,32,2
,0,16,12379,64,6
,1,1499,12381,32,2
,0,16,12383,64,6
,0,16,12385,64,6
,1,1499,12387,32,2
,0,16,12389,64,6
,1,1499,12391,32,2
,0,16,12393,64,6
,1,1499,12395,32,2
,0,16,12397,64,6
,1,1499,12399,32,2
,0,16,12401,64,6
,1,1499,12403,32,2
,0,16,12405,64,6
,1,1499,12407,32,2
,0,16,12409,64,6
,1,1499,12411,32,2
,0,16,12413,64,6
,1,1499,12415,32,2
,0,16,12417,64,6
,1,1499,12419,32,2
,0,16,12421,64,6
,1,1499,12423,32,2
,0,16,12425,64,6
,1,1499,12427,32,2
,0,16,12429,64,4
,0,16,12431,64,4
,1,1481,12433,56,2
,1,1481,12435,80,4
,1,90,12437,144,8
,0,16,12439,64,1
,0,16,12441,64,4
,1,1481,12443,56,2
,1,90,12445,144,8
,0,16,12447,64,4
,1,1481,12449,56,2
,0,16,12451,64,4
,1,1481,12453,56,2
,0,16,12455,64,4
,1,1481,12457,56,2
,0,16,12459,64,27
,0,16,12461,64,4
,1,1481,12463,56,2
,0,16,12465,64,4
,1,1481,12467,56,2
,0,16,12469,64,4
,1,1481,12471,56,2
,0,16,12473,64,4
,1,1481,12475,56,2
,0,16,12477,64,4
,1,1481,12479,152,10
,1,1481,12481,248,18
,1,1499,12483,32,2
,0,16,12485,64,6
,1,1499,12487,32,2
,0,16,12489,64,6
,0,16,12491,64,6
,1,1499,12493,32,2
,1,1499,12495,32,2
,0,16,12497,64,5
,1,1481,12499,176,6
,2,1500,12501,32,0
,2,1501,12503,32,0
,2,1502,12505,40,0
,1,1499,12507,32,2
,0,16,12509,64,7
,1,1481,12511,344,23
,2,1503,12513,32,0
,2,1504,12515,32,0
,2,1505,12517,40,0
,2,1506,12519,32,0
,2,1507,12521,40,0
,2,1508,12523,32,0
,1,1499,12525,32,2
,0,16,12527,64,6
,1,1499,12529,32,2
,0,16,12531,64,6
,0,16,12533,64,6
,1,1499,12535,32,2
,0,16,12537,64,6
,1,1499,12539,32,2
,0,16,12541,64,6
,1,1499,12543,32,2
,0,16,12545,64,6
,1,1499,12547,32,2
,0,16,12549,64,6
,1,1499,12551,32,2
,0,16,12553,64,4
,1,1481,12555,104,6
,1,1499,12557,32,1
,0,16,12559,64,7
,1,1499,12561,32,2
,0,16,12563,64,6
,0,16,12565,64,5
,3,799,12567,24,6
,1,131,12569,48,0
,3,50,12571,24,43
,3,50,12573,24,18
,3,120,12575,32,5
,1,69,12577,32,2
,1,131,12579,40,3
,0,16,12581,64,5
,1,1481,12583,128,4
,2,1509,12585,32,0
,1,1499,12587,32,1
,0,16,12589,64,7
,1,1499,12591,32,2
,0,16,12593,64,7
,1,1499,12595,32,2
,0,16,12597,64,7
,1,1499,12599,32,2
,0,16,12601,64,5
,1,1481,12603,488,15
,2,1510,12605,32,0
,2,1511,12607,32,0
,2,1512,12609,40,0
,2,1513,12611,40,0
,2,1514,12613,40,0
,2,1515,12615,48,0
,2,1516,12617,48,0
,2,1517,12619,32,0
,2,1518,12621,40,0
,2,1519,12623,40,2
,2,1520,12625,32,0
,2,1521,12627,40,0
,2,1522,12629,32,0
,2,1523,12631,40,2
,2,1524,12633,40,2
,2,1525,12635,40,0
,2,1526,12637,40,2
,1,1481,12639,80,3
,2,1527,12641,40,0
,1,1499,12643,32,2
,0,16,12645,64,5
,1,1481,12647,248,18
,2,1528,12649,40,0
,2,1529,12651,32,0
,2,1530,12653,32,0
,2,1531,12655,32,0
,2,1532,12657,48,0
,2,1533,12659,40,0
,5,53,12661,72,6
,1,1499,12663,32,1
,0,16,12665,64,7
,1,1499,12667,32,2
,0,16,12669,64,6
,0,16,12671,64,7
,1,1499,12673,32,2
,0,16,12675,64,7
,1,1499,12677,32,2
,0,16,12679,64,7
,1,1499,12681,32,2
,0,16,12683,64,7
,1,1499,12685,32,2
,0,16,12687,64,7
,1,1499,12689,32,2
,0,16,12691,64,7
,1,1499,12693,32,2
,0,16,12695,64,5
,1,1481,12697,176,12
,2,1534,12699,40,0
,1,1481,12701,56,2
,1,1,12703,32,2
,1,1499,12705,32,1
,0,16,12707,64,5
,1,1481,12709,56,1
,1,1499,12711,32,1
,0,16,12713,64,5
,3,831,12715,24,12
,1,131,12717,48,0
,5,53,12719,72,6
,5,53,12721,72,6
,5,53,12723,72,6
,5,53,12725,72,6
,5,53,12727,72,6
,5,53,12729,72,6
,5,53,12731,72,6
,5,53,12733,72,6
,5,53,12735,72,6
,5,53,12737,72,6
,5,53,12739,72,6
,5,53,12741,72,6
,5,53,12743,72,6
,5,53,12745,72,6
,5,53,12747,72,6
,5,53,12749,72,6
,5,53,12751,72,6
,5,53,12753,72,6
,5,53,12755,72,6
,1,131,12757,264,19
,0,16,12759,64,3
,1,1481,12761,344,12
,2,1535,12763,32,0
,2,1536,12765,40,0
,2,1537,12767,40,0
,2,1538,12769,40,0
,2,1539,12771,40,0
,2,1540,12773,40,0
,2,1541,12775,40,0
,2,1542,12777,40,0
,2,1543,12779,32,0
,2,1544,12781,40,0
,2,1545,12783,32,0
,2,1546,12785,40,0
,1,1499,12787,32,1
,0,16,12789,64,7
,1,1499,12791,32,2
,0,16,12793,64,7
,1,1499,12795,32,2
,0,16,12797,64,7
,1,1499,12799,32,2
,0,16,12801,64,7
,1,1499,12803,32,2
,0,16,12805,64,7
,1,1499,12807,32,2
,0,16,12809,64,7
,1,1499,12811,32,2
,0,16,12813,64,7
,1,1499,12815,32,2
,0,16,12817,64,7
,1,1499,12819,32,2
,0,16,12821,64,7
,1,1499,12823,32,2
,0,16,12825,64,7
,1,1499,12827,32,2
,0,16,12829,64,7
,1,1499,12831,32,2
,0,16,12833,64,5
,1,1481,12835,56,2
,3,122,12837,24,4
,1,131,12839,48,0
,0,16,12841,64,4
,1,1481,12843,2216,109
,2,784,12845,32,0
,2,1547,12847,32,0
,2,1548,12849,40,0
,2,1549,12851,32,0
,2,1550,12853,32,0
,2,1551,12855,32,0
,2,1552,12857,32,0
,2,1553,12859,32,0
,2,1554,12861,32,0
,2,1555,12863,32,0
,2,1556,12865,32,0
,2,787,12867,48,0
,2,1557,12869,32,0
,2,788,12871,40,0
,2,1558,12873,48,0
,2,1559,12875,48,0
,2,1560,12877,40,0
,2,1561,12879,32,0
,2,1562,12881,32,0
,2,1563,12883,32,0
,2,1564,12885,32,0
,2,1565,12887,32,0
,2,1566,12889,32,0
,2,1567,12891,32,0
,2,1568,12893,40,0
,2,1569,12895,40,0
,2,1570,12897,40,0
,2,1571,12899,32,0
,2,1572,12901,40,0
,2,1573,12903,40,0
,2,1574,12905,40,0
,2,1575,12907,32,0
,2,1576,12909,32,0
,2,1577,12911,32,0
,2,1578,12913,40,0
,2,1579,12915,40,0
,2,1580,12917,40,0
,2,1581,12919,32,0
,2,1582,12921,40,0
,2,1583,12923,40,0
,2,1584,12925,32,0
,5,1047,12927,72,14
,5,1048,12929,72,14
,5,1045,12931,72,13
,5,1046,12933,72,13
,5,1044,12935,72,13
,2,1585,12937,40,0
,2,1586,12939,40,0
,2,1587,12941,32,0
,2,1588,12943,32,0
,2,1589,12945,40,0
,1,1499,12947,32,1
,0,16,12949,64,7
,1,1499,12951,32,2
,0,16,12953,64,6
,0,16,12955,64,7
,1,1499,12957,32,2
,0,16,12959,64,7
,2,1590,12961,40,2
,1,1499,12963,32,2
,0,16,12965,64,7
,1,1499,12967,32,2
,0,16,12969,64,7
,2,1591,12971,40,0
,2,1592,12973,32,0
,2,1593,12975,32,0
,2,1594,12977,40,0
,2,1595,12979,32,0
,2,1591,12981,40,0
,2,1596,12983,32,0
,2,1597,12985,40,0
,2,1598,12987,40,0
,2,1599,12989,40,0
,2,1600,12991,40,0
,2,1601,12993,40,0
,2,1602,12995,40,0
,2,1603,12997,40,0
,2,1604,12999,40,2
,2,1605,13001,40,2
,2,1606,13003,40,2
,2,1607,13005,40,2
,2,1608,13007,40,0
,2,1609,13009,40,0
,2,1610,13011,40,0
,2,1611,13013,40,0
,2,1612,13015,40,0
,2,1613,13017,40,0
,2,1614,13019,40,0
,2,1615,13021,40,2
,2,1616,13023,40,2
,2,1617,13025,40,0
,2,1618,13027,40,2
,2,1619,13029,40,2
,2,1620,13031,40,2
,2,1621,13033,40,2
,2,1622,13035,40,0
,2,1623,13037,40,2
,2,1624,13039,40,2
,2,1625,13041,40,2
,2,1626,13043,40,2
,2,1627,13045,40,2
,2,1628,13047,40,2
,2,1629,13049,40,2
,2,1630,13051,40,2
,1,90,13053,1040,44
,0,16,13055,64,4
,1,1481,13057,56,2
,0,16,13059,64,4
,1,1481,13061,56,2
,0,16,13063,64,4
,1,1481,13065,56,2
,0,16,13067,64,4
,1,1481,13069,56,2
,0,16,13071,64,4
,1,1481,13073,56,2
,0,16,13075,64,4
,1,1481,13077,56,2
,0,16,13079,64,4
,1,1481,13081,56,2
,0,16,13083,64,4
,1,1481,13085,56,2
,0,16,13087,64,4
,1,1481,13089,56,2
,0,16,13091,64,4
,1,1481,13093,56,2
,0,16,13095,64,4
,1,1481,13097,56,2
,0,16,13099,64,4
,1,1481,13101,56,2
,0,16,13103,64,4
,1,1481,13105,56,2
,0,16,13107,64,4
,1,1481,13109,56,2
,0,16,13111,64,4
,1,1481,13113,56,2
,0,16,13115,64,4
,1,1481,13117,56,2
,0,16,13119,64,4
,1,1481,13121,56,2
,0,16,13123,64,4
,1,1481,13125,56,2
,0,16,13127,64,4
,1,1481,13129,56,2
,0,16,13131,64,4
,1,1481,13133,56,2
,0,16,13135,64,4
,1,1481,13137,56,2
,0,16,13139,64,4
,1,1481,13141,56,2
,3,128,13143,24,47
,0,16,13145,64,5
,0,16,13147,64,4
,1,1481,13149,56,2
,1,1481,13151,248,14
,2,1631,13153,40,0
,2,1632,13155,40,0
,0,16,13157,64,4
,1,1481,13159,56,2
,1,1499,13161,32,2
,1,1481,13163,80,4
,2,1633,13165,48,0
,0,16,13167,64,4
,1,1481,13169,56,2
,1,1499,13171,32,2
,0,16,13173,64,5
,1,1499,13175,32,2
,0,16,13177,64,7
,0,16,13179,64,7
,1,1499,13181,32,2
,0,16,13183,64,7
,0,16,13185,64,7
,2,1634,13187,32,0
,2,1635,13189,40,2
,2,1636,13191,32,0
,1,1499,13193,32,2
,0,16,13195,64,7
,2,1637,13197,32,0
,2,1638,13199,40,0
,2,1639,13201,32,0
,2,1640,13203,32,0
,2,1641,13205,32,0
,2,1642,13207,40,0
,2,1643,13209,32,0
,5,53,13211,72,7
,1,1481,13213,488,34
,2,1644,13215,32,0
,2,1645,13217,40,0
,2,1646,13219,32,0
,2,1647,13221,32,0
,5,1022,13223,72,9
,5,1022,13225,72,9
,5,1022,13227,72,9
,2,1648,13229,32,0
,2,1649,13231,32,0
,1,1499,13233,32,2
,0,16,13235,64,7
,1,1499,13237,32,2
,0,16,13239,64,7
,0,16,13241,64,7
,1,1499,13243,32,2
,0,16,13245,64,7
,1,1499,13247,32,2
,0,16,13249,64,7
,1,1499,13251,32,2
,0,16,13253,64,7
,1,1499,13255,32,2
,0,16,13257,64,7
,1,1481,13259,344,13
,1,1481,13261,248,12
,2,1650,13263,32,0
,2,1651,13265,32,0
,1,1481,13267,248,8
,1,1499,13269,32,1
,0,16,13271,64,7
,1,1499,13273,32,2
,0,16,13275,64,5
,0,16,13277,64,7
,1,1499,13279,32,2
,0,16,13281,64,7
,1,1499,13283,32,2
,0,16,13285,64,7
,1,1499,13287,32,2
,0,16,13289,64,7
,1,1499,13291,32,2
,0,16,13293,64,7
,1,1499,13295,32,2
,0,16,13297,64,7
,1,1499,13299,32,2
,0,16,13301,64,5
,1,1499,13303,32,2
,0,16,13305,64,4
,1,1499,13307,32,2
,0,16,13309,64,7
,1,1499,13311,32,2
,0,16,13313,64,7
,1,1499,13315,32,2
,0,16,13317,64,7
,1,1499,13319,32,2
,0,16,13321,64,7
,1,1499,13323,32,2
,0,16,13325,64,7
,1,1499,13327,32,2
,0,16,13329,64,7
,1,1499,13331,32,2
,0,16,13333,64,7
,1,1499,13335,32,2
,0,16,13337,64,7
,1,1499,13339,32,2
,0,16,13341,64,7
,1,1499,13343,32,2
,0,16,13345,64,5
,5,53,13347,72,6
,1,1481,13349,488,34
,2,1652,13351,32,0
,2,1653,13353,40,0
,2,1654,13355,32,0
,1,1481,13357,176,12
,2,1655,13359,32,0
,1,1481,13361,128,4
,1,1499,13363,32,1
,0,16,13365,64,7
,1,1499,13367,32,2
,0,16,13369,64,5
,0,16,13371,64,7
,1,1499,13373,32,2
,0,16,13375,64,7
,1,1499,13377,32,2
,0,16,13379,64,5
,1,1481,13381,56,2
,3,488,13383,104,6
,1,131,13385,48,0
,0,16,13387,64,4
,1,1499,13389,32,2
,0,16,13391,64,6
,1,1499,13393,32,2
,0,16,13395,64,6
,0,16,13397,64,6
,1,1499,13399,32,2
,0,16,13401,64,6
,1,1499,13403,32,2
,0,16,13405,64,6
,1,1499,13407,32,2
,0,16,13409,64,6
,1,1499,13411,32,2
,0,16,13413,64,6
,1,1499,13415,32,2
,0,16,13417,64,6
,1,1499,13419,32,2
,0,16,13421,64,6
,1,1499,13423,32,2
,0,16,13425,64,6
,1,1499,13427,32,2
,0,16,13429,64,6
,1,1499,13431,32,2
,0,16,13433,64,4
,1,1481,13435,104,5
,2,1656,13437,48,0
,1,1481,13439,1544,88
,2,1657,13441,32,0
,2,1658,13443,40,0
,2,1659,13445,40,0
,2,1660,13447,40,0
,2,1661,13449,40,0
,2,1662,13451,40,0
,2,1663,13453,32,0
,2,1664,13455,40,0
,2,1665,13457,40,0
,2,1666,13459,40,0
,2,1667,13461,40,0
,2,1668,13463,40,0
,2,1669,13465,40,0
,2,1670,13467,40,0
,2,1671,13469,40,0
,2,1672,13471,40,0
,2,1673,13473,40,0
,2,1674,13475,40,0
,2,1675,13477,40,0
,2,1676,13479,40,0
,2,1677,13481,40,0
,1,1481,13483,848,52
,1,131,13485,48,0
,0,16,13487,64,5
,5,53,13489,72,6
,1,1499,13491,32,1
,0,16,13493,64,7
,1,1499,13495,32,2
,0,16,13497,64,6
,0,16,13499,64,7
,1,1499,13501,32,2
,1,1499,13503,40,1
,0,16,13505,64,6
,1,1481,13507,80,2
,2,1678,13509,32,0
,1,1499,13511,32,2
,0,16,13513,64,7
,1,1499,13515,32,2
,0,16,13517,64,7
,1,1499,13519,32,2
,0,16,13521,64,7
,0,16,13523,64,5
,1,1481,13525,344,19
,2,1679,13527,40,0
,2,1680,13529,32,0
,1,1499,13531,32,2
,0,16,13533,64,6
,1,1499,13535,32,2
,0,16,13537,64,6
,0,16,13539,64,6
,1,1499,13541,32,1
,0,16,13543,64,7
,1,1499,13545,32,2
,0,16,13547,64,6
,0,16,13549,64,7
,1,1499,13551,32,2
,0,16,13553,64,7
,1,1499,13555,32,2
,0,16,13557,64,7
,1,1499,13559,32,2
,0,16,13561,64,7
,1,1499,13563,32,2
,0,16,13565,64,7
,1,1499,13567,32,2
,0,16,13569,64,6
,1,1499,13571,32,2
,0,16,13573,64,7
,1,1499,13575,32,2
,0,16,13577,64,4
,1,1499,13579,32,2
,0,16,13581,64,7
,1,1499,13583,32,2
,0,16,13585,64,7
,1,1499,13587,32,2
,0,16,13589,64,7
,1,1499,13591,32,2
,0,16,13593,64,7
,1,1499,13595,32,2
,0,16,13597,64,7
,1,1499,13599,32,2
,0,16,13601,64,7
,1,1499,13603,32,2
,0,16,13605,64,7
,1,1499,13607,32,2
,0,16,13609,64,7
,1,1499,13611,32,2
,0,16,13613,64,7
,1,1499,13615,32,2
,0,16,13617,64,7
,1,1499,13619,32,2
,0,16,13621,64,7
,1,1499,13623,32,2
,0,16,13625,64,7
,1,1499,13627,32,2
,0,16,13629,64,7
,1,1499,13631,32,2
,0,16,13633,64,7
,1,1499,13635,32,2
,0,16,13637,64,7
,1,1499,13639,32,2
,0,16,13641,64,7
,1,1499,13643,32,2
,0,16,13645,64,7
,1,1499,13647,32,2
,0,16,13649,64,7
,1,1499,13651,32,2
,0,16,13653,64,7
,1,1499,13655,32,2
,0,16,13657,64,7
,1,1499,13659,32,2
,0,16,13661,64,7
,1,1499,13663,32,2
,0,16,13665,64,7
,1,1499,13667,32,2
,0,16,13669,64,7
,1,1499,13671,32,2
,0,16,13673,64,7
,1,1499,13675,32,2
,0,16,13677,64,7
,1,1499,13679,32,2
,0,16,13681,64,7
,1,1499,13683,32,2
,0,16,13685,64,7
,1,1499,13687,32,2
,0,16,13689,64,7
,1,1499,13691,32,2
,0,16,13693,64,7
,1,1499,13695,32,2
,0,16,13697,64,7
,1,1499,13699,32,2
,0,16,13701,64,7
,1,1499,13703,32,2
,0,16,13705,64,7
,1,1499,13707,32,2
,0,16,13709,64,7
,1,1499,13711,32,2
,0,16,13713,64,7
,1,1499,13715,32,2
,0,16,13717,64,7
,1,1499,13719,32,2
,1,1499,13721,32,2
,0,16,13723,64,7
,2,1681,13725,40,0
,2,1682,13727,40,0
,2,1683,13729,40,2
,2,1684,13731,40,2
,2,1685,13733,40,2
,2,1686,13735,40,2
,2,1687,13737,32,0
,1,1499,13739,32,2
,0,16,13741,64,7
,1,1,13743,48,2
,1,1481,13745,176,6
,1,1,13747,32,2
,2,1688,13749,32,0
,2,1689,13751,48,0
,2,1690,13753,32,0
,2,1691,13755,40,0
,2,1692,13757,40,0
,1,1499,13759,32,2
,0,16,13761,64,7
,1,1499,13763,32,2
,0,16,13765,64,7
,0,16,13767,64,7
,1,1499,13769,32,2
,0,16,13771,64,7
,1,1499,13773,32,2
,0,16,13775,64,5
,1,1481,13777,80,3
,1,1,13779,32,2
,2,1693,13781,40,0
,2,1694,13783,40,0
,1,1499,13785,32,2
,0,16,13787,64,5
,1,131,13789,824,2
,0,16,13791,64,3
,1,1499,13793,32,2
,0,16,13795,64,7
,0,16,13797,64,7
,1,1499,13799,32,2
,0,16,13801,64,7
,1,1499,13803,32,2
,0,16,13805,64,7
,1,1499,13807,32,2
,0,16,13809,64,7
,1,1499,13811,32,2
,0,16,13813,64,7
,1,1499,13815,32,2
,0,16,13817,64,7
,1,1499,13819,32,2
,0,16,13821,64,7
,2,1695,13823,40,0
,1,1499,13825,32,2
,0,16,13827,64,7
,1,1499,13829,32,2
,0,16,13831,64,7
,1,69,13833,48,1
,1,1499,13835,32,2
,0,16,13837,64,7
,1,1499,13839,32,2
,0,16,13841,64,7
,1,1499,13843,32,2
,0,16,13845,64,7
,1,1499,13847,32,2
,0,16,13849,64,7
,2,1696,13851,40,2
,2,1521,13853,40,0
,2,1523,13855,40,2
,1,1499,13857,32,2
,0,16,13859,64,7
,1,1499,13861,32,2
,0,16,13863,64,7
,1,1499,13865,32,2
,0,16,13867,64,7
,1,1499,13869,32,2
,0,16,13871,64,7
,2,1697,13873,32,0
,2,1698,13875,40,0
,2,1699,13877,40,0
,2,1697,13879,32,0
,2,1698,13881,40,0
,2,1699,13883,40,0
,2,1700,13885,32,0
,2,1701,13887,40,0
,2,1702,13889,32,0
,2,1703,13891,40,0
,2,1703,13893,40,0
,5,53,13895,72,7
,1,1481,13897,344,22
,2,1704,13899,32,0
,2,1705,13901,32,0
,2,1706,13903,32,0
,2,1707,13905,40,0
,2,1708,13907,32,0
,2,1709,13909,32,0
,5,1022,13911,72,9
,2,1710,13913,40,0
,5,1022,13915,72,9
,2,1711,13917,40,0
,1,1499,13919,32,2
,0,16,13921,64,7
,1,1499,13923,32,2
,0,16,13925,64,7
,0,16,13927,64,7
,1,1499,13929,32,2
,0,16,13931,64,7
,1,1499,13933,32,2
,0,16,13935,64,7
,1,1499,13937,32,2
,0,16,13939,64,7
,1,1499,13941,32,2
,0,16,13943,64,7
,1,1499,13945,32,2
,0,16,13947,64,7
,1,1499,13949,32,2
,0,16,13951,64,7
,1,1499,13953,32,2
,0,16,13955,64,7
,1,1499,13957,32,2
,0,16,13959,64,7
,1,1499,13961,32,2
,0,16,13963,64,5
,1,1499,13965,32,2
,0,16,13967,64,7
,2,1712,13969,32,0
,2,1712,13971,32,0
,2,1713,13973,40,0
,2,1714,13975,40,2
,2,1715,13977,40,2
,2,1716,13979,40,2
,2,1717,13981,32,0
,2,1718,13983,40,0
,2,1719,13985,40,2
,2,1720,13987,32,0
,2,1719,13989,40,2
,2,1721,13991,32,0
,2,1722,13993,32,0
,2,1723,13995,40,0
,2,1724,13997,40,0
,1,1481,13999,704,39
,2,1725,14001,40,0
,2,1726,14003,40,0
,2,1727,14005,40,0
,2,1728,14007,40,0
,2,1729,14009,32,0
,2,1730,14011,40,0
,2,1731,14013,40,0
,2,1732,14015,40,0
,2,1733,14017,48,0
,2,1734,14019,32,0
,2,1735,14021,40,0
,2,1736,14023,32,0
,2,1737,14025,40,0
,2,1738,14027,40,0
,1,1499,14029,32,2
,0,16,14031,64,6
,1,1499,14033,32,2
,0,16,14035,64,6
,0,16,14037,64,6
,1,1499,14039,32,2
,0,16,14041,64,6
,1,1499,14043,32,2
,0,16,14045,64,6
,1,1499,14047,32,2
,0,16,14049,64,6
,1,1499,14051,32,2
,0,16,14053,64,6
,5,53,14055,72,7
,1,1499,14057,32,2
,0,16,14059,64,6
,1,1499,14061,32,2
,0,16,14063,64,6
,1,1499,14065,32,2
,0,16,14067,64,6
,1,1499,14069,32,2
,0,16,14071,64,6
,1,1499,14073,32,2
,0,16,14075,64,6
,1,1499,14077,32,2
,0,16,14079,64,6
,1,1499,14081,32,2
,0,16,14083,64,6
,1,1481,14085,128,8
,2,1739,14087,32,0
,2,1740,14089,32,0
,1,1499,14091,32,1
,0,16,14093,64,7
,1,1499,14095,32,2
,0,16,14097,64,6
,0,16,14099,64,7
,1,1499,14101,32,2
,0,16,14103,64,5
,1,1481,14105,104,7
,1,1,14107,32,1
,2,1741,14109,32,0
,2,1742,14111,32,0
,2,1743,14113,32,0
,1,1499,14115,32,2
,0,16,14117,64,7
,1,1499,14119,32,2
,0,16,14121,64,7
,0,16,14123,64,5
,1,1499,14125,32,2
,0,16,14127,64,6
,1,1499,14129,32,2
,0,16,14131,64,6
,1,1499,14133,32,2
,0,16,14135,64,6
,1,90,14137,24,0
,1,1499,14139,32,2
,0,16,14141,64,4
,1,90,14143,32,0
,1,1481,14145,80,3
,1,1,14147,32,2
,1,1499,14149,32,1
,0,16,14151,64,7
,1,1499,14153,32,2
,0,16,14155,64,5
,0,16,14157,64,5
,1,1499,14159,32,2
,0,16,14161,64,7
,2,1744,14163,32,0
,2,1745,14165,40,2
,2,1744,14167,32,0
,2,1746,14169,40,0
,2,1744,14171,32,0
,2,1747,14173,32,0
,2,1744,14175,32,0
,2,1748,14177,40,2
,2,1744,14179,32,0
,2,1749,14181,40,2
,2,1744,14183,32,0
,2,1750,14185,40,2
,2,1744,14187,32,0
,2,1751,14189,32,0
,2,1744,14191,32,0
,2,1752,14193,40,0
,2,1753,14195,40,0
,2,1754,14197,40,2
,2,1755,14199,40,0
,2,1756,14201,40,2
,2,1757,14203,40,2
,2,1758,14205,40,2
,2,1759,14207,40,0
,2,1760,14209,40,2
,2,1761,14211,40,0
,2,1762,14213,40,0
,2,1763,14215,40,0
,2,1764,14217,40,0
,2,1765,14219,40,0
,2,1766,14221,40,0
,2,1767,14223,40,0
,2,1768,14225,40,0
,2,1769,14227,40,2
,2,1770,14229,40,0
,2,1771,14231,40,2
,2,1772,14233,32,0
,2,1773,14235,32,0
,2,1772,14237,32,0
,2,1774,14239,32,0
,2,1775,14241,40,0
,2,1776,14243,40,2
,2,1777,14245,32,0
,2,1778,14247,32,0
,2,1779,14249,32,0
,2,1773,14251,32,0
,2,1780,14253,40,2
,2,1777,14255,32,0
,2,1781,14257,32,0
,2,1592,14259,32,0
,2,1782,14261,32,0
,2,1779,14263,32,0
,0,16,14265,64,5
,1,1481,14267,248,18
,2,1783,14269,48,0
,2,1784,14271,40,0
,2,1785,14273,32,0
,2,1786,14275,40,0
,2,1787,14277,48,0
,2,1788,14279,40,0
,2,1789,14281,32,0
,2,1790,14283,32,0
,1,1481,14285,704,52
,2,1791,14287,32,0
,2,1792,14289,32,0
,2,1793,14291,32,0
,2,1794,14293,40,0
,2,1795,14295,32,0
,2,1796,14297,32,0
,2,1797,14299,40,0
,2,1798,14301,32,0
,2,1799,14303,32,0
,2,1800,14305,32,0
,2,1801,14307,32,0
,2,1802,14309,32,0
,2,1803,14311,32,0
,2,1804,14313,32,0
,2,1805,14315,32,0
,2,1806,14317,32,0
,2,1807,14319,32,0
,2,1808,14321,32,0
,2,1809,14323,32,0
,2,1810,14325,32,0
,2,1811,14327,32,0
,0,16,14329,64,4
,1,1481,14331,56,2
,1,1499,14333,32,2
,0,16,14335,64,7
,0,16,14337,64,4
,1,1481,14339,56,2
,1,1499,14341,32,2
,0,16,14343,64,7
,0,16,14345,64,7
,0,16,14347,64,4
,1,1481,14349,56,2
,1,1499,14351,32,2
,0,16,14353,64,7
,0,16,14355,64,4
,1,1481,14357,56,2
,1,1499,14359,32,2
,0,16,14361,64,7
,0,16,14363,64,4
,1,1481,14365,56,2
,1,1499,14367,32,2
,0,16,14369,64,7
,0,16,14371,64,4
,1,1481,14373,56,2
,1,1499,14375,32,2
,0,16,14377,64,7
,0,16,14379,64,4
,1,1481,14381,56,2
,1,1499,14383,32,2
,0,16,14385,64,7
,0,16,14387,64,4
,1,1481,14389,56,2
,1,1499,14391,32,2
,0,16,14393,64,7
,0,16,14395,64,4
,1,1481,14397,56,2
,1,1499,14399,32,2
,0,16,14401,64,7
,0,16,14403,64,4
,1,1481,14405,56,2
,1,1499,14407,32,2
,0,16,14409,64,7
,0,16,14411,64,4
,1,1481,14413,56,2
,1,1499,14415,32,2
,0,16,14417,64,7
,0,16,14419,64,4
,1,1481,14421,56,2
,1,1499,14423,32,2
,0,16,14425,64,7
,0,16,14427,64,4
,1,1481,14429,56,2
,1,1499,14431,32,2
,0,16,14433,64,7
,0,16,14435,64,4
,1,1481,14437,56,2
,1,1499,14439,32,2
,0,16,14441,64,7
,0,16,14443,64,4
,1,1481,14445,56,2
,1,1499,14447,32,2
,0,16,14449,64,7
,0,16,14451,64,4
,1,1481,14453,56,2
,1,1499,14455,32,2
,0,16,14457,64,7
,0,16,14459,64,4
,1,1481,14461,56,2
,1,1499,14463,32,2
,0,16,14465,64,7
,0,16,14467,64,4
,1,1481,14469,56,2
,1,1499,14471,32,2
,0,16,14473,64,7
,0,16,14475,64,4
,1,1481,14477,56,2
,1,1499,14479,32,2
,0,16,14481,64,7
,0,16,14483,64,4
,1,1481,14485,56,2
,1,1499,14487,32,2
,0,16,14489,64,7
,0,16,14491,64,4
,1,1481,14493,56,2
,1,1499,14495,32,2
,0,16,14497,64,7
,0,16,14499,64,4
,1,1481,14501,56,2
,1,1499,14503,32,2
,0,16,14505,64,7
,0,16,14507,64,4
,1,1481,14509,56,2
,1,1499,14511,32,2
,0,16,14513,64,7
,0,16,14515,64,4
,1,1481,14517,56,2
,1,1499,14519,32,2
,0,16,14521,64,7
,1,90,14523,80,4
,0,16,14525,64,4
,1,1481,14527,56,2
,0,16,14529,64,4
,1,1481,14531,56,2
,0,16,14533,64,4
,1,1481,14535,104,6
,1,1499,14537,32,2
,0,16,14539,64,5
,1,1499,14541,32,2
,0,16,14543,64,7
,1,1499,14545,32,2
,0,16,14547,64,7
,1,1499,14549,32,2
,0,16,14551,64,7
,1,1481,14553,344,23
,1,1481,14555,80,4
,2,1812,14557,32,0
,1,1499,14559,32,2
,0,16,14561,64,7
,2,1813,14563,32,0
,2,1814,14565,32,0
,2,1815,14567,40,0
,2,1816,14569,32,0
,2,1778,14571,32,0
,2,1817,14573,32,0
,2,1818,14575,32,0
,2,1819,14577,32,0
,2,1820,14579,32,0
,2,1821,14581,32,0
,1,1481,14583,248,16
,2,1822,14585,40,0
,1,1499,14587,32,2
,0,16,14589,64,6
,3,1268,14591,24,5
,1,131,14593,48,0
,0,16,14595,64,5
,1,1481,14597,344,26
,2,1823,14599,40,0
,2,1824,14601,32,0
,2,1825,14603,32,0
,2,1826,14605,32,0
,2,1827,14607,32,0
,5,53,14609,72,6
,1,1499,14611,32,1
,0,16,14613,64,7
,1,1499,14615,32,2
,0,16,14617,64,6
,0,16,14619,64,7
,1,1499,14621,32,2
,0,16,14623,64,7
,1,1499,14625,32,2
,0,16,14627,64,7
,1,1499,14629,32,2
,0,16,14631,64,7
,1,1499,14633,32,2
,0,16,14635,64,7
,1,1499,14637,32,2
,0,16,14639,64,7
,1,1499,14641,32,2
,0,16,14643,64,7
,1,1499,14645,32,2
,0,16,14647,64,7
,1,1499,14649,32,2
,0,16,14651,64,7
,1,1499,14653,32,2
,0,16,14655,64,7
,1,1499,14657,32,2
,0,16,14659,64,5
,1,1499,14661,32,2
,0,16,14663,64,6
,0,16,14665,64,4
,1,1499,14667,32,2
,0,16,14669,64,6
,1,1499,14671,32,2
,0,16,14673,64,7
,2,1828,14675,32,0
,2,1817,14677,32,0
,2,1592,14679,32,0
,2,1781,14681,32,0
,1,1481,14683,248,14
,1,1499,14685,32,2
,0,16,14687,64,4
,1,1481,14689,176,11
,1,1,14691,32,1
,2,1829,14693,32,0
,5,53,14695,72,6
,1,1499,14697,32,1
,0,16,14699,64,7
,1,1499,14701,32,2
,0,16,14703,64,6
,0,16,14705,64,7
,1,1499,14707,32,2
,0,16,14709,64,7
,1,1499,14711,32,2
,0,16,14713,64,5
,1,1499,14715,32,2
,0,16,14717,64,6
,0,16,14719,64,6
,1,1499,14721,32,2
,0,16,14723,64,7
,3,1269,14725,24,16
,1,131,14727,48,0
,1,1481,14729,128,8
,1,1499,14731,32,1
,0,16,14733,64,7
,1,1499,14735,32,2
,0,16,14737,64,6
,0,16,14739,64,7
,1,1499,14741,32,2
,0,16,14743,64,5
,1,1499,14745,32,2
,0,16,14747,64,6
,1,1499,14749,32,2
,0,16,14751,64,7
,2,1813,14753,32,0
,2,1830,14755,40,0
,2,1781,14757,32,0
,2,1778,14759,32,0
,3,1341,14761,24,7
,1,131,14763,48,0
,1,1481,14765,176,10
,2,1831,14767,40,0
,5,53,14769,72,6
,1,1499,14771,32,1
,0,16,14773,64,7
,1,1499,14775,32,2
,0,16,14777,64,6
,0,16,14779,64,7
,1,1499,14781,32,2
,0,16,14783,64,7
,1,1499,14785,32,2
,0,16,14787,64,5
,1,1499,14789,32,2
,0,16,14791,64,6
,1,1499,14793,32,2
,0,16,14795,64,7
,2,1830,14797,40,0
,3,1349,14799,24,8
,1,131,14801,48,0
,1,1481,14803,80,4
,5,53,14805,72,6
,1,1499,14807,32,1
,0,16,14809,64,5
,1,1499,14811,32,2
,0,16,14813,64,6
,1,1499,14815,32,2
,0,16,14817,64,4
,5,53,14819,72,6
,1,1499,14821,32,1
,5,53,14823,72,7
,1,1499,14825,32,1
,0,16,14827,64,7
,1,1499,14829,32,2
,0,16,14831,64,6
,0,16,14833,64,7
,1,1499,14835,32,2
,0,16,14837,64,7
,1,1499,14839,32,2
,0,16,14841,64,7
,1,1499,14843,32,2
,0,16,14845,64,7
,1,1499,14847,32,2
,0,16,14849,64,7
,1,1499,14851,32,2
,0,16,14853,64,7
,1,1499,14855,32,2
,1,1481,14857,80,2
,1,1499,14859,32,1
,0,16,14861,64,7
,1,1499,14863,32,2
,0,16,14865,64,5
,0,16,14867,64,5
,1,1481,14869,2288,154
,2,1832,14871,32,0
,2,1833,14873,40,0
,2,1834,14875,40,0
,2,1835,14877,40,0
,2,1836,14879,32,0
,2,1837,14881,32,0
,2,1838,14883,40,0
,2,1839,14885,40,0
,2,1840,14887,40,0
,2,1841,14889,40,0
,2,1842,14891,40,0
,2,1843,14893,40,0
,2,1844,14895,40,0
,2,1845,14897,40,0
,2,1846,14899,40,0
,2,1847,14901,40,0
,2,1848,14903,40,0
,2,1849,14905,32,0
,2,1850,14907,40,0
,2,1851,14909,40,0
,2,1852,14911,32,0
,2,1853,14913,40,0
,2,1854,14915,40,0
,2,1855,14917,32,0
,2,1856,14919,40,0
,2,1857,14921,40,0
,2,1858,14923,32,0
,2,1859,14925,40,0
,2,1860,14927,40,0
,2,1861,14929,40,0
,2,1862,14931,40,0
,2,1863,14933,40,0
,2,1864,14935,40,0
,2,1865,14937,40,0
,2,1866,14939,40,0
,2,1867,14941,40,0
,2,1868,14943,40,0
,2,1869,14945,32,0
,2,1870,14947,40,0
,2,1871,14949,40,0
,2,1872,14951,40,0
,2,1873,14953,40,0
,2,1874,14955,48,0
,2,1875,14957,40,0
,5,1169,14959,72,41
,1,1499,14961,32,1
,0,16,14963,64,7
,1,1499,14965,32,2
,0,16,14967,64,6
,0,16,14969,64,7
,1,1499,14971,32,2
,0,16,14973,64,7
,1,1499,14975,32,2
,0,16,14977,64,7
,1,1499,14979,32,2
,0,16,14981,64,7
,1,1499,14983,32,2
,0,16,14985,64,7
,1,1499,14987,32,2
,0,16,14989,64,7
,1,1499,14991,32,2
,0,16,14993,64,7
,1,1499,14995,32,2
,0,16,14997,64,7
,1,1499,14999,32,2
,0,16,15001,64,7
,1,1499,15003,32,2
,0,16,15005,64,7
,1,1499,15007,32,2
,0,16,15009,64,7
,1,1499,15011,32,2
,0,16,15013,64,7
,1,1499,15015,32,2
,0,16,15017,64,7
,1,1499,15019,32,2
,0,16,15021,64,7
,1,1499,15023,32,2
,0,16,15025,64,7
,1,1499,15027,32,2
,0,16,15029,64,7
,1,1499,15031,32,2
,0,16,15033,64,7
,1,1499,15035,32,2
,0,16,15037,64,7
,1,1499,15039,32,2
,0,16,15041,64,7
,1,1499,15043,32,2
,0,16,15045,64,7
,1,1499,15047,32,2
,0,16,15049,64,7
,1,1499,15051,32,2
,0,16,15053,64,7
,1,1499,15055,32,2
,0,16,15057,64,7
,1,1499,15059,32,2
,0,16,15061,64,7
,1,1499,15063,32,2
,0,16,15065,64,7
,1,1499,15067,32,2
,0,16,15069,64,7
,1,1499,15071,32,2
,0,16,15073,64,7
,1,1499,15075,32,2
,0,16,15077,64,7
,1,1499,15079,32,2
,0,16,15081,64,7
,1,1499,15083,32,2
,0,16,15085,64,7
,1,1499,15087,32,2
,0,16,15089,64,7
,1,1499,15091,32,2
,0,16,15093,64,7
,1,1499,15095,32,2
,0,16,15097,64,7
,1,1499,15099,32,2
,0,16,15101,64,7
,1,1499,15103,32,2
,0,16,15105,64,7
,1,1499,15107,32,2
,0,16,15109,64,7
,1,1499,15111,32,2
,0,16,15113,64,7
,1,1499,15115,32,2
,0,16,15117,64,7
,1,1499,15119,32,2
,0,16,15121,64,7
,1,1499,15123,32,2
,0,16,15125,64,7
,1,1499,15127,32,2
,0,16,15129,64,7
,1,1499,15131,32,2
,0,16,15133,64,7
,1,1499,15135,32,2
,0,16,15137,64,7
,1,1499,15139,32,2
,0,16,15141,64,7
,1,1499,15143,32,2
,0,16,15145,64,7
,1,1499,15147,32,2
,0,16,15149,64,7
,1,1499,15151,32,2
,0,16,15153,64,7
,1,1499,15155,32,2
,0,16,15157,64,7
,1,1499,15159,32,2
,0,16,15161,64,7
,1,1499,15163,32,2
,0,16,15165,64,7
,1,1499,15167,32,2
,0,16,15169,64,7
,1,1499,15171,32,2
,0,16,15173,64,7
,1,1499,15175,32,2
,0,16,15177,64,7
,1,1499,15179,32,2
,0,16,15181,64,7
,1,1499,15183,32,2
,0,16,15185,64,7
,1,1499,15187,32,2
,0,16,15189,64,7
,1,1499,15191,32,2
,0,16,15193,64,7
,1,1499,15195,32,2
,0,16,15197,64,7
,1,1481,15199,104,6
,1,1499,15201,32,1
,0,16,15203,64,7
,1,1499,15205,32,2
,0,16,15207,64,6
,0,16,15209,64,5
,1,1499,15211,32,2
,0,16,15213,64,7
,1,1481,15215,104,6
,1,1499,15217,32,1
,0,16,15219,64,7
,1,1499,15221,32,2
,0,16,15223,64,6
,0,16,15225,64,5
,1,1499,15227,32,2
,0,16,15229,64,7
,1,1499,15231,32,2
,0,16,15233,64,7
,1,1499,15235,32,2
,0,16,15237,64,7
,1,1499,15239,32,2
,0,16,15241,64,7
,1,1499,15243,32,2
,0,16,15245,64,7
,1,1481,15247,176,10
,2,1876,15249,32,0
,1,1499,15251,32,2
,0,16,15253,64,7
,1,1499,15255,32,2
,0,16,15257,64,7
,1,1499,15259,32,1
,0,16,15261,64,7
,1,1499,15263,32,2
,0,16,15265,64,6
,0,16,15267,64,7
,1,1499,15269,32,2
,0,16,15271,64,7
,1,1499,15273,32,2
,0,16,15275,64,5
,1,1499,15277,32,2
,0,16,15279,64,7
,3,1270,15281,24,8
,1,131,15283,48,0
,1,1481,15285,176,12
,2,1877,15287,40,0
,1,1499,15289,32,2
,0,16,15291,64,7
,1,1499,15293,32,2
,0,16,15295,64,7
,1,1499,15297,32,1
,0,16,15299,64,7
,1,1499,15301,32,2
,0,16,15303,64,6
,0,16,15305,64,7
,1,1499,15307,32,2
,0,16,15309,64,7
,1,1499,15311,32,2
,0,16,15313,64,7
,1,1499,15315,32,2
,0,16,15317,64,5
,1,1481,15319,176,10
,1,1499,15321,32,2
,0,16,15323,64,5
,1,1499,15325,32,1
,0,16,15327,64,7
,1,1499,15329,32,2
,0,16,15331,64,6
,0,16,15333,64,7
,1,1499,15335,32,2
,0,16,15337,64,7
,1,1499,15339,32,2
,0,16,15341,64,5
,1,1481,15343,344,13
,2,1878,15345,32,0
,2,1879,15347,32,0
,2,1880,15349,32,0
,2,1881,15351,32,0
,2,1882,15353,32,0
,2,1883,15355,32,0
,2,1884,15357,32,0
,2,1885,15359,32,0
,2,1886,15361,32,0
,2,1887,15363,32,0
,2,1888,15365,32,0
,1,1499,15367,32,1
,0,16,15369,64,7
,1,1499,15371,32,2
,0,16,15373,64,7
,1,1499,15375,32,2
,0,16,15377,64,7
,1,1499,15379,32,2
,0,16,15381,64,7
,1,1499,15383,32,2
,0,16,15385,64,7
,1,1499,15387,32,2
,0,16,15389,64,7
,1,1499,15391,32,2
,0,16,15393,64,7
,1,1499,15395,32,2
,0,16,15397,64,7
,1,1499,15399,32,2
,0,16,15401,64,7
,1,1499,15403,32,2
,0,16,15405,64,7
,1,1499,15407,32,2
,0,16,15409,64,7
,1,1499,15411,32,2
,0,16,15413,64,7
,1,1499,15415,32,2
,0,16,15417,64,5
,3,834,15419,24,7
,1,131,15421,48,0
,3,50,15423,24,5
,3,50,15425,24,5
,3,50,15427,24,5
,3,120,15429,32,6
,3,50,15431,24,17
,1,69,15433,40,3
,1,131,15435,88,6
,1,1481,15437,248,7
,2,1889,15439,32,0
,1,1499,15441,32,1
,0,16,15443,64,7
,1,1499,15445,32,2
,0,16,15447,64,7
,1,1499,15449,32,2
,0,16,15451,64,7
,1,1499,15453,32,2
,0,16,15455,64,7
,1,1499,15457,32,2
,0,16,15459,64,7
,1,1499,15461,32,2
,0,16,15463,64,7
,1,1499,15465,32,2
,0,16,15467,64,5
,2,1123,15469,32,0
,1,1,15471,48,2
,1,1499,15473,32,2
,0,16,15475,64,5
,1,1481,15477,80,2
,1,1499,15479,32,1
,0,16,15481,64,7
,1,1499,15483,32,2
,0,16,15485,64,5
,0,16,15487,64,5
,1,1481,15489,104,3
,1,1499,15491,32,1
,0,16,15493,64,7
,1,1499,15495,32,2
,0,16,15497,64,5
,1,1499,15499,32,2
,0,16,15501,64,7
,1,1499,15503,32,2
,0,16,15505,64,7
,1,1499,15507,40,2
,0,16,15509,64,5
,2,1697,15511,32,0
,2,1360,15513,40,2
,2,1890,15515,32,0
,2,1891,15517,40,2
,2,1124,15519,32,0
,1,1,15521,88,2
,1,1481,15523,56,1
,1,1499,15525,32,1
,0,16,15527,64,5
,1,90,15529,56,0
,0,16,15531,64,4
,1,1481,15533,56,2
,1,1481,15535,56,2
,2,1892,15537,40,0
,1,1499,15539,32,2
,0,16,15541,64,7
,2,1893,15543,40,0
,2,1894,15545,32,0
,2,1895,15547,32,0
,2,1681,15549,40,0
,2,1683,15551,40,2
,2,1682,15553,40,0
,2,1684,15555,40,2
,2,1896,15557,32,0
,2,1773,15559,32,0
,2,1685,15561,40,2
,2,1686,15563,40,2
,2,1897,15565,40,2
,1,90,15567,272,16
,0,16,15569,64,4
,1,1481,15571,56,2
,0,16,15573,64,4
,1,1481,15575,56,2
,0,16,15577,64,4
,1,1481,15579,56,2
,0,16,15581,64,4
,1,1481,15583,56,2
,0,16,15585,64,4
,1,1481,15587,56,2
,0,16,15589,64,4
,1,1481,15591,56,2
,0,16,15593,64,4
,1,1481,15595,56,2
,0,16,15597,64,4
,1,1481,15599,56,2
,0,16,15601,64,4
,1,1481,15603,248,18
,1,1481,15605,56,2
,1,1499,15607,32,2
,0,16,15609,64,5
,1,1499,15611,32,2
,0,16,15613,64,5
,1,1481,15615,176,12
,5,1465,15617,72,7
,5,1466,15619,72,7
,5,562,15621,72,7
,5,1468,15623,72,7
,5,1469,15625,72,7
,1,1499,15627,32,2
,0,16,15629,64,7
,1,1499,15631,32,2
,0,16,15633,64,7
,0,16,15635,64,7
,1,1499,15637,32,2
,0,16,15639,64,7
,1,1499,15641,32,2
,0,16,15643,64,7
,1,1499,15645,32,2
,0,16,15647,64,5
,5,53,15649,72,7
,1,1481,15651,344,20
,2,1898,15653,32,0
,2,1899,15655,32,0
,2,1900,15657,40,0
,2,1901,15659,40,0
,2,1902,15661,40,0
,2,1903,15663,40,0
,2,1904,15665,40,0
,2,1905,15667,40,0
,2,1906,15669,40,0
,1,1499,15671,32,2
,0,16,15673,64,7
,1,1499,15675,32,2
,0,16,15677,64,7
,0,16,15679,64,7
,1,1499,15681,32,2
,0,16,15683,64,7
,1,1499,15685,32,2
,0,16,15687,64,7
,1,1499,15689,32,2
,0,16,15691,64,7
,1,1499,15693,32,2
,0,16,15695,64,7
,1,1481,15697,128,8
,1,1499,15699,32,1
,0,16,15701,64,7
,1,1499,15703,32,2
,0,16,15705,64,6
,0,16,15707,64,7
,1,1499,15709,32,2
,0,16,15711,64,5
,1,1481,15713,80,2
,2,1907,15715,40,0
,2,1908,15717,40,0
,1,1499,15719,32,2
,0,16,15721,64,5
,1,1499,15723,32,2
,0,16,15725,64,7
,1,1499,15727,32,2
,0,16,15729,64,7
,1,1499,15731,32,2
,0,16,15733,64,5
,3,50,15735,24,7
,1,131,15737,48,0
,1,1481,15739,176,6
,2,1909,15741,40,0
,2,1910,15743,40,0
,2,1911,15745,40,0
,2,1912,15747,32,0
,1,1499,15749,32,1
,0,16,15751,64,7
,1,1499,15753,32,2
,0,16,15755,64,7
,1,1499,15757,32,2
,0,16,15759,64,7
,1,1499,15761,32,2
,0,16,15763,64,7
,1,1499,15765,32,2
,0,16,15767,64,7
,1,1499,15769,32,2
,0,16,15771,64,5
,1,1481,15773,128,5
,2,1913,15775,40,0
,1,1499,15777,32,1
,0,16,15779,64,7
,1,1499,15781,32,2
,0,16,15783,64,7
,1,1499,15785,32,2
,0,16,15787,64,7
,1,1499,15789,32,2
,0,16,15791,64,5
,4,1,15793,416,8
,4,1,15795,160,4
,4,1,15797,192,4
,0,70,15799,56,5
,4,1,15801,576,11
,1,90,15803,144,0
,1,90,15805,48,0
,7,19,15807,16,1
,7,19,15809,16,1
,7,19,15811,16,1
,7,19,15813,16,1
,7,19,15815,16,1
,7,19,15817,16,1
,7,19,15819,16,1
,7,19,15821,16,1
,0,16,15823,64,4
,0,16,15825,64,1
,1,90,15827,48,0
,1,131,15829,48,0
,3,120,15831,32,2
,2,1914,15833,40,0
,3,104,15835,104,7
,0,16,15837,64,5
,5,53,15839,72,6
,3,104,15841,104,7
,0,70,15843,56,5
,3,104,15845,104,7
,0,70,15847,56,5
,3,104,15849,104,7
,0,70,15851,56,5
,3,104,15853,104,7
,0,70,15855,56,5
,3,104,15857,104,7
,0,70,15859,56,5
,1,90,15861,2120,120
,0,16,15863,64,5
,1,90,15865,80,0
,0,16,15867,64,7
,1,69,15869,48,3
,1,131,15871,40,0
,4,1,15873,992,18
,4,1,15875,352,5
,4,1,15877,352,5
,1,69,15879,32,2
,6,32,15881,72,7
,1,90,15883,32,0
,1,1,15885,48,2
,5,53,15887,72,7
,1,69,15889,32,2
,3,50,15891,24,3
,0,16,15893,64,5
,3,143,15895,40,4
,0,16,15897,64,5
,3,143,15899,40,5
,1,90,15901,32,1
,0,16,15903,64,4
,3,143,15905,32,7
,0,16,15907,64,4
,1,1,15909,152,6
,0,16,15911,64,5
,0,16,15913,64,7
,0,16,15915,64,7
,3,50,15917,24,4
,1,90,15919,32,0
,1,1,15921,1064,20
,0,16,15923,64,1
,1,1,15925,32,2
,0,16,15927,64,5
,1,1,15929,24,1
,0,16,15931,64,5
,1,1,15933,80,8
,1,1,15935,32,2
,1,1,15937,24,1
,0,16,15939,64,5
,1,1,15941,32,2
,1,1,15943,48,4
,1,1,15945,24,1
,0,16,15947,64,5
,1,1,15949,32,2
,1,131,15951,40,2
,3,1443,15953,136,7
,1,1,15955,48,2
,1,1,15957,48,2
,1,1,15959,48,2
,1,1,15961,48,2
,1,1,15963,48,2
,1,1,15965,48,2
,1,1,15967,48,2
,1,1,15969,48,2
,1,1,15971,48,2
,1,1,15973,48,2
,1,1,15975,48,2
,1,1,15977,48,2
,1,1,15979,48,2
,1,1,15981,48,2
,1,1,15983,48,2
,1,1,15985,48,2
,1,1,15987,48,2
,1,1,15989,48,2
,1,1,15991,48,2
,1,1,15993,48,2
,1,1,15995,48,2
,1,1,15997,48,2
,1,1,15999,48,2
,1,1,16001,48,2
,1,1,16003,48,2
,1,1,16005,48,2
,1,1,16007,48,2
,1,1,16009,48,2
,1,1,16011,88,2
,2,1090,16013,88,0
,4,1,16015,2592,6
,1,1,16017,88,2
,2,1359,16019,32,0
,4,1,16021,864,6
,4,1,16023,896,6
,1,1,16025,88,1
,2,1021,16027,32,0
,1,1,16029,88,2
,2,1358,16031,40,0
,4,1,16033,1184,6
,2,30,16035,32,0
,1,69,16037,40,3
,3,50,16039,24,2
,3,120,16041,32,5
,1,131,16043,176,14
,2,1915,16045,32,0
,2,1916,16047,32,0
,3,50,16049,24,9
,3,120,16051,32,2
,3,50,16053,24,2
,2,1917,16055,64,0
,3,120,16057,32,24
,3,120,16059,32,5
,2,1918,16061,32,0
,3,50,16063,24,11
,3,50,16065,24,4
,3,50,16067,24,3
,3,50,16069,24,5
,3,834,16071,136,9
,1,90,16073,360,21
,2,1919,16075,40,0
,2,1920,16077,40,0
,2,1921,16079,40,2
,2,1922,16081,40,2
,2,1923,16083,40,0
,2,1924,16085,40,2
,2,1925,16087,40,2
,2,1926,16089,40,2
,2,1927,16091,40,2
,2,1928,16093,40,2
,2,1929,16095,40,0
,2,1930,16097,48,0
,2,1931,16099,40,2
,2,1932,16101,40,2
,2,1933,16103,40,2
,2,1934,16105,40,2
,2,1935,16107,40,2
,2,1936,16109,40,2
,2,1937,16111,40,2
,2,1938,16113,48,0
,2,1939,16115,40,2
,1,131,16117,72,6
,3,50,16119,24,5
,3,50,16121,24,5
,3,50,16123,24,4
,1,131,16125,40,0
,1,131,16127,40,2
,3,1450,16129,32,6
,0,70,16131,128,9
,3,120,16133,32,2
,5,1042,16135,72,14
,5,1043,16137,72,13
,1,131,16139,40,1
,1,1,16141,88,1
,2,1940,16143,40,2
,1,1,16145,32,0
,1,131,16147,56,3
,5,53,16149,72,6
,5,53,16151,72,6
,5,53,16153,72,6
,1,131,16155,48,0
,1,1,16157,56,0
,1,131,16159,64,0
,1,131,16161,56,0
,1,131,16163,40,0
,0,70,16165,56,5
,1,131,16167,40,0
,0,70,16169,56,5
,0,70,16171,72,6
,5,53,16173,72,7
,0,70,16175,56,4
,0,70,16177,56,4
,0,70,16179,56,4
,0,70,16181,56,4
,0,70,16183,56,4
,0,70,16185,56,4
,0,70,16187,56,4
,0,70,16189,56,4
,0,70,16191,56,4
,0,70,16193,56,4
,1,1,16195,248,0
,1,131,16197,48,0
,1,90,16199,48,2
,2,294,16201,32,0
,1,90,16203,48,1
,2,1941,16205,48,0
,1,90,16207,144,9
,2,1941,16209,48,0
,2,883,16211,32,0
,2,884,16213,32,0
,2,294,16215,32,0
,2,1942,16217,32,0
,1,90,16219,48,1
,2,1941,16221,48,0
,1,90,16223,144,9
,2,1941,16225,48,0
,2,883,16227,32,0
,2,884,16229,32,0
,2,294,16231,32,0
,2,1942,16233,32,0
,1,90,16235,48,1
,2,1941,16237,48,0
,1,90,16239,144,9
,2,1941,16241,48,0
,2,883,16243,32,0
,2,884,16245,32,0
,2,294,16247,32,0
,2,1942,16249,32,0
,1,90,16251,48,1
,2,1941,16253,48,0
,1,90,16255,144,9
,2,1941,16257,48,0
,2,883,16259,32,0
,2,884,16261,32,0
,2,294,16263,32,0
,2,1942,16265,32,0
,1,90,16267,48,1
,2,1941,16269,48,0
,1,90,16271,144,9
,2,1941,16273,48,0
,2,883,16275,32,0
,2,884,16277,32,0
,2,294,16279,32,0
,2,1942,16281,32,0
,1,90,16283,48,1
,2,1941,16285,48,0
,1,90,16287,144,9
,2,1941,16289,48,0
,2,883,16291,32,0
,2,884,16293,32,0
,2,294,16295,32,0
,2,1942,16297,32,0
,1,90,16299,48,1
,2,1941,16301,48,0
,1,90,16303,144,9
,2,1941,16305,48,0
,2,883,16307,32,0
,2,884,16309,32,0
,2,294,16311,32,0
,2,1942,16313,32,0
,1,90,16315,48,1
,2,1941,16317,48,0
,1,90,16319,144,9
,2,1941,16321,48,0
,2,883,16323,32,0
,2,884,16325,32,0
,2,294,16327,32,0
,2,1942,16329,32,0
,1,90,16331,48,1
,2,1941,16333,48,0
,1,90,16335,144,9
,2,1941,16337,48,0
,2,883,16339,32,0
,2,884,16341,32,0
,2,294,16343,32,0
,2,1942,16345,32,0
,1,90,16347,528,32
,2,1943,16349,32,0
,2,1944,16351,32,0
,2,1945,16353,40,0
,2,1946,16355,32,0
,2,1947,16357,40,0
,2,1948,16359,32,0
,2,1949,16361,40,0
,2,1950,16363,40,0
,2,1951,16365,32,0
,2,1952,16367,32,0
,2,1953,16369,40,0
,2,1954,16371,32,0
,2,1955,16373,40,0
,2,1956,16375,32,0
,2,1957,16377,40,0
,2,1958,16379,40,0
,2,1959,16381,40,2
,2,1960,16383,40,2
,2,1961,16385,40,2
,2,1962,16387,40,2
,2,1963,16389,40,2
,2,1964,16391,40,2
,2,1965,16393,40,2
,2,1966,16395,40,2
,2,1967,16397,40,2
,2,1968,16399,40,2
,2,1969,16401,40,2
,2,1970,16403,40,2
,2,1971,16405,40,2
,1,69,16407,32,1
,3,50,16409,24,2
,1,69,16411,32,1
,0,16,16413,64,4
,1,131,16415,40,0
,1,1,16417,24,1
,1,1,16419,24,0
,1,69,16421,32,1
,1,69,16423,32,1
,1,69,16425,160,5
,3,50,16427,128,15
,3,50,16429,88,10
,1,69,16431,40,1
,1,131,16433,40,2
,1,69,16435,32,1
,1,69,16437,40,1
,1,69,16439,48,1
,1,69,16441,32,1
,1,69,16443,72,1
,1,69,16445,40,1
,2,1972,16447,64,0
,5,53,16449,72,29
,0,70,16451,72,6
,2,1973,16453,72,0
,5,53,16455,72,29
,0,70,16457,72,6
,2,1974,16459,88,0
,5,1007,16461,72,29
,0,70,16463,72,6
,1,69,16465,32,1
,1,69,16467,32,1
,1,131,16469,40,0
,1,131,16471,40,0
,1,90,16473,24,1
,1,131,16475,40,0
,1,90,16477,24,1
,1,1,16479,56,5
,1,1,16481,56,0
,1,1,16483,32,2
,1,1,16485,32,0
,2,1975,16487,40,0
,2,1976,16489,32,0
,1,69,16491,48,2
,2,1977,16493,32,0
,1,131,16495,40,2
,2,1978,16497,64,0
,5,53,16499,72,14
,0,70,16501,72,6
,2,1979,16503,72,0
,5,53,16505,72,14
,0,70,16507,72,6
,2,1980,16509,40,0
,2,1980,16511,40,0
,1,69,16513,88,8
,2,1981,16515,80,0
,2,1982,16517,88,0
,2,1983,16519,64,0
,1,90,16521,168,3
,2,1984,16523,48,0
,1,131,16525,824,3
,1,1,16527,40,3
,1,1,16529,32,2
,1,1,16531,32,0
,5,1342,16533,72,10
,0,70,16535,80,8
,1,131,16537,40,1
,1,131,16539,40,1
,3,1356,16541,24,5
,1,131,16543,40,1
,1,131,16545,40,1
,1,69,16547,40,1
,1,69,16549,40,1
,1,1,16551,48,4
,1,69,16553,80,5
,1,131,16555,48,0
,7,19,16557,16,1
,7,19,16559,16,1
,1,131,16561,12344,179
,1,69,16563,32,1
,3,1163,16565,24,6
,1,131,16567,40,1
,3,1164,16569,24,6
,1,131,16571,40,1
,3,1167,16573,24,8
,1,69,16575,40,1
,1,131,16577,40,1
,3,1168,16579,24,9
,1,69,16581,32,1
,1,131,16583,40,1
,3,1169,16585,24,8
,1,131,16587,40,1
,3,50,16589,24,2
,3,120,16591,32,2
,2,1985,16593,40,2
,2,1986,16595,48,0
,3,50,16597,24,2
,3,120,16599,32,4
,3,120,16601,32,12
,1,69,16603,48,3
,3,1450,16605,32,6
,1,90,16607,824,3
,0,16,16609,64,4
,1,131,16611,40,2
,5,53,16613,72,6
,0,16,16615,64,5
,0,16,16617,64,5
,0,16,16619,64,5
,0,16,16621,64,5
,0,16,16623,64,5
,3,50,16625,32,3
,3,50,16627,32,3
,3,120,16629,32,2
,0,16,16631,64,1
,1,131,16633,72,0
,0,16,16635,64,5
,2,1987,16637,32,0
,2,1419,16639,184,0
,1,90,16641,32,2
,2,1988,16643,32,0
,2,1989,16645,32,0
,2,1990,16647,32,0
,2,1991,16649,40,0
,2,1992,16651,32,0
,2,1993,16653,32,0
,2,1994,16655,32,0
,2,1995,16657,32,0
,1,131,16659,96,8
,0,16,16661,64,5
,1,131,16663,48,0
,1,90,16665,24,1
,0,16,16667,64,4
,1,131,16669,48,0
,3,50,16671,24,8
,3,50,16673,24,20
,1,131,16675,48,2
,2,1996,16677,40,0
,1,131,16679,48,0
,2,792,16681,40,0
,2,792,16683,40,0
,2,792,16685,40,0
,2,792,16687,40,0
,2,792,16689,40,0
,2,792,16691,40,0
,2,792,16693,40,0
,2,792,16695,40,0
,2,1997,16697,40,0
,2,792,16699,40,0
,2,792,16701,40,0
,2,1998,16703,40,0
,2,792,16705,40,0
,2,792,16707,40,0
,2,792,16709,40,0
,2,792,16711,40,0
,2,792,16713,40,0
,2,792,16715,40,0
,2,792,16717,40,0
,2,792,16719,40,0
,2,792,16721,40,0
,2,792,16723,40,0
,2,792,16725,40,0
,2,792,16727,40,0
,2,792,16729,40,0
,2,792,16731,40,0
,2,792,16733,40,0
,2,792,16735,40,0
,2,792,16737,40,0
,2,792,16739,40,0
,2,792,16741,40,0
,2,792,16743,40,0
,2,792,16745,40,0
,2,792,16747,40,0
,2,792,16749,40,0
,2,792,16751,40,0
,2,792,16753,40,0
,2,792,16755,40,0
,2,1999,16757,40,0
,2,792,16759,40,0
,1,131,16761,3128,81
,0,16,16763,64,3
,1,131,16765,48,0
,1,131,16767,48,0
,0,16,16769,64,5
,3,1443,16771,136,7
,7,19,16773,16,1
,5,1415,16775,72,9
,1,69,16777,32,1
,3,799,16779,56,6
,3,799,16781,56,6
,3,799,16783,56,6
,3,799,16785,56,6
,3,799,16787,56,6
,3,799,16789,56,6
,3,799,16791,56,6
,3,799,16793,56,6
,3,799,16795,56,6
,3,799,16797,56,6
,3,799,16799,56,6
,3,799,16801,56,6
,3,799,16803,56,6
,3,799,16805,56,6
,3,799,16807,56,6
,1,131,16809,136,15
,6,1021,16811,72,7
,3,50,16813,128,15
,3,50,16815,88,10
,3,120,16817,32,15
,6,1090,16819,72,7
,3,50,16821,24,2
,3,50,16823,24,2
,3,50,16825,24,2
,3,120,16827,32,2
,3,120,16829,32,2
,3,50,16831,24,2
,3,50,16833,24,2
,2,2000,16835,216,0
,5,53,16837,72,6
,1,131,16839,48,0
,3,50,16841,40,4
,3,50,16843,24,2
,6,1358,16845,72,7
,6,1359,16847,72,7
,2,2001,16849,32,0
,2,2002,16851,32,0
,2,2003,16853,40,0
,2,2004,16855,32,0
,2,2005,16857,40,0
,2,2006,16859,48,0
,2,2007,16861,40,0
,2,2008,16863,56,0
,2,2009,16865,32,0
,2,2010,16867,32,0
,2,2011,16869,32,0
,2,2012,16871,32,0
,2,2013,16873,32,0
,2,2014,16875,32,0
,2,2015,16877,32,0
,2,2016,16879,32,0
,2,2017,16881,40,0
,2,2018,16883,32,0
,2,2019,16885,32,0
,2,2020,16887,32,0
,2,2021,16889,64,0
,2,2022,16891,32,0
,2,2023,16893,32,0
,2,2024,16895,40,0
,2,2025,16897,32,0
,2,2026,16899,32,0
,2,2027,16901,32,0
,2,2028,16903,56,0
,2,2029,16905,32,0
,2,2030,16907,32,0
,2,2031,16909,32,0
,2,2032,16911,32,0
,2,2033,16913,40,0
,2,2034,16915,32,0
,2,2035,16917,32,0
,2,2036,16919,32,0
,2,2037,16921,32,0
,2,2038,16923,32,0
,2,2039,16925,32,0
,2,2040,16927,32,0
,2,2041,16929,32,0
,2,2042,16931,32,0
,2,2043,16933,48,0
,2,2044,16935,32,0
,2,2045,16937,40,0
,2,2046,16939,32,0
,2,2047,16941,32,0
,2,2048,16943,32,0
,2,2049,16945,64,0
,2,2050,16947,32,0
,2,2051,16949,64,0
,2,2052,16951,32,0
,2,2053,16953,32,0
,2,2054,16955,48,0
,2,2055,16957,40,0
,2,2056,16959,32,0
,2,2057,16961,32,0
,2,2058,16963,48,0
,2,2059,16965,32,0
,2,2060,16967,32,0
,2,2061,16969,32,0
,2,2062,16971,32,0
,2,2063,16973,32,0
,2,2064,16975,32,0
,2,2065,16977,72,0
,2,2066,16979,64,0
,2,2067,16981,32,0
,2,2068,16983,40,0
,2,2069,16985,40,0
,2,2070,16987,56,0
,2,2071,16989,32,0
,2,2072,16991,40,0
,2,2073,16993,32,0
,2,2074,16995,32,0
,2,2075,16997,32,0
,2,2076,16999,40,0
,2,2077,17001,32,0
,2,2078,17003,32,0
,2,2079,17005,32,0
,2,2080,17007,40,0
,2,2081,17009,40,0
,2,2082,17011,32,0
,2,2083,17013,48,0
,2,2084,17015,56,0
,2,2085,17017,40,0
,2,2086,17019,32,0
,2,2087,17021,32,0
,2,2088,17023,40,0
,2,2089,17025,32,0
,2,2090,17027,32,0
,2,2091,17029,32,0
,2,2092,17031,32,0
,2,2093,17033,32,0
,2,2094,17035,32,0
,2,2095,17037,32,0
,2,2096,17039,40,0
,2,2097,17041,48,0
,2,2098,17043,48,0
,2,2099,17045,64,0
,2,2100,17047,32,0
,2,2101,17049,40,0
,2,2102,17051,48,0
,2,2103,17053,40,0
,2,2104,17055,32,0
,2,2105,17057,56,0
,2,2106,17059,32,0
,2,2107,17061,48,0
,2,2108,17063,32,0
,2,2109,17065,32,0
,2,2110,17067,40,0
,2,2111,17069,48,0
,2,2112,17071,32,0
,2,2113,17073,32,0
,2,2114,17075,32,0
,2,2115,17077,32,0
,2,2116,17079,32,0
,2,2117,17081,32,0
,2,2118,17083,56,0
,2,2119,17085,48,0
,2,2120,17087,32,0
,2,2121,17089,32,0
,2,2122,17091,32,0
,2,2123,17093,32,0
,2,2124,17095,40,0
,2,2125,17097,32,0
,2,2126,17099,32,0
,2,2127,17101,32,0
,2,2128,17103,32,0
,2,2129,17105,40,0
,2,2130,17107,32,0
,2,2131,17109,40,0
,2,2132,17111,32,0
,2,2133,17113,32,0
,2,2134,17115,32,0
,2,2135,17117,32,0
,2,2136,17119,32,0
,2,2137,17121,32,0
,2,2138,17123,40,0
,2,2139,17125,32,0
,2,2140,17127,40,0
,2,2141,17129,32,0
,2,2142,17131,32,0
,2,2143,17133,64,0
,2,2144,17135,40,0
,2,2145,17137,32,0
,2,2146,17139,48,0
,2,2147,17141,32,0
,2,2148,17143,32,0
,2,2149,17145,48,0
,2,2150,17147,40,0
,2,2151,17149,32,0
,2,2152,17151,32,0
,2,2153,17153,56,0
,2,2154,17155,32,0
,2,2155,17157,40,0
,2,2156,17159,56,0
,2,2157,17161,32,0
,2,2158,17163,32,0
,2,2159,17165,40,0
,2,2160,17167,32,0
,2,2161,17169,32,0
,2,2162,17171,32,0
,2,2163,17173,56,0
,2,2164,17175,32,0
,1,131,17177,48,0
,1,131,17179,48,0
,1,131,17181,48,0
,1,131,17183,48,0
,1,131,17185,48,0
,3,834,17187,136,9
,1,131,17189,824,5
,2,2165,17191,272,0
,1,131,17193,824,5
,1,90,17195,40,3
,2,2166,17197,56,0
,2,2167,17199,40,0
,2,2168,17201,240,0
,2,2169,17203,224,0
,2,2170,17205,120,0
,2,2171,17207,152,0
,2,2172,17209,104,0
,2,2000,17211,216,0
,2,2173,17213,192,0
,2,2174,17215,168,0
,2,2175,17217,72,0
,2,2176,17219,136,0
,1,131,17221,824,29
,1,90,17223,152,1
,2,2173,17225,192,0
,2,2177,17227,184,0
,2,2178,17229,160,0
,2,2179,17231,144,0
,2,2180,17233,128,0
,2,2181,17235,96,0
,2,2182,17237,80,0
,2,2183,17239,64,0
,2,2184,17241,56,0
,1,90,17243,152,9
,3,50,17245,24,2
,3,50,17247,24,2
,2,2185,17249,32,0
,2,2186,17251,40,0
,2,2187,17253,32,0
,2,2188,17255,32,0
,2,2189,17257,32,0
,2,2190,17259,32,0
,2,2191,17261,32,0
,2,2192,17263,32,0
,2,2193,17265,32,0
,2,2194,17267,32,0
,2,2195,17269,40,0
,2,2196,17271,32,0
,2,2197,17273,32,0
,2,2198,17275,32,0
,2,2199,17277,40,0
,2,2200,17279,32,0
,2,837,17281,32,0
,2,2201,17283,32,0
,2,2202,17285,40,0
,2,2203,17287,32,0
,2,2204,17289,32,0
,2,2205,17291,32,0
,5,53,17293,72,9
,3,120,17295,32,2
,0,70,17297,80,7
,3,120,17299,32,3
,3,120,17301,32,3
,3,120,17303,32,3
,3,120,17305,32,3
,3,120,17307,32,3
,3,120,17309,32,3
,3,120,17311,32,3
,3,120,17313,32,3
,3,120,17315,32,3
,3,120,17317,32,3
,3,120,17319,32,3
,3,120,17321,32,3
,3,120,17323,32,3
,0,16,17325,64,4
,3,120,17327,32,3
,3,120,17329,32,3
,3,120,17331,32,3
,3,120,17333,32,3
,3,120,17335,32,3
,3,120,17337,32,3
,3,120,17339,32,3
,3,120,17341,32,3
,3,120,17343,32,3
,3,120,17345,32,3
,3,120,17347,32,3
,3,120,17349,32,3
,3,120,17351,32,3
,2,2206,17353,240,0
,2,2207,17355,1208,0
,2,2165,17357,272,0
,2,1419,17359,184,0
,3,120,17361,32,2
,2,2208,17363,32,0
,3,120,17365,32,2
,3,120,17367,32,2
,3,120,17369,32,2
,1,131,17371,72,5
,2,2209,17373,40,0
,2,30,17375,32,0
,2,1916,17377,32,0
,2,1916,17379,32,0
,1,131,17381,824,27
,3,120,17383,32,2
,3,120,17385,32,15
,2,2210,17387,48,0
,2,2211,17389,40,0
,2,2212,17391,56,0
,2,2213,17393,40,0
,2,2214,17395,40,0
,2,2215,17397,32,0
,2,2216,17399,40,0
,2,2217,17401,32,0
,2,2218,17403,40,0
,2,2219,17405,48,0
,2,2220,17407,40,0
,2,2221,17409,40,0
,2,2222,17411,32,0
,2,2223,17413,40,0
,2,2224,17415,40,0
,2,2225,17417,48,0
,2,2226,17419,40,0
,2,2227,17421,48,0
,2,2228,17423,40,0
,2,2229,17425,40,0
,2,2230,17427,48,0
,2,2231,17429,56,0
,3,120,17431,32,16407
,0,70,17433,80,7
,2,2232,17435,264,0
,2,2233,17437,248,0
,2,2234,17439,240,0
,2,2173,17441,192,0
,2,2177,17443,184,0
,2,2178,17445,160,0
,2,2179,17447,144,0
,2,2180,17449,128,0
,2,2181,17451,96,0
,2,2182,17453,80,0
,2,2183,17455,64,0
,2,2184,17457,56,0
,1,90,17459,152,12
,1,1480,17461,1536,0
,3,50,17463,24,4
,1,1,17465,6184,159
,4,1,17467,160,3
,4,1,17469,160,3
,4,1,17471,256,3
,4,1,17473,224,4
,4,1,17475,288,3
,4,1,17477,224,5
,4,1,17479,192,2
,4,1,17481,768,2
,4,1,17483,192,4
,4,1,17485,224,3
,4,1,17487,160,3
,4,1,17489,576,4
,4,1,17491,2624,9
,4,1,17493,256,5
,4,1,17495,224,4
,4,1,17497,1728,9
,4,1,17499,384,2
,4,1,17501,448,8
,4,1,17503,160,3
,4,1,17505,160,2
,4,1,17507,128,3
,4,1,17509,256,3
,4,1,17511,160,3
,4,1,17513,224,4
,4,1,17515,288,6
,4,1,17517,1728,9
,4,1,17519,320,4
,4,1,17521,288,4
,4,1,17523,992,2
,4,1,17525,224,4
,4,1,17527,480,3
,4,1,17529,160,3
,4,1,17531,1632,4
,4,1,17533,1728,9
,4,1,17535,320,3
,4,1,17537,192,3
,4,1,17539,288,3
,4,1,17541,352,3
,4,1,17543,288,3
,4,1,17545,160,3
,4,1,17547,288,5
,4,1,17549,256,3
,4,1,17551,992,2
,4,1,17553,160,3
,4,1,17555,1184,2
,4,1,17557,192,4
,4,1,17559,384,2
,4,1,17561,224,4
,4,1,17563,1760,9
,4,1,17565,320,3
,4,1,17567,352,5
,4,1,17569,256,5
,4,1,17571,480,3
,4,1,17573,1408,3
,4,1,17575,320,5
,4,1,17577,288,3
,4,1,17579,384,5
,4,1,17581,160,3
,4,1,17583,384,5
,4,1,17585,192,4
,4,1,17587,192,3
,4,1,17589,1792,9
,4,1,17591,320,5
,4,1,17593,192,4
,4,1,17595,224,4
,4,1,17597,224,4
,4,1,17599,224,3
,4,1,17601,192,4
,4,1,17603,800,2
,4,1,17605,320,3
,4,1,17607,288,5
,4,1,17609,288,5
,4,1,17611,1248,2
,4,1,17613,704,3
,4,1,17615,256,3
,4,1,17617,256,5
,4,1,17619,320,5
,4,1,17621,128,3
,4,1,17623,512,3
,4,1,17625,992,2
,4,1,17627,160,3
,4,1,17629,128,3
,4,1,17631,256,3
,4,1,17633,192,4
,4,1,17635,320,5
,4,1,17637,256,3
,4,1,17639,192,3
,4,1,17641,192,3
,4,1,17643,1024,6
,4,1,17645,1728,9
,4,1,17647,320,3
,4,1,17649,192,3
,4,1,17651,256,3
,4,1,17653,2656,9
,4,1,17655,1760,9
,4,1,17657,1056,3
,4,1,17659,1760,9
,4,1,17661,160,3
,4,1,17663,192,4
,4,1,17665,224,3
,4,1,17667,576,4
,4,1,17669,256,3
,4,1,17671,1728,9
,4,1,17673,1728,9
,4,1,17675,256,3
,4,1,17677,320,3
,4,1,17679,288,3
,4,1,17681,320,5
,4,1,17683,768,2
,4,1,17685,192,3
,4,1,17687,192,4
,4,1,17689,256,3
,4,1,17691,256,3
,4,1,17693,224,5
,4,1,17695,1632,4
,4,1,17697,1728,9
,4,1,17699,160,3
,4,1,17701,320,5
,4,1,17703,320,3
,4,1,17705,320,3
,4,1,17707,256,3
,4,1,17709,288,6
,4,1,17711,224,4
,4,1,17713,288,3
,4,1,17715,192,3
,4,1,17717,1760,9
,4,1,17719,1760,9
,4,1,17721,1440,3
,4,1,17723,160,3
,4,1,17725,2624,9
,4,1,17727,224,4
,4,1,17729,160,3
,4,1,17731,320,3
,4,1,17733,768,2
,4,1,17735,2688,9
,4,1,17737,160,3
,4,1,17739,416,4
,4,1,17741,480,3
,4,1,17743,992,2
,4,1,17745,1728,9
,4,1,17747,1792,9
,4,1,17749,352,4
,4,1,17751,352,4
,4,1,17753,768,2
,4,1,17755,288,3
,4,1,17757,2656,9
,4,1,17759,2624,9
,4,1,17761,224,4
,4,1,17763,320,3
,4,1,17765,160,3
,4,1,17767,224,3
,4,1,17769,224,3
,4,1,17771,224,4
,4,1,17773,224,4
,4,1,17775,160,3
,4,1,17777,288,5
,4,1,17779,768,3
,4,1,17781,320,3
,1,1,17783,3112,66
,4,1,17785,256,5
,4,1,17787,256,5
,4,1,17789,256,5
,4,1,17791,256,5
,4,1,17793,256,5
,4,1,17795,256,5
,4,1,17797,256,5
,4,1,17799,256,5
,4,1,17801,256,5
,4,1,17803,256,5
,4,1,17805,256,5
,4,1,17807,256,5
,4,1,17809,256,5
,4,1,17811,256,5
,4,1,17813,256,5
,4,1,17815,256,5
,4,1,17817,256,5
,4,1,17819,256,5
,4,1,17821,256,5
,4,1,17823,256,5
,4,1,17825,256,5
,4,1,17827,256,5
,4,1,17829,256,5
,4,1,17831,256,5
,4,1,17833,256,5
,4,1,17835,256,5
,4,1,17837,256,5
,4,1,17839,256,5
,4,1,17841,256,5
,4,1,17843,256,5
,4,1,17845,256,5
,4,1,17847,256,5
,4,1,17849,256,5
,4,1,17851,256,5
,4,1,17853,256,5
,4,1,17855,256,5
,4,1,17857,256,5
,4,1,17859,256,5
,4,1,17861,256,5
,4,1,17863,256,5
,4,1,17865,256,5
,4,1,17867,256,5
,4,1,17869,256,5
,4,1,17871,256,5
,4,1,17873,256,5
,4,1,17875,256,5
,4,1,17877,256,5
,4,1,17879,1472,9
,4,1,17881,256,5
,4,1,17883,256,5
,4,1,17885,256,5
,4,1,17887,256,5
,4,1,17889,256,5
,4,1,17891,256,5
,4,1,17893,256,5
,4,1,17895,256,5
,4,1,17897,224,5
,4,1,17899,256,5
,4,1,17901,256,5
,4,1,17903,256,5
,4,1,17905,256,5
,4,1,17907,256,5
,4,1,17909,256,5
,4,1,17911,256,5
,4,1,17913,256,5
,1,1,17915,128,11
,1,1,17917,24632,382
,2,2235,17919,48,0
,2,2236,17921,40,0
,2,2237,17923,40,0
,2,2238,17925,48,0
,2,2239,17927,56,0
,2,2240,17929,48,0
,2,2241,17931,40,0
,2,2242,17933,40,0
,2,2243,17935,40,0
,2,2244,17937,40,0
,2,2245,17939,48,0
,2,2246,17941,56,0
,2,2247,17943,48,0
,2,2248,17945,48,0
,2,2249,17947,48,0
,2,2250,17949,40,0
,2,2251,17951,40,0
,2,2252,17953,40,0
,2,2253,17955,48,0
,2,2254,17957,48,0
,2,2255,17959,40,0
,2,2256,17961,40,0
,2,2257,17963,48,0
,2,2258,17965,40,0
,2,2259,17967,32,0
,2,2260,17969,48,0
,2,2261,17971,40,0
,2,2262,17973,40,0
,2,2263,17975,40,0
,2,2264,17977,40,0
,2,2265,17979,40,0
,2,2266,17981,48,0
,2,2267,17983,48,0
,2,2268,17985,40,0
,2,2269,17987,40,0
,2,2270,17989,40,0
,2,2271,17991,40,0
,2,2272,17993,40,0
,2,2273,17995,40,0
,2,2274,17997,56,0
,2,2275,17999,40,0
,2,2276,18001,48,0
,2,2277,18003,32,0
,2,2278,18005,40,0
,2,2279,18007,32,0
,2,2280,18009,56,0
,2,2281,18011,48,0
,2,2282,18013,56,0
,2,2283,18015,56,0
,2,2284,18017,32,0
,2,2285,18019,40,0
,2,2286,18021,40,0
,2,2287,18023,40,0
,2,2288,18025,40,0
,2,2289,18027,48,0
,2,2290,18029,40,0
,2,2291,18031,40,0
,2,2292,18033,40,0
,2,2293,18035,40,0
,2,2294,18037,40,0
,2,2295,18039,40,0
,2,2296,18041,40,0
,2,2297,18043,48,0
,2,2298,18045,40,0
,2,2299,18047,40,0
,2,2300,18049,48,0
,2,2301,18051,48,0
,2,2302,18053,40,0
,2,2303,18055,40,0
,2,2304,18057,32,0
,2,2305,18059,40,0
,2,2306,18061,32,0
,2,2307,18063,40,0
,2,2308,18065,32,0
,2,2309,18067,64,0
,2,2310,18069,48,0
,2,2311,18071,40,0
,2,2312,18073,40,0
,2,2313,18075,40,0
,2,2314,18077,40,0
,2,2315,18079,40,0
,2,2316,18081,40,0
,2,2317,18083,48,0
,2,2318,18085,40,0
,2,2319,18087,40,0
,2,2320,18089,48,0
,2,2321,18091,48,0
,2,2322,18093,32,0
,2,2323,18095,48,0
,2,2324,18097,40,0
,2,2325,18099,40,0
,2,2326,18101,32,0
,2,2327,18103,32,0
,2,2328,18105,40,0
,2,2329,18107,56,0
,2,2330,18109,32,0
,2,2331,18111,40,0
,2,2332,18113,32,0
,2,2333,18115,72,0
,2,2334,18117,48,0
,2,2335,18119,32,0
,2,2336,18121,48,0
,2,2337,18123,48,0
,2,2338,18125,48,0
,2,2339,18127,40,0
,2,2340,18129,48,0
,2,2341,18131,64,0
,2,2342,18133,32,0
,2,2343,18135,40,0
,2,2344,18137,40,0
,2,2345,18139,56,0
,2,2346,18141,56,0
,2,2347,18143,32,0
,2,2348,18145,40,0
,2,2349,18147,40,0
,2,2350,18149,48,0
,2,2351,18151,32,0
,2,2352,18153,40,0
,2,2353,18155,40,0
,2,2354,18157,48,0
,2,2355,18159,40,0
,2,2356,18161,48,0
,2,2357,18163,40,0
,2,2358,18165,48,0
,2,2359,18167,40,0
,2,2360,18169,32,0
,2,2361,18171,56,0
,2,2362,18173,56,0
,2,2363,18175,48,0
,2,2364,18177,48,0
,2,2365,18179,48,0
,2,2366,18181,40,0
,2,2367,18183,48,0
,2,2368,18185,40,0
,2,2369,18187,40,0
,2,2370,18189,40,0
,2,2371,18191,48,0
,2,2372,18193,56,0
,2,2373,18195,40,0
,2,2374,18197,40,0
,2,2375,18199,32,0
,2,2376,18201,32,0
,2,2377,18203,32,0
,2,2378,18205,56,0
,2,2379,18207,32,0
,2,2380,18209,40,0
,2,2381,18211,48,0
,2,2382,18213,48,0
,2,2383,18215,48,0
,2,2384,18217,56,0
,2,2385,18219,40,0
,2,2386,18221,48,0
,2,2387,18223,48,0
,2,2388,18225,40,0
,2,2389,18227,48,0
,2,2390,18229,40,0
,2,2391,18231,32,0
,2,2392,18233,48,0
,2,2393,18235,40,0
,2,2394,18237,40,0
,2,2395,18239,40,0
,2,2396,18241,56,0
,2,2397,18243,48,0
,2,2398,18245,40,0
,2,2399,18247,32,0
,2,2400,18249,40,0
,2,2401,18251,40,0
,2,2402,18253,40,0
,2,2403,18255,48,0
,2,2404,18257,48,0
,2,2405,18259,40,0
,2,2406,18261,40,0
,2,2407,18263,40,0
,2,2408,18265,48,0
,2,2409,18267,56,0
,2,2410,18269,64,0
,2,2411,18271,40,0
,2,2412,18273,48,0
,2,2413,18275,48,0
,2,2414,18277,48,0
,2,2415,18279,48,0
,2,2416,18281,64,0
,2,2417,18283,48,0
,2,2418,18285,40,0
,2,2419,18287,56,0
,2,2420,18289,40,0
,2,2421,18291,40,0
,2,2422,18293,56,0
,2,2423,18295,40,0
,2,2424,18297,48,0
,2,2425,18299,56,0
,2,2426,18301,32,0
,2,2427,18303,56,0
,2,2428,18305,48,0
,2,2429,18307,56,0
,2,2430,18309,48,0
,2,2431,18311,48,0
,2,2432,18313,56,0
,2,2433,18315,56,0
,2,2434,18317,48,0
,2,2435,18319,56,0
,2,2436,18321,40,0
,2,2437,18323,48,0
,2,2438,18325,40,0
,2,2439,18327,40,0
,2,2440,18329,48,0
,2,2441,18331,40,0
,2,2442,18333,48,0
,2,2443,18335,32,0
,2,2444,18337,48,0
,2,2445,18339,32,0
,2,2446,18341,40,0
,2,2447,18343,64,0
,2,2448,18345,56,0
,2,2449,18347,48,0
,2,2450,18349,56,0
,2,2451,18351,48,0
,2,2452,18353,40,0
,2,2453,18355,48,0
,2,2454,18357,64,0
,2,2455,18359,56,0
,2,2456,18361,32,0
,2,2457,18363,48,0
,2,2458,18365,40,0
,2,2459,18367,40,0
,2,2460,18369,48,0
,2,2461,18371,32,0
,2,2462,18373,32,0
,2,2463,18375,48,0
,2,2464,18377,56,0
,2,2465,18379,40,0
,2,2466,18381,40,0
,2,2467,18383,40,0
,2,2468,18385,40,0
,2,2469,18387,40,0
,2,2470,18389,40,0
,2,2471,18391,40,0
,2,2472,18393,40,0
,2,2473,18395,64,0
,2,2474,18397,48,0
,2,2475,18399,32,0
,2,2476,18401,40,0
,2,2477,18403,40,0
,2,2478,18405,40,0
,2,2479,18407,40,0
,2,2480,18409,48,0
,2,2481,18411,40,0
,2,2482,18413,40,0
,2,2483,18415,48,0
,2,2484,18417,40,0
,2,2485,18419,48,0
,2,2486,18421,48,0
,2,2487,18423,40,0
,2,2488,18425,32,0
,2,2489,18427,48,0
,2,2490,18429,48,0
,2,2491,18431,48,0
,2,2492,18433,48,0
,2,2493,18435,48,0
,2,2494,18437,48,0
,2,2495,18439,40,0
,2,2496,18441,48,0
,2,2497,18443,40,0
,2,2498,18445,56,0
,2,2499,18447,48,0
,2,2500,18449,48,0
,2,2501,18451,48,0
,2,2502,18453,40,0
,2,2503,18455,48,0
,2,2504,18457,40,0
,2,2505,18459,56,0
,2,2506,18461,48,0
,2,2507,18463,40,0
,2,2508,18465,48,0
,2,2509,18467,40,0
,2,2510,18469,48,0
,2,2511,18471,56,0
,2,2512,18473,48,0
,2,2513,18475,48,0
,2,2514,18477,40,0
,2,2515,18479,48,0
,2,2516,18481,32,0
,2,2517,18483,56,0
,2,2518,18485,32,0
,2,2519,18487,40,0
,2,2520,18489,40,0
,2,2521,18491,56,0
,2,2522,18493,40,0
,2,2523,18495,32,0
,2,2524,18497,48,0
,2,2525,18499,48,0
,2,2526,18501,48,0
,2,2527,18503,40,0
,2,2528,18505,40,0
,2,2529,18507,40,0
,2,2530,18509,48,0
,2,2531,18511,56,0
,2,2532,18513,48,0
,2,2533,18515,40,0
,2,2534,18517,32,0
,2,2535,18519,48,0
,2,2536,18521,40,0
,2,2537,18523,40,0
,2,2538,18525,40,0
,2,2539,18527,40,0
,2,2540,18529,56,0
,2,2541,18531,40,0
,2,2542,18533,48,0
,2,2543,18535,32,0
,2,2544,18537,40,0
,2,2545,18539,40,0
,2,2546,18541,64,0
,2,2547,18543,32,0
,2,2548,18545,40,0
,2,2549,18547,48,0
,2,2550,18549,56,0
,2,2551,18551,48,0
,2,2552,18553,48,0
,2,2553,18555,48,0
,2,2554,18557,48,0
,2,2555,18559,40,0
,2,2556,18561,40,0
,2,2557,18563,32,0
,2,2558,18565,40,0
,2,2559,18567,48,0
,2,2560,18569,40,0
,2,2561,18571,48,0
,2,2562,18573,40,0
,2,2563,18575,56,0
,2,2564,18577,64,0
,2,2565,18579,40,0
,2,2566,18581,48,0
,2,2567,18583,40,0
,2,2568,18585,64,0
,2,2569,18587,48,0
,2,2570,18589,48,0
,2,2571,18591,32,0
,2,2572,18593,48,0
,2,2573,18595,40,0
,2,2574,18597,48,0
,2,2575,18599,48,0
,2,2576,18601,48,0
,2,2577,18603,40,0
,2,2578,18605,48,0
,2,2579,18607,40,0
,2,2580,18609,40,0
,2,2581,18611,56,0
,2,2582,18613,40,0
,2,2583,18615,48,0
,2,2584,18617,48,0
,2,2585,18619,40,0
,2,2586,18621,40,0
,2,2587,18623,40,0
,2,2588,18625,40,0
,2,2589,18627,40,0
,2,2590,18629,40,0
,2,2591,18631,56,0
,2,2592,18633,56,0
,2,2593,18635,40,0
,2,2594,18637,48,0
,2,2595,18639,56,0
,2,2596,18641,56,0
,2,2597,18643,56,0
,2,2598,18645,56,0
,2,2599,18647,56,0
,2,2600,18649,56,0
,2,2601,18651,56,0
,2,2602,18653,56,0
,2,2603,18655,56,0
,2,2604,18657,56,0
,2,2605,18659,56,0
,2,2606,18661,56,0
,2,2607,18663,56,0
,2,2608,18665,56,0
,2,2609,18667,56,0
,2,2610,18669,56,0
,2,2611,18671,56,0
,2,2612,18673,56,0
,2,2613,18675,56,0
,2,2614,18677,56,0
,2,2615,18679,56,0
,2,2616,18681,56,0
,2,2617,18683,56,0
,2,2618,18685,56,0
,2,2619,18687,56,0
,2,2620,18689,56,0
,2,2621,18691,56,0
,2,2622,18693,56,0
,2,2623,18695,56,0
,2,2624,18697,56,0
,2,2625,18699,56,0
,2,2626,18701,56,0
,2,2627,18703,56,0
,2,2628,18705,56,0
,2,2629,18707,56,0
,2,2630,18709,56,0
,2,2631,18711,56,0
,2,2632,18713,56,0
,2,2633,18715,56,0
,2,2634,18717,56,0
,2,2635,18719,56,0
,2,2636,18721,56,0
,2,2637,18723,56,0
,2,2638,18725,56,0
,2,2639,18727,56,0
,2,2640,18729,56,0
,2,2641,18731,56,0
,2,2642,18733,56,0
,2,2643,18735,56,0
,2,2644,18737,56,0
,2,2645,18739,56,0
,2,2646,18741,56,0
,2,2647,18743,56,0
,2,2648,18745,56,0
,2,2649,18747,56,0
,2,2650,18749,56,0
,2,2651,18751,56,0
,2,2652,18753,56,0
,2,2653,18755,56,0
,2,2654,18757,56,0
,2,2655,18759,56,0
,2,2656,18761,56,0
,2,2657,18763,56,0
,2,2658,18765,56,0
,2,2659,18767,56,0
,2,2660,18769,56,0
,2,2661,18771,56,0
,2,2662,18773,56,0
,2,2663,18775,56,0
,2,2664,18777,56,0
,2,2665,18779,56,0
,2,2666,18781,56,0
,2,2667,18783,56,0
,2,2668,18785,56,0
,2,2669,18787,56,0
,2,2670,18789,56,0
,2,2671,18791,56,0
,2,2672,18793,56,0
,2,2673,18795,56,0
,2,2674,18797,56,0
,2,2675,18799,56,0
,2,2676,18801,56,0
,2,2677,18803,56,0
,2,2678,18805,56,0
,2,2679,18807,56,0
,2,2680,18809,56,0
,2,2681,18811,56,0
,2,2682,18813,56,0
,2,2683,18815,56,0
,2,2684,18817,56,0
,2,2685,18819,56,0
,2,2686,18821,56,0
,2,2687,18823,56,0
,2,2688,18825,56,0
,2,2689,18827,56,0
,2,2690,18829,56,0
,2,2691,18831,56,0
,2,2692,18833,56,0
,2,2693,18835,56,0
,2,2694,18837,56,0
,2,2695,18839,56,0
,2,2696,18841,56,0
,2,2697,18843,56,0
,2,2698,18845,56,0
,2,2699,18847,56,0
,2,2700,18849,56,0
,2,2701,18851,56,0
,2,2702,18853,56,0
,2,2703,18855,56,0
,2,2704,18857,56,0
,2,2705,18859,56,0
,2,2706,18861,56,0
,2,2707,18863,56,0
,2,2708,18865,56,0
,2,2709,18867,56,0
,2,2710,18869,56,0
,2,2711,18871,56,0
,2,2712,18873,56,0
,2,2713,18875,56,0
,2,2714,18877,56,0
,2,2715,18879,56,0
,2,2716,18881,56,0
,2,2717,18883,56,0
,2,2718,18885,56,0
,2,2719,18887,56,0
,2,2720,18889,56,0
,2,2721,18891,56,0
,2,2722,18893,56,0
,2,2723,18895,56,0
,2,2724,18897,56,0
,2,2725,18899,56,0
,2,2726,18901,56,0
,2,2727,18903,56,0
,2,2728,18905,56,0
,2,2729,18907,56,0
,2,2730,18909,56,0
,2,2731,18911,56,0
,2,2732,18913,56,0
,2,2733,18915,56,0
,2,2734,18917,56,0
,2,2735,18919,56,0
,2,2736,18921,56,0
,2,2737,18923,56,0
,2,2738,18925,56,0
,2,2739,18927,56,0
,2,2740,18929,56,0
,2,2741,18931,56,0
,2,2742,18933,56,0
,2,2743,18935,56,0
,2,2744,18937,56,0
,2,2745,18939,56,0
,2,2746,18941,56,0
,2,2747,18943,56,0
,2,2748,18945,56,0
,2,2749,18947,56,0
,2,2750,18949,56,0
,2,2751,18951,56,0
,2,2752,18953,56,0
,2,2753,18955,56,0
,2,2754,18957,56,0
,2,2755,18959,56,0
,2,2756,18961,56,0
,2,2757,18963,56,0
,2,2758,18965,56,0
,2,2759,18967,56,0
,2,2760,18969,56,0
,2,2761,18971,56,0
,2,2762,18973,56,0
,2,2763,18975,56,0
,2,2764,18977,56,0
,2,2765,18979,56,0
,2,2766,18981,56,0
,2,2767,18983,56,0
,2,2768,18985,56,0
,2,2769,18987,56,0
,2,2770,18989,56,0
,2,2771,18991,56,0
,2,2772,18993,56,0
,2,2773,18995,56,0
,2,2774,18997,56,0
,2,2775,18999,56,0
,2,2776,19001,56,0
,2,2777,19003,56,0
,2,2778,19005,56,0
,2,2779,19007,56,0
,2,2780,19009,56,0
,2,2781,19011,56,0
,2,2782,19013,56,0
,2,2783,19015,56,0
,2,2784,19017,56,0
,2,2785,19019,56,0
,2,2786,19021,56,0
,2,2787,19023,56,0
,2,2788,19025,56,0
,2,2789,19027,56,0
,2,2790,19029,56,0
,2,2791,19031,56,0
,2,2792,19033,56,0
,2,2793,19035,56,0
,2,2794,19037,56,0
,2,2795,19039,56,0
,2,2796,19041,56,0
,2,2797,19043,56,0
,2,2798,19045,56,0
,2,2799,19047,56,0
,2,2800,19049,56,0
,2,2801,19051,56,0
,2,2802,19053,56,0
,2,2803,19055,56,0
,2,2804,19057,56,0
,2,2805,19059,56,0
,2,2806,19061,56,0
,2,2807,19063,56,0
,2,2808,19065,56,0
,2,2809,19067,56,0
,2,2810,19069,56,0
,2,2811,19071,56,0
,2,2812,19073,56,0
,2,2813,19075,56,0
,2,2814,19077,56,0
,2,2815,19079,56,0
,2,2816,19081,56,0
,2,2817,19083,56,0
,2,2818,19085,56,0
,2,2819,19087,56,0
,2,2820,19089,56,0
,2,2821,19091,56,0
,2,2822,19093,56,0
,2,2823,19095,56,0
,2,2824,19097,56,0
,2,2825,19099,56,0
,2,2826,19101,56,0
,2,2827,19103,56,0
,2,2828,19105,56,0
,2,2829,19107,56,0
,2,2830,19109,56,0
,2,2831,19111,56,0
,2,2832,19113,56,0
,2,2833,19115,56,0
,2,2834,19117,56,0
,2,2835,19119,56,0
,2,2836,19121,56,0
,2,2837,19123,56,0
,2,2838,19125,56,0
,2,2839,19127,56,0
,2,2840,19129,56,0
,2,2841,19131,56,0
,2,2842,19133,56,0
,2,2843,19135,56,0
,2,2844,19137,56,0
,2,2845,19139,56,0
,2,2846,19141,56,0
,2,2847,19143,56,0
,2,2848,19145,56,0
,2,2849,19147,56,0
,2,2850,19149,56,0
,2,2851,19151,56,0
,2,2852,19153,56,0
,2,2853,19155,56,0
,2,2854,19157,56,0
,2,2855,19159,56,0
,2,2856,19161,56,0
,2,2857,19163,56,0
,2,2858,19165,56,0
,2,2859,19167,56,0
,2,2860,19169,56,0
,2,2861,19171,56,0
,2,2862,19173,56,0
,2,2863,19175,56,0
,2,2864,19177,56,0
,2,2865,19179,56,0
,2,2866,19181,56,0
,2,2867,19183,56,0
,2,2868,19185,56,0
,2,2869,19187,56,0
,2,2870,19189,56,0
,2,2871,19191,56,0
,2,2872,19193,56,0
,2,2873,19195,56,0
,2,2874,19197,56,0
,2,2875,19199,56,0
,2,2876,19201,56,0
,2,2877,19203,56,0
,2,2878,19205,56,0
,2,2879,19207,56,0
,2,2880,19209,56,0
,2,2881,19211,56,0
,2,2882,19213,56,0
,2,2883,19215,56,0
,2,2884,19217,56,0
,2,2885,19219,56,0
,2,2886,19221,56,0
,2,2887,19223,56,0
,2,2888,19225,56,0
,2,2889,19227,56,0
,2,2890,19229,56,0
,2,2891,19231,56,0
,2,2892,19233,56,0
,2,2893,19235,56,0
,2,2894,19237,56,0
,2,2895,19239,56,0
,2,2896,19241,56,0
,2,2897,19243,56,0
,2,2898,19245,56,0
,2,2899,19247,56,0
,2,2900,19249,56,0
,2,2901,19251,56,0
,2,2902,19253,56,0
,2,2903,19255,56,0
,2,2904,19257,56,0
,2,2905,19259,56,0
,2,2906,19261,56,0
,2,2907,19263,56,0
,2,2908,19265,56,0
,2,2909,19267,56,0
,2,2910,19269,56,0
,2,2911,19271,56,0
,2,2912,19273,56,0
,2,2913,19275,56,0
,2,2914,19277,56,0
,2,2915,19279,56,0
,2,2916,19281,56,0
,2,2917,19283,56,0
,2,2918,19285,56,0
,2,2919,19287,56,0
,2,2920,19289,56,0
,2,2921,19291,56,0
,2,2922,19293,56,0
,2,2923,19295,56,0
,2,2924,19297,56,0
,2,2925,19299,56,0
,2,2926,19301,56,0
,2,2927,19303,56,0
,2,2928,19305,56,0
,2,2929,19307,56,0
,2,2930,19309,56,0
,2,2931,19311,56,0
,2,2932,19313,56,0
,2,2933,19315,56,0
,2,2934,19317,56,0
,2,2935,19319,56,0
,2,2936,19321,56,0
,2,2937,19323,56,0
,2,2938,19325,56,0
,2,2939,19327,56,0
,2,2940,19329,56,0
,2,2941,19331,56,0
,2,2942,19333,56,0
,2,2943,19335,56,0
,2,2944,19337,56,0
,2,2945,19339,56,0
,2,2946,19341,56,0
,2,2947,19343,56,0
,2,2948,19345,56,0
,2,2949,19347,56,0
,2,2950,19349,56,0
,2,2951,19351,56,0
,2,2952,19353,56,0
,2,2953,19355,56,0
,2,2954,19357,56,0
,2,2955,19359,56,0
,2,2956,19361,56,0
,2,2957,19363,56,0
,2,2958,19365,56,0
,2,2959,19367,56,0
,2,2960,19369,56,0
,2,2961,19371,56,0
,2,2962,19373,56,0
,2,2963,19375,56,0
,2,2964,19377,56,0
,2,2965,19379,56,0
,2,2966,19381,56,0
,2,2967,19383,56,0
,2,2968,19385,56,0
,2,2969,19387,56,0
,2,2970,19389,56,0
,2,2971,19391,56,0
,2,2972,19393,56,0
,2,2973,19395,56,0
,2,2974,19397,56,0
,2,2975,19399,56,0
,2,2976,19401,56,0
,2,2977,19403,56,0
,2,2978,19405,56,0
,2,2979,19407,56,0
,2,2980,19409,56,0
,2,2981,19411,56,0
,2,2982,19413,56,0
,2,2983,19415,56,0
,2,2984,19417,56,0
,2,2985,19419,56,0
,2,2986,19421,56,0
,2,2987,19423,56,0
,2,2988,19425,56,0
,2,2989,19427,56,0
,2,2990,19429,56,0
,2,2991,19431,56,0
,2,2992,19433,56,0
,2,2993,19435,56,0
,2,2994,19437,56,0
,2,2995,19439,56,0
,2,2996,19441,56,0
,2,2997,19443,56,0
,2,2998,19445,56,0
,2,2999,19447,56,0
,2,3000,19449,56,0
,2,3001,19451,56,0
,2,3002,19453,56,0
,2,3003,19455,56,0
,2,3004,19457,56,0
,2,3005,19459,56,0
,2,3006,19461,56,0
,2,3007,19463,56,0
,2,3008,19465,56,0
,2,3009,19467,56,0
,2,3010,19469,56,0
,2,3011,19471,56,0
,2,3012,19473,56,0
,2,3013,19475,56,0
,2,3014,19477,56,0
,2,3015,19479,56,0
,2,3016,19481,56,0
,2,3017,19483,56,0
,2,3018,19485,56,0
,2,3019,19487,56,0
,2,3020,19489,56,0
,2,3021,19491,56,0
,2,3022,19493,56,0
,2,3023,19495,56,0
,2,3024,19497,56,0
,2,3025,19499,56,0
,2,3026,19501,56,0
,2,3027,19503,56,0
,2,3028,19505,56,0
,2,3029,19507,56,0
,2,3030,19509,56,0
,2,3031,19511,56,0
,2,3032,19513,56,0
,2,3033,19515,56,0
,2,3034,19517,56,0
,2,3035,19519,56,0
,2,3036,19521,56,0
,2,3037,19523,56,0
,2,3038,19525,56,0
,2,3039,19527,56,0
,2,3040,19529,56,0
,2,3041,19531,56,0
,2,3042,19533,56,0
,2,3043,19535,56,0
,2,3044,19537,56,0
,2,3045,19539,56,0
,2,3046,19541,56,0
,2,3047,19543,56,0
,2,3048,19545,56,0
,2,3049,19547,56,0
,2,3050,19549,56,0
,2,3051,19551,56,0
,2,3052,19553,56,0
,2,3053,19555,56,0
,2,3054,19557,56,0
,2,3055,19559,56,0
,2,3056,19561,56,0
,2,3057,19563,56,0
,2,3058,19565,56,0
,2,3059,19567,56,0
,2,3060,19569,56,0
,2,3061,19571,56,0
,2,3062,19573,56,0
,2,3063,19575,56,0
,2,3064,19577,56,0
,2,3065,19579,56,0
,2,3066,19581,56,0
,2,3067,19583,56,0
,2,3068,19585,56,0
,2,3069,19587,56,0
,2,3070,19589,56,0
,2,3071,19591,56,0
,2,3072,19593,56,0
,2,3073,19595,56,0
,2,3074,19597,56,0
,2,3075,19599,56,0
,2,3076,19601,56,0
,2,3077,19603,56,0
,2,3078,19605,56,0
,2,3079,19607,56,0
,2,3080,19609,56,0
,2,3081,19611,56,0
,2,3082,19613,56,0
,2,3083,19615,56,0
,2,3084,19617,56,0
,2,3085,19619,56,0
,2,3086,19621,56,0
,2,3087,19623,56,0
,2,3088,19625,56,0
,2,3089,19627,56,0
,2,3090,19629,56,0
,2,3091,19631,56,0
,2,3092,19633,56,0
,2,3093,19635,56,0
,2,3094,19637,56,0
,2,3095,19639,56,0
,2,3096,19641,56,0
,2,3097,19643,56,0
,2,3098,19645,56,0
,2,3099,19647,56,0
,2,3100,19649,56,0
,2,3101,19651,56,0
,2,3102,19653,56,0
,2,3103,19655,56,0
,2,3104,19657,56,0
,2,3105,19659,56,0
,2,3106,19661,56,0
,2,3107,19663,56,0
,2,3108,19665,56,0
,2,3109,19667,56,0
,2,3110,19669,56,0
,2,3111,19671,56,0
,2,3112,19673,56,0
,2,3113,19675,56,0
,2,3114,19677,56,0
,2,3115,19679,56,0
,2,3116,19681,56,0
,2,3117,19683,56,0
,2,3118,19685,56,0
,2,3119,19687,56,0
,2,3120,19689,56,0
,2,3121,19691,56,0
,2,3122,19693,56,0
,2,3123,19695,56,0
,2,3124,19697,56,0
,2,3125,19699,56,0
,2,3126,19701,56,0
,2,3127,19703,56,0
,2,3128,19705,56,0
,2,3129,19707,56,0
,2,3130,19709,56,0
,2,3131,19711,56,0
,2,3132,19713,56,0
,2,3133,19715,56,0
,2,3134,19717,56,0
,2,3135,19719,56,0
,2,3136,19721,56,0
,2,3137,19723,56,0
,2,3138,19725,56,0
,2,3139,19727,56,0
,2,3140,19729,56,0
,2,3141,19731,56,0
,2,3142,19733,56,0
,2,3143,19735,56,0
,2,3144,19737,56,0
,2,3145,19739,56,0
,2,3146,19741,56,0
,2,3147,19743,56,0
,2,3148,19745,56,0
,2,3149,19747,56,0
,2,3150,19749,56,0
,2,3151,19751,56,0
,2,3152,19753,56,0
,2,3153,19755,56,0
,2,3154,19757,56,0
,2,3155,19759,56,0
,2,3156,19761,56,0
,2,3157,19763,56,0
,2,3158,19765,56,0
,2,3159,19767,56,0
,2,3160,19769,56,0
,2,3161,19771,56,0
,2,3162,19773,56,0
,2,3163,19775,56,0
,2,3164,19777,56,0
,2,3165,19779,56,0
,2,3166,19781,56,0
,2,3167,19783,56,0
,2,3168,19785,56,0
,2,3169,19787,56,0
,2,3170,19789,56,0
,2,3171,19791,56,0
,2,3172,19793,56,0
,2,3173,19795,56,0
,2,3174,19797,56,0
,2,3175,19799,56,0
,2,3176,19801,56,0
,2,3177,19803,56,0
,2,3178,19805,56,0
,2,3179,19807,56,0
,2,3180,19809,56,0
,2,3181,19811,56,0
,2,3182,19813,56,0
,2,3183,19815,56,0
,2,3184,19817,56,0
,2,3185,19819,56,0
,2,3186,19821,56,0
,2,3187,19823,56,0
,2,3188,19825,56,0
,2,3189,19827,56,0
,2,3190,19829,56,0
,2,3191,19831,56,0
,2,3192,19833,56,0
,2,3193,19835,56,0
,2,3194,19837,56,0
,2,3195,19839,56,0
,2,3196,19841,56,0
,2,3197,19843,56,0
,2,3198,19845,56,0
,2,3199,19847,56,0
,2,3200,19849,56,0
,2,3201,19851,56,0
,2,3202,19853,56,0
,2,3203,19855,56,0
,2,3204,19857,56,0
,2,3205,19859,56,0
,2,3206,19861,56,0
,2,3207,19863,56,0
,2,3208,19865,56,0
,2,3209,19867,56,0
,2,3210,19869,56,0
,2,3211,19871,56,0
,2,3212,19873,56,0
,2,3213,19875,56,0
,2,3214,19877,56,0
,2,3215,19879,56,0
,2,3216,19881,56,0
,2,3217,19883,56,0
,2,3218,19885,56,0
,2,3219,19887,56,0
,2,3220,19889,56,0
,2,3221,19891,56,0
,2,3222,19893,56,0
,2,3223,19895,56,0
,2,3224,19897,56,0
,2,3225,19899,56,0
,2,3226,19901,56,0
,2,3227,19903,56,0
,2,3228,19905,56,0
,2,3229,19907,56,0
,2,3230,19909,56,0
,2,3231,19911,56,0
,2,3232,19913,56,0
,2,3233,19915,56,0
,2,3234,19917,56,0
,2,3235,19919,56,0
,2,3236,19921,56,0
,2,3237,19923,56,0
,2,3238,19925,56,0
,2,3239,19927,56,0
,2,3240,19929,56,0
,2,3241,19931,56,0
,2,3242,19933,56,0
,2,3243,19935,56,0
,2,3244,19937,56,0
,2,3245,19939,56,0
,2,3246,19941,56,0
,2,3247,19943,56,0
,2,3248,19945,56,0
,2,3249,19947,56,0
,2,3250,19949,56,0
,2,3251,19951,56,0
,2,3252,19953,56,0
,2,3253,19955,56,0
,2,3254,19957,56,0
,2,3255,19959,56,0
,2,3256,19961,56,0
,2,3257,19963,56,0
,2,3258,19965,56,0
,2,3259,19967,56,0
,2,3260,19969,56,0
,2,3261,19971,56,0
,2,3262,19973,56,0
,2,3263,19975,56,0
,2,3264,19977,56,0
,2,3265,19979,56,0
,2,3266,19981,56,0
,2,3267,19983,56,0
,2,3268,19985,56,0
,2,3269,19987,56,0
,2,3270,19989,56,0
,2,3271,19991,56,0
,2,3272,19993,56,0
,2,3273,19995,56,0
,2,3274,19997,56,0
,2,3275,19999,56,0
,2,3276,20001,56,0
,2,3277,20003,56,0
,2,3278,20005,56,0
,2,3279,20007,56,0
,2,3280,20009,56,0
,2,3281,20011,56,0
,2,3282,20013,56,0
,2,3283,20015,56,0
,2,3284,20017,56,0
,2,3285,20019,56,0
,2,3286,20021,56,0
,2,3287,20023,56,0
,2,3288,20025,56,0
,2,3289,20027,56,0
,2,3290,20029,56,0
,2,3291,20031,56,0
,2,3292,20033,56,0
,2,3293,20035,56,0
,2,3294,20037,56,0
,2,3295,20039,56,0
,2,3296,20041,56,0
,2,3297,20043,56,0
,2,3298,20045,56,0
,2,3299,20047,56,0
,2,3300,20049,56,0
,2,3301,20051,56,0
,2,3302,20053,56,0
,2,3303,20055,56,0
,2,3304,20057,56,0
,2,3305,20059,56,0
,2,3306,20061,56,0
,2,3307,20063,56,0
,2,3308,20065,56,0
,2,3309,20067,56,0
,2,3310,20069,56,0
,2,3311,20071,56,0
,2,3312,20073,56,0
,2,3313,20075,56,0
,2,3314,20077,56,0
,2,3315,20079,56,0
,2,3316,20081,56,0
,2,3317,20083,56,0
,2,3318,20085,56,0
,2,3319,20087,56,0
,2,3320,20089,56,0
,2,3321,20091,56,0
,2,3322,20093,56,0
,2,3323,20095,56,0
,2,3324,20097,56,0
,2,3325,20099,56,0
,2,3326,20101,56,0
,2,3327,20103,56,0
,2,3328,20105,56,0
,2,3329,20107,56,0
,2,3330,20109,56,0
,2,3331,20111,56,0
,2,3332,20113,56,0
,2,3333,20115,56,0
,2,3334,20117,56,0
,2,3335,20119,56,0
,2,3336,20121,56,0
,2,3337,20123,56,0
,2,3338,20125,56,0
,2,3339,20127,56,0
,2,3340,20129,56,0
,2,3341,20131,56,0
,2,3342,20133,56,0
,2,3343,20135,56,0
,2,3344,20137,56,0
,2,3345,20139,56,0
,2,3346,20141,56,0
,2,3347,20143,56,0
,2,3348,20145,56,0
,2,3349,20147,56,0
,2,3350,20149,56,0
,2,3351,20151,56,0
,2,3352,20153,56,0
,2,3353,20155,56,0
,2,3354,20157,56,0
,2,3355,20159,56,0
,2,3356,20161,56,0
,2,3357,20163,56,0
,2,3358,20165,56,0
,2,3359,20167,56,0
,2,3360,20169,56,0
,2,3361,20171,56,0
,2,3362,20173,56,0
,2,3363,20175,56,0
,2,3364,20177,56,0
,2,3365,20179,56,0
,2,3366,20181,56,0
,2,3367,20183,56,0
,2,3368,20185,56,0
,2,3369,20187,56,0
,2,3370,20189,56,0
,2,3371,20191,56,0
,2,3372,20193,56,0
,2,3373,20195,56,0
,2,3374,20197,56,0
,2,3375,20199,56,0
,2,3376,20201,56,0
,2,3377,20203,56,0
,2,3378,20205,56,0
,2,3379,20207,56,0
,2,3380,20209,56,0
,2,3381,20211,56,0
,2,3382,20213,56,0
,2,3383,20215,56,0
,2,3384,20217,56,0
,2,3385,20219,56,0
,2,3386,20221,56,0
,2,3387,20223,56,0
,2,3388,20225,56,0
,2,3389,20227,56,0
,2,3390,20229,56,0
,2,3391,20231,56,0
,2,3392,20233,56,0
,2,3393,20235,56,0
,2,3394,20237,56,0
,2,3395,20239,56,0
,2,3396,20241,56,0
,2,3397,20243,56,0
,2,3398,20245,56,0
,2,3399,20247,56,0
,2,3400,20249,56,0
,2,3401,20251,56,0
,2,3402,20253,56,0
,2,3403,20255,56,0
,2,3404,20257,56,0
,2,3405,20259,56,0
,2,3406,20261,56,0
,2,3407,20263,56,0
,2,3408,20265,56,0
,2,3409,20267,56,0
,2,3410,20269,56,0
,2,3411,20271,56,0
,2,3412,20273,56,0
,2,3413,20275,56,0
,2,3414,20277,56,0
,2,3415,20279,56,0
,2,3416,20281,56,0
,2,3417,20283,56,0
,2,3418,20285,56,0
,2,3419,20287,56,0
,2,3420,20289,56,0
,2,3421,20291,56,0
,2,3422,20293,56,0
,2,3423,20295,56,0
,2,3424,20297,56,0
,2,3425,20299,56,0
,2,3426,20301,56,0
,2,3427,20303,56,0
,2,3428,20305,56,0
,2,3429,20307,56,0
,2,3430,20309,56,0
,2,3431,20311,56,0
,2,3432,20313,56,0
,2,3433,20315,56,0
,2,3434,20317,56,0
,2,3435,20319,56,0
,2,3436,20321,56,0
,2,3437,20323,56,0
,2,3438,20325,56,0
,2,3439,20327,56,0
,2,3440,20329,56,0
,2,3441,20331,56,0
,2,3442,20333,56,0
,2,3443,20335,56,0
,2,3444,20337,56,0
,2,3445,20339,56,0
,2,3446,20341,56,0
,2,3447,20343,56,0
,2,3448,20345,56,0
,2,3449,20347,56,0
,2,3450,20349,56,0
,2,3451,20351,56,0
,2,3452,20353,56,0
,2,3453,20355,56,0
,2,3454,20357,56,0
,2,3455,20359,56,0
,2,3456,20361,56,0
,2,3457,20363,56,0
,2,3458,20365,56,0
,2,3459,20367,56,0
,2,3460,20369,56,0
,2,3461,20371,56,0
,2,3462,20373,56,0
,2,3463,20375,56,0
,2,3464,20377,56,0
,2,3465,20379,56,0
,2,3466,20381,56,0
,2,3467,20383,56,0
,2,3468,20385,56,0
,2,3469,20387,56,0
,2,3470,20389,56,0
,2,3471,20391,56,0
,2,3472,20393,56,0
,2,3473,20395,56,0
,2,3474,20397,56,0
,2,3475,20399,56,0
,2,3476,20401,56,0
,2,3477,20403,56,0
,2,3478,20405,56,0
,2,3479,20407,56,0
,2,3480,20409,56,0
,2,3481,20411,56,0
,2,3482,20413,56,0
,2,3483,20415,56,0
,2,3484,20417,56,0
,2,3485,20419,56,0
,2,3486,20421,56,0
,2,3487,20423,56,0
,2,3488,20425,56,0
,2,3489,20427,56,0
,2,3490,20429,56,0
,2,3491,20431,56,0
,2,3492,20433,56,0
,2,3493,20435,56,0
,2,3494,20437,56,0
,2,3495,20439,56,0
,2,3496,20441,56,0
,2,3497,20443,56,0
,2,3498,20445,56,0
,2,3499,20447,56,0
,2,3500,20449,56,0
,2,3501,20451,56,0
,2,3502,20453,56,0
,2,3503,20455,56,0
,2,3504,20457,56,0
,2,3505,20459,56,0
,2,3506,20461,56,0
,2,3507,20463,56,0
,2,3508,20465,56,0
,2,3509,20467,56,0
,2,3510,20469,56,0
,2,3511,20471,56,0
,2,3512,20473,56,0
,2,3513,20475,56,0
,2,3514,20477,56,0
,2,3515,20479,56,0
,2,3516,20481,56,0
,2,3517,20483,56,0
,2,3518,20485,56,0
,2,3519,20487,56,0
,2,3520,20489,56,0
,2,3521,20491,56,0
,2,3522,20493,56,0
,2,3523,20495,56,0
,2,3524,20497,56,0
,2,3525,20499,56,0
,2,3526,20501,56,0
,2,3527,20503,56,0
,2,3528,20505,56,0
,2,3529,20507,56,0
,2,3530,20509,56,0
,2,3531,20511,56,0
,2,3532,20513,56,0
,2,3533,20515,56,0
,2,3534,20517,56,0
,2,3535,20519,56,0
,2,3536,20521,56,0
,2,3537,20523,56,0
,2,3538,20525,56,0
,2,3539,20527,56,0
,2,3540,20529,56,0
,2,3541,20531,56,0
,2,3542,20533,56,0
,2,3543,20535,56,0
,2,3544,20537,56,0
,2,3545,20539,56,0
,2,3546,20541,56,0
,2,3547,20543,56,0
,2,3548,20545,56,0
,2,3549,20547,56,0
,2,3550,20549,56,0
,2,3551,20551,56,0
,2,3552,20553,56,0
,2,3553,20555,56,0
,2,3554,20557,56,0
,2,3555,20559,56,0
,2,3556,20561,56,0
,2,3557,20563,56,0
,2,3558,20565,56,0
,2,3559,20567,56,0
,2,3560,20569,56,0
,2,3561,20571,56,0
,2,3562,20573,56,0
,2,3563,20575,56,0
,2,3564,20577,56,0
,2,3565,20579,56,0
,2,3566,20581,56,0
,2,3567,20583,56,0
,2,3568,20585,56,0
,2,3569,20587,56,0
,2,3570,20589,56,0
,2,3571,20591,56,0
,2,3572,20593,56,0
,2,3573,20595,56,0
,2,3574,20597,56,0
,2,3575,20599,56,0
,2,3576,20601,56,0
,2,3577,20603,56,0
,2,3578,20605,56,0
,2,3579,20607,56,0
,2,3580,20609,56,0
,2,3581,20611,56,0
,2,3582,20613,56,0
,2,3583,20615,56,0
,2,3584,20617,56,0
,2,3585,20619,56,0
,2,3586,20621,56,0
,2,3587,20623,56,0
,2,3588,20625,56,0
,2,3589,20627,56,0
,2,3590,20629,56,0
,2,3591,20631,56,0
,2,3592,20633,56,0
,2,3593,20635,56,0
,2,3594,20637,56,0
,2,3595,20639,56,0
,2,3596,20641,56,0
,2,3597,20643,56,0
,2,3598,20645,56,0
,2,3599,20647,56,0
,2,3600,20649,56,0
,2,3601,20651,56,0
,2,3602,20653,56,0
,2,3603,20655,56,0
,2,3604,20657,56,0
,2,3605,20659,56,0
,2,3606,20661,56,0
,2,3607,20663,56,0
,2,3608,20665,56,0
,2,3609,20667,56,0
,2,3610,20669,56,0
,2,3611,20671,56,0
,2,3612,20673,56,0
,2,3613,20675,56,0
,2,3614,20677,56,0
,2,3615,20679,56,0
,2,3616,20681,56,0
,2,3617,20683,56,0
,2,3618,20685,56,0
,2,3619,20687,56,0
,2,3620,20689,56,0
,2,3621,20691,56,0
,2,3622,20693,56,0
,2,3623,20695,56,0
,2,3624,20697,56,0
,2,3625,20699,56,0
,2,3626,20701,56,0
,2,3627,20703,56,0
,2,3628,20705,56,0
,2,3629,20707,56,0
,2,3630,20709,56,0
,2,3631,20711,56,0
,2,3632,20713,56,0
,2,3633,20715,56,0
,2,3634,20717,56,0
,2,3635,20719,56,0
,2,3636,20721,56,0
,2,3637,20723,56,0
,2,3638,20725,56,0
,2,3639,20727,56,0
,2,3640,20729,56,0
,2,3641,20731,56,0
,2,3642,20733,56,0
,2,3643,20735,56,0
,2,3644,20737,56,0
,2,3645,20739,56,0
,2,3646,20741,56,0
,2,3647,20743,56,0
,2,3648,20745,56,0
,2,3649,20747,56,0
,2,3650,20749,56,0
,2,3651,20751,56,0
,2,3652,20753,56,0
,2,3653,20755,56,0
,2,3654,20757,56,0
,2,3655,20759,56,0
,2,3656,20761,56,0
,2,3657,20763,56,0
,2,3658,20765,56,0
,2,3659,20767,56,0
,2,3660,20769,56,0
,2,3661,20771,56,0
,2,3662,20773,56,0
,2,3663,20775,56,0
,2,3664,20777,56,0
,2,3665,20779,56,0
,2,3666,20781,56,0
,2,3667,20783,56,0
,2,3668,20785,56,0
,2,3669,20787,56,0
,2,3670,20789,56,0
,2,3671,20791,56,0
,2,3672,20793,56,0
,2,3673,20795,56,0
,2,3674,20797,56,0
,2,3675,20799,56,0
,2,3676,20801,56,0
,2,3677,20803,56,0
,2,3678,20805,56,0
,2,3679,20807,56,0
,2,3680,20809,56,0
,2,3681,20811,56,0
,2,3682,20813,56,0
,2,3683,20815,56,0
,2,3684,20817,56,0
,2,3685,20819,56,0
,2,3686,20821,56,0
,2,3687,20823,56,0
,2,3688,20825,56,0
,2,3689,20827,56,0
,2,3690,20829,56,0
,2,3691,20831,56,0
,2,3692,20833,56,0
,2,3693,20835,56,0
,2,3694,20837,56,0
,2,3695,20839,56,0
,2,3696,20841,56,0
,2,3697,20843,56,0
,2,3698,20845,56,0
,2,3699,20847,56,0
,2,3700,20849,56,0
,2,3701,20851,56,0
,2,3702,20853,56,0
,2,3703,20855,56,0
,2,3704,20857,56,0
,2,3705,20859,56,0
,2,3706,20861,56,0
,2,3707,20863,56,0
,2,3708,20865,56,0
,2,3709,20867,56,0
,2,3710,20869,56,0
,2,3711,20871,56,0
,2,3712,20873,56,0
,2,3713,20875,56,0
,2,3714,20877,56,0
,2,3715,20879,56,0
,2,3716,20881,56,0
,2,3717,20883,56,0
,2,3718,20885,56,0
,2,3719,20887,56,0
,2,3720,20889,56,0
,2,3721,20891,56,0
,2,3722,20893,56,0
,2,3723,20895,56,0
,2,3724,20897,56,0
,2,3725,20899,56,0
,2,3726,20901,56,0
,2,3727,20903,56,0
,2,3728,20905,56,0
,2,3729,20907,56,0
,2,3730,20909,56,0
,2,3731,20911,56,0
,2,3732,20913,56,0
,2,3733,20915,56,0
,2,3734,20917,56,0
,2,3735,20919,56,0
,2,3736,20921,56,0
,2,3737,20923,56,0
,2,3738,20925,56,0
,2,3739,20927,56,0
,2,3740,20929,56,0
,2,3741,20931,56,0
,2,3742,20933,56,0
,2,3743,20935,56,0
,2,3744,20937,56,0
,2,3745,20939,56,0
,2,3746,20941,56,0
,2,3747,20943,56,0
,2,3748,20945,56,0
,2,3749,20947,56,0
,2,3750,20949,56,0
,2,3751,20951,56,0
,2,3752,20953,56,0
,2,3753,20955,56,0
,2,3754,20957,56,0
,2,3755,20959,56,0
,2,3756,20961,56,0
,2,3757,20963,56,0
,2,3758,20965,56,0
,2,3759,20967,56,0
,2,3760,20969,56,0
,2,3761,20971,56,0
,2,3762,20973,56,0
,2,3763,20975,56,0
,2,3764,20977,56,0
,2,3765,20979,56,0
,2,3766,20981,56,0
,2,3767,20983,56,0
,2,3768,20985,56,0
,2,3769,20987,56,0
,2,3770,20989,56,0
,2,3771,20991,56,0
,2,3772,20993,56,0
,2,3773,20995,56,0
,2,3774,20997,56,0
,2,3775,20999,56,0
,2,3776,21001,56,0
,2,3777,21003,56,0
,2,3778,21005,56,0
,2,3779,21007,56,0
,2,3780,21009,56,0
,2,3781,21011,56,0
,2,3782,21013,56,0
,2,3783,21015,56,0
,2,3784,21017,56,0
,2,3785,21019,56,0
,2,3786,21021,56,0
,2,3787,21023,56,0
,2,3788,21025,56,0
,2,3789,21027,56,0
,2,3790,21029,56,0
,2,3791,21031,56,0
,2,3792,21033,56,0
,2,3793,21035,56,0
,2,3794,21037,56,0
,2,3795,21039,56,0
,2,3796,21041,56,0
,2,3797,21043,56,0
,2,3798,21045,56,0
,2,3799,21047,56,0
,2,3800,21049,56,0
,2,3801,21051,56,0
,2,3802,21053,56,0
,2,3803,21055,56,0
,2,3804,21057,56,0
,2,3805,21059,56,0
,2,3806,21061,56,0
,2,3807,21063,56,0
,2,3808,21065,56,0
,2,3809,21067,56,0
,2,3810,21069,56,0
,2,3811,21071,56,0
,2,3812,21073,56,0
,2,3813,21075,56,0
,2,3814,21077,56,0
,2,3815,21079,56,0
,2,3816,21081,56,0
,2,3817,21083,56,0
,2,3818,21085,56,0
,2,3819,21087,56,0
,2,3820,21089,56,0
,2,3821,21091,56,0
,2,3822,21093,56,0
,2,3823,21095,56,0
,2,3824,21097,56,0
,2,3825,21099,56,0
,2,3826,21101,56,0
,2,3827,21103,56,0
,2,3828,21105,56,0
,2,3829,21107,56,0
,2,3830,21109,56,0
,2,3831,21111,56,0
,2,3832,21113,56,0
,2,3833,21115,56,0
,2,3834,21117,56,0
,2,3835,21119,56,0
,2,3836,21121,56,0
,2,3837,21123,56,0
,2,3838,21125,56,0
,2,3839,21127,56,0
,2,3840,21129,56,0
,2,3841,21131,56,0
,2,3842,21133,56,0
,2,3843,21135,56,0
,2,3844,21137,56,0
,2,3845,21139,56,0
,2,3846,21141,56,0
,2,3847,21143,56,0
,2,3848,21145,56,0
,2,3849,21147,56,0
,2,3850,21149,56,0
,2,3851,21151,56,0
,2,3852,21153,56,0
,2,3853,21155,56,0
,2,3854,21157,56,0
,2,3855,21159,56,0
,2,3856,21161,56,0
,2,3857,21163,56,0
,2,3858,21165,56,0
,2,3859,21167,56,0
,2,3860,21169,56,0
,2,3861,21171,56,0
,2,3862,21173,56,0
,2,3863,21175,56,0
,2,3864,21177,56,0
,2,3865,21179,56,0
,2,3866,21181,56,0
,2,3867,21183,56,0
,2,3868,21185,56,0
,2,3869,21187,56,0
,2,3870,21189,56,0
,2,3871,21191,56,0
,2,3872,21193,56,0
,2,3873,21195,56,0
,2,3874,21197,56,0
,2,3875,21199,56,0
,2,3876,21201,56,0
,2,3877,21203,56,0
,2,3878,21205,56,0
,2,3879,21207,56,0
,2,3880,21209,56,0
,2,3881,21211,56,0
,2,3882,21213,56,0
,2,3883,21215,56,0
,2,3884,21217,56,0
,2,3885,21219,56,0
,2,3886,21221,56,0
,2,3887,21223,56,0
,2,3888,21225,56,0
,2,3889,21227,56,0
,2,3890,21229,56,0
,2,3891,21231,56,0
,2,3892,21233,56,0
,2,3893,21235,56,0
,2,3894,21237,56,0
,2,3895,21239,56,0
,2,3896,21241,56,0
,2,3897,21243,56,0
,2,3898,21245,56,0
,2,3899,21247,56,0
,2,3900,21249,56,0
,2,3901,21251,56,0
,2,3902,21253,56,0
,2,3903,21255,56,0
,2,3904,21257,56,0
,2,3905,21259,56,0
,2,3906,21261,56,0
,2,3907,21263,56,0
,2,3908,21265,56,0
,2,3909,21267,56,0
,2,3910,21269,56,0
,2,3911,21271,56,0
,2,3912,21273,56,0
,2,3913,21275,56,0
,2,3914,21277,56,0
,2,3915,21279,56,0
,2,3916,21281,56,0
,2,3917,21283,56,0
,2,3918,21285,56,0
,2,3919,21287,56,0
,2,3920,21289,56,0
,2,3921,21291,56,0
,2,3922,21293,56,0
,2,3923,21295,56,0
,2,3924,21297,56,0
,2,3925,21299,56,0
,2,3926,21301,56,0
,2,3927,21303,56,0
,2,3928,21305,56,0
,2,3929,21307,56,0
,2,3930,21309,56,0
,2,3931,21311,56,0
,2,3932,21313,56,0
,2,3933,21315,56,0
,2,3934,21317,56,0
,2,3935,21319,56,0
,2,3936,21321,56,0
,2,3937,21323,56,0
,2,3938,21325,56,0
,2,3939,21327,56,0
,2,3940,21329,56,0
,2,3941,21331,56,0
,2,3942,21333,56,0
,2,3943,21335,56,0
,2,3944,21337,56,0
,2,3945,21339,56,0
,2,3946,21341,56,0
,2,3947,21343,56,0
,2,3948,21345,56,0
,2,3949,21347,56,0
,2,3950,21349,56,0
,2,3951,21351,56,0
,2,3952,21353,56,0
,2,3953,21355,56,0
,2,3954,21357,56,0
,2,3955,21359,56,0
,2,3956,21361,56,0
,2,3957,21363,56,0
,2,3958,21365,56,0
,2,3959,21367,56,0
,2,3960,21369,56,0
,2,3961,21371,56,0
,2,3962,21373,56,0
,2,3963,21375,56,0
,2,3964,21377,56,0
,2,3965,21379,56,0
,2,3966,21381,56,0
,2,3967,21383,56,0
,2,3968,21385,56,0
,2,3969,21387,56,0
,2,3970,21389,56,0
,2,3971,21391,56,0
,2,3972,21393,56,0
,2,3973,21395,56,0
,2,3974,21397,56,0
,2,3975,21399,56,0
,2,3976,21401,56,0
,2,3977,21403,56,0
,2,3978,21405,56,0
,2,3979,21407,56,0
,2,3980,21409,56,0
,2,3981,21411,56,0
,2,3982,21413,56,0
,2,3983,21415,56,0
,2,3984,21417,56,0
,2,3985,21419,56,0
,2,3986,21421,56,0
,2,3987,21423,56,0
,2,3988,21425,56,0
,2,3989,21427,56,0
,2,3990,21429,56,0
,2,3991,21431,56,0
,2,3992,21433,56,0
,2,3993,21435,56,0
,2,3994,21437,56,0
,2,3995,21439,56,0
,2,3996,21441,56,0
,2,3997,21443,56,0
,2,3998,21445,56,0
,2,3999,21447,56,0
,2,4000,21449,56,0
,2,4001,21451,56,0
,2,4002,21453,56,0
,2,4003,21455,56,0
,2,4004,21457,56,0
,2,4005,21459,56,0
,2,4006,21461,56,0
,2,4007,21463,56,0
,2,4008,21465,56,0
,2,4009,21467,56,0
,2,4010,21469,56,0
,2,4011,21471,56,0
,2,4012,21473,56,0
,2,4013,21475,56,0
,2,4014,21477,56,0
,2,4015,21479,56,0
,2,4016,21481,56,0
,2,4017,21483,56,0
,2,4018,21485,56,0
,2,4019,21487,56,0
,2,4020,21489,56,0
,2,4021,21491,56,0
,2,4022,21493,56,0
,2,4023,21495,56,0
,2,4024,21497,56,0
,2,4025,21499,56,0
,2,4026,21501,56,0
,2,4027,21503,56,0
,2,4028,21505,56,0
,2,4029,21507,56,0
,2,4030,21509,56,0
,2,4031,21511,56,0
,2,4032,21513,56,0
,2,4033,21515,56,0
,2,4034,21517,56,0
,2,4035,21519,56,0
,2,4036,21521,56,0
,2,4037,21523,56,0
,2,4038,21525,56,0
,2,4039,21527,56,0
,2,4040,21529,56,0
,2,4041,21531,56,0
,2,4042,21533,56,0
,2,4043,21535,56,0
,2,4044,21537,56,0
,2,4045,21539,56,0
,2,4046,21541,56,0
,2,4047,21543,56,0
,2,4048,21545,56,0
,2,4049,21547,56,0
,2,4050,21549,56,0
,2,4051,21551,56,0
,2,4052,21553,56,0
,2,4053,21555,56,0
,2,4054,21557,56,0
,2,4055,21559,56,0
,2,4056,21561,56,0
,2,4057,21563,56,0
,2,4058,21565,56,0
,2,4059,21567,56,0
,2,4060,21569,56,0
,2,4061,21571,56,0
,2,4062,21573,56,0
,2,4063,21575,56,0
,2,4064,21577,56,0
,2,4065,21579,56,0
,2,4066,21581,56,0
,2,4067,21583,56,0
,2,4068,21585,56,0
,2,4069,21587,56,0
,2,4070,21589,56,0
,2,4071,21591,56,0
,2,4072,21593,56,0
,2,4073,21595,56,0
,2,4074,21597,56,0
,2,4075,21599,56,0
,2,4076,21601,56,0
,2,4077,21603,56,0
,2,4078,21605,56,0
,2,4079,21607,56,0
,2,4080,21609,56,0
,2,4081,21611,56,0
,2,4082,21613,56,0
,2,4083,21615,56,0
,2,4084,21617,56,0
,2,4085,21619,56,0
,2,4086,21621,56,0
,2,4087,21623,56,0
,2,4088,21625,56,0
,2,4089,21627,56,0
,2,4090,21629,56,0
,2,4091,21631,56,0
,2,4092,21633,56,0
,2,4093,21635,56,0
,2,4094,21637,56,0
,2,4095,21639,56,0
,2,4096,21641,56,0
,2,4097,21643,56,0
,2,4098,21645,56,0
,2,4099,21647,56,0
,2,4100,21649,56,0
,2,4101,21651,56,0
,2,4102,21653,56,0
,2,4103,21655,56,0
,2,4104,21657,56,0
,2,4105,21659,56,0
,2,4106,21661,56,0
,2,4107,21663,56,0
,2,4108,21665,56,0
,2,4109,21667,56,0
,2,4110,21669,56,0
,2,4111,21671,56,0
,2,4112,21673,56,0
,2,4113,21675,56,0
,2,4114,21677,56,0
,2,4115,21679,56,0
,2,4116,21681,56,0
,2,4117,21683,56,0
,2,4118,21685,56,0
,2,4119,21687,56,0
,2,4120,21689,56,0
,2,4121,21691,56,0
,2,4122,21693,56,0
,2,4123,21695,56,0
,2,4124,21697,56,0
,2,4125,21699,56,0
,2,4126,21701,56,0
,2,4127,21703,56,0
,2,4128,21705,56,0
,2,4129,21707,56,0
,2,4130,21709,56,0
,2,4131,21711,56,0
,2,4132,21713,56,0
,2,4133,21715,56,0
,2,4134,21717,56,0
,2,4135,21719,56,0
,2,4136,21721,56,0
,2,4137,21723,56,0
,2,4138,21725,56,0
,2,4139,21727,56,0
,2,4140,21729,56,0
,2,4141,21731,56,0
,2,4142,21733,56,0
,2,4143,21735,56,0
,2,4144,21737,56,0
,2,4145,21739,56,0
,2,4146,21741,56,0
,2,4147,21743,56,0
,2,4148,21745,56,0
,2,4149,21747,56,0
,2,4150,21749,56,0
,2,4151,21751,56,0
,2,4152,21753,56,0
,2,4153,21755,56,0
,2,4154,21757,56,0
,2,4155,21759,56,0
,2,4156,21761,56,0
,2,4157,21763,56,0
,2,4158,21765,56,0
,2,4159,21767,56,0
,2,4160,21769,56,0
,2,4161,21771,56,0
,2,4162,21773,56,0
,2,4163,21775,56,0
,2,4164,21777,56,0
,2,4165,21779,56,0
,2,4166,21781,56,0
,2,4167,21783,56,0
,2,4168,21785,56,0
,2,4169,21787,56,0
,2,4170,21789,56,0
,2,4171,21791,56,0
,2,4172,21793,56,0
,2,4173,21795,56,0
,2,4174,21797,56,0
,2,4175,21799,56,0
,2,4176,21801,56,0
,2,4177,21803,56,0
,2,4178,21805,56,0
,2,4179,21807,56,0
,2,4180,21809,56,0
,2,4181,21811,56,0
,2,4182,21813,56,0
,2,4183,21815,56,0
,2,4184,21817,56,0
,2,4185,21819,56,0
,2,4186,21821,56,0
,2,4187,21823,56,0
,2,4188,21825,56,0
,2,4189,21827,56,0
,2,4190,21829,56,0
,2,4191,21831,56,0
,2,4192,21833,56,0
,2,4193,21835,56,0
,2,4194,21837,56,0
,2,4195,21839,56,0
,2,4196,21841,56,0
,2,4197,21843,56,0
,2,4198,21845,56,0
,2,4199,21847,56,0
,2,4200,21849,56,0
,2,4201,21851,56,0
,2,4202,21853,56,0
,2,4203,21855,56,0
,2,4204,21857,56,0
,2,4205,21859,56,0
,2,4206,21861,56,0
,2,4207,21863,56,0
,2,4208,21865,56,0
,2,4209,21867,56,0
,2,4210,21869,56,0
,2,4211,21871,56,0
,2,4212,21873,56,0
,2,4213,21875,56,0
,2,4214,21877,56,0
,2,4215,21879,56,0
,2,4216,21881,56,0
,2,4217,21883,56,0
,2,4218,21885,56,0
,2,4219,21887,56,0
,2,4220,21889,56,0
,2,4221,21891,56,0
,2,4222,21893,56,0
,2,4223,21895,56,0
,2,4224,21897,56,0
,2,4225,21899,56,0
,2,4226,21901,56,0
,2,4227,21903,56,0
,2,4228,21905,56,0
,2,4229,21907,56,0
,2,4230,21909,56,0
,2,4231,21911,56,0
,2,4232,21913,56,0
,2,4233,21915,56,0
,2,4234,21917,56,0
,2,4235,21919,56,0
,2,4236,21921,56,0
,2,4237,21923,56,0
,2,4238,21925,56,0
,2,4239,21927,56,0
,2,4240,21929,56,0
,2,4241,21931,56,0
,2,4242,21933,56,0
,2,4243,21935,56,0
,2,4244,21937,56,0
,2,4245,21939,56,0
,2,4246,21941,56,0
,2,4247,21943,56,0
,2,4248,21945,56,0
,2,4249,21947,56,0
,2,4250,21949,56,0
,2,4251,21951,56,0
,2,4252,21953,56,0
,2,4253,21955,56,0
,2,4254,21957,56,0
,2,4255,21959,56,0
,2,4256,21961,56,0
,2,4257,21963,56,0
,2,4258,21965,56,0
,2,4259,21967,56,0
,2,4260,21969,56,0
,2,4261,21971,56,0
,2,4262,21973,56,0
,2,4263,21975,56,0
,2,4264,21977,56,0
,2,4265,21979,56,0
,2,4266,21981,56,0
,2,4267,21983,56,0
,2,4268,21985,56,0
,2,4269,21987,56,0
,2,4270,21989,56,0
,2,4271,21991,56,0
,2,4272,21993,56,0
,2,4273,21995,56,0
,2,4274,21997,56,0
,2,4275,21999,56,0
,2,4276,22001,56,0
,2,4277,22003,56,0
,2,4278,22005,56,0
,2,4279,22007,56,0
,2,4280,22009,56,0
,2,4281,22011,56,0
,2,4282,22013,56,0
,2,4283,22015,56,0
,2,4284,22017,56,0
,2,4285,22019,56,0
,2,4286,22021,56,0
,2,4287,22023,56,0
,2,4288,22025,56,0
,2,4289,22027,56,0
,2,4290,22029,56,0
,2,4291,22031,56,0
,2,4292,22033,56,0
,2,4293,22035,56,0
,2,4294,22037,56,0
,2,4295,22039,56,0
,2,4296,22041,56,0
,2,4297,22043,56,0
,2,4298,22045,56,0
,2,4299,22047,56,0
,2,4300,22049,56,0
,2,4301,22051,56,0
,2,4302,22053,56,0
,2,4303,22055,56,0
,2,4304,22057,56,0
,2,4305,22059,56,0
,2,4306,22061,56,0
,2,4307,22063,56,0
,2,4308,22065,56,0
,2,4309,22067,56,0
,2,4310,22069,56,0
,2,4311,22071,56,0
,2,4312,22073,56,0
,2,4313,22075,56,0
,2,4314,22077,56,0
,2,4315,22079,56,0
,2,4316,22081,56,0
,2,4317,22083,56,0
,2,4318,22085,56,0
,2,4319,22087,56,0
,2,4320,22089,56,0
,2,4321,22091,56,0
,2,4322,22093,56,0
,2,4323,22095,56,0
,2,4324,22097,56,0
,2,4325,22099,56,0
,2,4326,22101,56,0
,2,4327,22103,56,0
,2,4328,22105,56,0
,2,4329,22107,56,0
,2,4330,22109,56,0
,2,4331,22111,56,0
,2,4332,22113,56,0
,2,4333,22115,56,0
,2,4334,22117,56,0
,2,4335,22119,56,0
,2,4336,22121,56,0
,2,4337,22123,56,0
,2,4338,22125,56,0
,2,4339,22127,56,0
,2,4340,22129,56,0
,2,4341,22131,56,0
,2,4342,22133,56,0
,2,4343,22135,56,0
,2,4344,22137,56,0
,2,4345,22139,56,0
,2,4346,22141,56,0
,2,4347,22143,56,0
,2,4348,22145,56,0
,2,4349,22147,56,0
,2,4350,22149,56,0
,2,4351,22151,56,0
,2,4352,22153,56,0
,2,4353,22155,56,0
,2,4354,22157,56,0
,2,4355,22159,56,0
,2,4356,22161,56,0
,2,4357,22163,56,0
,2,4358,22165,56,0
,2,4359,22167,56,0
,2,4360,22169,56,0
,2,4361,22171,56,0
,2,4362,22173,56,0
,2,4363,22175,56,0
,2,4364,22177,56,0
,2,4365,22179,56,0
,2,4366,22181,56,0
,2,4367,22183,56,0
,2,4368,22185,56,0
,2,4369,22187,56,0
,2,4370,22189,56,0
,2,4371,22191,56,0
,2,4372,22193,56,0
,2,4373,22195,56,0
,2,4374,22197,56,0
,2,4375,22199,56,0
,2,4376,22201,56,0
,2,4377,22203,56,0
,2,4378,22205,56,0
,2,4379,22207,56,0
,2,4380,22209,56,0
,2,4381,22211,56,0
,2,4382,22213,56,0
,2,4383,22215,56,0
,2,4384,22217,56,0
,2,4385,22219,56,0
,2,4386,22221,56,0
,2,4387,22223,56,0
,2,4388,22225,56,0
,2,4389,22227,56,0
,2,4390,22229,56,0
,2,4391,22231,56,0
,2,4392,22233,56,0
,2,4393,22235,56,0
,2,4394,22237,56,0
,2,4395,22239,56,0
,2,4396,22241,56,0
,2,4397,22243,56,0
,2,4398,22245,56,0
,2,4399,22247,56,0
,2,4400,22249,56,0
,2,4401,22251,56,0
,2,4402,22253,56,0
,2,4403,22255,56,0
,2,4404,22257,56,0
,2,4405,22259,56,0
,2,4406,22261,56,0
,2,4407,22263,56,0
,2,4408,22265,56,0
,2,4409,22267,56,0
,2,4410,22269,56,0
,2,4411,22271,56,0
,2,4412,22273,56,0
,2,4413,22275,56,0
,2,4414,22277,56,0
,2,4415,22279,56,0
,2,4416,22281,56,0
,2,4417,22283,56,0
,2,4418,22285,56,0
,2,4419,22287,56,0
,2,4420,22289,56,0
,2,4421,22291,56,0
,2,4422,22293,56,0
,2,4423,22295,56,0
,2,4424,22297,56,0
,2,4425,22299,56,0
,2,4426,22301,56,0
,2,4427,22303,56,0
,2,4428,22305,56,0
,2,4429,22307,56,0
,2,4430,22309,56,0
,2,4431,22311,56,0
,2,4432,22313,56,0
,2,4433,22315,56,0
,2,4434,22317,56,0
,2,4435,22319,56,0
,2,4436,22321,56,0
,2,4437,22323,56,0
,2,4438,22325,56,0
,2,4439,22327,56,0
,2,4440,22329,56,0
,2,4441,22331,56,0
,2,4442,22333,56,0
,2,4443,22335,56,0
,2,4444,22337,56,0
,2,4445,22339,56,0
,2,4446,22341,56,0
,2,4447,22343,56,0
,2,4448,22345,56,0
,2,4449,22347,56,0
,2,4450,22349,56,0
,2,4451,22351,56,0
,2,4452,22353,56,0
,2,4453,22355,56,0
,2,4454,22357,56,0
,2,4455,22359,56,0
,2,4456,22361,56,0
,2,4457,22363,56,0
,2,4458,22365,56,0
,2,4459,22367,56,0
,2,4460,22369,56,0
,2,4461,22371,56,0
,2,4462,22373,56,0
,2,4463,22375,56,0
,2,4464,22377,56,0
,2,4465,22379,56,0
,2,4466,22381,56,0
,2,4467,22383,56,0
,2,4468,22385,56,0
,2,4469,22387,56,0
,2,4470,22389,56,0
,2,4471,22391,56,0
,2,4472,22393,56,0
,2,4473,22395,56,0
,2,4474,22397,56,0
,2,4475,22399,56,0
,2,4476,22401,56,0
,2,4477,22403,56,0
,2,4478,22405,56,0
,2,4479,22407,56,0
,2,4480,22409,56,0
,2,4481,22411,56,0
,2,4482,22413,56,0
,2,4483,22415,56,0
,2,4484,22417,56,0
,2,4485,22419,56,0
,2,4486,22421,56,0
,2,4487,22423,56,0
,2,4488,22425,56,0
,2,4489,22427,56,0
,2,4490,22429,56,0
,2,4491,22431,56,0
,2,4492,22433,56,0
,2,4493,22435,56,0
,2,4494,22437,56,0
,2,4495,22439,56,0
,2,4496,22441,56,0
,2,4497,22443,56,0
,2,4498,22445,56,0
,2,4499,22447,56,0
,2,4500,22449,56,0
,2,4501,22451,56,0
,2,4502,22453,56,0
,2,4503,22455,56,0
,2,4504,22457,56,0
,2,4505,22459,56,0
,2,4506,22461,56,0
,2,4507,22463,56,0
,2,4508,22465,56,0
,2,4509,22467,56,0
,2,4510,22469,56,0
,2,4511,22471,56,0
,2,4512,22473,56,0
,2,4513,22475,56,0
,2,4514,22477,56,0
,2,4515,22479,56,0
,2,4516,22481,56,0
,2,4517,22483,56,0
,2,4518,22485,56,0
,2,4519,22487,56,0
,2,4520,22489,56,0
,2,4521,22491,56,0
,2,4522,22493,56,0
,2,4523,22495,56,0
,2,4524,22497,56,0
,2,4525,22499,56,0
,2,4526,22501,56,0
,2,4527,22503,56,0
,2,4528,22505,56,0
,2,4529,22507,56,0
,2,4530,22509,56,0
,2,4531,22511,56,0
,2,4532,22513,56,0
,2,4533,22515,56,0
,2,4534,22517,56,0
,2,4535,22519,56,0
,2,4536,22521,56,0
,2,4537,22523,56,0
,2,4538,22525,56,0
,2,4539,22527,56,0
,2,4540,22529,56,0
,2,4541,22531,56,0
,2,4542,22533,56,0
,2,4543,22535,56,0
,2,4544,22537,56,0
,2,4545,22539,56,0
,2,4546,22541,56,0
,2,4547,22543,56,0
,2,4548,22545,56,0
,2,4549,22547,56,0
,2,4550,22549,56,0
,2,4551,22551,56,0
,2,4552,22553,56,0
,2,4553,22555,56,0
,2,4554,22557,56,0
,2,4555,22559,56,0
,2,4556,22561,56,0
,2,4557,22563,56,0
,2,4558,22565,56,0
,2,4559,22567,56,0
,2,4560,22569,56,0
,2,4561,22571,56,0
,2,4562,22573,56,0
,2,4563,22575,56,0
,2,4564,22577,56,0
,2,4565,22579,56,0
,2,4566,22581,56,0
,2,4567,22583,56,0
,2,4568,22585,56,0
,2,4569,22587,56,0
,2,4570,22589,56,0
,2,4571,22591,56,0
,2,4572,22593,56,0
,2,4573,22595,56,0
,2,4574,22597,56,0
,2,4575,22599,56,0
,2,4576,22601,56,0
,2,4577,22603,56,0
,2,4578,22605,56,0
,2,4579,22607,56,0
,2,4580,22609,56,0
,2,4581,22611,56,0
,2,4582,22613,56,0
,2,4583,22615,56,0
,2,4584,22617,56,0
,2,4585,22619,56,0
,2,4586,22621,56,0
,2,4587,22623,56,0
,2,4588,22625,56,0
,2,4589,22627,56,0
,2,4590,22629,56,0
,2,4591,22631,56,0
,2,4592,22633,56,0
,2,4593,22635,56,0
,2,4594,22637,56,0
,2,4595,22639,56,0
,2,4596,22641,56,0
,2,4597,22643,56,0
,2,4598,22645,56,0
,2,4599,22647,56,0
,2,4600,22649,56,0
,2,4601,22651,56,0
,2,4602,22653,56,0
,2,4603,22655,56,0
,2,4604,22657,56,0
,2,4605,22659,56,0
,2,4606,22661,56,0
,2,4607,22663,56,0
,2,4608,22665,56,0
,2,4609,22667,56,0
,2,4610,22669,56,0
,2,4611,22671,56,0
,2,4612,22673,56,0
,2,4613,22675,56,0
,2,4614,22677,56,0
,2,4615,22679,56,0
,2,4616,22681,56,0
,2,4617,22683,56,0
,2,4618,22685,56,0
,2,4619,22687,56,0
,2,4620,22689,56,0
,2,4621,22691,56,0
,2,4622,22693,56,0
,2,4623,22695,56,0
,2,4624,22697,56,0
,2,4625,22699,56,0
,2,4626,22701,56,0
,2,4627,22703,56,0
,2,4628,22705,56,0
,2,4629,22707,56,0
,2,4630,22709,56,0
,2,4631,22711,56,0
,2,4632,22713,56,0
,2,4633,22715,56,0
,2,4634,22717,56,0
,2,4635,22719,56,0
,2,4636,22721,56,0
,2,4637,22723,56,0
,2,4638,22725,56,0
,2,4639,22727,56,0
,2,4640,22729,56,0
,2,4641,22731,56,0
,2,4642,22733,56,0
,2,4643,22735,56,0
,2,4644,22737,56,0
,2,4645,22739,56,0
,2,4646,22741,56,0
,2,4647,22743,56,0
,2,4648,22745,56,0
,2,4649,22747,56,0
,2,4650,22749,56,0
,2,4651,22751,56,0
,2,4652,22753,56,0
,2,4653,22755,56,0
,2,4654,22757,56,0
,2,4655,22759,56,0
,2,4656,22761,56,0
,2,4657,22763,56,0
,2,4658,22765,56,0
,2,4659,22767,56,0
,2,4660,22769,56,0
,2,4661,22771,56,0
,2,4662,22773,56,0
,2,4663,22775,56,0
,2,4664,22777,56,0
,2,4665,22779,56,0
,2,4666,22781,56,0
,2,4667,22783,56,0
,2,4668,22785,56,0
,2,4669,22787,56,0
,2,4670,22789,56,0
,2,4671,22791,56,0
,2,4672,22793,56,0
,2,4673,22795,56,0
,2,4674,22797,56,0
,2,4675,22799,56,0
,2,4676,22801,56,0
,2,4677,22803,56,0
,2,4678,22805,56,0
,2,4679,22807,56,0
,2,4680,22809,56,0
,2,4681,22811,56,0
,2,4682,22813,56,0
,2,4683,22815,56,0
,2,4684,22817,56,0
,2,4685,22819,56,0
,2,4686,22821,56,0
,2,4687,22823,56,0
,2,4688,22825,56,0
,2,4689,22827,56,0
,2,4690,22829,56,0
,2,4691,22831,56,0
,2,4692,22833,56,0
,2,4693,22835,56,0
,2,4694,22837,56,0
,2,4695,22839,56,0
,2,4696,22841,56,0
,2,4697,22843,56,0
,2,4698,22845,56,0
,2,4699,22847,56,0
,2,4700,22849,56,0
,2,4701,22851,56,0
,2,4702,22853,56,0
,2,4703,22855,56,0
,2,4704,22857,56,0
,2,4705,22859,56,0
,2,4706,22861,56,0
,2,4707,22863,56,0
,2,4708,22865,56,0
,2,4709,22867,56,0
,2,4710,22869,56,0
,2,4711,22871,56,0
,2,4712,22873,56,0
,2,4713,22875,56,0
,2,4714,22877,56,0
,2,4715,22879,56,0
,2,4716,22881,56,0
,2,4717,22883,56,0
,2,4718,22885,56,0
,2,4719,22887,56,0
,2,4720,22889,56,0
,2,4721,22891,56,0
,2,4722,22893,56,0
,2,4723,22895,56,0
,2,4724,22897,56,0
,2,4725,22899,56,0
,2,4726,22901,56,0
,2,4727,22903,56,0
,2,4728,22905,56,0
,2,4729,22907,56,0
,2,4730,22909,56,0
,2,4731,22911,56,0
,2,4732,22913,56,0
,2,4733,22915,56,0
,2,4734,22917,56,0
,2,4735,22919,56,0
,2,4736,22921,56,0
,2,4737,22923,56,0
,2,4738,22925,56,0
,2,4739,22927,56,0
,2,4740,22929,56,0
,2,4741,22931,56,0
,2,4742,22933,56,0
,2,4743,22935,56,0
,2,4744,22937,56,0
,2,4745,22939,56,0
,2,4746,22941,56,0
,2,4747,22943,56,0
,2,4748,22945,56,0
,2,4749,22947,56,0
,2,4750,22949,56,0
,2,4751,22951,56,0
,2,4752,22953,56,0
,2,4753,22955,56,0
,2,4754,22957,56,0
,2,4755,22959,56,0
,2,4756,22961,56,0
,2,4757,22963,56,0
,2,4758,22965,56,0
,2,4759,22967,56,0
,2,4760,22969,56,0
,2,4761,22971,56,0
,2,4762,22973,56,0
,2,4763,22975,56,0
,2,4764,22977,56,0
,2,4765,22979,56,0
,2,4766,22981,56,0
,2,4767,22983,56,0
,2,4768,22985,56,0
,2,4769,22987,56,0
,2,4770,22989,56,0
,2,4771,22991,56,0
,2,4772,22993,56,0
,2,4773,22995,56,0
,2,4774,22997,56,0
,2,4775,22999,56,0
,2,4776,23001,56,0
,2,4777,23003,56,0
,2,4778,23005,56,0
,2,4779,23007,56,0
,2,4780,23009,56,0
,2,4781,23011,56,0
,2,4782,23013,56,0
,2,4783,23015,56,0
,2,4784,23017,56,0
,2,4785,23019,56,0
,2,4786,23021,56,0
,2,4787,23023,56,0
,2,4788,23025,56,0
,2,4789,23027,56,0
,2,4790,23029,56,0
,2,4791,23031,56,0
,2,4792,23033,56,0
,2,4793,23035,56,0
,2,4794,23037,56,0
,2,4795,23039,56,0
,2,4796,23041,56,0
,2,4797,23043,56,0
,2,4798,23045,56,0
,2,4799,23047,56,0
,2,4800,23049,56,0
,2,4801,23051,56,0
,2,4802,23053,56,0
,2,4803,23055,56,0
,2,4804,23057,56,0
,2,4805,23059,56,0
,2,4806,23061,56,0
,2,4807,23063,56,0
,2,4808,23065,56,0
,2,4809,23067,56,0
,2,4810,23069,56,0
,2,4811,23071,56,0
,2,4812,23073,56,0
,2,4813,23075,56,0
,2,4814,23077,56,0
,2,4815,23079,56,0
,2,4816,23081,56,0
,2,4817,23083,56,0
,2,4818,23085,56,0
,2,4819,23087,56,0
,2,4820,23089,56,0
,2,4821,23091,56,0
,2,4822,23093,56,0
,2,4823,23095,56,0
,2,4824,23097,56,0
,2,4825,23099,56,0
,2,4826,23101,56,0
,2,4827,23103,56,0
,2,4828,23105,56,0
,2,4829,23107,56,0
,2,4830,23109,56,0
,2,4831,23111,56,0
,2,4832,23113,56,0
,2,4833,23115,56,0
,2,4834,23117,56,0
,2,4835,23119,56,0
,2,4836,23121,56,0
,2,4837,23123,56,0
,2,4838,23125,56,0
,2,4839,23127,56,0
,2,4840,23129,56,0
,2,4841,23131,56,0
,2,4842,23133,56,0
,2,4843,23135,56,0
,2,4844,23137,56,0
,2,4845,23139,56,0
,2,4846,23141,56,0
,2,4847,23143,56,0
,2,4848,23145,56,0
,2,4849,23147,56,0
,2,4850,23149,56,0
,2,4851,23151,56,0
,2,4852,23153,56,0
,2,4853,23155,56,0
,2,4854,23157,56,0
,2,4855,23159,56,0
,2,4856,23161,56,0
,2,4857,23163,56,0
,2,4858,23165,56,0
,2,4859,23167,56,0
,2,4860,23169,56,0
,2,4861,23171,56,0
,2,4862,23173,56,0
,2,4863,23175,56,0
,2,4864,23177,56,0
,2,4865,23179,56,0
,2,4866,23181,56,0
,2,4867,23183,56,0
,2,4868,23185,56,0
,2,4869,23187,56,0
,2,4870,23189,56,0
,2,4871,23191,56,0
,2,4872,23193,56,0
,2,4873,23195,56,0
,2,4874,23197,56,0
,2,4875,23199,56,0
,2,4876,23201,56,0
,2,4877,23203,56,0
,2,4878,23205,56,0
,2,4879,23207,56,0
,2,4880,23209,56,0
,2,4881,23211,56,0
,2,4882,23213,56,0
,2,4883,23215,56,0
,2,4884,23217,56,0
,2,4885,23219,56,0
,2,4886,23221,56,0
,2,4887,23223,56,0
,2,4888,23225,56,0
,2,4889,23227,56,0
,2,4890,23229,56,0
,2,4891,23231,56,0
,2,4892,23233,56,0
,2,4893,23235,56,0
,2,4894,23237,56,0
,2,4895,23239,56,0
,2,4896,23241,56,0
,2,4897,23243,56,0
,2,4898,23245,56,0
,2,4899,23247,56,0
,2,4900,23249,56,0
,2,4901,23251,56,0
,2,4902,23253,56,0
,2,4903,23255,56,0
,2,4904,23257,56,0
,2,4905,23259,56,0
,2,4906,23261,56,0
,2,4907,23263,56,0
,2,4908,23265,56,0
,2,4909,23267,56,0
,2,4910,23269,56,0
,2,4911,23271,56,0
,2,4912,23273,56,0
,2,4913,23275,56,0
,2,4914,23277,56,0
,2,4915,23279,56,0
,2,4916,23281,56,0
,2,4917,23283,56,0
,2,4918,23285,56,0
,2,4919,23287,56,0
,2,4920,23289,56,0
,2,4921,23291,56,0
,2,4922,23293,56,0
,2,4923,23295,56,0
,2,4924,23297,56,0
,2,4925,23299,56,0
,2,4926,23301,56,0
,2,4927,23303,56,0
,2,4928,23305,56,0
,2,4929,23307,56,0
,2,4930,23309,56,0
,2,4931,23311,56,0
,2,4932,23313,56,0
,2,4933,23315,56,0
,2,4934,23317,56,0
,2,4935,23319,56,0
,2,4936,23321,56,0
,2,4937,23323,56,0
,2,4938,23325,56,0
,2,4939,23327,56,0
,2,4940,23329,56,0
,2,4941,23331,56,0
,2,4942,23333,56,0
,2,4943,23335,56,0
,2,4944,23337,56,0
,2,4945,23339,56,0
,2,4946,23341,56,0
,2,4947,23343,56,0
,2,4948,23345,56,0
,2,4949,23347,56,0
,2,4950,23349,56,0
,2,4951,23351,56,0
,2,4952,23353,56,0
,2,4953,23355,56,0
,2,4954,23357,56,0
,2,4955,23359,56,0
,2,4956,23361,56,0
,2,4957,23363,56,0
,2,4958,23365,56,0
,2,4959,23367,56,0
,2,4960,23369,56,0
,2,4961,23371,56,0
,2,4962,23373,56,0
,2,4963,23375,56,0
,2,4964,23377,56,0
,2,4965,23379,56,0
,2,4966,23381,56,0
,2,4967,23383,56,0
,2,4968,23385,56,0
,2,4969,23387,56,0
,2,4970,23389,56,0
,2,4971,23391,56,0
,2,4972,23393,56,0
,2,4973,23395,56,0
,2,4974,23397,56,0
,2,4975,23399,56,0
,2,4976,23401,56,0
,2,4977,23403,56,0
,2,4978,23405,56,0
,2,4979,23407,56,0
,2,4980,23409,56,0
,2,4981,23411,56,0
,2,4982,23413,56,0
,2,4983,23415,56,0
,2,4984,23417,56,0
,2,4985,23419,56,0
,2,4986,23421,56,0
,2,4987,23423,56,0
,2,4988,23425,56,0
,2,4989,23427,56,0
,2,4990,23429,56,0
,2,4991,23431,56,0
,2,4992,23433,56,0
,2,4993,23435,56,0
,2,4994,23437,56,0
,2,4995,23439,56,0
,2,4996,23441,56,0
,2,4997,23443,56,0
,2,4998,23445,56,0
,2,4999,23447,56,0
,2,5000,23449,56,0
,2,5001,23451,56,0
,2,5002,23453,56,0
,2,5003,23455,56,0
,2,5004,23457,56,0
,2,5005,23459,56,0
,2,5006,23461,56,0
,2,5007,23463,56,0
,2,5008,23465,56,0
,2,5009,23467,56,0
,2,5010,23469,56,0
,2,5011,23471,56,0
,2,5012,23473,56,0
,2,5013,23475,56,0
,2,5014,23477,56,0
,2,5015,23479,56,0
,2,5016,23481,56,0
,2,5017,23483,56,0
,2,5018,23485,56,0
,2,5019,23487,56,0
,2,5020,23489,56,0
,2,5021,23491,56,0
,2,5022,23493,56,0
,2,5023,23495,56,0
,2,5024,23497,56,0
,2,5025,23499,56,0
,2,5026,23501,56,0
,2,5027,23503,56,0
,2,5028,23505,56,0
,2,5029,23507,56,0
,2,5030,23509,56,0
,2,5031,23511,56,0
,2,5032,23513,56,0
,2,5033,23515,56,0
,2,5034,23517,56,0
,2,5035,23519,56,0
,2,5036,23521,56,0
,2,5037,23523,56,0
,2,5038,23525,56,0
,2,5039,23527,56,0
,2,5040,23529,56,0
,2,5041,23531,56,0
,2,5042,23533,56,0
,2,5043,23535,56,0
,2,5044,23537,56,0
,2,5045,23539,56,0
,2,5046,23541,56,0
,2,5047,23543,56,0
,2,5048,23545,56,0
,2,5049,23547,56,0
,2,5050,23549,56,0
,2,5051,23551,56,0
,2,5052,23553,56,0
,2,5053,23555,56,0
,2,5054,23557,56,0
,2,5055,23559,56,0
,2,5056,23561,56,0
,2,5057,23563,56,0
,2,5058,23565,56,0
,2,5059,23567,56,0
,2,5060,23569,56,0
,2,5061,23571,56,0
,2,5062,23573,56,0
,2,5063,23575,56,0
,2,5064,23577,56,0
,2,5065,23579,56,0
,2,5066,23581,56,0
,2,5067,23583,56,0
,2,5068,23585,56,0
,2,5069,23587,56,0
,2,5070,23589,56,0
,2,5071,23591,56,0
,2,5072,23593,56,0
,2,5073,23595,56,0
,2,5074,23597,56,0
,2,5075,23599,56,0
,2,5076,23601,56,0
,2,5077,23603,56,0
,2,5078,23605,56,0
,2,5079,23607,56,0
,2,5080,23609,56,0
,2,5081,23611,56,0
,2,5082,23613,56,0
,2,5083,23615,56,0
,2,5084,23617,56,0
,2,5085,23619,56,0
,2,5086,23621,56,0
,2,5087,23623,56,0
,2,5088,23625,56,0
,2,5089,23627,56,0
,2,5090,23629,56,0
,2,5091,23631,56,0
,2,5092,23633,56,0
,2,5093,23635,56,0
,2,5094,23637,56,0
,2,5095,23639,56,0
,2,5096,23641,56,0
,2,5097,23643,56,0
,2,5098,23645,56,0
,2,5099,23647,56,0
,2,5100,23649,56,0
,2,5101,23651,56,0
,2,5102,23653,56,0
,2,5103,23655,56,0
,2,5104,23657,56,0
,2,5105,23659,56,0
,2,5106,23661,56,0
,2,5107,23663,56,0
,2,5108,23665,56,0
,2,5109,23667,56,0
,2,5110,23669,56,0
,2,5111,23671,56,0
,2,5112,23673,56,0
,2,5113,23675,56,0
,2,5114,23677,56,0
,2,5115,23679,56,0
,2,5116,23681,56,0
,2,5117,23683,56,0
,2,5118,23685,56,0
,2,5119,23687,56,0
,2,5120,23689,56,0
,2,5121,23691,56,0
,2,5122,23693,56,0
,2,5123,23695,56,0
,2,5124,23697,56,0
,2,5125,23699,56,0
,2,5126,23701,56,0
,2,5127,23703,56,0
,2,5128,23705,56,0
,2,5129,23707,56,0
,2,5130,23709,56,0
,2,5131,23711,56,0
,2,5132,23713,56,0
,2,5133,23715,56,0
,2,5134,23717,56,0
,2,5135,23719,56,0
,2,5136,23721,56,0
,2,5137,23723,56,0
,2,5138,23725,56,0
,2,5139,23727,56,0
,2,5140,23729,56,0
,2,5141,23731,56,0
,2,5142,23733,56,0
,2,5143,23735,56,0
,2,5144,23737,56,0
,2,5145,23739,56,0
,2,5146,23741,56,0
,2,5147,23743,56,0
,2,5148,23745,56,0
,2,5149,23747,56,0
,2,5150,23749,56,0
,2,5151,23751,56,0
,2,5152,23753,56,0
,2,5153,23755,56,0
,2,5154,23757,56,0
,2,5155,23759,56,0
,2,5156,23761,56,0
,2,5157,23763,56,0
,2,5158,23765,56,0
,2,5159,23767,56,0
,2,5160,23769,56,0
,2,5161,23771,56,0
,2,5162,23773,56,0
,2,5163,23775,56,0
,2,5164,23777,56,0
,2,5165,23779,56,0
,2,5166,23781,56,0
,2,5167,23783,56,0
,2,5168,23785,56,0
,2,5169,23787,56,0
,2,5170,23789,56,0
,2,5171,23791,56,0
,2,5172,23793,56,0
,2,5173,23795,56,0
,2,5174,23797,56,0
,2,5175,23799,56,0
,2,5176,23801,56,0
,2,5177,23803,56,0
,2,5178,23805,56,0
,2,5179,23807,56,0
,2,5180,23809,56,0
,2,5181,23811,56,0
,2,5182,23813,56,0
,2,5183,23815,56,0
,2,5184,23817,56,0
,2,5185,23819,56,0
,2,5186,23821,56,0
,2,5187,23823,56,0
,2,5188,23825,56,0
,2,5189,23827,56,0
,2,5190,23829,56,0
,2,5191,23831,56,0
,2,5192,23833,56,0
,2,5193,23835,56,0
,2,5194,23837,56,0
,2,5195,23839,56,0
,2,5196,23841,56,0
,2,5197,23843,56,0
,2,5198,23845,56,0
,2,5199,23847,56,0
,2,5200,23849,56,0
,2,5201,23851,56,0
,2,5202,23853,56,0
,2,5203,23855,56,0
,2,5204,23857,56,0
,2,5205,23859,56,0
,2,5206,23861,56,0
,2,5207,23863,56,0
,2,5208,23865,56,0
,2,5209,23867,56,0
,2,5210,23869,56,0
,2,5211,23871,56,0
,2,5212,23873,56,0
,2,5213,23875,56,0
,2,5214,23877,56,0
,2,5215,23879,56,0
,2,5216,23881,56,0
,2,5217,23883,56,0
,2,5218,23885,56,0
,2,5219,23887,56,0
,2,5220,23889,56,0
,2,5221,23891,56,0
,2,5222,23893,56,0
,2,5223,23895,56,0
,2,5224,23897,56,0
,2,5225,23899,56,0
,2,5226,23901,56,0
,2,5227,23903,56,0
,2,5228,23905,56,0
,2,5229,23907,56,0
,2,5230,23909,56,0
,2,5231,23911,56,0
,2,5232,23913,56,0
,2,5233,23915,56,0
,2,5234,23917,56,0
,2,5235,23919,56,0
,2,5236,23921,56,0
,2,5237,23923,56,0
,2,5238,23925,56,0
,2,5239,23927,56,0
,2,5240,23929,56,0
,2,5241,23931,56,0
,2,5242,23933,56,0
,2,5243,23935,56,0
,2,5244,23937,56,0
,2,5245,23939,56,0
,2,5246,23941,56,0
,2,5247,23943,56,0
,2,5248,23945,56,0
,2,5249,23947,56,0
,2,5250,23949,56,0
,2,5251,23951,56,0
,2,5252,23953,56,0
,2,5253,23955,56,0
,2,5254,23957,56,0
,2,5255,23959,56,0
,2,5256,23961,56,0
,2,5257,23963,56,0
,2,5258,23965,56,0
,2,5259,23967,56,0
,2,5260,23969,56,0
,2,5261,23971,56,0
,2,5262,23973,56,0
,2,5263,23975,56,0
,2,5264,23977,56,0
,2,5265,23979,56,0
,2,5266,23981,56,0
,2,5267,23983,56,0
,2,5268,23985,56,0
,2,5269,23987,56,0
,2,5270,23989,56,0
,2,5271,23991,56,0
,2,5272,23993,56,0
,2,5273,23995,56,0
,2,5274,23997,56,0
,2,5275,23999,56,0
,2,5276,24001,56,0
,2,5277,24003,56,0
,2,5278,24005,56,0
,2,5279,24007,56,0
,2,5280,24009,56,0
,2,5281,24011,56,0
,2,5282,24013,56,0
,2,5283,24015,56,0
,2,5284,24017,56,0
,2,5285,24019,56,0
,2,5286,24021,56,0
,2,5287,24023,56,0
,2,5288,24025,56,0
,2,5289,24027,56,0
,2,5290,24029,56,0
,2,5291,24031,56,0
,2,5292,24033,56,0
,2,5293,24035,56,0
,2,5294,24037,56,0
,2,5295,24039,56,0
,2,5296,24041,56,0
,2,5297,24043,56,0
,2,5298,24045,56,0
,2,5299,24047,56,0
,2,5300,24049,56,0
,2,5301,24051,56,0
,2,5302,24053,56,0
,2,5303,24055,56,0
,2,5304,24057,56,0
,2,5305,24059,56,0
,2,5306,24061,56,0
,2,5307,24063,56,0
,2,5308,24065,56,0
,2,5309,24067,56,0
,2,5310,24069,56,0
,2,5311,24071,56,0
,2,5312,24073,56,0
,2,5313,24075,56,0
,2,5314,24077,56,0
,2,5315,24079,56,0
,2,5316,24081,56,0
,2,5317,24083,56,0
,2,5318,24085,56,0
,2,5319,24087,56,0
,2,5320,24089,56,0
,2,5321,24091,56,0
,2,5322,24093,56,0
,2,5323,24095,56,0
,2,5324,24097,56,0
,2,5325,24099,56,0
,2,5326,24101,56,0
,2,5327,24103,56,0
,2,5328,24105,56,0
,2,5329,24107,56,0
,2,5330,24109,56,0
,2,5331,24111,56,0
,2,5332,24113,56,0
,2,5333,24115,56,0
,2,5334,24117,56,0
,2,5335,24119,56,0
,2,5336,24121,56,0
,2,5337,24123,56,0
,2,5338,24125,56,0
,2,5339,24127,56,0
,2,5340,24129,56,0
,2,5341,24131,56,0
,2,5342,24133,56,0
,2,5343,24135,56,0
,2,5344,24137,56,0
,2,5345,24139,56,0
,2,5346,24141,56,0
,2,5347,24143,56,0
,2,5348,24145,56,0
,2,5349,24147,56,0
,2,5350,24149,56,0
,2,5351,24151,56,0
,2,5352,24153,56,0
,2,5353,24155,56,0
,2,5354,24157,56,0
,2,5355,24159,56,0
,2,5356,24161,56,0
,2,5357,24163,56,0
,2,5358,24165,56,0
,2,5359,24167,56,0
,2,5360,24169,56,0
,2,5361,24171,56,0
,2,5362,24173,56,0
,2,5363,24175,56,0
,2,5364,24177,56,0
,2,5365,24179,56,0
,2,5366,24181,56,0
,2,5367,24183,56,0
,2,5368,24185,56,0
,2,5369,24187,56,0
,2,5370,24189,56,0
,2,5371,24191,56,0
,2,5372,24193,56,0
,2,5373,24195,56,0
,2,5374,24197,56,0
,2,5375,24199,56,0
,2,5376,24201,56,0
,2,5377,24203,56,0
,2,5378,24205,56,0
,2,5379,24207,56,0
,2,5380,24209,56,0
,2,5381,24211,56,0
,2,5382,24213,56,0
,2,5383,24215,56,0
,2,5384,24217,56,0
,2,5385,24219,56,0
,2,5386,24221,56,0
,2,5387,24223,56,0
,2,5388,24225,56,0
,2,5389,24227,56,0
,2,5390,24229,56,0
,2,5391,24231,56,0
,2,5392,24233,56,0
,2,5393,24235,56,0
,2,5394,24237,56,0
,2,5395,24239,56,0
,2,5396,24241,56,0
,2,5397,24243,56,0
,2,5398,24245,56,0
,2,5399,24247,56,0
,2,5400,24249,56,0
,2,5401,24251,56,0
,2,5402,24253,56,0
,2,5403,24255,56,0
,2,5404,24257,56,0
,2,5405,24259,56,0
,2,5406,24261,56,0
,2,5407,24263,56,0
,2,5408,24265,56,0
,2,5409,24267,56,0
,2,5410,24269,56,0
,2,5411,24271,56,0
,2,5412,24273,56,0
,2,5413,24275,56,0
,2,5414,24277,56,0
,2,5415,24279,56,0
,2,5416,24281,56,0
,2,5417,24283,56,0
,2,5418,24285,56,0
,2,5419,24287,56,0
,2,5420,24289,56,0
,2,5421,24291,56,0
,2,5422,24293,56,0
,2,5423,24295,56,0
,2,5424,24297,56,0
,2,5425,24299,56,0
,2,5426,24301,56,0
,2,5427,24303,56,0
,2,5428,24305,56,0
,2,5429,24307,56,0
,2,5430,24309,56,0
,2,5431,24311,56,0
,2,5432,24313,56,0
,2,5433,24315,56,0
,2,5434,24317,56,0
,2,5435,24319,56,0
,2,5436,24321,56,0
,2,5437,24323,56,0
,2,5438,24325,56,0
,2,5439,24327,56,0
,2,5440,24329,56,0
,2,5441,24331,56,0
,2,5442,24333,56,0
,2,5443,24335,56,0
,2,5444,24337,56,0
,2,5445,24339,56,0
,2,5446,24341,56,0
,2,5447,24343,56,0
,2,5448,24345,56,0
,2,5449,24347,56,0
,2,5450,24349,56,0
,2,5451,24351,56,0
,2,5452,24353,56,0
,2,5453,24355,56,0
,2,5454,24357,56,0
,2,5455,24359,56,0
,2,5456,24361,56,0
,2,5457,24363,56,0
,2,5458,24365,56,0
,2,5459,24367,56,0
,2,5460,24369,56,0
,2,5461,24371,56,0
,2,5462,24373,56,0
,2,5463,24375,56,0
,2,5464,24377,56,0
,2,5465,24379,56,0
,2,5466,24381,56,0
,2,5467,24383,56,0
,2,5468,24385,56,0
,2,5469,24387,56,0
,2,5470,24389,56,0
,2,5471,24391,56,0
,2,5472,24393,56,0
,2,5473,24395,56,0
,2,5474,24397,56,0
,2,5475,24399,56,0
,2,5476,24401,56,0
,2,5477,24403,56,0
,2,5478,24405,56,0
,2,5479,24407,56,0
,2,5480,24409,56,0
,2,5481,24411,56,0
,2,5482,24413,56,0
,2,5483,24415,56,0
,2,5484,24417,56,0
,2,5485,24419,56,0
,2,5486,24421,56,0
,2,5487,24423,56,0
,2,5488,24425,56,0
,2,5489,24427,56,0
,2,5490,24429,56,0
,2,5491,24431,56,0
,2,5492,24433,56,0
,2,5493,24435,56,0
,2,5494,24437,56,0
,2,5495,24439,56,0
,2,5496,24441,56,0
,2,5497,24443,56,0
,2,5498,24445,56,0
,2,5499,24447,56,0
,2,5500,24449,56,0
,2,5501,24451,56,0
,2,5502,24453,56,0
,2,5503,24455,56,0
,2,5504,24457,56,0
,2,5505,24459,56,0
,2,5506,24461,56,0
,2,5507,24463,56,0
,2,5508,24465,56,0
,2,5509,24467,56,0
,2,5510,24469,56,0
,2,5511,24471,56,0
,2,5512,24473,56,0
,2,5513,24475,56,0
,2,5514,24477,56,0
,2,5515,24479,56,0
,2,5516,24481,56,0
,2,5517,24483,56,0
,2,5518,24485,56,0
,2,5519,24487,56,0
,2,5520,24489,56,0
,2,5521,24491,56,0
,2,5522,24493,56,0
,2,5523,24495,56,0
,2,5524,24497,56,0
,2,5525,24499,56,0
,2,5526,24501,56,0
,2,5527,24503,56,0
,2,5528,24505,56,0
,2,5529,24507,56,0
,2,5530,24509,56,0
,2,5531,24511,56,0
,2,5532,24513,56,0
,2,5533,24515,56,0
,2,5534,24517,56,0
,2,5535,24519,56,0
,2,5536,24521,56,0
,2,5537,24523,56,0
,2,5538,24525,56,0
,2,5539,24527,56,0
,2,5540,24529,56,0
,2,5541,24531,56,0
,2,5542,24533,56,0
,2,5543,24535,56,0
,2,5544,24537,56,0
,2,5545,24539,56,0
,2,5546,24541,56,0
,2,5547,24543,56,0
,2,5548,24545,56,0
,2,5549,24547,56,0
,2,5550,24549,56,0
,2,5551,24551,56,0
,2,5552,24553,56,0
,2,5553,24555,56,0
,2,5554,24557,56,0
,2,5555,24559,56,0
,2,5556,24561,56,0
,2,5557,24563,56,0
,2,5558,24565,56,0
,2,5559,24567,56,0
,2,5560,24569,56,0
,2,5561,24571,56,0
,2,5562,24573,56,0
,2,5563,24575,56,0
,2,5564,24577,56,0
,2,5565,24579,56,0
,2,5566,24581,56,0
,2,5567,24583,56,0
,2,5568,24585,56,0
,2,5569,24587,56,0
,2,5570,24589,56,0
,2,5571,24591,56,0
,2,5572,24593,56,0
,2,5573,24595,56,0
,2,5574,24597,56,0
,2,5575,24599,56,0
,2,5576,24601,56,0
,2,5577,24603,56,0
,2,5578,24605,56,0
,2,5579,24607,56,0
,2,5580,24609,56,0
,2,5581,24611,56,0
,2,5582,24613,56,0
,2,5583,24615,56,0
,2,5584,24617,56,0
,2,5585,24619,56,0
,2,5586,24621,56,0
,2,5587,24623,56,0
,2,5588,24625,56,0
,2,5589,24627,56,0
,2,5590,24629,56,0
,2,5591,24631,56,0
,2,5592,24633,56,0
,2,5593,24635,56,0
,2,5594,24637,56,0
,2,5595,24639,56,0
,2,5596,24641,56,0
,2,5597,24643,56,0
,2,5598,24645,56,0
,2,5599,24647,56,0
,2,5600,24649,56,0
,2,5601,24651,56,0
,2,5602,24653,56,0
,2,5603,24655,56,0
,2,5604,24657,56,0
,2,5605,24659,56,0
,2,5606,24661,56,0
,2,5607,24663,56,0
,2,5608,24665,56,0
,2,5609,24667,56,0
,2,5610,24669,56,0
,2,5611,24671,56,0
,2,5612,24673,56,0
,2,5613,24675,56,0
,2,5614,24677,56,0
,2,5615,24679,56,0
,2,5616,24681,56,0
,2,5617,24683,56,0
,2,5618,24685,56,0
,2,5619,24687,56,0
,2,5620,24689,56,0
,2,5621,24691,56,0
,2,5622,24693,56,0
,2,5623,24695,56,0
,2,5624,24697,56,0
,2,5625,24699,56,0
,2,5626,24701,56,0
,2,5627,24703,56,0
,2,5628,24705,56,0
,2,5629,24707,56,0
,2,5630,24709,56,0
,2,5631,24711,56,0
,2,5632,24713,56,0
,2,5633,24715,56,0
,2,5634,24717,56,0
,2,5635,24719,56,0
,2,5636,24721,56,0
,2,5637,24723,56,0
,2,5638,24725,56,0
,2,5639,24727,56,0
,2,5640,24729,56,0
,2,5641,24731,56,0
,2,5642,24733,56,0
,2,5643,24735,56,0
,2,5644,24737,56,0
,2,5645,24739,56,0
,2,5646,24741,56,0
,2,5647,24743,56,0
,2,5648,24745,56,0
,2,5649,24747,56,0
,2,5650,24749,56,0
,2,5651,24751,56,0
,2,5652,24753,56,0
,2,5653,24755,56,0
,2,5654,24757,56,0
,2,5655,24759,56,0
,2,5656,24761,56,0
,2,5657,24763,56,0
,2,5658,24765,56,0
,2,5659,24767,56,0
,2,5660,24769,56,0
,2,5661,24771,56,0
,2,5662,24773,56,0
,2,5663,24775,56,0
,2,5664,24777,56,0
,2,5665,24779,56,0
,2,5666,24781,56,0
,2,5667,24783,56,0
,2,5668,24785,56,0
,2,5669,24787,56,0
,2,5670,24789,56,0
,2,5671,24791,56,0
,2,5672,24793,56,0
,2,5673,24795,56,0
,2,5674,24797,56,0
,2,5675,24799,56,0
,2,5676,24801,56,0
,2,5677,24803,56,0
,2,5678,24805,56,0
,2,5679,24807,56,0
,2,5680,24809,56,0
,2,5681,24811,56,0
,2,5682,24813,56,0
,2,5683,24815,56,0
,2,5684,24817,56,0
,2,5685,24819,56,0
,2,5686,24821,56,0
,2,5687,24823,56,0
,2,5688,24825,56,0
,2,5689,24827,56,0
,2,5690,24829,56,0
,2,5691,24831,56,0
,2,5692,24833,56,0
,2,5693,24835,56,0
,2,5694,24837,56,0
,2,5695,24839,56,0
,2,5696,24841,56,0
,2,5697,24843,56,0
,2,5698,24845,56,0
,2,5699,24847,56,0
,2,5700,24849,56,0
,2,5701,24851,56,0
,2,5702,24853,56,0
,2,5703,24855,56,0
,2,5704,24857,56,0
,2,5705,24859,56,0
,2,5706,24861,56,0
,2,5707,24863,56,0
,2,5708,24865,56,0
,2,5709,24867,56,0
,2,5710,24869,56,0
,2,5711,24871,56,0
,2,5712,24873,56,0
,2,5713,24875,56,0
,2,5714,24877,56,0
,2,5715,24879,56,0
,2,5716,24881,56,0
,2,5717,24883,56,0
,2,5718,24885,56,0
,2,5719,24887,56,0
,2,5720,24889,56,0
,2,5721,24891,56,0
,2,5722,24893,56,0
,2,5723,24895,56,0
,2,5724,24897,56,0
,2,5725,24899,56,0
,2,5726,24901,56,0
,2,5727,24903,56,0
,2,5728,24905,56,0
,2,5729,24907,56,0
,2,5730,24909,56,0
,2,5731,24911,56,0
,2,5732,24913,56,0
,2,5733,24915,56,0
,2,5734,24917,56,0
,2,5735,24919,56,0
,2,5736,24921,56,0
,2,5737,24923,56,0
,2,5738,24925,56,0
,2,5739,24927,56,0
,2,5740,24929,56,0
,2,5741,24931,56,0
,2,5742,24933,56,0
,2,5743,24935,56,0
,2,5744,24937,56,0
,2,5745,24939,56,0
,2,5746,24941,56,0
,2,5747,24943,56,0
,2,5748,24945,56,0
,2,5749,24947,56,0
,2,5750,24949,56,0
,2,5751,24951,56,0
,2,5752,24953,56,0
,2,5753,24955,56,0
,2,5754,24957,56,0
,2,5755,24959,56,0
,2,5756,24961,56,0
,2,5757,24963,56,0
,2,5758,24965,56,0
,2,5759,24967,56,0
,2,5760,24969,56,0
,2,5761,24971,56,0
,2,5762,24973,56,0
,2,5763,24975,56,0
,2,5764,24977,56,0
,2,5765,24979,56,0
,2,5766,24981,56,0
,2,5767,24983,56,0
,2,5768,24985,56,0
,2,5769,24987,56,0
,2,5770,24989,56,0
,2,5771,24991,56,0
,2,5772,24993,56,0
,2,5773,24995,56,0
,2,5774,24997,56,0
,2,5775,24999,56,0
,2,5776,25001,56,0
,2,5777,25003,56,0
,2,5778,25005,56,0
,2,5779,25007,56,0
,2,5780,25009,56,0
,2,5781,25011,56,0
,2,5782,25013,56,0
,2,5783,25015,56,0
,2,5784,25017,56,0
,2,5785,25019,56,0
,2,5786,25021,56,0
,2,5787,25023,56,0
,2,5788,25025,56,0
,2,5789,25027,56,0
,2,5790,25029,56,0
,2,5791,25031,56,0
,2,5792,25033,56,0
,2,5793,25035,56,0
,2,5794,25037,56,0
,2,5795,25039,56,0
,2,5796,25041,56,0
,2,5797,25043,56,0
,2,5798,25045,56,0
,2,5799,25047,56,0
,2,5800,25049,56,0
,2,5801,25051,56,0
,2,5802,25053,56,0
,2,5803,25055,56,0
,2,5804,25057,56,0
,2,5805,25059,56,0
,2,5806,25061,56,0
,2,5807,25063,56,0
,2,5808,25065,56,0
,2,5809,25067,56,0
,2,5810,25069,56,0
,2,5811,25071,56,0
,2,5812,25073,56,0
,2,5813,25075,56,0
,2,5814,25077,56,0
,2,5815,25079,56,0
,2,5816,25081,56,0
,2,5817,25083,56,0
,2,5818,25085,56,0
,2,5819,25087,56,0
,2,5820,25089,56,0
,2,5821,25091,56,0
,2,5822,25093,56,0
,2,5823,25095,56,0
,2,5824,25097,56,0
,2,5825,25099,56,0
,2,5826,25101,56,0
,2,5827,25103,56,0
,2,5828,25105,56,0
,2,5829,25107,56,0
,2,5830,25109,56,0
,2,5831,25111,56,0
,2,5832,25113,56,0
,2,5833,25115,56,0
,2,5834,25117,56,0
,2,5835,25119,56,0
,2,5836,25121,56,0
,2,5837,25123,56,0
,2,5838,25125,56,0
,2,5839,25127,56,0
,2,5840,25129,56,0
,2,5841,25131,56,0
,2,5842,25133,56,0
,2,5843,25135,56,0
,2,5844,25137,56,0
,2,5845,25139,56,0
,2,5846,25141,56,0
,2,5847,25143,56,0
,2,5848,25145,56,0
,2,5849,25147,56,0
,2,5850,25149,56,0
,2,5851,25151,56,0
,2,5852,25153,56,0
,2,5853,25155,56,0
,2,5854,25157,56,0
,2,5855,25159,56,0
,2,5856,25161,56,0
,2,5857,25163,56,0
,2,5858,25165,56,0
,2,5859,25167,56,0
,2,5860,25169,56,0
,2,5861,25171,56,0
,2,5862,25173,56,0
,2,5863,25175,56,0
,2,5864,25177,56,0
,2,5865,25179,56,0
,2,5866,25181,56,0
,2,5867,25183,56,0
,2,5868,25185,56,0
,2,5869,25187,56,0
,2,5870,25189,56,0
,2,5871,25191,56,0
,2,5872,25193,56,0
,2,5873,25195,56,0
,2,5874,25197,56,0
,2,5875,25199,56,0
,2,5876,25201,56,0
,2,5877,25203,56,0
,2,5878,25205,56,0
,2,5879,25207,56,0
,2,5880,25209,56,0
,2,5881,25211,56,0
,2,5882,25213,56,0
,2,5883,25215,56,0
,2,5884,25217,56,0
,2,5885,25219,56,0
,2,5886,25221,56,0
,2,5887,25223,56,0
,2,5888,25225,56,0
,2,5889,25227,56,0
,2,5890,25229,56,0
,2,5891,25231,56,0
,2,5892,25233,56,0
,2,5893,25235,56,0
,2,5894,25237,56,0
,2,5895,25239,56,0
,2,5896,25241,56,0
,2,5897,25243,56,0
,2,5898,25245,56,0
,2,5899,25247,56,0
,2,5900,25249,56,0
,2,5901,25251,56,0
,2,5902,25253,56,0
,2,5903,25255,56,0
,2,5904,25257,56,0
,2,5905,25259,56,0
,2,5906,25261,56,0
,2,5907,25263,56,0
,2,5908,25265,56,0
,2,5909,25267,56,0
,2,5910,25269,56,0
,2,5911,25271,56,0
,2,5912,25273,56,0
,2,5913,25275,56,0
,2,5914,25277,56,0
,2,5915,25279,56,0
,2,5916,25281,56,0
,2,5917,25283,56,0
,2,5918,25285,56,0
,2,5919,25287,56,0
,2,5920,25289,56,0
,2,5921,25291,56,0
,2,5922,25293,56,0
,2,5923,25295,56,0
,2,5924,25297,56,0
,2,5925,25299,56,0
,2,5926,25301,56,0
,2,5927,25303,56,0
,2,5928,25305,56,0
,2,5929,25307,56,0
,2,5930,25309,56,0
,2,5931,25311,56,0
,2,5932,25313,56,0
,2,5933,25315,56,0
,2,5934,25317,56,0
,2,5935,25319,56,0
,2,5936,25321,56,0
,2,5937,25323,56,0
,2,5938,25325,56,0
,2,5939,25327,56,0
,2,5940,25329,56,0
,2,5941,25331,56,0
,2,5942,25333,56,0
,2,5943,25335,56,0
,2,5944,25337,56,0
,2,5945,25339,56,0
,2,5946,25341,56,0
,2,5947,25343,56,0
,2,5948,25345,56,0
,2,5949,25347,56,0
,2,5950,25349,56,0
,2,5951,25351,56,0
,2,5952,25353,56,0
,2,5953,25355,56,0
,2,5954,25357,56,0
,2,5955,25359,56,0
,2,5956,25361,56,0
,2,5957,25363,56,0
,2,5958,25365,56,0
,2,5959,25367,56,0
,2,5960,25369,56,0
,2,5961,25371,56,0
,2,5962,25373,56,0
,2,5963,25375,56,0
,2,5964,25377,56,0
,2,5965,25379,56,0
,2,5966,25381,56,0
,2,5967,25383,56,0
,2,5968,25385,56,0
,2,5969,25387,56,0
,2,5970,25389,56,0
,2,5971,25391,56,0
,2,5972,25393,56,0
,2,5973,25395,56,0
,2,5974,25397,56,0
,2,5975,25399,56,0
,2,5976,25401,56,0
,2,5977,25403,56,0
,2,5978,25405,56,0
,2,5979,25407,56,0
,2,5980,25409,56,0
,2,5981,25411,56,0
,2,5982,25413,56,0
,2,5983,25415,56,0
,2,5984,25417,56,0
,2,5985,25419,56,0
,2,5986,25421,56,0
,2,5987,25423,56,0
,2,5988,25425,56,0
,2,5989,25427,56,0
,2,5990,25429,56,0
,2,5991,25431,56,0
,2,5992,25433,56,0
,2,5993,25435,56,0
,2,5994,25437,56,0
,2,5995,25439,56,0
,2,5996,25441,56,0
,2,5997,25443,56,0
,2,5998,25445,56,0
,2,5999,25447,56,0
,2,6000,25449,56,0
,2,6001,25451,56,0
,2,6002,25453,56,0
,2,6003,25455,56,0
,2,6004,25457,56,0
,2,6005,25459,56,0
,2,6006,25461,56,0
,2,6007,25463,56,0
,2,6008,25465,56,0
,2,6009,25467,56,0
,2,6010,25469,56,0
,2,6011,25471,56,0
,2,6012,25473,56,0
,2,6013,25475,56,0
,2,6014,25477,56,0
,2,6015,25479,56,0
,2,6016,25481,56,0
,2,6017,25483,56,0
,2,6018,25485,56,0
,2,6019,25487,56,0
,2,6020,25489,56,0
,2,6021,25491,56,0
,2,6022,25493,56,0
,2,6023,25495,56,0
,2,6024,25497,56,0
,2,6025,25499,56,0
,2,6026,25501,56,0
,2,6027,25503,56,0
,2,6028,25505,56,0
,2,6029,25507,56,0
,2,6030,25509,56,0
,2,6031,25511,56,0
,2,6032,25513,56,0
,2,6033,25515,56,0
,2,6034,25517,56,0
,2,6035,25519,56,0
,2,6036,25521,56,0
,2,6037,25523,56,0
,2,6038,25525,56,0
,2,6039,25527,56,0
,2,6040,25529,56,0
,2,6041,25531,56,0
,2,6042,25533,56,0
,2,6043,25535,56,0
,2,6044,25537,56,0
,2,6045,25539,56,0
,2,6046,25541,56,0
,2,6047,25543,56,0
,2,6048,25545,56,0
,2,6049,25547,56,0
,2,6050,25549,56,0
,2,6051,25551,56,0
,2,6052,25553,56,0
,2,6053,25555,56,0
,2,6054,25557,56,0
,2,6055,25559,56,0
,2,6056,25561,56,0
,2,6057,25563,56,0
,2,6058,25565,56,0
,2,6059,25567,56,0
,2,6060,25569,56,0
,2,6061,25571,56,0
,2,6062,25573,56,0
,2,6063,25575,56,0
,2,6064,25577,56,0
,2,6065,25579,56,0
,2,6066,25581,56,0
,2,6067,25583,56,0
,2,6068,25585,56,0
,2,6069,25587,56,0
,2,6070,25589,56,0
,2,6071,25591,56,0
,2,6072,25593,56,0
,2,6073,25595,56,0
,2,6074,25597,56,0
,2,6075,25599,56,0
,2,6076,25601,56,0
,2,6077,25603,56,0
,2,6078,25605,56,0
,2,6079,25607,56,0
,2,6080,25609,56,0
,2,6081,25611,56,0
,2,6082,25613,56,0
,2,6083,25615,56,0
,2,6084,25617,56,0
,2,6085,25619,56,0
,2,6086,25621,56,0
,2,6087,25623,56,0
,2,6088,25625,56,0
,2,6089,25627,56,0
,2,6090,25629,56,0
,2,6091,25631,56,0
,2,6092,25633,56,0
,2,6093,25635,56,0
,2,6094,25637,56,0
,2,6095,25639,56,0
,2,6096,25641,56,0
,2,6097,25643,56,0
,2,6098,25645,56,0
,2,6099,25647,56,0
,2,6100,25649,56,0
,2,6101,25651,56,0
,2,6102,25653,56,0
,2,6103,25655,56,0
,2,6104,25657,56,0
,2,6105,25659,56,0
,2,6106,25661,56,0
,2,6107,25663,56,0
,2,6108,25665,56,0
,2,6109,25667,56,0
,2,6110,25669,56,0
,2,6111,25671,56,0
,2,6112,25673,56,0
,2,6113,25675,56,0
,2,6114,25677,56,0
,2,6115,25679,56,0
,2,6116,25681,56,0
,2,6117,25683,56,0
,2,6118,25685,56,0
,2,6119,25687,56,0
,2,6120,25689,56,0
,2,6121,25691,56,0
,2,6122,25693,56,0
,2,6123,25695,56,0
,2,6124,25697,56,0
,2,6125,25699,56,0
,2,6126,25701,56,0
,2,6127,25703,56,0
,2,6128,25705,56,0
,2,6129,25707,56,0
,2,6130,25709,56,0
,2,6131,25711,56,0
,2,6132,25713,56,0
,2,6133,25715,56,0
,2,6134,25717,56,0
,2,6135,25719,56,0
,2,6136,25721,56,0
,2,6137,25723,56,0
,2,6138,25725,56,0
,2,6139,25727,56,0
,2,6140,25729,56,0
,2,6141,25731,56,0
,2,6142,25733,56,0
,2,6143,25735,56,0
,2,6144,25737,56,0
,2,6145,25739,56,0
,2,6146,25741,56,0
,2,6147,25743,56,0
,2,6148,25745,56,0
,2,6149,25747,56,0
,2,6150,25749,56,0
,2,6151,25751,56,0
,2,6152,25753,56,0
,2,6153,25755,56,0
,2,6154,25757,56,0
,2,6155,25759,56,0
,2,6156,25761,56,0
,2,6157,25763,56,0
,2,6158,25765,56,0
,2,6159,25767,56,0
,2,6160,25769,56,0
,2,6161,25771,56,0
,2,6162,25773,56,0
,2,6163,25775,56,0
,2,6164,25777,56,0
,2,6165,25779,56,0
,2,6166,25781,56,0
,2,6167,25783,56,0
,2,6168,25785,56,0
,2,6169,25787,56,0
,2,6170,25789,56,0
,2,6171,25791,56,0
,2,6172,25793,56,0
,2,6173,25795,56,0
,2,6174,25797,56,0
,2,6175,25799,56,0
,2,6176,25801,56,0
,2,6177,25803,56,0
,2,6178,25805,56,0
,2,6179,25807,56,0
,2,6180,25809,56,0
,2,6181,25811,56,0
,2,6182,25813,56,0
,2,6183,25815,56,0
,2,6184,25817,56,0
,2,6185,25819,56,0
,2,6186,25821,56,0
,2,6187,25823,56,0
,2,6188,25825,56,0
,2,6189,25827,56,0
,2,6190,25829,56,0
,2,6191,25831,56,0
,2,6192,25833,56,0
,2,6193,25835,56,0
,2,6194,25837,56,0
,2,6195,25839,56,0
,2,6196,25841,56,0
,2,6197,25843,56,0
,2,6198,25845,56,0
,2,6199,25847,56,0
,2,6200,25849,56,0
,2,6201,25851,56,0
,2,6202,25853,56,0
,2,6203,25855,56,0
,2,6204,25857,56,0
,2,6205,25859,56,0
,2,6206,25861,56,0
,2,6207,25863,56,0
,2,6208,25865,56,0
,2,6209,25867,56,0
,2,6210,25869,56,0
,2,6211,25871,56,0
,2,6212,25873,56,0
,2,6213,25875,56,0
,2,6214,25877,56,0
,2,6215,25879,56,0
,2,6216,25881,56,0
,2,6217,25883,56,0
,2,6218,25885,56,0
,2,6219,25887,56,0
,2,6220,25889,56,0
,2,6221,25891,56,0
,2,6222,25893,56,0
,2,6223,25895,56,0
,2,6224,25897,56,0
,2,6225,25899,56,0
,2,6226,25901,56,0
,2,6227,25903,56,0
,2,6228,25905,56,0
,2,6229,25907,56,0
,2,6230,25909,56,0
,2,6231,25911,56,0
,2,6232,25913,56,0
,2,6233,25915,56,0
,2,6234,25917,56,0
,2,6235,25919,56,0
,2,6236,25921,56,0
,2,6237,25923,56,0
,2,6238,25925,56,0
,2,6239,25927,56,0
,2,6240,25929,56,0
,2,6241,25931,56,0
,2,6242,25933,56,0
,2,6243,25935,56,0
,2,6244,25937,56,0
,2,6245,25939,56,0
,2,6246,25941,56,0
,2,6247,25943,56,0
,2,6248,25945,56,0
,2,6249,25947,56,0
,2,6250,25949,56,0
,2,6251,25951,56,0
,2,6252,25953,56,0
,2,6253,25955,56,0
,2,6254,25957,56,0
,2,6255,25959,56,0
,2,6256,25961,56,0
,2,6257,25963,56,0
,2,6258,25965,56,0
,2,6259,25967,56,0
,2,6260,25969,56,0
,2,6261,25971,56,0
,2,6262,25973,56,0
,2,6263,25975,56,0
,2,6264,25977,56,0
,2,6265,25979,56,0
,2,6266,25981,56,0
,2,6267,25983,56,0
,2,6268,25985,56,0
,2,6269,25987,56,0
,2,6270,25989,56,0
,2,6271,25991,56,0
,2,6272,25993,56,0
,2,6273,25995,56,0
,2,6274,25997,56,0
,2,6275,25999,56,0
,2,6276,26001,56,0
,2,6277,26003,56,0
,2,6278,26005,56,0
,2,6279,26007,56,0
,2,6280,26009,56,0
,2,6281,26011,56,0
,2,6282,26013,56,0
,2,6283,26015,56,0
,2,6284,26017,56,0
,2,6285,26019,56,0
,2,6286,26021,56,0
,2,6287,26023,56,0
,2,6288,26025,56,0
,2,6289,26027,56,0
,2,6290,26029,56,0
,2,6291,26031,56,0
,2,6292,26033,56,0
,2,6293,26035,56,0
,2,6294,26037,56,0
,2,6295,26039,56,0
,2,6296,26041,56,0
,2,6297,26043,56,0
,2,6298,26045,56,0
,2,6299,26047,56,0
,2,6300,26049,56,0
,2,6301,26051,56,0
,2,6302,26053,56,0
,2,6303,26055,56,0
,2,6304,26057,56,0
,2,6305,26059,56,0
,2,6306,26061,56,0
,2,6307,26063,56,0
,2,6308,26065,56,0
,2,6309,26067,56,0
,2,6310,26069,56,0
,2,6311,26071,56,0
,2,6312,26073,56,0
,2,6313,26075,56,0
,2,6314,26077,56,0
,2,6315,26079,56,0
,2,6316,26081,56,0
,2,6317,26083,56,0
,2,6318,26085,56,0
,2,6319,26087,56,0
,2,6320,26089,56,0
,2,6321,26091,56,0
,2,6322,26093,56,0
,2,6323,26095,56,0
,2,6324,26097,56,0
,2,6325,26099,56,0
,2,6326,26101,56,0
,2,6327,26103,56,0
,2,6328,26105,56,0
,2,6329,26107,56,0
,2,6330,26109,56,0
,2,6331,26111,56,0
,2,6332,26113,56,0
,2,6333,26115,56,0
,2,6334,26117,56,0
,2,6335,26119,56,0
,2,6336,26121,56,0
,2,6337,26123,56,0
,2,6338,26125,56,0
,2,6339,26127,56,0
,2,6340,26129,56,0
,2,6341,26131,56,0
,2,6342,26133,56,0
,2,6343,26135,56,0
,2,6344,26137,56,0
,2,6345,26139,56,0
,2,6346,26141,56,0
,2,6347,26143,56,0
,2,6348,26145,56,0
,2,6349,26147,56,0
,2,6350,26149,56,0
,2,6351,26151,56,0
,2,6352,26153,56,0
,2,6353,26155,56,0
,2,6354,26157,56,0
,2,6355,26159,56,0
,2,6356,26161,56,0
,2,6357,26163,56,0
,2,6358,26165,56,0
,2,6359,26167,56,0
,2,6360,26169,56,0
,2,6361,26171,56,0
,2,6362,26173,56,0
,2,6363,26175,56,0
,2,6364,26177,56,0
,2,6365,26179,56,0
,2,6366,26181,56,0
,2,6367,26183,56,0
,2,6368,26185,56,0
,2,6369,26187,56,0
,2,6370,26189,56,0
,2,6371,26191,56,0
,2,6372,26193,56,0
,2,6373,26195,56,0
,2,6374,26197,56,0
,2,6375,26199,56,0
,2,6376,26201,56,0
,2,6377,26203,56,0
,2,6378,26205,56,0
,2,6379,26207,56,0
,2,6380,26209,56,0
,2,6381,26211,56,0
,2,6382,26213,56,0
,2,6383,26215,56,0
,2,6384,26217,56,0
,2,6385,26219,56,0
,2,6386,26221,56,0
,2,6387,26223,56,0
,2,6388,26225,56,0
,2,6389,26227,56,0
,2,6390,26229,56,0
,2,6391,26231,56,0
,2,6392,26233,56,0
,2,6393,26235,56,0
,2,6394,26237,56,0
,2,6395,26239,56,0
,2,6396,26241,56,0
,2,6397,26243,56,0
,2,6398,26245,56,0
,2,6399,26247,56,0
,2,6400,26249,56,0
,2,6401,26251,56,0
,2,6402,26253,56,0
,2,6403,26255,56,0
,2,6404,26257,56,0
,2,6405,26259,56,0
,2,6406,26261,56,0
,2,6407,26263,56,0
,2,6408,26265,56,0
,2,6409,26267,56,0
,2,6410,26269,56,0
,2,6411,26271,56,0
,2,6412,26273,56,0
,2,6413,26275,56,0
,2,6414,26277,56,0
,2,6415,26279,56,0
,2,6416,26281,56,0
,2,6417,26283,56,0
,2,6418,26285,56,0
,2,6419,26287,56,0
,2,6420,26289,56,0
,2,6421,26291,56,0
,2,6422,26293,56,0
,2,6423,26295,56,0
,2,6424,26297,56,0
,2,6425,26299,56,0
,2,6426,26301,56,0
,2,6427,26303,56,0
,2,6428,26305,56,0
,2,6429,26307,56,0
,2,6430,26309,56,0
,2,6431,26311,56,0
,2,6432,26313,56,0
,2,6433,26315,56,0
,2,6434,26317,56,0
,2,6435,26319,56,0
,2,6436,26321,56,0
,2,6437,26323,56,0
,2,6438,26325,56,0
,2,6439,26327,56,0
,2,6440,26329,56,0
,2,6441,26331,56,0
,2,6442,26333,56,0
,2,6443,26335,56,0
,2,6444,26337,56,0
,2,6445,26339,56,0
,2,6446,26341,56,0
,2,6447,26343,56,0
,2,6448,26345,56,0
,2,6449,26347,56,0
,2,6450,26349,56,0
,2,6451,26351,56,0
,2,6452,26353,56,0
,2,6453,26355,56,0
,2,6454,26357,56,0
,2,6455,26359,56,0
,2,6456,26361,56,0
,2,6457,26363,56,0
,2,6458,26365,56,0
,2,6459,26367,56,0
,2,6460,26369,56,0
,2,6461,26371,56,0
,2,6462,26373,56,0
,2,6463,26375,56,0
,2,6464,26377,56,0
,2,6465,26379,56,0
,2,6466,26381,56,0
,2,6467,26383,56,0
,2,6468,26385,56,0
,2,6469,26387,56,0
,2,6470,26389,56,0
,2,6471,26391,56,0
,2,6472,26393,56,0
,2,6473,26395,56,0
,2,6474,26397,56,0
,2,6475,26399,56,0
,2,6476,26401,56,0
,2,6477,26403,56,0
,2,6478,26405,56,0
,2,6479,26407,56,0
,2,6480,26409,56,0
,2,6481,26411,56,0
,2,6482,26413,56,0
,2,6483,26415,56,0
,2,6484,26417,56,0
,2,6485,26419,56,0
,2,6486,26421,56,0
,2,6487,26423,56,0
,2,6488,26425,56,0
,2,6489,26427,56,0
,2,6490,26429,56,0
,2,6491,26431,56,0
,2,6492,26433,56,0
,2,6493,26435,56,0
,2,6494,26437,56,0
,2,6495,26439,56,0
,2,6496,26441,56,0
,2,6497,26443,56,0
,2,6498,26445,56,0
,2,6499,26447,56,0
,2,6500,26449,56,0
,2,6501,26451,56,0
,2,6502,26453,56,0
,2,6503,26455,56,0
,2,6504,26457,56,0
,2,6505,26459,56,0
,2,6506,26461,56,0
,2,6507,26463,56,0
,2,6508,26465,56,0
,2,6509,26467,56,0
,2,6510,26469,56,0
,2,6511,26471,56,0
,2,6512,26473,56,0
,2,6513,26475,56,0
,2,6514,26477,56,0
,2,6515,26479,56,0
,2,6516,26481,56,0
,2,6517,26483,56,0
,2,6518,26485,56,0
,2,6519,26487,56,0
,2,6520,26489,56,0
,2,6521,26491,56,0
,2,6522,26493,56,0
,2,6523,26495,56,0
,2,6524,26497,56,0
,2,6525,26499,56,0
,2,6526,26501,56,0
,2,6527,26503,56,0
,2,6528,26505,56,0
,2,6529,26507,56,0
,2,6530,26509,56,0
,2,6531,26511,56,0
,2,6532,26513,56,0
,2,6533,26515,56,0
,2,6534,26517,56,0
,2,6535,26519,56,0
,2,6536,26521,56,0
,2,6537,26523,56,0
,2,6538,26525,56,0
,2,6539,26527,56,0
,2,6540,26529,56,0
,2,6541,26531,56,0
,2,6542,26533,56,0
,2,6543,26535,56,0
,2,6544,26537,56,0
,2,6545,26539,56,0
,2,6546,26541,56,0
,2,6547,26543,56,0
,2,6548,26545,56,0
,2,6549,26547,56,0
,2,6550,26549,56,0
,2,6551,26551,56,0
,2,6552,26553,56,0
,2,6553,26555,56,0
,2,6554,26557,56,0
,2,6555,26559,56,0
,2,6556,26561,56,0
,2,6557,26563,56,0
,2,6558,26565,56,0
,2,6559,26567,56,0
,2,6560,26569,56,0
,2,6561,26571,56,0
,2,6562,26573,56,0
,2,6563,26575,56,0
,2,6564,26577,56,0
,2,6565,26579,56,0
,2,6566,26581,56,0
,2,6567,26583,56,0
,2,6568,26585,56,0
,2,6569,26587,56,0
,2,6570,26589,56,0
,2,6571,26591,56,0
,2,6572,26593,56,0
,2,6573,26595,56,0
,2,6574,26597,56,0
,2,6575,26599,56,0
,2,6576,26601,56,0
,2,6577,26603,56,0
,2,6578,26605,56,0
,2,6579,26607,56,0
,2,6580,26609,56,0
,2,6581,26611,56,0
,2,6582,26613,56,0
,2,6583,26615,56,0
,2,6584,26617,56,0
,2,6585,26619,56,0
,2,6586,26621,56,0
,2,6587,26623,56,0
,2,6588,26625,56,0
,2,6589,26627,56,0
,2,6590,26629,56,0
,2,6591,26631,56,0
,2,6592,26633,56,0
,2,6593,26635,56,0
,2,6594,26637,56,0
,2,6595,26639,56,0
,2,6596,26641,56,0
,2,6597,26643,56,0
,2,6598,26645,56,0
,2,6599,26647,56,0
,2,6600,26649,56,0
,2,6601,26651,56,0
,2,6602,26653,56,0
,2,6603,26655,56,0
,2,6604,26657,56,0
,2,6605,26659,56,0
,2,6606,26661,56,0
,2,6607,26663,56,0
,2,6608,26665,56,0
,2,6609,26667,56,0
,2,6610,26669,56,0
,2,6611,26671,56,0
,2,6612,26673,56,0
,2,6613,26675,56,0
,2,6614,26677,56,0
,2,6615,26679,56,0
,2,6616,26681,56,0
,2,6617,26683,56,0
,2,6618,26685,56,0
,2,6619,26687,56,0
,2,6620,26689,56,0
,2,6621,26691,56,0
,2,6622,26693,56,0
,2,6623,26695,56,0
,2,6624,26697,56,0
,2,6625,26699,56,0
,2,6626,26701,56,0
,2,6627,26703,56,0
,2,6628,26705,56,0
,2,6629,26707,56,0
,2,6630,26709,56,0
,2,6631,26711,56,0
,2,6632,26713,56,0
,2,6633,26715,56,0
,2,6634,26717,56,0
,2,6635,26719,56,0
,2,6636,26721,56,0
,2,6637,26723,56,0
,2,6638,26725,56,0
,2,6639,26727,56,0
,2,6640,26729,56,0
,2,6641,26731,56,0
,2,6642,26733,56,0
,2,6643,26735,56,0
,2,6644,26737,56,0
,2,6645,26739,56,0
,2,6646,26741,56,0
,2,6647,26743,56,0
,2,6648,26745,56,0
,2,6649,26747,56,0
,2,6650,26749,56,0
,2,6651,26751,56,0
,2,6652,26753,56,0
,2,6653,26755,56,0
,2,6654,26757,56,0
,2,6655,26759,56,0
,2,6656,26761,56,0
,2,6657,26763,56,0
,2,6658,26765,56,0
,2,6659,26767,56,0
,2,6660,26769,56,0
,2,6661,26771,56,0
,2,6662,26773,56,0
,2,6663,26775,56,0
,2,6664,26777,56,0
,2,6665,26779,56,0
,2,6666,26781,56,0
,2,6667,26783,56,0
,2,6668,26785,56,0
,2,6669,26787,56,0
,2,6670,26789,56,0
,2,6671,26791,56,0
,2,6672,26793,56,0
,2,6673,26795,56,0
,2,6674,26797,56,0
,2,6675,26799,56,0
,2,6676,26801,56,0
,2,6677,26803,56,0
,2,6678,26805,56,0
,2,6679,26807,56,0
,2,6680,26809,56,0
,2,6681,26811,56,0
,2,6682,26813,56,0
,2,6683,26815,56,0
,2,6684,26817,56,0
,2,6685,26819,56,0
,2,6686,26821,56,0
,2,6687,26823,56,0
,2,6688,26825,56,0
,2,6689,26827,56,0
,2,6690,26829,56,0
,2,6691,26831,56,0
,2,6692,26833,56,0
,2,6693,26835,56,0
,2,6694,26837,56,0
,2,6695,26839,56,0
,2,6696,26841,56,0
,2,6697,26843,56,0
,2,6698,26845,56,0
,2,6699,26847,56,0
,2,6700,26849,56,0
,2,6701,26851,56,0
,2,6702,26853,56,0
,2,6703,26855,56,0
,2,6704,26857,56,0
,2,6705,26859,56,0
,2,6706,26861,56,0
,2,6707,26863,56,0
,2,6708,26865,56,0
,2,6709,26867,56,0
,2,6710,26869,56,0
,2,6711,26871,56,0
,2,6712,26873,56,0
,2,6713,26875,56,0
,2,6714,26877,56,0
,2,6715,26879,56,0
,2,6716,26881,56,0
,2,6717,26883,56,0
,2,6718,26885,56,0
,2,6719,26887,56,0
,2,6720,26889,56,0
,2,6721,26891,56,0
,2,6722,26893,56,0
,2,6723,26895,56,0
,2,6724,26897,56,0
,2,6725,26899,56,0
,2,6726,26901,56,0
,2,6727,26903,56,0
,2,6728,26905,56,0
,2,6729,26907,56,0
,2,6730,26909,56,0
,2,6731,26911,56,0
,2,6732,26913,56,0
,2,6733,26915,56,0
,2,6734,26917,56,0
,2,6735,26919,56,0
,2,6736,26921,56,0
,2,6737,26923,56,0
,2,6738,26925,56,0
,2,6739,26927,56,0
,2,6740,26929,56,0
,2,6741,26931,56,0
,2,6742,26933,56,0
,2,6743,26935,56,0
,2,6744,26937,56,0
,2,6745,26939,56,0
,2,6746,26941,56,0
,2,6747,26943,56,0
,2,6748,26945,56,0
,2,6749,26947,56,0
,2,6750,26949,56,0
,2,6751,26951,56,0
,2,6752,26953,56,0
,2,6753,26955,56,0
,2,6754,26957,56,0
,2,6755,26959,56,0
,2,6756,26961,56,0
,2,6757,26963,56,0
,2,6758,26965,56,0
,2,6759,26967,56,0
,2,6760,26969,56,0
,2,6761,26971,56,0
,2,6762,26973,56,0
,2,6763,26975,56,0
,2,6764,26977,56,0
,2,6765,26979,56,0
,2,6766,26981,56,0
,2,6767,26983,56,0
,2,6768,26985,56,0
,2,6769,26987,56,0
,2,6770,26989,56,0
,2,6771,26991,56,0
,2,6772,26993,56,0
,2,6773,26995,56,0
,2,6774,26997,56,0
,2,6775,26999,56,0
,2,6776,27001,56,0
,2,6777,27003,56,0
,2,6778,27005,56,0
,2,6779,27007,56,0
,2,6780,27009,56,0
,2,6781,27011,56,0
,2,6782,27013,56,0
,2,6783,27015,56,0
,2,6784,27017,56,0
,2,6785,27019,56,0
,2,6786,27021,56,0
,2,6787,27023,56,0
,2,6788,27025,56,0
,2,6789,27027,56,0
,2,6790,27029,56,0
,2,6791,27031,56,0
,2,6792,27033,56,0
,2,6793,27035,56,0
,2,6794,27037,56,0
,2,6795,27039,56,0
,2,6796,27041,56,0
,2,6797,27043,56,0
,2,6798,27045,56,0
,2,6799,27047,56,0
,2,6800,27049,56,0
,2,6801,27051,56,0
,2,6802,27053,56,0
,2,6803,27055,56,0
,2,6804,27057,56,0
,2,6805,27059,56,0
,2,6806,27061,56,0
,2,6807,27063,56,0
,2,6808,27065,56,0
,2,6809,27067,56,0
,2,6810,27069,56,0
,2,6811,27071,56,0
,2,6812,27073,56,0
,2,6813,27075,56,0
,2,6814,27077,56,0
,2,6815,27079,56,0
,2,6816,27081,56,0
,2,6817,27083,56,0
,2,6818,27085,56,0
,2,6819,27087,56,0
,2,6820,27089,56,0
,2,6821,27091,56,0
,2,6822,27093,56,0
,2,6823,27095,56,0
,2,6824,27097,56,0
,2,6825,27099,56,0
,2,6826,27101,56,0
,2,6827,27103,56,0
,2,6828,27105,56,0
,2,6829,27107,56,0
,2,6830,27109,56,0
,2,6831,27111,56,0
,2,6832,27113,56,0
,2,6833,27115,56,0
,2,6834,27117,56,0
,2,6835,27119,56,0
,2,6836,27121,56,0
,2,6837,27123,56,0
,2,6838,27125,56,0
,2,6839,27127,56,0
,2,6840,27129,56,0
,2,6841,27131,56,0
,2,6842,27133,56,0
,2,6843,27135,56,0
,2,6844,27137,56,0
,2,6845,27139,56,0
,2,6846,27141,56,0
,2,6847,27143,56,0
,2,6848,27145,56,0
,2,6849,27147,56,0
,2,6850,27149,56,0
,2,6851,27151,56,0
,2,6852,27153,56,0
,2,6853,27155,56,0
,2,6854,27157,56,0
,2,6855,27159,56,0
,2,6856,27161,56,0
,2,6857,27163,56,0
,2,6858,27165,56,0
,2,6859,27167,56,0
,2,6860,27169,56,0
,2,6861,27171,56,0
,2,6862,27173,56,0
,2,6863,27175,56,0
,2,6864,27177,56,0
,2,6865,27179,56,0
,2,6866,27181,56,0
,2,6867,27183,56,0
,2,6868,27185,56,0
,2,6869,27187,56,0
,2,6870,27189,56,0
,2,6871,27191,56,0
,2,6872,27193,56,0
,2,6873,27195,56,0
,2,6874,27197,56,0
,2,6875,27199,56,0
,2,6876,27201,56,0
,2,6877,27203,56,0
,2,6878,27205,56,0
,2,6879,27207,56,0
,2,6880,27209,56,0
,2,6881,27211,56,0
,2,6882,27213,56,0
,2,6883,27215,56,0
,2,6884,27217,56,0
,2,6885,27219,56,0
,2,6886,27221,56,0
,2,6887,27223,56,0
,2,6888,27225,56,0
,2,6889,27227,56,0
,2,6890,27229,56,0
,2,6891,27231,56,0
,2,6892,27233,56,0
,2,6893,27235,56,0
,2,6894,27237,56,0
,2,6895,27239,56,0
,2,6896,27241,56,0
,2,6897,27243,56,0
,2,6898,27245,56,0
,2,6899,27247,56,0
,2,6900,27249,56,0
,2,6901,27251,56,0
,2,6902,27253,56,0
,2,6903,27255,56,0
,2,6904,27257,56,0
,2,6905,27259,56,0
,2,6906,27261,56,0
,2,6907,27263,56,0
,2,6908,27265,56,0
,2,6909,27267,56,0
,2,6910,27269,56,0
,2,6911,27271,56,0
,2,6912,27273,56,0
,2,6913,27275,56,0
,2,6914,27277,56,0
,2,6915,27279,56,0
,2,6916,27281,56,0
,2,6917,27283,56,0
,2,6918,27285,56,0
,2,6919,27287,56,0
,2,6920,27289,56,0
,2,6921,27291,56,0
,2,6922,27293,56,0
,2,6923,27295,56,0
,2,6924,27297,56,0
,2,6925,27299,56,0
,2,6926,27301,56,0
,2,6927,27303,56,0
,2,6928,27305,56,0
,2,6929,27307,56,0
,2,6930,27309,56,0
,2,6931,27311,56,0
,2,6932,27313,56,0
,2,6933,27315,56,0
,2,6934,27317,56,0
,2,6935,27319,56,0
,2,6936,27321,56,0
,2,6937,27323,56,0
,2,6938,27325,56,0
,2,6939,27327,56,0
,2,6940,27329,56,0
,2,6941,27331,56,0
,2,6942,27333,56,0
,2,6943,27335,56,0
,2,6944,27337,56,0
,2,6945,27339,56,0
,2,6946,27341,56,0
,2,6947,27343,56,0
,2,6948,27345,56,0
,2,6949,27347,56,0
,2,6950,27349,56,0
,2,6951,27351,56,0
,2,6952,27353,56,0
,2,6953,27355,56,0
,2,6954,27357,56,0
,2,6955,27359,56,0
,2,6956,27361,56,0
,2,6957,27363,56,0
,2,6958,27365,56,0
,2,6959,27367,56,0
,2,6960,27369,56,0
,2,6961,27371,56,0
,2,6962,27373,56,0
,2,6963,27375,56,0
,2,6964,27377,56,0
,2,6965,27379,56,0
,2,6966,27381,56,0
,2,6967,27383,56,0
,2,6968,27385,56,0
,2,6969,27387,56,0
,2,6970,27389,56,0
,2,6971,27391,56,0
,2,6972,27393,56,0
,2,6973,27395,56,0
,2,6974,27397,56,0
,2,6975,27399,56,0
,2,6976,27401,56,0
,2,6977,27403,56,0
,2,6978,27405,56,0
,2,6979,27407,56,0
,2,6980,27409,56,0
,2,6981,27411,56,0
,2,6982,27413,56,0
,2,6983,27415,56,0
,2,6984,27417,56,0
,2,6985,27419,56,0
,2,6986,27421,56,0
,2,6987,27423,56,0
,2,6988,27425,56,0
,2,6989,27427,56,0
,2,6990,27429,56,0
,2,6991,27431,56,0
,2,6992,27433,56,0
,2,6993,27435,56,0
,2,6994,27437,56,0
,2,6995,27439,56,0
,2,6996,27441,56,0
,2,6997,27443,56,0
,2,6998,27445,56,0
,2,6999,27447,56,0
,2,7000,27449,56,0
,2,7001,27451,56,0
,2,7002,27453,56,0
,2,7003,27455,56,0
,2,7004,27457,56,0
,2,7005,27459,56,0
,2,7006,27461,56,0
,2,7007,27463,56,0
,2,7008,27465,56,0
,2,7009,27467,56,0
,2,7010,27469,56,0
,2,7011,27471,56,0
,2,7012,27473,56,0
,2,7013,27475,56,0
,2,7014,27477,56,0
,2,7015,27479,56,0
,2,7016,27481,56,0
,2,7017,27483,56,0
,2,7018,27485,56,0
,2,7019,27487,56,0
,2,7020,27489,56,0
,2,7021,27491,56,0
,2,7022,27493,56,0
,2,7023,27495,56,0
,2,7024,27497,56,0
,2,7025,27499,56,0
,2,7026,27501,56,0
,2,7027,27503,56,0
,2,7028,27505,56,0
,2,7029,27507,56,0
,2,7030,27509,56,0
,2,7031,27511,56,0
,2,7032,27513,56,0
,2,7033,27515,56,0
,2,7034,27517,56,0
,2,7035,27519,56,0
,2,7036,27521,56,0
,2,7037,27523,56,0
,2,7038,27525,56,0
,2,7039,27527,56,0
,2,7040,27529,56,0
,2,7041,27531,56,0
,2,7042,27533,56,0
,2,7043,27535,56,0
,2,7044,27537,56,0
,2,7045,27539,56,0
,2,7046,27541,56,0
,2,7047,27543,56,0
,2,7048,27545,56,0
,2,7049,27547,56,0
,2,7050,27549,56,0
,2,7051,27551,56,0
,2,7052,27553,56,0
,2,7053,27555,56,0
,2,7054,27557,56,0
,2,7055,27559,56,0
,2,7056,27561,56,0
,2,7057,27563,56,0
,2,7058,27565,56,0
,2,7059,27567,56,0
,2,7060,27569,56,0
,2,7061,27571,56,0
,2,7062,27573,56,0
,2,7063,27575,56,0
,2,7064,27577,56,0
,2,7065,27579,56,0
,2,7066,27581,56,0
,2,7067,27583,56,0
,2,7068,27585,56,0
,2,7069,27587,56,0
,2,7070,27589,56,0
,2,7071,27591,56,0
,2,7072,27593,56,0
,2,7073,27595,56,0
,2,7074,27597,56,0
,2,7075,27599,56,0
,2,7076,27601,56,0
,2,7077,27603,56,0
,2,7078,27605,56,0
,2,7079,27607,56,0
,2,7080,27609,56,0
,2,7081,27611,56,0
,2,7082,27613,56,0
,2,7083,27615,56,0
,2,7084,27617,56,0
,2,7085,27619,56,0
,2,7086,27621,56,0
,2,7087,27623,56,0
,2,7088,27625,56,0
,2,7089,27627,56,0
,2,7090,27629,56,0
,2,7091,27631,56,0
,2,7092,27633,56,0
,2,7093,27635,56,0
,2,7094,27637,56,0
,2,7095,27639,56,0
,2,7096,27641,56,0
,2,7097,27643,56,0
,2,7098,27645,56,0
,2,7099,27647,56,0
,2,7100,27649,56,0
,2,7101,27651,56,0
,2,7102,27653,56,0
,2,7103,27655,56,0
,2,7104,27657,56,0
,2,7105,27659,56,0
,2,7106,27661,56,0
,2,7107,27663,56,0
,2,7108,27665,56,0
,2,7109,27667,56,0
,2,7110,27669,56,0
,2,7111,27671,56,0
,2,7112,27673,56,0
,2,7113,27675,56,0
,2,7114,27677,56,0
,2,7115,27679,56,0
,2,7116,27681,56,0
,2,7117,27683,56,0
,2,7118,27685,56,0
,2,7119,27687,56,0
,2,7120,27689,56,0
,2,7121,27691,56,0
,2,7122,27693,56,0
,2,7123,27695,56,0
,2,7124,27697,56,0
,2,7125,27699,56,0
,2,7126,27701,56,0
,2,7127,27703,56,0
,2,7128,27705,56,0
,2,7129,27707,56,0
,2,7130,27709,56,0
,2,7131,27711,56,0
,2,7132,27713,56,0
,2,7133,27715,56,0
,2,7134,27717,56,0
,2,7135,27719,56,0
,2,7136,27721,56,0
,2,7137,27723,56,0
,2,7138,27725,56,0
,2,7139,27727,56,0
,2,7140,27729,56,0
,2,7141,27731,56,0
,2,7142,27733,56,0
,2,7143,27735,56,0
,2,7144,27737,56,0
,2,7145,27739,56,0
,2,7146,27741,56,0
,2,7147,27743,56,0
,2,7148,27745,56,0
,2,7149,27747,56,0
,2,7150,27749,56,0
,2,7151,27751,56,0
,2,7152,27753,56,0
,2,7153,27755,56,0
,2,7154,27757,56,0
,2,7155,27759,56,0
,2,7156,27761,56,0
,2,7157,27763,56,0
,2,7158,27765,56,0
,2,7159,27767,56,0
,2,7160,27769,56,0
,2,7161,27771,56,0
,2,7162,27773,56,0
,2,7163,27775,56,0
,2,7164,27777,56,0
,2,7165,27779,56,0
,2,7166,27781,56,0
,2,7167,27783,56,0
,2,7168,27785,56,0
,2,7169,27787,56,0
,2,7170,27789,56,0
,2,7171,27791,56,0
,2,7172,27793,56,0
,2,7173,27795,56,0
,2,7174,27797,56,0
,2,7175,27799,56,0
,2,7176,27801,56,0
,2,7177,27803,56,0
,2,7178,27805,56,0
,2,7179,27807,56,0
,2,7180,27809,56,0
,2,7181,27811,56,0
,2,7182,27813,56,0
,2,7183,27815,56,0
,2,7184,27817,56,0
,2,7185,27819,56,0
,2,7186,27821,56,0
,2,7187,27823,56,0
,2,7188,27825,56,0
,2,7189,27827,56,0
,2,7190,27829,56,0
,2,7191,27831,56,0
,2,7192,27833,56,0
,2,7193,27835,56,0
,2,7194,27837,56,0
,2,7195,27839,56,0
,2,7196,27841,56,0
,2,7197,27843,56,0
,2,7198,27845,56,0
,2,7199,27847,56,0
,2,7200,27849,56,0
,2,7201,27851,56,0
,2,7202,27853,56,0
,2,7203,27855,56,0
,2,7204,27857,56,0
,2,7205,27859,56,0
,2,7206,27861,56,0
,2,7207,27863,56,0
,2,7208,27865,56,0
,2,7209,27867,56,0
,2,7210,27869,56,0
,2,7211,27871,56,0
,2,7212,27873,56,0
,2,7213,27875,56,0
,2,7214,27877,56,0
,2,7215,27879,56,0
,2,7216,27881,56,0
,2,7217,27883,56,0
,2,7218,27885,56,0
,2,7219,27887,56,0
,2,7220,27889,56,0
,2,7221,27891,56,0
,2,7222,27893,56,0
,2,7223,27895,56,0
,2,7224,27897,56,0
,2,7225,27899,56,0
,2,7226,27901,56,0
,2,7227,27903,56,0
,2,7228,27905,56,0
,2,7229,27907,56,0
,2,7230,27909,56,0
,2,7231,27911,56,0
,2,7232,27913,56,0
,2,7233,27915,56,0
,2,7234,27917,56,0
,2,7235,27919,56,0
,2,7236,27921,56,0
,2,7237,27923,56,0
,2,7238,27925,56,0
,2,7239,27927,56,0
,2,7240,27929,56,0
,2,7241,27931,56,0
,2,7242,27933,56,0
,2,7243,27935,56,0
,2,7244,27937,56,0
,2,7245,27939,56,0
,2,7246,27941,56,0
,2,7247,27943,56,0
,2,7248,27945,56,0
,2,7249,27947,56,0
,2,7250,27949,56,0
,2,7251,27951,56,0
,2,7252,27953,56,0
,2,7253,27955,56,0
,2,7254,27957,56,0
,2,7255,27959,56,0
,2,7256,27961,56,0
,2,7257,27963,56,0
,2,7258,27965,56,0
,2,7259,27967,56,0
,2,7260,27969,56,0
,2,7261,27971,56,0
,2,7262,27973,56,0
,2,7263,27975,56,0
,2,7264,27977,56,0
,2,7265,27979,56,0
,2,7266,27981,56,0
,2,7267,27983,56,0
,2,7268,27985,56,0
,2,7269,27987,56,0
,2,7270,27989,56,0
,2,7271,27991,56,0
,2,7272,27993,56,0
,2,7273,27995,56,0
,2,7274,27997,56,0
,2,7275,27999,56,0
,2,7276,28001,56,0
,2,7277,28003,56,0
,2,7278,28005,56,0
,2,7279,28007,56,0
,2,7280,28009,56,0
,2,7281,28011,56,0
,2,7282,28013,56,0
,2,7283,28015,56,0
,2,7284,28017,56,0
,2,7285,28019,56,0
,2,7286,28021,56,0
,2,7287,28023,56,0
,2,7288,28025,56,0
,2,7289,28027,56,0
,2,7290,28029,56,0
,2,7291,28031,56,0
,2,7292,28033,56,0
,2,7293,28035,56,0
,2,7294,28037,56,0
,2,7295,28039,56,0
,2,7296,28041,56,0
,2,7297,28043,56,0
,2,7298,28045,56,0
,2,7299,28047,56,0
,2,7300,28049,56,0
,2,7301,28051,56,0
,2,7302,28053,56,0
,2,7303,28055,56,0
,2,7304,28057,56,0
,2,7305,28059,56,0
,2,7306,28061,56,0
,2,7307,28063,56,0
,2,7308,28065,56,0
,2,7309,28067,56,0
,2,7310,28069,56,0
,2,7311,28071,56,0
,2,7312,28073,56,0
,2,7313,28075,56,0
,2,7314,28077,56,0
,2,7315,28079,56,0
,2,7316,28081,56,0
,2,7317,28083,56,0
,2,7318,28085,56,0
,2,7319,28087,56,0
,2,7320,28089,56,0
,2,7321,28091,56,0
,2,7322,28093,56,0
,2,7323,28095,56,0
,2,7324,28097,56,0
,2,7325,28099,56,0
,2,7326,28101,56,0
,2,7327,28103,56,0
,2,7328,28105,56,0
,2,7329,28107,56,0
,2,7330,28109,56,0
,2,7331,28111,56,0
,2,7332,28113,56,0
,2,7333,28115,56,0
,2,7334,28117,56,0
,2,7335,28119,56,0
,2,7336,28121,56,0
,2,7337,28123,56,0
,2,7338,28125,56,0
,2,7339,28127,56,0
,2,7340,28129,56,0
,2,7341,28131,56,0
,2,7342,28133,56,0
,2,7343,28135,56,0
,2,7344,28137,56,0
,2,7345,28139,56,0
,2,7346,28141,56,0
,2,7347,28143,56,0
,2,7348,28145,56,0
,2,7349,28147,56,0
,2,7350,28149,56,0
,2,7351,28151,56,0
,2,7352,28153,56,0
,2,7353,28155,56,0
,2,7354,28157,56,0
,2,7355,28159,56,0
,2,7356,28161,56,0
,2,7357,28163,56,0
,2,7358,28165,56,0
,2,7359,28167,56,0
,2,7360,28169,56,0
,2,7361,28171,56,0
,2,7362,28173,56,0
,2,7363,28175,56,0
,2,7364,28177,56,0
,2,7365,28179,56,0
,2,7366,28181,56,0
,2,7367,28183,56,0
,2,7368,28185,56,0
,2,7369,28187,56,0
,2,7370,28189,56,0
,2,7371,28191,56,0
,2,7372,28193,56,0
,2,7373,28195,56,0
,2,7374,28197,56,0
,2,7375,28199,56,0
,2,7376,28201,56,0
,2,7377,28203,56,0
,2,7378,28205,56,0
,2,7379,28207,56,0
,2,7380,28209,56,0
,2,7381,28211,56,0
,2,7382,28213,56,0
,2,7383,28215,56,0
,2,7384,28217,56,0
,2,7385,28219,56,0
,2,7386,28221,56,0
,2,7387,28223,56,0
,2,7388,28225,56,0
,2,7389,28227,56,0
,2,7390,28229,56,0
,2,7391,28231,56,0
,2,7392,28233,56,0
,2,7393,28235,56,0
,2,7394,28237,56,0
,2,7395,28239,56,0
,2,7396,28241,56,0
,2,7397,28243,56,0
,2,7398,28245,56,0
,2,7399,28247,56,0
,2,7400,28249,56,0
,2,7401,28251,56,0
,2,7402,28253,56,0
,2,7403,28255,56,0
,2,7404,28257,56,0
,2,7405,28259,56,0
,2,7406,28261,56,0
,2,7407,28263,56,0
,2,7408,28265,56,0
,2,7409,28267,56,0
,2,7410,28269,56,0
,2,7411,28271,56,0
,2,7412,28273,56,0
,2,7413,28275,56,0
,2,7414,28277,56,0
,2,7415,28279,56,0
,2,7416,28281,56,0
,2,7417,28283,56,0
,2,7418,28285,56,0
,2,7419,28287,56,0
,2,7420,28289,56,0
,2,7421,28291,56,0
,2,7422,28293,56,0
,2,7423,28295,56,0
,2,7424,28297,56,0
,2,7425,28299,56,0
,2,7426,28301,56,0
,2,7427,28303,56,0
,2,7428,28305,56,0
,2,7429,28307,56,0
,2,7430,28309,56,0
,2,7431,28311,56,0
,2,7432,28313,56,0
,2,7433,28315,56,0
,2,7434,28317,56,0
,2,7435,28319,56,0
,2,7436,28321,56,0
,2,7437,28323,56,0
,2,7438,28325,56,0
,2,7439,28327,56,0
,2,7440,28329,56,0
,2,7441,28331,56,0
,2,7442,28333,56,0
,2,7443,28335,56,0
,2,7444,28337,56,0
,2,7445,28339,56,0
,2,7446,28341,56,0
,2,7447,28343,56,0
,2,7448,28345,56,0
,2,7449,28347,56,0
,2,7450,28349,56,0
,2,7451,28351,56,0
,2,7452,28353,56,0
,2,7453,28355,56,0
,2,7454,28357,56,0
,2,7455,28359,56,0
,2,7456,28361,56,0
,2,7457,28363,56,0
,2,7458,28365,56,0
,2,7459,28367,56,0
,2,7460,28369,56,0
,2,7461,28371,56,0
,2,7462,28373,56,0
,2,7463,28375,56,0
,2,7464,28377,56,0
,2,7465,28379,56,0
,2,7466,28381,56,0
,2,7467,28383,56,0
,2,7468,28385,56,0
,2,7469,28387,56,0
,2,7470,28389,56,0
,2,7471,28391,56,0
,2,7472,28393,56,0
,2,7473,28395,56,0
,2,7474,28397,56,0
,2,7475,28399,56,0
,2,7476,28401,56,0
,2,7477,28403,56,0
,2,7478,28405,56,0
,2,7479,28407,56,0
,2,7480,28409,56,0
,2,7481,28411,56,0
,2,7482,28413,56,0
,2,7483,28415,56,0
,2,7484,28417,56,0
,2,7485,28419,56,0
,2,7486,28421,56,0
,2,7487,28423,56,0
,2,7488,28425,56,0
,2,7489,28427,56,0
,2,7490,28429,56,0
,2,7491,28431,56,0
,2,7492,28433,56,0
,2,7493,28435,56,0
,2,7494,28437,56,0
,2,7495,28439,56,0
,2,7496,28441,56,0
,2,7497,28443,56,0
,2,7498,28445,56,0
,2,7499,28447,56,0
,2,7500,28449,56,0
,2,7501,28451,56,0
,2,7502,28453,56,0
,2,7503,28455,56,0
,2,7504,28457,56,0
,2,7505,28459,56,0
,2,7506,28461,56,0
,2,7507,28463,56,0
,2,7508,28465,56,0
,2,7509,28467,56,0
,2,7510,28469,56,0
,2,7511,28471,56,0
,2,7512,28473,56,0
,2,7513,28475,56,0
,2,7514,28477,56,0
,2,7515,28479,56,0
,2,7516,28481,56,0
,2,7517,28483,56,0
,2,7518,28485,56,0
,2,7519,28487,56,0
,2,7520,28489,56,0
,2,7521,28491,56,0
,2,7522,28493,56,0
,2,7523,28495,56,0
,2,7524,28497,56,0
,2,7525,28499,56,0
,2,7526,28501,56,0
,2,7527,28503,56,0
,2,7528,28505,56,0
,2,7529,28507,56,0
,2,7530,28509,56,0
,2,7531,28511,56,0
,2,7532,28513,56,0
,2,7533,28515,56,0
,2,7534,28517,56,0
,2,7535,28519,56,0
,2,7536,28521,56,0
,2,7537,28523,56,0
,2,7538,28525,56,0
,2,7539,28527,56,0
,2,7540,28529,56,0
,2,7541,28531,56,0
,2,7542,28533,56,0
,2,7543,28535,56,0
,2,7544,28537,56,0
,2,7545,28539,56,0
,2,7546,28541,56,0
,2,7547,28543,56,0
,2,7548,28545,56,0
,2,7549,28547,56,0
,2,7550,28549,56,0
,2,7551,28551,56,0
,2,7552,28553,56,0
,2,7553,28555,56,0
,2,7554,28557,56,0
,2,7555,28559,56,0
,2,7556,28561,56,0
,2,7557,28563,56,0
,2,7558,28565,56,0
,2,7559,28567,56,0
,2,7560,28569,56,0
,2,7561,28571,56,0
,2,7562,28573,56,0
,2,7563,28575,56,0
,2,7564,28577,56,0
,2,7565,28579,56,0
,2,7566,28581,56,0
,2,7567,28583,56,0
,2,7568,28585,56,0
,2,7569,28587,56,0
,2,7570,28589,56,0
,2,7571,28591,56,0
,2,7572,28593,56,0
,2,7573,28595,56,0
,2,7574,28597,56,0
,2,7575,28599,56,0
,2,7576,28601,56,0
,2,7577,28603,56,0
,2,7578,28605,56,0
,2,7579,28607,56,0
,2,7580,28609,56,0
,2,7581,28611,56,0
,2,7582,28613,56,0
,2,7583,28615,56,0
,2,7584,28617,56,0
,2,7585,28619,56,0
,2,7586,28621,56,0
,2,7587,28623,56,0
,2,7588,28625,56,0
,2,7589,28627,56,0
,2,7590,28629,56,0
,2,7591,28631,56,0
,2,7592,28633,56,0
,2,7593,28635,56,0
,2,7594,28637,56,0
,2,7595,28639,56,0
,2,7596,28641,56,0
,2,7597,28643,56,0
,2,7598,28645,56,0
,2,7599,28647,56,0
,2,7600,28649,56,0
,2,7601,28651,56,0
,2,7602,28653,56,0
,2,7603,28655,56,0
,2,7604,28657,56,0
,2,7605,28659,56,0
,2,7606,28661,56,0
,2,7607,28663,56,0
,2,7608,28665,56,0
,2,7609,28667,56,0
,2,7610,28669,56,0
,2,7611,28671,56,0
,2,7612,28673,56,0
,2,7613,28675,56,0
,2,7614,28677,56,0
,2,7615,28679,56,0
,2,7616,28681,56,0
,2,7617,28683,56,0
,2,7618,28685,56,0
,2,7619,28687,56,0
,2,7620,28689,56,0
,2,7621,28691,56,0
,2,7622,28693,56,0
,2,7623,28695,56,0
,2,7624,28697,56,0
,2,7625,28699,56,0
,2,7626,28701,56,0
,2,7627,28703,56,0
,2,7628,28705,56,0
,2,7629,28707,56,0
,2,7630,28709,56,0
,2,7631,28711,56,0
,2,7632,28713,56,0
,2,7633,28715,56,0
,2,7634,28717,56,0
,2,7635,28719,56,0
,2,7636,28721,56,0
,2,7637,28723,56,0
,2,7638,28725,56,0
,2,7639,28727,56,0
,2,7640,28729,56,0
,2,7641,28731,56,0
,2,7642,28733,56,0
,2,7643,28735,56,0
,2,7644,28737,56,0
,2,7645,28739,56,0
,2,7646,28741,56,0
,2,7647,28743,56,0
,2,7648,28745,56,0
,2,7649,28747,56,0
,2,7650,28749,56,0
,2,7651,28751,56,0
,2,7652,28753,56,0
,2,7653,28755,56,0
,2,7654,28757,56,0
,2,7655,28759,56,0
,2,7656,28761,56,0
,2,7657,28763,56,0
,2,7658,28765,56,0
,2,7659,28767,56,0
,2,7660,28769,56,0
,2,7661,28771,56,0
,2,7662,28773,56,0
,2,7663,28775,56,0
,2,7664,28777,56,0
,2,7665,28779,56,0
,2,7666,28781,56,0
,2,7667,28783,56,0
,2,7668,28785,56,0
,2,7669,28787,56,0
,2,7670,28789,56,0
,2,7671,28791,56,0
,2,7672,28793,56,0
,2,7673,28795,56,0
,2,7674,28797,56,0
,2,7675,28799,56,0
,2,7676,28801,56,0
,2,7677,28803,56,0
,2,7678,28805,56,0
,2,7679,28807,56,0
,2,7680,28809,56,0
,2,7681,28811,56,0
,2,7682,28813,56,0
,2,7683,28815,56,0
,2,7684,28817,56,0
,2,7685,28819,56,0
,2,7686,28821,56,0
,2,7687,28823,56,0
,2,7688,28825,56,0
,2,7689,28827,56,0
,2,7690,28829,56,0
,2,7691,28831,56,0
,2,7692,28833,56,0
,2,7693,28835,56,0
,2,7694,28837,56,0
,2,7695,28839,56,0
,2,7696,28841,56,0
,2,7697,28843,56,0
,2,7698,28845,56,0
,2,7699,28847,56,0
,2,7700,28849,56,0
,2,7701,28851,56,0
,2,7702,28853,56,0
,2,7703,28855,56,0
,2,7704,28857,56,0
,2,7705,28859,56,0
,2,7706,28861,56,0
,2,7707,28863,56,0
,2,7708,28865,56,0
,2,7709,28867,56,0
,2,7710,28869,56,0
,2,7711,28871,56,0
,2,7712,28873,56,0
,2,7713,28875,56,0
,2,7714,28877,56,0
,2,7715,28879,56,0
,2,7716,28881,56,0
,2,7717,28883,56,0
,2,7718,28885,56,0
,2,7719,28887,56,0
,2,7720,28889,56,0
,2,7721,28891,56,0
,2,7722,28893,56,0
,2,7723,28895,56,0
,2,7724,28897,56,0
,2,7725,28899,56,0
,2,7726,28901,56,0
,2,7727,28903,56,0
,2,7728,28905,56,0
,2,7729,28907,56,0
,2,7730,28909,56,0
,2,7731,28911,56,0
,2,7732,28913,56,0
,2,7733,28915,56,0
,2,7734,28917,56,0
,2,7735,28919,56,0
,2,7736,28921,56,0
,2,7737,28923,56,0
,2,7738,28925,56,0
,2,7739,28927,56,0
,2,7740,28929,56,0
,2,7741,28931,56,0
,2,7742,28933,56,0
,2,7743,28935,56,0
,2,7744,28937,56,0
,2,7745,28939,56,0
,2,7746,28941,56,0
,2,7747,28943,56,0
,2,7748,28945,56,0
,2,7749,28947,56,0
,2,7750,28949,56,0
,2,7751,28951,56,0
,2,7752,28953,56,0
,2,7753,28955,56,0
,2,7754,28957,56,0
,2,7755,28959,56,0
,2,7756,28961,56,0
,2,7757,28963,56,0
,2,7758,28965,56,0
,2,7759,28967,56,0
,2,7760,28969,56,0
,2,7761,28971,56,0
,2,7762,28973,56,0
,2,7763,28975,56,0
,2,7764,28977,56,0
,2,7765,28979,56,0
,2,7766,28981,56,0
,2,7767,28983,56,0
,2,7768,28985,56,0
,2,7769,28987,56,0
,2,7770,28989,56,0
,2,7771,28991,56,0
,2,7772,28993,56,0
,2,7773,28995,56,0
,2,7774,28997,56,0
,2,7775,28999,56,0
,2,7776,29001,56,0
,2,7777,29003,56,0
,2,7778,29005,56,0
,2,7779,29007,56,0
,2,7780,29009,56,0
,2,7781,29011,56,0
,2,7782,29013,56,0
,2,7783,29015,56,0
,2,7784,29017,56,0
,2,7785,29019,56,0
,2,7786,29021,56,0
,2,7787,29023,56,0
,2,7788,29025,56,0
,2,7789,29027,56,0
,2,7790,29029,56,0
,2,7791,29031,56,0
,2,7792,29033,56,0
,2,7793,29035,56,0
,2,7794,29037,56,0
,2,7795,29039,56,0
,2,7796,29041,56,0
,2,7797,29043,56,0
,2,7798,29045,56,0
,2,7799,29047,56,0
,2,7800,29049,56,0
,2,7801,29051,56,0
,2,7802,29053,56,0
,2,7803,29055,56,0
,2,7804,29057,56,0
,2,7805,29059,56,0
,2,7806,29061,56,0
,2,7807,29063,56,0
,2,7808,29065,56,0
,2,7809,29067,56,0
,2,7810,29069,56,0
,2,7811,29071,56,0
,2,7812,29073,56,0
,2,7813,29075,56,0
,2,7814,29077,56,0
,2,7815,29079,56,0
,2,7816,29081,56,0
,2,7817,29083,56,0
,2,7818,29085,56,0
,2,7819,29087,56,0
,2,7820,29089,56,0
,2,7821,29091,56,0
,2,7822,29093,56,0
,2,7823,29095,56,0
,2,7824,29097,56,0
,2,7825,29099,56,0
,2,7826,29101,56,0
,2,7827,29103,56,0
,2,7828,29105,56,0
,2,7829,29107,56,0
,2,7830,29109,56,0
,2,7831,29111,56,0
,2,7832,29113,56,0
,2,7833,29115,56,0
,2,7834,29117,56,0
,2,7835,29119,56,0
,2,7836,29121,56,0
,2,7837,29123,56,0
,2,7838,29125,56,0
,2,7839,29127,56,0
,2,7840,29129,56,0
,2,7841,29131,56,0
,2,7842,29133,56,0
,2,7843,29135,56,0
,2,7844,29137,56,0
,2,7845,29139,56,0
,2,7846,29141,56,0
,2,7847,29143,56,0
,2,7848,29145,56,0
,2,7849,29147,56,0
,2,7850,29149,56,0
,2,7851,29151,56,0
,2,7852,29153,56,0
,2,7853,29155,56,0
,2,7854,29157,56,0
,2,7855,29159,56,0
,2,7856,29161,56,0
,2,7857,29163,56,0
,2,7858,29165,56,0
,2,7859,29167,56,0
,2,7860,29169,56,0
,2,7861,29171,56,0
,2,7862,29173,56,0
,2,7863,29175,56,0
,2,7864,29177,56,0
,2,7865,29179,56,0
,2,7866,29181,56,0
,2,7867,29183,56,0
,2,7868,29185,56,0
,2,7869,29187,56,0
,2,7870,29189,56,0
,2,7871,29191,56,0
,2,7872,29193,56,0
,2,7873,29195,56,0
,2,7874,29197,56,0
,2,7875,29199,56,0
,2,7876,29201,56,0
,2,7877,29203,56,0
,2,7878,29205,56,0
,2,7879,29207,56,0
,2,7880,29209,56,0
,2,7881,29211,56,0
,2,7882,29213,56,0
,2,7883,29215,56,0
,2,7884,29217,56,0
,2,7885,29219,56,0
,2,7886,29221,56,0
,2,7887,29223,56,0
,2,7888,29225,56,0
,2,7889,29227,56,0
,2,7890,29229,56,0
,2,7891,29231,56,0
,2,7892,29233,56,0
,2,7893,29235,56,0
,2,7894,29237,56,0
,2,7895,29239,56,0
,2,7896,29241,56,0
,2,7897,29243,56,0
,2,7898,29245,56,0
,2,7899,29247,56,0
,2,7900,29249,56,0
,2,7901,29251,56,0
,2,7902,29253,56,0
,2,7903,29255,56,0
,2,7904,29257,56,0
,2,7905,29259,56,0
,2,7906,29261,56,0
,2,7907,29263,56,0
,2,7908,29265,56,0
,2,7909,29267,56,0
,2,7910,29269,56,0
,2,7911,29271,56,0
,2,7912,29273,56,0
,2,7913,29275,56,0
,2,7914,29277,56,0
,2,7915,29279,56,0
,2,7916,29281,56,0
,2,7917,29283,56,0
,2,7918,29285,56,0
,2,7919,29287,56,0
,2,7920,29289,56,0
,2,7921,29291,56,0
,2,7922,29293,56,0
,2,7923,29295,56,0
,2,7924,29297,56,0
,2,7925,29299,56,0
,2,7926,29301,56,0
,2,7927,29303,56,0
,2,7928,29305,56,0
,2,7929,29307,56,0
,2,7930,29309,56,0
,2,7931,29311,56,0
,2,7932,29313,56,0
,2,7933,29315,56,0
,2,7934,29317,56,0
,2,7935,29319,56,0
,2,7936,29321,56,0
,2,7937,29323,56,0
,2,7938,29325,56,0
,2,7939,29327,56,0
,2,7940,29329,56,0
,2,7941,29331,56,0
,2,7942,29333,56,0
,2,7943,29335,56,0
,2,7944,29337,56,0
,2,7945,29339,56,0
,2,7946,29341,56,0
,2,7947,29343,56,0
,2,7948,29345,56,0
,2,7949,29347,56,0
,2,7950,29349,56,0
,2,7951,29351,56,0
,2,7952,29353,56,0
,2,7953,29355,56,0
,2,7954,29357,56,0
,2,7955,29359,56,0
,2,7956,29361,56,0
,2,7957,29363,56,0
,2,7958,29365,56,0
,2,7959,29367,56,0
,2,7960,29369,56,0
,2,7961,29371,56,0
,2,7962,29373,56,0
,2,7963,29375,56,0
,2,7964,29377,56,0
,2,7965,29379,56,0
,2,7966,29381,56,0
,2,7967,29383,56,0
,2,7968,29385,56,0
,2,7969,29387,56,0
,2,7970,29389,56,0
,2,7971,29391,56,0
,2,7972,29393,56,0
,2,7973,29395,56,0
,2,7974,29397,56,0
,2,7975,29399,56,0
,2,7976,29401,56,0
,2,7977,29403,56,0
,2,7978,29405,56,0
,2,7979,29407,56,0
,2,7980,29409,56,0
,2,7981,29411,56,0
,2,7982,29413,56,0
,2,7983,29415,56,0
,2,7984,29417,56,0
,2,7985,29419,56,0
,2,7986,29421,56,0
,2,7987,29423,56,0
,2,7988,29425,56,0
,2,7989,29427,56,0
,2,7990,29429,56,0
,2,7991,29431,56,0
,2,7992,29433,56,0
,2,7993,29435,56,0
,2,7994,29437,56,0
,2,7995,29439,56,0
,2,7996,29441,56,0
,2,7997,29443,56,0
,2,7998,29445,56,0
,2,7999,29447,56,0
,2,8000,29449,56,0
,2,8001,29451,56,0
,2,8002,29453,56,0
,2,8003,29455,56,0
,2,8004,29457,56,0
,2,8005,29459,56,0
,2,8006,29461,56,0
,2,8007,29463,56,0
,2,8008,29465,56,0
,2,8009,29467,56,0
,2,8010,29469,56,0
,2,8011,29471,56,0
,2,8012,29473,56,0
,2,8013,29475,56,0
,2,8014,29477,56,0
,2,8015,29479,56,0
,2,8016,29481,56,0
,2,8017,29483,56,0
,2,8018,29485,56,0
,2,8019,29487,56,0
,2,8020,29489,56,0
,2,8021,29491,56,0
,2,8022,29493,56,0
,2,8023,29495,56,0
,2,8024,29497,56,0
,2,8025,29499,56,0
,2,8026,29501,56,0
,2,8027,29503,56,0
,2,8028,29505,56,0
,2,8029,29507,56,0
,2,8030,29509,56,0
,2,8031,29511,56,0
,2,8032,29513,56,0
,2,8033,29515,56,0
,2,8034,29517,56,0
,2,8035,29519,56,0
,2,8036,29521,56,0
,2,8037,29523,56,0
,2,8038,29525,56,0
,2,8039,29527,56,0
,2,8040,29529,56,0
,2,8041,29531,56,0
,2,8042,29533,56,0
,2,8043,29535,56,0
,2,8044,29537,56,0
,2,8045,29539,56,0
,2,8046,29541,56,0
,2,8047,29543,56,0
,2,8048,29545,56,0
,2,8049,29547,56,0
,2,8050,29549,56,0
,2,8051,29551,56,0
,2,8052,29553,56,0
,2,8053,29555,56,0
,2,8054,29557,56,0
,2,8055,29559,56,0
,2,8056,29561,56,0
,2,8057,29563,56,0
,2,8058,29565,56,0
,2,8059,29567,56,0
,2,8060,29569,56,0
,2,8061,29571,56,0
,2,8062,29573,56,0
,2,8063,29575,56,0
,2,8064,29577,56,0
,2,8065,29579,56,0
,2,8066,29581,56,0
,2,8067,29583,56,0
,2,8068,29585,56,0
,2,8069,29587,56,0
,2,8070,29589,56,0
,2,8071,29591,56,0
,2,8072,29593,56,0
,2,8073,29595,56,0
,2,8074,29597,56,0
,2,8075,29599,56,0
,2,8076,29601,56,0
,2,8077,29603,56,0
,2,8078,29605,56,0
,2,8079,29607,56,0
,2,8080,29609,56,0
,2,8081,29611,56,0
,2,8082,29613,56,0
,2,8083,29615,56,0
,2,8084,29617,56,0
,2,8085,29619,56,0
,2,8086,29621,56,0
,2,8087,29623,56,0
,2,8088,29625,56,0
,2,8089,29627,56,0
,2,8090,29629,56,0
,2,8091,29631,56,0
,2,8092,29633,56,0
,2,8093,29635,56,0
,2,8094,29637,56,0
,2,8095,29639,56,0
,2,8096,29641,56,0
,2,8097,29643,56,0
,2,8098,29645,56,0
,2,8099,29647,56,0
,2,8100,29649,56,0
,2,8101,29651,56,0
,2,8102,29653,56,0
,2,8103,29655,56,0
,2,8104,29657,56,0
,2,8105,29659,56,0
,2,8106,29661,56,0
,2,8107,29663,56,0
,2,8108,29665,56,0
,2,8109,29667,56,0
,2,8110,29669,56,0
,2,8111,29671,56,0
,2,8112,29673,56,0
,2,8113,29675,56,0
,2,8114,29677,56,0
,2,8115,29679,56,0
,2,8116,29681,56,0
,2,8117,29683,56,0
,2,8118,29685,56,0
,2,8119,29687,56,0
,2,8120,29689,56,0
,2,8121,29691,56,0
,2,8122,29693,56,0
,2,8123,29695,56,0
,2,8124,29697,56,0
,2,8125,29699,56,0
,2,8126,29701,56,0
,2,8127,29703,56,0
,2,8128,29705,56,0
,2,8129,29707,56,0
,2,8130,29709,56,0
,2,8131,29711,56,0
,2,8132,29713,56,0
,2,8133,29715,56,0
,2,8134,29717,56,0
,2,8135,29719,56,0
,2,8136,29721,56,0
,2,8137,29723,56,0
,2,8138,29725,56,0
,2,8139,29727,56,0
,2,8140,29729,56,0
,2,8141,29731,56,0
,2,8142,29733,56,0
,2,8143,29735,56,0
,2,8144,29737,56,0
,2,8145,29739,56,0
,2,8146,29741,56,0
,2,8147,29743,56,0
,2,8148,29745,56,0
,2,8149,29747,56,0
,2,8150,29749,56,0
,2,8151,29751,56,0
,2,8152,29753,56,0
,2,8153,29755,56,0
,2,8154,29757,56,0
,2,8155,29759,56,0
,2,8156,29761,56,0
,2,8157,29763,56,0
,2,8158,29765,56,0
,2,8159,29767,56,0
,2,8160,29769,56,0
,2,8161,29771,56,0
,2,8162,29773,56,0
,2,8163,29775,56,0
,2,8164,29777,56,0
,2,8165,29779,56,0
,2,8166,29781,56,0
,2,8167,29783,56,0
,2,8168,29785,56,0
,2,8169,29787,56,0
,2,8170,29789,56,0
,2,8171,29791,56,0
,2,8172,29793,56,0
,2,8173,29795,56,0
,2,8174,29797,56,0
,2,8175,29799,56,0
,2,8176,29801,56,0
,2,8177,29803,56,0
,2,8178,29805,56,0
,2,8179,29807,56,0
,2,8180,29809,56,0
,2,8181,29811,56,0
,2,8182,29813,56,0
,2,8183,29815,56,0
,2,8184,29817,56,0
,2,8185,29819,56,0
,2,8186,29821,56,0
,2,8187,29823,56,0
,2,8188,29825,56,0
,2,8189,29827,56,0
,2,8190,29829,56,0
,2,8191,29831,56,0
,2,8192,29833,56,0
,2,8193,29835,56,0
,2,8194,29837,56,0
,2,8195,29839,56,0
,2,8196,29841,56,0
,2,8197,29843,56,0
,2,8198,29845,56,0
,2,8199,29847,56,0
,2,8200,29849,56,0
,2,8201,29851,56,0
,2,8202,29853,56,0
,2,8203,29855,56,0
,2,8204,29857,56,0
,2,8205,29859,56,0
,2,8206,29861,56,0
,2,8207,29863,56,0
,2,8208,29865,56,0
,2,8209,29867,56,0
,2,8210,29869,56,0
,2,8211,29871,56,0
,2,8212,29873,56,0
,2,8213,29875,56,0
,2,8214,29877,56,0
,2,8215,29879,56,0
,2,8216,29881,56,0
,2,8217,29883,56,0
,2,8218,29885,56,0
,2,8219,29887,56,0
,2,8220,29889,56,0
,2,8221,29891,56,0
,2,8222,29893,56,0
,2,8223,29895,56,0
,2,8224,29897,56,0
,2,8225,29899,56,0
,2,8226,29901,56,0
,2,8227,29903,56,0
,2,8228,29905,56,0
,2,8229,29907,56,0
,2,8230,29909,56,0
,2,8231,29911,56,0
,2,8232,29913,56,0
,2,8233,29915,56,0
,2,8234,29917,56,0
,2,8235,29919,56,0
,2,8236,29921,56,0
,2,8237,29923,56,0
,2,8238,29925,56,0
,2,8239,29927,56,0
,2,8240,29929,56,0
,2,8241,29931,56,0
,2,8242,29933,56,0
,2,8243,29935,56,0
,2,8244,29937,56,0
,2,8245,29939,56,0
,2,8246,29941,56,0
,2,8247,29943,56,0
,2,8248,29945,56,0
,2,8249,29947,56,0
,2,8250,29949,56,0
,2,8251,29951,56,0
,2,8252,29953,56,0
,2,8253,29955,56,0
,2,8254,29957,56,0
,2,8255,29959,56,0
,2,8256,29961,56,0
,2,8257,29963,56,0
,2,8258,29965,56,0
,2,8259,29967,56,0
,2,8260,29969,56,0
,2,8261,29971,56,0
,2,8262,29973,56,0
,2,8263,29975,56,0
,2,8264,29977,56,0
,2,8265,29979,56,0
,2,8266,29981,56,0
,2,8267,29983,56,0
,2,8268,29985,56,0
,2,8269,29987,56,0
,2,8270,29989,56,0
,2,8271,29991,56,0
,2,8272,29993,56,0
,2,8273,29995,56,0
,2,8274,29997,56,0
,2,8275,29999,56,0
,2,8276,30001,56,0
,2,8277,30003,56,0
,2,8278,30005,56,0
,2,8279,30007,56,0
,2,8280,30009,56,0
,2,8281,30011,56,0
,2,8282,30013,56,0
,2,8283,30015,56,0
,2,8284,30017,56,0
,2,8285,30019,56,0
,2,8286,30021,56,0
,2,8287,30023,56,0
,2,8288,30025,56,0
,2,8289,30027,56,0
,2,8290,30029,56,0
,2,8291,30031,56,0
,2,8292,30033,56,0
,2,8293,30035,56,0
,2,8294,30037,56,0
,2,8295,30039,56,0
,2,8296,30041,56,0
,2,8297,30043,56,0
,2,8298,30045,56,0
,2,8299,30047,56,0
,2,8300,30049,56,0
,2,8301,30051,56,0
,2,8302,30053,56,0
,2,8303,30055,56,0
,2,8304,30057,56,0
,2,8305,30059,56,0
,2,8306,30061,56,0
,2,8307,30063,56,0
,2,8308,30065,56,0
,2,8309,30067,56,0
,2,8310,30069,56,0
,2,8311,30071,56,0
,2,8312,30073,56,0
,2,8313,30075,56,0
,2,8314,30077,56,0
,2,8315,30079,56,0
,2,8316,30081,56,0
,2,8317,30083,56,0
,2,8318,30085,56,0
,2,8319,30087,56,0
,2,8320,30089,56,0
,2,8321,30091,56,0
,2,8322,30093,56,0
,2,8323,30095,56,0
,2,8324,30097,56,0
,2,8325,30099,56,0
,2,8326,30101,56,0
,2,8327,30103,56,0
,2,8328,30105,56,0
,2,8329,30107,56,0
,2,8330,30109,56,0
,2,8331,30111,56,0
,2,8332,30113,56,0
,2,8333,30115,56,0
,2,8334,30117,56,0
,2,8335,30119,56,0
,2,8336,30121,56,0
,2,8337,30123,56,0
,2,8338,30125,56,0
,2,8339,30127,56,0
,2,8340,30129,56,0
,2,8341,30131,56,0
,2,8342,30133,56,0
,2,8343,30135,56,0
,2,8344,30137,56,0
,2,8345,30139,56,0
,2,8346,30141,56,0
,2,8347,30143,56,0
,2,8348,30145,56,0
,2,8349,30147,56,0
,2,8350,30149,56,0
,2,8351,30151,56,0
,2,8352,30153,56,0
,2,8353,30155,56,0
,2,8354,30157,56,0
,2,8355,30159,56,0
,2,8356,30161,56,0
,2,8357,30163,56,0
,2,8358,30165,56,0
,2,8359,30167,56,0
,2,8360,30169,56,0
,2,8361,30171,56,0
,2,8362,30173,56,0
,2,8363,30175,56,0
,2,8364,30177,56,0
,2,8365,30179,56,0
,2,8366,30181,56,0
,2,8367,30183,56,0
,2,8368,30185,56,0
,2,8369,30187,56,0
,2,8370,30189,56,0
,2,8371,30191,56,0
,2,8372,30193,56,0
,2,8373,30195,56,0
,2,8374,30197,56,0
,2,8375,30199,56,0
,2,8376,30201,56,0
,2,8377,30203,56,0
,2,8378,30205,56,0
,2,8379,30207,56,0
,2,8380,30209,56,0
,2,8381,30211,56,0
,2,8382,30213,56,0
,2,8383,30215,56,0
,2,8384,30217,56,0
,2,8385,30219,56,0
,2,8386,30221,56,0
,2,8387,30223,56,0
,2,8388,30225,56,0
,2,8389,30227,56,0
,2,8390,30229,56,0
,2,8391,30231,56,0
,2,8392,30233,56,0
,2,8393,30235,56,0
,2,8394,30237,56,0
,2,8395,30239,56,0
,2,8396,30241,56,0
,2,8397,30243,56,0
,2,8398,30245,56,0
,2,8399,30247,56,0
,2,8400,30249,56,0
,2,8401,30251,56,0
,2,8402,30253,56,0
,2,8403,30255,56,0
,2,8404,30257,56,0
,2,8405,30259,56,0
,2,8406,30261,56,0
,2,8407,30263,56,0
,2,8408,30265,56,0
,2,8409,30267,56,0
,2,8410,30269,56,0
,2,8411,30271,56,0
,2,8412,30273,56,0
,2,8413,30275,56,0
,2,8414,30277,56,0
,2,8415,30279,56,0
,2,8416,30281,56,0
,2,8417,30283,56,0
,2,8418,30285,56,0
,2,8419,30287,56,0
,2,8420,30289,56,0
,2,8421,30291,56,0
,2,8422,30293,56,0
,2,8423,30295,56,0
,2,8424,30297,56,0
,2,8425,30299,56,0
,2,8426,30301,56,0
,2,8427,30303,56,0
,2,8428,30305,56,0
,2,8429,30307,56,0
,2,8430,30309,56,0
,2,8431,30311,56,0
,2,8432,30313,56,0
,2,8433,30315,56,0
,2,8434,30317,56,0
,2,8435,30319,56,0
,2,8436,30321,56,0
,2,8437,30323,56,0
,2,8438,30325,56,0
,2,8439,30327,56,0
,2,8440,30329,56,0
,2,8441,30331,56,0
,2,8442,30333,56,0
,2,8443,30335,56,0
,2,8444,30337,56,0
,2,8445,30339,56,0
,2,8446,30341,56,0
,2,8447,30343,56,0
,2,8448,30345,56,0
,2,8449,30347,56,0
,2,8450,30349,56,0
,2,8451,30351,56,0
,2,8452,30353,56,0
,2,8453,30355,56,0
,2,8454,30357,56,0
,2,8455,30359,56,0
,2,8456,30361,56,0
,2,8457,30363,56,0
,2,8458,30365,56,0
,2,8459,30367,56,0
,2,8460,30369,56,0
,2,8461,30371,56,0
,2,8462,30373,56,0
,2,8463,30375,56,0
,2,8464,30377,56,0
,2,8465,30379,56,0
,2,8466,30381,56,0
,2,8467,30383,56,0
,2,8468,30385,56,0
,2,8469,30387,56,0
,2,8470,30389,56,0
,2,8471,30391,56,0
,2,8472,30393,56,0
,2,8473,30395,56,0
,2,8474,30397,56,0
,2,8475,30399,56,0
,2,8476,30401,56,0
,2,8477,30403,56,0
,2,8478,30405,56,0
,2,8479,30407,56,0
,2,8480,30409,56,0
,2,8481,30411,56,0
,2,8482,30413,56,0
,2,8483,30415,56,0
,2,8484,30417,56,0
,2,8485,30419,56,0
,2,8486,30421,56,0
,2,8487,30423,56,0
,2,8488,30425,56,0
,2,8489,30427,56,0
,2,8490,30429,56,0
,2,8491,30431,56,0
,2,8492,30433,56,0
,2,8493,30435,56,0
,2,8494,30437,56,0
,2,8495,30439,56,0
,2,8496,30441,56,0
,2,8497,30443,56,0
,2,8498,30445,56,0
,2,8499,30447,56,0
,2,8500,30449,56,0
,2,8501,30451,56,0
,2,8502,30453,56,0
,2,8503,30455,56,0
,2,8504,30457,56,0
,2,8505,30459,56,0
,2,8506,30461,56,0
,2,8507,30463,56,0
,2,8508,30465,56,0
,2,8509,30467,56,0
,2,8510,30469,56,0
,2,8511,30471,56,0
,2,8512,30473,56,0
,2,8513,30475,56,0
,2,8514,30477,56,0
,2,8515,30479,56,0
,2,8516,30481,56,0
,2,8517,30483,56,0
,2,8518,30485,56,0
,2,8519,30487,56,0
,2,8520,30489,56,0
,2,8521,30491,56,0
,2,8522,30493,56,0
,2,8523,30495,56,0
,2,8524,30497,56,0
,2,8525,30499,56,0
,2,8526,30501,56,0
,2,8527,30503,56,0
,2,8528,30505,56,0
,2,8529,30507,56,0
,2,8530,30509,56,0
,2,8531,30511,56,0
,2,8532,30513,56,0
,2,8533,30515,56,0
,2,8534,30517,56,0
,2,8535,30519,56,0
,2,8536,30521,56,0
,2,8537,30523,56,0
,2,8538,30525,56,0
,2,8539,30527,56,0
,2,8540,30529,56,0
,2,8541,30531,56,0
,2,8542,30533,56,0
,2,8543,30535,56,0
,2,8544,30537,56,0
,2,8545,30539,56,0
,2,8546,30541,56,0
,2,8547,30543,56,0
,2,8548,30545,56,0
,2,8549,30547,56,0
,2,8550,30549,56,0
,2,8551,30551,56,0
,2,8552,30553,56,0
,2,8553,30555,56,0
,2,8554,30557,56,0
,2,8555,30559,56,0
,2,8556,30561,56,0
,2,8557,30563,56,0
,2,8558,30565,56,0
,2,8559,30567,56,0
,2,8560,30569,56,0
,2,8561,30571,56,0
,2,8562,30573,56,0
,2,8563,30575,56,0
,2,8564,30577,56,0
,2,8565,30579,56,0
,2,8566,30581,56,0
,2,8567,30583,56,0
,2,8568,30585,56,0
,2,8569,30587,56,0
,2,8570,30589,56,0
,2,8571,30591,56,0
,2,8572,30593,56,0
,2,8573,30595,56,0
,2,8574,30597,56,0
,2,8575,30599,56,0
,2,8576,30601,56,0
,2,8577,30603,56,0
,2,8578,30605,56,0
,2,8579,30607,56,0
,2,8580,30609,56,0
,2,8581,30611,56,0
,2,8582,30613,56,0
,2,8583,30615,56,0
,2,8584,30617,56,0
,2,8585,30619,56,0
,2,8586,30621,56,0
,2,8587,30623,56,0
,2,8588,30625,56,0
,2,8589,30627,56,0
,2,8590,30629,56,0
,2,8591,30631,56,0
,2,8592,30633,56,0
,2,8593,30635,56,0
,2,8594,30637,56,0
,2,8595,30639,56,0
,2,8596,30641,56,0
,2,8597,30643,56,0
,2,8598,30645,56,0
,2,8599,30647,56,0
,2,8600,30649,56,0
,2,8601,30651,56,0
,2,8602,30653,56,0
,2,8603,30655,56,0
,2,8604,30657,56,0
,2,8605,30659,56,0
,2,8606,30661,56,0
,2,8607,30663,56,0
,2,8608,30665,56,0
,2,8609,30667,56,0
,2,8610,30669,56,0
,2,8611,30671,56,0
,2,8612,30673,56,0
,2,8613,30675,56,0
,2,8614,30677,56,0
,2,8615,30679,56,0
,2,8616,30681,56,0
,2,8617,30683,56,0
,2,8618,30685,56,0
,2,8619,30687,56,0
,2,8620,30689,56,0
,2,8621,30691,56,0
,2,8622,30693,56,0
,2,8623,30695,56,0
,2,8624,30697,56,0
,2,8625,30699,56,0
,2,8626,30701,56,0
,2,8627,30703,56,0
,2,8628,30705,56,0
,2,8629,30707,56,0
,2,8630,30709,56,0
,2,8631,30711,56,0
,2,8632,30713,56,0
,2,8633,30715,56,0
,2,8634,30717,56,0
,2,8635,30719,56,0
,2,8636,30721,56,0
,2,8637,30723,56,0
,2,8638,30725,56,0
,2,8639,30727,56,0
,2,8640,30729,56,0
,2,8641,30731,56,0
,2,8642,30733,56,0
,2,8643,30735,56,0
,2,8644,30737,56,0
,2,8645,30739,56,0
,2,8646,30741,56,0
,2,8647,30743,56,0
,2,8648,30745,56,0
,2,8649,30747,56,0
,2,8650,30749,56,0
,2,8651,30751,56,0
,2,8652,30753,56,0
,2,8653,30755,56,0
,2,8654,30757,56,0
,2,8655,30759,56,0
,2,8656,30761,56,0
,2,8657,30763,56,0
,2,8658,30765,56,0
,2,8659,30767,56,0
,2,8660,30769,56,0
,2,8661,30771,56,0
,2,8662,30773,56,0
,2,8663,30775,56,0
,2,8664,30777,56,0
,2,8665,30779,56,0
,2,8666,30781,56,0
,2,8667,30783,56,0
,2,8668,30785,56,0
,2,8669,30787,56,0
,2,8670,30789,56,0
,2,8671,30791,56,0
,2,8672,30793,56,0
,2,8673,30795,56,0
,2,8674,30797,56,0
,2,8675,30799,56,0
,2,8676,30801,56,0
,2,8677,30803,56,0
,2,8678,30805,56,0
,2,8679,30807,56,0
,2,8680,30809,56,0
,2,8681,30811,56,0
,2,8682,30813,56,0
,2,8683,30815,56,0
,2,8684,30817,56,0
,2,8685,30819,56,0
,2,8686,30821,56,0
,2,8687,30823,56,0
,2,8688,30825,56,0
,2,8689,30827,56,0
,2,8690,30829,56,0
,2,8691,30831,56,0
,2,8692,30833,56,0
,2,8693,30835,56,0
,2,8694,30837,56,0
,2,8695,30839,56,0
,2,8696,30841,56,0
,2,8697,30843,56,0
,2,8698,30845,56,0
,2,8699,30847,56,0
,2,8700,30849,56,0
,2,8701,30851,56,0
,2,8702,30853,56,0
,2,8703,30855,56,0
,2,8704,30857,56,0
,2,8705,30859,56,0
,2,8706,30861,56,0
,2,8707,30863,56,0
,2,8708,30865,56,0
,2,8709,30867,56,0
,2,8710,30869,56,0
,2,8711,30871,56,0
,2,8712,30873,56,0
,2,8713,30875,56,0
,2,8714,30877,56,0
,2,8715,30879,56,0
,2,8716,30881,56,0
,2,8717,30883,56,0
,2,8718,30885,56,0
,2,8719,30887,56,0
,2,8720,30889,56,0
,2,8721,30891,56,0
,2,8722,30893,56,0
,2,8723,30895,56,0
,2,8724,30897,56,0
,2,8725,30899,56,0
,2,8726,30901,56,0
,2,8727,30903,56,0
,2,8728,30905,56,0
,2,8729,30907,56,0
,2,8730,30909,56,0
,2,8731,30911,56,0
,2,8732,30913,56,0
,2,8733,30915,56,0
,2,8734,30917,56,0
,2,8735,30919,56,0
,2,8736,30921,56,0
,2,8737,30923,56,0
,2,8738,30925,56,0
,2,8739,30927,56,0
,2,8740,30929,56,0
,2,8741,30931,56,0
,2,8742,30933,56,0
,2,8743,30935,56,0
,2,8744,30937,56,0
,2,8745,30939,56,0
,2,8746,30941,56,0
,2,8747,30943,56,0
,2,8748,30945,56,0
,2,8749,30947,56,0
,2,8750,30949,56,0
,2,8751,30951,56,0
,2,8752,30953,56,0
,2,8753,30955,56,0
,2,8754,30957,56,0
,2,8755,30959,56,0
,2,8756,30961,56,0
,2,8757,30963,56,0
,2,8758,30965,56,0
,2,8759,30967,56,0
,2,8760,30969,56,0
,2,8761,30971,56,0
,2,8762,30973,56,0
,2,8763,30975,56,0
,2,8764,30977,56,0
,2,8765,30979,56,0
,2,8766,30981,56,0
,2,8767,30983,56,0
,2,8768,30985,56,0
,2,8769,30987,56,0
,2,8770,30989,56,0
,2,8771,30991,56,0
,2,8772,30993,56,0
,2,8773,30995,56,0
,2,8774,30997,56,0
,2,8775,30999,56,0
,2,8776,31001,56,0
,2,8777,31003,56,0
,2,8778,31005,56,0
,2,8779,31007,56,0
,2,8780,31009,56,0
,2,8781,31011,56,0
,2,8782,31013,56,0
,2,8783,31015,56,0
,2,8784,31017,56,0
,2,8785,31019,56,0
,2,8786,31021,56,0
,2,8787,31023,56,0
,2,8788,31025,56,0
,2,8789,31027,56,0
,2,8790,31029,56,0
,2,8791,31031,56,0
,2,8792,31033,56,0
,2,8793,31035,56,0
,2,8794,31037,56,0
,2,8795,31039,56,0
,2,8796,31041,56,0
,2,8797,31043,56,0
,2,8798,31045,56,0
,2,8799,31047,56,0
,2,8800,31049,56,0
,2,8801,31051,56,0
,2,8802,31053,56,0
,2,8803,31055,56,0
,2,8804,31057,56,0
,2,8805,31059,56,0
,2,8806,31061,56,0
,2,8807,31063,56,0
,2,8808,31065,56,0
,2,8809,31067,56,0
,2,8810,31069,56,0
,2,8811,31071,56,0
,2,8812,31073,56,0
,2,8813,31075,56,0
,2,8814,31077,56,0
,2,8815,31079,56,0
,2,8816,31081,56,0
,2,8817,31083,56,0
,2,8818,31085,56,0
,2,8819,31087,56,0
,2,8820,31089,56,0
,2,8821,31091,56,0
,2,8822,31093,56,0
,2,8823,31095,56,0
,2,8824,31097,56,0
,2,8825,31099,56,0
,2,8826,31101,56,0
,2,8827,31103,56,0
,2,8828,31105,56,0
,2,8829,31107,56,0
,2,8830,31109,56,0
,2,8831,31111,56,0
,2,8832,31113,56,0
,2,8833,31115,56,0
,2,8834,31117,56,0
,2,8835,31119,56,0
,2,8836,31121,56,0
,2,8837,31123,56,0
,2,8838,31125,56,0
,2,8839,31127,56,0
,2,8840,31129,56,0
,2,8841,31131,56,0
,2,8842,31133,56,0
,2,8843,31135,56,0
,2,8844,31137,56,0
,2,8845,31139,56,0
,2,8846,31141,56,0
,2,8847,31143,56,0
,2,8848,31145,56,0
,2,8849,31147,56,0
,2,8850,31149,56,0
,2,8851,31151,56,0
,2,8852,31153,56,0
,2,8853,31155,56,0
,2,8854,31157,56,0
,2,8855,31159,56,0
,2,8856,31161,56,0
,2,8857,31163,56,0
,2,8858,31165,56,0
,2,8859,31167,56,0
,2,8860,31169,56,0
,2,8861,31171,56,0
,2,8862,31173,56,0
,2,8863,31175,56,0
,2,8864,31177,56,0
,2,8865,31179,56,0
,2,8866,31181,56,0
,2,8867,31183,56,0
,2,8868,31185,56,0
,2,8869,31187,56,0
,2,8870,31189,56,0
,2,8871,31191,56,0
,2,8872,31193,56,0
,2,8873,31195,56,0
,2,8874,31197,56,0
,2,8875,31199,56,0
,2,8876,31201,56,0
,2,8877,31203,56,0
,2,8878,31205,56,0
,2,8879,31207,56,0
,2,8880,31209,56,0
,2,8881,31211,56,0
,2,8882,31213,56,0
,2,8883,31215,56,0
,2,8884,31217,56,0
,2,8885,31219,56,0
,2,8886,31221,56,0
,2,8887,31223,56,0
,2,8888,31225,56,0
,2,8889,31227,56,0
,2,8890,31229,56,0
,2,8891,31231,56,0
,2,8892,31233,56,0
,2,8893,31235,56,0
,2,8894,31237,56,0
,2,8895,31239,56,0
,2,8896,31241,56,0
,2,8897,31243,56,0
,2,8898,31245,56,0
,2,8899,31247,56,0
,2,8900,31249,56,0
,2,8901,31251,56,0
,2,8902,31253,56,0
,2,8903,31255,56,0
,2,8904,31257,56,0
,2,8905,31259,56,0
,2,8906,31261,56,0
,2,8907,31263,56,0
,2,8908,31265,56,0
,2,8909,31267,56,0
,2,8910,31269,56,0
,2,8911,31271,56,0
,2,8912,31273,56,0
,2,8913,31275,56,0
,2,8914,31277,56,0
,2,8915,31279,56,0
,2,8916,31281,56,0
,2,8917,31283,56,0
,2,8918,31285,56,0
,2,8919,31287,56,0
,2,8920,31289,56,0
,2,8921,31291,56,0
,2,8922,31293,56,0
,2,8923,31295,56,0
,2,8924,31297,56,0
,2,8925,31299,56,0
,2,8926,31301,56,0
,2,8927,31303,56,0
,2,8928,31305,56,0
,2,8929,31307,56,0
,2,8930,31309,56,0
,2,8931,31311,56,0
,2,8932,31313,56,0
,2,8933,31315,56,0
,2,8934,31317,56,0
,2,8935,31319,56,0
,2,8936,31321,56,0
,2,8937,31323,56,0
,2,8938,31325,56,0
,2,8939,31327,56,0
,2,8940,31329,56,0
,2,8941,31331,56,0
,2,8942,31333,56,0
,2,8943,31335,56,0
,2,8944,31337,56,0
,2,8945,31339,56,0
,2,8946,31341,56,0
,2,8947,31343,56,0
,2,8948,31345,56,0
,2,8949,31347,56,0
,2,8950,31349,56,0
,2,8951,31351,56,0
,2,8952,31353,56,0
,2,8953,31355,56,0
,2,8954,31357,56,0
,2,8955,31359,56,0
,2,8956,31361,56,0
,2,8957,31363,56,0
,2,8958,31365,56,0
,2,8959,31367,56,0
,2,8960,31369,56,0
,2,8961,31371,56,0
,2,8962,31373,56,0
,2,8963,31375,56,0
,2,8964,31377,56,0
,2,8965,31379,56,0
,2,8966,31381,56,0
,2,8967,31383,56,0
,2,8968,31385,56,0
,2,8969,31387,56,0
,2,8970,31389,56,0
,2,8971,31391,56,0
,2,8972,31393,56,0
,2,8973,31395,56,0
,2,8974,31397,56,0
,2,8975,31399,56,0
,2,8976,31401,56,0
,2,8977,31403,56,0
,2,8978,31405,56,0
,2,8979,31407,56,0
,2,8980,31409,56,0
,2,8981,31411,56,0
,2,8982,31413,56,0
,2,8983,31415,56,0
,2,8984,31417,56,0
,2,8985,31419,56,0
,2,8986,31421,56,0
,2,8987,31423,56,0
,2,8988,31425,56,0
,2,8989,31427,56,0
,2,8990,31429,56,0
,2,8991,31431,56,0
,2,8992,31433,56,0
,2,8993,31435,56,0
,2,8994,31437,56,0
,2,8995,31439,56,0
,2,8996,31441,56,0
,2,8997,31443,56,0
,2,8998,31445,56,0
,2,8999,31447,56,0
,2,9000,31449,56,0
,2,9001,31451,56,0
,2,9002,31453,56,0
,2,9003,31455,56,0
,2,9004,31457,56,0
,2,9005,31459,56,0
,2,9006,31461,56,0
,2,9007,31463,56,0
,2,9008,31465,56,0
,2,9009,31467,56,0
,2,9010,31469,56,0
,2,9011,31471,56,0
,2,9012,31473,56,0
,2,9013,31475,56,0
,2,9014,31477,56,0
,2,9015,31479,56,0
,2,9016,31481,56,0
,2,9017,31483,56,0
,2,9018,31485,56,0
,2,9019,31487,56,0
,2,9020,31489,56,0
,2,9021,31491,56,0
,2,9022,31493,56,0
,2,9023,31495,56,0
,2,9024,31497,56,0
,2,9025,31499,56,0
,2,9026,31501,56,0
,2,9027,31503,56,0
,2,9028,31505,56,0
,2,9029,31507,56,0
,2,9030,31509,56,0
,2,9031,31511,56,0
,2,9032,31513,56,0
,2,9033,31515,56,0
,2,9034,31517,56,0
,2,9035,31519,56,0
,2,9036,31521,56,0
,2,9037,31523,56,0
,2,9038,31525,56,0
,2,9039,31527,56,0
,2,9040,31529,56,0
,2,9041,31531,56,0
,2,9042,31533,56,0
,2,9043,31535,56,0
,2,9044,31537,56,0
,2,9045,31539,56,0
,2,9046,31541,56,0
,2,9047,31543,56,0
,2,9048,31545,56,0
,2,9049,31547,56,0
,2,9050,31549,56,0
,2,9051,31551,56,0
,2,9052,31553,56,0
,2,9053,31555,56,0
,2,9054,31557,56,0
,2,9055,31559,56,0
,2,9056,31561,56,0
,2,9057,31563,56,0
,2,9058,31565,56,0
,2,9059,31567,56,0
,2,9060,31569,56,0
,2,9061,31571,56,0
,2,9062,31573,56,0
,2,9063,31575,56,0
,2,9064,31577,56,0
,2,9065,31579,56,0
,2,9066,31581,56,0
,2,9067,31583,56,0
,2,9068,31585,56,0
,2,9069,31587,56,0
,2,9070,31589,56,0
,2,9071,31591,56,0
,2,9072,31593,56,0
,2,9073,31595,56,0
,2,9074,31597,56,0
,2,9075,31599,56,0
,2,9076,31601,56,0
,2,9077,31603,56,0
,2,9078,31605,56,0
,2,9079,31607,56,0
,2,9080,31609,56,0
,2,9081,31611,56,0
,2,9082,31613,56,0
,2,9083,31615,56,0
,2,9084,31617,56,0
,2,9085,31619,56,0
,2,9086,31621,56,0
,2,9087,31623,56,0
,2,9088,31625,56,0
,2,9089,31627,56,0
,2,9090,31629,56,0
,2,9091,31631,56,0
,2,9092,31633,56,0
,2,9093,31635,56,0
,2,9094,31637,56,0
,2,9095,31639,56,0
,2,9096,31641,56,0
,2,9097,31643,56,0
,2,9098,31645,56,0
,2,9099,31647,56,0
,2,9100,31649,56,0
,2,9101,31651,56,0
,2,9102,31653,56,0
,2,9103,31655,56,0
,2,9104,31657,56,0
,2,9105,31659,56,0
,2,9106,31661,56,0
,2,9107,31663,56,0
,2,9108,31665,56,0
,2,9109,31667,56,0
,2,9110,31669,56,0
,2,9111,31671,56,0
,2,9112,31673,56,0
,2,9113,31675,56,0
,2,9114,31677,56,0
,2,9115,31679,56,0
,2,9116,31681,56,0
,2,9117,31683,56,0
,2,9118,31685,56,0
,2,9119,31687,56,0
,2,9120,31689,56,0
,2,9121,31691,56,0
,2,9122,31693,56,0
,2,9123,31695,56,0
,2,9124,31697,56,0
,2,9125,31699,56,0
,2,9126,31701,56,0
,2,9127,31703,56,0
,2,9128,31705,56,0
,2,9129,31707,56,0
,2,9130,31709,56,0
,2,9131,31711,56,0
,2,9132,31713,56,0
,2,9133,31715,56,0
,2,9134,31717,56,0
,2,9135,31719,56,0
,2,9136,31721,56,0
,2,9137,31723,56,0
,2,9138,31725,56,0
,2,9139,31727,56,0
,2,9140,31729,56,0
,2,9141,31731,56,0
,2,9142,31733,56,0
,2,9143,31735,56,0
,2,9144,31737,56,0
,2,9145,31739,56,0
,2,9146,31741,56,0
,2,9147,31743,56,0
,2,9148,31745,56,0
,2,9149,31747,56,0
,2,9150,31749,56,0
,2,9151,31751,56,0
,2,9152,31753,56,0
,2,9153,31755,56,0
,2,9154,31757,56,0
,2,9155,31759,56,0
,2,9156,31761,56,0
,2,9157,31763,56,0
,2,9158,31765,56,0
,2,9159,31767,56,0
,2,9160,31769,56,0
,2,9161,31771,56,0
,2,9162,31773,56,0
,2,9163,31775,56,0
,2,9164,31777,56,0
,2,9165,31779,56,0
,2,9166,31781,56,0
,2,9167,31783,56,0
,2,9168,31785,56,0
,2,9169,31787,56,0
,2,9170,31789,56,0
,2,9171,31791,56,0
,2,9172,31793,56,0
,2,9173,31795,56,0
,2,9174,31797,56,0
,2,9175,31799,56,0
,2,9176,31801,56,0
,2,9177,31803,56,0
,2,9178,31805,56,0
,2,9179,31807,56,0
,2,9180,31809,56,0
,2,9181,31811,56,0
,2,9182,31813,56,0
,2,9183,31815,56,0
,2,9184,31817,56,0
,2,9185,31819,56,0
,2,9186,31821,56,0
,2,9187,31823,56,0
,2,9188,31825,56,0
,2,9189,31827,56,0
,2,9190,31829,56,0
,2,9191,31831,56,0
,2,9192,31833,56,0
,2,9193,31835,56,0
,2,9194,31837,56,0
,2,9195,31839,56,0
,2,9196,31841,56,0
,2,9197,31843,56,0
,2,9198,31845,56,0
,2,9199,31847,56,0
,2,9200,31849,56,0
,2,9201,31851,56,0
,2,9202,31853,56,0
,2,9203,31855,56,0
,2,9204,31857,56,0
,2,9205,31859,56,0
,2,9206,31861,56,0
,2,9207,31863,56,0
,2,9208,31865,56,0
,2,9209,31867,56,0
,2,9210,31869,56,0
,2,9211,31871,56,0
,2,9212,31873,56,0
,2,9213,31875,56,0
,2,9214,31877,56,0
,2,9215,31879,56,0
,2,9216,31881,56,0
,2,9217,31883,56,0
,2,9218,31885,56,0
,2,9219,31887,56,0
,2,9220,31889,56,0
,2,9221,31891,56,0
,2,9222,31893,56,0
,2,9223,31895,56,0
,2,9224,31897,56,0
,2,9225,31899,56,0
,2,9226,31901,56,0
,2,9227,31903,56,0
,2,9228,31905,56,0
,2,9229,31907,56,0
,2,9230,31909,56,0
,2,9231,31911,56,0
,2,9232,31913,56,0
,2,9233,31915,56,0
,2,9234,31917,56,0
,2,9235,31919,56,0
,2,9236,31921,56,0
,2,9237,31923,56,0
,2,9238,31925,56,0
,2,9239,31927,56,0
,2,9240,31929,56,0
,2,9241,31931,56,0
,2,9242,31933,56,0
,2,9243,31935,56,0
,2,9244,31937,56,0
,2,9245,31939,56,0
,2,9246,31941,56,0
,2,9247,31943,56,0
,2,9248,31945,56,0
,2,9249,31947,56,0
,2,9250,31949,56,0
,2,9251,31951,56,0
,2,9252,31953,56,0
,2,9253,31955,56,0
,2,9254,31957,56,0
,2,9255,31959,56,0
,2,9256,31961,56,0
,2,9257,31963,56,0
,2,9258,31965,56,0
,2,9259,31967,56,0
,2,9260,31969,56,0
,2,9261,31971,56,0
,2,9262,31973,56,0
,2,9263,31975,56,0
,2,9264,31977,56,0
,2,9265,31979,56,0
,2,9266,31981,56,0
,2,9267,31983,56,0
,2,9268,31985,56,0
,2,9269,31987,56,0
,2,9270,31989,56,0
,2,9271,31991,56,0
,2,9272,31993,56,0
,2,9273,31995,56,0
,2,9274,31997,56,0
,2,9275,31999,56,0
,2,9276,32001,56,0
,2,9277,32003,56,0
,2,9278,32005,56,0
,2,9279,32007,56,0
,2,9280,32009,56,0
,2,9281,32011,56,0
,2,9282,32013,56,0
,2,9283,32015,56,0
,2,9284,32017,56,0
,2,9285,32019,56,0
,2,9286,32021,56,0
,2,9287,32023,56,0
,2,9288,32025,56,0
,2,9289,32027,56,0
,2,9290,32029,56,0
,2,9291,32031,56,0
,2,9292,32033,56,0
,2,9293,32035,56,0
,2,9294,32037,56,0
,2,9295,32039,56,0
,2,9296,32041,56,0
,2,9297,32043,56,0
,2,9298,32045,56,0
,2,9299,32047,56,0
,2,9300,32049,56,0
,2,9301,32051,56,0
,2,9302,32053,56,0
,2,9303,32055,56,0
,2,9304,32057,56,0
,2,9305,32059,56,0
,2,9306,32061,56,0
,2,9307,32063,56,0
,2,9308,32065,56,0
,2,9309,32067,56,0
,2,9310,32069,56,0
,2,9311,32071,56,0
,2,9312,32073,56,0
,2,9313,32075,56,0
,2,9314,32077,56,0
,2,9315,32079,56,0
,2,9316,32081,56,0
,2,9317,32083,56,0
,2,9318,32085,56,0
,2,9319,32087,56,0
,2,9320,32089,56,0
,2,9321,32091,56,0
,2,9322,32093,56,0
,2,9323,32095,56,0
,2,9324,32097,56,0
,2,9325,32099,56,0
,2,9326,32101,56,0
,2,9327,32103,56,0
,2,9328,32105,56,0
,2,9329,32107,56,0
,2,9330,32109,56,0
,2,9331,32111,56,0
,2,9332,32113,56,0
,2,9333,32115,56,0
,2,9334,32117,56,0
,2,9335,32119,56,0
,2,9336,32121,56,0
,2,9337,32123,56,0
,2,9338,32125,56,0
,2,9339,32127,56,0
,2,9340,32129,56,0
,2,9341,32131,56,0
,2,9342,32133,56,0
,2,9343,32135,56,0
,2,9344,32137,56,0
,2,9345,32139,56,0
,2,9346,32141,56,0
,2,9347,32143,56,0
,2,9348,32145,56,0
,2,9349,32147,56,0
,2,9350,32149,56,0
,2,9351,32151,56,0
,2,9352,32153,56,0
,2,9353,32155,56,0
,2,9354,32157,56,0
,2,9355,32159,56,0
,2,9356,32161,56,0
,2,9357,32163,56,0
,2,9358,32165,56,0
,2,9359,32167,56,0
,2,9360,32169,56,0
,2,9361,32171,56,0
,2,9362,32173,56,0
,2,9363,32175,56,0
,2,9364,32177,56,0
,2,9365,32179,56,0
,2,9366,32181,56,0
,2,9367,32183,56,0
,2,9368,32185,56,0
,2,9369,32187,56,0
,2,9370,32189,56,0
,2,9371,32191,56,0
,2,9372,32193,56,0
,2,9373,32195,56,0
,2,9374,32197,56,0
,2,9375,32199,56,0
,2,9376,32201,56,0
,2,9377,32203,56,0
,2,9378,32205,56,0
,2,9379,32207,56,0
,2,9380,32209,56,0
,2,9381,32211,56,0
,2,9382,32213,56,0
,2,9383,32215,56,0
,2,9384,32217,56,0
,2,9385,32219,56,0
,2,9386,32221,56,0
,2,9387,32223,56,0
,2,9388,32225,56,0
,2,9389,32227,56,0
,2,9390,32229,56,0
,2,9391,32231,56,0
,2,9392,32233,56,0
,2,9393,32235,56,0
,2,9394,32237,56,0
,2,9395,32239,56,0
,2,9396,32241,56,0
,2,9397,32243,56,0
,2,9398,32245,56,0
,2,9399,32247,56,0
,2,9400,32249,56,0
,2,9401,32251,56,0
,2,9402,32253,56,0
,2,9403,32255,56,0
,2,9404,32257,56,0
,2,9405,32259,56,0
,2,9406,32261,56,0
,2,9407,32263,56,0
,2,9408,32265,56,0
,2,9409,32267,56,0
,2,9410,32269,56,0
,2,9411,32271,56,0
,2,9412,32273,56,0
,2,9413,32275,56,0
,2,9414,32277,56,0
,2,9415,32279,56,0
,2,9416,32281,56,0
,2,9417,32283,56,0
,2,9418,32285,56,0
,2,9419,32287,56,0
,2,9420,32289,56,0
,2,9421,32291,56,0
,2,9422,32293,56,0
,2,9423,32295,56,0
,2,9424,32297,56,0
,2,9425,32299,56,0
,2,9426,32301,56,0
,2,9427,32303,56,0
,2,9428,32305,56,0
,2,9429,32307,56,0
,2,9430,32309,56,0
,2,9431,32311,56,0
,2,9432,32313,56,0
,2,9433,32315,56,0
,2,9434,32317,56,0
,2,9435,32319,56,0
,2,9436,32321,56,0
,2,9437,32323,56,0
,2,9438,32325,56,0
,2,9439,32327,56,0
,2,9440,32329,56,0
,2,9441,32331,56,0
,2,9442,32333,56,0
,2,9443,32335,56,0
,2,9444,32337,56,0
,2,9445,32339,56,0
,2,9446,32341,56,0
,2,9447,32343,56,0
,2,9448,32345,56,0
,2,9449,32347,56,0
,2,9450,32349,56,0
,2,9451,32351,56,0
,2,9452,32353,56,0
,2,9453,32355,56,0
,2,9454,32357,56,0
,2,9455,32359,56,0
,2,9456,32361,56,0
,2,9457,32363,56,0
,2,9458,32365,56,0
,2,9459,32367,56,0
,2,9460,32369,56,0
,2,9461,32371,56,0
,2,9462,32373,56,0
,2,9463,32375,56,0
,2,9464,32377,56,0
,2,9465,32379,56,0
,2,9466,32381,56,0
,2,9467,32383,56,0
,2,9468,32385,56,0
,2,9469,32387,56,0
,2,9470,32389,56,0
,2,9471,32391,56,0
,2,9472,32393,56,0
,2,9473,32395,56,0
,2,9474,32397,56,0
,2,9475,32399,56,0
,2,9476,32401,56,0
,2,9477,32403,56,0
,2,9478,32405,56,0
,2,9479,32407,56,0
,2,9480,32409,56,0
,2,9481,32411,56,0
,2,9482,32413,56,0
,2,9483,32415,56,0
,2,9484,32417,56,0
,2,9485,32419,56,0
,2,9486,32421,56,0
,2,9487,32423,56,0
,2,9488,32425,56,0
,2,9489,32427,56,0
,2,9490,32429,56,0
,2,9491,32431,56,0
,2,9492,32433,56,0
,2,9493,32435,56,0
,2,9494,32437,56,0
,2,9495,32439,56,0
,2,9496,32441,56,0
,2,9497,32443,56,0
,2,9498,32445,56,0
,2,9499,32447,56,0
,2,9500,32449,56,0
,2,9501,32451,56,0
,2,9502,32453,56,0
,2,9503,32455,56,0
,2,9504,32457,56,0
,2,9505,32459,56,0
,2,9506,32461,56,0
,2,9507,32463,56,0
,2,9508,32465,56,0
,2,9509,32467,56,0
,2,9510,32469,56,0
,2,9511,32471,56,0
,2,9512,32473,56,0
,2,9513,32475,56,0
,2,9514,32477,56,0
,2,9515,32479,56,0
,2,9516,32481,56,0
,2,9517,32483,56,0
,2,9518,32485,56,0
,2,9519,32487,56,0
,2,9520,32489,56,0
,2,9521,32491,56,0
,2,9522,32493,56,0
,2,9523,32495,56,0
,2,9524,32497,56,0
,2,9525,32499,56,0
,2,9526,32501,56,0
,2,9527,32503,56,0
,2,9528,32505,56,0
,2,9529,32507,56,0
,2,9530,32509,56,0
,2,9531,32511,56,0
,2,9532,32513,56,0
,2,9533,32515,56,0
,2,9534,32517,56,0
,2,9535,32519,56,0
,2,9536,32521,56,0
,2,9537,32523,56,0
,2,9538,32525,56,0
,2,9539,32527,56,0
,2,9540,32529,56,0
,2,9541,32531,56,0
,2,9542,32533,56,0
,2,9543,32535,56,0
,2,9544,32537,56,0
,2,9545,32539,56,0
,2,9546,32541,56,0
,2,9547,32543,56,0
,2,9548,32545,56,0
,2,9549,32547,56,0
,2,9550,32549,56,0
,2,9551,32551,56,0
,2,9552,32553,56,0
,2,9553,32555,56,0
,2,9554,32557,56,0
,2,9555,32559,56,0
,2,9556,32561,56,0
,2,9557,32563,56,0
,2,9558,32565,56,0
,2,9559,32567,56,0
,2,9560,32569,56,0
,2,9561,32571,56,0
,2,9562,32573,56,0
,2,9563,32575,56,0
,2,9564,32577,56,0
,2,9565,32579,56,0
,2,9566,32581,56,0
,2,9567,32583,56,0
,2,9568,32585,56,0
,2,9569,32587,56,0
,2,9570,32589,56,0
,2,9571,32591,56,0
,2,9572,32593,56,0
,2,9573,32595,56,0
,2,9574,32597,56,0
,2,9575,32599,56,0
,2,9576,32601,56,0
,2,9577,32603,56,0
,2,9578,32605,56,0
,2,9579,32607,56,0
,2,9580,32609,56,0
,2,9581,32611,56,0
,2,9582,32613,56,0
,2,9583,32615,56,0
,2,9584,32617,56,0
,2,9585,32619,56,0
,2,9586,32621,56,0
,2,9587,32623,56,0
,2,9588,32625,56,0
,2,9589,32627,56,0
,2,9590,32629,56,0
,2,9591,32631,56,0
,2,9592,32633,56,0
,2,9593,32635,56,0
,2,9594,32637,56,0
,2,9595,32639,56,0
,2,9596,32641,56,0
,2,9597,32643,56,0
,2,9598,32645,56,0
,2,9599,32647,56,0
,2,9600,32649,56,0
,2,9601,32651,56,0
,2,9602,32653,56,0
,2,9603,32655,56,0
,2,9604,32657,56,0
,2,9605,32659,56,0
,2,9606,32661,56,0
,2,9607,32663,56,0
,2,9608,32665,56,0
,2,9609,32667,56,0
,2,9610,32669,56,0
,2,9611,32671,56,0
,2,9612,32673,56,0
,2,9613,32675,56,0
,2,9614,32677,56,0
,2,9615,32679,56,0
,2,9616,32681,56,0
,2,9617,32683,56,0
,2,9618,32685,56,0
,2,9619,32687,56,0
,2,9620,32689,56,0
,2,9621,32691,56,0
,2,9622,32693,56,0
,2,9623,32695,56,0
,2,9624,32697,56,0
,2,9625,32699,56,0
,2,9626,32701,56,0
,2,9627,32703,56,0
,2,9628,32705,56,0
,2,9629,32707,56,0
,2,9630,32709,56,0
,2,9631,32711,56,0
,2,9632,32713,56,0
,2,9633,32715,56,0
,2,9634,32717,56,0
,2,9635,32719,56,0
,2,9636,32721,56,0
,2,9637,32723,56,0
,2,9638,32725,56,0
,2,9639,32727,56,0
,2,9640,32729,56,0
,2,9641,32731,56,0
,2,9642,32733,56,0
,2,9643,32735,56,0
,2,9644,32737,56,0
,2,9645,32739,56,0
,2,9646,32741,56,0
,2,9647,32743,56,0
,2,9648,32745,56,0
,2,9649,32747,56,0
,2,9650,32749,56,0
,2,9651,32751,56,0
,2,9652,32753,56,0
,2,9653,32755,56,0
,2,9654,32757,56,0
,2,9655,32759,56,0
,2,9656,32761,56,0
,2,9657,32763,56,0
,2,9658,32765,56,0
,2,9659,32767,56,0
,2,9660,32769,56,0
,2,9661,32771,56,0
,2,9662,32773,56,0
,2,9663,32775,56,0
,2,9664,32777,56,0
,2,9665,32779,56,0
,2,9666,32781,56,0
,2,9667,32783,56,0
,2,9668,32785,56,0
,2,9669,32787,56,0
,2,9670,32789,56,0
,2,9671,32791,56,0
,2,9672,32793,56,0
,2,9673,32795,56,0
,2,9674,32797,56,0
,2,9675,32799,56,0
,2,9676,32801,56,0
,2,9677,32803,56,0
,2,9678,32805,56,0
,2,9679,32807,56,0
,2,9680,32809,56,0
,2,9681,32811,56,0
,2,9682,32813,56,0
,2,9683,32815,56,0
,2,9684,32817,56,0
,2,9685,32819,56,0
,2,9686,32821,56,0
,2,9687,32823,56,0
,2,9688,32825,56,0
,2,9689,32827,56,0
,2,9690,32829,56,0
,2,9691,32831,56,0
,2,9692,32833,56,0
,2,9693,32835,56,0
,2,9694,32837,56,0
,2,9695,32839,56,0
,2,9696,32841,56,0
,2,9697,32843,56,0
,2,9698,32845,56,0
,2,9699,32847,56,0
,2,9700,32849,56,0
,2,9701,32851,56,0
,2,9702,32853,56,0
,2,9703,32855,56,0
,2,9704,32857,56,0
,2,9705,32859,56,0
,2,9706,32861,56,0
,2,9707,32863,56,0
,2,9708,32865,56,0
,2,9709,32867,56,0
,2,9710,32869,56,0
,2,9711,32871,56,0
,2,9712,32873,56,0
,2,9713,32875,56,0
,2,9714,32877,56,0
,2,9715,32879,56,0
,2,9716,32881,56,0
,2,9717,32883,56,0
,2,9718,32885,56,0
,2,9719,32887,56,0
,2,9720,32889,56,0
,2,9721,32891,56,0
,2,9722,32893,56,0
,2,9723,32895,56,0
,2,9724,32897,56,0
,2,9725,32899,56,0
,2,9726,32901,56,0
,2,9727,32903,56,0
,2,9728,32905,56,0
,2,9729,32907,56,0
,2,9730,32909,56,0
,2,9731,32911,56,0
,2,9732,32913,56,0
,2,9733,32915,56,0
,2,9734,32917,56,0
,2,9735,32919,56,0
,2,9736,32921,56,0
,2,9737,32923,56,0
,2,9738,32925,56,0
,2,9739,32927,56,0
,2,9740,32929,56,0
,2,9741,32931,56,0
,2,9742,32933,56,0
,2,9743,32935,56,0
,2,9744,32937,56,0
,2,9745,32939,56,0
,2,9746,32941,56,0
,2,9747,32943,56,0
,2,9748,32945,56,0
,2,9749,32947,56,0
,2,9750,32949,56,0
,2,9751,32951,56,0
,2,9752,32953,56,0
,2,9753,32955,56,0
,2,9754,32957,56,0
,2,9755,32959,56,0
,2,9756,32961,56,0
,2,9757,32963,56,0
,2,9758,32965,56,0
,2,9759,32967,56,0
,2,9760,32969,56,0
,2,9761,32971,56,0
,2,9762,32973,56,0
,2,9763,32975,56,0
,2,9764,32977,56,0
,2,9765,32979,56,0
,2,9766,32981,56,0
,2,9767,32983,56,0
,2,9768,32985,56,0
,2,9769,32987,56,0
,2,9770,32989,56,0
,2,9771,32991,56,0
,2,9772,32993,56,0
,2,9773,32995,56,0
,2,9774,32997,56,0
,2,9775,32999,56,0
,2,9776,33001,56,0
,2,9777,33003,56,0
,2,9778,33005,56,0
,2,9779,33007,56,0
,2,9780,33009,56,0
,2,9781,33011,56,0
,2,9782,33013,56,0
,2,9783,33015,56,0
,2,9784,33017,56,0
,2,9785,33019,56,0
,2,9786,33021,56,0
,2,9787,33023,56,0
,2,9788,33025,56,0
,2,9789,33027,56,0
,2,9790,33029,56,0
,2,9791,33031,56,0
,2,9792,33033,56,0
,2,9793,33035,56,0
,2,9794,33037,56,0
,2,9795,33039,56,0
,2,9796,33041,56,0
,2,9797,33043,56,0
,2,9798,33045,56,0
,2,9799,33047,56,0
,2,9800,33049,56,0
,2,9801,33051,56,0
,2,9802,33053,56,0
,2,9803,33055,56,0
,2,9804,33057,56,0
,2,9805,33059,56,0
,2,9806,33061,56,0
,2,9807,33063,56,0
,2,9808,33065,56,0
,2,9809,33067,56,0
,2,9810,33069,56,0
,2,9811,33071,56,0
,2,9812,33073,56,0
,2,9813,33075,56,0
,2,9814,33077,56,0
,2,9815,33079,56,0
,2,9816,33081,56,0
,2,9817,33083,56,0
,2,9818,33085,56,0
,2,9819,33087,56,0
,2,9820,33089,56,0
,2,9821,33091,56,0
,2,9822,33093,56,0
,2,9823,33095,56,0
,2,9824,33097,56,0
,2,9825,33099,56,0
,2,9826,33101,56,0
,2,9827,33103,56,0
,2,9828,33105,56,0
,2,9829,33107,56,0
,2,9830,33109,56,0
,2,9831,33111,56,0
,2,9832,33113,56,0
,2,9833,33115,56,0
,2,9834,33117,56,0
,2,9835,33119,56,0
,2,9836,33121,56,0
,2,9837,33123,56,0
,2,9838,33125,56,0
,2,9839,33127,56,0
,2,9840,33129,56,0
,2,9841,33131,56,0
,2,9842,33133,56,0
,2,9843,33135,56,0
,2,9844,33137,56,0
,2,9845,33139,56,0
,2,9846,33141,56,0
,2,9847,33143,56,0
,2,9848,33145,56,0
,2,9849,33147,56,0
,2,9850,33149,56,0
,2,9851,33151,56,0
,2,9852,33153,56,0
,2,9853,33155,56,0
,2,9854,33157,56,0
,2,9855,33159,56,0
,2,9856,33161,56,0
,2,9857,33163,56,0
,2,9858,33165,56,0
,2,9859,33167,56,0
,2,9860,33169,56,0
,2,9861,33171,56,0
,2,9862,33173,56,0
,2,9863,33175,56,0
,2,9864,33177,56,0
,2,9865,33179,56,0
,2,9866,33181,56,0
,2,9867,33183,56,0
,2,9868,33185,56,0
,2,9869,33187,56,0
,2,9870,33189,56,0
,2,9871,33191,56,0
,2,9872,33193,56,0
,2,9873,33195,56,0
,2,9874,33197,56,0
,2,9875,33199,56,0
,2,9876,33201,56,0
,2,9877,33203,56,0
,2,9878,33205,56,0
,2,9879,33207,56,0
,2,9880,33209,56,0
,2,9881,33211,56,0
,2,9882,33213,56,0
,2,9883,33215,56,0
,2,9884,33217,56,0
,2,9885,33219,56,0
,2,9886,33221,56,0
,2,9887,33223,56,0
,2,9888,33225,56,0
,2,9889,33227,56,0
,2,9890,33229,56,0
,2,9891,33231,56,0
,2,9892,33233,56,0
,2,9893,33235,56,0
,2,9894,33237,56,0
,2,9895,33239,56,0
,2,9896,33241,56,0
,2,9897,33243,56,0
,2,9898,33245,56,0
,2,9899,33247,56,0
,2,9900,33249,56,0
,2,9901,33251,56,0
,2,9902,33253,56,0
,2,9903,33255,56,0
,2,9904,33257,56,0
,2,9905,33259,56,0
,2,9906,33261,56,0
,2,9907,33263,56,0
,2,9908,33265,56,0
,2,9909,33267,56,0
,2,9910,33269,56,0
,2,9911,33271,56,0
,2,9912,33273,56,0
,2,9913,33275,56,0
,2,9914,33277,56,0
,2,9915,33279,56,0
,2,9916,33281,56,0
,2,9917,33283,56,0
,2,9918,33285,56,0
,2,9919,33287,56,0
,2,9920,33289,56,0
,2,9921,33291,56,0
,2,9922,33293,56,0
,2,9923,33295,56,0
,2,9924,33297,56,0
,2,9925,33299,56,0
,2,9926,33301,56,0
,2,9927,33303,56,0
,2,9928,33305,56,0
,2,9929,33307,56,0
,2,9930,33309,56,0
,2,9931,33311,56,0
,2,9932,33313,56,0
,2,9933,33315,56,0
,2,9934,33317,56,0
,2,9935,33319,56,0
,2,9936,33321,56,0
,2,9937,33323,56,0
,2,9938,33325,56,0
,2,9939,33327,56,0
,2,9940,33329,56,0
,2,9941,33331,56,0
,2,9942,33333,56,0
,2,9943,33335,56,0
,2,9944,33337,56,0
,2,9945,33339,56,0
,2,9946,33341,56,0
,2,9947,33343,56,0
,2,9948,33345,56,0
,2,9949,33347,56,0
,2,9950,33349,56,0
,2,9951,33351,56,0
,2,9952,33353,56,0
,2,9953,33355,56,0
,2,9954,33357,56,0
,2,9955,33359,56,0
,2,9956,33361,56,0
,2,9957,33363,56,0
,2,9958,33365,56,0
,2,9959,33367,56,0
,2,9960,33369,56,0
,2,9961,33371,56,0
,2,9962,33373,56,0
,2,9963,33375,56,0
,2,9964,33377,56,0
,2,9965,33379,56,0
,2,9966,33381,56,0
,2,9967,33383,56,0
,2,9968,33385,56,0
,2,9969,33387,56,0
,2,9970,33389,56,0
,2,9971,33391,56,0
,2,9972,33393,56,0
,2,9973,33395,56,0
,2,9974,33397,56,0
,2,9975,33399,56,0
,2,9976,33401,56,0
,2,9977,33403,56,0
,2,9978,33405,56,0
,2,9979,33407,56,0
,2,9980,33409,56,0
,2,9981,33411,56,0
,2,9982,33413,56,0
,2,9983,33415,56,0
,2,9984,33417,56,0
,2,9985,33419,56,0
,2,9986,33421,56,0
,2,9987,33423,56,0
,2,9988,33425,56,0
,2,9989,33427,56,0
,2,9990,33429,56,0
,2,9991,33431,56,0
,2,9992,33433,56,0
,2,9993,33435,56,0
,2,9994,33437,56,0
,2,9995,33439,56,0
,2,9996,33441,56,0
,2,9997,33443,56,0
,2,9998,33445,56,0
,2,9999,33447,56,0
,2,10000,33449,56,0
,2,10001,33451,56,0
,2,10002,33453,56,0
,2,10003,33455,56,0
,2,10004,33457,56,0
,2,10005,33459,56,0
,2,10006,33461,56,0
,2,10007,33463,56,0
,2,10008,33465,56,0
,2,10009,33467,56,0
,2,10010,33469,56,0
,2,10011,33471,56,0
,2,10012,33473,56,0
,2,10013,33475,56,0
,2,10014,33477,56,0
,2,10015,33479,56,0
,2,10016,33481,56,0
,2,10017,33483,56,0
,2,10018,33485,56,0
,2,10019,33487,56,0
,2,10020,33489,56,0
,2,10021,33491,56,0
,2,10022,33493,56,0
,2,10023,33495,56,0
,2,10024,33497,56,0
,2,10025,33499,56,0
,2,10026,33501,56,0
,2,10027,33503,56,0
,2,10028,33505,56,0
,2,10029,33507,56,0
,2,10030,33509,56,0
,2,10031,33511,56,0
,2,10032,33513,56,0
,2,10033,33515,56,0
,2,10034,33517,56,0
,2,10035,33519,56,0
,2,10036,33521,56,0
,2,10037,33523,56,0
,2,10038,33525,56,0
,2,10039,33527,56,0
,2,10040,33529,56,0
,2,10041,33531,56,0
,2,10042,33533,56,0
,2,10043,33535,56,0
,2,10044,33537,56,0
,2,10045,33539,56,0
,2,10046,33541,56,0
,2,10047,33543,56,0
,2,10048,33545,56,0
,2,10049,33547,56,0
,2,10050,33549,56,0
,2,10051,33551,56,0
,2,10052,33553,56,0
,2,10053,33555,56,0
,2,10054,33557,56,0
,2,10055,33559,56,0
,2,10056,33561,56,0
,2,10057,33563,56,0
,2,10058,33565,56,0
,2,10059,33567,56,0
,2,10060,33569,56,0
,2,10061,33571,56,0
,2,10062,33573,56,0
,2,10063,33575,56,0
,2,10064,33577,56,0
,2,10065,33579,56,0
,2,10066,33581,56,0
,2,10067,33583,56,0
,2,10068,33585,56,0
,2,10069,33587,56,0
,2,10070,33589,56,0
,2,10071,33591,56,0
,2,10072,33593,56,0
,2,10073,33595,56,0
,2,10074,33597,56,0
,2,10075,33599,56,0
,2,10076,33601,56,0
,2,10077,33603,56,0
,2,10078,33605,56,0
,2,10079,33607,56,0
,2,10080,33609,56,0
,2,10081,33611,56,0
,2,10082,33613,56,0
,2,10083,33615,56,0
,2,10084,33617,56,0
,2,10085,33619,56,0
,2,10086,33621,56,0
,2,10087,33623,56,0
,2,10088,33625,56,0
,2,10089,33627,56,0
,2,10090,33629,56,0
,2,10091,33631,56,0
,2,10092,33633,56,0
,2,10093,33635,56,0
,2,10094,33637,56,0
,2,10095,33639,56,0
,2,10096,33641,56,0
,2,10097,33643,56,0
,2,10098,33645,56,0
,2,10099,33647,56,0
,2,10100,33649,56,0
,2,10101,33651,56,0
,2,10102,33653,56,0
,2,10103,33655,56,0
,2,10104,33657,56,0
,2,10105,33659,56,0
,2,10106,33661,56,0
,2,10107,33663,56,0
,2,10108,33665,56,0
,2,10109,33667,56,0
,2,10110,33669,56,0
,2,10111,33671,56,0
,2,10112,33673,56,0
,2,10113,33675,56,0
,2,10114,33677,56,0
,2,10115,33679,56,0
,2,10116,33681,56,0
,2,10117,33683,56,0
,2,10118,33685,56,0
,2,10119,33687,56,0
,2,10120,33689,56,0
,2,10121,33691,56,0
,2,10122,33693,56,0
,2,10123,33695,56,0
,2,10124,33697,56,0
,2,10125,33699,56,0
,2,10126,33701,56,0
,2,10127,33703,56,0
,2,10128,33705,56,0
,2,10129,33707,56,0
,2,10130,33709,56,0
,2,10131,33711,56,0
,2,10132,33713,56,0
,2,10133,33715,56,0
,2,10134,33717,56,0
,2,10135,33719,56,0
,2,10136,33721,56,0
,2,10137,33723,56,0
,2,10138,33725,56,0
,2,10139,33727,56,0
,2,10140,33729,56,0
,2,10141,33731,56,0
,2,10142,33733,56,0
,2,10143,33735,56,0
,2,10144,33737,56,0
,2,10145,33739,56,0
,2,10146,33741,56,0
,2,10147,33743,56,0
,2,10148,33745,56,0
,2,10149,33747,56,0
,2,10150,33749,56,0
,2,10151,33751,56,0
,2,10152,33753,56,0
,2,10153,33755,56,0
,2,10154,33757,56,0
,2,10155,33759,56,0
,2,10156,33761,56,0
,2,10157,33763,56,0
,2,10158,33765,56,0
,2,10159,33767,56,0
,2,10160,33769,56,0
,2,10161,33771,56,0
,2,10162,33773,56,0
,2,10163,33775,56,0
,2,10164,33777,56,0
,2,10165,33779,56,0
,2,10166,33781,56,0
,2,10167,33783,56,0
,2,10168,33785,56,0
,2,10169,33787,56,0
,2,10170,33789,56,0
,2,10171,33791,56,0
,2,10172,33793,56,0
,2,10173,33795,56,0
,2,10174,33797,56,0
,2,10175,33799,56,0
,2,10176,33801,56,0
,2,10177,33803,56,0
,2,10178,33805,56,0
,2,10179,33807,56,0
,2,10180,33809,56,0
,2,10181,33811,56,0
,2,10182,33813,56,0
,2,10183,33815,56,0
,2,10184,33817,56,0
,2,10185,33819,56,0
,2,10186,33821,56,0
,2,10187,33823,56,0
,2,10188,33825,56,0
,2,10189,33827,56,0
,2,10190,33829,56,0
,2,10191,33831,56,0
,2,10192,33833,56,0
,2,10193,33835,56,0
,2,10194,33837,56,0
,2,10195,33839,56,0
,2,10196,33841,56,0
,2,10197,33843,56,0
,2,10198,33845,56,0
,2,10199,33847,56,0
,2,10200,33849,56,0
,2,10201,33851,56,0
,2,10202,33853,56,0
,2,10203,33855,56,0
,2,10204,33857,56,0
,2,10205,33859,56,0
,2,10206,33861,56,0
,2,10207,33863,56,0
,2,10208,33865,56,0
,2,10209,33867,56,0
,2,10210,33869,56,0
,2,10211,33871,56,0
,2,10212,33873,56,0
,2,10213,33875,56,0
,2,10214,33877,56,0
,2,10215,33879,56,0
,2,10216,33881,56,0
,2,10217,33883,56,0
,2,10218,33885,56,0
,2,10219,33887,56,0
,2,10220,33889,56,0
,2,10221,33891,56,0
,2,10222,33893,56,0
,2,10223,33895,56,0
,2,10224,33897,56,0
,2,10225,33899,56,0
,2,10226,33901,56,0
,2,10227,33903,56,0
,2,10228,33905,56,0
,2,10229,33907,56,0
,2,10230,33909,56,0
,2,10231,33911,56,0
,2,10232,33913,56,0
,2,10233,33915,56,0
,2,10234,33917,56,0
,2,10235,33919,56,0
,2,10236,33921,56,0
,2,10237,33923,56,0
,2,10238,33925,56,0
,2,10239,33927,56,0
,2,10240,33929,56,0
,2,10241,33931,56,0
,2,10242,33933,56,0
,2,10243,33935,56,0
,2,10244,33937,56,0
,2,10245,33939,56,0
,2,10246,33941,56,0
,2,10247,33943,56,0
,2,10248,33945,56,0
,2,10249,33947,56,0
,2,10250,33949,56,0
,2,10251,33951,56,0
,2,10252,33953,56,0
,2,10253,33955,56,0
,2,10254,33957,56,0
,2,10255,33959,56,0
,2,10256,33961,56,0
,2,10257,33963,56,0
,2,10258,33965,56,0
,2,10259,33967,56,0
,2,10260,33969,56,0
,2,10261,33971,56,0
,2,10262,33973,56,0
,2,10263,33975,56,0
,2,10264,33977,56,0
,2,10265,33979,56,0
,2,10266,33981,56,0
,2,10267,33983,56,0
,2,10268,33985,56,0
,2,10269,33987,56,0
,2,10270,33989,56,0
,2,10271,33991,56,0
,2,10272,33993,56,0
,2,10273,33995,56,0
,2,10274,33997,56,0
,2,10275,33999,56,0
,2,10276,34001,56,0
,2,10277,34003,56,0
,2,10278,34005,56,0
,2,10279,34007,56,0
,2,10280,34009,56,0
,2,10281,34011,56,0
,2,10282,34013,56,0
,2,10283,34015,56,0
,2,10284,34017,56,0
,2,10285,34019,56,0
,2,10286,34021,56,0
,2,10287,34023,56,0
,2,10288,34025,56,0
,2,10289,34027,56,0
,2,10290,34029,56,0
,2,10291,34031,56,0
,2,10292,34033,56,0
,2,10293,34035,56,0
,2,10294,34037,56,0
,2,10295,34039,56,0
,2,10296,34041,56,0
,2,10297,34043,56,0
,2,10298,34045,56,0
,2,10299,34047,56,0
,2,10300,34049,56,0
,2,10301,34051,56,0
,2,10302,34053,56,0
,2,10303,34055,56,0
,2,10304,34057,56,0
,2,10305,34059,56,0
,2,10306,34061,56,0
,2,10307,34063,56,0
,2,10308,34065,56,0
,2,10309,34067,56,0
,2,10310,34069,56,0
,2,10311,34071,56,0
,2,10312,34073,56,0
,2,10313,34075,56,0
,2,10314,34077,56,0
,2,10315,34079,56,0
,2,10316,34081,56,0
,2,10317,34083,56,0
,2,10318,34085,56,0
,2,10319,34087,56,0
,2,10320,34089,56,0
,2,10321,34091,56,0
,2,10322,34093,56,0
,2,10323,34095,56,0
,2,10324,34097,56,0
,2,10325,34099,56,0
,2,10326,34101,56,0
,2,10327,34103,56,0
,2,10328,34105,56,0
,2,10329,34107,56,0
,2,10330,34109,56,0
,2,10331,34111,56,0
,2,10332,34113,56,0
,2,10333,34115,56,0
,2,10334,34117,56,0
,2,10335,34119,56,0
,2,10336,34121,56,0
,2,10337,34123,56,0
,2,10338,34125,56,0
,2,10339,34127,56,0
,2,10340,34129,56,0
,2,10341,34131,56,0
,2,10342,34133,56,0
,2,10343,34135,56,0
,2,10344,34137,56,0
,2,10345,34139,56,0
,2,10346,34141,56,0
,2,10347,34143,56,0
,2,10348,34145,56,0
,2,10349,34147,56,0
,2,10350,34149,56,0
,2,10351,34151,56,0
,2,10352,34153,56,0
,2,10353,34155,56,0
,2,10354,34157,56,0
,2,10355,34159,56,0
,2,10356,34161,56,0
,2,10357,34163,56,0
,2,10358,34165,56,0
,2,10359,34167,56,0
,2,10360,34169,56,0
,2,10361,34171,56,0
,2,10362,34173,56,0
,2,10363,34175,56,0
,2,10364,34177,56,0
,2,10365,34179,56,0
,2,10366,34181,56,0
,2,10367,34183,56,0
,2,10368,34185,56,0
,2,10369,34187,56,0
,2,10370,34189,56,0
,2,10371,34191,56,0
,2,10372,34193,56,0
,2,10373,34195,56,0
,2,10374,34197,56,0
,2,10375,34199,56,0
,2,10376,34201,56,0
,2,10377,34203,56,0
,2,10378,34205,56,0
,2,10379,34207,56,0
,2,10380,34209,56,0
,2,10381,34211,56,0
,2,10382,34213,56,0
,2,10383,34215,56,0
,2,10384,34217,56,0
,2,10385,34219,56,0
,2,10386,34221,56,0
,2,10387,34223,56,0
,2,10388,34225,56,0
,2,10389,34227,56,0
,2,10390,34229,56,0
,2,10391,34231,56,0
,2,10392,34233,56,0
,2,10393,34235,56,0
,2,10394,34237,56,0
,2,10395,34239,56,0
,2,10396,34241,56,0
,2,10397,34243,56,0
,2,10398,34245,56,0
,2,10399,34247,56,0
,2,10400,34249,56,0
,2,10401,34251,56,0
,2,10402,34253,56,0
,2,10403,34255,56,0
,2,10404,34257,56,0
,2,10405,34259,56,0
,2,10406,34261,56,0
,2,10407,34263,56,0
,2,10408,34265,56,0
,2,10409,34267,56,0
,2,10410,34269,56,0
,2,10411,34271,56,0
,2,10412,34273,56,0
,2,10413,34275,56,0
,2,10414,34277,56,0
,2,10415,34279,56,0
,2,10416,34281,56,0
,2,10417,34283,56,0
,2,10418,34285,56,0
,2,10419,34287,56,0
,2,10420,34289,56,0
,2,10421,34291,56,0
,2,10422,34293,56,0
,2,10423,34295,56,0
,2,10424,34297,56,0
,2,10425,34299,56,0
,2,10426,34301,56,0
,2,10427,34303,56,0
,2,10428,34305,56,0
,2,10429,34307,56,0
,2,10430,34309,56,0
,2,10431,34311,56,0
,2,10432,34313,56,0
,2,10433,34315,56,0
,2,10434,34317,56,0
,2,10435,34319,56,0
,2,10436,34321,56,0
,2,10437,34323,56,0
,2,10438,34325,56,0
,2,10439,34327,56,0
,2,10440,34329,56,0
,2,10441,34331,56,0
,2,10442,34333,56,0
,2,10443,34335,56,0
,2,10444,34337,56,0
,2,10445,34339,56,0
,2,10446,34341,56,0
,2,10447,34343,56,0
,2,10448,34345,56,0
,2,10449,34347,56,0
,2,10450,34349,56,0
,2,10451,34351,56,0
,2,10452,34353,56,0
,2,10453,34355,56,0
,2,10454,34357,56,0
,2,10455,34359,56,0
,2,10456,34361,56,0
,2,10457,34363,56,0
,2,10458,34365,56,0
,2,10459,34367,56,0
,2,10460,34369,56,0
,2,10461,34371,56,0
,2,10462,34373,56,0
,2,10463,34375,56,0
,2,10464,34377,56,0
,2,10465,34379,56,0
,2,10466,34381,56,0
,2,10467,34383,56,0
,2,10468,34385,56,0
,2,10469,34387,56,0
,2,10470,34389,56,0
,2,10471,34391,56,0
,2,10472,34393,56,0
,2,10473,34395,56,0
,2,10474,34397,56,0
,2,10475,34399,56,0
,2,10476,34401,56,0
,2,10477,34403,56,0
,2,10478,34405,56,0
,2,10479,34407,56,0
,2,10480,34409,56,0
,2,10481,34411,56,0
,2,10482,34413,56,0
,2,10483,34415,56,0
,2,10484,34417,56,0
,2,10485,34419,56,0
,2,10486,34421,56,0
,2,10487,34423,56,0
,2,10488,34425,56,0
,2,10489,34427,56,0
,2,10490,34429,56,0
,2,10491,34431,56,0
,2,10492,34433,56,0
,2,10493,34435,56,0
,2,10494,34437,56,0
,2,10495,34439,56,0
,2,10496,34441,56,0
,2,10497,34443,56,0
,2,10498,34445,56,0
,2,10499,34447,56,0
,2,10500,34449,56,0
,2,10501,34451,56,0
,2,10502,34453,56,0
,2,10503,34455,56,0
,2,10504,34457,56,0
,2,10505,34459,56,0
,2,10506,34461,56,0
,2,10507,34463,56,0
,2,10508,34465,56,0
,2,10509,34467,56,0
,2,10510,34469,56,0
,2,10511,34471,56,0
,2,10512,34473,56,0
,2,10513,34475,56,0
,2,10514,34477,56,0
,2,10515,34479,56,0
,2,10516,34481,56,0
,2,10517,34483,56,0
,2,10518,34485,56,0
,2,10519,34487,56,0
,2,10520,34489,56,0
,2,10521,34491,56,0
,2,10522,34493,56,0
,2,10523,34495,56,0
,2,10524,34497,56,0
,2,10525,34499,56,0
,2,10526,34501,56,0
,2,10527,34503,56,0
,2,10528,34505,56,0
,2,10529,34507,56,0
,2,10530,34509,56,0
,2,10531,34511,56,0
,2,10532,34513,56,0
,2,10533,34515,56,0
,2,10534,34517,56,0
,2,10535,34519,56,0
,2,10536,34521,56,0
,2,10537,34523,56,0
,2,10538,34525,56,0
,2,10539,34527,56,0
,2,10540,34529,56,0
,2,10541,34531,56,0
,2,10542,34533,56,0
,2,10543,34535,56,0
,2,10544,34537,56,0
,2,10545,34539,56,0
,2,10546,34541,56,0
,2,10547,34543,56,0
,2,10548,34545,56,0
,2,10549,34547,56,0
,2,10550,34549,56,0
,2,10551,34551,56,0
,2,10552,34553,56,0
,2,10553,34555,56,0
,2,10554,34557,56,0
,2,10555,34559,56,0
,2,10556,34561,56,0
,2,10557,34563,56,0
,2,10558,34565,56,0
,2,10559,34567,56,0
,2,10560,34569,56,0
,2,10561,34571,56,0
,2,10562,34573,56,0
,2,10563,34575,56,0
,2,10564,34577,56,0
,2,10565,34579,56,0
,2,10566,34581,56,0
,2,10567,34583,56,0
,2,10568,34585,56,0
,2,10569,34587,56,0
,2,10570,34589,56,0
,2,10571,34591,56,0
,2,10572,34593,56,0
,2,10573,34595,56,0
,2,10574,34597,56,0
,2,10575,34599,56,0
,2,10576,34601,56,0
,2,10577,34603,56,0
,2,10578,34605,56,0
,2,10579,34607,56,0
,2,10580,34609,56,0
,2,10581,34611,56,0
,2,10582,34613,56,0
,2,10583,34615,56,0
,2,10584,34617,56,0
,2,10585,34619,56,0
,2,10586,34621,56,0
,2,10587,34623,56,0
,2,10588,34625,56,0
,2,10589,34627,56,0
,2,10590,34629,56,0
,2,10591,34631,56,0
,2,10592,34633,56,0
,2,10593,34635,56,0
,2,10594,34637,56,0
,2,10595,34639,56,0
,2,10596,34641,56,0
,2,10597,34643,56,0
,2,10598,34645,56,0
,2,10599,34647,56,0
,2,10600,34649,56,0
,2,10601,34651,56,0
,2,10602,34653,56,0
,2,10603,34655,56,0
,2,10604,34657,56,0
,2,10605,34659,56,0
,2,10606,34661,56,0
,2,10607,34663,56,0
,2,10608,34665,56,0
,2,10609,34667,56,0
,2,10610,34669,56,0
,2,10611,34671,56,0
,2,10612,34673,56,0
,2,10613,34675,56,0
,2,10614,34677,56,0
,2,10615,34679,56,0
,2,10616,34681,56,0
,2,10617,34683,56,0
,2,10618,34685,56,0
,2,10619,34687,56,0
,2,10620,34689,56,0
,2,10621,34691,56,0
,2,10622,34693,56,0
,2,10623,34695,56,0
,2,10624,34697,56,0
,2,10625,34699,56,0
,2,10626,34701,56,0
,2,10627,34703,56,0
,2,10628,34705,56,0
,2,10629,34707,56,0
,2,10630,34709,56,0
,2,10631,34711,56,0
,2,10632,34713,56,0
,2,10633,34715,56,0
,2,10634,34717,56,0
,2,10635,34719,56,0
,2,10636,34721,56,0
,2,10637,34723,56,0
,2,10638,34725,56,0
,2,10639,34727,56,0
,2,10640,34729,56,0
,2,10641,34731,56,0
,2,10642,34733,56,0
,2,10643,34735,56,0
,2,10644,34737,56,0
,2,10645,34739,56,0
,2,10646,34741,56,0
,2,10647,34743,56,0
,2,10648,34745,56,0
,2,10649,34747,56,0
,2,10650,34749,56,0
,2,10651,34751,56,0
,2,10652,34753,56,0
,2,10653,34755,56,0
,2,10654,34757,56,0
,2,10655,34759,56,0
,2,10656,34761,56,0
,2,10657,34763,56,0
,2,10658,34765,56,0
,2,10659,34767,56,0
,2,10660,34769,56,0
,2,10661,34771,56,0
,2,10662,34773,56,0
,2,10663,34775,56,0
,2,10664,34777,56,0
,2,10665,34779,56,0
,2,10666,34781,56,0
,2,10667,34783,56,0
,2,10668,34785,56,0
,2,10669,34787,56,0
,2,10670,34789,56,0
,2,10671,34791,56,0
,2,10672,34793,56,0
,2,10673,34795,56,0
,2,10674,34797,56,0
,2,10675,34799,56,0
,2,10676,34801,56,0
,2,10677,34803,56,0
,2,10678,34805,56,0
,2,10679,34807,56,0
,2,10680,34809,56,0
,2,10681,34811,56,0
,2,10682,34813,56,0
,2,10683,34815,56,0
,2,10684,34817,56,0
,2,10685,34819,56,0
,2,10686,34821,56,0
,2,10687,34823,56,0
,2,10688,34825,56,0
,2,10689,34827,56,0
,2,10690,34829,56,0
,2,10691,34831,56,0
,2,10692,34833,56,0
,2,10693,34835,56,0
,2,10694,34837,56,0
,2,10695,34839,56,0
,2,10696,34841,56,0
,2,10697,34843,56,0
,2,10698,34845,56,0
,2,10699,34847,56,0
,2,10700,34849,56,0
,2,10701,34851,56,0
,2,10702,34853,56,0
,2,10703,34855,56,0
,2,10704,34857,56,0
,2,10705,34859,56,0
,2,10706,34861,56,0
,2,10707,34863,56,0
,2,10708,34865,56,0
,2,10709,34867,56,0
,2,10710,34869,56,0
,2,10711,34871,56,0
,2,10712,34873,56,0
,2,10713,34875,56,0
,2,10714,34877,56,0
,2,10715,34879,56,0
,2,10716,34881,56,0
,2,10717,34883,56,0
,2,10718,34885,56,0
,2,10719,34887,56,0
,2,10720,34889,56,0
,2,10721,34891,56,0
,2,10722,34893,56,0
,2,10723,34895,56,0
,2,10724,34897,56,0
,2,10725,34899,56,0
,2,10726,34901,56,0
,2,10727,34903,56,0
,2,10728,34905,56,0
,2,10729,34907,56,0
,2,10730,34909,56,0
,2,10731,34911,56,0
,2,10732,34913,56,0
,2,10733,34915,56,0
,2,10734,34917,56,0
,2,10735,34919,56,0
,2,10736,34921,56,0
,2,10737,34923,56,0
,2,10738,34925,56,0
,2,10739,34927,56,0
,2,10740,34929,56,0
,2,10741,34931,56,0
,2,10742,34933,56,0
,2,10743,34935,56,0
,2,10744,34937,56,0
,2,10745,34939,56,0
,2,10746,34941,56,0
,2,10747,34943,56,0
,2,10748,34945,56,0
,2,10749,34947,56,0
,2,10750,34949,56,0
,2,10751,34951,56,0
,2,10752,34953,56,0
,2,10753,34955,56,0
,2,10754,34957,56,0
,2,10755,34959,56,0
,2,10756,34961,56,0
,2,10757,34963,56,0
,2,10758,34965,56,0
,2,10759,34967,56,0
,2,10760,34969,56,0
,2,10761,34971,56,0
,2,10762,34973,56,0
,2,10763,34975,56,0
,2,10764,34977,56,0
,2,10765,34979,56,0
,2,10766,34981,56,0
,2,10767,34983,56,0
,2,10768,34985,56,0
,2,10769,34987,56,0
,2,10770,34989,56,0
,2,10771,34991,56,0
,2,10772,34993,56,0
,2,10773,34995,56,0
,2,10774,34997,56,0
,2,10775,34999,56,0
,2,10776,35001,56,0
,2,10777,35003,56,0
,2,10778,35005,56,0
,2,10779,35007,56,0
,2,10780,35009,56,0
,2,10781,35011,56,0
,2,10782,35013,56,0
,2,10783,35015,56,0
,2,10784,35017,56,0
,2,10785,35019,56,0
,2,10786,35021,56,0
,2,10787,35023,56,0
,2,10788,35025,56,0
,2,10789,35027,56,0
,2,10790,35029,56,0
,2,10791,35031,56,0
,2,10792,35033,56,0
,2,10793,35035,56,0
,2,10794,35037,56,0
,2,10795,35039,56,0
,2,10796,35041,56,0
,2,10797,35043,56,0
,2,10798,35045,56,0
,2,10799,35047,56,0
,2,10800,35049,56,0
,2,10801,35051,56,0
,2,10802,35053,56,0
,2,10803,35055,56,0
,2,10804,35057,56,0
,2,10805,35059,56,0
,2,10806,35061,56,0
,2,10807,35063,56,0
,2,10808,35065,56,0
,2,10809,35067,56,0
,2,10810,35069,56,0
,2,10811,35071,56,0
,2,10812,35073,56,0
,2,10813,35075,56,0
,2,10814,35077,56,0
,2,10815,35079,56,0
,2,10816,35081,56,0
,2,10817,35083,56,0
,2,10818,35085,56,0
,2,10819,35087,56,0
,2,10820,35089,56,0
,2,10821,35091,56,0
,2,10822,35093,56,0
,2,10823,35095,56,0
,2,10824,35097,56,0
,2,10825,35099,56,0
,2,10826,35101,56,0
,2,10827,35103,56,0
,2,10828,35105,56,0
,2,10829,35107,56,0
,2,10830,35109,56,0
,2,10831,35111,56,0
,2,10832,35113,56,0
,2,10833,35115,56,0
,2,10834,35117,56,0
,2,10835,35119,56,0
,2,10836,35121,56,0
,2,10837,35123,56,0
,2,10838,35125,56,0
,2,10839,35127,56,0
,2,10840,35129,56,0
,2,10841,35131,56,0
,2,10842,35133,56,0
,2,10843,35135,56,0
,2,10844,35137,56,0
,2,10845,35139,56,0
,2,10846,35141,56,0
,2,10847,35143,56,0
,2,10848,35145,56,0
,2,10849,35147,56,0
,2,10850,35149,56,0
,2,10851,35151,56,0
,2,10852,35153,56,0
,2,10853,35155,56,0
,2,10854,35157,56,0
,2,10855,35159,56,0
,2,10856,35161,56,0
,2,10857,35163,56,0
,2,10858,35165,56,0
,2,10859,35167,56,0
,2,10860,35169,56,0
,2,10861,35171,56,0
,2,10862,35173,56,0
,2,10863,35175,56,0
,2,10864,35177,56,0
,2,10865,35179,56,0
,2,10866,35181,56,0
,2,10867,35183,56,0
,2,10868,35185,56,0
,2,10869,35187,56,0
,2,10870,35189,56,0
,2,10871,35191,56,0
,2,10872,35193,56,0
,2,10873,35195,56,0
,2,10874,35197,56,0
,2,10875,35199,56,0
,2,10876,35201,56,0
,2,10877,35203,56,0
,2,10878,35205,56,0
,2,10879,35207,56,0
,2,10880,35209,56,0
,2,10881,35211,56,0
,2,10882,35213,56,0
,2,10883,35215,56,0
,2,10884,35217,56,0
,2,10885,35219,56,0
,2,10886,35221,56,0
,2,10887,35223,56,0
,2,10888,35225,56,0
,2,10889,35227,56,0
,2,10890,35229,56,0
,2,10891,35231,56,0
,2,10892,35233,56,0
,2,10893,35235,56,0
,2,10894,35237,56,0
,2,10895,35239,56,0
,2,10896,35241,56,0
,2,10897,35243,56,0
,2,10898,35245,56,0
,2,10899,35247,56,0
,2,10900,35249,56,0
,2,10901,35251,56,0
,2,10902,35253,56,0
,2,10903,35255,56,0
,2,10904,35257,56,0
,2,10905,35259,56,0
,2,10906,35261,56,0
,2,10907,35263,56,0
,2,10908,35265,56,0
,2,10909,35267,56,0
,2,10910,35269,56,0
,2,10911,35271,56,0
,2,10912,35273,56,0
,2,10913,35275,56,0
,2,10914,35277,56,0
,2,10915,35279,56,0
,2,10916,35281,56,0
,2,10917,35283,56,0
,2,10918,35285,56,0
,2,10919,35287,56,0
,2,10920,35289,56,0
,2,10921,35291,56,0
,2,10922,35293,56,0
,2,10923,35295,56,0
,2,10924,35297,56,0
,2,10925,35299,56,0
,2,10926,35301,56,0
,2,10927,35303,56,0
,2,10928,35305,56,0
,2,10929,35307,56,0
,2,10930,35309,56,0
,2,10931,35311,56,0
,2,10932,35313,56,0
,2,10933,35315,56,0
,2,10934,35317,56,0
,2,10935,35319,56,0
,2,10936,35321,56,0
,2,10937,35323,56,0
,2,10938,35325,56,0
,2,10939,35327,56,0
,2,10940,35329,56,0
,2,10941,35331,56,0
,2,10942,35333,56,0
,2,10943,35335,56,0
,2,10944,35337,56,0
,2,10945,35339,56,0
,2,10946,35341,56,0
,2,10947,35343,56,0
,2,10948,35345,56,0
,2,10949,35347,56,0
,2,10950,35349,56,0
,2,10951,35351,56,0
,2,10952,35353,56,0
,2,10953,35355,56,0
,2,10954,35357,56,0
,2,10955,35359,56,0
,2,10956,35361,56,0
,2,10957,35363,56,0
,2,10958,35365,56,0
,2,10959,35367,56,0
,2,10960,35369,56,0
,2,10961,35371,56,0
,2,10962,35373,56,0
,2,10963,35375,56,0
,2,10964,35377,56,0
,2,10965,35379,56,0
,2,10966,35381,56,0
,2,10967,35383,56,0
,2,10968,35385,56,0
,2,10969,35387,56,0
,2,10970,35389,56,0
,2,10971,35391,56,0
,2,10972,35393,56,0
,2,10973,35395,56,0
,2,10974,35397,56,0
,2,10975,35399,56,0
,2,10976,35401,56,0
,2,10977,35403,56,0
,2,10978,35405,56,0
,2,10979,35407,56,0
,2,10980,35409,56,0
,2,10981,35411,56,0
,2,10982,35413,56,0
,2,10983,35415,56,0
,2,10984,35417,56,0
,2,10985,35419,56,0
,2,10986,35421,56,0
,2,10987,35423,56,0
,2,10988,35425,56,0
,2,10989,35427,56,0
,2,10990,35429,56,0
,2,10991,35431,56,0
,2,10992,35433,56,0
,2,10993,35435,56,0
,2,10994,35437,56,0
,2,10995,35439,56,0
,2,10996,35441,56,0
,2,10997,35443,56,0
,2,10998,35445,56,0
,2,10999,35447,56,0
,2,11000,35449,56,0
,2,11001,35451,56,0
,2,11002,35453,56,0
,2,11003,35455,56,0
,2,11004,35457,56,0
,2,11005,35459,56,0
,2,11006,35461,56,0
,2,11007,35463,56,0
,2,11008,35465,56,0
,2,11009,35467,56,0
,2,11010,35469,56,0
,2,11011,35471,56,0
,2,11012,35473,56,0
,2,11013,35475,56,0
,2,11014,35477,56,0
,2,11015,35479,56,0
,2,11016,35481,56,0
,2,11017,35483,56,0
,2,11018,35485,56,0
,2,11019,35487,56,0
,2,11020,35489,56,0
,2,11021,35491,56,0
,2,11022,35493,56,0
,2,11023,35495,56,0
,2,11024,35497,56,0
,2,11025,35499,56,0
,2,11026,35501,56,0
,2,11027,35503,56,0
,2,11028,35505,56,0
,2,11029,35507,56,0
,2,11030,35509,56,0
,2,11031,35511,56,0
,2,11032,35513,56,0
,2,11033,35515,56,0
,2,11034,35517,56,0
,2,11035,35519,56,0
,2,11036,35521,56,0
,2,11037,35523,56,0
,2,11038,35525,56,0
,2,11039,35527,56,0
,2,11040,35529,56,0
,2,11041,35531,56,0
,2,11042,35533,56,0
,2,11043,35535,56,0
,2,11044,35537,56,0
,2,11045,35539,56,0
,2,11046,35541,56,0
,2,11047,35543,56,0
,2,11048,35545,56,0
,2,11049,35547,56,0
,2,11050,35549,56,0
,2,11051,35551,56,0
,2,11052,35553,56,0
,2,11053,35555,56,0
,2,11054,35557,56,0
,2,11055,35559,56,0
,2,11056,35561,56,0
,2,11057,35563,56,0
,2,11058,35565,56,0
,2,11059,35567,56,0
,2,11060,35569,56,0
,2,11061,35571,56,0
,2,11062,35573,56,0
,2,11063,35575,56,0
,2,11064,35577,56,0
,2,11065,35579,56,0
,2,11066,35581,56,0
,2,11067,35583,56,0
,2,11068,35585,56,0
,2,11069,35587,56,0
,2,11070,35589,56,0
,2,11071,35591,56,0
,2,11072,35593,56,0
,2,11073,35595,56,0
,2,11074,35597,56,0
,2,11075,35599,56,0
,2,11076,35601,56,0
,2,11077,35603,56,0
,2,11078,35605,56,0
,2,11079,35607,56,0
,2,11080,35609,56,0
,2,11081,35611,56,0
,2,11082,35613,56,0
,2,11083,35615,56,0
,2,11084,35617,56,0
,2,11085,35619,56,0
,2,11086,35621,56,0
,2,11087,35623,56,0
,2,11088,35625,56,0
,2,11089,35627,56,0
,2,11090,35629,56,0
,2,11091,35631,56,0
,2,11092,35633,56,0
,2,11093,35635,56,0
,2,11094,35637,56,0
,2,11095,35639,56,0
,2,11096,35641,56,0
,2,11097,35643,56,0
,2,11098,35645,56,0
,2,11099,35647,56,0
,2,11100,35649,56,0
,2,11101,35651,56,0
,2,11102,35653,56,0
,2,11103,35655,56,0
,2,11104,35657,56,0
,2,11105,35659,56,0
,2,11106,35661,56,0
,2,11107,35663,56,0
,2,11108,35665,56,0
,2,11109,35667,56,0
,2,11110,35669,56,0
,2,11111,35671,56,0
,2,11112,35673,56,0
,2,11113,35675,56,0
,2,11114,35677,56,0
,2,11115,35679,56,0
,2,11116,35681,56,0
,2,11117,35683,56,0
,2,11118,35685,56,0
,2,11119,35687,56,0
,2,11120,35689,56,0
,2,11121,35691,56,0
,2,11122,35693,56,0
,2,11123,35695,56,0
,2,11124,35697,56,0
,2,11125,35699,56,0
,2,11126,35701,56,0
,2,11127,35703,56,0
,2,11128,35705,56,0
,2,11129,35707,56,0
,2,11130,35709,56,0
,2,11131,35711,56,0
,2,11132,35713,56,0
,2,11133,35715,56,0
,2,11134,35717,56,0
,2,11135,35719,56,0
,2,11136,35721,56,0
,2,11137,35723,56,0
,2,11138,35725,56,0
,2,11139,35727,56,0
,2,11140,35729,56,0
,2,11141,35731,56,0
,2,11142,35733,56,0
,2,11143,35735,56,0
,2,11144,35737,56,0
,2,11145,35739,56,0
,2,11146,35741,56,0
,2,11147,35743,56,0
,2,11148,35745,56,0
,2,11149,35747,56,0
,2,11150,35749,56,0
,2,11151,35751,56,0
,2,11152,35753,56,0
,2,11153,35755,56,0
,2,11154,35757,56,0
,2,11155,35759,56,0
,2,11156,35761,56,0
,2,11157,35763,56,0
,2,11158,35765,56,0
,2,11159,35767,56,0
,2,11160,35769,56,0
,2,11161,35771,56,0
,2,11162,35773,56,0
,2,11163,35775,56,0
,2,11164,35777,56,0
,2,11165,35779,56,0
,2,11166,35781,56,0
,2,11167,35783,56,0
,2,11168,35785,56,0
,2,11169,35787,56,0
,2,11170,35789,56,0
,2,11171,35791,56,0
,2,11172,35793,56,0
,2,11173,35795,56,0
,2,11174,35797,56,0
,2,11175,35799,56,0
,2,11176,35801,56,0
,2,11177,35803,56,0
,2,11178,35805,56,0
,2,11179,35807,56,0
,2,11180,35809,56,0
,2,11181,35811,56,0
,2,11182,35813,56,0
,2,11183,35815,56,0
,2,11184,35817,56,0
,2,11185,35819,56,0
,2,11186,35821,56,0
,2,11187,35823,56,0
,2,11188,35825,56,0
,2,11189,35827,56,0
,2,11190,35829,56,0
,2,11191,35831,56,0
,2,11192,35833,56,0
,2,11193,35835,56,0
,2,11194,35837,56,0
,2,11195,35839,56,0
,2,11196,35841,56,0
,2,11197,35843,56,0
,2,11198,35845,56,0
,2,11199,35847,56,0
,2,11200,35849,56,0
,2,11201,35851,56,0
,2,11202,35853,56,0
,2,11203,35855,56,0
,2,11204,35857,56,0
,2,11205,35859,56,0
,2,11206,35861,56,0
,2,11207,35863,56,0
,2,11208,35865,56,0
,2,11209,35867,56,0
,2,11210,35869,56,0
,2,11211,35871,56,0
,2,11212,35873,56,0
,2,11213,35875,56,0
,2,11214,35877,56,0
,2,11215,35879,56,0
,2,11216,35881,56,0
,2,11217,35883,56,0
,2,11218,35885,56,0
,2,11219,35887,56,0
,2,11220,35889,56,0
,2,11221,35891,56,0
,2,11222,35893,56,0
,2,11223,35895,56,0
,2,11224,35897,56,0
,2,11225,35899,56,0
,2,11226,35901,56,0
,2,11227,35903,56,0
,2,11228,35905,56,0
,2,11229,35907,56,0
,2,11230,35909,56,0
,2,11231,35911,56,0
,2,11232,35913,56,0
,2,11233,35915,56,0
,2,11234,35917,56,0
,2,11235,35919,56,0
,2,11236,35921,56,0
,2,11237,35923,56,0
,2,11238,35925,56,0
,2,11239,35927,56,0
,2,11240,35929,56,0
,2,11241,35931,56,0
,2,11242,35933,56,0
,2,11243,35935,56,0
,2,11244,35937,56,0
,2,11245,35939,56,0
,2,11246,35941,56,0
,2,11247,35943,56,0
,2,11248,35945,56,0
,2,11249,35947,56,0
,2,11250,35949,56,0
,2,11251,35951,56,0
,2,11252,35953,56,0
,2,11253,35955,56,0
,2,11254,35957,56,0
,2,11255,35959,56,0
,2,11256,35961,56,0
,2,11257,35963,56,0
,2,11258,35965,56,0
,2,11259,35967,56,0
,2,11260,35969,56,0
,2,11261,35971,56,0
,2,11262,35973,56,0
,2,11263,35975,56,0
,2,11264,35977,56,0
,2,11265,35979,56,0
,2,11266,35981,56,0
,2,11267,35983,56,0
,2,11268,35985,56,0
,2,11269,35987,56,0
,2,11270,35989,56,0
,2,11271,35991,56,0
,2,11272,35993,56,0
,2,11273,35995,56,0
,2,11274,35997,56,0
,2,11275,35999,56,0
,2,11276,36001,56,0
,2,11277,36003,56,0
,2,11278,36005,56,0
,2,11279,36007,56,0
,2,11280,36009,56,0
,2,11281,36011,56,0
,2,11282,36013,56,0
,2,11283,36015,56,0
,2,11284,36017,56,0
,2,11285,36019,56,0
,2,11286,36021,56,0
,2,11287,36023,56,0
,2,11288,36025,56,0
,2,11289,36027,56,0
,2,11290,36029,56,0
,2,11291,36031,56,0
,2,11292,36033,56,0
,2,11293,36035,56,0
,2,11294,36037,56,0
,2,11295,36039,56,0
,2,11296,36041,56,0
,2,11297,36043,56,0
,2,11298,36045,56,0
,2,11299,36047,56,0
,2,11300,36049,56,0
,2,11301,36051,56,0
,2,11302,36053,56,0
,2,11303,36055,56,0
,2,11304,36057,56,0
,2,11305,36059,56,0
,2,11306,36061,56,0
,2,11307,36063,56,0
,2,11308,36065,56,0
,2,11309,36067,56,0
,2,11310,36069,56,0
,2,11311,36071,56,0
,2,11312,36073,56,0
,2,11313,36075,56,0
,2,11314,36077,56,0
,2,11315,36079,56,0
,2,11316,36081,56,0
,2,11317,36083,56,0
,2,11318,36085,56,0
,2,11319,36087,56,0
,2,11320,36089,56,0
,2,11321,36091,56,0
,2,11322,36093,56,0
,2,11323,36095,56,0
,2,11324,36097,56,0
,2,11325,36099,56,0
,2,11326,36101,56,0
,2,11327,36103,56,0
,2,11328,36105,56,0
,2,11329,36107,56,0
,2,11330,36109,56,0
,2,11331,36111,56,0
,2,11332,36113,56,0
,2,11333,36115,56,0
,2,11334,36117,56,0
,2,11335,36119,56,0
,2,11336,36121,56,0
,2,11337,36123,56,0
,2,11338,36125,56,0
,2,11339,36127,56,0
,2,11340,36129,56,0
,2,11341,36131,56,0
,2,11342,36133,56,0
,2,11343,36135,56,0
,2,11344,36137,56,0
,2,11345,36139,56,0
,2,11346,36141,56,0
,2,11347,36143,56,0
,2,11348,36145,56,0
,2,11349,36147,56,0
,2,11350,36149,56,0
,2,11351,36151,56,0
,2,11352,36153,56,0
,2,11353,36155,56,0
,2,11354,36157,56,0
,2,11355,36159,56,0
,2,11356,36161,56,0
,2,11357,36163,56,0
,2,11358,36165,56,0
,2,11359,36167,56,0
,2,11360,36169,56,0
,2,11361,36171,56,0
,2,11362,36173,56,0
,2,11363,36175,56,0
,2,11364,36177,56,0
,2,11365,36179,56,0
,2,11366,36181,56,0
,2,11367,36183,56,0
,2,11368,36185,56,0
,2,11369,36187,56,0
,2,11370,36189,56,0
,2,11371,36191,56,0
,2,11372,36193,56,0
,2,11373,36195,56,0
,2,11374,36197,56,0
,2,11375,36199,56,0
,2,11376,36201,56,0
,2,11377,36203,56,0
,2,11378,36205,56,0
,2,11379,36207,56,0
,2,11380,36209,56,0
,2,11381,36211,56,0
,2,11382,36213,56,0
,2,11383,36215,56,0
,2,11384,36217,56,0
,2,11385,36219,56,0
,2,11386,36221,56,0
,2,11387,36223,56,0
,2,11388,36225,56,0
,2,11389,36227,56,0
,2,11390,36229,56,0
,2,11391,36231,56,0
,2,11392,36233,56,0
,2,11393,36235,56,0
,2,11394,36237,56,0
,2,11395,36239,56,0
,2,11396,36241,56,0
,2,11397,36243,56,0
,2,11398,36245,56,0
,2,11399,36247,56,0
,2,11400,36249,56,0
,2,11401,36251,56,0
,2,11402,36253,56,0
,2,11403,36255,56,0
,2,11404,36257,56,0
,2,11405,36259,56,0
,2,11406,36261,56,0
,2,11407,36263,56,0
,2,11408,36265,56,0
,2,11409,36267,56,0
,2,11410,36269,56,0
,2,11411,36271,56,0
,2,11412,36273,56,0
,2,11413,36275,56,0
,2,11414,36277,56,0
,2,11415,36279,56,0
,2,11416,36281,56,0
,2,11417,36283,56,0
,2,11418,36285,56,0
,2,11419,36287,56,0
,2,11420,36289,56,0
,2,11421,36291,56,0
,2,11422,36293,56,0
,2,11423,36295,56,0
,2,11424,36297,56,0
,2,11425,36299,56,0
,2,11426,36301,56,0
,2,11427,36303,56,0
,2,11428,36305,56,0
,2,11429,36307,56,0
,2,11430,36309,56,0
,2,11431,36311,56,0
,2,11432,36313,56,0
,2,11433,36315,56,0
,2,11434,36317,56,0
,2,11435,36319,56,0
,2,11436,36321,56,0
,2,11437,36323,56,0
,2,11438,36325,56,0
,2,11439,36327,56,0
,2,11440,36329,56,0
,2,11441,36331,56,0
,2,11442,36333,56,0
,2,11443,36335,56,0
,2,11444,36337,56,0
,2,11445,36339,56,0
,2,11446,36341,56,0
,2,11447,36343,56,0
,2,11448,36345,56,0
,2,11449,36347,56,0
,2,11450,36349,56,0
,2,11451,36351,56,0
,2,11452,36353,56,0
,2,11453,36355,56,0
,2,11454,36357,56,0
,2,11455,36359,56,0
,2,11456,36361,56,0
,2,11457,36363,56,0
,2,11458,36365,56,0
,2,11459,36367,56,0
,2,11460,36369,56,0
,2,11461,36371,56,0
,2,11462,36373,56,0
,2,11463,36375,56,0
,2,11464,36377,56,0
,2,11465,36379,56,0
,2,11466,36381,56,0
,2,11467,36383,56,0
,2,11468,36385,56,0
,2,11469,36387,56,0
,2,11470,36389,56,0
,2,11471,36391,56,0
,2,11472,36393,56,0
,2,11473,36395,56,0
,2,11474,36397,56,0
,2,11475,36399,56,0
,2,11476,36401,56,0
,2,11477,36403,56,0
,2,11478,36405,56,0
,2,11479,36407,56,0
,2,11480,36409,56,0
,2,11481,36411,56,0
,2,11482,36413,56,0
,2,11483,36415,56,0
,2,11484,36417,56,0
,2,11485,36419,56,0
,2,11486,36421,56,0
,2,11487,36423,56,0
,2,11488,36425,56,0
,2,11489,36427,56,0
,2,11490,36429,56,0
,2,11491,36431,56,0
,2,11492,36433,56,0
,2,11493,36435,56,0
,2,11494,36437,56,0
,2,11495,36439,56,0
,2,11496,36441,56,0
,2,11497,36443,56,0
,2,11498,36445,56,0
,2,11499,36447,56,0
,2,11500,36449,56,0
,2,11501,36451,56,0
,2,11502,36453,56,0
,2,11503,36455,56,0
,2,11504,36457,56,0
,2,11505,36459,56,0
,2,11506,36461,56,0
,2,11507,36463,56,0
,2,11508,36465,56,0
,2,11509,36467,56,0
,2,11510,36469,56,0
,2,11511,36471,56,0
,2,11512,36473,56,0
,2,11513,36475,56,0
,2,11514,36477,56,0
,2,11515,36479,56,0
,2,11516,36481,56,0
,2,11517,36483,56,0
,2,11518,36485,56,0
,2,11519,36487,56,0
,2,11520,36489,56,0
,2,11521,36491,56,0
,2,11522,36493,56,0
,2,11523,36495,56,0
,2,11524,36497,56,0
,2,11525,36499,56,0
,2,11526,36501,56,0
,2,11527,36503,56,0
,2,11528,36505,56,0
,2,11529,36507,56,0
,2,11530,36509,56,0
,2,11531,36511,56,0
,2,11532,36513,56,0
,2,11533,36515,56,0
,2,11534,36517,56,0
,2,11535,36519,56,0
,2,11536,36521,56,0
,2,11537,36523,56,0
,2,11538,36525,56,0
,2,11539,36527,56,0
,2,11540,36529,56,0
,2,11541,36531,56,0
,2,11542,36533,56,0
,2,11543,36535,56,0
,2,11544,36537,56,0
,2,11545,36539,56,0
,2,11546,36541,56,0
,2,11547,36543,56,0
,2,11548,36545,56,0
,2,11549,36547,56,0
,2,11550,36549,56,0
,2,11551,36551,56,0
,2,11552,36553,56,0
,2,11553,36555,56,0
,2,11554,36557,56,0
,2,11555,36559,56,0
,2,11556,36561,56,0
,2,11557,36563,56,0
,2,11558,36565,56,0
,2,11559,36567,56,0
,2,11560,36569,56,0
,2,11561,36571,56,0
,2,11562,36573,56,0
,2,11563,36575,56,0
,2,11564,36577,56,0
,2,11565,36579,56,0
,2,11566,36581,56,0
,2,11567,36583,56,0
,2,11568,36585,56,0
,2,11569,36587,56,0
,2,11570,36589,56,0
,2,11571,36591,56,0
,2,11572,36593,56,0
,2,11573,36595,56,0
,2,11574,36597,56,0
,2,11575,36599,56,0
,2,11576,36601,56,0
,2,11577,36603,56,0
,2,11578,36605,56,0
,2,11579,36607,56,0
,2,11580,36609,56,0
,2,11581,36611,56,0
,2,11582,36613,56,0
,2,11583,36615,56,0
,2,11584,36617,56,0
,2,11585,36619,56,0
,2,11586,36621,56,0
,2,11587,36623,56,0
,2,11588,36625,56,0
,2,11589,36627,56,0
,2,11590,36629,56,0
,2,11591,36631,56,0
,2,11592,36633,56,0
,2,11593,36635,56,0
,2,11594,36637,56,0
,2,11595,36639,56,0
,2,11596,36641,56,0
,2,11597,36643,56,0
,2,11598,36645,56,0
,2,11599,36647,56,0
,2,11600,36649,56,0
,2,11601,36651,56,0
,2,11602,36653,56,0
,2,11603,36655,56,0
,2,11604,36657,56,0
,2,11605,36659,56,0
,2,11606,36661,56,0
,2,11607,36663,56,0
,2,11608,36665,56,0
,2,11609,36667,56,0
,2,11610,36669,56,0
,2,11611,36671,56,0
,2,11612,36673,56,0
,2,11613,36675,56,0
,2,11614,36677,56,0
,2,11615,36679,56,0
,2,11616,36681,56,0
,2,11617,36683,56,0
,2,11618,36685,56,0
,2,11619,36687,56,0
,2,11620,36689,56,0
,2,11621,36691,56,0
,2,11622,36693,56,0
,2,11623,36695,56,0
,2,11624,36697,56,0
,2,11625,36699,56,0
,2,11626,36701,56,0
,2,11627,36703,56,0
,2,11628,36705,56,0
,2,11629,36707,56,0
,2,11630,36709,56,0
,2,11631,36711,56,0
,2,11632,36713,56,0
,2,11633,36715,56,0
,2,11634,36717,56,0
,2,11635,36719,56,0
,2,11636,36721,56,0
,2,11637,36723,56,0
,2,11638,36725,56,0
,2,11639,36727,56,0
,2,11640,36729,56,0
,2,11641,36731,56,0
,2,11642,36733,56,0
,2,11643,36735,56,0
,2,11644,36737,56,0
,2,11645,36739,56,0
,2,11646,36741,56,0
,2,11647,36743,56,0
,2,11648,36745,56,0
,2,11649,36747,56,0
,2,11650,36749,56,0
,2,11651,36751,56,0
,2,11652,36753,56,0
,2,11653,36755,56,0
,2,11654,36757,56,0
,2,11655,36759,56,0
,2,11656,36761,56,0
,2,11657,36763,56,0
,2,11658,36765,56,0
,2,11659,36767,56,0
,2,11660,36769,56,0
,2,11661,36771,56,0
,2,11662,36773,56,0
,2,11663,36775,56,0
,2,11664,36777,56,0
,2,11665,36779,56,0
,2,11666,36781,56,0
,2,11667,36783,56,0
,2,11668,36785,56,0
,2,11669,36787,56,0
,2,11670,36789,56,0
,2,11671,36791,56,0
,2,11672,36793,56,0
,2,11673,36795,56,0
,2,11674,36797,56,0
,2,11675,36799,56,0
,2,11676,36801,56,0
,2,11677,36803,56,0
,2,11678,36805,56,0
,2,11679,36807,56,0
,2,11680,36809,56,0
,2,11681,36811,56,0
,2,11682,36813,56,0
,2,11683,36815,56,0
,2,11684,36817,56,0
,2,11685,36819,56,0
,2,11686,36821,56,0
,2,11687,36823,56,0
,2,11688,36825,56,0
,2,11689,36827,56,0
,2,11690,36829,56,0
,2,11691,36831,56,0
,2,11692,36833,56,0
,2,11693,36835,56,0
,2,11694,36837,56,0
,2,11695,36839,56,0
,2,11696,36841,56,0
,2,11697,36843,56,0
,2,11698,36845,56,0
,2,11699,36847,56,0
,2,11700,36849,56,0
,2,11701,36851,56,0
,2,11702,36853,56,0
,2,11703,36855,56,0
,2,11704,36857,56,0
,2,11705,36859,56,0
,2,11706,36861,56,0
,2,11707,36863,56,0
,2,11708,36865,56,0
,2,11709,36867,56,0
,2,11710,36869,56,0
,2,11711,36871,56,0
,2,11712,36873,56,0
,2,11713,36875,56,0
,2,11714,36877,56,0
,2,11715,36879,56,0
,2,11716,36881,56,0
,2,11717,36883,56,0
,2,11718,36885,56,0
,2,11719,36887,56,0
,2,11720,36889,56,0
,2,11721,36891,56,0
,2,11722,36893,56,0
,2,11723,36895,56,0
,2,11724,36897,56,0
,2,11725,36899,56,0
,2,11726,36901,56,0
,2,11727,36903,56,0
,2,11728,36905,56,0
,2,11729,36907,56,0
,2,11730,36909,56,0
,2,11731,36911,56,0
,2,11732,36913,56,0
,2,11733,36915,56,0
,2,11734,36917,56,0
,2,11735,36919,56,0
,2,11736,36921,56,0
,2,11737,36923,56,0
,2,11738,36925,56,0
,2,11739,36927,56,0
,2,11740,36929,56,0
,2,11741,36931,56,0
,2,11742,36933,56,0
,2,11743,36935,56,0
,2,11744,36937,56,0
,2,11745,36939,56,0
,2,11746,36941,56,0
,2,11747,36943,56,0
,2,11748,36945,56,0
,2,11749,36947,56,0
,2,11750,36949,56,0
,2,11751,36951,56,0
,2,11752,36953,56,0
,2,11753,36955,56,0
,2,11754,36957,56,0
,2,11755,36959,56,0
,2,11756,36961,56,0
,2,11757,36963,56,0
,2,11758,36965,56,0
,2,11759,36967,56,0
,2,11760,36969,56,0
,2,11761,36971,56,0
,2,11762,36973,56,0
,2,11763,36975,56,0
,2,11764,36977,56,0
,2,11765,36979,56,0
,2,11766,36981,56,0
,2,11767,36983,56,0
,2,11768,36985,56,0
,2,11769,36987,56,0
,2,11770,36989,56,0
,2,11771,36991,56,0
,2,11772,36993,56,0
,2,11773,36995,56,0
,2,11774,36997,56,0
,2,11775,36999,56,0
,2,11776,37001,56,0
,2,11777,37003,56,0
,2,11778,37005,56,0
,2,11779,37007,56,0
,2,11780,37009,56,0
,2,11781,37011,56,0
,2,11782,37013,56,0
,2,11783,37015,56,0
,2,11784,37017,56,0
,2,11785,37019,56,0
,2,11786,37021,56,0
,2,11787,37023,56,0
,2,11788,37025,56,0
,2,11789,37027,56,0
,2,11790,37029,56,0
,2,11791,37031,56,0
,2,11792,37033,56,0
,2,11793,37035,56,0
,2,11794,37037,56,0
,2,11795,37039,56,0
,2,11796,37041,56,0
,2,11797,37043,56,0
,2,11798,37045,56,0
,2,11799,37047,56,0
,2,11800,37049,56,0
,2,11801,37051,56,0
,2,11802,37053,56,0
,2,11803,37055,56,0
,2,11804,37057,56,0
,2,11805,37059,56,0
,2,11806,37061,56,0
,2,11807,37063,56,0
,2,11808,37065,56,0
,2,11809,37067,56,0
,2,11810,37069,56,0
,2,11811,37071,56,0
,2,11812,37073,56,0
,2,11813,37075,56,0
,2,11814,37077,56,0
,2,11815,37079,56,0
,2,11816,37081,56,0
,2,11817,37083,56,0
,2,11818,37085,56,0
,2,11819,37087,56,0
,2,11820,37089,56,0
,2,11821,37091,56,0
,2,11822,37093,56,0
,2,11823,37095,56,0
,2,11824,37097,56,0
,2,11825,37099,56,0
,2,11826,37101,56,0
,2,11827,37103,56,0
,2,11828,37105,56,0
,2,11829,37107,56,0
,2,11830,37109,56,0
,2,11831,37111,56,0
,2,11832,37113,56,0
,2,11833,37115,56,0
,2,11834,37117,56,0
,2,11835,37119,56,0
,2,11836,37121,56,0
,2,11837,37123,56,0
,2,11838,37125,56,0
,2,11839,37127,56,0
,2,11840,37129,56,0
,2,11841,37131,56,0
,2,11842,37133,56,0
,2,11843,37135,56,0
,2,11844,37137,56,0
,2,11845,37139,56,0
,2,11846,37141,56,0
,2,11847,37143,56,0
,2,11848,37145,56,0
,2,11849,37147,56,0
,2,11850,37149,56,0
,2,11851,37151,56,0
,2,11852,37153,56,0
,2,11853,37155,56,0
,2,11854,37157,56,0
,2,11855,37159,56,0
,2,11856,37161,56,0
,2,11857,37163,56,0
,2,11858,37165,56,0
,2,11859,37167,56,0
,2,11860,37169,56,0
,2,11861,37171,56,0
,2,11862,37173,56,0
,2,11863,37175,56,0
,2,11864,37177,56,0
,2,11865,37179,56,0
,2,11866,37181,56,0
,2,11867,37183,56,0
,2,11868,37185,56,0
,2,11869,37187,56,0
,2,11870,37189,56,0
,2,11871,37191,56,0
,2,11872,37193,56,0
,2,11873,37195,56,0
,2,11874,37197,56,0
,2,11875,37199,56,0
,2,11876,37201,56,0
,2,11877,37203,56,0
,2,11878,37205,56,0
,2,11879,37207,56,0
,2,11880,37209,56,0
,2,11881,37211,56,0
,2,11882,37213,56,0
,2,11883,37215,56,0
,2,11884,37217,56,0
,2,11885,37219,56,0
,2,11886,37221,56,0
,2,11887,37223,56,0
,2,11888,37225,56,0
,2,11889,37227,56,0
,2,11890,37229,56,0
,2,11891,37231,56,0
,2,11892,37233,56,0
,2,11893,37235,56,0
,2,11894,37237,56,0
,2,11895,37239,56,0
,2,11896,37241,56,0
,2,11897,37243,56,0
,2,11898,37245,56,0
,2,11899,37247,56,0
,2,11900,37249,56,0
,2,11901,37251,56,0
,2,11902,37253,56,0
,2,11903,37255,56,0
,2,11904,37257,56,0
,2,11905,37259,56,0
,2,11906,37261,56,0
,2,11907,37263,56,0
,2,11908,37265,56,0
,2,11909,37267,56,0
,2,11910,37269,56,0
,2,11911,37271,56,0
,2,11912,37273,56,0
,2,11913,37275,56,0
,2,11914,37277,56,0
,2,11915,37279,56,0
,2,11916,37281,56,0
,2,11917,37283,56,0
,2,11918,37285,56,0
,2,11919,37287,56,0
,2,11920,37289,56,0
,2,11921,37291,56,0
,2,11922,37293,56,0
,2,11923,37295,56,0
,2,11924,37297,56,0
,2,11925,37299,56,0
,2,11926,37301,56,0
,2,11927,37303,56,0
,2,11928,37305,56,0
,2,11929,37307,56,0
,2,11930,37309,56,0
,2,11931,37311,56,0
,2,11932,37313,56,0
,2,11933,37315,56,0
,2,11934,37317,56,0
,2,11935,37319,56,0
,2,11936,37321,56,0
,2,11937,37323,56,0
,2,11938,37325,56,0
,2,11939,37327,56,0
,2,11940,37329,56,0
,2,11941,37331,56,0
,2,11942,37333,56,0
,2,11943,37335,56,0
,2,11944,37337,56,0
,2,11945,37339,56,0
,2,11946,37341,56,0
,2,11947,37343,56,0
,2,11948,37345,56,0
,2,11949,37347,56,0
,2,11950,37349,56,0
,2,11951,37351,56,0
,2,11952,37353,56,0
,2,11953,37355,56,0
,2,11954,37357,56,0
,2,11955,37359,56,0
,2,11956,37361,56,0
,2,11957,37363,56,0
,2,11958,37365,56,0
,2,11959,37367,56,0
,2,11960,37369,56,0
,2,11961,37371,56,0
,2,11962,37373,56,0
,2,11963,37375,56,0
,2,11964,37377,56,0
,2,11965,37379,56,0
,2,11966,37381,56,0
,2,11967,37383,56,0
,2,11968,37385,56,0
,2,11969,37387,56,0
,2,11970,37389,56,0
,2,11971,37391,56,0
,2,11972,37393,56,0
,2,11973,37395,56,0
,2,11974,37397,56,0
,2,11975,37399,56,0
,2,11976,37401,56,0
,2,11977,37403,56,0
,2,11978,37405,56,0
,2,11979,37407,56,0
,2,11980,37409,56,0
,2,11981,37411,56,0
,2,11982,37413,56,0
,2,11983,37415,56,0
,2,11984,37417,56,0
,2,11985,37419,56,0
,2,11986,37421,56,0
,2,11987,37423,56,0
,2,11988,37425,56,0
,2,11989,37427,56,0
,2,11990,37429,56,0
,2,11991,37431,56,0
,2,11992,37433,56,0
,2,11993,37435,56,0
,2,11994,37437,56,0
,2,11995,37439,56,0
,2,11996,37441,56,0
,2,11997,37443,56,0
,2,11998,37445,56,0
,2,11999,37447,56,0
,2,12000,37449,56,0
,2,12001,37451,56,0
,2,12002,37453,56,0
,2,12003,37455,56,0
,2,12004,37457,56,0
,2,12005,37459,56,0
,2,12006,37461,56,0
,2,12007,37463,56,0
,2,12008,37465,56,0
,2,12009,37467,56,0
,2,12010,37469,56,0
,2,12011,37471,56,0
,2,12012,37473,56,0
,2,12013,37475,56,0
,2,12014,37477,56,0
,2,12015,37479,56,0
,2,12016,37481,56,0
,2,12017,37483,56,0
,2,12018,37485,56,0
,2,12019,37487,56,0
,2,12020,37489,56,0
,2,12021,37491,56,0
,2,12022,37493,56,0
,2,12023,37495,56,0
,2,12024,37497,56,0
,2,12025,37499,56,0
,2,12026,37501,56,0
,2,12027,37503,56,0
,2,12028,37505,56,0
,2,12029,37507,56,0
,2,12030,37509,56,0
,2,12031,37511,56,0
,2,12032,37513,56,0
,2,12033,37515,56,0
,2,12034,37517,56,0
,2,12035,37519,56,0
,2,12036,37521,56,0
,2,12037,37523,56,0
,2,12038,37525,56,0
,2,12039,37527,56,0
,2,12040,37529,56,0
,2,12041,37531,56,0
,2,12042,37533,56,0
,2,12043,37535,56,0
,2,12044,37537,56,0
,2,12045,37539,56,0
,2,12046,37541,56,0
,2,12047,37543,56,0
,2,12048,37545,56,0
,2,12049,37547,56,0
,2,12050,37549,56,0
,2,12051,37551,56,0
,2,12052,37553,56,0
,2,12053,37555,56,0
,2,12054,37557,56,0
,2,12055,37559,56,0
,2,12056,37561,56,0
,2,12057,37563,56,0
,2,12058,37565,56,0
,2,12059,37567,56,0
,2,12060,37569,56,0
,2,12061,37571,56,0
,2,12062,37573,56,0
,2,12063,37575,56,0
,2,12064,37577,56,0
,2,12065,37579,56,0
,2,12066,37581,56,0
,2,12067,37583,56,0
,2,12068,37585,56,0
,2,12069,37587,56,0
,2,12070,37589,56,0
,2,12071,37591,56,0
,2,12072,37593,56,0
,2,12073,37595,56,0
,2,12074,37597,56,0
,2,12075,37599,56,0
,2,12076,37601,56,0
,2,12077,37603,56,0
,2,12078,37605,56,0
,2,12079,37607,56,0
,2,12080,37609,56,0
,2,12081,37611,56,0
,2,12082,37613,56,0
,2,12083,37615,56,0
,2,12084,37617,56,0
,2,12085,37619,56,0
,2,12086,37621,56,0
,2,12087,37623,56,0
,2,12088,37625,56,0
,2,12089,37627,56,0
,2,12090,37629,56,0
,2,12091,37631,56,0
,2,12092,37633,56,0
,2,12093,37635,56,0
,2,12094,37637,56,0
,2,12095,37639,56,0
,2,12096,37641,56,0
,2,12097,37643,56,0
,2,12098,37645,56,0
,2,12099,37647,56,0
,2,12100,37649,56,0
,2,12101,37651,56,0
,2,12102,37653,56,0
,2,12103,37655,56,0
,2,12104,37657,56,0
,2,12105,37659,56,0
,2,12106,37661,56,0
,2,12107,37663,56,0
,2,12108,37665,56,0
,2,12109,37667,56,0
,2,12110,37669,56,0
,2,12111,37671,56,0
,2,12112,37673,56,0
,2,12113,37675,56,0
,2,12114,37677,56,0
,2,12115,37679,56,0
,2,12116,37681,56,0
,2,12117,37683,56,0
,2,12118,37685,56,0
,2,12119,37687,56,0
,2,12120,37689,56,0
,2,12121,37691,56,0
,2,12122,37693,56,0
,2,12123,37695,56,0
,2,12124,37697,56,0
,2,12125,37699,56,0
,2,12126,37701,56,0
,2,12127,37703,56,0
,2,12128,37705,56,0
,2,12129,37707,56,0
,2,12130,37709,56,0
,2,12131,37711,56,0
,2,12132,37713,56,0
,2,12133,37715,56,0
,2,12134,37717,56,0
,2,12135,37719,56,0
,2,12136,37721,56,0
,2,12137,37723,56,0
,2,12138,37725,56,0
,2,12139,37727,56,0
,2,12140,37729,56,0
,2,12141,37731,56,0
,2,12142,37733,56,0
,2,12143,37735,56,0
,2,12144,37737,56,0
,2,12145,37739,56,0
,2,12146,37741,56,0
,2,12147,37743,56,0
,2,12148,37745,56,0
,2,12149,37747,56,0
,2,12150,37749,56,0
,2,12151,37751,56,0
,2,12152,37753,56,0
,2,12153,37755,56,0
,2,12154,37757,56,0
,2,12155,37759,56,0
,2,12156,37761,56,0
,2,12157,37763,56,0
,2,12158,37765,56,0
,2,12159,37767,56,0
,2,12160,37769,56,0
,2,12161,37771,56,0
,2,12162,37773,56,0
,2,12163,37775,56,0
,2,12164,37777,56,0
,2,12165,37779,56,0
,2,12166,37781,56,0
,2,12167,37783,56,0
,2,12168,37785,56,0
,2,12169,37787,56,0
,2,12170,37789,56,0
,2,12171,37791,56,0
,2,12172,37793,56,0
,2,12173,37795,56,0
,2,12174,37797,56,0
,2,12175,37799,56,0
,2,12176,37801,56,0
,2,12177,37803,56,0
,2,12178,37805,56,0
,2,12179,37807,56,0
,2,12180,37809,56,0
,2,12181,37811,56,0
,2,12182,37813,56,0
,2,12183,37815,56,0
,2,12184,37817,56,0
,2,12185,37819,56,0
,2,12186,37821,56,0
,2,12187,37823,56,0
,2,12188,37825,56,0
,2,12189,37827,56,0
,2,12190,37829,56,0
,2,12191,37831,56,0
,2,12192,37833,56,0
,2,12193,37835,56,0
,2,12194,37837,56,0
,2,12195,37839,56,0
,2,12196,37841,56,0
,2,12197,37843,56,0
,2,12198,37845,56,0
,2,12199,37847,56,0
,2,12200,37849,56,0
,2,12201,37851,56,0
,2,12202,37853,56,0
,2,12203,37855,56,0
,2,12204,37857,56,0
,2,12205,37859,56,0
,2,12206,37861,56,0
,2,12207,37863,56,0
,2,12208,37865,56,0
,2,12209,37867,56,0
,2,12210,37869,56,0
,2,12211,37871,56,0
,2,12212,37873,56,0
,2,12213,37875,56,0
,2,12214,37877,56,0
,2,12215,37879,56,0
,2,12216,37881,56,0
,2,12217,37883,56,0
,2,12218,37885,56,0
,2,12219,37887,56,0
,2,12220,37889,56,0
,2,12221,37891,56,0
,2,12222,37893,56,0
,2,12223,37895,56,0
,2,12224,37897,56,0
,2,12225,37899,56,0
,2,12226,37901,56,0
,2,12227,37903,56,0
,2,12228,37905,56,0
,2,12229,37907,56,0
,2,12230,37909,56,0
,2,12231,37911,56,0
,2,12232,37913,56,0
,2,12233,37915,56,0
,2,12234,37917,56,0
,2,12235,37919,56,0
,2,12236,37921,56,0
,2,12237,37923,56,0
,2,12238,37925,56,0
,2,12239,37927,56,0
,2,12240,37929,56,0
,2,12241,37931,56,0
,2,12242,37933,56,0
,2,12243,37935,56,0
,2,12244,37937,56,0
,2,12245,37939,56,0
,2,12246,37941,56,0
,2,12247,37943,56,0
,2,12248,37945,56,0
,2,12249,37947,56,0
,2,12250,37949,56,0
,2,12251,37951,56,0
,2,12252,37953,56,0
,2,12253,37955,56,0
,2,12254,37957,56,0
,2,12255,37959,56,0
,2,12256,37961,56,0
,2,12257,37963,56,0
,2,12258,37965,56,0
,2,12259,37967,56,0
,2,12260,37969,56,0
,2,12261,37971,56,0
,2,12262,37973,56,0
,2,12263,37975,56,0
,2,12264,37977,56,0
,2,12265,37979,56,0
,2,12266,37981,56,0
,2,12267,37983,56,0
,2,12268,37985,56,0
,2,12269,37987,56,0
,2,12270,37989,56,0
,2,12271,37991,56,0
,2,12272,37993,56,0
,2,12273,37995,56,0
,2,12274,37997,56,0
,2,12275,37999,56,0
,2,12276,38001,56,0
,2,12277,38003,56,0
,2,12278,38005,56,0
,2,12279,38007,56,0
,2,12280,38009,56,0
,2,12281,38011,56,0
,2,12282,38013,56,0
,2,12283,38015,56,0
,2,12284,38017,56,0
,2,12285,38019,56,0
,2,12286,38021,56,0
,2,12287,38023,56,0
,2,12288,38025,56,0
,2,12289,38027,56,0
,2,12290,38029,56,0
,2,12291,38031,56,0
,2,12292,38033,56,0
,2,12293,38035,56,0
,2,12294,38037,56,0
,2,12295,38039,56,0
,2,12296,38041,56,0
,2,12297,38043,56,0
,2,12298,38045,56,0
,2,12299,38047,56,0
,2,12300,38049,56,0
,2,12301,38051,56,0
,2,12302,38053,56,0
,2,12303,38055,56,0
,2,12304,38057,56,0
,2,12305,38059,56,0
,2,12306,38061,56,0
,2,12307,38063,56,0
,2,12308,38065,56,0
,2,12309,38067,56,0
,2,12310,38069,56,0
,2,12311,38071,56,0
,2,12312,38073,56,0
,2,12313,38075,56,0
,2,12314,38077,56,0
,2,12315,38079,56,0
,2,12316,38081,56,0
,2,12317,38083,56,0
,2,12318,38085,56,0
,2,12319,38087,56,0
,2,12320,38089,56,0
,2,12321,38091,56,0
,2,12322,38093,56,0
,2,12323,38095,56,0
,2,12324,38097,56,0
,2,12325,38099,56,0
,2,12326,38101,56,0
,2,12327,38103,56,0
,2,12328,38105,56,0
,2,12329,38107,56,0
,2,12330,38109,56,0
,2,12331,38111,56,0
,2,12332,38113,56,0
,2,12333,38115,56,0
,2,12334,38117,56,0
,2,12335,38119,56,0
,2,12336,38121,56,0
,2,12337,38123,56,0
,2,12338,38125,56,0
,2,12339,38127,56,0
,2,12340,38129,56,0
,2,12341,38131,56,0
,2,12342,38133,56,0
,2,12343,38135,56,0
,2,12344,38137,56,0
,2,12345,38139,56,0
,2,12346,38141,56,0
,2,12347,38143,56,0
,2,12348,38145,56,0
,2,12349,38147,56,0
,2,12350,38149,56,0
,2,12351,38151,56,0
,2,12352,38153,56,0
,2,12353,38155,56,0
,2,12354,38157,56,0
,2,12355,38159,56,0
,2,12356,38161,56,0
,2,12357,38163,56,0
,2,12358,38165,56,0
,2,12359,38167,56,0
,2,12360,38169,56,0
,2,12361,38171,56,0
,2,12362,38173,56,0
,2,12363,38175,56,0
,2,12364,38177,56,0
,2,12365,38179,56,0
,2,12366,38181,56,0
,2,12367,38183,56,0
,2,12368,38185,56,0
,2,12369,38187,56,0
,2,12370,38189,56,0
,2,12371,38191,56,0
,2,12372,38193,56,0
,2,12373,38195,56,0
,2,12374,38197,56,0
,2,12375,38199,56,0
,2,12376,38201,56,0
,2,12377,38203,56,0
,2,12378,38205,56,0
,2,12379,38207,56,0
,2,12380,38209,56,0
,2,12381,38211,56,0
,2,12382,38213,56,0
,2,12383,38215,56,0
,2,12384,38217,56,0
,2,12385,38219,56,0
,2,12386,38221,56,0
,2,12387,38223,56,0
,2,12388,38225,56,0
,2,12389,38227,56,0
,2,12390,38229,56,0
,2,12391,38231,56,0
,2,12392,38233,56,0
,2,12393,38235,56,0
,2,12394,38237,56,0
,2,12395,38239,56,0
,2,12396,38241,56,0
,2,12397,38243,56,0
,2,12398,38245,56,0
,2,12399,38247,56,0
,2,12400,38249,56,0
,2,12401,38251,56,0
,2,12402,38253,56,0
,2,12403,38255,56,0
,2,12404,38257,56,0
,2,12405,38259,56,0
,2,12406,38261,56,0
,2,12407,38263,56,0
,2,12408,38265,56,0
,2,12409,38267,56,0
,2,12410,38269,56,0
,2,12411,38271,56,0
,2,12412,38273,56,0
,2,12413,38275,56,0
,2,12414,38277,56,0
,2,12415,38279,56,0
,2,12416,38281,56,0
,2,12417,38283,56,0
,2,12418,38285,56,0
,2,12419,38287,56,0
,2,12420,38289,56,0
,2,12421,38291,56,0
,2,12422,38293,56,0
,2,12423,38295,56,0
,2,12424,38297,56,0
,2,12425,38299,56,0
,2,12426,38301,56,0
,2,12427,38303,56,0
,2,12428,38305,56,0
,2,12429,38307,56,0
,2,12430,38309,56,0
,2,12431,38311,56,0
,2,12432,38313,56,0
,2,12433,38315,56,0
,2,12434,38317,56,0
,2,12435,38319,56,0
,2,12436,38321,56,0
,2,12437,38323,56,0
,2,12438,38325,56,0
,2,12439,38327,56,0
,2,12440,38329,56,0
,2,12441,38331,56,0
,2,12442,38333,56,0
,2,12443,38335,56,0
,2,12444,38337,56,0
,2,12445,38339,56,0
,2,12446,38341,56,0
,2,12447,38343,56,0
,2,12448,38345,56,0
,2,12449,38347,56,0
,2,12450,38349,56,0
,2,12451,38351,56,0
,2,12452,38353,56,0
,2,12453,38355,56,0
,2,12454,38357,56,0
,2,12455,38359,56,0
,2,12456,38361,56,0
,2,12457,38363,56,0
,2,12458,38365,56,0
,2,12459,38367,56,0
,2,12460,38369,56,0
,2,12461,38371,56,0
,2,12462,38373,56,0
,2,12463,38375,56,0
,2,12464,38377,56,0
,2,12465,38379,56,0
,2,12466,38381,56,0
,2,12467,38383,56,0
,2,12468,38385,56,0
,2,12469,38387,56,0
,2,12470,38389,56,0
,2,12471,38391,56,0
,2,12472,38393,56,0
,2,12473,38395,56,0
,2,12474,38397,56,0
,2,12475,38399,56,0
,2,12476,38401,56,0
,2,12477,38403,56,0
,2,12478,38405,56,0
,2,12479,38407,56,0
,2,12480,38409,56,0
,2,12481,38411,56,0
,2,12482,38413,56,0
,2,12483,38415,56,0
,2,12484,38417,56,0
,2,12485,38419,56,0
,2,12486,38421,56,0
,2,12487,38423,56,0
,2,12488,38425,56,0
,2,12489,38427,56,0
,2,12490,38429,56,0
,2,12491,38431,56,0
,2,12492,38433,56,0
,2,12493,38435,56,0
,2,12494,38437,56,0
,2,12495,38439,56,0
,2,12496,38441,56,0
,2,12497,38443,56,0
,2,12498,38445,56,0
,2,12499,38447,56,0
,2,12500,38449,56,0
,2,12501,38451,56,0
,2,12502,38453,56,0
,2,12503,38455,56,0
,2,12504,38457,56,0
,2,12505,38459,56,0
,2,12506,38461,56,0
,2,12507,38463,56,0
,2,12508,38465,56,0
,2,12509,38467,56,0
,2,12510,38469,56,0
,2,12511,38471,56,0
,2,12512,38473,56,0
,2,12513,38475,56,0
,2,12514,38477,56,0
,2,12515,38479,56,0
,2,12516,38481,56,0
,2,12517,38483,56,0
,2,12518,38485,56,0
,2,12519,38487,56,0
,2,12520,38489,56,0
,2,12521,38491,56,0
,2,12522,38493,56,0
,2,12523,38495,56,0
,2,12524,38497,56,0
,2,12525,38499,56,0
,2,12526,38501,56,0
,2,12527,38503,56,0
,2,12528,38505,56,0
,2,12529,38507,56,0
,2,12530,38509,56,0
,2,12531,38511,56,0
,2,12532,38513,56,0
,2,12533,38515,56,0
,2,12534,38517,56,0
,2,12535,38519,56,0
,2,12536,38521,56,0
,2,12537,38523,56,0
,2,12538,38525,56,0
,2,12539,38527,56,0
,2,12540,38529,56,0
,2,12541,38531,56,0
,2,12542,38533,56,0
,2,12543,38535,56,0
,2,12544,38537,56,0
,2,12545,38539,56,0
,2,12546,38541,56,0
,2,12547,38543,56,0
,2,12548,38545,56,0
,2,12549,38547,56,0
,2,12550,38549,56,0
,2,12551,38551,56,0
,2,12552,38553,56,0
,2,12553,38555,56,0
,2,12554,38557,56,0
,2,12555,38559,56,0
,2,12556,38561,56,0
,2,12557,38563,56,0
,2,12558,38565,56,0
,2,12559,38567,56,0
,2,12560,38569,56,0
,2,12561,38571,56,0
,2,12562,38573,56,0
,2,12563,38575,56,0
,2,12564,38577,56,0
,2,12565,38579,56,0
,2,12566,38581,56,0
,2,12567,38583,56,0
,2,12568,38585,56,0
,2,12569,38587,56,0
,2,12570,38589,56,0
,2,12571,38591,56,0
,2,12572,38593,56,0
,2,12573,38595,56,0
,2,12574,38597,56,0
,2,12575,38599,56,0
,2,12576,38601,56,0
,2,12577,38603,56,0
,2,12578,38605,56,0
,2,12579,38607,56,0
,2,12580,38609,56,0
,2,12581,38611,56,0
,2,12582,38613,56,0
,2,12583,38615,56,0
,2,12584,38617,56,0
,2,12585,38619,56,0
,2,12586,38621,56,0
,2,12587,38623,56,0
,2,12588,38625,56,0
,2,12589,38627,56,0
,2,12590,38629,56,0
,2,12591,38631,56,0
,2,12592,38633,56,0
,2,12593,38635,56,0
,2,12594,38637,56,0
,2,12595,38639,56,0
,2,12596,38641,56,0
,2,12597,38643,56,0
,2,12598,38645,56,0
,2,12599,38647,56,0
,2,12600,38649,56,0
,2,12601,38651,56,0
,2,12602,38653,56,0
,2,12603,38655,56,0
,2,12604,38657,56,0
,2,12605,38659,56,0
,2,12606,38661,56,0
,2,12607,38663,56,0
,2,12608,38665,56,0
,2,12609,38667,56,0
,2,12610,38669,56,0
,2,12611,38671,56,0
,2,12612,38673,56,0
,2,12613,38675,56,0
,2,12614,38677,56,0
,2,12615,38679,56,0
,2,12616,38681,56,0
,2,12617,38683,56,0
,2,12618,38685,56,0
,2,12619,38687,56,0
,2,12620,38689,56,0
,2,12621,38691,56,0
,2,12622,38693,56,0
,2,12623,38695,56,0
,2,12624,38697,56,0
,2,12625,38699,56,0
,2,12626,38701,56,0
,2,12627,38703,56,0
,2,12628,38705,56,0
,2,12629,38707,56,0
,2,12630,38709,56,0
,2,12631,38711,56,0
,2,12632,38713,56,0
,2,12633,38715,56,0
,2,12634,38717,56,0
,2,12635,38719,56,0
,2,12636,38721,56,0
,2,12637,38723,56,0
,2,12638,38725,56,0
,2,12639,38727,56,0
,2,12640,38729,56,0
,2,12641,38731,56,0
,2,12642,38733,56,0
,2,12643,38735,56,0
,2,12644,38737,56,0
,2,12645,38739,56,0
,2,12646,38741,56,0
,2,12647,38743,56,0
,2,12648,38745,56,0
,2,12649,38747,56,0
,2,12650,38749,56,0
,2,12651,38751,56,0
,2,12652,38753,56,0
,2,12653,38755,56,0
,2,12654,38757,56,0
,2,12655,38759,56,0
,2,12656,38761,56,0
,2,12657,38763,56,0
,2,12658,38765,56,0
,2,12659,38767,56,0
,2,12660,38769,56,0
,2,12661,38771,56,0
,2,12662,38773,56,0
,2,12663,38775,56,0
,2,12664,38777,56,0
,2,12665,38779,56,0
,2,12666,38781,56,0
,2,12667,38783,56,0
,2,12668,38785,56,0
,2,12669,38787,56,0
,2,12670,38789,56,0
,2,12671,38791,56,0
,2,12672,38793,56,0
,2,12673,38795,56,0
,2,12674,38797,56,0
,2,12675,38799,56,0
,2,12676,38801,56,0
,2,12677,38803,56,0
,2,12678,38805,56,0
,2,12679,38807,56,0
,2,12680,38809,56,0
,2,12681,38811,56,0
,2,12682,38813,56,0
,2,12683,38815,56,0
,2,12684,38817,56,0
,2,12685,38819,56,0
,2,12686,38821,56,0
,2,12687,38823,56,0
,2,12688,38825,56,0
,2,12689,38827,56,0
,2,12690,38829,56,0
,2,12691,38831,56,0
,2,12692,38833,56,0
,2,12693,38835,56,0
,2,12694,38837,56,0
,2,12695,38839,56,0
,2,12696,38841,56,0
,2,12697,38843,56,0
,2,12698,38845,56,0
,2,12699,38847,56,0
,2,12700,38849,56,0
,2,12701,38851,56,0
,2,12702,38853,56,0
,2,12703,38855,56,0
,2,12704,38857,56,0
,2,12705,38859,56,0
,2,12706,38861,56,0
,2,12707,38863,56,0
,2,12708,38865,56,0
,2,12709,38867,56,0
,2,12710,38869,56,0
,2,12711,38871,56,0
,2,12712,38873,56,0
,2,12713,38875,56,0
,2,12714,38877,56,0
,2,12715,38879,56,0
,2,12716,38881,56,0
,2,12717,38883,56,0
,2,12718,38885,56,0
,2,12719,38887,56,0
,2,12720,38889,56,0
,2,12721,38891,56,0
,2,12722,38893,56,0
,2,12723,38895,56,0
,2,12724,38897,56,0
,2,12725,38899,56,0
,2,12726,38901,56,0
,2,12727,38903,56,0
,2,12728,38905,56,0
,2,12729,38907,56,0
,2,12730,38909,56,0
,2,12731,38911,56,0
,2,12732,38913,56,0
,2,12733,38915,56,0
,2,12734,38917,56,0
,2,12735,38919,56,0
,2,12736,38921,56,0
,2,12737,38923,56,0
,2,12738,38925,56,0
,2,12739,38927,56,0
,2,12740,38929,56,0
,2,12741,38931,56,0
,2,12742,38933,56,0
,2,12743,38935,56,0
,2,12744,38937,56,0
,2,12745,38939,56,0
,2,12746,38941,56,0
,2,12747,38943,56,0
,2,12748,38945,56,0
,2,12749,38947,56,0
,2,12750,38949,56,0
,2,12751,38951,56,0
,2,12752,38953,56,0
,2,12753,38955,56,0
,2,12754,38957,56,0
,2,12755,38959,56,0
,2,12756,38961,56,0
,2,12757,38963,56,0
,2,12758,38965,56,0
,2,12759,38967,56,0
,2,12760,38969,56,0
,2,12761,38971,56,0
,2,12762,38973,56,0
,2,12763,38975,56,0
,2,12764,38977,56,0
,2,12765,38979,56,0
,2,12766,38981,56,0
,2,12767,38983,56,0
,2,12768,38985,56,0
,2,12769,38987,56,0
,2,12770,38989,56,0
,2,12771,38991,56,0
,2,12772,38993,56,0
,2,12773,38995,56,0
,2,12774,38997,56,0
,2,12775,38999,56,0
,2,12776,39001,56,0
,2,12777,39003,56,0
,2,12778,39005,56,0
,2,12779,39007,56,0
,2,12780,39009,56,0
,2,12781,39011,56,0
,2,12782,39013,56,0
,2,12783,39015,56,0
,2,12784,39017,56,0
,2,12785,39019,56,0
,2,12786,39021,56,0
,2,12787,39023,56,0
,2,12788,39025,56,0
,2,12789,39027,56,0
,2,12790,39029,56,0
,2,12791,39031,56,0
,2,12792,39033,56,0
,2,12793,39035,56,0
,2,12794,39037,56,0
,2,12795,39039,56,0
,2,12796,39041,56,0
,2,12797,39043,56,0
,2,12798,39045,56,0
,2,12799,39047,56,0
,2,12800,39049,56,0
,2,12801,39051,56,0
,2,12802,39053,56,0
,2,12803,39055,56,0
,2,12804,39057,56,0
,2,12805,39059,56,0
,2,12806,39061,56,0
,2,12807,39063,56,0
,2,12808,39065,56,0
,2,12809,39067,56,0
,2,12810,39069,56,0
,2,12811,39071,56,0
,2,12812,39073,56,0
,2,12813,39075,56,0
,2,12814,39077,56,0
,2,12815,39079,56,0
,2,12816,39081,56,0
,2,12817,39083,56,0
,2,12818,39085,56,0
,2,12819,39087,56,0
,2,12820,39089,56,0
,2,12821,39091,56,0
,2,12822,39093,56,0
,2,12823,39095,56,0
,2,12824,39097,56,0
,2,12825,39099,56,0
,2,12826,39101,56,0
,2,12827,39103,56,0
,2,12828,39105,56,0
,2,12829,39107,56,0
,2,12830,39109,56,0
,2,12831,39111,56,0
,2,12832,39113,56,0
,2,12833,39115,56,0
,2,12834,39117,56,0
,2,12835,39119,56,0
,2,12836,39121,56,0
,2,12837,39123,56,0
,2,12838,39125,56,0
,2,12839,39127,56,0
,2,12840,39129,56,0
,2,12841,39131,56,0
,2,12842,39133,56,0
,2,12843,39135,56,0
,2,12844,39137,56,0
,2,12845,39139,56,0
,2,12846,39141,56,0
,2,12847,39143,56,0
,2,12848,39145,56,0
,2,12849,39147,56,0
,2,12850,39149,56,0
,2,12851,39151,56,0
,2,12852,39153,56,0
,2,12853,39155,56,0
,2,12854,39157,56,0
,2,12855,39159,56,0
,2,12856,39161,56,0
,2,12857,39163,56,0
,2,12858,39165,56,0
,2,12859,39167,56,0
,2,12860,39169,56,0
,2,12861,39171,56,0
,2,12862,39173,56,0
,2,12863,39175,56,0
,2,12864,39177,56,0
,2,12865,39179,56,0
,2,12866,39181,56,0
,2,12867,39183,56,0
,2,12868,39185,56,0
,2,12869,39187,56,0
,2,12870,39189,56,0
,2,12871,39191,56,0
,2,12872,39193,56,0
,2,12873,39195,56,0
,2,12874,39197,56,0
,2,12875,39199,56,0
,2,12876,39201,56,0
,2,12877,39203,56,0
,2,12878,39205,56,0
,2,12879,39207,56,0
,2,12880,39209,56,0
,2,12881,39211,56,0
,2,12882,39213,56,0
,2,12883,39215,56,0
,2,12884,39217,56,0
,2,12885,39219,56,0
,2,12886,39221,56,0
,2,12887,39223,56,0
,2,12888,39225,56,0
,2,12889,39227,56,0
,2,12890,39229,56,0
,2,12891,39231,56,0
,2,12892,39233,56,0
,2,12893,39235,56,0
,2,12894,39237,56,0
,2,12895,39239,56,0
,2,12896,39241,56,0
,2,12897,39243,56,0
,2,12898,39245,56,0
,2,12899,39247,56,0
,2,12900,39249,56,0
,2,12901,39251,56,0
,2,12902,39253,56,0
,2,12903,39255,56,0
,2,12904,39257,56,0
,2,12905,39259,56,0
,2,12906,39261,56,0
,2,12907,39263,56,0
,2,12908,39265,56,0
,2,12909,39267,56,0
,2,12910,39269,56,0
,2,12911,39271,56,0
,2,12912,39273,56,0
,2,12913,39275,56,0
,2,12914,39277,56,0
,2,12915,39279,56,0
,2,12916,39281,56,0
,2,12917,39283,56,0
,2,12918,39285,56,0
,2,12919,39287,56,0
,2,12920,39289,56,0
,2,12921,39291,56,0
,2,12922,39293,56,0
,2,12923,39295,56,0
,2,12924,39297,56,0
,2,12925,39299,56,0
,2,12926,39301,56,0
,2,12927,39303,56,0
,2,12928,39305,56,0
,2,12929,39307,56,0
,2,12930,39309,56,0
,2,12931,39311,56,0
,2,12932,39313,56,0
,2,12933,39315,56,0
,2,12934,39317,56,0
,2,12935,39319,56,0
,2,12936,39321,56,0
,2,12937,39323,56,0
,2,12938,39325,56,0
,2,12939,39327,56,0
,2,12940,39329,56,0
,2,12941,39331,56,0
,2,12942,39333,56,0
,2,12943,39335,56,0
,2,12944,39337,56,0
,2,12945,39339,56,0
,2,12946,39341,56,0
,2,12947,39343,56,0
,2,12948,39345,56,0
,2,12949,39347,56,0
,2,12950,39349,56,0
,2,12951,39351,56,0
,2,12952,39353,56,0
,2,12953,39355,56,0
,2,12954,39357,56,0
,2,12955,39359,56,0
,2,12956,39361,56,0
,2,12957,39363,56,0
,2,12958,39365,56,0
,2,12959,39367,56,0
,2,12960,39369,56,0
,2,12961,39371,56,0
,2,12962,39373,56,0
,2,12963,39375,56,0
,2,12964,39377,56,0
,2,12965,39379,56,0
,2,12966,39381,56,0
,2,12967,39383,56,0
,2,12968,39385,56,0
,2,12969,39387,56,0
,2,12970,39389,56,0
,2,12971,39391,56,0
,2,12972,39393,56,0
,2,12973,39395,56,0
,2,12974,39397,56,0
,2,12975,39399,56,0
,2,12976,39401,56,0
,2,12977,39403,56,0
,2,12978,39405,56,0
,2,12979,39407,56,0
,2,12980,39409,56,0
,2,12981,39411,56,0
,2,12982,39413,56,0
,2,12983,39415,56,0
,2,12984,39417,56,0
,2,12985,39419,56,0
,2,12986,39421,56,0
,2,12987,39423,56,0
,2,12988,39425,56,0
,2,12989,39427,56,0
,2,12990,39429,56,0
,2,12991,39431,56,0
,2,12992,39433,56,0
,2,12993,39435,56,0
,2,12994,39437,56,0
,2,12995,39439,56,0
,2,12996,39441,56,0
,2,12997,39443,56,0
,2,12998,39445,56,0
,2,12999,39447,56,0
,2,13000,39449,56,0
,2,13001,39451,56,0
,2,13002,39453,56,0
,2,13003,39455,56,0
,2,13004,39457,56,0
,2,13005,39459,56,0
,2,13006,39461,56,0
,2,13007,39463,56,0
,2,13008,39465,56,0
,2,13009,39467,56,0
,2,13010,39469,56,0
,2,13011,39471,56,0
,2,13012,39473,56,0
,2,13013,39475,56,0
,2,13014,39477,56,0
,2,13015,39479,56,0
,2,13016,39481,56,0
,2,13017,39483,56,0
,2,13018,39485,56,0
,2,13019,39487,56,0
,2,13020,39489,56,0
,2,13021,39491,56,0
,2,13022,39493,56,0
,2,13023,39495,56,0
,2,13024,39497,56,0
,2,13025,39499,56,0
,2,13026,39501,56,0
,2,13027,39503,56,0
,2,13028,39505,56,0
,2,13029,39507,56,0
,2,13030,39509,56,0
,2,13031,39511,56,0
,2,13032,39513,56,0
,2,13033,39515,56,0
,2,13034,39517,56,0
,2,13035,39519,56,0
,2,13036,39521,56,0
,2,13037,39523,56,0
,2,13038,39525,56,0
,2,13039,39527,56,0
,2,13040,39529,56,0
,2,13041,39531,56,0
,2,13042,39533,56,0
,2,13043,39535,56,0
,2,13044,39537,56,0
,2,13045,39539,56,0
,2,13046,39541,56,0
,2,13047,39543,56,0
,2,13048,39545,56,0
,2,13049,39547,56,0
,2,13050,39549,56,0
,2,13051,39551,56,0
,2,13052,39553,56,0
,2,13053,39555,56,0
,2,13054,39557,56,0
,2,13055,39559,56,0
,2,13056,39561,56,0
,2,13057,39563,56,0
,2,13058,39565,56,0
,2,13059,39567,56,0
,2,13060,39569,56,0
,2,13061,39571,56,0
,2,13062,39573,56,0
,2,13063,39575,56,0
,2,13064,39577,56,0
,2,13065,39579,56,0
,2,13066,39581,56,0
,2,13067,39583,56,0
,2,13068,39585,56,0
,2,13069,39587,56,0
,2,13070,39589,56,0
,2,13071,39591,56,0
,2,13072,39593,56,0
,2,13073,39595,56,0
,2,13074,39597,56,0
,2,13075,39599,56,0
,2,13076,39601,56,0
,2,13077,39603,56,0
,2,13078,39605,56,0
,2,13079,39607,56,0
,2,13080,39609,56,0
,2,13081,39611,56,0
,2,13082,39613,56,0
,2,13083,39615,56,0
,2,13084,39617,56,0
,2,13085,39619,56,0
,2,13086,39621,56,0
,2,13087,39623,56,0
,2,13088,39625,56,0
,2,13089,39627,56,0
,2,13090,39629,56,0
,2,13091,39631,56,0
,2,13092,39633,56,0
,2,13093,39635,56,0
,2,13094,39637,56,0
,2,13095,39639,56,0
,2,13096,39641,56,0
,2,13097,39643,56,0
,2,13098,39645,56,0
,2,13099,39647,56,0
,2,13100,39649,56,0
,2,13101,39651,56,0
,2,13102,39653,56,0
,2,13103,39655,56,0
,2,13104,39657,56,0
,2,13105,39659,56,0
,2,13106,39661,56,0
,2,13107,39663,56,0
,2,13108,39665,56,0
,2,13109,39667,56,0
,2,13110,39669,56,0
,2,13111,39671,56,0
,2,13112,39673,56,0
,2,13113,39675,56,0
,2,13114,39677,56,0
,2,13115,39679,56,0
,2,13116,39681,56,0
,2,13117,39683,56,0
,2,13118,39685,56,0
,2,13119,39687,56,0
,2,13120,39689,56,0
,2,13121,39691,56,0
,2,13122,39693,56,0
,2,13123,39695,56,0
,2,13124,39697,56,0
,2,13125,39699,56,0
,2,13126,39701,56,0
,2,13127,39703,56,0
,2,13128,39705,56,0
,2,13129,39707,56,0
,2,13130,39709,56,0
,2,13131,39711,56,0
,2,13132,39713,56,0
,2,13133,39715,56,0
,2,13134,39717,56,0
,2,13135,39719,56,0
,2,13136,39721,56,0
,2,13137,39723,56,0
,2,13138,39725,56,0
,2,13139,39727,56,0
,2,13140,39729,56,0
,2,13141,39731,56,0
,2,13142,39733,56,0
,2,13143,39735,56,0
,2,13144,39737,56,0
,2,13145,39739,56,0
,2,13146,39741,56,0
,2,13147,39743,56,0
,2,13148,39745,56,0
,2,13149,39747,56,0
,2,13150,39749,56,0
,2,13151,39751,56,0
,2,13152,39753,56,0
,2,13153,39755,56,0
,2,13154,39757,56,0
,2,13155,39759,56,0
,2,13156,39761,56,0
,2,13157,39763,56,0
,2,13158,39765,56,0
,2,13159,39767,56,0
,2,13160,39769,56,0
,2,13161,39771,56,0
,2,13162,39773,56,0
,2,13163,39775,56,0
,2,13164,39777,56,0
,2,13165,39779,56,0
,2,13166,39781,56,0
,2,13167,39783,56,0
,2,13168,39785,56,0
,2,13169,39787,56,0
,2,13170,39789,56,0
,2,13171,39791,56,0
,2,13172,39793,56,0
,2,13173,39795,56,0
,2,13174,39797,56,0
,2,13175,39799,56,0
,2,13176,39801,56,0
,2,13177,39803,56,0
,2,13178,39805,56,0
,2,13179,39807,56,0
,2,13180,39809,56,0
,2,13181,39811,56,0
,2,13182,39813,56,0
,2,13183,39815,56,0
,2,13184,39817,56,0
,2,13185,39819,56,0
,2,13186,39821,56,0
,2,13187,39823,56,0
,2,13188,39825,56,0
,2,13189,39827,56,0
,2,13190,39829,56,0
,2,13191,39831,56,0
,2,13192,39833,56,0
,2,13193,39835,56,0
,2,13194,39837,56,0
,2,13195,39839,56,0
,2,13196,39841,56,0
,2,13197,39843,56,0
,2,13198,39845,56,0
,2,13199,39847,56,0
,2,13200,39849,56,0
,2,13201,39851,56,0
,2,13202,39853,56,0
,2,13203,39855,56,0
,2,13204,39857,56,0
,2,13205,39859,56,0
,2,13206,39861,56,0
,2,13207,39863,56,0
,2,13208,39865,56,0
,2,13209,39867,56,0
,2,13210,39869,56,0
,2,13211,39871,56,0
,2,13212,39873,56,0
,2,13213,39875,56,0
,2,13214,39877,56,0
,2,13215,39879,56,0
,2,13216,39881,56,0
,2,13217,39883,56,0
,2,13218,39885,56,0
,2,13219,39887,56,0
,2,13220,39889,56,0
,2,13221,39891,56,0
,2,13222,39893,56,0
,2,13223,39895,56,0
,2,13224,39897,56,0
,2,13225,39899,56,0
,2,13226,39901,56,0
,2,13227,39903,56,0
,2,13228,39905,56,0
,2,13229,39907,56,0
,2,13230,39909,56,0
,2,13231,39911,56,0
,2,13232,39913,56,0
,2,13233,39915,56,0
,2,13234,39917,56,0
,2,13235,39919,56,0
,2,13236,39921,56,0
,2,13237,39923,56,0
,2,13238,39925,56,0
,2,13239,39927,56,0
,2,13240,39929,56,0
,2,13241,39931,56,0
,2,13242,39933,56,0
,2,13243,39935,56,0
,2,13244,39937,56,0
,2,13245,39939,56,0
,2,13246,39941,56,0
,2,13247,39943,56,0
,2,13248,39945,56,0
,2,13249,39947,56,0
,2,13250,39949,56,0
,2,13251,39951,56,0
,2,13252,39953,56,0
,2,13253,39955,56,0
,2,13254,39957,56,0
,2,13255,39959,56,0
,2,13256,39961,56,0
,2,13257,39963,56,0
,2,13258,39965,56,0
,2,13259,39967,56,0
,2,13260,39969,56,0
,2,13261,39971,56,0
,2,13262,39973,56,0
,2,13263,39975,56,0
,2,13264,39977,56,0
,2,13265,39979,56,0
,2,13266,39981,56,0
,2,13267,39983,56,0
,2,13268,39985,56,0
,2,13269,39987,56,0
,2,13270,39989,56,0
,2,13271,39991,56,0
,2,13272,39993,56,0
,2,13273,39995,56,0
,2,13274,39997,56,0
,2,13275,39999,56,0
,2,13276,40001,56,0
,2,13277,40003,56,0
,2,13278,40005,56,0
,2,13279,40007,56,0
,2,13280,40009,56,0
,2,13281,40011,56,0
,2,13282,40013,56,0
,2,13283,40015,56,0
,2,13284,40017,56,0
,2,13285,40019,56,0
,2,13286,40021,56,0
,2,13287,40023,56,0
,2,13288,40025,56,0
,2,13289,40027,56,0
,2,13290,40029,56,0
,2,13291,40031,56,0
,2,13292,40033,56,0
,2,13293,40035,56,0
,2,13294,40037,56,0
,2,13295,40039,56,0
,2,13296,40041,56,0
,2,13297,40043,56,0
,2,13298,40045,56,0
,2,13299,40047,56,0
,2,13300,40049,56,0
,2,13301,40051,56,0
,2,13302,40053,56,0
,2,13303,40055,56,0
,2,13304,40057,56,0
,2,13305,40059,56,0
,2,13306,40061,56,0
,2,13307,40063,56,0
,2,13308,40065,56,0
,2,13309,40067,56,0
,2,13310,40069,56,0
,2,13311,40071,56,0
,2,13312,40073,56,0
,2,13313,40075,56,0
,2,13314,40077,56,0
,2,13315,40079,56,0
,2,13316,40081,56,0
,2,13317,40083,56,0
,2,13318,40085,56,0
,2,13319,40087,56,0
,2,13320,40089,56,0
,2,13321,40091,56,0
,2,13322,40093,56,0
,2,13323,40095,56,0
,2,13324,40097,56,0
,2,13325,40099,56,0
,2,13326,40101,56,0
,2,13327,40103,56,0
,2,13328,40105,56,0
,2,13329,40107,56,0
,2,13330,40109,56,0
,2,13331,40111,56,0
,2,13332,40113,56,0
,2,13333,40115,56,0
,2,13334,40117,56,0
,2,13335,40119,56,0
,2,13336,40121,56,0
,2,13337,40123,56,0
,2,13338,40125,56,0
,2,13339,40127,56,0
,2,13340,40129,56,0
,2,13341,40131,56,0
,2,13342,40133,56,0
,2,13343,40135,56,0
,2,13344,40137,56,0
,2,13345,40139,56,0
,2,13346,40141,56,0
,2,13347,40143,56,0
,2,13348,40145,56,0
,2,13349,40147,56,0
,2,13350,40149,56,0
,2,13351,40151,56,0
,2,13352,40153,56,0
,2,13353,40155,56,0
,2,13354,40157,56,0
,2,13355,40159,56,0
,2,13356,40161,56,0
,2,13357,40163,56,0
,2,13358,40165,56,0
,2,13359,40167,56,0
,2,13360,40169,56,0
,2,13361,40171,56,0
,2,13362,40173,56,0
,2,13363,40175,56,0
,2,13364,40177,56,0
,2,13365,40179,56,0
,2,13366,40181,56,0
,2,13367,40183,56,0
,2,13368,40185,56,0
,2,13369,40187,56,0
,2,13370,40189,56,0
,2,13371,40191,56,0
,2,13372,40193,56,0
,2,13373,40195,56,0
,2,13374,40197,56,0
,2,13375,40199,56,0
,2,13376,40201,56,0
,2,13377,40203,56,0
,2,13378,40205,56,0
,2,13379,40207,56,0
,2,13380,40209,56,0
,2,13381,40211,56,0
,2,13382,40213,56,0
,2,13383,40215,56,0
,2,13384,40217,56,0
,2,13385,40219,56,0
,2,13386,40221,56,0
,2,13387,40223,56,0
,2,13388,40225,56,0
,2,13389,40227,56,0
,2,13390,40229,56,0
,2,13391,40231,56,0
,2,13392,40233,56,0
,2,13393,40235,56,0
,2,13394,40237,56,0
,2,13395,40239,56,0
,2,13396,40241,56,0
,2,13397,40243,56,0
,2,13398,40245,56,0
,2,13399,40247,56,0
,2,13400,40249,56,0
,2,13401,40251,56,0
,2,13402,40253,56,0
,2,13403,40255,56,0
,2,13404,40257,56,0
,2,13405,40259,56,0
,2,13406,40261,56,0
,2,13407,40263,56,0
,2,13408,40265,56,0
,2,13409,40267,56,0
,2,13410,40269,56,0
,2,13411,40271,56,0
,2,13412,40273,56,0
,2,13413,40275,56,0
,2,13414,40277,56,0
,2,13415,40279,56,0
,2,13416,40281,56,0
,2,13417,40283,56,0
,2,13418,40285,56,0
,2,13419,40287,56,0
,2,13420,40289,56,0
,2,13421,40291,56,0
,2,13422,40293,56,0
,2,13423,40295,56,0
,2,13424,40297,56,0
,2,13425,40299,56,0
,2,13426,40301,56,0
,2,13427,40303,56,0
,2,13428,40305,56,0
,2,13429,40307,56,0
,2,13430,40309,56,0
,2,13431,40311,56,0
,2,13432,40313,56,0
,2,13433,40315,56,0
,2,13434,40317,56,0
,2,13435,40319,56,0
,2,13436,40321,56,0
,2,13437,40323,56,0
,2,13438,40325,56,0
,2,13439,40327,56,0
,2,13440,40329,56,0
,2,13441,40331,56,0
,2,13442,40333,56,0
,2,13443,40335,56,0
,2,13444,40337,56,0
,2,13445,40339,56,0
,2,13446,40341,56,0
,2,13447,40343,56,0
,2,13448,40345,56,0
,2,13449,40347,56,0
,2,13450,40349,56,0
,2,13451,40351,56,0
,2,13452,40353,56,0
,2,13453,40355,56,0
,2,13454,40357,56,0
,2,13455,40359,56,0
,2,13456,40361,56,0
,2,13457,40363,56,0
,2,13458,40365,56,0
,2,13459,40367,56,0
,2,13460,40369,56,0
,2,13461,40371,56,0
,2,13462,40373,56,0
,2,13463,40375,56,0
,2,13464,40377,56,0
,2,13465,40379,56,0
,2,13466,40381,56,0
,2,13467,40383,56,0
,2,13468,40385,56,0
,2,13469,40387,56,0
,2,13470,40389,56,0
,2,13471,40391,56,0
,2,13472,40393,56,0
,2,13473,40395,56,0
,2,13474,40397,56,0
,2,13475,40399,56,0
,2,13476,40401,56,0
,2,13477,40403,56,0
,2,13478,40405,56,0
,2,13479,40407,56,0
,2,13480,40409,56,0
,2,13481,40411,56,0
,2,13482,40413,56,0
,2,13483,40415,56,0
,2,13484,40417,56,0
,2,13485,40419,56,0
,2,13486,40421,56,0
,2,13487,40423,56,0
,2,13488,40425,56,0
,2,13489,40427,56,0
,2,13490,40429,56,0
,2,13491,40431,56,0
,2,13492,40433,56,0
,2,13493,40435,56,0
,2,13494,40437,56,0
,2,13495,40439,56,0
,2,13496,40441,56,0
,2,13497,40443,56,0
,2,13498,40445,56,0
,2,13499,40447,56,0
,2,13500,40449,56,0
,2,13501,40451,56,0
,2,13502,40453,56,0
,2,13503,40455,56,0
,2,13504,40457,56,0
,2,13505,40459,56,0
,2,13506,40461,56,0
,2,13507,40463,56,0
,2,13508,40465,56,0
,2,13509,40467,56,0
,2,13510,40469,56,0
,2,13511,40471,56,0
,2,13512,40473,56,0
,2,13513,40475,56,0
,2,13514,40477,56,0
,2,13515,40479,56,0
,2,13516,40481,56,0
,2,13517,40483,56,0
,2,13518,40485,56,0
,2,13519,40487,56,0
,2,13520,40489,56,0
,2,13521,40491,56,0
,2,13522,40493,56,0
,2,13523,40495,56,0
,2,13524,40497,56,0
,2,13525,40499,56,0
,2,13526,40501,56,0
,2,13527,40503,56,0
,2,13528,40505,56,0
,2,13529,40507,56,0
,2,13530,40509,56,0
,2,13531,40511,56,0
,2,13532,40513,56,0
,2,13533,40515,56,0
,2,13534,40517,56,0
,2,13535,40519,56,0
,2,13536,40521,56,0
,2,13537,40523,56,0
,2,13538,40525,56,0
,2,13539,40527,56,0
,2,13540,40529,56,0
,2,13541,40531,56,0
,2,13542,40533,56,0
,2,13543,40535,56,0
,2,13544,40537,56,0
,2,13545,40539,56,0
,2,13546,40541,56,0
,2,13547,40543,56,0
,2,13548,40545,56,0
,2,13549,40547,56,0
,2,13550,40549,56,0
,2,13551,40551,56,0
,2,13552,40553,56,0
,2,13553,40555,56,0
,2,13554,40557,56,0
,2,13555,40559,56,0
,2,13556,40561,56,0
,2,13557,40563,56,0
,2,13558,40565,56,0
,2,13559,40567,56,0
,2,13560,40569,56,0
,2,13561,40571,56,0
,2,13562,40573,56,0
,2,13563,40575,56,0
,2,13564,40577,56,0
,2,13565,40579,56,0
,2,13566,40581,56,0
,2,13567,40583,56,0
,2,13568,40585,56,0
,2,13569,40587,56,0
,2,13570,40589,56,0
,2,13571,40591,56,0
,2,13572,40593,56,0
,2,13573,40595,56,0
,2,13574,40597,56,0
,2,13575,40599,56,0
,2,13576,40601,56,0
,2,13577,40603,56,0
,2,13578,40605,56,0
,2,13579,40607,56,0
,2,13580,40609,56,0
,2,13581,40611,56,0
,2,13582,40613,56,0
,2,13583,40615,56,0
,2,13584,40617,56,0
,2,13585,40619,56,0
,2,13586,40621,56,0
,2,13587,40623,56,0
,2,13588,40625,56,0
,2,13589,40627,56,0
,2,13590,40629,56,0
,2,13591,40631,56,0
,2,13592,40633,56,0
,2,13593,40635,56,0
,2,13594,40637,56,0
,2,13595,40639,56,0
,2,13596,40641,56,0
,2,13597,40643,56,0
,2,13598,40645,56,0
,2,13599,40647,56,0
,2,13600,40649,56,0
,2,13601,40651,56,0
,2,13602,40653,56,0
,2,13603,40655,56,0
,2,13604,40657,56,0
,2,13605,40659,56,0
,2,13606,40661,56,0
,2,13607,40663,56,0
,2,13608,40665,56,0
,2,13609,40667,56,0
,2,13610,40669,56,0
,2,13611,40671,56,0
,2,13612,40673,56,0
,2,13613,40675,56,0
,2,13614,40677,56,0
,2,13615,40679,56,0
,2,13616,40681,56,0
,2,13617,40683,56,0
,2,13618,40685,56,0
,2,13619,40687,56,0
,2,13620,40689,56,0
,2,13621,40691,56,0
,2,13622,40693,56,0
,2,13623,40695,56,0
,2,13624,40697,56,0
,2,13625,40699,56,0
,2,13626,40701,56,0
,2,13627,40703,56,0
,2,13628,40705,56,0
,2,13629,40707,56,0
,2,13630,40709,56,0
,2,13631,40711,56,0
,2,13632,40713,56,0
,2,13633,40715,56,0
,2,13634,40717,56,0
,2,13635,40719,56,0
,2,13636,40721,56,0
,2,13637,40723,56,0
,2,13638,40725,56,0
,2,13639,40727,56,0
,2,13640,40729,56,0
,2,13641,40731,56,0
,2,13642,40733,56,0
,2,13643,40735,56,0
,2,13644,40737,56,0
,2,13645,40739,56,0
,2,13646,40741,56,0
,2,13647,40743,56,0
,2,13648,40745,56,0
,2,13649,40747,56,0
,2,13650,40749,56,0
,2,13651,40751,56,0
,2,13652,40753,56,0
,2,13653,40755,56,0
,2,13654,40757,56,0
,2,13655,40759,56,0
,2,13656,40761,56,0
,2,13657,40763,56,0
,2,13658,40765,56,0
,2,13659,40767,56,0
,2,13660,40769,56,0
,2,13661,40771,56,0
,2,13662,40773,56,0
,2,13663,40775,56,0
,2,13664,40777,56,0
,2,13665,40779,56,0
,2,13666,40781,56,0
,2,13667,40783,56,0
,2,13668,40785,56,0
,2,13669,40787,56,0
,2,13670,40789,56,0
,2,13671,40791,56,0
,2,13672,40793,56,0
,2,13673,40795,56,0
,2,13674,40797,56,0
,2,13675,40799,56,0
,2,13676,40801,56,0
,2,13677,40803,56,0
,2,13678,40805,56,0
,2,13679,40807,56,0
,2,13680,40809,56,0
,2,13681,40811,56,0
,2,13682,40813,56,0
,2,13683,40815,56,0
,2,13684,40817,56,0
,2,13685,40819,56,0
,2,13686,40821,56,0
,2,13687,40823,56,0
,2,13688,40825,56,0
,2,13689,40827,56,0
,2,13690,40829,56,0
,2,13691,40831,56,0
,2,13692,40833,56,0
,2,13693,40835,56,0
,2,13694,40837,56,0
,2,13695,40839,56,0
,2,13696,40841,56,0
,2,13697,40843,56,0
,2,13698,40845,56,0
,2,13699,40847,56,0
,2,13700,40849,56,0
,2,13701,40851,56,0
,2,13702,40853,56,0
,2,13703,40855,56,0
,2,13704,40857,56,0
,2,13705,40859,56,0
,2,13706,40861,56,0
,2,13707,40863,56,0
,2,13708,40865,56,0
,2,13709,40867,56,0
,2,13710,40869,56,0
,2,13711,40871,56,0
,2,13712,40873,56,0
,2,13713,40875,56,0
,2,13714,40877,56,0
,2,13715,40879,56,0
,2,13716,40881,56,0
,2,13717,40883,56,0
,2,13718,40885,56,0
,2,13719,40887,56,0
,2,13720,40889,56,0
,2,13721,40891,56,0
,2,13722,40893,56,0
,2,13723,40895,56,0
,2,13724,40897,56,0
,2,13725,40899,56,0
,2,13726,40901,56,0
,2,13727,40903,56,0
,2,13728,40905,56,0
,2,13729,40907,56,0
,2,13730,40909,56,0
,2,13731,40911,56,0
,2,13732,40913,56,0
,2,13733,40915,56,0
,2,13734,40917,56,0
,2,13735,40919,56,0
,2,13736,40921,56,0
,2,13737,40923,56,0
,2,13738,40925,56,0
,2,13739,40927,56,0
,2,13740,40929,56,0
,2,13741,40931,56,0
,2,13742,40933,56,0
,2,13743,40935,56,0
,2,13744,40937,56,0
,2,13745,40939,56,0
,2,13746,40941,56,0
,2,13747,40943,56,0
,2,13748,40945,56,0
,2,13749,40947,56,0
,2,13750,40949,56,0
,2,13751,40951,56,0
,2,13752,40953,56,0
,2,13753,40955,56,0
,2,13754,40957,56,0
,2,13755,40959,56,0
,2,13756,40961,56,0
,2,13757,40963,56,0
,2,13758,40965,56,0
,2,13759,40967,56,0
,2,13760,40969,56,0
,2,13761,40971,56,0
,2,13762,40973,56,0
,2,13763,40975,56,0
,2,13764,40977,56,0
,2,13765,40979,56,0
,2,13766,40981,56,0
,2,13767,40983,56,0
,2,13768,40985,56,0
,2,13769,40987,56,0
,2,13770,40989,56,0
,2,13771,40991,56,0
,2,13772,40993,56,0
,2,13773,40995,56,0
,2,13774,40997,56,0
,2,13775,40999,56,0
,2,13776,41001,56,0
,2,13777,41003,56,0
,2,13778,41005,56,0
,2,13779,41007,56,0
,2,13780,41009,56,0
,2,13781,41011,56,0
,2,13782,41013,56,0
,2,13783,41015,56,0
,2,13784,41017,56,0
,2,13785,41019,56,0
,2,13786,41021,56,0
,2,13787,41023,56,0
,2,13788,41025,56,0
,2,13789,41027,56,0
,2,13790,41029,56,0
,2,13791,41031,56,0
,2,13792,41033,56,0
,2,13793,41035,56,0
,2,13794,41037,56,0
,2,13795,41039,56,0
,2,13796,41041,56,0
,2,13797,41043,56,0
,2,13798,41045,56,0
,2,13799,41047,56,0
,2,13800,41049,56,0
,2,13801,41051,56,0
,2,13802,41053,56,0
,2,13803,41055,56,0
,2,13804,41057,56,0
,2,13805,41059,56,0
,2,13806,41061,56,0
,2,13807,41063,56,0
,2,13808,41065,56,0
,2,13809,41067,56,0
,2,13810,41069,56,0
,2,13811,41071,56,0
,2,13812,41073,56,0
,2,13813,41075,56,0
,2,13814,41077,56,0
,2,13815,41079,56,0
,2,13816,41081,56,0
,2,13817,41083,56,0
,2,13818,41085,56,0
,2,13819,41087,56,0
,2,13820,41089,56,0
,2,13821,41091,56,0
,2,13822,41093,56,0
,2,13823,41095,56,0
,2,13824,41097,56,0
,2,13825,41099,56,0
,2,13826,41101,56,0
,2,13827,41103,56,0
,2,13828,41105,56,0
,2,13829,41107,56,0
,2,13830,41109,56,0
,2,13831,41111,56,0
,2,13832,41113,56,0
,2,13833,41115,56,0
,2,13834,41117,56,0
,2,13835,41119,56,0
,2,13836,41121,56,0
,2,13837,41123,56,0
,2,13838,41125,56,0
,2,13839,41127,56,0
,2,13840,41129,56,0
,2,13841,41131,56,0
,2,13842,41133,56,0
,2,13843,41135,56,0
,2,13844,41137,56,0
,2,13845,41139,56,0
,2,13846,41141,56,0
,2,13847,41143,56,0
,2,13848,41145,56,0
,2,13849,41147,56,0
,2,13850,41149,56,0
,2,13851,41151,56,0
,2,13852,41153,56,0
,2,13853,41155,56,0
,2,13854,41157,56,0
,2,13855,41159,56,0
,2,13856,41161,56,0
,2,13857,41163,56,0
,2,13858,41165,56,0
,2,13859,41167,56,0
,2,13860,41169,56,0
,2,13861,41171,56,0
,2,13862,41173,56,0
,2,13863,41175,56,0
,2,13864,41177,56,0
,2,13865,41179,56,0
,2,13866,41181,56,0
,2,13867,41183,56,0
,2,13868,41185,56,0
,2,13869,41187,56,0
,2,13870,41189,56,0
,2,13871,41191,56,0
,2,13872,41193,56,0
,2,13873,41195,56,0
,2,13874,41197,56,0
,2,13875,41199,56,0
,2,13876,41201,56,0
,2,13877,41203,56,0
,2,13878,41205,56,0
,2,13879,41207,56,0
,2,13880,41209,56,0
,2,13881,41211,56,0
,2,13882,41213,56,0
,2,13883,41215,56,0
,2,13884,41217,56,0
,2,13885,41219,56,0
,2,13886,41221,56,0
,2,13887,41223,56,0
,2,13888,41225,56,0
,2,13889,41227,56,0
,2,13890,41229,56,0
,2,13891,41231,56,0
,2,13892,41233,56,0
,2,13893,41235,56,0
,2,13894,41237,56,0
,2,13895,41239,56,0
,2,13896,41241,56,0
,2,13897,41243,56,0
,2,13898,41245,56,0
,2,13899,41247,56,0
,2,13900,41249,56,0
,2,13901,41251,56,0
,2,13902,41253,56,0
,2,13903,41255,56,0
,2,13904,41257,56,0
,2,13905,41259,56,0
,2,13906,41261,56,0
,2,13907,41263,56,0
,2,13908,41265,56,0
,2,13909,41267,56,0
,2,13910,41269,56,0
,2,13911,41271,56,0
,2,13912,41273,56,0
,2,13913,41275,56,0
,2,13914,41277,56,0
,2,13915,41279,56,0
,2,13916,41281,56,0
,2,13917,41283,56,0
,2,13918,41285,56,0
,2,13919,41287,56,0
,2,13920,41289,56,0
,2,13921,41291,56,0
,2,13922,41293,56,0
,2,13923,41295,56,0
,2,13924,41297,56,0
,2,13925,41299,56,0
,2,13926,41301,56,0
,2,13927,41303,56,0
,2,13928,41305,56,0
,2,13929,41307,56,0
,2,13930,41309,56,0
,2,13931,41311,56,0
,2,13932,41313,56,0
,2,13933,41315,56,0
,2,13934,41317,56,0
,2,13935,41319,56,0
,2,13936,41321,56,0
,2,13937,41323,56,0
,2,13938,41325,56,0
,2,13939,41327,56,0
,2,13940,41329,56,0
,2,13941,41331,56,0
,2,13942,41333,56,0
,2,13943,41335,56,0
,2,13944,41337,56,0
,2,13945,41339,56,0
,2,13946,41341,56,0
,2,13947,41343,56,0
,2,13948,41345,56,0
,2,13949,41347,56,0
,2,13950,41349,56,0
,2,13951,41351,56,0
,2,13952,41353,56,0
,2,13953,41355,56,0
,2,13954,41357,56,0
,2,13955,41359,56,0
,2,13956,41361,56,0
,2,13957,41363,56,0
,2,13958,41365,56,0
,2,13959,41367,56,0
,2,13960,41369,56,0
,2,13961,41371,56,0
,2,13962,41373,56,0
,2,13963,41375,56,0
,2,13964,41377,56,0
,2,13965,41379,56,0
,2,13966,41381,56,0
,2,13967,41383,56,0
,2,13968,41385,56,0
,2,13969,41387,56,0
,2,13970,41389,56,0
,2,13971,41391,56,0
,2,13972,41393,56,0
,2,13973,41395,56,0
,2,13974,41397,56,0
,2,13975,41399,56,0
,2,13976,41401,56,0
,2,13977,41403,56,0
,2,13978,41405,56,0
,2,13979,41407,56,0
,2,13980,41409,56,0
,2,13981,41411,56,0
,2,13982,41413,56,0
,2,13983,41415,56,0
,2,13984,41417,56,0
,2,13985,41419,56,0
,2,13986,41421,56,0
,2,13987,41423,56,0
,2,13988,41425,56,0
,2,13989,41427,56,0
,2,13990,41429,56,0
,2,13991,41431,56,0
,2,13992,41433,56,0
,2,13993,41435,56,0
,2,13994,41437,56,0
,2,13995,41439,56,0
,2,13996,41441,56,0
,2,13997,41443,56,0
,2,13998,41445,56,0
,2,13999,41447,56,0
,2,14000,41449,56,0
,2,14001,41451,56,0
,2,14002,41453,56,0
,2,14003,41455,56,0
,2,14004,41457,56,0
,2,14005,41459,56,0
,2,14006,41461,56,0
,2,14007,41463,56,0
,2,14008,41465,56,0
,2,14009,41467,56,0
,2,14010,41469,56,0
,2,14011,41471,56,0
,2,14012,41473,56,0
,2,14013,41475,56,0
,2,14014,41477,56,0
,2,14015,41479,56,0
,2,14016,41481,56,0
,2,14017,41483,56,0
,2,14018,41485,56,0
,2,14019,41487,56,0
,2,14020,41489,56,0
,2,14021,41491,56,0
,2,14022,41493,56,0
,2,14023,41495,56,0
,2,14024,41497,56,0
,2,14025,41499,56,0
,2,14026,41501,56,0
,2,14027,41503,56,0
,2,14028,41505,56,0
,2,14029,41507,56,0
,2,14030,41509,56,0
,2,14031,41511,56,0
,2,14032,41513,56,0
,2,14033,41515,56,0
,2,14034,41517,56,0
,2,14035,41519,56,0
,2,14036,41521,56,0
,2,14037,41523,56,0
,2,14038,41525,56,0
,2,14039,41527,56,0
,2,14040,41529,56,0
,2,14041,41531,56,0
,2,14042,41533,56,0
,2,14043,41535,56,0
,2,14044,41537,56,0
,2,14045,41539,56,0
,2,14046,41541,56,0
,2,14047,41543,56,0
,2,14048,41545,56,0
,2,14049,41547,56,0
,2,14050,41549,56,0
,2,14051,41551,56,0
,2,14052,41553,56,0
,2,14053,41555,56,0
,2,14054,41557,56,0
,2,14055,41559,56,0
,2,14056,41561,56,0
,2,14057,41563,56,0
,2,14058,41565,56,0
,2,14059,41567,56,0
,2,14060,41569,56,0
,2,14061,41571,56,0
,2,14062,41573,56,0
,2,14063,41575,56,0
,2,14064,41577,56,0
,2,14065,41579,56,0
,2,14066,41581,56,0
,2,14067,41583,56,0
,2,14068,41585,56,0
,2,14069,41587,56,0
,2,14070,41589,56,0
,2,14071,41591,56,0
,2,14072,41593,56,0
,2,14073,41595,56,0
,2,14074,41597,56,0
,2,14075,41599,56,0
,2,14076,41601,56,0
,2,14077,41603,56,0
,2,14078,41605,56,0
,2,14079,41607,56,0
,2,14080,41609,56,0
,2,14081,41611,56,0
,2,14082,41613,56,0
,2,14083,41615,56,0
,2,14084,41617,56,0
,2,14085,41619,56,0
,2,14086,41621,56,0
,2,14087,41623,56,0
,2,14088,41625,56,0
,2,14089,41627,56,0
,2,14090,41629,56,0
,2,14091,41631,56,0
,2,14092,41633,56,0
,2,14093,41635,56,0
,2,14094,41637,56,0
,2,14095,41639,56,0
,2,14096,41641,56,0
,2,14097,41643,56,0
,2,14098,41645,56,0
,2,14099,41647,56,0
,2,14100,41649,56,0
,2,14101,41651,56,0
,2,14102,41653,56,0
,2,14103,41655,56,0
,2,14104,41657,56,0
,2,14105,41659,56,0
,2,14106,41661,56,0
,2,14107,41663,56,0
,2,14108,41665,56,0
,2,14109,41667,56,0
,2,14110,41669,56,0
,2,14111,41671,56,0
,2,14112,41673,56,0
,2,14113,41675,56,0
,2,14114,41677,56,0
,2,14115,41679,56,0
,2,14116,41681,56,0
,2,14117,41683,56,0
,2,14118,41685,56,0
,2,14119,41687,56,0
,2,14120,41689,56,0
,2,14121,41691,56,0
,2,14122,41693,56,0
,2,14123,41695,56,0
,2,14124,41697,56,0
,2,14125,41699,56,0
,2,14126,41701,56,0
,2,14127,41703,56,0
,2,14128,41705,56,0
,2,14129,41707,56,0
,2,14130,41709,56,0
,2,14131,41711,56,0
,2,14132,41713,56,0
,2,14133,41715,56,0
,2,14134,41717,56,0
,2,14135,41719,56,0
,2,14136,41721,56,0
,2,14137,41723,56,0
,2,14138,41725,56,0
,2,14139,41727,56,0
,2,14140,41729,56,0
,2,14141,41731,56,0
,2,14142,41733,56,0
,2,14143,41735,56,0
,2,14144,41737,56,0
,2,14145,41739,56,0
,2,14146,41741,56,0
,2,14147,41743,56,0
,2,14148,41745,56,0
,2,14149,41747,56,0
,2,14150,41749,56,0
,2,14151,41751,56,0
,2,14152,41753,56,0
,2,14153,41755,56,0
,2,14154,41757,56,0
,2,14155,41759,56,0
,2,14156,41761,56,0
,2,14157,41763,56,0
,2,14158,41765,56,0
,2,14159,41767,56,0
,2,14160,41769,56,0
,2,14161,41771,56,0
,2,14162,41773,56,0
,2,14163,41775,56,0
,2,14164,41777,56,0
,2,14165,41779,56,0
,2,14166,41781,56,0
,2,14167,41783,56,0
,2,14168,41785,56,0
,2,14169,41787,56,0
,2,14170,41789,56,0
,2,14171,41791,56,0
,2,14172,41793,56,0
,2,14173,41795,56,0
,2,14174,41797,56,0
,2,14175,41799,56,0
,2,14176,41801,56,0
,2,14177,41803,56,0
,2,14178,41805,56,0
,2,14179,41807,56,0
,2,14180,41809,56,0
,2,14181,41811,56,0
,2,14182,41813,56,0
,2,14183,41815,56,0
,2,14184,41817,56,0
,2,14185,41819,56,0
,2,14186,41821,56,0
,2,14187,41823,56,0
,2,14188,41825,56,0
,2,14189,41827,56,0
,2,14190,41829,56,0
,2,14191,41831,56,0
,2,14192,41833,56,0
,2,14193,41835,56,0
,2,14194,41837,56,0
,2,14195,41839,56,0
,2,14196,41841,56,0
,2,14197,41843,56,0
,2,14198,41845,56,0
,2,14199,41847,56,0
,2,14200,41849,56,0
,2,14201,41851,56,0
,2,14202,41853,56,0
,2,14203,41855,56,0
,2,14204,41857,56,0
,2,14205,41859,56,0
,2,14206,41861,56,0
,2,14207,41863,56,0
,2,14208,41865,56,0
,2,14209,41867,56,0
,2,14210,41869,56,0
,2,14211,41871,56,0
,2,14212,41873,56,0
,2,14213,41875,56,0
,2,14214,41877,56,0
,2,14215,41879,56,0
,2,14216,41881,56,0
,2,14217,41883,56,0
,2,14218,41885,56,0
,2,14219,41887,56,0
,2,14220,41889,56,0
,2,14221,41891,56,0
,2,14222,41893,56,0
,2,14223,41895,56,0
,2,14224,41897,56,0
,2,14225,41899,56,0
,2,14226,41901,56,0
,2,14227,41903,56,0
,2,14228,41905,56,0
,2,14229,41907,56,0
,2,14230,41909,56,0
,2,14231,41911,56,0
,2,14232,41913,56,0
,2,14233,41915,56,0
,2,14234,41917,56,0
,2,14235,41919,56,0
,2,14236,41921,56,0
,2,14237,41923,56,0
,2,14238,41925,56,0
,2,14239,41927,56,0
,2,14240,41929,56,0
,2,14241,41931,56,0
,2,14242,41933,56,0
,2,14243,41935,56,0
,2,14244,41937,56,0
,2,14245,41939,56,0
,2,14246,41941,56,0
,2,14247,41943,56,0
,2,14248,41945,56,0
,2,14249,41947,56,0
,2,14250,41949,56,0
,2,14251,41951,56,0
,2,14252,41953,56,0
,2,14253,41955,56,0
,2,14254,41957,56,0
,2,14255,41959,56,0
,2,14256,41961,56,0
,2,14257,41963,56,0
,2,14258,41965,56,0
,2,14259,41967,56,0
,2,14260,41969,56,0
,2,14261,41971,56,0
,2,14262,41973,56,0
,2,14263,41975,56,0
,2,14264,41977,56,0
,2,14265,41979,56,0
,2,14266,41981,56,0
,2,14267,41983,56,0
,2,14268,41985,56,0
,2,14269,41987,56,0
,2,14270,41989,56,0
,2,14271,41991,56,0
,2,14272,41993,56,0
,2,14273,41995,56,0
,2,14274,41997,56,0
,2,14275,41999,56,0
,2,14276,42001,56,0
,2,14277,42003,56,0
,2,14278,42005,56,0
,2,14279,42007,56,0
,2,14280,42009,56,0
,2,14281,42011,56,0
,2,14282,42013,56,0
,2,14283,42015,56,0
,2,14284,42017,56,0
,2,14285,42019,56,0
,2,14286,42021,56,0
,2,14287,42023,56,0
,2,14288,42025,56,0
,2,14289,42027,56,0
,2,14290,42029,56,0
,2,14291,42031,56,0
,2,14292,42033,56,0
,2,14293,42035,56,0
,2,14294,42037,56,0
,2,14295,42039,56,0
,2,14296,42041,56,0
,2,14297,42043,56,0
,2,14298,42045,56,0
,2,14299,42047,56,0
,2,14300,42049,56,0
,2,14301,42051,56,0
,2,14302,42053,56,0
,2,14303,42055,56,0
,2,14304,42057,56,0
,2,14305,42059,56,0
,2,14306,42061,56,0
,2,14307,42063,56,0
,2,14308,42065,56,0
,2,14309,42067,56,0
,2,14310,42069,56,0
,2,14311,42071,56,0
,2,14312,42073,56,0
,2,14313,42075,56,0
,2,14314,42077,56,0
,2,14315,42079,56,0
,2,14316,42081,56,0
,2,14317,42083,56,0
,2,14318,42085,56,0
,2,14319,42087,56,0
,2,14320,42089,56,0
,2,14321,42091,56,0
,2,14322,42093,56,0
,2,14323,42095,56,0
,2,14324,42097,56,0
,2,14325,42099,56,0
,2,14326,42101,56,0
,2,14327,42103,56,0
,2,14328,42105,56,0
,2,14329,42107,56,0
,2,14330,42109,56,0
,2,14331,42111,56,0
,2,14332,42113,56,0
,2,14333,42115,56,0
,2,14334,42117,56,0
,2,14335,42119,56,0
,2,14336,42121,56,0
,2,14337,42123,56,0
,2,14338,42125,56,0
,2,14339,42127,56,0
,2,14340,42129,56,0
,2,14341,42131,56,0
,2,14342,42133,56,0
,2,14343,42135,56,0
,2,14344,42137,56,0
,2,14345,42139,56,0
,2,14346,42141,56,0
,2,14347,42143,56,0
,2,14348,42145,56,0
,2,14349,42147,56,0
,2,14350,42149,56,0
,2,14351,42151,56,0
,2,14352,42153,56,0
,2,14353,42155,56,0
,2,14354,42157,56,0
,2,14355,42159,56,0
,2,14356,42161,56,0
,2,14357,42163,56,0
,2,14358,42165,56,0
,2,14359,42167,56,0
,2,14360,42169,56,0
,2,14361,42171,56,0
,2,14362,42173,56,0
,2,14363,42175,56,0
,2,14364,42177,56,0
,2,14365,42179,56,0
,2,14366,42181,56,0
,2,14367,42183,56,0
,2,14368,42185,56,0
,2,14369,42187,56,0
,2,14370,42189,56,0
,2,14371,42191,56,0
,2,14372,42193,56,0
,2,14373,42195,56,0
,2,14374,42197,56,0
,2,14375,42199,56,0
,2,14376,42201,56,0
,2,14377,42203,56,0
,2,14378,42205,56,0
,2,14379,42207,56,0
,2,14380,42209,56,0
,2,14381,42211,56,0
,2,14382,42213,56,0
,2,14383,42215,56,0
,2,14384,42217,56,0
,2,14385,42219,56,0
,2,14386,42221,56,0
,2,14387,42223,56,0
,2,14388,42225,56,0
,2,14389,42227,56,0
,2,14390,42229,56,0
,2,14391,42231,56,0
,2,14392,42233,56,0
,2,14393,42235,56,0
,2,14394,42237,56,0
,2,14395,42239,56,0
,2,14396,42241,56,0
,2,14397,42243,56,0
,2,14398,42245,56,0
,2,14399,42247,56,0
,2,14400,42249,56,0
,2,14401,42251,56,0
,2,14402,42253,56,0
,2,14403,42255,56,0
,2,14404,42257,56,0
,2,14405,42259,56,0
,2,14406,42261,56,0
,2,14407,42263,56,0
,2,14408,42265,56,0
,2,14409,42267,56,0
,2,14410,42269,56,0
,2,14411,42271,56,0
,2,14412,42273,56,0
,2,14413,42275,56,0
,2,14414,42277,56,0
,2,14415,42279,56,0
,2,14416,42281,56,0
,2,14417,42283,56,0
,2,14418,42285,56,0
,2,14419,42287,56,0
,2,14420,42289,56,0
,2,14421,42291,56,0
,2,14422,42293,56,0
,2,14423,42295,56,0
,2,14424,42297,56,0
,2,14425,42299,56,0
,2,14426,42301,56,0
,2,14427,42303,56,0
,2,14428,42305,56,0
,2,14429,42307,56,0
,2,14430,42309,56,0
,2,14431,42311,56,0
,2,14432,42313,56,0
,2,14433,42315,56,0
,2,14434,42317,56,0
,2,14435,42319,56,0
,2,14436,42321,56,0
,2,14437,42323,56,0
,2,14438,42325,56,0
,2,14439,42327,56,0
,2,14440,42329,56,0
,2,14441,42331,56,0
,2,14442,42333,56,0
,2,14443,42335,56,0
,2,14444,42337,56,0
,2,14445,42339,56,0
,2,14446,42341,56,0
,2,14447,42343,56,0
,2,14448,42345,56,0
,2,14449,42347,56,0
,2,14450,42349,56,0
,2,14451,42351,56,0
,2,14452,42353,56,0
,2,14453,42355,56,0
,2,14454,42357,56,0
,2,14455,42359,56,0
,2,14456,42361,56,0
,2,14457,42363,56,0
,2,14458,42365,56,0
,2,14459,42367,56,0
,2,14460,42369,56,0
,2,14461,42371,56,0
,2,14462,42373,56,0
,2,14463,42375,56,0
,2,14464,42377,56,0
,2,14465,42379,56,0
,2,14466,42381,56,0
,2,14467,42383,56,0
,2,14468,42385,56,0
,2,14469,42387,56,0
,2,14470,42389,56,0
,2,14471,42391,56,0
,2,14472,42393,56,0
,2,14473,42395,56,0
,2,14474,42397,56,0
,2,14475,42399,56,0
,2,14476,42401,56,0
,2,14477,42403,56,0
,2,14478,42405,56,0
,2,14479,42407,56,0
,2,14480,42409,56,0
,2,14481,42411,56,0
,2,14482,42413,56,0
,2,14483,42415,56,0
,2,14484,42417,56,0
,2,14485,42419,56,0
,2,14486,42421,56,0
,2,14487,42423,56,0
,2,14488,42425,56,0
,2,14489,42427,56,0
,2,14490,42429,56,0
,2,14491,42431,56,0
,2,14492,42433,56,0
,2,14493,42435,56,0
,2,14494,42437,56,0
,2,14495,42439,56,0
,2,14496,42441,56,0
,2,14497,42443,56,0
,2,14498,42445,56,0
,2,14499,42447,56,0
,2,14500,42449,56,0
,2,14501,42451,56,0
,2,14502,42453,56,0
,2,14503,42455,56,0
,2,14504,42457,56,0
,2,14505,42459,56,0
,2,14506,42461,56,0
,2,14507,42463,56,0
,2,14508,42465,56,0
,2,14509,42467,56,0
,2,14510,42469,56,0
,2,14511,42471,56,0
,2,14512,42473,56,0
,2,14513,42475,56,0
,2,14514,42477,56,0
,2,14515,42479,56,0
,2,14516,42481,56,0
,2,14517,42483,56,0
,2,14518,42485,56,0
,2,14519,42487,56,0
,2,14520,42489,56,0
,2,14521,42491,56,0
,2,14522,42493,56,0
,2,14523,42495,56,0
,2,14524,42497,56,0
,2,14525,42499,56,0
,2,14526,42501,56,0
,2,14527,42503,56,0
,2,14528,42505,56,0
,2,14529,42507,56,0
,2,14530,42509,56,0
,2,14531,42511,56,0
,2,14532,42513,56,0
,2,14533,42515,56,0
,2,14534,42517,56,0
,2,14535,42519,56,0
,2,14536,42521,56,0
,2,14537,42523,56,0
,2,14538,42525,56,0
,2,14539,42527,56,0
,2,14540,42529,56,0
,2,14541,42531,56,0
,2,14542,42533,56,0
,2,14543,42535,56,0
,2,14544,42537,56,0
,2,14545,42539,56,0
,2,14546,42541,56,0
,2,14547,42543,56,0
,2,14548,42545,56,0
,2,14549,42547,56,0
,2,14550,42549,56,0
,2,14551,42551,56,0
,2,14552,42553,56,0
,2,14553,42555,56,0
,2,14554,42557,56,0
,2,14555,42559,56,0
,2,14556,42561,56,0
,2,14557,42563,56,0
,2,14558,42565,56,0
,2,14559,42567,56,0
,2,14560,42569,56,0
,2,14561,42571,56,0
,2,14562,42573,56,0
,2,14563,42575,56,0
,2,14564,42577,56,0
,2,14565,42579,56,0
,2,14566,42581,56,0
,2,14567,42583,56,0
,2,14568,42585,56,0
,2,14569,42587,56,0
,2,14570,42589,56,0
,2,14571,42591,56,0
,2,14572,42593,56,0
,2,14573,42595,56,0
,2,14574,42597,56,0
,2,14575,42599,56,0
,2,14576,42601,56,0
,2,14577,42603,56,0
,2,14578,42605,56,0
,2,14579,42607,56,0
,2,14580,42609,56,0
,2,14581,42611,56,0
,2,14582,42613,56,0
,2,14583,42615,56,0
,2,14584,42617,56,0
,2,14585,42619,56,0
,2,14586,42621,56,0
,2,14587,42623,56,0
,2,14588,42625,56,0
,2,14589,42627,56,0
,2,14590,42629,56,0
,2,14591,42631,56,0
,2,14592,42633,56,0
,2,14593,42635,56,0
,2,14594,42637,56,0
,2,14595,42639,56,0
,2,14596,42641,56,0
,2,14597,42643,56,0
,2,14598,42645,56,0
,2,14599,42647,56,0
,2,14600,42649,56,0
,2,14601,42651,56,0
,2,14602,42653,56,0
,2,14603,42655,56,0
,2,14604,42657,56,0
,2,14605,42659,56,0
,2,14606,42661,56,0
,2,14607,42663,56,0
,2,14608,42665,56,0
,2,14609,42667,56,0
,2,14610,42669,56,0
,2,14611,42671,56,0
,2,14612,42673,56,0
,2,14613,42675,56,0
,2,14614,42677,56,0
,2,14615,42679,56,0
,2,14616,42681,56,0
,2,14617,42683,56,0
,2,14618,42685,56,0
,2,14619,42687,56,0
,2,14620,42689,56,0
,2,14621,42691,56,0
,2,14622,42693,56,0
,2,14623,42695,56,0
,2,14624,42697,56,0
,2,14625,42699,56,0
,2,14626,42701,56,0
,2,14627,42703,56,0
,2,14628,42705,56,0
,2,14629,42707,56,0
,2,14630,42709,56,0
,2,14631,42711,56,0
,2,14632,42713,56,0
,2,14633,42715,56,0
,2,14634,42717,56,0
,2,14635,42719,56,0
,2,14636,42721,56,0
,2,14637,42723,56,0
,2,14638,42725,56,0
,2,14639,42727,56,0
,2,14640,42729,56,0
,2,14641,42731,56,0
,2,14642,42733,56,0
,2,14643,42735,56,0
,2,14644,42737,56,0
,2,14645,42739,56,0
,2,14646,42741,56,0
,2,14647,42743,56,0
,2,14648,42745,56,0
,2,14649,42747,56,0
,2,14650,42749,56,0
,2,14651,42751,56,0
,2,14652,42753,56,0
,2,14653,42755,56,0
,2,14654,42757,56,0
,2,14655,42759,56,0
,2,14656,42761,56,0
,2,14657,42763,56,0
,2,14658,42765,56,0
,2,14659,42767,56,0
,2,14660,42769,56,0
,2,14661,42771,56,0
,2,14662,42773,56,0
,2,14663,42775,56,0
,2,14664,42777,56,0
,2,14665,42779,56,0
,2,14666,42781,56,0
,2,14667,42783,56,0
,2,14668,42785,56,0
,2,14669,42787,56,0
,2,14670,42789,56,0
,2,14671,42791,56,0
,2,14672,42793,56,0
,2,14673,42795,56,0
,2,14674,42797,56,0
,2,14675,42799,56,0
,2,14676,42801,56,0
,2,14677,42803,56,0
,2,14678,42805,56,0
,2,14679,42807,56,0
,2,14680,42809,56,0
,2,14681,42811,56,0
,2,14682,42813,56,0
,2,14683,42815,56,0
,2,14684,42817,56,0
,2,14685,42819,56,0
,2,14686,42821,56,0
,2,14687,42823,56,0
,2,14688,42825,56,0
,2,14689,42827,56,0
,2,14690,42829,56,0
,2,14691,42831,56,0
,2,14692,42833,56,0
,2,14693,42835,56,0
,2,14694,42837,56,0
,2,14695,42839,56,0
,2,14696,42841,56,0
,2,14697,42843,56,0
,2,14698,42845,56,0
,2,14699,42847,56,0
,2,14700,42849,56,0
,2,14701,42851,56,0
,2,14702,42853,56,0
,2,14703,42855,56,0
,2,14704,42857,56,0
,2,14705,42859,56,0
,2,14706,42861,56,0
,2,14707,42863,56,0
,2,14708,42865,56,0
,2,14709,42867,56,0
,2,14710,42869,56,0
,2,14711,42871,56,0
,2,14712,42873,56,0
,2,14713,42875,56,0
,2,14714,42877,56,0
,2,14715,42879,56,0
,2,14716,42881,56,0
,2,14717,42883,56,0
,2,14718,42885,56,0
,2,14719,42887,56,0
,2,14720,42889,56,0
,2,14721,42891,56,0
,2,14722,42893,56,0
,2,14723,42895,56,0
,2,14724,42897,56,0
,2,14725,42899,56,0
,2,14726,42901,56,0
,2,14727,42903,56,0
,2,14728,42905,56,0
,2,14729,42907,56,0
,2,14730,42909,56,0
,2,14731,42911,56,0
,2,14732,42913,56,0
,2,14733,42915,56,0
,2,14734,42917,56,0
,2,14735,42919,56,0
,2,14736,42921,56,0
,2,14737,42923,56,0
,2,14738,42925,56,0
,2,14739,42927,56,0
,2,14740,42929,56,0
,2,14741,42931,56,0
,2,14742,42933,56,0
,2,14743,42935,56,0
,2,14744,42937,56,0
,2,14745,42939,56,0
,2,14746,42941,56,0
,2,14747,42943,56,0
,2,14748,42945,56,0
,2,14749,42947,56,0
,2,14750,42949,56,0
,2,14751,42951,56,0
,2,14752,42953,56,0
,2,14753,42955,56,0
,2,14754,42957,56,0
,2,14755,42959,56,0
,2,14756,42961,56,0
,2,14757,42963,56,0
,2,14758,42965,56,0
,2,14759,42967,56,0
,2,14760,42969,56,0
,2,14761,42971,56,0
,2,14762,42973,56,0
,2,14763,42975,56,0
,2,14764,42977,56,0
,2,14765,42979,56,0
,2,14766,42981,56,0
,2,14767,42983,56,0
,2,14768,42985,56,0
,2,14769,42987,56,0
,2,14770,42989,56,0
,2,14771,42991,56,0
,2,14772,42993,56,0
,2,14773,42995,56,0
,2,14774,42997,56,0
,2,14775,42999,56,0
,2,14776,43001,56,0
,2,14777,43003,56,0
,2,14778,43005,56,0
,2,14779,43007,56,0
,2,14780,43009,56,0
,2,14781,43011,56,0
,2,14782,43013,56,0
,2,14783,43015,56,0
,2,14784,43017,56,0
,2,14785,43019,56,0
,2,14786,43021,56,0
,2,14787,43023,56,0
,2,14788,43025,56,0
,2,14789,43027,56,0
,2,14790,43029,56,0
,2,14791,43031,56,0
,2,14792,43033,56,0
,2,14793,43035,56,0
,2,14794,43037,56,0
,2,14795,43039,56,0
,2,14796,43041,56,0
,2,14797,43043,56,0
,2,14798,43045,56,0
,2,14799,43047,56,0
,2,14800,43049,56,0
,2,14801,43051,56,0
,2,14802,43053,56,0
,2,14803,43055,56,0
,2,14804,43057,56,0
,2,14805,43059,56,0
,2,14806,43061,56,0
,2,14807,43063,56,0
,2,14808,43065,56,0
,2,14809,43067,56,0
,2,14810,43069,56,0
,2,14811,43071,56,0
,2,14812,43073,56,0
,2,14813,43075,56,0
,2,14814,43077,56,0
,2,14815,43079,56,0
,2,14816,43081,56,0
,2,14817,43083,56,0
,2,14818,43085,56,0
,2,14819,43087,56,0
,2,14820,43089,56,0
,2,14821,43091,56,0
,2,14822,43093,56,0
,2,14823,43095,56,0
,2,14824,43097,56,0
,2,14825,43099,56,0
,2,14826,43101,56,0
,2,14827,43103,56,0
,2,14828,43105,56,0
,2,14829,43107,56,0
,2,14830,43109,56,0
,2,14831,43111,56,0
,2,14832,43113,56,0
,2,14833,43115,56,0
,2,14834,43117,56,0
,2,14835,43119,56,0
,2,14836,43121,56,0
,2,14837,43123,56,0
,2,14838,43125,56,0
,2,14839,43127,56,0
,2,14840,43129,56,0
,2,14841,43131,56,0
,2,14842,43133,56,0
,2,14843,43135,56,0
,2,14844,43137,56,0
,2,14845,43139,56,0
,2,14846,43141,56,0
,2,14847,43143,56,0
,2,14848,43145,56,0
,2,14849,43147,56,0
,2,14850,43149,56,0
,2,14851,43151,56,0
,2,14852,43153,56,0
,2,14853,43155,56,0
,2,14854,43157,56,0
,2,14855,43159,56,0
,2,14856,43161,56,0
,2,14857,43163,56,0
,2,14858,43165,56,0
,2,14859,43167,56,0
,2,14860,43169,56,0
,2,14861,43171,56,0
,2,14862,43173,56,0
,2,14863,43175,56,0
,2,14864,43177,56,0
,2,14865,43179,56,0
,2,14866,43181,56,0
,2,14867,43183,56,0
,2,14868,43185,56,0
,2,14869,43187,56,0
,2,14870,43189,56,0
,2,14871,43191,56,0
,2,14872,43193,56,0
,2,14873,43195,56,0
,2,14874,43197,56,0
,2,14875,43199,56,0
,2,14876,43201,56,0
,2,14877,43203,56,0
,2,14878,43205,56,0
,2,14879,43207,56,0
,2,14880,43209,56,0
,2,14881,43211,56,0
,2,14882,43213,56,0
,2,14883,43215,56,0
,2,14884,43217,56,0
,2,14885,43219,56,0
,2,14886,43221,56,0
,2,14887,43223,56,0
,2,14888,43225,56,0
,2,14889,43227,56,0
,2,14890,43229,56,0
,2,14891,43231,56,0
,2,14892,43233,56,0
,2,14893,43235,56,0
,2,14894,43237,56,0
,2,14895,43239,56,0
,2,14896,43241,56,0
,2,14897,43243,56,0
,2,14898,43245,56,0
,2,14899,43247,56,0
,2,14900,43249,56,0
,2,14901,43251,56,0
,2,14902,43253,56,0
,2,14903,43255,56,0
,2,14904,43257,56,0
,2,14905,43259,56,0
,2,14906,43261,56,0
,2,14907,43263,56,0
,2,14908,43265,56,0
,2,14909,43267,56,0
,2,14910,43269,56,0
,2,14911,43271,56,0
,2,14912,43273,56,0
,2,14913,43275,56,0
,2,14914,43277,56,0
,2,14915,43279,56,0
,2,14916,43281,56,0
,2,14917,43283,56,0
,2,14918,43285,56,0
,2,14919,43287,56,0
,2,14920,43289,56,0
,2,14921,43291,56,0
,2,14922,43293,56,0
,2,14923,43295,56,0
,2,14924,43297,56,0
,2,14925,43299,56,0
,2,14926,43301,56,0
,2,14927,43303,56,0
,2,14928,43305,56,0
,2,14929,43307,56,0
,2,14930,43309,56,0
,2,14931,43311,56,0
,2,14932,43313,56,0
,2,14933,43315,56,0
,2,14934,43317,56,0
,2,14935,43319,56,0
,2,14936,43321,56,0
,2,14937,43323,56,0
,2,14938,43325,56,0
,2,14939,43327,56,0
,2,14940,43329,56,0
,2,14941,43331,56,0
,2,14942,43333,56,0
,2,14943,43335,56,0
,2,14944,43337,56,0
,2,14945,43339,56,0
,2,14946,43341,56,0
,2,14947,43343,56,0
,2,14948,43345,56,0
,2,14949,43347,56,0
,2,14950,43349,56,0
,2,14951,43351,56,0
,2,14952,43353,56,0
,2,14953,43355,56,0
,2,14954,43357,56,0
,2,14955,43359,56,0
,2,14956,43361,56,0
,2,14957,43363,56,0
,2,14958,43365,56,0
,2,14959,43367,56,0
,2,14960,43369,56,0
,2,14961,43371,56,0
,2,14962,43373,56,0
,2,14963,43375,56,0
,2,14964,43377,56,0
,2,14965,43379,56,0
,2,14966,43381,56,0
,2,14967,43383,56,0
,2,14968,43385,56,0
,2,14969,43387,56,0
,2,14970,43389,56,0
,2,14971,43391,56,0
,2,14972,43393,56,0
,2,14973,43395,56,0
,2,14974,43397,56,0
,2,14975,43399,56,0
,2,14976,43401,56,0
,2,14977,43403,56,0
,2,14978,43405,56,0
,2,14979,43407,56,0
,2,14980,43409,56,0
,2,14981,43411,56,0
,2,14982,43413,56,0
,2,14983,43415,56,0
,2,14984,43417,56,0
,2,14985,43419,56,0
,2,14986,43421,56,0
,2,14987,43423,56,0
,2,14988,43425,56,0
,2,14989,43427,56,0
,2,14990,43429,56,0
,2,14991,43431,56,0
,2,14992,43433,56,0
,2,14993,43435,56,0
,2,14994,43437,56,0
,2,14995,43439,56,0
,2,14996,43441,56,0
,2,14997,43443,56,0
,2,14998,43445,56,0
,2,14999,43447,56,0
,2,15000,43449,56,0
,2,15001,43451,56,0
,2,15002,43453,56,0
,2,15003,43455,56,0
,2,15004,43457,56,0
,2,15005,43459,56,0
,2,15006,43461,56,0
,2,15007,43463,56,0
,2,15008,43465,56,0
,2,15009,43467,56,0
,2,15010,43469,56,0
,2,15011,43471,56,0
,2,15012,43473,56,0
,2,15013,43475,56,0
,2,15014,43477,56,0
,2,15015,43479,56,0
,2,15016,43481,56,0
,2,15017,43483,56,0
,2,15018,43485,56,0
,2,15019,43487,56,0
,2,15020,43489,56,0
,2,15021,43491,56,0
,2,15022,43493,56,0
,2,15023,43495,56,0
,2,15024,43497,56,0
,2,15025,43499,56,0
,2,15026,43501,56,0
,2,15027,43503,56,0
,2,15028,43505,56,0
,2,15029,43507,56,0
,2,15030,43509,56,0
,2,15031,43511,56,0
,2,15032,43513,56,0
,2,15033,43515,56,0
,2,15034,43517,56,0
,2,15035,43519,56,0
,2,15036,43521,56,0
,2,15037,43523,56,0
,2,15038,43525,56,0
,2,15039,43527,56,0
,2,15040,43529,56,0
,2,15041,43531,56,0
,2,15042,43533,56,0
,2,15043,43535,56,0
,2,15044,43537,56,0
,2,15045,43539,56,0
,2,15046,43541,56,0
,2,15047,43543,56,0
,2,15048,43545,56,0
,2,15049,43547,56,0
,2,15050,43549,56,0
,2,15051,43551,56,0
,2,15052,43553,56,0
,2,15053,43555,56,0
,2,15054,43557,56,0
,2,15055,43559,56,0
,2,15056,43561,56,0
,2,15057,43563,56,0
,2,15058,43565,56,0
,2,15059,43567,56,0
,2,15060,43569,56,0
,2,15061,43571,56,0
,2,15062,43573,56,0
,2,15063,43575,56,0
,2,15064,43577,56,0
,2,15065,43579,56,0
,2,15066,43581,56,0
,2,15067,43583,56,0
,2,15068,43585,56,0
,2,15069,43587,56,0
,2,15070,43589,56,0
,2,15071,43591,56,0
,2,15072,43593,56,0
,2,15073,43595,56,0
,2,15074,43597,56,0
,2,15075,43599,56,0
,2,15076,43601,56,0
,2,15077,43603,56,0
,2,15078,43605,56,0
,2,15079,43607,56,0
,2,15080,43609,56,0
,2,15081,43611,56,0
,2,15082,43613,56,0
,2,15083,43615,56,0
,2,15084,43617,56,0
,2,15085,43619,56,0
,2,15086,43621,56,0
,2,15087,43623,56,0
,2,15088,43625,56,0
,2,15089,43627,56,0
,2,15090,43629,56,0
,2,15091,43631,56,0
,2,15092,43633,56,0
,2,15093,43635,56,0
,2,15094,43637,56,0
,2,15095,43639,56,0
,2,15096,43641,56,0
,2,15097,43643,56,0
,2,15098,43645,56,0
,2,15099,43647,56,0
,2,15100,43649,56,0
,2,15101,43651,56,0
,2,15102,43653,56,0
,2,15103,43655,56,0
,2,15104,43657,56,0
,2,15105,43659,56,0
,2,15106,43661,56,0
,2,15107,43663,56,0
,2,15108,43665,56,0
,2,15109,43667,56,0
,2,15110,43669,56,0
,2,15111,43671,56,0
,2,15112,43673,56,0
,2,15113,43675,56,0
,2,15114,43677,56,0
,2,15115,43679,56,0
,2,15116,43681,56,0
,2,15117,43683,56,0
,2,15118,43685,56,0
,2,15119,43687,56,0
,2,15120,43689,56,0
,2,15121,43691,56,0
,2,15122,43693,56,0
,2,15123,43695,56,0
,2,15124,43697,56,0
,2,15125,43699,56,0
,2,15126,43701,56,0
,2,15127,43703,56,0
,2,15128,43705,56,0
,2,15129,43707,56,0
,2,15130,43709,56,0
,2,15131,43711,56,0
,2,15132,43713,56,0
,2,15133,43715,56,0
,2,15134,43717,56,0
,2,15135,43719,56,0
,2,15136,43721,56,0
,2,15137,43723,56,0
,2,15138,43725,56,0
,2,15139,43727,56,0
,2,15140,43729,56,0
,2,15141,43731,56,0
,2,15142,43733,56,0
,2,15143,43735,56,0
,2,15144,43737,56,0
,2,15145,43739,56,0
,2,15146,43741,56,0
,2,15147,43743,56,0
,2,15148,43745,56,0
,2,15149,43747,56,0
,2,15150,43749,56,0
,2,15151,43751,56,0
,2,15152,43753,56,0
,2,15153,43755,56,0
,2,15154,43757,56,0
,2,15155,43759,56,0
,2,15156,43761,56,0
,2,15157,43763,56,0
,2,15158,43765,56,0
,2,15159,43767,56,0
,2,15160,43769,56,0
,2,15161,43771,56,0
,2,15162,43773,56,0
,2,15163,43775,56,0
,2,15164,43777,56,0
,2,15165,43779,56,0
,2,15166,43781,56,0
,2,15167,43783,56,0
,2,15168,43785,56,0
,2,15169,43787,56,0
,2,15170,43789,56,0
,2,15171,43791,56,0
,2,15172,43793,56,0
,2,15173,43795,56,0
,2,15174,43797,56,0
,2,15175,43799,56,0
,2,15176,43801,56,0
,2,15177,43803,56,0
,2,15178,43805,56,0
,2,15179,43807,56,0
,2,15180,43809,56,0
,2,15181,43811,56,0
,2,15182,43813,56,0
,2,15183,43815,56,0
,2,15184,43817,56,0
,2,15185,43819,56,0
,2,15186,43821,56,0
,2,15187,43823,56,0
,2,15188,43825,56,0
,2,15189,43827,56,0
,2,15190,43829,56,0
,2,15191,43831,56,0
,2,15192,43833,56,0
,2,15193,43835,56,0
,2,15194,43837,56,0
,2,15195,43839,56,0
,2,15196,43841,56,0
,2,15197,43843,56,0
,2,15198,43845,56,0
,2,15199,43847,56,0
,2,15200,43849,56,0
,2,15201,43851,56,0
,2,15202,43853,56,0
,2,15203,43855,56,0
,2,15204,43857,56,0
,2,15205,43859,56,0
,2,15206,43861,56,0
,2,15207,43863,56,0
,2,15208,43865,56,0
,2,15209,43867,56,0
,2,15210,43869,56,0
,2,15211,43871,56,0
,2,15212,43873,56,0
,2,15213,43875,56,0
,2,15214,43877,56,0
,2,15215,43879,56,0
,2,15216,43881,56,0
,2,15217,43883,56,0
,2,15218,43885,56,0
,2,15219,43887,56,0
,2,15220,43889,56,0
,2,15221,43891,56,0
,2,15222,43893,56,0
,2,15223,43895,56,0
,2,15224,43897,56,0
,2,15225,43899,56,0
,2,15226,43901,56,0
,2,15227,43903,56,0
,2,15228,43905,56,0
,2,15229,43907,56,0
,2,15230,43909,56,0
,2,15231,43911,56,0
,2,15232,43913,56,0
,2,15233,43915,56,0
,2,15234,43917,56,0
,2,15235,43919,56,0
,2,15236,43921,56,0
,2,15237,43923,56,0
,2,15238,43925,56,0
,2,15239,43927,56,0
,2,15240,43929,56,0
,2,15241,43931,56,0
,2,15242,43933,56,0
,2,15243,43935,56,0
,2,15244,43937,56,0
,2,15245,43939,56,0
,2,15246,43941,56,0
,2,15247,43943,56,0
,2,15248,43945,56,0
,2,15249,43947,56,0
,2,15250,43949,56,0
,2,15251,43951,56,0
,2,15252,43953,56,0
,2,15253,43955,56,0
,2,15254,43957,56,0
,2,15255,43959,56,0
,2,15256,43961,56,0
,2,15257,43963,56,0
,2,15258,43965,56,0
,2,15259,43967,56,0
,2,15260,43969,56,0
,2,15261,43971,56,0
,2,15262,43973,56,0
,2,15263,43975,56,0
,2,15264,43977,56,0
,2,15265,43979,56,0
,2,15266,43981,56,0
,2,15267,43983,56,0
,2,15268,43985,56,0
,2,15269,43987,56,0
,2,15270,43989,56,0
,2,15271,43991,56,0
,2,15272,43993,56,0
,2,15273,43995,56,0
,2,15274,43997,56,0
,2,15275,43999,56,0
,2,15276,44001,56,0
,2,15277,44003,56,0
,2,15278,44005,56,0
,2,15279,44007,56,0
,2,15280,44009,56,0
,2,15281,44011,56,0
,2,15282,44013,56,0
,2,15283,44015,56,0
,2,15284,44017,56,0
,2,15285,44019,56,0
,2,15286,44021,56,0
,2,15287,44023,56,0
,2,15288,44025,56,0
,2,15289,44027,56,0
,2,15290,44029,56,0
,2,15291,44031,56,0
,2,15292,44033,56,0
,2,15293,44035,56,0
,2,15294,44037,56,0
,2,15295,44039,56,0
,2,15296,44041,56,0
,2,15297,44043,56,0
,2,15298,44045,56,0
,2,15299,44047,56,0
,2,15300,44049,56,0
,2,15301,44051,56,0
,2,15302,44053,56,0
,2,15303,44055,56,0
,2,15304,44057,56,0
,2,15305,44059,56,0
,2,15306,44061,56,0
,2,15307,44063,56,0
,2,15308,44065,56,0
,2,15309,44067,56,0
,2,15310,44069,56,0
,2,15311,44071,56,0
,2,15312,44073,56,0
,2,15313,44075,56,0
,2,15314,44077,56,0
,2,15315,44079,56,0
,2,15316,44081,56,0
,2,15317,44083,56,0
,2,15318,44085,56,0
,2,15319,44087,56,0
,2,15320,44089,56,0
,2,15321,44091,56,0
,2,15322,44093,56,0
,2,15323,44095,56,0
,2,15324,44097,56,0
,2,15325,44099,56,0
,2,15326,44101,56,0
,2,15327,44103,56,0
,2,15328,44105,56,0
,2,15329,44107,56,0
,2,15330,44109,56,0
,2,15331,44111,56,0
,2,15332,44113,56,0
,2,15333,44115,56,0
,2,15334,44117,56,0
,2,15335,44119,56,0
,2,15336,44121,56,0
,2,15337,44123,56,0
,2,15338,44125,56,0
,2,15339,44127,56,0
,2,15340,44129,56,0
,2,15341,44131,56,0
,2,15342,44133,56,0
,2,15343,44135,56,0
,2,15344,44137,56,0
,2,15345,44139,56,0
,2,15346,44141,56,0
,2,15347,44143,56,0
,2,15348,44145,56,0
,2,15349,44147,56,0
,2,15350,44149,56,0
,2,15351,44151,56,0
,2,15352,44153,56,0
,2,15353,44155,56,0
,2,15354,44157,56,0
,2,15355,44159,56,0
,2,15356,44161,56,0
,2,15357,44163,56,0
,2,15358,44165,56,0
,2,15359,44167,56,0
,2,15360,44169,56,0
,2,15361,44171,56,0
,2,15362,44173,56,0
,2,15363,44175,56,0
,2,15364,44177,56,0
,2,15365,44179,56,0
,2,15366,44181,56,0
,2,15367,44183,56,0
,2,15368,44185,56,0
,2,15369,44187,56,0
,2,15370,44189,56,0
,2,15371,44191,56,0
,2,15372,44193,56,0
,2,15373,44195,56,0
,2,15374,44197,56,0
,2,15375,44199,56,0
,2,15376,44201,56,0
,2,15377,44203,56,0
,2,15378,44205,56,0
,2,15379,44207,56,0
,2,15380,44209,56,0
,2,15381,44211,56,0
,2,15382,44213,56,0
,2,15383,44215,56,0
,2,15384,44217,56,0
,2,15385,44219,56,0
,2,15386,44221,56,0
,2,15387,44223,56,0
,2,15388,44225,56,0
,2,15389,44227,56,0
,2,15390,44229,56,0
,2,15391,44231,56,0
,2,15392,44233,56,0
,2,15393,44235,56,0
,2,15394,44237,56,0
,2,15395,44239,56,0
,2,15396,44241,56,0
,2,15397,44243,56,0
,2,15398,44245,56,0
,2,15399,44247,56,0
,2,15400,44249,56,0
,2,15401,44251,56,0
,2,15402,44253,56,0
,2,15403,44255,56,0
,2,15404,44257,56,0
,2,15405,44259,56,0
,2,15406,44261,56,0
,2,15407,44263,56,0
,2,15408,44265,56,0
,2,15409,44267,56,0
,2,15410,44269,56,0
,2,15411,44271,56,0
,2,15412,44273,56,0
,2,15413,44275,56,0
,2,15414,44277,56,0
,2,15415,44279,56,0
,2,15416,44281,56,0
,2,15417,44283,56,0
,2,15418,44285,56,0
,2,15419,44287,56,0
,2,15420,44289,56,0
,2,15421,44291,56,0
,2,15422,44293,56,0
,2,15423,44295,56,0
,2,15424,44297,56,0
,2,15425,44299,56,0
,2,15426,44301,56,0
,2,15427,44303,56,0
,2,15428,44305,56,0
,2,15429,44307,56,0
,2,15430,44309,56,0
,2,15431,44311,56,0
,2,15432,44313,56,0
,2,15433,44315,56,0
,2,15434,44317,56,0
,2,15435,44319,56,0
,2,15436,44321,56,0
,2,15437,44323,56,0
,2,15438,44325,56,0
,2,15439,44327,56,0
,2,15440,44329,56,0
,2,15441,44331,56,0
,2,15442,44333,56,0
,2,15443,44335,56,0
,2,15444,44337,56,0
,2,15445,44339,56,0
,2,15446,44341,56,0
,2,15447,44343,56,0
,2,15448,44345,56,0
,2,15449,44347,56,0
,2,15450,44349,56,0
,2,15451,44351,56,0
,2,15452,44353,56,0
,2,15453,44355,56,0
,2,15454,44357,56,0
,2,15455,44359,56,0
,2,15456,44361,56,0
,2,15457,44363,56,0
,2,15458,44365,56,0
,2,15459,44367,56,0
,2,15460,44369,56,0
,2,15461,44371,56,0
,2,15462,44373,56,0
,2,15463,44375,56,0
,2,15464,44377,56,0
,2,15465,44379,56,0
,2,15466,44381,56,0
,2,15467,44383,56,0
,2,15468,44385,56,0
,2,15469,44387,56,0
,2,15470,44389,56,0
,2,15471,44391,56,0
,2,15472,44393,56,0
,2,15473,44395,56,0
,2,15474,44397,56,0
,2,15475,44399,56,0
,2,15476,44401,56,0
,2,15477,44403,56,0
,2,15478,44405,56,0
,2,15479,44407,56,0
,2,15480,44409,56,0
,2,15481,44411,56,0
,2,15482,44413,56,0
,2,15483,44415,56,0
,2,15484,44417,56,0
,2,15485,44419,56,0
,2,15486,44421,56,0
,2,15487,44423,56,0
,2,15488,44425,56,0
,2,15489,44427,56,0
,2,15490,44429,56,0
,2,15491,44431,56,0
,2,15492,44433,56,0
,2,15493,44435,56,0
,2,15494,44437,56,0
,2,15495,44439,56,0
,2,15496,44441,56,0
,2,15497,44443,56,0
,2,15498,44445,56,0
,2,15499,44447,56,0
,2,15500,44449,56,0
,2,15501,44451,56,0
,2,15502,44453,56,0
,2,15503,44455,56,0
,2,15504,44457,56,0
,2,15505,44459,56,0
,2,15506,44461,56,0
,2,15507,44463,56,0
,2,15508,44465,56,0
,2,15509,44467,56,0
,2,15510,44469,56,0
,2,15511,44471,56,0
,2,15512,44473,56,0
,2,15513,44475,56,0
,2,15514,44477,56,0
,2,15515,44479,56,0
,2,15516,44481,56,0
,2,15517,44483,56,0
,2,15518,44485,56,0
,2,15519,44487,56,0
,2,15520,44489,56,0
,2,15521,44491,56,0
,2,15522,44493,56,0
,2,15523,44495,56,0
,2,15524,44497,56,0
,2,15525,44499,56,0
,2,15526,44501,56,0
,2,15527,44503,56,0
,2,15528,44505,56,0
,2,15529,44507,56,0
,2,15530,44509,56,0
,2,15531,44511,56,0
,2,15532,44513,56,0
,2,15533,44515,56,0
,2,15534,44517,56,0
,2,15535,44519,56,0
,2,15536,44521,56,0
,2,15537,44523,56,0
,2,15538,44525,56,0
,2,15539,44527,56,0
,2,15540,44529,56,0
,2,15541,44531,56,0
,2,15542,44533,56,0
,2,15543,44535,56,0
,2,15544,44537,56,0
,2,15545,44539,56,0
,2,15546,44541,56,0
,2,15547,44543,56,0
,2,15548,44545,56,0
,2,15549,44547,56,0
,2,15550,44549,56,0
,2,15551,44551,56,0
,2,15552,44553,56,0
,2,15553,44555,56,0
,2,15554,44557,56,0
,2,15555,44559,56,0
,2,15556,44561,56,0
,2,15557,44563,56,0
,2,15558,44565,56,0
,2,15559,44567,56,0
,2,15560,44569,56,0
,2,15561,44571,56,0
,2,15562,44573,56,0
,2,15563,44575,56,0
,2,15564,44577,56,0
,2,15565,44579,56,0
,2,15566,44581,56,0
,2,15567,44583,56,0
,2,15568,44585,56,0
,2,15569,44587,56,0
,2,15570,44589,56,0
,2,15571,44591,56,0
,2,15572,44593,56,0
,2,15573,44595,56,0
,2,15574,44597,56,0
,2,15575,44599,56,0
,2,15576,44601,56,0
,2,15577,44603,56,0
,2,15578,44605,56,0
,2,15579,44607,56,0
,2,15580,44609,56,0
,2,15581,44611,56,0
,2,15582,44613,56,0
,2,15583,44615,56,0
,2,15584,44617,56,0
,2,15585,44619,56,0
,2,15586,44621,56,0
,2,15587,44623,56,0
,2,15588,44625,56,0
,2,15589,44627,56,0
,2,15590,44629,56,0
,2,15591,44631,56,0
,2,15592,44633,56,0
,2,15593,44635,56,0
,2,15594,44637,56,0
,2,15595,44639,56,0
,2,15596,44641,56,0
,2,15597,44643,56,0
,2,15598,44645,56,0
,2,15599,44647,56,0
,2,15600,44649,56,0
,2,15601,44651,56,0
,2,15602,44653,56,0
,2,15603,44655,56,0
,2,15604,44657,56,0
,2,15605,44659,56,0
,2,15606,44661,56,0
,2,15607,44663,56,0
,2,15608,44665,56,0
,2,15609,44667,56,0
,2,15610,44669,56,0
,2,15611,44671,56,0
,2,15612,44673,56,0
,2,15613,44675,56,0
,2,15614,44677,56,0
,2,15615,44679,56,0
,2,15616,44681,56,0
,2,15617,44683,56,0
,2,15618,44685,56,0
,2,15619,44687,56,0
,2,15620,44689,56,0
,2,15621,44691,56,0
,2,15622,44693,56,0
,2,15623,44695,56,0
,2,15624,44697,56,0
,2,15625,44699,56,0
,2,15626,44701,56,0
,2,15627,44703,56,0
,2,15628,44705,56,0
,2,15629,44707,56,0
,2,15630,44709,56,0
,2,15631,44711,56,0
,2,15632,44713,56,0
,2,15633,44715,56,0
,2,15634,44717,56,0
,2,15635,44719,56,0
,2,15636,44721,56,0
,2,15637,44723,56,0
,2,15638,44725,56,0
,2,15639,44727,56,0
,2,15640,44729,56,0
,2,15641,44731,56,0
,2,15642,44733,56,0
,2,15643,44735,56,0
,2,15644,44737,56,0
,2,15645,44739,56,0
,2,15646,44741,56,0
,2,15647,44743,56,0
,2,15648,44745,56,0
,2,15649,44747,56,0
,2,15650,44749,56,0
,2,15651,44751,56,0
,2,15652,44753,56,0
,2,15653,44755,56,0
,2,15654,44757,56,0
,2,15655,44759,56,0
,2,15656,44761,56,0
,2,15657,44763,56,0
,2,15658,44765,56,0
,2,15659,44767,56,0
,2,15660,44769,56,0
,2,15661,44771,56,0
,2,15662,44773,56,0
,2,15663,44775,56,0
,2,15664,44777,56,0
,2,15665,44779,56,0
,2,15666,44781,56,0
,2,15667,44783,56,0
,2,15668,44785,56,0
,2,15669,44787,56,0
,2,15670,44789,56,0
,2,15671,44791,56,0
,2,15672,44793,56,0
,2,15673,44795,56,0
,2,15674,44797,56,0
,2,15675,44799,56,0
,2,15676,44801,56,0
,2,15677,44803,56,0
,2,15678,44805,56,0
,2,15679,44807,56,0
,2,15680,44809,56,0
,2,15681,44811,56,0
,2,15682,44813,56,0
,2,15683,44815,56,0
,2,15684,44817,56,0
,2,15685,44819,56,0
,2,15686,44821,56,0
,2,15687,44823,56,0
,2,15688,44825,56,0
,2,15689,44827,56,0
,2,15690,44829,56,0
,2,15691,44831,56,0
,2,15692,44833,56,0
,2,15693,44835,56,0
,2,15694,44837,56,0
,2,15695,44839,56,0
,2,15696,44841,56,0
,2,15697,44843,56,0
,2,15698,44845,56,0
,2,15699,44847,56,0
,2,15700,44849,56,0
,2,15701,44851,56,0
,2,15702,44853,56,0
,2,15703,44855,56,0
,2,15704,44857,56,0
,2,15705,44859,56,0
,2,15706,44861,56,0
,2,15707,44863,56,0
,2,15708,44865,56,0
,2,15709,44867,56,0
,2,15710,44869,56,0
,2,15711,44871,56,0
,2,15712,44873,56,0
,2,15713,44875,56,0
,2,15714,44877,56,0
,2,15715,44879,56,0
,2,15716,44881,56,0
,2,15717,44883,56,0
,2,15718,44885,56,0
,2,15719,44887,56,0
,2,15720,44889,56,0
,2,15721,44891,56,0
,2,15722,44893,56,0
,2,15723,44895,56,0
,2,15724,44897,56,0
,2,15725,44899,56,0
,2,15726,44901,56,0
,2,15727,44903,56,0
,2,15728,44905,56,0
,2,15729,44907,56,0
,2,15730,44909,56,0
,2,15731,44911,56,0
,2,15732,44913,56,0
,2,15733,44915,56,0
,2,15734,44917,56,0
,2,15735,44919,56,0
,2,15736,44921,56,0
,2,15737,44923,56,0
,2,15738,44925,56,0
,2,15739,44927,56,0
,2,15740,44929,56,0
,2,15741,44931,56,0
,2,15742,44933,56,0
,2,15743,44935,56,0
,2,15744,44937,56,0
,2,15745,44939,56,0
,2,15746,44941,56,0
,2,15747,44943,56,0
,2,15748,44945,56,0
,2,15749,44947,56,0
,2,15750,44949,56,0
,2,15751,44951,56,0
,2,15752,44953,56,0
,2,15753,44955,56,0
,2,15754,44957,56,0
,2,15755,44959,56,0
,2,15756,44961,56,0
,2,15757,44963,56,0
,2,15758,44965,56,0
,2,15759,44967,56,0
,2,15760,44969,56,0
,2,15761,44971,56,0
,2,15762,44973,56,0
,2,15763,44975,56,0
,2,15764,44977,56,0
,2,15765,44979,56,0
,2,15766,44981,56,0
,2,15767,44983,56,0
,2,15768,44985,56,0
,2,15769,44987,56,0
,2,15770,44989,56,0
,2,15771,44991,56,0
,2,15772,44993,56,0
,2,15773,44995,56,0
,2,15774,44997,56,0
,2,15775,44999,56,0
,2,15776,45001,56,0
,2,15777,45003,56,0
,2,15778,45005,56,0
,2,15779,45007,56,0
,2,15780,45009,56,0
,2,15781,45011,56,0
,2,15782,45013,56,0
,2,15783,45015,56,0
,2,15784,45017,56,0
,2,15785,45019,56,0
,2,15786,45021,56,0
,2,15787,45023,56,0
,2,15788,45025,56,0
,2,15789,45027,56,0
,2,15790,45029,56,0
,2,15791,45031,56,0
,2,15792,45033,56,0
,2,15793,45035,56,0
,2,15794,45037,56,0
,2,15795,45039,56,0
,2,15796,45041,56,0
,2,15797,45043,56,0
,2,15798,45045,56,0
,2,15799,45047,56,0
,2,15800,45049,56,0
,2,15801,45051,56,0
,2,15802,45053,56,0
,2,15803,45055,56,0
,2,15804,45057,56,0
,2,15805,45059,56,0
,2,15806,45061,56,0
,2,15807,45063,56,0
,2,15808,45065,56,0
,2,15809,45067,56,0
,2,15810,45069,56,0
,2,15811,45071,56,0
,2,15812,45073,56,0
,2,15813,45075,56,0
,2,15814,45077,56,0
,2,15815,45079,56,0
,2,15816,45081,56,0
,2,15817,45083,56,0
,2,15818,45085,56,0
,2,15819,45087,56,0
,2,15820,45089,56,0
,2,15821,45091,56,0
,2,15822,45093,56,0
,2,15823,45095,56,0
,2,15824,45097,56,0
,2,15825,45099,56,0
,2,15826,45101,56,0
,2,15827,45103,56,0
,2,15828,45105,56,0
,2,15829,45107,56,0
,2,15830,45109,56,0
,2,15831,45111,56,0
,2,15832,45113,56,0
,2,15833,45115,56,0
,2,15834,45117,56,0
,2,15835,45119,56,0
,2,15836,45121,56,0
,2,15837,45123,56,0
,2,15838,45125,56,0
,2,15839,45127,56,0
,2,15840,45129,56,0
,2,15841,45131,56,0
,2,15842,45133,56,0
,2,15843,45135,56,0
,2,15844,45137,56,0
,2,15845,45139,56,0
,2,15846,45141,56,0
,2,15847,45143,56,0
,2,15848,45145,56,0
,2,15849,45147,56,0
,2,15850,45149,56,0
,2,15851,45151,56,0
,2,15852,45153,56,0
,2,15853,45155,56,0
,2,15854,45157,56,0
,2,15855,45159,56,0
,2,15856,45161,56,0
,2,15857,45163,56,0
,2,15858,45165,56,0
,2,15859,45167,56,0
,2,15860,45169,56,0
,2,15861,45171,56,0
,2,15862,45173,56,0
,2,15863,45175,56,0
,2,15864,45177,56,0
,2,15865,45179,56,0
,2,15866,45181,56,0
,2,15867,45183,56,0
,2,15868,45185,56,0
,2,15869,45187,56,0
,2,15870,45189,56,0
,2,15871,45191,56,0
,2,15872,45193,56,0
,2,15873,45195,56,0
,2,15874,45197,56,0
,2,15875,45199,56,0
,2,15876,45201,56,0
,2,15877,45203,56,0
,2,15878,45205,56,0
,2,15879,45207,56,0
,2,15880,45209,56,0
,2,15881,45211,56,0
,2,15882,45213,56,0
,2,15883,45215,56,0
,2,15884,45217,56,0
,2,15885,45219,56,0
,2,15886,45221,56,0
,2,15887,45223,56,0
,2,15888,45225,56,0
,2,15889,45227,56,0
,2,15890,45229,56,0
,2,15891,45231,56,0
,2,15892,45233,56,0
,2,15893,45235,56,0
,2,15894,45237,56,0
,2,15895,45239,56,0
,2,15896,45241,56,0
,2,15897,45243,56,0
,2,15898,45245,56,0
,2,15899,45247,56,0
,2,15900,45249,56,0
,2,15901,45251,56,0
,2,15902,45253,56,0
,2,15903,45255,56,0
,2,15904,45257,56,0
,2,15905,45259,56,0
,2,15906,45261,56,0
,2,15907,45263,56,0
,2,15908,45265,56,0
,2,15909,45267,56,0
,2,15910,45269,56,0
,2,15911,45271,56,0
,2,15912,45273,56,0
,2,15913,45275,56,0
,2,15914,45277,56,0
,2,15915,45279,56,0
,2,15916,45281,56,0
,2,15917,45283,56,0
,2,15918,45285,56,0
,2,15919,45287,56,0
,2,15920,45289,56,0
,2,15921,45291,56,0
,2,15922,45293,56,0
,2,15923,45295,56,0
,2,15924,45297,56,0
,2,15925,45299,56,0
,2,15926,45301,56,0
,2,15927,45303,56,0
,2,15928,45305,56,0
,2,15929,45307,56,0
,2,15930,45309,56,0
,2,15931,45311,56,0
,2,15932,45313,56,0
,2,15933,45315,56,0
,2,15934,45317,56,0
,2,15935,45319,56,0
,2,15936,45321,56,0
,2,15937,45323,56,0
,2,15938,45325,56,0
,2,15939,45327,56,0
,2,15940,45329,56,0
,2,15941,45331,56,0
,2,15942,45333,56,0
,2,15943,45335,56,0
,2,15944,45337,56,0
,2,15945,45339,56,0
,2,15946,45341,56,0
,2,15947,45343,56,0
,2,15948,45345,56,0
,2,15949,45347,56,0
,2,15950,45349,56,0
,2,15951,45351,56,0
,2,15952,45353,56,0
,2,15953,45355,56,0
,2,15954,45357,56,0
,2,15955,45359,56,0
,2,15956,45361,56,0
,2,15957,45363,56,0
,2,15958,45365,56,0
,2,15959,45367,56,0
,2,15960,45369,56,0
,2,15961,45371,56,0
,2,15962,45373,56,0
,2,15963,45375,56,0
,2,15964,45377,56,0
,2,15965,45379,56,0
,2,15966,45381,56,0
,2,15967,45383,56,0
,2,15968,45385,56,0
,2,15969,45387,56,0
,2,15970,45389,56,0
,2,15971,45391,56,0
,2,15972,45393,56,0
,2,15973,45395,56,0
,2,15974,45397,56,0
,2,15975,45399,56,0
,2,15976,45401,56,0
,2,15977,45403,56,0
,2,15978,45405,56,0
,2,15979,45407,56,0
,2,15980,45409,56,0
,2,15981,45411,56,0
,2,15982,45413,56,0
,2,15983,45415,56,0
,2,15984,45417,56,0
,2,15985,45419,56,0
,2,15986,45421,56,0
,2,15987,45423,56,0
,2,15988,45425,56,0
,2,15989,45427,56,0
,2,15990,45429,56,0
,2,15991,45431,56,0
,2,15992,45433,56,0
,2,15993,45435,56,0
,2,15994,45437,56,0
,2,15995,45439,56,0
,2,15996,45441,56,0
,2,15997,45443,56,0
,2,15998,45445,56,0
,2,15999,45447,56,0
,2,16000,45449,56,0
,2,16001,45451,56,0
,2,16002,45453,56,0
,2,16003,45455,56,0
,2,16004,45457,56,0
,2,16005,45459,56,0
,2,16006,45461,56,0
,2,16007,45463,56,0
,2,16008,45465,56,0
,2,16009,45467,56,0
,2,16010,45469,56,0
,2,16011,45471,56,0
,2,16012,45473,56,0
,2,16013,45475,56,0
,2,16014,45477,56,0
,2,16015,45479,56,0
,2,16016,45481,56,0
,2,16017,45483,56,0
,2,16018,45485,56,0
,2,16019,45487,56,0
,2,16020,45489,56,0
,2,16021,45491,56,0
,2,16022,45493,56,0
,2,16023,45495,56,0
,2,16024,45497,56,0
,2,16025,45499,56,0
,2,16026,45501,56,0
,2,16027,45503,56,0
,2,16028,45505,56,0
,2,16029,45507,56,0
,2,16030,45509,56,0
,2,16031,45511,56,0
,2,16032,45513,56,0
,2,16033,45515,56,0
,2,16034,45517,56,0
,2,16035,45519,56,0
,2,16036,45521,56,0
,2,16037,45523,56,0
,2,16038,45525,56,0
,2,16039,45527,56,0
,2,16040,45529,56,0
,2,16041,45531,56,0
,2,16042,45533,56,0
,2,16043,45535,56,0
,2,16044,45537,56,0
,2,16045,45539,56,0
,2,16046,45541,56,0
,2,16047,45543,56,0
,2,16048,45545,56,0
,2,16049,45547,56,0
,2,16050,45549,56,0
,2,16051,45551,56,0
,2,16052,45553,56,0
,2,16053,45555,56,0
,2,16054,45557,56,0
,2,16055,45559,56,0
,2,16056,45561,56,0
,2,16057,45563,56,0
,2,16058,45565,56,0
,2,16059,45567,56,0
,2,16060,45569,56,0
,2,16061,45571,56,0
,2,16062,45573,56,0
,2,16063,45575,56,0
,2,16064,45577,56,0
,2,16065,45579,56,0
,2,16066,45581,56,0
,2,16067,45583,56,0
,2,16068,45585,56,0
,2,16069,45587,56,0
,2,16070,45589,56,0
,2,16071,45591,56,0
,2,16072,45593,56,0
,2,16073,45595,56,0
,2,16074,45597,56,0
,2,16075,45599,56,0
,2,16076,45601,56,0
,2,16077,45603,56,0
,2,16078,45605,56,0
,2,16079,45607,56,0
,2,16080,45609,56,0
,2,16081,45611,56,0
,2,16082,45613,56,0
,2,16083,45615,56,0
,2,16084,45617,56,0
,2,16085,45619,56,0
,2,16086,45621,56,0
,2,16087,45623,56,0
,2,16088,45625,56,0
,2,16089,45627,56,0
,2,16090,45629,56,0
,2,16091,45631,56,0
,2,16092,45633,56,0
,2,16093,45635,56,0
,2,16094,45637,56,0
,2,16095,45639,56,0
,2,16096,45641,56,0
,2,16097,45643,56,0
,2,16098,45645,56,0
,2,16099,45647,56,0
,2,16100,45649,56,0
,2,16101,45651,56,0
,2,16102,45653,56,0
,2,16103,45655,56,0
,2,16104,45657,56,0
,2,16105,45659,56,0
,2,16106,45661,56,0
,2,16107,45663,56,0
,2,16108,45665,56,0
,2,16109,45667,56,0
,2,16110,45669,56,0
,2,16111,45671,56,0
,2,16112,45673,56,0
,2,16113,45675,56,0
,2,16114,45677,56,0
,2,16115,45679,56,0
,2,16116,45681,56,0
,2,16117,45683,56,0
,2,16118,45685,56,0
,2,16119,45687,56,0
,2,16120,45689,56,0
,2,16121,45691,56,0
,2,16122,45693,56,0
,2,16123,45695,56,0
,2,16124,45697,56,0
,2,16125,45699,56,0
,2,16126,45701,56,0
,2,16127,45703,56,0
,2,16128,45705,56,0
,2,16129,45707,56,0
,2,16130,45709,56,0
,2,16131,45711,56,0
,2,16132,45713,56,0
,2,16133,45715,56,0
,2,16134,45717,56,0
,2,16135,45719,56,0
,2,16136,45721,56,0
,2,16137,45723,56,0
,2,16138,45725,56,0
,2,16139,45727,56,0
,2,16140,45729,56,0
,2,16141,45731,56,0
,2,16142,45733,56,0
,2,16143,45735,56,0
,2,16144,45737,56,0
,2,16145,45739,56,0
,2,16146,45741,56,0
,2,16147,45743,56,0
,2,16148,45745,56,0
,2,16149,45747,56,0
,2,16150,45749,56,0
,2,16151,45751,56,0
,2,16152,45753,56,0
,2,16153,45755,56,0
,2,16154,45757,56,0
,2,16155,45759,56,0
,2,16156,45761,56,0
,2,16157,45763,56,0
,2,16158,45765,56,0
,2,16159,45767,56,0
,2,16160,45769,56,0
,2,16161,45771,56,0
,2,16162,45773,56,0
,2,16163,45775,56,0
,2,16164,45777,56,0
,2,16165,45779,56,0
,2,16166,45781,56,0
,2,16167,45783,56,0
,2,16168,45785,56,0
,2,16169,45787,56,0
,2,16170,45789,56,0
,2,16171,45791,56,0
,2,16172,45793,56,0
,2,16173,45795,56,0
,2,16174,45797,56,0
,2,16175,45799,56,0
,2,16176,45801,56,0
,2,16177,45803,56,0
,2,16178,45805,56,0
,2,16179,45807,56,0
,2,16180,45809,56,0
,2,16181,45811,56,0
,2,16182,45813,56,0
,2,16183,45815,56,0
,2,16184,45817,56,0
,2,16185,45819,56,0
,2,16186,45821,56,0
,2,16187,45823,56,0
,2,16188,45825,56,0
,2,16189,45827,56,0
,2,16190,45829,56,0
,2,16191,45831,56,0
,2,16192,45833,56,0
,2,16193,45835,56,0
,2,16194,45837,56,0
,2,16195,45839,56,0
,2,16196,45841,56,0
,2,16197,45843,56,0
,2,16198,45845,56,0
,2,16199,45847,56,0
,2,16200,45849,56,0
,2,16201,45851,56,0
,2,16202,45853,56,0
,2,16203,45855,56,0
,2,16204,45857,56,0
,2,16205,45859,56,0
,2,16206,45861,56,0
,2,16207,45863,56,0
,2,16208,45865,56,0
,2,16209,45867,56,0
,2,16210,45869,56,0
,2,16211,45871,56,0
,2,16212,45873,56,0
,2,16213,45875,56,0
,2,16214,45877,56,0
,2,16215,45879,56,0
,2,16216,45881,56,0
,2,16217,45883,56,0
,2,16218,45885,56,0
,2,16219,45887,56,0
,2,16220,45889,56,0
,2,16221,45891,56,0
,2,16222,45893,56,0
,2,16223,45895,56,0
,2,16224,45897,56,0
,2,16225,45899,56,0
,2,16226,45901,56,0
,2,16227,45903,56,0
,2,16228,45905,56,0
,2,16229,45907,56,0
,2,16230,45909,56,0
,2,16231,45911,56,0
,2,16232,45913,56,0
,2,16233,45915,56,0
,2,16234,45917,56,0
,2,16235,45919,56,0
,2,16236,45921,56,0
,2,16237,45923,56,0
,2,16238,45925,56,0
,2,16239,45927,56,0
,2,16240,45929,56,0
,2,16241,45931,56,0
,2,16242,45933,56,0
,2,16243,45935,56,0
,2,16244,45937,56,0
,2,16245,45939,56,0
,2,16246,45941,56,0
,2,16247,45943,56,0
,2,16248,45945,56,0
,2,16249,45947,56,0
,2,16250,45949,56,0
,2,16251,45951,56,0
,2,16252,45953,56,0
,2,16253,45955,56,0
,2,16254,45957,56,0
,2,16255,45959,56,0
,2,16256,45961,56,0
,2,16257,45963,56,0
,2,16258,45965,56,0
,2,16259,45967,56,0
,2,16260,45969,56,0
,2,16261,45971,56,0
,2,16262,45973,56,0
,2,16263,45975,56,0
,2,16264,45977,56,0
,2,16265,45979,56,0
,2,16266,45981,56,0
,2,16267,45983,56,0
,2,16268,45985,56,0
,2,16269,45987,56,0
,2,16270,45989,56,0
,2,16271,45991,56,0
,2,16272,45993,56,0
,2,16273,45995,56,0
,2,16274,45997,56,0
,2,16275,45999,56,0
,2,16276,46001,56,0
,2,16277,46003,56,0
,2,16278,46005,56,0
,2,16279,46007,56,0
,2,16280,46009,56,0
,2,16281,46011,56,0
,2,16282,46013,56,0
,2,16283,46015,56,0
,2,16284,46017,56,0
,2,16285,46019,56,0
,2,16286,46021,56,0
,2,16287,46023,56,0
,2,16288,46025,56,0
,2,16289,46027,56,0
,2,16290,46029,56,0
,2,16291,46031,56,0
,2,16292,46033,56,0
,2,16293,46035,56,0
,2,16294,46037,56,0
,2,16295,46039,56,0
,2,16296,46041,56,0
,2,16297,46043,56,0
,2,16298,46045,56,0
,2,16299,46047,56,0
,2,16300,46049,56,0
,2,16301,46051,56,0
,2,16302,46053,56,0
,2,16303,46055,56,0
,2,16304,46057,56,0
,2,16305,46059,56,0
,2,16306,46061,56,0
,2,16307,46063,56,0
,2,16308,46065,56,0
,2,16309,46067,56,0
,2,16310,46069,56,0
,2,16311,46071,56,0
,2,16312,46073,56,0
,2,16313,46075,56,0
,2,16314,46077,56,0
,2,16315,46079,56,0
,2,16316,46081,56,0
,2,16317,46083,56,0
,2,16318,46085,56,0
,2,16319,46087,56,0
,2,16320,46089,56,0
,2,16321,46091,56,0
,2,16322,46093,56,0
,2,16323,46095,56,0
,2,16324,46097,56,0
,2,16325,46099,56,0
,2,16326,46101,56,0
,2,16327,46103,56,0
,2,16328,46105,56,0
,2,16329,46107,56,0
,2,16330,46109,56,0
,2,16331,46111,56,0
,2,16332,46113,56,0
,2,16333,46115,56,0
,2,16334,46117,56,0
,2,16335,46119,56,0
,2,16336,46121,56,0
,2,16337,46123,56,0
,2,16338,46125,56,0
,2,16339,46127,56,0
,2,16340,46129,56,0
,2,16341,46131,56,0
,2,16342,46133,56,0
,2,16343,46135,56,0
,2,16344,46137,56,0
,2,16345,46139,56,0
,2,16346,46141,56,0
,2,16347,46143,56,0
,2,16348,46145,56,0
,2,16349,46147,56,0
,2,16350,46149,56,0
,2,16351,46151,56,0
,2,16352,46153,56,0
,2,16353,46155,56,0
,2,16354,46157,56,0
,2,16355,46159,56,0
,2,16356,46161,56,0
,2,16357,46163,56,0
,2,16358,46165,56,0
,2,16359,46167,56,0
,2,16360,46169,56,0
,2,16361,46171,56,0
,2,16362,46173,56,0
,2,16363,46175,56,0
,2,16364,46177,56,0
,2,16365,46179,56,0
,2,16366,46181,56,0
,2,16367,46183,56,0
,2,16368,46185,56,0
,2,16369,46187,56,0
,2,16370,46189,56,0
,2,16371,46191,56,0
,2,16372,46193,56,0
,2,16373,46195,56,0
,2,16374,46197,56,0
,2,16375,46199,56,0
,2,16376,46201,56,0
,2,16377,46203,56,0
,2,16378,46205,56,0
,2,16379,46207,56,0
,2,16380,46209,56,0
,2,16381,46211,56,0
,2,16382,46213,56,0
,2,16383,46215,56,0
,2,16384,46217,56,0
,2,16385,46219,56,0
,2,16386,46221,56,0
,2,16387,46223,56,0
,2,16388,46225,56,0
,2,16389,46227,56,0
,2,16390,46229,56,0
,2,16391,46231,56,0
,2,16392,46233,56,0
,2,16393,46235,56,0
,2,16394,46237,56,0
,2,16395,46239,56,0
,2,16396,46241,56,0
,2,16397,46243,56,0
,2,16398,46245,56,0
,2,16399,46247,56,0
,2,16400,46249,56,0
,2,16401,46251,56,0
,2,16402,46253,56,0
,2,16403,46255,56,0
,2,16404,46257,56,0
,2,16405,46259,56,0
,2,16406,46261,56,0
,2,16407,46263,56,0
,2,16408,46265,56,0
,2,16409,46267,56,0
,2,16410,46269,56,0
,2,16411,46271,56,0
,2,16412,46273,56,0
,2,16413,46275,56,0
,2,16414,46277,56,0
,2,16415,46279,56,0
,2,16416,46281,56,0
,2,16417,46283,56,0
,2,16418,46285,56,0
,2,16419,46287,56,0
,2,16420,46289,56,0
,2,16421,46291,56,0
,2,16422,46293,56,0
,2,16423,46295,56,0
,2,16424,46297,56,0
,2,16425,46299,56,0
,2,16426,46301,56,0
,2,16427,46303,56,0
,2,16428,46305,56,0
,2,16429,46307,56,0
,2,16430,46309,56,0
,2,16431,46311,56,0
,2,16432,46313,56,0
,2,16433,46315,56,0
,2,16434,46317,56,0
,2,16435,46319,56,0
,2,16436,46321,56,0
,2,16437,46323,56,0
,2,16438,46325,56,0
,2,16439,46327,56,0
,2,16440,46329,56,0
,2,16441,46331,56,0
,2,16442,46333,56,0
,2,16443,46335,56,0
,2,16444,46337,56,0
,2,16445,46339,56,0
,2,16446,46341,56,0
,2,16447,46343,56,0
,2,16448,46345,56,0
,2,16449,46347,56,0
,2,16450,46349,56,0
,2,16451,46351,56,0
,2,16452,46353,56,0
,2,16453,46355,56,0
,2,16454,46357,56,0
,2,16455,46359,56,0
,2,16456,46361,56,0
,2,16457,46363,56,0
,2,16458,46365,56,0
,2,16459,46367,56,0
,2,16460,46369,56,0
,2,16461,46371,56,0
,2,16462,46373,56,0
,2,16463,46375,56,0
,2,16464,46377,56,0
,2,16465,46379,56,0
,2,16466,46381,56,0
,2,16467,46383,56,0
,2,16468,46385,56,0
,2,16469,46387,56,0
,2,16470,46389,56,0
,2,16471,46391,56,0
,2,16472,46393,56,0
,2,16473,46395,56,0
,2,16474,46397,56,0
,2,16475,46399,56,0
,2,16476,46401,56,0
,2,16477,46403,56,0
,2,16478,46405,56,0
,2,16479,46407,56,0
,2,16480,46409,56,0
,2,16481,46411,56,0
,2,16482,46413,56,0
,2,16483,46415,56,0
,2,16484,46417,56,0
,2,16485,46419,56,0
,2,16486,46421,56,0
,2,16487,46423,56,0
,2,16488,46425,56,0
,2,16489,46427,56,0
,2,16490,46429,56,0
,2,16491,46431,56,0
,2,16492,46433,56,0
,2,16493,46435,56,0
,2,16494,46437,56,0
,2,16495,46439,56,0
,2,16496,46441,56,0
,2,16497,46443,56,0
,2,16498,46445,56,0
,2,16499,46447,56,0
,2,16500,46449,56,0
,2,16501,46451,56,0
,2,16502,46453,56,0
,2,16503,46455,56,0
,2,16504,46457,56,0
,2,16505,46459,56,0
,2,16506,46461,56,0
,2,16507,46463,56,0
,2,16508,46465,56,0
,2,16509,46467,56,0
,2,16510,46469,56,0
,2,16511,46471,56,0
,2,16512,46473,56,0
,2,16513,46475,56,0
,2,16514,46477,56,0
,2,16515,46479,56,0
,2,16516,46481,56,0
,2,16517,46483,56,0
,2,16518,46485,56,0
,2,16519,46487,56,0
,2,16520,46489,56,0
,2,16521,46491,56,0
,2,16522,46493,56,0
,2,16523,46495,56,0
,2,16524,46497,56,0
,2,16525,46499,56,0
,2,16526,46501,56,0
,2,16527,46503,56,0
,2,16528,46505,56,0
,2,16529,46507,56,0
,2,16530,46509,56,0
,2,16531,46511,56,0
,2,16532,46513,56,0
,2,16533,46515,56,0
,2,16534,46517,56,0
,2,16535,46519,56,0
,2,16536,46521,56,0
,2,16537,46523,56,0
,2,16538,46525,56,0
,2,16539,46527,56,0
,2,16540,46529,56,0
,2,16541,46531,56,0
,2,16542,46533,56,0
,2,16543,46535,56,0
,2,16544,46537,56,0
,2,16545,46539,56,0
,2,16546,46541,56,0
,2,16547,46543,56,0
,2,16548,46545,56,0
,2,16549,46547,56,0
,2,16550,46549,56,0
,2,16551,46551,56,0
,2,16552,46553,56,0
,2,16553,46555,56,0
,2,16554,46557,56,0
,2,16555,46559,56,0
,2,16556,46561,56,0
,2,16557,46563,56,0
,2,16558,46565,56,0
,2,16559,46567,56,0
,2,16560,46569,56,0
,2,16561,46571,56,0
,2,16562,46573,56,0
,2,16563,46575,56,0
,2,16564,46577,56,0
,2,16565,46579,56,0
,2,16566,46581,56,0
,2,16567,46583,56,0
,2,16568,46585,56,0
,2,16569,46587,56,0
,2,16570,46589,56,0
,2,16571,46591,56,0
,2,16572,46593,56,0
,2,16573,46595,56,0
,2,16574,46597,56,0
,2,16575,46599,56,0
,2,16576,46601,56,0
,2,16577,46603,56,0
,2,16578,46605,56,0
,2,16579,46607,56,0
,2,16580,46609,56,0
,2,16581,46611,56,0
,2,16582,46613,56,0
,2,16583,46615,56,0
,2,16584,46617,56,0
,2,16585,46619,56,0
,2,16586,46621,56,0
,2,16587,46623,56,0
,2,16588,46625,56,0
,2,16589,46627,56,0
,2,16590,46629,56,0
,2,16591,46631,56,0
,2,16592,46633,56,0
,2,16593,46635,56,0
,2,16594,46637,56,0
,2,16595,46639,56,0
,2,16596,46641,56,0
,2,16597,46643,56,0
,2,16598,46645,56,0
,2,16599,46647,56,0
,2,16600,46649,56,0
,2,16601,46651,56,0
,2,16602,46653,56,0
,2,16603,46655,56,0
,2,16604,46657,56,0
,2,16605,46659,56,0
,2,16606,46661,56,0
,2,16607,46663,56,0
,2,16608,46665,56,0
,2,16609,46667,56,0
,2,16610,46669,56,0
,2,16611,46671,56,0
,2,16612,46673,56,0
,2,16613,46675,56,0
,2,16614,46677,56,0
,2,16615,46679,56,0
,2,16616,46681,56,0
,2,16617,46683,56,0
,2,16618,46685,56,0
,2,16619,46687,56,0
,2,16620,46689,56,0
,2,16621,46691,56,0
,2,16622,46693,56,0
,2,16623,46695,56,0
,2,16624,46697,56,0
,2,16625,46699,56,0
,2,16626,46701,56,0
,2,16627,46703,56,0
,2,16628,46705,56,0
,2,16629,46707,56,0
,2,16630,46709,56,0
,2,16631,46711,56,0
,2,16632,46713,56,0
,2,16633,46715,56,0
,2,16634,46717,56,0
,2,16635,46719,56,0
,2,16636,46721,56,0
,2,16637,46723,56,0
,2,16638,46725,56,0
,2,16639,46727,56,0
,2,16640,46729,56,0
,2,16641,46731,56,0
,2,16642,46733,56,0
,2,16643,46735,56,0
,2,16644,46737,56,0
,2,16645,46739,56,0
,2,16646,46741,56,0
,2,16647,46743,56,0
,2,16648,46745,56,0
,2,16649,46747,56,0
,2,16650,46749,56,0
,2,16651,46751,56,0
,2,16652,46753,56,0
,2,16653,46755,56,0
,2,16654,46757,56,0
,2,16655,46759,56,0
,2,16656,46761,56,0
,2,16657,46763,56,0
,2,16658,46765,56,0
,2,16659,46767,56,0
,2,16660,46769,56,0
,2,16661,46771,56,0
,2,16662,46773,56,0
,2,16663,46775,56,0
,2,16664,46777,56,0
,2,16665,46779,56,0
,2,16666,46781,56,0
,2,16667,46783,56,0
,2,16668,46785,56,0
,2,16669,46787,56,0
,2,16670,46789,56,0
,2,16671,46791,56,0
,2,16672,46793,56,0
,2,16673,46795,56,0
,2,16674,46797,56,0
,2,16675,46799,56,0
,2,16676,46801,56,0
,2,16677,46803,56,0
,2,16678,46805,56,0
,2,16679,46807,56,0
,2,16680,46809,56,0
,2,16681,46811,56,0
,2,16682,46813,56,0
,2,16683,46815,56,0
,2,16684,46817,56,0
,2,16685,46819,56,0
,2,16686,46821,56,0
,2,16687,46823,56,0
,2,16688,46825,56,0
,2,16689,46827,56,0
,2,16690,46829,56,0
,2,16691,46831,56,0
,2,16692,46833,56,0
,2,16693,46835,56,0
,2,16694,46837,56,0
,2,16695,46839,56,0
,2,16696,46841,56,0
,2,16697,46843,56,0
,2,16698,46845,56,0
,2,16699,46847,56,0
,2,16700,46849,56,0
,2,16701,46851,56,0
,2,16702,46853,56,0
,2,16703,46855,56,0
,2,16704,46857,56,0
,2,16705,46859,56,0
,2,16706,46861,56,0
,2,16707,46863,56,0
,2,16708,46865,56,0
,2,16709,46867,56,0
,2,16710,46869,56,0
,2,16711,46871,56,0
,2,16712,46873,56,0
,2,16713,46875,56,0
,2,16714,46877,56,0
,2,16715,46879,56,0
,2,16716,46881,56,0
,2,16717,46883,56,0
,2,16718,46885,56,0
,2,16719,46887,56,0
,2,16720,46889,56,0
,2,16721,46891,56,0
,2,16722,46893,56,0
,2,16723,46895,56,0
,2,16724,46897,56,0
,2,16725,46899,56,0
,2,16726,46901,56,0
,2,16727,46903,56,0
,2,16728,46905,56,0
,2,16729,46907,56,0
,2,16730,46909,56,0
,2,16731,46911,56,0
,2,16732,46913,56,0
,2,16733,46915,56,0
,2,16734,46917,56,0
,2,16735,46919,56,0
,2,16736,46921,56,0
,2,16737,46923,56,0
,2,16738,46925,56,0
,2,16739,46927,56,0
,2,16740,46929,56,0
,2,16741,46931,56,0
,2,16742,46933,56,0
,2,16743,46935,56,0
,2,16744,46937,56,0
,2,16745,46939,56,0
,2,16746,46941,56,0
,2,16747,46943,56,0
,2,16748,46945,56,0
,2,16749,46947,56,0
,2,16750,46949,56,0
,2,16751,46951,56,0
,2,16752,46953,56,0
,2,16753,46955,56,0
,2,16754,46957,56,0
,2,16755,46959,56,0
,2,16756,46961,56,0
,2,16757,46963,56,0
,2,16758,46965,56,0
,2,16759,46967,56,0
,2,16760,46969,56,0
,2,16761,46971,56,0
,2,16762,46973,56,0
,2,16763,46975,56,0
,2,16764,46977,56,0
,2,16765,46979,56,0
,2,16766,46981,56,0
,2,16767,46983,56,0
,2,16768,46985,56,0
,2,16769,46987,56,0
,2,16770,46989,56,0
,2,16771,46991,56,0
,2,16772,46993,56,0
,2,16773,46995,56,0
,2,16774,46997,56,0
,2,16775,46999,56,0
,2,16776,47001,56,0
,2,16777,47003,56,0
,2,16778,47005,56,0
,2,16779,47007,56,0
,2,16780,47009,56,0
,2,16781,47011,56,0
,2,16782,47013,56,0
,2,16783,47015,56,0
,2,16784,47017,56,0
,2,16785,47019,56,0
,2,16786,47021,56,0
,2,16787,47023,56,0
,2,16788,47025,56,0
,2,16789,47027,56,0
,2,16790,47029,56,0
,2,16791,47031,56,0
,2,16792,47033,56,0
,2,16793,47035,56,0
,2,16794,47037,56,0
,2,16795,47039,56,0
,2,16796,47041,56,0
,2,16797,47043,56,0
,2,16798,47045,56,0
,2,16799,47047,56,0
,2,16800,47049,56,0
,2,16801,47051,56,0
,2,16802,47053,56,0
,2,16803,47055,56,0
,2,16804,47057,56,0
,2,16805,47059,56,0
,2,16806,47061,56,0
,2,16807,47063,56,0
,2,16808,47065,56,0
,2,16809,47067,56,0
,2,16810,47069,56,0
,2,16811,47071,56,0
,2,16812,47073,56,0
,2,16813,47075,56,0
,2,16814,47077,56,0
,2,16815,47079,56,0
,2,16816,47081,56,0
,2,16817,47083,56,0
,2,16818,47085,56,0
,2,16819,47087,56,0
,2,16820,47089,56,0
,2,16821,47091,56,0
,2,16822,47093,56,0
,2,16823,47095,56,0
,2,16824,47097,56,0
,2,16825,47099,56,0
,2,16826,47101,56,0
,2,16827,47103,56,0
,2,16828,47105,56,0
,2,16829,47107,56,0
,2,16830,47109,56,0
,2,16831,47111,56,0
,2,16832,47113,56,0
,2,16833,47115,56,0
,2,16834,47117,56,0
,2,16835,47119,56,0
,2,16836,47121,56,0
,2,16837,47123,56,0
,2,16838,47125,56,0
,2,16839,47127,56,0
,2,16840,47129,56,0
,2,16841,47131,56,0
,2,16842,47133,56,0
,2,16843,47135,56,0
,2,16844,47137,56,0
,2,16845,47139,56,0
,2,16846,47141,56,0
,2,16847,47143,56,0
,2,16848,47145,56,0
,2,16849,47147,56,0
,2,16850,47149,56,0
,2,16851,47151,56,0
,2,16852,47153,56,0
,2,16853,47155,56,0
,2,16854,47157,56,0
,2,16855,47159,56,0
,2,16856,47161,56,0
,2,16857,47163,56,0
,2,16858,47165,56,0
,2,16859,47167,56,0
,2,16860,47169,56,0
,2,16861,47171,56,0
,2,16862,47173,56,0
,2,16863,47175,56,0
,2,16864,47177,56,0
,2,16865,47179,56,0
,2,16866,47181,56,0
,2,16867,47183,56,0
,2,16868,47185,56,0
,2,16869,47187,56,0
,2,16870,47189,56,0
,2,16871,47191,56,0
,2,16872,47193,56,0
,2,16873,47195,56,0
,2,16874,47197,56,0
,2,16875,47199,56,0
,2,16876,47201,56,0
,2,16877,47203,56,0
,2,16878,47205,56,0
,2,16879,47207,56,0
,2,16880,47209,56,0
,2,16881,47211,56,0
,2,16882,47213,56,0
,2,16883,47215,56,0
,2,16884,47217,56,0
,2,16885,47219,56,0
,2,16886,47221,56,0
,2,16887,47223,56,0
,2,16888,47225,56,0
,2,16889,47227,56,0
,2,16890,47229,56,0
,2,16891,47231,56,0
,2,16892,47233,56,0
,2,16893,47235,56,0
,2,16894,47237,56,0
,2,16895,47239,56,0
,2,16896,47241,56,0
,2,16897,47243,56,0
,2,16898,47245,56,0
,2,16899,47247,56,0
,2,16900,47249,56,0
,2,16901,47251,56,0
,2,16902,47253,56,0
,2,16903,47255,56,0
,2,16904,47257,56,0
,2,16905,47259,56,0
,2,16906,47261,56,0
,2,16907,47263,56,0
,2,16908,47265,56,0
,2,16909,47267,56,0
,2,16910,47269,56,0
,2,16911,47271,56,0
,2,16912,47273,56,0
,2,16913,47275,56,0
,2,16914,47277,56,0
,2,16915,47279,56,0
,2,16916,47281,56,0
,2,16917,47283,56,0
,2,16918,47285,56,0
,2,16919,47287,56,0
,2,16920,47289,56,0
,2,16921,47291,56,0
,2,16922,47293,56,0
,2,16923,47295,56,0
,2,16924,47297,56,0
,2,16925,47299,56,0
,2,16926,47301,56,0
,2,16927,47303,56,0
,2,16928,47305,56,0
,2,16929,47307,56,0
,2,16930,47309,56,0
,2,16931,47311,56,0
,2,16932,47313,56,0
,2,16933,47315,56,0
,2,16934,47317,56,0
,2,16935,47319,56,0
,2,16936,47321,56,0
,2,16937,47323,56,0
,2,16938,47325,56,0
,2,16939,47327,56,0
,2,16940,47329,56,0
,2,16941,47331,56,0
,2,16942,47333,56,0
,2,16943,47335,56,0
,2,16944,47337,56,0
,2,16945,47339,56,0
,2,16946,47341,56,0
,2,16947,47343,56,0
,2,16948,47345,56,0
,2,16949,47347,56,0
,2,16950,47349,56,0
,2,16951,47351,56,0
,2,16952,47353,56,0
,2,16953,47355,56,0
,2,16954,47357,56,0
,2,16955,47359,56,0
,2,16956,47361,56,0
,2,16957,47363,56,0
,2,16958,47365,56,0
,2,16959,47367,56,0
,2,16960,47369,56,0
,2,16961,47371,56,0
,2,16962,47373,56,0
,2,16963,47375,56,0
,2,16964,47377,56,0
,2,16965,47379,56,0
,2,16966,47381,56,0
,2,16967,47383,56,0
,2,16968,47385,56,0
,2,16969,47387,56,0
,2,16970,47389,56,0
,2,16971,47391,56,0
,2,16972,47393,56,0
,2,16973,47395,56,0
,2,16974,47397,56,0
,2,16975,47399,56,0
,2,16976,47401,56,0
,2,16977,47403,56,0
,2,16978,47405,56,0
,2,16979,47407,56,0
,2,16980,47409,56,0
,2,16981,47411,56,0
,2,16982,47413,56,0
,2,16983,47415,56,0
,2,16984,47417,56,0
,2,16985,47419,56,0
,2,16986,47421,56,0
,2,16987,47423,56,0
,2,16988,47425,56,0
,2,16989,47427,56,0
,2,16990,47429,56,0
,2,16991,47431,56,0
,2,16992,47433,56,0
,2,16993,47435,56,0
,2,16994,47437,56,0
,2,16995,47439,56,0
,2,16996,47441,56,0
,2,16997,47443,56,0
,2,16998,47445,56,0
,2,16999,47447,56,0
,2,17000,47449,56,0
,2,17001,47451,56,0
,2,17002,47453,56,0
,2,17003,47455,56,0
,2,17004,47457,56,0
,2,17005,47459,56,0
,2,17006,47461,56,0
,2,17007,47463,56,0
,2,17008,47465,56,0
,2,17009,47467,56,0
,2,17010,47469,56,0
,2,17011,47471,56,0
,2,17012,47473,56,0
,2,17013,47475,56,0
,2,17014,47477,56,0
,2,17015,47479,56,0
,2,17016,47481,56,0
,2,17017,47483,56,0
,2,17018,47485,56,0
,2,17019,47487,56,0
,2,17020,47489,56,0
,2,17021,47491,56,0
,2,17022,47493,56,0
,2,17023,47495,56,0
,2,17024,47497,56,0
,2,17025,47499,56,0
,2,17026,47501,56,0
,2,17027,47503,56,0
,2,17028,47505,56,0
,2,17029,47507,56,0
,2,17030,47509,56,0
,2,17031,47511,56,0
,2,17032,47513,56,0
,2,17033,47515,56,0
,2,17034,47517,56,0
,2,17035,47519,56,0
,2,17036,47521,56,0
,2,17037,47523,56,0
,2,17038,47525,56,0
,2,17039,47527,56,0
,2,17040,47529,56,0
,2,17041,47531,56,0
,2,17042,47533,56,0
,2,17043,47535,56,0
,2,17044,47537,56,0
,2,17045,47539,56,0
,2,17046,47541,56,0
,2,17047,47543,56,0
,2,17048,47545,56,0
,2,17049,47547,56,0
,2,17050,47549,56,0
,2,17051,47551,56,0
,2,17052,47553,56,0
,2,17053,47555,56,0
,2,17054,47557,56,0
,2,17055,47559,56,0
,2,17056,47561,56,0
,2,17057,47563,56,0
,2,17058,47565,56,0
,2,17059,47567,56,0
,2,17060,47569,56,0
,2,17061,47571,56,0
,2,17062,47573,56,0
,2,17063,47575,56,0
,2,17064,47577,56,0
,2,17065,47579,56,0
,2,17066,47581,56,0
,2,17067,47583,56,0
,2,17068,47585,56,0
,2,17069,47587,56,0
,2,17070,47589,56,0
,2,17071,47591,56,0
,2,17072,47593,56,0
,2,17073,47595,56,0
,2,17074,47597,56,0
,2,17075,47599,56,0
,2,17076,47601,56,0
,2,17077,47603,56,0
,2,17078,47605,56,0
,2,17079,47607,56,0
,2,17080,47609,56,0
,2,17081,47611,56,0
,2,17082,47613,56,0
,2,17083,47615,56,0
,2,17084,47617,56,0
,2,17085,47619,56,0
,2,17086,47621,56,0
,2,17087,47623,56,0
,2,17088,47625,56,0
,2,17089,47627,56,0
,2,17090,47629,56,0
,2,17091,47631,56,0
,2,17092,47633,56,0
,2,17093,47635,56,0
,2,17094,47637,56,0
,2,17095,47639,56,0
,2,17096,47641,56,0
,2,17097,47643,56,0
,2,17098,47645,56,0
,2,17099,47647,56,0
,2,17100,47649,56,0
,2,17101,47651,56,0
,2,17102,47653,56,0
,2,17103,47655,56,0
,2,17104,47657,56,0
,2,17105,47659,56,0
,2,17106,47661,56,0
,2,17107,47663,56,0
,2,17108,47665,56,0
,2,17109,47667,56,0
,2,17110,47669,56,0
,2,17111,47671,56,0
,2,17112,47673,56,0
,2,17113,47675,56,0
,2,17114,47677,56,0
,2,17115,47679,56,0
,2,17116,47681,56,0
,2,17117,47683,56,0
,2,17118,47685,56,0
,2,17119,47687,56,0
,2,17120,47689,56,0
,2,17121,47691,56,0
,2,17122,47693,56,0
,2,17123,47695,56,0
,2,17124,47697,56,0
,2,17125,47699,56,0
,2,17126,47701,56,0
,2,17127,47703,56,0
,2,17128,47705,56,0
,2,17129,47707,56,0
,2,17130,47709,56,0
,2,17131,47711,56,0
,2,17132,47713,56,0
,2,17133,47715,56,0
,2,17134,47717,56,0
,2,17135,47719,56,0
,2,17136,47721,56,0
,2,17137,47723,56,0
,2,17138,47725,56,0
,2,17139,47727,56,0
,2,17140,47729,56,0
,2,17141,47731,56,0
,2,17142,47733,56,0
,2,17143,47735,56,0
,2,17144,47737,56,0
,2,17145,47739,56,0
,2,17146,47741,56,0
,2,17147,47743,56,0
,2,17148,47745,56,0
,2,17149,47747,56,0
,2,17150,47749,56,0
,2,17151,47751,56,0
,2,17152,47753,56,0
,2,17153,47755,56,0
,2,17154,47757,56,0
,2,17155,47759,56,0
,2,17156,47761,56,0
,2,17157,47763,56,0
,2,17158,47765,56,0
,2,17159,47767,56,0
,2,17160,47769,56,0
,2,17161,47771,56,0
,2,17162,47773,56,0
,2,17163,47775,56,0
,2,17164,47777,56,0
,2,17165,47779,56,0
,2,17166,47781,56,0
,2,17167,47783,56,0
,2,17168,47785,56,0
,2,17169,47787,56,0
,2,17170,47789,56,0
,2,17171,47791,56,0
,2,17172,47793,56,0
,2,17173,47795,56,0
,2,17174,47797,56,0
,2,17175,47799,56,0
,2,17176,47801,56,0
,2,17177,47803,56,0
,2,17178,47805,56,0
,2,17179,47807,56,0
,2,17180,47809,56,0
,2,17181,47811,56,0
,2,17182,47813,56,0
,2,17183,47815,56,0
,2,17184,47817,56,0
,2,17185,47819,56,0
,2,17186,47821,56,0
,2,17187,47823,56,0
,2,17188,47825,56,0
,2,17189,47827,56,0
,2,17190,47829,56,0
,2,17191,47831,56,0
,2,17192,47833,56,0
,2,17193,47835,56,0
,2,17194,47837,56,0
,2,17195,47839,56,0
,2,17196,47841,56,0
,2,17197,47843,56,0
,2,17198,47845,56,0
,2,17199,47847,56,0
,2,17200,47849,56,0
,2,17201,47851,56,0
,2,17202,47853,56,0
,2,17203,47855,56,0
,2,17204,47857,56,0
,2,17205,47859,56,0
,2,17206,47861,56,0
,2,17207,47863,56,0
,2,17208,47865,56,0
,2,17209,47867,56,0
,2,17210,47869,56,0
,2,17211,47871,56,0
,2,17212,47873,56,0
,2,17213,47875,56,0
,2,17214,47877,56,0
,2,17215,47879,56,0
,2,17216,47881,56,0
,2,17217,47883,56,0
,2,17218,47885,56,0
,2,17219,47887,56,0
,2,17220,47889,56,0
,2,17221,47891,56,0
,2,17222,47893,56,0
,2,17223,47895,56,0
,2,17224,47897,56,0
,2,17225,47899,56,0
,2,17226,47901,56,0
,2,17227,47903,56,0
,2,17228,47905,56,0
,2,17229,47907,56,0
,2,17230,47909,56,0
,2,17231,47911,56,0
,2,17232,47913,56,0
,2,17233,47915,56,0
,2,17234,47917,56,0
,2,17235,47919,56,0
,2,17236,47921,56,0
,2,17237,47923,56,0
,2,17238,47925,56,0
,2,17239,47927,56,0
,2,17240,47929,56,0
,2,17241,47931,56,0
,2,17242,47933,56,0
,2,17243,47935,56,0
,2,17244,47937,56,0
,2,17245,47939,56,0
,2,17246,47941,56,0
,2,17247,47943,56,0
,2,17248,47945,56,0
,2,17249,47947,56,0
,2,17250,47949,56,0
,2,17251,47951,56,0
,2,17252,47953,56,0
,2,17253,47955,56,0
,2,17254,47957,56,0
,2,17255,47959,56,0
,2,17256,47961,56,0
,2,17257,47963,56,0
,2,17258,47965,56,0
,2,17259,47967,56,0
,2,17260,47969,56,0
,2,17261,47971,56,0
,2,17262,47973,56,0
,2,17263,47975,56,0
,2,17264,47977,56,0
,2,17265,47979,56,0
,2,17266,47981,56,0
,2,17267,47983,56,0
,2,17268,47985,56,0
,2,17269,47987,56,0
,2,17270,47989,56,0
,2,17271,47991,56,0
,2,17272,47993,56,0
,2,17273,47995,56,0
,2,17274,47997,56,0
,2,17275,47999,56,0
,2,17276,48001,56,0
,2,17277,48003,56,0
,2,17278,48005,56,0
,2,17279,48007,56,0
,2,17280,48009,56,0
,2,17281,48011,56,0
,2,17282,48013,56,0
,2,17283,48015,56,0
,2,17284,48017,56,0
,2,17285,48019,56,0
,2,17286,48021,56,0
,2,17287,48023,56,0
,2,17288,48025,56,0
,2,17289,48027,56,0
,2,17290,48029,56,0
,2,17291,48031,56,0
,2,17292,48033,56,0
,2,17293,48035,56,0
,2,17294,48037,56,0
,2,17295,48039,56,0
,2,17296,48041,56,0
,2,17297,48043,56,0
,2,17298,48045,56,0
,2,17299,48047,56,0
,2,17300,48049,56,0
,2,17301,48051,56,0
,2,17302,48053,56,0
,2,17303,48055,56,0
,2,17304,48057,56,0
,2,17305,48059,56,0
,2,17306,48061,56,0
,2,17307,48063,56,0
,2,17308,48065,56,0
,2,17309,48067,56,0
,2,17310,48069,56,0
,2,17311,48071,56,0
,2,17312,48073,56,0
,2,17313,48075,56,0
,2,17314,48077,56,0
,2,17315,48079,56,0
,2,17316,48081,56,0
,2,17317,48083,56,0
,2,17318,48085,56,0
,2,17319,48087,56,0
,2,17320,48089,56,0
,2,17321,48091,56,0
,2,17322,48093,56,0
,2,17323,48095,56,0
,2,17324,48097,56,0
,2,17325,48099,56,0
,2,17326,48101,56,0
,2,17327,48103,56,0
,2,17328,48105,56,0
,2,17329,48107,56,0
,2,17330,48109,56,0
,2,17331,48111,56,0
,2,17332,48113,56,0
,2,17333,48115,56,0
,2,17334,48117,56,0
,2,17335,48119,56,0
,2,17336,48121,56,0
,2,17337,48123,56,0
,2,17338,48125,56,0
,2,17339,48127,56,0
,2,17340,48129,56,0
,2,17341,48131,56,0
,2,17342,48133,56,0
,2,17343,48135,56,0
,2,17344,48137,56,0
,2,17345,48139,56,0
,2,17346,48141,56,0
,2,17347,48143,56,0
,2,17348,48145,56,0
,2,17349,48147,56,0
,2,17350,48149,56,0
,2,17351,48151,56,0
,2,17352,48153,56,0
,2,17353,48155,56,0
,2,17354,48157,56,0
,2,17355,48159,56,0
,2,17356,48161,56,0
,2,17357,48163,56,0
,2,17358,48165,56,0
,2,17359,48167,56,0
,2,17360,48169,56,0
,2,17361,48171,56,0
,2,17362,48173,56,0
,2,17363,48175,56,0
,2,17364,48177,56,0
,2,17365,48179,56,0
,2,17366,48181,56,0
,2,17367,48183,56,0
,2,17368,48185,56,0
,2,17369,48187,56,0
,2,17370,48189,56,0
,2,17371,48191,56,0
,2,17372,48193,56,0
,2,17373,48195,56,0
,2,17374,48197,56,0
,2,17375,48199,56,0
,2,17376,48201,56,0
,2,17377,48203,56,0
,2,17378,48205,56,0
,2,17379,48207,56,0
,2,17380,48209,56,0
,2,17381,48211,56,0
,2,17382,48213,56,0
,2,17383,48215,56,0
,2,17384,48217,56,0
,2,17385,48219,56,0
,2,17386,48221,56,0
,2,17387,48223,56,0
,2,17388,48225,56,0
,2,17389,48227,56,0
,2,17390,48229,56,0
,2,17391,48231,56,0
,2,17392,48233,56,0
,2,17393,48235,56,0
,2,17394,48237,56,0
,2,17395,48239,56,0
,2,17396,48241,56,0
,2,17397,48243,56,0
,2,17398,48245,56,0
,2,17399,48247,56,0
,2,17400,48249,56,0
,2,17401,48251,56,0
,2,17402,48253,56,0
,2,17403,48255,56,0
,2,17404,48257,56,0
,2,17405,48259,56,0
,2,17406,48261,56,0
,2,17407,48263,56,0
,2,17408,48265,56,0
,2,17409,48267,56,0
,2,17410,48269,56,0
,2,17411,48271,56,0
,2,17412,48273,56,0
,2,17413,48275,56,0
,2,17414,48277,56,0
,2,17415,48279,56,0
,2,17416,48281,56,0
,2,17417,48283,56,0
,2,17418,48285,56,0
,2,17419,48287,56,0
,2,17420,48289,56,0
,2,17421,48291,56,0
,2,17422,48293,56,0
,2,17423,48295,56,0
,2,17424,48297,56,0
,2,17425,48299,56,0
,2,17426,48301,56,0
,2,17427,48303,56,0
,2,17428,48305,56,0
,2,17429,48307,56,0
,2,17430,48309,56,0
,2,17431,48311,56,0
,2,17432,48313,56,0
,2,17433,48315,56,0
,2,17434,48317,56,0
,2,17435,48319,56,0
,2,17436,48321,56,0
,2,17437,48323,56,0
,2,17438,48325,56,0
,2,17439,48327,56,0
,2,17440,48329,56,0
,2,17441,48331,56,0
,2,17442,48333,56,0
,2,17443,48335,56,0
,2,17444,48337,56,0
,2,17445,48339,56,0
,2,17446,48341,56,0
,2,17447,48343,56,0
,2,17448,48345,56,0
,2,17449,48347,56,0
,2,17450,48349,56,0
,2,17451,48351,56,0
,2,17452,48353,56,0
,2,17453,48355,56,0
,2,17454,48357,56,0
,2,17455,48359,56,0
,2,17456,48361,56,0
,2,17457,48363,56,0
,2,17458,48365,56,0
,2,17459,48367,56,0
,2,17460,48369,56,0
,2,17461,48371,56,0
,2,17462,48373,56,0
,2,17463,48375,56,0
,2,17464,48377,56,0
,2,17465,48379,56,0
,2,17466,48381,56,0
,2,17467,48383,56,0
,2,17468,48385,56,0
,2,17469,48387,56,0
,2,17470,48389,56,0
,2,17471,48391,56,0
,2,17472,48393,56,0
,2,17473,48395,56,0
,2,17474,48397,56,0
,2,17475,48399,56,0
,2,17476,48401,56,0
,2,17477,48403,56,0
,2,17478,48405,56,0
,2,17479,48407,56,0
,2,17480,48409,56,0
,2,17481,48411,56,0
,2,17482,48413,56,0
,2,17483,48415,56,0
,2,17484,48417,56,0
,2,17485,48419,56,0
,2,17486,48421,56,0
,2,17487,48423,56,0
,2,17488,48425,56,0
,2,17489,48427,56,0
,2,17490,48429,56,0
,2,17491,48431,56,0
,2,17492,48433,56,0
,2,17493,48435,56,0
,2,17494,48437,56,0
,2,17495,48439,56,0
,2,17496,48441,56,0
,2,17497,48443,56,0
,2,17498,48445,56,0
,2,17499,48447,56,0
,2,17500,48449,56,0
,2,17501,48451,56,0
,2,17502,48453,56,0
,2,17503,48455,56,0
,2,17504,48457,56,0
,2,17505,48459,56,0
,2,17506,48461,56,0
,2,17507,48463,56,0
,2,17508,48465,56,0
,2,17509,48467,56,0
,2,17510,48469,56,0
,2,17511,48471,56,0
,2,17512,48473,56,0
,2,17513,48475,56,0
,2,17514,48477,56,0
,2,17515,48479,56,0
,2,17516,48481,56,0
,2,17517,48483,56,0
,2,17518,48485,56,0
,2,17519,48487,56,0
,2,17520,48489,56,0
,2,17521,48491,56,0
,2,17522,48493,56,0
,2,17523,48495,56,0
,2,17524,48497,56,0
,2,17525,48499,56,0
,2,17526,48501,56,0
,2,17527,48503,56,0
,2,17528,48505,56,0
,2,17529,48507,56,0
,2,17530,48509,56,0
,2,17531,48511,56,0
,2,17532,48513,56,0
,2,17533,48515,56,0
,2,17534,48517,56,0
,2,17535,48519,56,0
,2,17536,48521,56,0
,2,17537,48523,56,0
,2,17538,48525,56,0
,2,17539,48527,56,0
,2,17540,48529,56,0
,2,17541,48531,56,0
,2,17542,48533,56,0
,2,17543,48535,56,0
,2,17544,48537,56,0
,2,17545,48539,56,0
,2,17546,48541,56,0
,2,17547,48543,56,0
,2,17548,48545,56,0
,2,17549,48547,56,0
,2,17550,48549,56,0
,2,17551,48551,56,0
,2,17552,48553,56,0
,2,17553,48555,56,0
,2,17554,48557,56,0
,2,17555,48559,56,0
,2,17556,48561,56,0
,2,17557,48563,56,0
,2,17558,48565,56,0
,2,17559,48567,56,0
,2,17560,48569,56,0
,2,17561,48571,56,0
,2,17562,48573,56,0
,2,17563,48575,56,0
,2,17564,48577,56,0
,2,17565,48579,56,0
,2,17566,48581,56,0
,2,17567,48583,56,0
,2,17568,48585,56,0
,2,17569,48587,56,0
,2,17570,48589,56,0
,2,17571,48591,56,0
,2,17572,48593,56,0
,2,17573,48595,56,0
,2,17574,48597,56,0
,2,17575,48599,56,0
,2,17576,48601,56,0
,2,17577,48603,56,0
,2,17578,48605,56,0
,2,17579,48607,56,0
,2,17580,48609,56,0
,2,17581,48611,56,0
,2,17582,48613,56,0
,2,17583,48615,56,0
,2,17584,48617,56,0
,2,17585,48619,56,0
,2,17586,48621,56,0
,2,17587,48623,56,0
,2,17588,48625,56,0
,2,17589,48627,56,0
,2,17590,48629,56,0
,2,17591,48631,56,0
,2,17592,48633,56,0
,2,17593,48635,56,0
,2,17594,48637,56,0
,2,17595,48639,56,0
,2,17596,48641,56,0
,2,17597,48643,56,0
,2,17598,48645,56,0
,2,17599,48647,56,0
,2,17600,48649,56,0
,2,17601,48651,56,0
,2,17602,48653,56,0
,2,17603,48655,56,0
,2,17604,48657,56,0
,2,17605,48659,56,0
,2,17606,48661,56,0
,2,17607,48663,56,0
,2,17608,48665,56,0
,2,17609,48667,56,0
,2,17610,48669,56,0
,2,17611,48671,56,0
,2,17612,48673,56,0
,2,17613,48675,56,0
,2,17614,48677,56,0
,2,17615,48679,56,0
,2,17616,48681,56,0
,2,17617,48683,56,0
,2,17618,48685,56,0
,2,17619,48687,56,0
,2,17620,48689,56,0
,2,17621,48691,56,0
,2,17622,48693,56,0
,2,17623,48695,56,0
,2,17624,48697,56,0
,2,17625,48699,56,0
,2,17626,48701,56,0
,2,17627,48703,56,0
,2,17628,48705,56,0
,2,17629,48707,56,0
,2,17630,48709,56,0
,2,17631,48711,56,0
,2,17632,48713,56,0
,2,17633,48715,56,0
,2,17634,48717,56,0
,2,17635,48719,56,0
,2,17636,48721,56,0
,2,17637,48723,56,0
,2,17638,48725,56,0
,2,17639,48727,56,0
,2,17640,48729,56,0
,2,17641,48731,56,0
,2,17642,48733,56,0
,2,17643,48735,56,0
,2,17644,48737,56,0
,2,17645,48739,56,0
,2,17646,48741,56,0
,2,17647,48743,56,0
,2,17648,48745,56,0
,2,17649,48747,56,0
,2,17650,48749,56,0
,2,17651,48751,56,0
,2,17652,48753,56,0
,2,17653,48755,56,0
,2,17654,48757,56,0
,2,17655,48759,56,0
,2,17656,48761,56,0
,2,17657,48763,56,0
,2,17658,48765,56,0
,2,17659,48767,56,0
,2,17660,48769,56,0
,2,17661,48771,56,0
,2,17662,48773,56,0
,2,17663,48775,56,0
,2,17664,48777,56,0
,2,17665,48779,56,0
,2,17666,48781,56,0
,2,17667,48783,56,0
,2,17668,48785,56,0
,2,17669,48787,56,0
,2,17670,48789,56,0
,2,17671,48791,56,0
,2,17672,48793,56,0
,2,17673,48795,56,0
,2,17674,48797,56,0
,2,17675,48799,56,0
,2,17676,48801,56,0
,2,17677,48803,56,0
,2,17678,48805,56,0
,2,17679,48807,56,0
,2,17680,48809,56,0
,2,17681,48811,56,0
,2,17682,48813,56,0
,2,17683,48815,56,0
,2,17684,48817,56,0
,2,17685,48819,56,0
,2,17686,48821,56,0
,2,17687,48823,56,0
,2,17688,48825,56,0
,2,17689,48827,56,0
,2,17690,48829,56,0
,2,17691,48831,56,0
,2,17692,48833,56,0
,2,17693,48835,56,0
,2,17694,48837,56,0
,2,17695,48839,56,0
,2,17696,48841,56,0
,2,17697,48843,56,0
,2,17698,48845,56,0
,2,17699,48847,56,0
,2,17700,48849,56,0
,2,17701,48851,56,0
,2,17702,48853,56,0
,2,17703,48855,56,0
,2,17704,48857,56,0
,2,17705,48859,56,0
,2,17706,48861,56,0
,2,17707,48863,56,0
,2,17708,48865,56,0
,2,17709,48867,56,0
,2,17710,48869,56,0
,2,17711,48871,56,0
,2,17712,48873,56,0
,2,17713,48875,56,0
,2,17714,48877,56,0
,2,17715,48879,56,0
,2,17716,48881,56,0
,2,17717,48883,56,0
,2,17718,48885,56,0
,2,17719,48887,56,0
,2,17720,48889,56,0
,2,17721,48891,56,0
,2,17722,48893,56,0
,2,17723,48895,56,0
,2,17724,48897,56,0
,2,17725,48899,56,0
,2,17726,48901,56,0
,2,17727,48903,56,0
,2,17728,48905,56,0
,2,17729,48907,56,0
,2,17730,48909,56,0
,2,17731,48911,56,0
,2,17732,48913,56,0
,2,17733,48915,56,0
,2,17734,48917,56,0
,2,17735,48919,56,0
,2,17736,48921,56,0
,2,17737,48923,56,0
,2,17738,48925,56,0
,2,17739,48927,56,0
,2,17740,48929,56,0
,2,17741,48931,56,0
,2,17742,48933,56,0
,2,17743,48935,56,0
,2,17744,48937,56,0
,2,17745,48939,56,0
,2,17746,48941,56,0
,2,17747,48943,56,0
,2,17748,48945,56,0
,2,17749,48947,56,0
,2,17750,48949,56,0
,2,17751,48951,56,0
,2,17752,48953,56,0
,2,17753,48955,56,0
,2,17754,48957,56,0
,2,17755,48959,56,0
,2,17756,48961,56,0
,2,17757,48963,56,0
,2,17758,48965,56,0
,2,17759,48967,56,0
,2,17760,48969,56,0
,2,17761,48971,56,0
,2,17762,48973,56,0
,2,17763,48975,56,0
,2,17764,48977,56,0
,2,17765,48979,56,0
,2,17766,48981,56,0
,2,17767,48983,56,0
,2,17768,48985,56,0
,2,17769,48987,56,0
,2,17770,48989,56,0
,2,17771,48991,56,0
,2,17772,48993,56,0
,2,17773,48995,56,0
,2,17774,48997,56,0
,2,17775,48999,56,0
,2,17776,49001,56,0
,2,17777,49003,56,0
,2,17778,49005,56,0
,2,17779,49007,56,0
,2,17780,49009,56,0
,2,17781,49011,56,0
,2,17782,49013,56,0
,2,17783,49015,56,0
,2,17784,49017,56,0
,2,17785,49019,56,0
,2,17786,49021,56,0
,2,17787,49023,56,0
,2,17788,49025,56,0
,2,17789,49027,56,0
,2,17790,49029,56,0
,2,17791,49031,56,0
,2,17792,49033,56,0
,2,17793,49035,56,0
,2,17794,49037,56,0
,2,17795,49039,56,0
,2,17796,49041,56,0
,2,17797,49043,56,0
,2,17798,49045,56,0
,2,17799,49047,56,0
,2,17800,49049,56,0
,2,17801,49051,56,0
,2,17802,49053,56,0
,2,17803,49055,56,0
,2,17804,49057,56,0
,2,17805,49059,56,0
,2,17806,49061,56,0
,2,17807,49063,56,0
,2,17808,49065,56,0
,2,17809,49067,56,0
,2,17810,49069,56,0
,2,17811,49071,56,0
,2,17812,49073,56,0
,2,17813,49075,56,0
,2,17814,49077,56,0
,2,17815,49079,56,0
,2,17816,49081,56,0
,2,17817,49083,56,0
,2,17818,49085,56,0
,2,17819,49087,56,0
,2,17820,49089,56,0
,2,17821,49091,56,0
,2,17822,49093,56,0
,2,17823,49095,56,0
,2,17824,49097,56,0
,2,17825,49099,56,0
,2,17826,49101,56,0
,2,17827,49103,56,0
,2,17828,49105,56,0
,2,17829,49107,56,0
,2,17830,49109,56,0
,2,17831,49111,56,0
,2,17832,49113,56,0
,2,17833,49115,56,0
,2,17834,49117,56,0
,2,17835,49119,56,0
,2,17836,49121,56,0
,2,17837,49123,56,0
,2,17838,49125,56,0
,2,17839,49127,56,0
,2,17840,49129,56,0
,2,17841,49131,56,0
,2,17842,49133,56,0
,2,17843,49135,56,0
,2,17844,49137,56,0
,2,17845,49139,56,0
,2,17846,49141,56,0
,2,17847,49143,56,0
,2,17848,49145,56,0
,2,17849,49147,56,0
,2,17850,49149,56,0
,2,17851,49151,56,0
,2,17852,49153,56,0
,2,17853,49155,56,0
,2,17854,49157,56,0
,2,17855,49159,56,0
,2,17856,49161,56,0
,2,17857,49163,56,0
,2,17858,49165,56,0
,2,17859,49167,56,0
,2,17860,49169,56,0
,2,17861,49171,56,0
,2,17862,49173,56,0
,2,17863,49175,56,0
,2,17864,49177,56,0
,2,17865,49179,56,0
,2,17866,49181,56,0
,2,17867,49183,56,0
,2,17868,49185,56,0
,2,17869,49187,56,0
,2,17870,49189,56,0
,2,17871,49191,56,0
,2,17872,49193,56,0
,2,17873,49195,56,0
,2,17874,49197,56,0
,2,17875,49199,56,0
,2,17876,49201,56,0
,2,17877,49203,56,0
,2,17878,49205,56,0
,2,17879,49207,56,0
,2,17880,49209,56,0
,2,17881,49211,56,0
,2,17882,49213,56,0
,2,17883,49215,56,0
,2,17884,49217,56,0
,2,17885,49219,56,0
,2,17886,49221,56,0
,2,17887,49223,56,0
,2,17888,49225,56,0
,2,17889,49227,56,0
,2,17890,49229,56,0
,2,17891,49231,56,0
,2,17892,49233,56,0
,2,17893,49235,56,0
,2,17894,49237,56,0
,2,17895,49239,56,0
,2,17896,49241,56,0
,2,17897,49243,56,0
,2,17898,49245,56,0
,2,17899,49247,56,0
,2,17900,49249,56,0
,2,17901,49251,56,0
,2,17902,49253,56,0
,2,17903,49255,56,0
,2,17904,49257,56,0
,2,17905,49259,56,0
,2,17906,49261,56,0
,2,17907,49263,56,0
,2,17908,49265,56,0
,2,17909,49267,56,0
,2,17910,49269,56,0
,2,17911,49271,56,0
,2,17912,49273,56,0
,2,17913,49275,56,0
,2,17914,49277,56,0
,2,17915,49279,56,0
,2,17916,49281,56,0
,2,17917,49283,56,0
,2,17918,49285,56,0
,2,17919,49287,56,0
,2,17920,49289,56,0
,2,17921,49291,56,0
,2,17922,49293,56,0
,2,17923,49295,56,0
,2,17924,49297,56,0
,2,17925,49299,56,0
,2,17926,49301,56,0
,2,17927,49303,56,0
,2,17928,49305,56,0
,2,17929,49307,56,0
,2,17930,49309,56,0
,2,17931,49311,56,0
,2,17932,49313,56,0
,2,17933,49315,56,0
,2,17934,49317,56,0
,2,17935,49319,56,0
,2,17936,49321,56,0
,2,17937,49323,56,0
,2,17938,49325,56,0
,2,17939,49327,56,0
,2,17940,49329,56,0
,2,17941,49331,56,0
,2,17942,49333,56,0
,2,17943,49335,56,0
,2,17944,49337,56,0
,2,17945,49339,56,0
,2,17946,49341,56,0
,2,17947,49343,56,0
,2,17948,49345,56,0
,2,17949,49347,56,0
,2,17950,49349,56,0
,2,17951,49351,56,0
,2,17952,49353,56,0
,2,17953,49355,56,0
,2,17954,49357,56,0
,2,17955,49359,56,0
,2,17956,49361,56,0
,2,17957,49363,56,0
,2,17958,49365,56,0
,2,17959,49367,56,0
,2,17960,49369,56,0
,2,17961,49371,56,0
,2,17962,49373,56,0
,2,17963,49375,56,0
,2,17964,49377,56,0
,2,17965,49379,56,0
,2,17966,49381,56,0
,2,17967,49383,56,0
,2,17968,49385,56,0
,2,17969,49387,56,0
,2,17970,49389,56,0
,2,17971,49391,56,0
,2,17972,49393,56,0
,2,17973,49395,56,0
,2,17974,49397,56,0
,2,17975,49399,56,0
,2,17976,49401,56,0
,2,17977,49403,56,0
,2,17978,49405,56,0
,2,17979,49407,56,0
,2,17980,49409,56,0
,2,17981,49411,56,0
,2,17982,49413,56,0
,2,17983,49415,56,0
,2,17984,49417,56,0
,2,17985,49419,56,0
,2,17986,49421,56,0
,2,17987,49423,56,0
,2,17988,49425,56,0
,2,17989,49427,56,0
,2,17990,49429,56,0
,2,17991,49431,56,0
,2,17992,49433,56,0
,2,17993,49435,56,0
,2,17994,49437,56,0
,2,17995,49439,56,0
,2,17996,49441,56,0
,2,17997,49443,56,0
,2,17998,49445,56,0
,2,17999,49447,56,0
,2,18000,49449,56,0
,2,18001,49451,56,0
,2,18002,49453,56,0
,2,18003,49455,56,0
,2,18004,49457,56,0
,2,18005,49459,56,0
,2,18006,49461,56,0
,2,18007,49463,56,0
,2,18008,49465,56,0
,2,18009,49467,56,0
,2,18010,49469,56,0
,2,18011,49471,56,0
,2,18012,49473,56,0
,2,18013,49475,56,0
,2,18014,49477,56,0
,2,18015,49479,56,0
,2,18016,49481,56,0
,2,18017,49483,56,0
,2,18018,49485,56,0
,2,18019,49487,56,0
,2,18020,49489,56,0
,2,18021,49491,56,0
,2,18022,49493,56,0
,2,18023,49495,56,0
,2,18024,49497,56,0
,2,18025,49499,56,0
,2,18026,49501,56,0
,2,18027,49503,56,0
,2,18028,49505,56,0
,2,18029,49507,56,0
,2,18030,49509,56,0
,2,18031,49511,56,0
,2,18032,49513,56,0
,2,18033,49515,56,0
,2,18034,49517,56,0
,2,18035,49519,56,0
,2,18036,49521,56,0
,2,18037,49523,56,0
,2,18038,49525,56,0
,2,18039,49527,56,0
,2,18040,49529,56,0
,2,18041,49531,56,0
,2,18042,49533,56,0
,2,18043,49535,56,0
,2,18044,49537,56,0
,2,18045,49539,56,0
,2,18046,49541,56,0
,2,18047,49543,56,0
,2,18048,49545,56,0
,2,18049,49547,56,0
,2,18050,49549,56,0
,2,18051,49551,56,0
,2,18052,49553,56,0
,2,18053,49555,56,0
,2,18054,49557,56,0
,2,18055,49559,56,0
,2,18056,49561,56,0
,2,18057,49563,56,0
,2,18058,49565,56,0
,2,18059,49567,56,0
,2,18060,49569,56,0
,2,18061,49571,56,0
,2,18062,49573,56,0
,2,18063,49575,56,0
,2,18064,49577,56,0
,2,18065,49579,56,0
,2,18066,49581,56,0
,2,18067,49583,56,0
,2,18068,49585,56,0
,2,18069,49587,56,0
,2,18070,49589,56,0
,2,18071,49591,56,0
,2,18072,49593,56,0
,2,18073,49595,56,0
,2,18074,49597,56,0
,2,18075,49599,56,0
,2,18076,49601,56,0
,2,18077,49603,56,0
,2,18078,49605,56,0
,2,18079,49607,56,0
,2,18080,49609,56,0
,2,18081,49611,56,0
,2,18082,49613,56,0
,2,18083,49615,56,0
,2,18084,49617,56,0
,2,18085,49619,56,0
,2,18086,49621,56,0
,2,18087,49623,56,0
,2,18088,49625,56,0
,2,18089,49627,56,0
,2,18090,49629,56,0
,2,18091,49631,56,0
,2,18092,49633,56,0
,2,18093,49635,56,0
,2,18094,49637,56,0
,2,18095,49639,56,0
,2,18096,49641,56,0
,2,18097,49643,56,0
,2,18098,49645,56,0
,2,18099,49647,56,0
,2,18100,49649,56,0
,2,18101,49651,56,0
,2,18102,49653,56,0
,2,18103,49655,56,0
,2,18104,49657,56,0
,2,18105,49659,56,0
,2,18106,49661,56,0
,2,18107,49663,56,0
,2,18108,49665,56,0
,2,18109,49667,56,0
,2,18110,49669,56,0
,2,18111,49671,56,0
,2,18112,49673,56,0
,2,18113,49675,56,0
,2,18114,49677,56,0
,2,18115,49679,56,0
,2,18116,49681,56,0
,2,18117,49683,56,0
,2,18118,49685,56,0
,2,18119,49687,56,0
,2,18120,49689,56,0
,2,18121,49691,56,0
,2,18122,49693,56,0
,2,18123,49695,56,0
,2,18124,49697,56,0
,2,18125,49699,56,0
,2,18126,49701,56,0
,2,18127,49703,56,0
,2,18128,49705,56,0
,2,18129,49707,56,0
,2,18130,49709,56,0
,2,18131,49711,56,0
,2,18132,49713,56,0
,2,18133,49715,56,0
,2,18134,49717,56,0
,2,18135,49719,56,0
,2,18136,49721,56,0
,2,18137,49723,56,0
,2,18138,49725,56,0
,2,18139,49727,56,0
,2,18140,49729,56,0
,2,18141,49731,56,0
,2,18142,49733,56,0
,2,18143,49735,56,0
,2,18144,49737,56,0
,2,18145,49739,56,0
,2,18146,49741,56,0
,2,18147,49743,56,0
,2,18148,49745,56,0
,2,18149,49747,56,0
,2,18150,49749,56,0
,2,18151,49751,56,0
,2,18152,49753,56,0
,2,18153,49755,56,0
,2,18154,49757,56,0
,2,18155,49759,56,0
,2,18156,49761,56,0
,2,18157,49763,56,0
,2,18158,49765,56,0
,2,18159,49767,56,0
,2,18160,49769,56,0
,2,18161,49771,56,0
,2,18162,49773,56,0
,2,18163,49775,56,0
,2,18164,49777,56,0
,2,18165,49779,56,0
,2,18166,49781,56,0
,2,18167,49783,56,0
,2,18168,49785,56,0
,2,18169,49787,56,0
,2,18170,49789,56,0
,2,18171,49791,56,0
,2,18172,49793,56,0
,2,18173,49795,56,0
,2,18174,49797,56,0
,2,18175,49799,56,0
,2,18176,49801,56,0
,2,18177,49803,56,0
,2,18178,49805,56,0
,2,18179,49807,56,0
,2,18180,49809,56,0
,2,18181,49811,56,0
,2,18182,49813,56,0
,2,18183,49815,56,0
,2,18184,49817,56,0
,2,18185,49819,56,0
,2,18186,49821,56,0
,2,18187,49823,56,0
,2,18188,49825,56,0
,2,18189,49827,56,0
,2,18190,49829,56,0
,2,18191,49831,56,0
,2,18192,49833,56,0
,2,18193,49835,56,0
,2,18194,49837,56,0
,2,18195,49839,56,0
,2,18196,49841,56,0
,2,18197,49843,56,0
,2,18198,49845,56,0
,2,18199,49847,56,0
,2,18200,49849,56,0
,2,18201,49851,56,0
,2,18202,49853,56,0
,2,18203,49855,56,0
,2,18204,49857,56,0
,2,18205,49859,56,0
,2,18206,49861,56,0
,2,18207,49863,56,0
,2,18208,49865,56,0
,2,18209,49867,56,0
,2,18210,49869,56,0
,2,18211,49871,56,0
,2,18212,49873,56,0
,2,18213,49875,56,0
,2,18214,49877,56,0
,2,18215,49879,56,0
,2,18216,49881,56,0
,2,18217,49883,56,0
,2,18218,49885,56,0
,2,18219,49887,56,0
,2,18220,49889,56,0
,2,18221,49891,56,0
,2,18222,49893,56,0
,2,18223,49895,56,0
,2,18224,49897,56,0
,2,18225,49899,56,0
,2,18226,49901,56,0
,2,18227,49903,56,0
,2,18228,49905,56,0
,2,18229,49907,56,0
,2,18230,49909,56,0
,2,18231,49911,56,0
,2,18232,49913,56,0
,2,18233,49915,56,0
,2,18234,49917,56,0
,2,18235,49919,56,0
,2,18236,49921,56,0
,2,18237,49923,56,0
,2,18238,49925,56,0
,2,18239,49927,56,0
,2,18240,49929,56,0
,2,18241,49931,56,0
,2,18242,49933,56,0
,2,18243,49935,56,0
,2,18244,49937,56,0
,2,18245,49939,56,0
,2,18246,49941,56,0
,2,18247,49943,56,0
,2,18248,49945,56,0
,2,18249,49947,56,0
,2,18250,49949,56,0
,2,18251,49951,56,0
,2,18252,49953,56,0
,2,18253,49955,56,0
,2,18254,49957,56,0
,2,18255,49959,56,0
,2,18256,49961,56,0
,2,18257,49963,56,0
,2,18258,49965,56,0
,2,18259,49967,56,0
,2,18260,49969,56,0
,2,18261,49971,56,0
,2,18262,49973,56,0
,2,18263,49975,56,0
,2,18264,49977,56,0
,2,18265,49979,56,0
,2,18266,49981,56,0
,2,18267,49983,56,0
,2,18268,49985,56,0
,2,18269,49987,56,0
,2,18270,49989,56,0
,2,18271,49991,56,0
,2,18272,49993,56,0
,2,18273,49995,56,0
,2,18274,49997,56,0
,2,18275,49999,56,0
,2,18276,50001,56,0
,2,18277,50003,56,0
,2,18278,50005,56,0
,2,18279,50007,56,0
,2,18280,50009,56,0
,2,18281,50011,56,0
,2,18282,50013,56,0
,2,18283,50015,56,0
,2,18284,50017,56,0
,2,18285,50019,56,0
,2,18286,50021,56,0
,2,18287,50023,56,0
,2,18288,50025,56,0
,2,18289,50027,56,0
,2,18290,50029,56,0
,2,18291,50031,56,0
,2,18292,50033,56,0
,2,18293,50035,56,0
,2,18294,50037,56,0
,2,18295,50039,56,0
,2,18296,50041,56,0
,2,18297,50043,56,0
,2,18298,50045,56,0
,2,18299,50047,56,0
,2,18300,50049,56,0
,2,18301,50051,56,0
,2,18302,50053,56,0
,2,18303,50055,56,0
,2,18304,50057,56,0
,2,18305,50059,56,0
,2,18306,50061,56,0
,2,18307,50063,56,0
,2,18308,50065,56,0
,2,18309,50067,56,0
,2,18310,50069,56,0
,2,18311,50071,56,0
,2,18312,50073,56,0
,2,18313,50075,56,0
,2,18314,50077,56,0
,2,18315,50079,56,0
,2,18316,50081,56,0
,2,18317,50083,56,0
,2,18318,50085,56,0
,2,18319,50087,56,0
,2,18320,50089,56,0
,2,18321,50091,56,0
,2,18322,50093,56,0
,2,18323,50095,56,0
,2,18324,50097,56,0
,2,18325,50099,56,0
,2,18326,50101,56,0
,2,18327,50103,56,0
,2,18328,50105,56,0
,2,18329,50107,56,0
,2,18330,50109,56,0
,2,18331,50111,56,0
,2,18332,50113,56,0
,2,18333,50115,56,0
,2,18334,50117,56,0
,2,18335,50119,56,0
,2,18336,50121,56,0
,2,18337,50123,56,0
,2,18338,50125,56,0
,2,18339,50127,56,0
,2,18340,50129,56,0
,2,18341,50131,56,0
,2,18342,50133,56,0
,2,18343,50135,56,0
,2,18344,50137,56,0
,2,18345,50139,56,0
,2,18346,50141,56,0
,2,18347,50143,56,0
,2,18348,50145,56,0
,2,18349,50147,56,0
,2,18350,50149,56,0
,2,18351,50151,56,0
,2,18352,50153,56,0
,2,18353,50155,56,0
,2,18354,50157,56,0
,2,18355,50159,56,0
,2,18356,50161,56,0
,2,18357,50163,56,0
,2,18358,50165,56,0
,2,18359,50167,56,0
,2,18360,50169,56,0
,2,18361,50171,56,0
,2,18362,50173,56,0
,2,18363,50175,56,0
,2,18364,50177,56,0
,2,18365,50179,56,0
,2,18366,50181,56,0
,2,18367,50183,56,0
,2,18368,50185,56,0
,2,18369,50187,56,0
,2,18370,50189,56,0
,2,18371,50191,56,0
,2,18372,50193,56,0
,2,18373,50195,56,0
,2,18374,50197,56,0
,2,18375,50199,56,0
,2,18376,50201,56,0
,2,18377,50203,56,0
,2,18378,50205,56,0
,2,18379,50207,56,0
,2,18380,50209,56,0
,2,18381,50211,56,0
,2,18382,50213,56,0
,2,18383,50215,56,0
,2,18384,50217,56,0
,2,18385,50219,56,0
,2,18386,50221,56,0
,2,18387,50223,56,0
,2,18388,50225,56,0
,2,18389,50227,56,0
,2,18390,50229,56,0
,2,18391,50231,56,0
,2,18392,50233,56,0
,2,18393,50235,56,0
,2,18394,50237,56,0
,2,18395,50239,56,0
,2,18396,50241,56,0
,2,18397,50243,56,0
,2,18398,50245,56,0
,2,18399,50247,56,0
,2,18400,50249,56,0
,2,18401,50251,56,0
,2,18402,50253,56,0
,2,18403,50255,56,0
,2,18404,50257,56,0
,2,18405,50259,56,0
,2,18406,50261,56,0
,2,18407,50263,56,0
,2,18408,50265,56,0
,2,18409,50267,56,0
,2,18410,50269,56,0
,2,18411,50271,56,0
,2,18412,50273,56,0
,2,18413,50275,56,0
,2,18414,50277,56,0
,2,18415,50279,56,0
,2,18416,50281,56,0
,2,18417,50283,56,0
,2,18418,50285,56,0
,2,18419,50287,56,0
,2,18420,50289,56,0
,2,18421,50291,56,0
,2,18422,50293,56,0
,2,18423,50295,56,0
,2,18424,50297,56,0
,2,18425,50299,56,0
,2,18426,50301,56,0
,2,18427,50303,56,0
,2,18428,50305,56,0
,2,18429,50307,56,0
,2,18430,50309,56,0
,2,18431,50311,56,0
,2,18432,50313,56,0
,2,18433,50315,56,0
,2,18434,50317,56,0
,2,18435,50319,56,0
,2,18436,50321,56,0
,2,18437,50323,56,0
,2,18438,50325,56,0
,2,18439,50327,56,0
,2,18440,50329,56,0
,2,18441,50331,56,0
,2,18442,50333,56,0
,2,18443,50335,56,0
,2,18444,50337,56,0
,2,18445,50339,56,0
,2,18446,50341,56,0
,2,18447,50343,56,0
,2,18448,50345,56,0
,2,18449,50347,56,0
,2,18450,50349,56,0
,2,18451,50351,56,0
,2,18452,50353,56,0
,2,18453,50355,56,0
,2,18454,50357,56,0
,2,18455,50359,56,0
,2,18456,50361,56,0
,2,18457,50363,56,0
,2,18458,50365,56,0
,2,18459,50367,56,0
,2,18460,50369,56,0
,2,18461,50371,56,0
,2,18462,50373,56,0
,2,18463,50375,56,0
,2,18464,50377,56,0
,2,18465,50379,56,0
,2,18466,50381,56,0
,2,18467,50383,56,0
,2,18468,50385,56,0
,2,18469,50387,56,0
,2,18470,50389,56,0
,2,18471,50391,56,0
,2,18472,50393,56,0
,2,18473,50395,56,0
,2,18474,50397,56,0
,2,18475,50399,56,0
,2,18476,50401,56,0
,2,18477,50403,56,0
,2,18478,50405,56,0
,2,18479,50407,56,0
,2,18480,50409,56,0
,2,18481,50411,56,0
,2,18482,50413,56,0
,2,18483,50415,56,0
,2,18484,50417,56,0
,2,18485,50419,56,0
,2,18486,50421,56,0
,2,18487,50423,56,0
,2,18488,50425,56,0
,2,18489,50427,56,0
,2,18490,50429,56,0
,2,18491,50431,56,0
,2,18492,50433,56,0
,2,18493,50435,56,0
,2,18494,50437,56,0
,2,18495,50439,56,0
,2,18496,50441,56,0
,2,18497,50443,56,0
,2,18498,50445,56,0
,2,18499,50447,56,0
,2,18500,50449,56,0
,2,18501,50451,56,0
,2,18502,50453,56,0
,2,18503,50455,56,0
,2,18504,50457,56,0
,2,18505,50459,56,0
,2,18506,50461,56,0
,2,18507,50463,56,0
,2,18508,50465,56,0
,2,18509,50467,56,0
,2,18510,50469,56,0
,2,18511,50471,56,0
,2,18512,50473,56,0
,2,18513,50475,56,0
,2,18514,50477,56,0
,2,18515,50479,56,0
,2,18516,50481,56,0
,2,18517,50483,56,0
,2,18518,50485,56,0
,2,18519,50487,56,0
,2,18520,50489,56,0
,2,18521,50491,56,0
,2,18522,50493,56,0
,2,18523,50495,56,0
,2,18524,50497,56,0
,2,18525,50499,56,0
,2,18526,50501,56,0
,2,18527,50503,56,0
,2,18528,50505,56,0
,2,18529,50507,56,0
,2,18530,50509,56,0
,2,18531,50511,56,0
,2,18532,50513,56,0
,2,18533,50515,56,0
,2,18534,50517,56,0
,2,18535,50519,56,0
,2,18536,50521,56,0
,2,18537,50523,56,0
,2,18538,50525,56,0
,2,18539,50527,56,0
,2,18540,50529,56,0
,2,18541,50531,56,0
,2,18542,50533,56,0
,2,18543,50535,56,0
,2,18544,50537,56,0
,2,18545,50539,56,0
,2,18546,50541,56,0
,2,18547,50543,56,0
,2,18548,50545,56,0
,2,18549,50547,56,0
,2,18550,50549,56,0
,2,18551,50551,56,0
,2,18552,50553,56,0
,2,18553,50555,56,0
,2,18554,50557,56,0
,2,18555,50559,56,0
,2,18556,50561,56,0
,2,18557,50563,56,0
,2,18558,50565,56,0
,2,18559,50567,56,0
,2,18560,50569,56,0
,2,18561,50571,56,0
,2,18562,50573,56,0
,2,18563,50575,56,0
,2,18564,50577,56,0
,2,18565,50579,56,0
,2,18566,50581,56,0
,2,18567,50583,56,0
,2,18568,50585,56,0
,2,18569,50587,56,0
,2,18570,50589,56,0
,2,18571,50591,56,0
,2,18572,50593,56,0
,2,18573,50595,56,0
,2,18574,50597,56,0
,2,18575,50599,56,0
,2,18576,50601,56,0
,2,18577,50603,56,0
,2,18578,50605,56,0
,2,18579,50607,56,0
,2,18580,50609,56,0
,2,18581,50611,56,0
,2,18582,50613,56,0
,2,18583,50615,56,0
,2,18584,50617,56,0
,2,18585,50619,56,0
,2,18586,50621,56,0
,2,18587,50623,56,0
,2,18588,50625,56,0
,2,18589,50627,56,0
,2,18590,50629,56,0
,2,18591,50631,56,0
,2,18592,50633,56,0
,2,18593,50635,56,0
,2,18594,50637,56,0
,2,18595,50639,56,0
,2,18596,50641,56,0
,2,18597,50643,56,0
,2,18598,50645,56,0
,2,18599,50647,56,0
,2,18600,50649,56,0
,2,18601,50651,56,0
,2,18602,50653,56,0
,2,18603,50655,56,0
,2,18604,50657,56,0
,2,18605,50659,56,0
,2,18606,50661,56,0
,2,18607,50663,56,0
,2,18608,50665,56,0
,2,18609,50667,56,0
,2,18610,50669,56,0
,2,18611,50671,56,0
,2,18612,50673,56,0
,2,18613,50675,56,0
,2,18614,50677,56,0
,2,18615,50679,56,0
,2,18616,50681,56,0
,2,18617,50683,56,0
,2,18618,50685,56,0
,2,18619,50687,56,0
,2,18620,50689,56,0
,2,18621,50691,56,0
,2,18622,50693,56,0
,2,18623,50695,56,0
,2,18624,50697,56,0
,2,18625,50699,56,0
,2,18626,50701,56,0
,2,18627,50703,56,0
,2,18628,50705,56,0
,2,18629,50707,56,0
,2,18630,50709,56,0
,2,18631,50711,56,0
,2,18632,50713,56,0
,2,18633,50715,56,0
,2,18634,50717,56,0
,2,18635,50719,56,0
,2,18636,50721,56,0
,2,18637,50723,56,0
,2,18638,50725,56,0
,2,18639,50727,56,0
,2,18640,50729,56,0
,2,18641,50731,56,0
,2,18642,50733,56,0
,2,18643,50735,56,0
,2,18644,50737,56,0
,2,18645,50739,56,0
,2,18646,50741,56,0
,2,18647,50743,56,0
,2,18648,50745,56,0
,2,18649,50747,56,0
,2,18650,50749,56,0
,2,18651,50751,56,0
,2,18652,50753,56,0
,2,18653,50755,56,0
,2,18654,50757,56,0
,2,18655,50759,56,0
,2,18656,50761,56,0
,2,18657,50763,56,0
,2,18658,50765,56,0
,2,18659,50767,56,0
,2,18660,50769,56,0
,2,18661,50771,56,0
,2,18662,50773,56,0
,2,18663,50775,56,0
,2,18664,50777,56,0
,2,18665,50779,56,0
,2,18666,50781,56,0
,2,18667,50783,56,0
,2,18668,50785,56,0
,2,18669,50787,56,0
,2,18670,50789,56,0
,2,18671,50791,56,0
,2,18672,50793,56,0
,2,18673,50795,56,0
,2,18674,50797,56,0
,2,18675,50799,56,0
,2,18676,50801,56,0
,2,18677,50803,56,0
,2,18678,50805,56,0
,2,18679,50807,56,0
,2,18680,50809,56,0
,2,18681,50811,56,0
,2,18682,50813,56,0
,2,18683,50815,56,0
,2,18684,50817,56,0
,2,18685,50819,56,0
,2,18686,50821,56,0
,2,18687,50823,56,0
,2,18688,50825,56,0
,2,18689,50827,56,0
,2,18690,50829,56,0
,2,18691,50831,56,0
,2,18692,50833,56,0
,2,18693,50835,56,0
,2,18694,50837,56,0
,2,18695,50839,56,0
,2,18696,50841,56,0
,2,18697,50843,56,0
,2,18698,50845,56,0
,2,18699,50847,56,0
,2,18700,50849,56,0
,2,18701,50851,56,0
,2,18702,50853,56,0
,2,18703,50855,56,0
,2,18704,50857,56,0
,2,18705,50859,56,0
,2,18706,50861,56,0
,2,18707,50863,56,0
,2,18708,50865,56,0
,2,18709,50867,56,0
,2,18710,50869,56,0
,2,18711,50871,56,0
,2,18712,50873,56,0
,2,18713,50875,56,0
,2,18714,50877,56,0
,2,18715,50879,56,0
,2,18716,50881,56,0
,2,18717,50883,56,0
,2,18718,50885,56,0
,2,18719,50887,56,0
,2,18720,50889,56,0
,2,18721,50891,56,0
,2,18722,50893,56,0
,2,18723,50895,56,0
,2,18724,50897,56,0
,2,18725,50899,56,0
,2,18726,50901,56,0
,2,18727,50903,56,0
,2,18728,50905,56,0
,2,18729,50907,56,0
,2,18730,50909,56,0
,2,18731,50911,56,0
,2,18732,50913,56,0
,2,18733,50915,56,0
,2,18734,50917,56,0
,2,18735,50919,56,0
,2,18736,50921,56,0
,2,18737,50923,56,0
,2,18738,50925,56,0
,2,18739,50927,56,0
,2,18740,50929,56,0
,2,18741,50931,56,0
,2,18742,50933,56,0
,2,18743,50935,56,0
,2,18744,50937,56,0
,2,18745,50939,56,0
,2,18746,50941,56,0
,2,18747,50943,56,0
,2,18748,50945,56,0
,2,18749,50947,56,0
,2,18750,50949,56,0
,2,18751,50951,56,0
,2,18752,50953,56,0
,2,18753,50955,56,0
,2,18754,50957,56,0
,2,18755,50959,56,0
,2,18756,50961,56,0
,2,18757,50963,56,0
,2,18758,50965,56,0
,2,18759,50967,56,0
,2,18760,50969,56,0
,2,18761,50971,56,0
,2,18762,50973,56,0
,2,18763,50975,56,0
,2,18764,50977,56,0
,2,18765,50979,56,0
,2,18766,50981,56,0
,2,18767,50983,56,0
,2,18768,50985,56,0
,2,18769,50987,56,0
,2,18770,50989,56,0
,2,18771,50991,56,0
,2,18772,50993,56,0
,2,18773,50995,56,0
,2,18774,50997,56,0
,2,18775,50999,56,0
,2,18776,51001,56,0
,2,18777,51003,56,0
,2,18778,51005,56,0
,2,18779,51007,56,0
,2,18780,51009,56,0
,2,18781,51011,56,0
,2,18782,51013,56,0
,2,18783,51015,56,0
,2,18784,51017,56,0
,2,18785,51019,56,0
,2,18786,51021,56,0
,2,18787,51023,56,0
,2,18788,51025,56,0
,2,18789,51027,56,0
,2,18790,51029,56,0
,2,18791,51031,56,0
,2,18792,51033,56,0
,2,18793,51035,56,0
,2,18794,51037,56,0
,2,18795,51039,56,0
,2,18796,51041,56,0
,2,18797,51043,56,0
,2,18798,51045,56,0
,2,18799,51047,56,0
,2,18800,51049,56,0
,2,18801,51051,56,0
,2,18802,51053,56,0
,2,18803,51055,56,0
,2,18804,51057,56,0
,2,18805,51059,56,0
,2,18806,51061,56,0
,2,18807,51063,56,0
,2,18808,51065,56,0
,2,18809,51067,56,0
,2,18810,51069,56,0
,2,18811,51071,56,0
,2,18812,51073,56,0
,2,18813,51075,56,0
,2,18814,51077,56,0
,2,18815,51079,56,0
,2,18816,51081,56,0
,2,18817,51083,56,0
,2,18818,51085,56,0
,2,18819,51087,56,0
,2,18820,51089,56,0
,2,18821,51091,56,0
,2,18822,51093,56,0
,2,18823,51095,56,0
,2,18824,51097,56,0
,2,18825,51099,56,0
,2,18826,51101,56,0
,2,18827,51103,56,0
,2,18828,51105,56,0
,2,18829,51107,56,0
,2,18830,51109,56,0
,2,18831,51111,56,0
,2,18832,51113,56,0
,2,18833,51115,56,0
,2,18834,51117,56,0
,2,18835,51119,56,0
,2,18836,51121,56,0
,2,18837,51123,56,0
,2,18838,51125,56,0
,2,18839,51127,56,0
,2,18840,51129,56,0
,2,18841,51131,56,0
,2,18842,51133,56,0
,2,18843,51135,56,0
,2,18844,51137,56,0
,2,18845,51139,56,0
,2,18846,51141,56,0
,2,18847,51143,56,0
,2,18848,51145,56,0
,2,18849,51147,56,0
,2,18850,51149,56,0
,2,18851,51151,56,0
,2,18852,51153,56,0
,2,18853,51155,56,0
,2,18854,51157,56,0
,2,18855,51159,56,0
,2,18856,51161,56,0
,2,18857,51163,56,0
,2,18858,51165,56,0
,2,18859,51167,56,0
,2,18860,51169,56,0
,2,18861,51171,56,0
,2,18862,51173,56,0
,2,18863,51175,56,0
,2,18864,51177,56,0
,2,18865,51179,56,0
,2,18866,51181,56,0
,2,18867,51183,56,0
,2,18868,51185,56,0
,2,18869,51187,56,0
,2,18870,51189,56,0
,2,18871,51191,56,0
,2,18872,51193,56,0
,2,18873,51195,56,0
,2,18874,51197,56,0
,2,18875,51199,56,0
,2,18876,51201,56,0
,2,18877,51203,56,0
,2,18878,51205,56,0
,2,18879,51207,56,0
,2,18880,51209,56,0
,2,18881,51211,56,0
,2,18882,51213,56,0
,2,18883,51215,56,0
,2,18884,51217,56,0
,2,18885,51219,56,0
,2,18886,51221,56,0
,2,18887,51223,56,0
,2,18888,51225,56,0
,2,18889,51227,56,0
,2,18890,51229,56,0
,2,18891,51231,56,0
,2,18892,51233,56,0
,2,18893,51235,56,0
,2,18894,51237,56,0
,2,18895,51239,56,0
,2,18896,51241,56,0
,2,18897,51243,56,0
,2,18898,51245,56,0
,2,18899,51247,56,0
,2,18900,51249,56,0
,2,18901,51251,56,0
,2,18902,51253,56,0
,2,18903,51255,56,0
,2,18904,51257,56,0
,2,18905,51259,56,0
,2,18906,51261,56,0
,2,18907,51263,56,0
,2,18908,51265,56,0
,2,18909,51267,56,0
,2,18910,51269,56,0
,2,18911,51271,56,0
,2,18912,51273,56,0
,2,18913,51275,56,0
,2,18914,51277,56,0
,2,18915,51279,56,0
,2,18916,51281,56,0
,2,18917,51283,56,0
,2,18918,51285,56,0
,2,18919,51287,56,0
,2,18920,51289,56,0
,2,18921,51291,56,0
,2,18922,51293,56,0
,2,18923,51295,56,0
,2,18924,51297,56,0
,2,18925,51299,56,0
,2,18926,51301,56,0
,2,18927,51303,56,0
,2,18928,51305,56,0
,2,18929,51307,56,0
,2,18930,51309,56,0
,2,18931,51311,56,0
,2,18932,51313,56,0
,2,18933,51315,56,0
,2,18934,51317,56,0
,2,18935,51319,56,0
,2,18936,51321,56,0
,2,18937,51323,56,0
,2,18938,51325,56,0
,2,18939,51327,56,0
,2,18940,51329,56,0
,2,18941,51331,56,0
,2,18942,51333,56,0
,2,18943,51335,56,0
,2,18944,51337,56,0
,2,18945,51339,56,0
,2,18946,51341,56,0
,2,18947,51343,56,0
,2,18948,51345,56,0
,2,18949,51347,56,0
,2,18950,51349,56,0
,2,18951,51351,56,0
,2,18952,51353,56,0
,2,18953,51355,56,0
,2,18954,51357,56,0
,2,18955,51359,56,0
,2,18956,51361,56,0
,2,18957,51363,56,0
,2,18958,51365,56,0
,2,18959,51367,56,0
,2,18960,51369,56,0
,2,18961,51371,56,0
,2,18962,51373,56,0
,2,18963,51375,56,0
,2,18964,51377,56,0
,2,18965,51379,56,0
,2,18966,51381,56,0
,2,18967,51383,56,0
,2,18968,51385,56,0
,2,18969,51387,56,0
,2,18970,51389,56,0
,2,18971,51391,56,0
,2,18972,51393,56,0
,2,18973,51395,56,0
,2,18974,51397,56,0
,2,18975,51399,56,0
,2,18976,51401,56,0
,2,18977,51403,56,0
,2,18978,51405,56,0
,2,18979,51407,56,0
,2,18980,51409,56,0
,2,18981,51411,56,0
,2,18982,51413,56,0
,2,18983,51415,56,0
,2,18984,51417,56,0
,2,18985,51419,56,0
,2,18986,51421,56,0
,2,18987,51423,56,0
,2,18988,51425,56,0
,2,18989,51427,56,0
,2,18990,51429,56,0
,2,18991,51431,56,0
,2,18992,51433,56,0
,2,18993,51435,56,0
,2,18994,51437,56,0
,2,18995,51439,56,0
,2,18996,51441,56,0
,2,18997,51443,56,0
,2,18998,51445,56,0
,1,90,51447,180680,16404
,5,1415,51449,72,9
,4,1,51451,672,13
,7,19,51453,16,1
,0,16,51455,64,4
,0,16,51457,64,3
,0,16,51459,64,3
,0,16,51461,64,3
,0,16,51463,64,3
,0,16,51465,64,4
,1,1,51467,24,1
,0,16,51469,64,1
,3,120,51471,32,2
,0,70,51473,80,7
,4,1,51475,800,19
,1,1,51477,2088,57
,1,1,51479,2088,1
,1,1,51481,2088,1
,3,50,51483,24,9
,1,1,51485,131112,2285
,2,18999,51487,48,0
,2,19000,51489,40,0
,2,19001,51491,40,0
,2,19002,51493,32,0
,2,19003,51495,56,0
,2,19004,51497,40,0
,2,19005,51499,32,0
,2,19006,51501,48,0
,2,19007,51503,32,0
,2,19008,51505,32,0
,2,19009,51507,32,0
,2,19010,51509,32,0
,2,19011,51511,32,0
,2,19012,51513,32,0
,2,19013,51515,32,0
,2,19014,51517,32,0
,2,19015,51519,32,0
,2,19016,51521,40,0
,2,19017,51523,48,0
,2,19018,51525,40,0
,2,19019,51527,32,0
,2,19020,51529,64,0
,2,19021,51531,32,0
,2,19022,51533,32,0
,2,19023,51535,32,0
,2,19024,51537,40,0
,2,19025,51539,32,0
,2,19026,51541,32,0
,2,19027,51543,40,0
,2,19028,51545,32,0
,2,19029,51547,32,0
,2,2197,51549,32,0
,2,19030,51551,32,0
,2,19031,51553,32,0
,2,19032,51555,32,0
,2,19033,51557,32,0
,2,19034,51559,40,0
,2,19035,51561,32,0
,2,19036,51563,40,0
,2,19037,51565,40,0
,2,19038,51567,32,0
,2,19039,51569,32,0
,2,19040,51571,32,0
,2,19041,51573,40,0
,2,19042,51575,48,0
,2,19043,51577,40,0
,2,19044,51579,40,0
,2,19045,51581,32,0
,2,19046,51583,48,0
,2,19047,51585,40,0
,2,19048,51587,48,0
,2,19049,51589,32,0
,2,19050,51591,32,0
,2,19051,51593,40,0
,2,19052,51595,32,0
,2,19053,51597,40,0
,2,19054,51599,32,0
,2,19055,51601,40,0
,2,19056,51603,48,0
,2,19057,51605,32,0
,2,19058,51607,40,0
,2,19059,51609,32,0
,2,19060,51611,40,0
,2,19061,51613,32,0
,2,19062,51615,32,0
,2,19063,51617,32,0
,2,19064,51619,48,0
,2,19065,51621,32,0
,2,19066,51623,32,0
,2,19067,51625,48,0
,2,19068,51627,80,0
,2,19069,51629,32,0
,2,19070,51631,32,0
,2,19071,51633,32,0
,2,19072,51635,32,0
,2,19073,51637,48,0
,2,19074,51639,32,0
,2,19075,51641,40,0
,2,19076,51643,40,0
,2,19077,51645,40,0
,2,19078,51647,32,0
,2,19079,51649,48,0
,2,19080,51651,40,0
,2,19081,51653,32,0
,2,19082,51655,32,0
,2,19083,51657,40,0
,2,19084,51659,48,0
,2,19085,51661,32,0
,2,19086,51663,40,0
,2,19087,51665,40,0
,2,19088,51667,40,0
,2,19089,51669,32,0
,2,19090,51671,40,0
,2,19091,51673,56,0
,2,19092,51675,56,0
,2,19093,51677,48,0
,2,19094,51679,40,0
,2,19095,51681,32,0
,2,19096,51683,32,0
,2,19097,51685,48,0
,2,19098,51687,40,0
,2,19099,51689,40,0
,2,19100,51691,48,0
,2,19101,51693,40,0
,2,19102,51695,40,0
,2,19103,51697,48,0
,2,19104,51699,40,0
,2,19105,51701,40,0
,2,19106,51703,32,0
,2,19107,51705,32,0
,2,19108,51707,56,0
,2,19109,51709,32,0
,2,19110,51711,32,0
,2,96,51713,32,0
,2,19111,51715,48,0
,2,19112,51717,32,0
,2,19113,51719,32,0
,2,19114,51721,40,0
,2,19115,51723,32,0
,2,19116,51725,32,0
,2,19117,51727,32,0
,2,19118,51729,32,0
,2,19119,51731,48,0
,2,19120,51733,40,0
,2,19121,51735,48,0
,2,19122,51737,48,0
,2,19123,51739,32,0
,2,19124,51741,32,0
,2,19125,51743,40,0
,2,2185,51745,32,0
,2,19126,51747,32,0
,2,19127,51749,32,0
,2,19128,51751,48,0
,2,19129,51753,40,0
,2,19130,51755,32,0
,2,19131,51757,40,0
,2,19132,51759,32,0
,2,19133,51761,40,0
,2,19134,51763,32,0
,2,19135,51765,40,0
,2,19136,51767,32,0
,2,19137,51769,40,0
,2,19138,51771,40,0
,2,19139,51773,32,0
,2,19140,51775,48,0
,2,19141,51777,32,0
,2,19142,51779,32,0
,2,19143,51781,40,0
,2,19144,51783,40,0
,2,19145,51785,56,0
,2,19146,51787,40,0
,2,19147,51789,32,0
,2,19148,51791,40,0
,2,19149,51793,48,0
,2,19150,51795,48,0
,2,19151,51797,32,0
,2,19152,51799,32,0
,2,19153,51801,32,0
,2,19154,51803,40,0
,2,19155,51805,40,0
,2,19156,51807,32,0
,2,19157,51809,32,0
,2,19158,51811,48,0
,2,19159,51813,40,0
,2,19160,51815,40,0
,2,19161,51817,40,0
,2,19162,51819,56,0
,2,19163,51821,32,0
,2,19164,51823,32,0
,2,19165,51825,64,0
,2,19166,51827,40,0
,2,19167,51829,48,0
,2,19168,51831,32,0
,2,19169,51833,32,0
,2,19170,51835,32,0
,2,19171,51837,40,0
,2,19172,51839,32,0
,2,19173,51841,40,0
,2,19174,51843,40,0
,2,19175,51845,32,0
,2,19176,51847,40,0
,2,19177,51849,40,0
,2,19178,51851,40,0
,2,19179,51853,32,0
,2,19180,51855,48,0
,2,19181,51857,48,0
,2,19182,51859,32,0
,2,19183,51861,40,0
,2,19184,51863,40,0
,2,19185,51865,56,0
,2,19186,51867,48,0
,2,19187,51869,32,0
,2,19188,51871,48,0
,2,19189,51873,40,0
,2,19190,51875,32,0
,2,19191,51877,56,0
,2,19192,51879,32,0
,2,19193,51881,40,0
,2,19194,51883,32,0
,2,19195,51885,32,0
,2,19196,51887,40,0
,2,2190,51889,32,0
,2,19197,51891,40,0
,2,19198,51893,48,0
,2,19199,51895,32,0
,2,19200,51897,40,0
,2,19201,51899,40,0
,2,19202,51901,32,0
,2,19203,51903,40,0
,2,19204,51905,32,0
,2,19205,51907,48,0
,2,19206,51909,40,0
,2,1987,51911,32,0
,2,19207,51913,40,0
,2,19208,51915,40,0
,2,19209,51917,32,0
,2,19210,51919,40,0
,2,19211,51921,32,0
,2,19212,51923,48,0
,2,19213,51925,40,0
,2,19214,51927,40,0
,2,19215,51929,40,0
,2,19216,51931,40,0
,2,19217,51933,40,0
,2,19218,51935,48,0
,2,19219,51937,48,0
,2,19220,51939,40,0
,2,19221,51941,48,0
,2,19222,51943,32,0
,2,19223,51945,40,0
,2,19224,51947,32,0
,2,19225,51949,32,0
,2,19226,51951,40,0
,2,19227,51953,32,0
,2,19228,51955,72,0
,2,19229,51957,40,0
,2,19230,51959,40,0
,2,19231,51961,32,0
,2,19232,51963,40,0
,2,19233,51965,40,0
,2,19234,51967,72,0
,2,19235,51969,40,0
,2,19236,51971,32,0
,2,19237,51973,32,0
,2,19238,51975,32,0
,2,19239,51977,40,0
,2,19240,51979,32,0
,2,19241,51981,40,0
,2,19242,51983,32,0
,2,19243,51985,48,0
,2,19244,51987,48,0
,2,19245,51989,32,0
,2,19246,51991,32,0
,2,19247,51993,48,0
,2,19248,51995,32,0
,2,19249,51997,40,0
,2,19250,51999,32,0
,2,19251,52001,32,0
,2,19252,52003,32,0
,2,1941,52005,48,0
,2,19253,52007,56,0
,2,19254,52009,32,0
,2,19255,52011,40,0
,2,19256,52013,32,0
,2,19257,52015,40,0
,2,19258,52017,40,0
,2,19259,52019,32,0
,2,19260,52021,32,0
,2,19261,52023,32,0
,2,19262,52025,32,0
,2,19263,52027,32,0
,2,19264,52029,40,0
,2,19265,52031,32,0
,2,19266,52033,40,0
,2,19267,52035,32,0
,2,19268,52037,56,0
,2,19269,52039,64,0
,2,19270,52041,32,0
,2,19271,52043,40,0
,2,19272,52045,40,0
,2,19273,52047,56,0
,2,19274,52049,32,0
,2,19275,52051,56,0
,2,19276,52053,40,0
,2,19277,52055,56,0
,2,19278,52057,32,0
,2,19279,52059,32,0
,2,19280,52061,32,0
,2,19281,52063,48,0
,2,19282,52065,40,0
,2,19283,52067,40,0
,2,19284,52069,48,0
,2,19285,52071,40,0
,2,19286,52073,40,0
,2,19287,52075,40,0
,2,19288,52077,32,0
,2,19289,52079,32,0
,2,19290,52081,48,0
,2,19291,52083,32,0
,2,19292,52085,32,0
,2,19293,52087,40,0
,2,19294,52089,32,0
,2,19295,52091,32,0
,2,19296,52093,32,0
,2,19297,52095,48,0
,2,19066,52097,32,0
,2,19298,52099,32,0
,2,19299,52101,40,0
,2,19300,52103,40,0
,2,19301,52105,32,0
,2,19302,52107,32,0
,2,19303,52109,40,0
,2,19304,52111,40,0
,2,19305,52113,56,0
,2,19306,52115,40,0
,2,19307,52117,40,0
,2,19308,52119,56,0
,2,19309,52121,40,0
,2,19310,52123,32,0
,2,19311,52125,40,0
,2,19312,52127,72,0
,2,19313,52129,40,0
,1,1481,52131,152,10
,0,87,52133,16,1
,0,87,52135,16,1
,0,87,52137,16,1
,0,87,52139,16,1
,0,87,52141,16,1
,1,1481,52143,128,8
,0,87,52145,16,1
,0,87,52147,16,1
,0,87,52149,16,1
,0,87,52151,16,1
,1,1481,52153,200,13
,0,87,52155,16,1
,0,87,52157,16,1
,0,87,52159,16,1
,0,87,52161,16,1
,0,87,52163,16,1
,1,1481,52165,200,11
,1,1481,52167,152,10
,0,87,52169,16,1
,0,87,52171,16,1
,0,87,52173,16,1
,1,1481,52175,128,8
,0,87,52177,16,1
,0,87,52179,16,1
,1,1481,52181,152,10
,0,87,52183,16,1
,0,87,52185,16,1
,0,87,52187,16,1
,1,1481,52189,152,10
,0,16,52191,64,4
,1,1481,52193,56,1
,0,484,52195,16,1
,2,92,52197,40,0
,0,484,52199,16,1
,2,93,52201,40,0
,0,484,52203,16,1
,2,94,52205,48,0
,0,484,52207,16,1
,2,95,52209,40,0
,0,484,52211,16,1
,0,484,52213,16,1
,0,484,52215,16,1
,0,484,52217,16,1
,0,484,52219,16,1
,0,484,52221,16,1
,0,484,52223,16,1
,0,484,52225,16,1
,0,484,52227,16,1
,0,484,52229,16,1
,0,484,52231,16,1
,0,484,52233,16,1
,0,484,52235,16,1
,2,100,52237,32,0
,0,484,52239,16,1
,0,484,52241,16,1
,2,102,52243,40,0
,0,484,52245,16,1
,0,484,52247,16,1
,0,484,52249,16,1
,2,103,52251,40,0
,0,484,52253,16,1
,0,484,52255,16,1
,0,484,52257,16,1
,0,484,52259,16,1
,0,484,52261,16,1
,0,484,52263,16,1
,0,484,52265,16,1
,0,484,52267,16,1
,0,484,52269,16,1
,0,484,52271,16,0
,2,108,52273,40,0
,0,484,52275,16,1
,0,484,52277,16,1
,2,109,52279,40,0
,0,484,52281,16,1
,0,484,52283,16,1
,0,484,52285,16,1
,0,484,52287,16,1
,0,484,52289,16,1
,0,484,52291,16,1
,0,484,52293,16,1
,0,484,52295,16,1
,0,484,52297,16,1
,0,484,52299,16,1
,0,484,52301,16,1
,0,484,52303,16,1
,0,484,52305,16,1
,0,484,52307,16,1
,0,484,52309,16,1
,0,484,52311,16,1
,0,484,52313,16,1
,2,123,52315,40,0
,0,484,52317,16,1
,2,124,52319,40,0
,0,484,52321,16,1
,0,484,52323,16,1
,0,484,52325,16,1
,0,484,52327,16,1
,0,484,52329,16,1
,0,484,52331,16,1
,0,484,52333,16,1
,0,484,52335,16,1
,0,484,52337,16,1
,0,484,52339,16,1
,1,1481,52341,56,2
,0,16,52343,64,4
,1,1481,52345,56,1
,1,1481,52347,152,5
,0,16,52349,64,4
,1,1481,52351,80,2
,1,1499,52353,32,1
,0,16,52355,64,7
,1,1499,52357,32,2
,1,1481,52359,80,2
,1,1481,52361,104,5
,1,1481,52363,56,2
,0,16,52365,64,4
,1,1481,52367,56,2
,0,16,52369,64,4
,1,1481,52371,56,2
,0,16,52373,64,4
,0,484,52375,16,1
,0,484,52377,16,1
,0,484,52379,16,1
,0,484,52381,16,1
,0,484,52383,16,1
,0,484,52385,16,1
,2,19314,52387,40,0
,0,484,52389,16,1
,0,484,52391,16,1
,0,484,52393,16,1
,0,484,52395,16,1
,0,484,52397,16,1
,0,484,52399,16,1
,0,484,52401,16,1
,0,484,52403,16,1
,0,484,52405,16,1
,0,484,52407,16,1
,0,484,52409,16,1
,0,484,52411,16,1
,0,484,52413,16,1
,0,484,52415,16,1
,0,484,52417,16,1
,0,484,52419,16,1
,0,484,52421,16,1
,0,484,52423,16,1
,0,484,52425,16,1
,0,484,52427,16,1
,0,484,52429,16,1
,0,484,52431,16,1
,0,484,52433,16,0
,0,484,52435,16,1
,0,484,52437,16,1
,0,484,52439,16,1
,0,484,52441,16,1
,0,484,52443,16,1
,0,484,52445,16,1
,0,484,52447,16,1
,0,484,52449,16,1
,0,484,52451,16,1
,0,484,52453,16,1
,0,484,52455,16,1
,0,484,52457,16,1
,0,484,52459,16,1
,0,484,52461,16,1
,0,484,52463,16,1
,0,484,52465,16,1
,0,484,52467,16,1
,0,484,52469,16,1
,0,484,52471,16,1
,0,484,52473,16,1
,0,484,52475,16,1
,0,484,52477,16,1
,0,484,52479,16,1
,0,484,52481,16,1
,0,484,52483,16,1
,0,484,52485,16,1
,0,484,52487,16,1
,0,484,52489,16,1
,0,484,52491,16,1
,0,484,52493,16,1
,0,484,52495,16,1
,0,484,52497,16,1
,0,484,52499,16,1
,0,484,52501,16,1
,0,484,52503,16,1
,0,484,52505,16,1
,0,484,52507,16,1
,0,484,52509,16,1
,0,484,52511,16,1
,0,484,52513,16,1
,0,484,52515,16,1
,0,484,52517,16,1
,0,484,52519,16,1
,0,484,52521,16,0
,0,484,52523,16,1
,2,19094,52525,40,0
,0,484,52527,16,1
,0,484,52529,16,1
,0,484,52531,16,1
,0,484,52533,16,1
,0,484,52535,16,1
,0,484,52537,16,1
,0,484,52539,16,1
,0,484,52541,16,1
,0,484,52543,16,1
,0,484,52545,16,1
,0,484,52547,16,1
,0,484,52549,16,1
,0,484,52551,16,1
,0,484,52553,16,1
,0,484,52555,16,1
,0,484,52557,16,1
,0,484,52559,16,1
,0,484,52561,16,1
,0,484,52563,16,1
,0,484,52565,16,1
,0,484,52567,16,1
,0,484,52569,16,1
,0,484,52571,16,1
,0,484,52573,16,1
,0,484,52575,16,1
,0,484,52577,16,1
,0,484,52579,16,0
,0,484,52581,16,1
,0,484,52583,16,1
,0,484,52585,16,1
,0,484,52587,16,1
,0,484,52589,16,1
,0,484,52591,16,1
,0,484,52593,16,1
,0,484,52595,16,1
,0,484,52597,16,1
,0,484,52599,16,1
,0,484,52601,16,1
,0,484,52603,16,1
,0,484,52605,16,0
,0,484,52607,16,1
,0,484,52609,16,1
,0,484,52611,16,1
,0,484,52613,16,1
,0,484,52615,16,1
,0,484,52617,16,1
,0,484,52619,16,1
,0,484,52621,16,1
,0,484,52623,16,1
,0,484,52625,16,1
,0,484,52627,16,1
,0,484,52629,16,1
,0,484,52631,16,1
,0,484,52633,16,1
,0,484,52635,16,1
,0,484,52637,16,1
,0,484,52639,16,1
,0,484,52641,16,1
,0,484,52643,16,1
,0,484,52645,16,1
,0,484,52647,16,1
,0,484,52649,16,1
,0,484,52651,16,1
,0,484,52653,16,1
,0,484,52655,16,1
,0,484,52657,16,1
,0,484,52659,16,1
,0,484,52661,16,1
,2,19315,52663,40,0
,0,484,52665,16,1
,0,484,52667,16,1
,2,19316,52669,40,0
,0,484,52671,16,1
,0,484,52673,16,1
,0,484,52675,16,1
,0,484,52677,16,1
,0,484,52679,16,1
,0,484,52681,16,1
,0,484,52683,16,1
,0,484,52685,16,1
,0,484,52687,16,1
,0,484,52689,16,1
,0,484,52691,16,1
,0,484,52693,16,1
,0,484,52695,16,1
,0,484,52697,16,1
,0,484,52699,16,1
,0,484,52701,16,1
,0,484,52703,16,1
,0,484,52705,16,1
,0,484,52707,16,1
,0,484,52709,16,1
,0,484,52711,16,1
,0,484,52713,16,1
,0,484,52715,16,1
,0,484,52717,16,1
,0,484,52719,16,1
,0,484,52721,16,0
,0,484,52723,16,1
,0,484,52725,16,1
,0,484,52727,16,1
,0,484,52729,16,1
,0,484,52731,16,1
,0,484,52733,16,1
,0,484,52735,16,1
,0,484,52737,16,1
,0,484,52739,16,1
,0,484,52741,16,1
,0,484,52743,16,1
,0,484,52745,16,1
,0,484,52747,16,1
,0,484,52749,16,1
,0,484,52751,16,1
,0,484,52753,16,1
,0,484,52755,16,1
,0,484,52757,16,1
,0,484,52759,16,1
,0,484,52761,16,1
,0,484,52763,16,1
,0,484,52765,16,1
,0,484,52767,16,1
,0,484,52769,16,1
,0,484,52771,16,1
,0,484,52773,16,1
,0,484,52775,16,1
,0,484,52777,16,1
,0,484,52779,16,1
,0,484,52781,16,1
,0,484,52783,16,1
,0,484,52785,16,1
,0,484,52787,16,1
,0,484,52789,16,1
,0,484,52791,16,1
,0,484,52793,16,1
,0,484,52795,16,1
,0,484,52797,16,1
,0,484,52799,16,1
,0,484,52801,16,1
,0,484,52803,16,1
,0,484,52805,16,1
,0,484,52807,16,1
,0,484,52809,16,1
,0,484,52811,16,1
,0,484,52813,16,1
,0,484,52815,16,1
,0,484,52817,16,1
,0,484,52819,16,1
,0,484,52821,16,1
,0,484,52823,16,1
,0,484,52825,16,1
,0,484,52827,16,1
,0,484,52829,16,1
,0,484,52831,16,1
,0,484,52833,16,1
,0,484,52835,16,1
,0,484,52837,16,1
,0,484,52839,16,1
,0,484,52841,16,1
,0,484,52843,16,1
,0,484,52845,16,1
,0,484,52847,16,1
,0,484,52849,16,1
,0,484,52851,16,1
,0,484,52853,16,0
,0,484,52855,16,1
,0,484,52857,16,1
,0,484,52859,16,1
,0,484,52861,16,1
,0,484,52863,16,1
,0,484,52865,16,1
,0,484,52867,16,1
,0,484,52869,16,1
,0,484,52871,16,1
,0,484,52873,16,1
,0,484,52875,16,1
,0,484,52877,16,1
,0,484,52879,16,1
,0,484,52881,16,1
,0,484,52883,16,1
,0,484,52885,16,1
,0,484,52887,16,1
,0,484,52889,16,1
,0,484,52891,16,1
,0,484,52893,16,1
,0,484,52895,16,1
,0,484,52897,16,1
,0,484,52899,16,1
,0,484,52901,16,1
,0,484,52903,16,1
,0,484,52905,16,0
,0,484,52907,16,1
,0,484,52909,16,1
,0,484,52911,16,1
,0,484,52913,16,1
,0,484,52915,16,1
,0,484,52917,16,1
,0,484,52919,16,1
,0,484,52921,16,1
,0,484,52923,16,1
,0,484,52925,16,1
,0,484,52927,16,1
,0,484,52929,16,1
,0,484,52931,16,1
,0,484,52933,16,1
,0,484,52935,16,1
,0,484,52937,16,1
,0,484,52939,16,1
,0,484,52941,16,1
,0,484,52943,16,1
,0,484,52945,16,1
,0,484,52947,16,1
,0,484,52949,16,1
,0,484,52951,16,1
,0,484,52953,16,1
,0,484,52955,16,1
,0,484,52957,16,1
,0,484,52959,16,1
,0,484,52961,16,1
,0,484,52963,16,1
,0,484,52965,16,1
,0,484,52967,16,1
,0,484,52969,16,1
,0,484,52971,16,1
,0,484,52973,16,1
,0,484,52975,16,1
,0,484,52977,16,1
,0,484,52979,16,1
,0,484,52981,16,1
,0,484,52983,16,1
,0,484,52985,16,1
,0,484,52987,16,1
,0,484,52989,16,1
,0,484,52991,16,1
,0,484,52993,16,1
,0,484,52995,16,1
,0,484,52997,16,1
,0,484,52999,16,1
,0,484,53001,16,1
,0,484,53003,16,1
,0,484,53005,16,0
,0,484,53007,16,1
,0,484,53009,16,1
,0,484,53011,16,1
,0,484,53013,16,1
,0,484,53015,16,1
,0,484,53017,16,1
,0,484,53019,16,1
,0,484,53021,16,1
,0,484,53023,16,1
,0,484,53025,16,1
,0,484,53027,16,1
,0,484,53029,16,1
,0,484,53031,16,1
,0,484,53033,16,1
,0,484,53035,16,1
,0,484,53037,16,1
,0,484,53039,16,1
,0,484,53041,16,1
,0,484,53043,16,1
,0,484,53045,16,1
,0,484,53047,16,1
,0,484,53049,16,1
,0,484,53051,16,1
,0,484,53053,16,1
,0,484,53055,16,1
,0,484,53057,16,1
,0,484,53059,16,1
,0,484,53061,16,1
,0,484,53063,16,1
,0,484,53065,16,1
,0,484,53067,16,1
,0,484,53069,16,1
,0,484,53071,16,1
,0,484,53073,16,1
,0,484,53075,16,1
,0,484,53077,16,1
,0,484,53079,16,1
,0,484,53081,16,1
,0,484,53083,16,1
,0,484,53085,16,1
,0,484,53087,16,1
,0,484,53089,16,1
,0,484,53091,16,1
,0,484,53093,16,1
,0,484,53095,16,1
,0,484,53097,16,1
,0,484,53099,16,1
,0,484,53101,16,1
,0,484,53103,16,1
,0,484,53105,16,1
,0,484,53107,16,1
,0,484,53109,16,1
,0,484,53111,16,1
,0,484,53113,16,1
,0,484,53115,16,1
,0,484,53117,16,1
,0,484,53119,16,1
,0,484,53121,16,1
,0,484,53123,16,1
,0,484,53125,16,1
,0,484,53127,16,1
,0,484,53129,16,1
,0,484,53131,16,1
,0,484,53133,16,1
,0,484,53135,16,1
,0,484,53137,16,1
,0,484,53139,16,1
,0,484,53141,16,1
,0,484,53143,16,1
,0,484,53145,16,1
,0,484,53147,16,1
,0,484,53149,16,1
,0,484,53151,16,1
,0,484,53153,16,1
,0,484,53155,16,1
,0,484,53157,16,1
,0,484,53159,16,1
,0,484,53161,16,1
,0,484,53163,16,1
,0,484,53165,16,1
,0,484,53167,16,1
,0,484,53169,16,1
,0,484,53171,16,1
,0,484,53173,16,1
,0,484,53175,16,1
,0,484,53177,16,1
,0,484,53179,16,1
,0,484,53181,16,1
,0,484,53183,16,1
,0,484,53185,16,1
,0,484,53187,16,1
,0,484,53189,16,1
,0,484,53191,16,1
,0,484,53193,16,1
,0,484,53195,16,1
,0,484,53197,16,1
,0,484,53199,16,1
,0,484,53201,16,1
,0,484,53203,16,1
,0,484,53205,16,1
,0,484,53207,16,1
,0,484,53209,16,1
,0,484,53211,16,1
,0,484,53213,16,1
,0,484,53215,16,1
,0,484,53217,16,1
,0,484,53219,16,1
,0,484,53221,16,1
,0,484,53223,16,1
,0,484,53225,16,1
,0,484,53227,16,1
,0,484,53229,16,1
,0,484,53231,16,1
,0,484,53233,16,1
,0,484,53235,16,1
,0,484,53237,16,1
,0,484,53239,16,1
,0,484,53241,16,1
,0,484,53243,16,1
,0,484,53245,16,1
,0,484,53247,16,1
,2,19317,53249,40,0
,0,484,53251,16,1
,0,484,53253,16,1
,0,484,53255,16,1
,0,484,53257,16,1
,0,484,53259,16,1
,0,484,53261,16,1
,0,484,53263,16,1
,0,484,53265,16,1
,0,484,53267,16,1
,1,1481,53269,344,26
,0,87,53271,16,1
,0,87,53273,16,1
,0,87,53275,16,1
,0,87,53277,16,1
,0,87,53279,16,1
,0,87,53281,16,1
,0,87,53283,16,1
,0,87,53285,16,1
,0,87,53287,16,1
,0,87,53289,16,1
,0,87,53291,16,1
,0,87,53293,16,1
,0,87,53295,16,1
,1,1481,53297,56,2
,0,87,53299,16,1
,1,1481,53301,56,2
,0,87,53303,16,1
,0,16,53305,64,4
,1,1499,53307,40,1
,1,1499,53309,40,2
,1,1499,53311,40,2
,1,1499,53313,40,2
,1,1499,53315,40,2
,2,19318,53317,32,0
,2,19319,53319,40,0
,2,19320,53321,40,0
,0,16,53323,64,4
,1,1481,53325,800,33
,1,1481,53327,296,23
,1,1481,53329,488,38
,1,1481,53331,104,6
,0,16,53333,64,4
,1,1481,53335,200,14
,1,1481,53337,320,19
,1,1481,53339,176,12
,1,1481,53341,248,14
,1,1499,53343,216,23
,0,16,53345,64,7
,0,16,53347,64,7
,0,16,53349,64,7
,1,1499,53351,32,2
,0,16,53353,64,7
,1,1499,53355,32,2
,0,16,53357,64,7
,1,1499,53359,32,2
,0,16,53361,64,7
,1,1499,53363,32,2
,0,16,53365,64,7
,1,1499,53367,32,2
,0,16,53369,64,7
,1,1499,53371,32,2
,0,16,53373,64,5
,1,1481,53375,584,46
,1,1481,53377,104,6
,1,1481,53379,56,2
,0,87,53381,16,1
,0,16,53383,64,3
,1,1481,53385,176,7
,1,1481,53387,176,12
,1,1481,53389,920,74
,1,1481,53391,56,2
,0,16,53393,64,4
,1,1499,53395,40,1
,1,1481,53397,656,44
,1,1481,53399,392,23
,0,16,53401,64,3
,1,1481,53403,248,12
,0,16,53405,64,3
,1,1481,53407,200,9
,0,16,53409,64,3
,1,1481,53411,512,37
,5,53,53413,72,9
,0,16,53415,64,4
,0,16,53417,64,4
,0,16,53419,64,4
,1,1499,53421,24,0
,1,1481,53423,176,6
,1,1499,53425,32,1
,1,1481,53427,176,6
,1,1499,53429,32,1
,0,16,53431,64,5
,1,1481,53433,176,6
,1,1499,53435,32,1
,1,1481,53437,176,6
,1,1499,53439,32,1
,1,1481,53441,176,6
,1,1499,53443,32,1
,1,1481,53445,176,6
,1,1499,53447,32,1
,1,1499,53449,32,1
,0,16,53451,64,6
,1,1481,53453,128,6
,1,1481,53455,128,5
,1,1499,53457,32,1
,0,16,53459,64,7
,1,1499,53461,32,2
,0,16,53463,64,7
,1,1499,53465,32,2
,0,16,53467,64,7
,2,19321,53469,32,0
,2,19322,53471,32,0
,1,1499,53473,32,2
,0,16,53475,64,7
,1,1481,53477,128,5
,1,1499,53479,32,2
,1,1481,53481,80,2
,1,1499,53483,32,1
,0,16,53485,64,7
,1,1499,53487,32,2
,0,16,53489,64,4
,1,1481,53491,224,16
,1,1481,53493,1160,94
,1,1481,53495,80,4
,2,19323,53497,32,0
,2,19324,53499,32,0
,2,19321,53501,32,0
,2,19322,53503,32,0
,2,19325,53505,32,0
,1,1481,53507,272,15
,1,1481,53509,680,54
,1,1481,53511,248,18
,0,87,53513,16,1
,0,87,53515,16,1
,0,87,53517,16,1
,0,87,53519,16,1
,1,1481,53521,104,4
,1,1499,53523,32,2
,0,16,53525,64,4
,1,1481,53527,56,2
,1,1481,53529,248,8
,1,1499,53531,184,20
,0,16,53533,64,7
,0,16,53535,64,7
,0,16,53537,64,7
,0,16,53539,64,7
,0,16,53541,64,7
,1,1499,53543,32,2
,0,16,53545,64,7
,1,1499,53547,32,2
,0,16,53549,64,7
,1,1499,53551,32,2
,0,16,53553,64,7
,1,1499,53555,32,2
,0,16,53557,64,7
,1,1499,53559,32,2
,0,16,53561,64,7
,1,1499,53563,32,2
,0,16,53565,64,7
,1,1499,53567,32,2
,0,16,53569,64,4
,1,1481,53571,56,2
,1,1481,53573,176,6
,1,1499,53575,32,2
,0,16,53577,64,7
,1,1499,53579,32,2
,0,16,53581,64,7
,1,1499,53583,32,2
,0,16,53585,64,7
,1,1499,53587,32,2
,0,16,53589,64,7
,1,1499,53591,32,2
,1,90,53593,56,2
,1,90,53595,24,2
,0,16,53597,64,4
,1,1481,53599,56,2
,0,16,53601,64,4
,1,1481,53603,56,2
,0,16,53605,64,4
,1,1481,53607,56,2
,0,16,53609,64,4
,1,1481,53611,56,2
,0,16,53613,64,4
,1,1481,53615,56,2
,0,16,53617,64,4
,1,1481,53619,56,2
,0,16,53621,64,4
,1,1481,53623,56,2
,0,16,53625,64,4
,1,1481,53627,56,2
,0,16,53629,64,4
,1,1481,53631,56,2
,0,16,53633,64,4
,1,1481,53635,56,2
,0,16,53637,64,4
,1,1481,53639,56,2
,0,16,53641,64,4
,1,1481,53643,56,2
,0,16,53645,64,4
,1,1481,53647,56,2
,0,16,53649,64,4
,1,1481,53651,56,2
,0,16,53653,64,4
,1,1481,53655,56,2
,0,16,53657,64,4
,1,1481,53659,56,2
,0,16,53661,64,4
,1,1481,53663,56,2
,0,16,53665,64,4
,1,1481,53667,56,2
,0,16,53669,64,4
,1,1481,53671,56,2
,0,16,53673,64,4
,1,1481,53675,56,2
,0,16,53677,64,4
,1,1481,53679,56,2
,0,16,53681,64,4
,1,1481,53683,56,2
,0,16,53685,64,4
,1,1481,53687,56,2
,0,16,53689,64,4
,1,1481,53691,56,2
,0,16,53693,64,4
,1,1481,53695,56,2
,0,16,53697,64,4
,1,1481,53699,56,2
,0,16,53701,64,4
,1,1481,53703,56,2
,1,1499,53705,248,26
,0,16,53707,64,6
,0,16,53709,64,6
,0,16,53711,64,6
,0,16,53713,64,4
,1,1481,53715,56,2
,0,16,53717,64,4
,1,1481,53719,56,2
,0,16,53721,64,4
,1,1481,53723,56,2
,0,16,53725,64,4
,1,1481,53727,56,2
,0,16,53729,64,4
,1,1481,53731,56,2
,0,16,53733,64,4
,1,1481,53735,56,2
,0,16,53737,64,4
,1,1481,53739,56,2
,0,16,53741,64,4
,1,1481,53743,56,2
,0,16,53745,64,4
,1,1481,53747,56,2
,2,1717,53749,32,0
,2,19326,53751,40,0
,2,19327,53753,32,0
,2,19328,53755,40,0
,2,1821,53757,32,0
,2,19329,53759,32,0
,2,19330,53761,32,0
,0,16,53763,64,4
,1,1481,53765,56,2
,0,16,53767,64,4
,1,1481,53769,56,2
,0,16,53771,64,4
,1,1481,53773,56,2
,1,1480,53775,4480,0
,1,1480,53777,2424,2
,1,1,53779,2320,1
,1,1,53781,32,0
,0,483,53783,32,1
,0,70,53785,56,5
,1,1,53787,16,0
,1,1,53789,16,1
,0,16,53791,64,1
,7,19,53793,16,1
,0,16,53795,64,1
,7,19,53797,16,1
,2,53,53799,24,0
,1,19331,53801,24,1
,1,19331,53803,24,1
,1,19331,53805,32,1
,1,19331,53807,32,1
,1,19331,53809,16,1
,1,19331,53811,16,1
,1,19331,53813,40,1
,1,19331,53815,40,1
,1,19331,53817,16,1
,1,19331,53819,40,1
,1,19331,53821,40,1
,1,19331,53823,40,1
,1,19331,53825,40,1
,1,19331,53827,40,1
,1,19331,53829,40,1
,1,19331,53831,16,1
,1,19331,53833,40,1
,1,19331,53835,40,1
,1,19331,53837,40,1
,1,19331,53839,40,1
,1,19331,53841,24,1
,1,19331,53843,24,1
,1,19331,53845,24,1
,1,19331,53847,24,1
,1,19331,53849,24,1
,1,19331,53851,24,1
,1,19331,53853,24,1
,1,19331,53855,24,1
,1,19331,53857,24,1
,1,19331,53859,24,1
,1,19331,53861,24,1
,1,19331,53863,24,1
,1,19331,53865,24,1
,1,19331,53867,24,1
,1,19331,53869,24,1
,1,19331,53871,24,1
,1,19331,53873,16,1
,1,19331,53875,16,1
,1,19331,53877,24,1
,1,19331,53879,24,1
,1,19331,53881,24,1
,1,19331,53883,24,1
,1,19331,53885,24,1
,1,19331,53887,24,1
,1,19331,53889,24,1
,1,19331,53891,24,1
,1,19331,53893,24,1
,1,19331,53895,24,1
,1,19331,53897,24,1
,1,19331,53899,24,1
,1,19331,53901,24,1
,1,19331,53903,24,1
,1,19331,53905,24,1
,1,19331,53907,24,1
,1,19331,53909,24,1
,1,19331,53911,24,1
,1,19331,53913,24,1
,1,19331,53915,24,1
,1,19331,53917,24,1
,1,19331,53919,24,1
,1,19331,53921,32,1
,1,19331,53923,24,1
,1,19331,53925,24,1
,1,19331,53927,24,1
,1,19331,53929,24,1
,1,19331,53931,24,1
,1,19331,53933,24,1
,1,19331,53935,24,1
,1,19331,53937,24,1
,1,19331,53939,24,1
,1,19331,53941,32,1
,1,19331,53943,24,1
,1,19331,53945,32,1
,1,19331,53947,24,1
,1,19331,53949,24,1
,1,19331,53951,24,1
,1,19331,53953,24,1
,1,19331,53955,32,1
,1,19331,53957,24,1
,1,19331,53959,24,1
,1,19331,53961,24,1
,1,19331,53963,24,1
,1,19331,53965,24,1
,1,19331,53967,24,1
,1,19331,53969,24,1
,1,19331,53971,24,1
,1,19331,53973,24,1
,1,19331,53975,24,1
,1,19331,53977,64,1
,1,19331,53979,24,1
,1,19331,53981,64,1
,1,19331,53983,32,1
,1,19331,53985,32,1
,1,19331,53987,24,1
,1,19331,53989,32,1
,1,19331,53991,24,1
,1,19331,53993,16,1
,1,19331,53995,40,1
,1,19331,53997,40,1
,1,19331,53999,40,1
,1,19331,54001,24,1
,1,19331,54003,24,1
,1,19331,54005,24,1
,1,19331,54007,24,1
,1,19331,54009,24,1
,1,19331,54011,24,1
,1,19331,54013,24,1
,1,19331,54015,24,1
,1,19331,54017,24,1
,1,19331,54019,24,1
,1,19331,54021,24,1
,1,19331,54023,24,1
,1,19331,54025,24,1
,1,19331,54027,16,1
,1,19331,54029,16,1
,0,16,54031,64,1
,1,19331,54033,24,1
,1,19331,54035,24,1
,1,19331,54037,152,1
,1,19331,54039,24,1
,1,19331,54041,24,1
,1,19331,54043,256,1
,1,19331,54045,72,1
,1,19331,54047,24,1
,1,19331,54049,24,1
,1,19331,54051,168,1
,1,19331,54053,24,1
,1,19331,54055,128,1
,1,19331,54057,64,1
,1,19331,54059,64,1
,1,19331,54061,64,1
,1,19331,54063,64,1
,1,19331,54065,64,1
,1,19331,54067,88,1
,1,19331,54069,64,1
,1,19331,54071,48,1
,1,19331,54073,48,1
,1,19331,54075,64,1
,1,19331,54077,88,1
,1,19331,54079,64,1
,1,19331,54081,56,1
,1,19331,54083,24,1
,1,19331,54085,72,1
,1,19331,54087,24,1
,1,19331,54089,24,1
,1,19331,54091,24,1
,1,19331,54093,144,1
,1,19331,54095,56,1
,1,19331,54097,24,1
,1,19331,54099,72,1
,1,19331,54101,72,1
,1,19331,54103,24,1
,1,19331,54105,24,1
,1,19331,54107,64,1
,1,19331,54109,48,1
,1,19331,54111,40,1
,1,19331,54113,40,1
,1,19331,54115,40,1
,1,19331,54117,24,1
,1,19331,54119,88,1
,1,19331,54121,88,1
,1,19331,54123,24,1
,1,19331,54125,24,1
,1,19331,54127,24,1
,1,19331,54129,24,1
,1,19331,54131,160,1
,1,19331,54133,48,1
,1,19331,54135,24,1
,1,19331,54137,24,1
,1,19331,54139,24,1
,1,19331,54141,24,1
,1,19331,54143,416,1
,1,19331,54145,24,1
,1,19331,54147,24,1
,1,19331,54149,136,1
,1,19331,54151,24,1
,1,19331,54153,24,1
,1,19331,54155,24,1
,1,19331,54157,24,1
,1,19331,54159,144,1
,1,19331,54161,24,1
,1,19331,54163,24,1
,1,19331,54165,24,1
,1,19331,54167,24,1
,1,19331,54169,24,1
,1,19331,54171,24,1
,1,19331,54173,24,1
,1,19331,54175,56,1
,1,19331,54177,24,1
,1,19331,54179,104,1
,1,19331,54181,24,1
,1,19331,54183,24,1
,1,19331,54185,24,1
,1,19331,54187,24,1
,1,19331,54189,16,1
,1,19331,54191,216,1
,1,19331,54193,24,1
,1,19331,54195,24,1
,1,19331,54197,24,1
,1,19331,54199,72,1
,1,19331,54201,24,1
,1,19331,54203,24,1
,1,19331,54205,328,1
,1,19331,54207,24,1
,1,19331,54209,24,1
,1,19331,54211,24,1
,1,19331,54213,88,1
,1,19331,54215,24,1
,1,19331,54217,64,1
,1,19331,54219,24,1
,1,19331,54221,104,1
,1,19331,54223,304,1
,1,19331,54225,24,1
,1,19331,54227,240,1
,1,19331,54229,88,1
,1,19331,54231,64,1
,1,19331,54233,24,1
,1,19331,54235,24,1
,1,19331,54237,24,1
,1,19331,54239,24,1
,1,19331,54241,24,1
,1,19331,54243,24,1
,1,19331,54245,600,1
,1,19331,54247,24,1
,1,19331,54249,64,1
,1,19331,54251,24,1
,1,19331,54253,104,1
,1,19331,54255,24,1
,1,19331,54257,24,1
,1,19331,54259,24,1
,1,19331,54261,24,1
,1,19331,54263,24,1
,1,19331,54265,24,1
,1,19331,54267,192,1
,1,19331,54269,72,1
,1,19331,54271,24,1
,1,19331,54273,368,1
,1,19331,54275,24,1
,1,19331,54277,56,1
,1,19331,54279,112,1
,1,19331,54281,128,1
,1,19331,54283,32,1
,1,19331,54285,24,1
,1,19331,54287,312,1
,1,19331,54289,24,1
,1,19331,54291,24,1
,1,19331,54293,24,1
,1,19331,54295,24,1
,1,19331,54297,24,1
,1,19331,54299,680,1
,1,19331,54301,48,1
,1,19331,54303,24,1
,1,19331,54305,24,1
,1,19331,54307,24,1
,1,19331,54309,24,1
,1,19331,54311,24,1
,1,19331,54313,112,1
,1,19331,54315,40,1
,1,19331,54317,168,1
,1,19331,54319,24,1
,1,19331,54321,24,1
,1,19331,54323,24,1
,1,19331,54325,32,1
,1,19331,54327,136,1
,1,19331,54329,24,1
,1,19331,54331,24,1
,1,19331,54333,24,1
,1,19331,54335,112,1
,1,19331,54337,24,1
,1,19331,54339,24,1
,1,19331,54341,24,1
,1,19331,54343,24,1
,1,19331,54345,24,1
,1,19331,54347,56,1
,1,19331,54349,88,1
,1,19331,54351,24,1
,1,19331,54353,72,1
,1,19331,54355,24,1
,1,19331,54357,24,1
,1,19331,54359,64,1
,1,19331,54361,24,1
,1,19331,54363,200,1
,1,19331,54365,24,1
,1,19331,54367,24,1
,1,19331,54369,24,1
,1,19331,54371,376,1
,1,19331,54373,24,1
,1,19331,54375,528,1
,1,19331,54377,24,1
,1,19331,54379,56,1
,1,19331,54381,80,1
,1,19331,54383,104,1
,1,19331,54385,24,1
,1,19331,54387,536,1
,1,19331,54389,72,1
,1,19331,54391,24,1
,1,19331,54393,24,1
,1,19331,54395,24,1
,1,19331,54397,24,1
,1,19331,54399,24,1
,1,19331,54401,96,1
,1,19331,54403,88,1
,1,19331,54405,48,1
,1,19331,54407,24,1
,1,19331,54409,24,1
,1,19331,54411,24,1
,1,19331,54413,160,1
,1,19331,54415,24,1
,1,19331,54417,24,1
,1,19331,54419,264,1
,1,19331,54421,32,1
,1,19331,54423,24,1
,1,19331,54425,24,1
,1,19331,54427,24,1
,1,19331,54429,24,1
,1,19331,54431,24,1
,1,19331,54433,160,1
,1,19331,54435,24,1
,1,19331,54437,24,1
,1,19331,54439,24,1
,1,19331,54441,24,1
,1,19331,54443,24,1
,1,19331,54445,24,1
,1,19331,54447,24,1
,1,19331,54449,24,1
,1,19331,54451,24,1
,1,19331,54453,40,1
,1,19331,54455,24,1
,1,19331,54457,456,1
,1,19331,54459,48,1
,1,19331,54461,24,1
,1,19331,54463,24,1
,1,19331,54465,736,1
,1,19331,54467,176,1
,1,19331,54469,48,1
,1,19331,54471,48,1
,1,19331,54473,72,1
,1,19331,54475,24,1
,1,19331,54477,48,1
,1,19331,54479,24,1
,1,19331,54481,136,1
,1,19331,54483,48,1
,1,19331,54485,64,1
,1,19331,54487,24,1
,1,19331,54489,24,1
,1,19331,54491,256,1
,1,19331,54493,40,1
,1,19331,54495,24,1
,1,19331,54497,24,1
,1,19331,54499,24,1
,1,19331,54501,112,1
,1,19331,54503,200,1
,1,19331,54505,104,1
,1,19331,54507,88,1
,1,19331,54509,384,1
,1,19331,54511,128,1
,1,19331,54513,24,1
,1,19331,54515,48,1
,1,19331,54517,24,1
,1,19331,54519,24,1
,1,19331,54521,48,1
,1,19331,54523,64,1
,1,19331,54525,40,1
,1,19331,54527,40,1
,1,19331,54529,88,1
,1,19331,54531,24,1
,1,19331,54533,1104,1
,1,19331,54535,168,1
,1,19331,54537,40,1
,1,19331,54539,24,1
,1,19331,54541,40,1
,1,19331,54543,64,1
,1,19331,54545,40,1
,1,19331,54547,40,1
,1,19331,54549,24,1
,1,19331,54551,40,1
,1,19331,54553,16,1
,1,19331,54555,144,1
,1,19331,54557,24,1
,1,19331,54559,56,1
,1,19331,54561,176,1
,1,19331,54563,24,1
,1,19331,54565,24,1
,1,19331,54567,24,1
,1,19331,54569,24,1
,1,19331,54571,64,1
,1,19331,54573,40,1
,1,19331,54575,16,1
,1,19331,54577,32,1
,1,19331,54579,16,1
,1,19331,54581,32,1
,1,19331,54583,32,1
,1,19331,54585,32,1
,1,19331,54587,32,1
,1,19331,54589,24,1
,1,19331,54591,24,1
,1,19331,54593,24,1
,1,19331,54595,24,1
,1,19331,54597,24,1
,1,19331,54599,24,1
,1,19331,54601,24,1
,1,19331,54603,24,1
,1,19331,54605,24,1
,1,19331,54607,1176,1
,1,19331,54609,40,1
,1,19331,54611,24,1
,1,19331,54613,24,1
,1,19331,54615,24,1
,1,19331,54617,24,1
,1,19331,54619,320,1
,1,19331,54621,40,1
,1,19331,54623,24,1
,1,19331,54625,432,1
,1,19331,54627,40,1
,1,19331,54629,408,1
,1,19331,54631,112,1
,1,19331,54633,24,1
,1,19331,54635,80,1
,1,19331,54637,24,1
,1,19331,54639,24,1
,1,19331,54641,96,1
,1,19331,54643,24,1
,1,19331,54645,24,1
,1,19331,54647,24,1
,1,19331,54649,24,1
,1,19331,54651,24,1
,1,19331,54653,24,1
,1,19331,54655,32,1
,1,19331,54657,24,1
,1,19331,54659,24,1
,1,19331,54661,24,1
,1,19331,54663,24,1
,1,19331,54665,24,1
,1,19331,54667,24,1
,1,19331,54669,24,1
,1,19331,54671,24,1
,1,19331,54673,24,1
,1,19331,54675,24,1
,1,19331,54677,24,1
,1,19331,54679,24,1
,1,19331,54681,24,1
,1,19331,54683,24,1
,1,19331,54685,24,1
,1,19331,54687,48,1
,1,19331,54689,24,1
,1,19331,54691,24,1
,1,19331,54693,48,1
,1,19331,54695,24,1
,1,19331,54697,24,1
,1,19331,54699,24,1
,1,19331,54701,48,1
,1,19331,54703,24,1
,1,19331,54705,24,1
,1,19331,54707,24,1
,1,19331,54709,24,1
,1,19331,54711,24,1
,1,19331,54713,24,1
,1,19331,54715,24,1
,1,19331,54717,24,1
,1,19331,54719,24,1
,1,19331,54721,24,1
,1,19331,54723,24,1
,1,19331,54725,24,1
,1,19331,54727,24,1
,1,19331,54729,24,1
,1,19331,54731,24,1
,1,19331,54733,40,1
,1,19331,54735,24,1
,1,19331,54737,24,1
,1,19331,54739,40,1
,1,19331,54741,24,1
,1,19331,54743,24,1
,1,19331,54745,24,1
,1,19331,54747,24,1
,1,19331,54749,40,1
,1,19331,54751,24,1
,1,19331,54753,24,1
,1,19331,54755,24,1
,1,19331,54757,144,1
,1,19331,54759,56,1
,1,19331,54761,144,1
,1,19331,54763,48,1
,1,19331,54765,24,1
,1,19331,54767,24,1
,1,19331,54769,24,1
,1,19331,54771,24,1
,1,19331,54773,24,1
,1,19331,54775,24,1
,1,19331,54777,72,1
,1,19331,54779,40,1
,1,19331,54781,56,1
,1,19331,54783,152,1
,7,19,54785,16,1
,1,19331,54787,24,1
,1,19331,54789,192,1
,1,19331,54791,24,1
,1,19331,54793,120,1
,1,19331,54795,24,1
,1,19331,54797,496,1
,1,19331,54799,64,1
,1,19331,54801,24,1
,1,19331,54803,24,1
,1,19331,54805,24,1
,1,19331,54807,64,1
,1,19331,54809,24,1
,1,19331,54811,24,1
,1,19331,54813,24,1
,1,19331,54815,440,1
,1,19331,54817,88,1
,1,19331,54819,184,1
,1,19331,54821,24,1
,1,19331,54823,24,1
,1,19331,54825,64,1
,1,19331,54827,24,1
,1,19331,54829,184,1
,1,19331,54831,104,1
,1,19331,54833,24,1
,1,19331,54835,24,1
,1,19331,54837,24,1
,1,19331,54839,24,1
,1,19331,54841,24,1
,1,19331,54843,24,1
,1,19331,54845,64,1
,1,19331,54847,112,1
,1,19331,54849,144,1
,1,19331,54851,144,1
,1,19331,54853,24,1
,1,19331,54855,144,1
,1,19331,54857,24,1
,1,19331,54859,24,1
,2,19332,54861,96,0
,2,53,54863,24,0
,2,19333,54865,88,0
,2,53,54867,24,0
,2,53,54869,24,0
,1,19331,54871,464,1
,1,19331,54873,40,1
,1,19331,54875,24,1
,1,19331,54877,296,1
,1,19331,54879,24,1
,1,19331,54881,40,1
,1,19331,54883,352,1
,1,19331,54885,40,1
,1,19331,54887,208,1
,1,19331,54889,24,1
,1,19331,54891,24,1
,1,19331,54893,24,1
,1,19331,54895,24,1
,1,19331,54897,24,1
,2,857,54899,32,0
,2,53,54901,24,0
,1,19331,54903,656,1
,1,19331,54905,40,1
,1,19331,54907,24,1
,1,19331,54909,24,1
,1,19331,54911,24,1
,1,19331,54913,272,1
,1,19331,54915,24,1
,1,19331,54917,24,1
,1,19331,54919,24,1
,1,19331,54921,24,1
,1,19331,54923,24,1
,1,19331,54925,24,1
,1,19331,54927,24,1
,1,19331,54929,24,1
,1,19331,54931,24,1
,1,19331,54933,24,1
,1,19331,54935,24,1
,1,19331,54937,80,1
,1,19331,54939,24,1
,1,19331,54941,352,1
,1,19331,54943,24,1
,1,19331,54945,200,1
,2,19334,54947,40,0
,2,53,54949,24,0
,1,19331,54951,400,1
,1,19331,54953,24,1
,1,19331,54955,184,1
,1,19331,54957,280,1
,1,19331,54959,320,1
,1,19331,54961,24,1
,1,19331,54963,616,1
,1,19331,54965,32,1
,1,19331,54967,360,1
,1,19331,54969,104,1
,1,19331,54971,184,1
,1,19331,54973,24,1
,1,19331,54975,64,1
,1,19331,54977,24,1
,1,19331,54979,24,1
,1,19331,54981,256,1
,1,19331,54983,24,1
,1,19331,54985,96,1
,2,1150,54987,32,0
,2,53,54989,24,0
,2,19335,54991,48,0
,2,19336,54993,80,0
,2,53,54995,24,0
,2,53,54997,24,0
,1,19331,54999,24,1
,1,19331,55001,2408,1
,1,19331,55003,40,1
,1,19331,55005,184,1
,1,19331,55007,40,1
,1,19331,55009,24,1
,1,19331,55011,24,1
,1,19331,55013,24,1
,1,19331,55015,24,1
,1,19331,55017,24,1
,1,19331,55019,24,1
,1,19331,55021,24,1
,1,19331,55023,24,1
,1,19331,55025,440,1
,1,19331,55027,40,1
,1,19331,55029,24,1
,1,19331,55031,224,1
,1,19331,55033,40,1
,1,19331,55035,136,1
,1,19331,55037,40,1
,1,19331,55039,32,1
,1,19331,55041,272,1
,1,19331,55043,64,1
,1,19331,55045,24,1
,1,19331,55047,168,1
,1,19331,55049,40,1
,1,19331,55051,24,1
,1,19331,55053,104,1
,1,19331,55055,40,1
,1,19331,55057,24,1
,1,19331,55059,144,1
,1,19331,55061,64,1
,1,19331,55063,56,1
,1,19331,55065,120,1
,1,19331,55067,40,1
,1,19331,55069,56,1
,1,19331,55071,64,1
,1,19331,55073,24,1
,1,19331,55075,24,1
,1,19331,55077,24,1
,1,19331,55079,64,1
,1,19331,55081,56,1
,1,19331,55083,24,1
,1,19331,55085,520,1
,1,19331,55087,112,1
,1,19331,55089,32,1
,1,19331,55091,200,1
,1,19331,55093,32,1
,1,19331,55095,24,1
,1,19331,55097,24,1
,1,19331,55099,216,1
,1,19331,55101,24,1
,1,19331,55103,24,1
,1,19331,55105,24,1
,1,19331,55107,24,1
,1,19331,55109,24,1
,1,19331,55111,24,1
,1,19331,55113,32,1
,1,19331,55115,24,1
,1,19331,55117,64,1
,1,19331,55119,24,1
,1,19331,55121,64,1
,1,19331,55123,24,1
,1,19331,55125,24,1
,1,19331,55127,24,1
,1,19331,55129,24,1
,1,19331,55131,24,1
,1,19331,55133,24,1
,1,19331,55135,32,1
,1,19331,55137,24,1
,1,19331,55139,24,1
,1,19331,55141,112,1
,1,19331,55143,24,1
,1,19331,55145,24,1
,1,19331,55147,200,1
,1,19331,55149,24,1
,1,19331,55151,72,1
,1,19331,55153,24,1
,1,19331,55155,120,1
,1,19331,55157,56,1
,1,19331,55159,32,1
,1,19331,55161,224,1
,2,19337,55163,32,0
,2,53,55165,24,0
,2,53,55167,24,0
,1,19331,55169,256,1
,1,19331,55171,392,1
,1,19331,55173,56,1
,1,19331,55175,24,1
,1,19331,55177,32,1
,1,19331,55179,144,1
,1,19331,55181,24,1
,1,19331,55183,24,1
,1,19331,55185,48,1
,1,19331,55187,24,1
,1,19331,55189,32,1
,1,19331,55191,32,1
,1,19331,55193,80,1
,1,19331,55195,24,1
,1,19331,55197,488,1
,1,19331,55199,24,1
,1,19331,55201,72,1
,1,19331,55203,112,1
,1,19331,55205,64,1
,1,19331,55207,80,1
,1,19331,55209,104,1
,1,19331,55211,24,1
,1,19331,55213,24,1
,1,19331,55215,416,1
,1,19331,55217,40,1
,1,19331,55219,24,1
,1,19331,55221,816,1
,1,19331,55223,48,1
,1,19331,55225,64,1
,1,19331,55227,24,1
,1,19331,55229,24,1
,1,19331,55231,24,1
,1,19331,55233,184,1
,1,19331,55235,40,1
,1,19331,55237,40,1
,1,19331,55239,376,1
,1,19331,55241,64,1
,1,19331,55243,104,1
,2,53,55245,24,0
,1,19331,55247,24,1
,1,19331,55249,24,1
,1,19331,55251,608,1
,1,19331,55253,24,1
,1,19331,55255,32,1
,1,19331,55257,24,1
,1,19331,55259,24,1
,1,19331,55261,96,1
,1,19331,55263,40,1
,1,19331,55265,40,1
,1,19331,55267,64,1
,1,19331,55269,24,1
,1,19331,55271,24,1
,1,19331,55273,24,1
,1,19331,55275,24,1
,1,19331,55277,24,1
,1,19331,55279,24,1
,1,19331,55281,24,1
,1,19331,55283,24,1
,1,19331,55285,24,1
,1,19331,55287,24,1
,1,19331,55289,24,1
,1,19331,55291,24,1
,1,19331,55293,24,1
,1,19331,55295,24,1
,1,19331,55297,24,1
,1,19331,55299,24,1
,1,19331,55301,24,1
,1,19331,55303,24,1
,1,19331,55305,24,1
,1,19331,55307,32,1
,1,19331,55309,24,1
,1,19331,55311,112,1
,1,19331,55313,24,1
,1,19331,55315,24,1
,1,19331,55317,24,1
,1,19331,55319,96,1
,1,19331,55321,216,1
,1,19331,55323,64,1
,1,19331,55325,24,1
,1,19331,55327,24,1
,1,19331,55329,24,1
,1,19331,55331,24,1
,1,19331,55333,24,1
,1,19331,55335,24,1
,1,19331,55337,24,1
,1,19331,55339,32,1
,1,19331,55341,24,1
,1,19331,55343,32,1
,1,19331,55345,24,1
,1,19331,55347,24,1
,1,19331,55349,24,1
,1,19331,55351,32,1
,1,19331,55353,24,1
,1,19331,55355,24,1
,1,19331,55357,32,1
,1,19331,55359,24,1
,1,19331,55361,32,1
,1,19331,55363,24,1
,1,19331,55365,24,1
,1,19331,55367,24,1
,1,19331,55369,24,1
,1,19331,55371,32,1
,1,19331,55373,24,1
,1,19331,55375,24,1
,1,19331,55377,24,1
,1,19331,55379,32,1
,1,19331,55381,24,1
,1,19331,55383,32,1
,1,19331,55385,24,1
,1,19331,55387,24,1
,1,19331,55389,24,1
,1,19331,55391,24,1
,1,19331,55393,24,1
,1,19331,55395,32,1
,1,19331,55397,24,1
,1,19331,55399,24,1
,1,19331,55401,24,1
,1,19331,55403,24,1
,1,19331,55405,32,1
,1,19331,55407,32,1
,1,19331,55409,32,1
,1,19331,55411,32,1
,1,19331,55413,32,1
,1,19331,55415,32,1
,1,19331,55417,24,1
,1,19331,55419,24,1
,1,19331,55421,24,1
,1,19331,55423,24,1
,1,19331,55425,24,1
,1,19331,55427,24,1
,1,19331,55429,24,1
,1,19331,55431,24,1
,1,19331,55433,32,1
,1,19331,55435,24,1
,1,19331,55437,24,1
,1,19331,55439,56,1
,2,1472,55441,32,0
,2,53,55443,24,0
,1,19331,55445,464,1
,1,19331,55447,40,1
,1,19331,55449,32,1
,1,19331,55451,112,1
,1,19331,55453,40,1
,1,19331,55455,48,1
,1,19331,55457,24,1
,1,19331,55459,192,1
,1,19331,55461,24,1
,1,19331,55463,80,1
,1,19331,55465,240,1
,1,19331,55467,112,1
,1,19331,55469,24,1
,1,19331,55471,24,1
,1,19331,55473,104,1
,1,19331,55475,152,1
,1,19331,55477,40,1
,1,19331,55479,24,1
,1,19331,55481,24,1
,1,19331,55483,24,1
,1,19331,55485,80,1
,1,19331,55487,104,1
,1,19331,55489,24,1
,1,19331,55491,24,1
,1,19331,55493,24,1
,1,19331,55495,24,1
,1,19331,55497,48,1
,1,19331,55499,24,1
,1,19331,55501,24,1
,1,19331,55503,24,1
,1,19331,55505,24,1
,1,19331,55507,32,1
,1,19331,55509,32,1
,1,19331,55511,32,1
,1,19331,55513,32,1
,1,19331,55515,32,1
,1,19331,55517,32,1
,1,19331,55519,24,1
,1,19331,55521,24,1
,1,19331,55523,24,1
,1,19331,55525,24,1
,1,19331,55527,24,1
,1,19331,55529,24,1
,1,19331,55531,24,1
,1,19331,55533,24,1
,1,19331,55535,24,1
,1,19331,55537,24,1
,1,19331,55539,32,1
,1,19331,55541,24,1
,1,19331,55543,24,1
,1,19331,55545,32,1
,1,19331,55547,32,1
,1,19331,55549,24,1
,1,19331,55551,24,1
,1,19331,55553,24,1
,1,19331,55555,24,1
,1,19331,55557,24,1
,1,19331,55559,24,1
,1,19331,55561,288,1
,1,19331,55563,24,1
,1,19331,55565,24,1
,1,19331,55567,24,1
,1,19331,55569,24,1
,1,19331,55571,408,1
,1,19331,55573,24,1
,1,19331,55575,32,1
,1,19331,55577,64,1
,1,19331,55579,24,1
,1,19331,55581,24,1
,1,19331,55583,88,1
,1,19331,55585,24,1
,1,19331,55587,24,1
,1,19331,55589,24,1
,1,19331,55591,24,1
,1,19331,55593,24,1
,1,19331,55595,24,1
,1,19331,55597,24,1
,1,19331,55599,112,1
,1,19331,55601,80,1
,1,19331,55603,24,1
,1,19331,55605,24,1
,1,19331,55607,32,1
,1,19331,55609,24,1
,1,19331,55611,24,1
,1,19331,55613,24,1
,1,19331,55615,24,1
,1,19331,55617,24,1
,1,19331,55619,24,1
,1,19331,55621,24,1
,1,19331,55623,32,1
,1,19331,55625,24,1
,1,19331,55627,48,1
,1,19331,55629,24,1
,1,19331,55631,64,1
,1,19331,55633,32,1
,1,19331,55635,24,1
,1,19331,55637,40,1
,1,19331,55639,16,1
,1,19331,55641,40,1
,1,19331,55643,216,1
,1,19331,55645,40,1
,1,19331,55647,40,1
,1,19331,55649,40,1
,1,19331,55651,40,1
,1,19331,55653,88,1
,1,19331,55655,96,1
,1,19331,55657,48,1
,0,16,55659,64,1
,0,16,55661,64,1
,0,87,55663,16,1
,7,19,55665,16,1
,7,19,55667,16,1
,1,19331,55669,24,1
,1,19331,55671,360,1
,1,19331,55673,56,1
,0,16,55675,64,1
,4,1,55677,128,3
,4,1,55679,128,3
,4,1,55681,128,3
,4,1,55683,288,2
,4,1,55685,128,2
,4,1,55687,224,4
,4,1,55689,192,4
,4,1,55691,192,4
,4,1,55693,224,5
,4,1,55695,224,5
,4,1,55697,192,4
,4,1,55699,128,3
,4,1,55701,128,3
,4,1,55703,128,3
,4,1,55705,128,3
,4,1,55707,128,3
,4,1,55709,128,3
,4,1,55711,128,3
,4,1,55713,128,3
,4,1,55715,128,3
,4,1,55717,128,3
,4,1,55719,352,4
,4,1,55721,128,3
,4,1,55723,160,3
,4,1,55725,192,3
,4,1,55727,192,3
,4,1,55729,320,3
,4,1,55731,160,3
,4,1,55733,128,3
,4,1,55735,128,3
,4,1,55737,1024,4
,4,1,55739,736,14
,4,1,55741,192,4
,4,1,55743,320,4
,4,1,55745,128,3
,4,1,55747,224,4
,4,1,55749,448,5
,4,1,55751,352,3
,4,1,55753,128,3
,4,1,55755,128,3
,4,1,55757,224,4
,4,1,55759,448,5
,4,1,55761,352,3
,4,1,55763,128,3
,4,1,55765,160,3
,4,1,55767,128,3
,4,1,55769,2368,21
,4,1,55771,128,3
,4,1,55773,2368,21
,4,1,55775,416,6
,4,1,55777,480,6
,4,1,55779,480,6
,4,1,55781,160,5
,4,1,55783,928,5
,4,1,55785,192,4
,4,1,55787,192,4
,4,1,55789,192,4
,4,1,55791,224,4
,4,1,55793,224,4
,4,1,55795,192,4
,4,1,55797,192,4
,4,1,55799,192,4
,4,1,55801,192,4
,4,1,55803,192,4
,4,1,55805,128,2
,4,1,55807,160,2
,0,484,55809,16,0
,0,484,55811,16,0
,0,484,55813,16,0
,0,484,55815,16,0
,0,484,55817,16,0
,4,1,55819,192,6
,4,1,55821,192,6
,0,484,55823,16,0
,0,484,55825,16,0
,0,484,55827,16,0
,0,484,55829,16,0
,0,484,55831,16,0
,0,484,55833,16,0
,0,484,55835,16,0
,0,484,55837,16,0
,0,484,55839,16,0
,0,484,55841,16,0
,0,484,55843,16,0
,0,484,55845,16,0
,0,484,55847,16,0
,0,484,55849,16,0
,0,484,55851,16,0
,0,484,55853,16,0
,0,484,55855,16,0
,0,484,55857,16,0
,0,484,55859,16,0
,0,484,55861,16,0
,0,484,55863,16,0
,0,484,55865,16,0
,0,484,55867,16,0
,0,484,55869,16,0
,0,484,55871,16,0
,0,484,55873,16,0
,4,1,55875,160,4
,4,1,55877,192,6
,0,484,55879,16,0
,4,1,55881,192,5
,0,484,55883,16,0
,0,484,55885,16,0
,4,1,55887,160,5
,0,484,55889,16,0
,0,484,55891,16,0
,0,484,55893,16,0
,0,16,55895,64,3
,0,484,55897,16,0
,0,484,55899,16,0
,0,484,55901,16,0
,0,484,55903,16,0
,0,484,55905,16,0
,0,484,55907,16,0
,0,484,55909,16,0
,0,484,55911,16,0
,0,484,55913,16,0
,0,484,55915,16,0
,0,484,55917,16,0
,4,1,55919,192,7
,0,484,55921,16,0
,0,484,55923,16,0
,0,484,55925,16,0
,0,484,55927,16,0
,0,484,55929,16,0
,0,484,55931,16,0
,0,484,55933,16,0
,0,484,55935,16,0
,0,484,55937,16,0
,0,484,55939,16,0
,0,484,55941,16,0
,0,484,55943,16,0
,0,484,55945,16,0
,4,1,55947,160,5
,4,1,55949,160,5
,4,1,55951,160,5
,0,484,55953,16,0
,0,484,55955,16,0
,4,1,55957,160,5
,4,1,55959,192,6
,4,1,55961,192,6
,0,484,55963,16,0
,0,484,55965,16,0
,4,1,55967,192,6
,0,484,55969,16,0
,4,1,55971,192,5
,4,1,55973,192,5
,0,484,55975,16,0
,0,484,55977,16,0
,0,484,55979,16,0
,4,1,55981,192,5
,0,484,55983,16,0
,0,484,55985,16,0
,0,484,55987,16,0
,0,484,55989,16,0
,0,484,55991,16,0
,0,484,55993,16,0
,4,1,55995,160,5
,4,1,55997,192,6
,0,484,55999,16,0
,4,1,56001,192,6
,0,484,56003,16,0
,0,484,56005,16,0
,0,484,56007,16,0
,0,484,56009,16,0
,0,484,56011,16,0
,4,1,56013,192,6
,4,1,56015,192,6
,4,1,56017,160,5
,4,1,56019,160,5
,4,1,56021,224,7
,4,1,56023,160,5
,0,484,56025,16,0
,4,1,56027,160,5
,4,1,56029,160,5
,4,1,56031,192,6
,0,484,56033,16,0
,0,484,56035,16,0
,0,484,56037,16,0
,4,1,56039,192,5
,4,1,56041,192,5
,4,1,56043,160,5
,4,1,56045,160,5
,0,484,56047,16,0
,0,484,56049,16,0
,4,1,56051,160,5
,4,1,56053,160,4
,4,1,56055,160,5
,4,1,56057,672,10
,4,1,56059,192,6
,4,1,56061,192,6
,4,1,56063,160,4
,0,484,56065,16,0
,4,1,56067,160,4
,4,1,56069,576,11
,0,484,56071,16,0
,4,1,56073,352,11
,4,1,56075,352,11
,4,1,56077,352,11
,4,1,56079,352,11
,0,484,56081,16,0
,4,1,56083,160,4
,0,484,56085,16,0
,4,1,56087,160,5
,4,1,56089,160,5
,4,1,56091,160,4
,4,1,56093,160,5
,4,1,56095,192,5
,0,484,56097,16,0
,0,484,56099,16,0
,4,1,56101,160,4
,0,484,56103,16,0
,0,484,56105,16,0
,0,484,56107,16,0
,4,1,56109,160,5
,4,1,56111,192,6
,0,484,56113,16,0
,4,1,56115,192,6
,4,1,56117,192,6
,4,1,56119,160,5
,4,1,56121,160,5
,4,1,56123,192,6
,4,1,56125,672,11
,0,484,56127,16,0
,4,1,56129,192,6
,0,484,56131,16,0
,0,484,56133,16,0
,4,1,56135,160,5
,4,1,56137,192,6
,4,1,56139,256,6
,4,1,56141,160,4
,4,1,56143,256,6
,4,1,56145,256,6
,4,1,56147,160,4
,4,1,56149,256,6
,4,1,56151,192,6
,0,484,56153,16,0
,4,1,56155,320,9
,4,1,56157,320,9
,4,1,56159,320,9
,4,1,56161,320,9
,4,1,56163,320,9
,4,1,56165,320,9
,4,1,56167,320,9
,4,1,56169,320,9
,4,1,56171,320,9
,4,1,56173,320,9
,4,1,56175,320,9
,4,1,56177,320,9
,0,484,56179,16,0
,4,1,56181,192,5
,4,1,56183,192,5
,0,484,56185,16,0
,4,1,56187,192,6
,0,484,56189,16,0
,0,484,56191,16,0
,4,1,56193,256,6
,4,1,56195,256,6
,4,1,56197,160,4
,0,484,56199,16,0
,4,1,56201,160,4
,0,484,56203,16,0
,0,484,56205,16,0
,4,1,56207,192,6
,0,484,56209,16,0
,4,1,56211,192,6
,4,1,56213,256,6
,4,1,56215,256,6
,4,1,56217,256,6
,4,1,56219,256,6
,4,1,56221,192,6
,4,1,56223,192,6
,4,1,56225,256,6
,4,1,56227,256,6
,4,1,56229,256,6
,4,1,56231,256,6
,4,1,56233,256,6
,0,484,56235,16,0
,4,1,56237,160,4
,0,484,56239,16,0
,4,1,56241,160,4
,0,484,56243,16,0
,0,484,56245,16,0
,4,1,56247,160,4
,0,484,56249,16,0
,4,1,56251,160,4
,0,484,56253,16,0
,4,1,56255,160,4
,0,484,56257,16,0
,4,1,56259,192,5
,0,484,56261,16,0
,0,484,56263,16,0
,4,1,56265,192,5
,0,484,56267,16,0
,0,484,56269,16,0
,0,484,56271,16,0
,4,1,56273,192,5
,0,484,56275,16,0
,0,484,56277,16,0
,0,484,56279,16,0
,0,484,56281,16,0
,4,1,56283,160,5
,0,484,56285,16,0
,0,484,56287,16,0
,0,484,56289,16,0
,4,1,56291,256,11
,4,1,56293,160,5
,4,1,56295,192,5
,4,1,56297,160,5
,0,484,56299,16,0
,4,1,56301,192,5
,4,1,56303,192,5
,0,484,56305,16,0
,4,1,56307,192,5
,4,1,56309,192,5
,0,484,56311,16,0
,4,1,56313,192,5
,4,1,56315,192,5
,0,484,56317,16,0
,4,1,56319,160,4
,0,484,56321,16,0
,4,1,56323,160,4
,0,484,56325,16,0
,4,1,56327,160,4
,0,484,56329,16,0
,0,484,56331,16,0
,0,484,56333,16,0
,4,1,56335,256,6
,0,484,56337,16,0
,4,1,56339,192,5
,4,1,56341,192,5
,0,484,56343,16,0
,0,484,56345,16,0
,4,1,56347,160,4
,0,484,56349,16,0
,0,484,56351,16,0
,0,484,56353,16,0
,0,484,56355,16,0
,4,1,56357,192,6
,0,484,56359,16,0
,4,1,56361,160,5
,4,1,56363,192,6
,0,484,56365,16,0
,4,1,56367,160,5
,4,1,56369,192,6
,0,484,56371,16,0
,0,484,56373,16,0
,0,484,56375,16,0
,4,1,56377,160,5
,4,1,56379,192,6
,4,1,56381,160,5
,0,484,56383,16,0
,0,484,56385,16,0
,4,1,56387,160,5
,4,1,56389,192,6
,0,484,56391,16,0
,0,484,56393,16,0
,0,484,56395,16,0
,0,484,56397,16,0
,0,484,56399,16,0
,0,484,56401,16,0
,0,484,56403,16,0
,0,484,56405,16,0
,0,484,56407,16,0
,0,484,56409,16,0
,4,1,56411,160,5
,4,1,56413,800,18
,0,484,56415,16,0
,4,1,56417,224,8
,4,1,56419,224,7
,4,1,56421,192,6
,4,1,56423,192,6
,4,1,56425,160,5
,0,484,56427,16,0
,0,484,56429,16,0
,4,1,56431,192,6
,0,484,56433,16,0
,0,484,56435,16,0
,0,484,56437,16,0
,4,1,56439,192,5
,0,484,56441,16,0
,0,484,56443,16,0
,4,1,56445,160,5
,4,1,56447,160,4
,0,484,56449,16,0
,4,1,56451,192,5
,4,1,56453,192,6
,4,1,56455,160,4
,0,484,56457,16,0
,4,1,56459,160,5
,4,1,56461,160,5
,4,1,56463,192,6
,4,1,56465,160,5
,0,484,56467,16,0
,4,1,56469,224,7
,0,484,56471,16,0
,4,1,56473,192,6
,0,484,56475,16,0
,4,1,56477,192,6
,4,1,56479,192,6
,0,484,56481,16,0
,0,484,56483,16,0
,4,1,56485,256,7
,0,484,56487,16,0
,4,1,56489,160,4
,4,1,56491,160,5
,4,1,56493,224,8
,4,1,56495,192,5
,4,1,56497,192,5
,4,1,56499,160,4
,0,484,56501,16,0
,4,1,56503,192,6
,0,484,56505,16,0
,0,484,56507,16,0
,4,1,56509,192,6
,0,484,56511,16,0
,4,1,56513,192,6
,0,484,56515,16,0
,4,1,56517,160,5
,4,1,56519,192,6
,4,1,56521,160,4
,4,1,56523,160,5
,0,484,56525,16,0
,4,1,56527,192,5
,0,484,56529,16,0
,0,484,56531,16,0
,0,484,56533,16,0
,0,484,56535,16,0
,0,484,56537,16,0
,0,484,56539,16,0
,0,484,56541,16,0
,0,484,56543,16,0
,0,484,56545,16,0
,0,484,56547,16,0
,0,484,56549,16,0
,0,484,56551,16,0
,0,484,56553,16,0
,0,484,56555,16,0
,0,484,56557,16,0
,0,484,56559,16,0
,0,484,56561,16,0
,4,1,56563,160,5
,0,484,56565,16,0
,4,1,56567,160,5
,4,1,56569,576,8
,0,484,56571,16,0
,4,1,56573,224,7
,0,484,56575,16,0
,0,484,56577,16,0
,4,1,56579,160,5
,4,1,56581,192,6
,0,484,56583,16,0
,4,1,56585,192,6
,0,484,56587,16,0
,4,1,56589,192,6
,0,484,56591,16,0
,4,1,56593,160,4
,0,484,56595,16,0
,4,1,56597,192,6
,4,1,56599,160,5
,4,1,56601,192,7
,0,484,56603,16,0
,4,1,56605,192,5
,4,1,56607,192,6
,4,1,56609,160,5
,4,1,56611,160,4
,4,1,56613,160,5
,4,1,56615,192,6
,0,484,56617,16,0
,4,1,56619,160,4
,0,484,56621,16,0
,4,1,56623,160,5
,4,1,56625,192,6
,4,1,56627,160,5
,0,484,56629,16,0
,4,1,56631,576,8
,0,484,56633,16,0
,0,484,56635,16,0
,4,1,56637,352,11
,4,1,56639,352,11
,4,1,56641,352,11
,4,1,56643,352,11
,4,1,56645,352,11
,4,1,56647,352,11
,0,484,56649,16,0
,4,1,56651,160,4
,4,1,56653,160,4
,4,1,56655,192,5
,4,1,56657,160,5
,4,1,56659,160,5
,4,1,56661,352,11
,4,1,56663,160,5
,4,1,56665,192,5
,0,484,56667,16,0
,0,484,56669,16,0
,0,484,56671,16,0
,4,1,56673,224,7
,4,1,56675,192,6
,0,484,56677,16,0
,0,484,56679,16,0
,4,1,56681,160,4
,4,1,56683,192,6
,4,1,56685,192,6
,4,1,56687,672,10
,0,484,56689,16,0
,0,484,56691,16,0
,4,1,56693,192,6
,0,484,56695,16,0
,0,484,56697,16,0
,0,484,56699,16,0
,0,484,56701,16,0
,4,1,56703,192,5
,4,1,56705,160,4
,4,1,56707,160,4
,4,1,56709,160,5
,4,1,56711,160,5
,4,1,56713,160,4
,4,1,56715,160,5
,4,1,56717,192,6
,0,484,56719,16,0
,4,1,56721,160,5
,4,1,56723,224,7
,4,1,56725,160,5
,0,484,56727,16,0
,4,1,56729,224,7
,0,484,56731,16,0
,0,484,56733,16,0
,4,1,56735,576,8
,0,484,56737,16,0
,0,484,56739,16,0
,0,484,56741,16,0
,4,1,56743,576,8
,0,484,56745,16,0
,0,484,56747,16,0
,4,1,56749,160,5
,4,1,56751,160,5
,4,1,56753,352,11
,4,1,56755,160,4
,4,1,56757,160,4
,4,1,56759,352,11
,4,1,56761,160,4
,4,1,56763,352,11
,4,1,56765,160,4
,4,1,56767,192,5
,4,1,56769,160,4
,4,1,56771,160,4
,4,1,56773,576,8
,0,484,56775,16,0
,0,484,56777,16,0
,4,1,56779,160,5
,4,1,56781,576,8
,0,484,56783,16,0
,0,484,56785,16,0
,4,1,56787,576,8
,0,484,56789,16,0
,4,1,56791,192,6
,4,1,56793,160,4
,4,1,56795,160,4
,0,484,56797,16,0
,4,1,56799,160,4
,4,1,56801,608,9
,0,484,56803,16,0
,0,484,56805,16,0
,4,1,56807,192,5
,0,484,56809,16,0
,0,484,56811,16,0
,0,484,56813,16,0
,0,484,56815,16,0
,0,484,56817,16,0
,0,484,56819,16,0
,0,484,56821,16,0
,0,484,56823,16,0
,0,484,56825,16,0
,4,1,56827,160,5
,4,1,56829,192,7
,0,484,56831,16,0
,0,484,56833,16,0
,0,484,56835,16,0
,0,484,56837,16,0
,0,484,56839,16,0
,4,1,56841,256,10
,4,1,56843,352,11
,0,484,56845,16,0
,4,1,56847,160,5
,4,1,56849,160,5
,4,1,56851,192,5
,4,1,56853,192,5
,4,1,56855,160,4
,4,1,56857,160,5
,0,484,56859,16,0
,4,1,56861,352,11
,4,1,56863,352,11
,4,1,56865,352,11
,4,1,56867,352,11
,4,1,56869,352,11
,4,1,56871,352,11
,0,484,56873,16,0
,4,1,56875,160,4
,0,484,56877,16,0
,4,1,56879,192,6
,0,484,56881,16,0
,4,1,56883,160,4
,4,1,56885,160,5
,0,484,56887,16,0
,4,1,56889,160,5
,4,1,56891,160,5
,4,1,56893,192,5
,4,1,56895,192,5
,0,484,56897,16,0
,4,1,56899,160,5
,4,1,56901,608,9
,4,1,56903,160,5
,4,1,56905,352,11
,4,1,56907,160,5
,0,484,56909,16,0
,4,1,56911,160,4
,4,1,56913,192,5
,4,1,56915,192,5
,4,1,56917,192,5
,4,1,56919,192,5
,0,484,56921,16,0
,4,1,56923,160,4
,4,1,56925,160,4
,0,484,56927,16,0
,0,484,56929,16,0
,0,484,56931,16,1
,0,484,56933,16,1
,0,484,56935,16,1
,0,484,56937,16,0
,4,1,56939,160,5
,4,1,56941,160,5
,4,1,56943,160,4
,4,1,56945,160,4
,4,1,56947,608,9
,0,484,56949,16,0
,4,1,56951,160,5
,4,1,56953,160,5
,4,1,56955,160,4
,4,1,56957,192,7
,4,1,56959,224,5
,0,484,56961,16,0
,4,1,56963,160,4
,0,484,56965,16,0
,0,484,56967,16,0
,0,484,56969,16,1
,4,1,56971,160,4
,0,484,56973,16,0
,4,1,56975,224,7
,0,484,56977,16,0
,0,484,56979,16,1
,0,484,56981,16,1
,0,484,56983,16,1
,0,484,56985,16,1
,0,484,56987,16,1
,0,484,56989,16,1
,0,484,56991,16,1
,0,484,56993,16,1
,0,484,56995,16,1
,0,484,56997,16,1
,0,484,56999,16,1
,0,484,57001,16,1
,0,484,57003,16,0
,0,16,57005,64,1
,0,16,57007,64,1
,0,16,57009,64,1
,0,16,57011,64,1
,0,16,57013,64,1
,0,16,57015,64,1
,0,16,57017,64,1
,0,16,57019,64,1
,0,16,57021,64,1
,0,16,57023,64,1
,0,16,57025,64,1
,0,16,57027,64,1
,0,16,57029,64,1
,0,16,57031,64,1
,0,16,57033,64,1
,0,16,57035,64,1
,0,16,57037,64,1
,0,16,57039,64,1
,0,16,57041,64,1
,0,16,57043,64,1
,0,16,57045,64,1
,0,16,57047,64,1
,0,16,57049,64,1
,0,16,57051,64,1
,0,16,57053,64,1
,0,16,57055,64,1
,0,16,57057,64,1
,0,16,57059,64,1
,0,16,57061,64,1
,0,16,57063,64,1
,0,16,57065,64,1
,0,16,57067,64,1
,0,16,57069,64,1
,0,16,57071,64,1
,0,16,57073,64,1
,0,16,57075,64,1
,0,16,57077,64,1
,0,16,57079,64,1
,0,16,57081,64,1
,0,16,57083,64,1
,0,16,57085,64,1
,0,16,57087,64,1
,0,16,57089,64,1
,0,16,57091,64,1
,0,16,57093,64,1
,0,16,57095,64,1
,0,16,57097,64,1
,0,16,57099,64,1
,0,16,57101,64,6
,0,16,57103,64,6
,0,16,57105,64,6
,0,16,57107,64,6
,0,16,57109,64,6
,0,16,57111,64,6
,0,16,57113,64,6
,0,16,57115,64,6
,8,128,1207189724,0,1
,9,128,1191180796,0,2
,8,128,1207193500,8192,1
],
"edges":[5,32,685
,1,2,5
,1,3,142785
,1,1,10
,1,2,15
,1,3,20
,1,4,25
,1,5,30
,1,6,35
,1,7,40
,1,8,45
,1,9,50
,1,10,55
,1,11,60
,1,12,65
,3,19338,134465
,3,19339,142630
,3,19340,39550
,3,19341,142675
,3,19342,85
,3,19343,120
,3,19344,70
,3,19345,100
,3,19346,110
,3,19347,142670
,3,19348,345
,3,19349,142500
,3,19350,142510
,3,19351,142560
,3,19352,134475
,3,19353,128660
,3,19354,175
,3,19355,139175
,3,19356,4430
,3,19357,7520
,3,19358,142625
,3,19359,140
,3,19360,39795
,3,19361,445
,3,19362,134460
,3,19363,340
,3,19364,134455
,3,19365,130
,3,19366,30550
,3,19343,120
,3,19343,120
,3,19367,185
,3,19368,305
,3,19369,310
,3,19370,150
,3,19371,142555
,3,19372,142505
,3,19373,142565
,3,19374,142570
,3,19375,142575
,3,19376,142580
,3,19377,142515
,3,19378,142520
,3,19379,142525
,3,19380,142530
,3,19381,142535
,3,19382,142585
,3,19383,142590
,3,19384,142595
,3,19385,142540
,3,19386,142545
,3,19387,142550
,3,19388,142600
,3,19389,142605
,3,19390,142610
,3,19391,142615
,3,19392,142620
,3,19393,142635
,3,19394,142640
,3,19395,139135
,3,19396,142645
,3,19397,142650
,3,19398,142655
,3,19399,139140
,3,19400,142660
,3,19401,142665
,3,19402,41565
,3,19403,30810
,3,19404,142710
,3,19405,142715
,3,19406,142720
,3,19407,142725
,3,19408,142730
,3,19409,75
,3,19410,142735
,3,19411,135065
,3,19412,95
,3,19413,134480
,3,19414,134470
,3,19415,31085
,3,19416,43645
,3,19417,139145
,3,19418,43650
,3,19419,44445
,3,19420,160
,3,19421,44360
,3,19422,44365
,3,19423,44775
,3,19424,3590
,3,19425,44780
,3,19426,1050
,3,19427,320
,3,19428,129095
,3,19429,129495
,3,19430,4665
,3,19431,1445
,3,19432,12560
,3,19433,12575
,3,19434,30840
,3,19435,19730
,3,19436,1160
,3,19437,130045
,3,19438,16520
,3,19439,128850
,3,19440,4435
,3,19441,129430
,3,19442,128970
,3,19443,655
,3,19444,4860
,3,19445,128775
,3,19446,21345
,3,19447,16855
,3,19448,30825
,3,19449,129540
,3,19450,80
,3,19451,19725
,3,19452,1090
,3,19453,129685
,3,19454,1285
,3,19455,16695
,3,19456,990
,3,19457,129465
,3,19458,130240
,3,19459,128965
,3,19460,21350
,3,19461,130245
,3,19462,129310
,3,19463,30850
,3,19464,10475
,3,19465,1190
,3,19466,1235
,3,19467,128910
,3,19468,4890
,3,19469,129750
,3,19470,90
,3,19471,4910
,3,19472,46370
,3,19473,45670
,3,19474,129255
,3,19475,129170
,3,19476,130085
,3,19477,9870
,3,19478,128950
,3,19479,129885
,3,19480,128945
,3,19481,17595
,3,19482,17605
,3,19483,1020
,3,19484,129940
,3,19485,9360
,3,19486,9350
,3,19487,9320
,3,19488,130005
,3,19489,129470
,3,19490,130125
,3,19491,129035
,3,19492,129015
,3,19493,129240
,3,19494,130100
,3,19495,129005
,3,19496,129130
,3,19497,130155
,3,19498,129045
,3,19499,12130
,3,19500,210
,3,19501,5730
,3,19502,129670
,3,19503,129770
,3,19504,129290
,3,19505,200
,3,19506,129655
,3,19507,130055
,3,19508,129620
,3,19509,130110
,3,19510,129930
,3,19511,128795
,3,19512,128780
,3,19513,12675
,3,19514,590
,3,19515,142680
,3,19516,12715
,3,19517,12820
,3,19518,12590
,3,19519,12700
,3,19520,13725
,3,19521,142685
,3,19522,575
,3,19523,142690
,3,19524,165
,3,19525,4410
,3,19526,142695
,3,19527,142700
,3,19528,142705
,1,1,134485
,3,19361,445
,3,19343,120
,3,19343,120
,1,3,560
,3,19343,120
,3,19343,120
,1,6,44020
,1,7,44020
,1,8,29225
,1,9,39715
,1,10,43220
,1,11,43570
,1,12,29005
,1,13,41915
,1,14,12580
,1,15,560
,1,16,12580
,1,17,43225
,1,18,41915
,1,19,43220
,1,20,41925
,1,21,43230
,1,22,30295
,1,23,41915
,1,24,134450
,1,25,29300
,3,19345,100
,3,19342,85
,1,28,139155
,1,29,41915
,1,30,139150
,1,31,30175
,1,32,134450
,1,33,29300
,1,34,40310
,1,35,30175
,1,36,139195
,1,37,40310
,1,38,30175
,1,39,139205
,1,40,139205
,3,19421,44360
,3,19421,44360
,1,1,39715
,1,2,29225
,3,19342,85
,1,1,139450
,1,2,139495
,3,19342,85
,3,19342,85
,1,3,128680
,1,4,128685
,1,5,128690
,3,19342,85
,3,19342,85
,3,19342,85
,3,19342,85
,3,19342,85
,3,19342,85
,1,1,725
,1,2,12595
,1,3,16870
,1,4,15140
,1,5,15145
,1,6,30805
,1,7,560
,1,8,725
,1,9,915
,1,10,15695
,1,11,130285
,1,12,560
,1,13,2350
,1,14,970
,1,15,970
,1,16,560
,1,17,560
,1,18,780
,1,19,15725
,1,20,129830
,1,21,560
,1,22,2350
,1,23,970
,1,24,970
,1,25,560
,1,26,560
,1,27,690
,1,28,15755
,1,29,128925
,1,30,560
,1,31,2350
,1,32,970
,1,33,970
,1,34,560
,1,35,560
,1,36,955
,1,37,15785
,1,38,129955
,1,39,560
,1,40,2350
,1,41,970
,1,42,970
,1,43,560
,1,44,560
,1,45,740
,1,46,15815
,1,47,129535
,1,48,560
,1,49,2350
,1,50,970
,1,51,970
,1,52,560
,1,53,560
,1,54,810
,1,55,15845
,1,56,129650
,1,57,560
,1,58,2350
,1,59,970
,1,60,970
,1,61,560
,1,62,560
,1,63,785
,1,64,15875
,1,65,128725
,1,66,560
,1,67,2350
,1,68,970
,1,69,970
,1,70,560
,1,71,560
,1,72,905
,1,73,15905
,1,74,130115
,1,75,560
,1,76,2350
,1,77,970
,1,78,970
,1,79,560
,1,80,560
,1,81,760
,3,19342,85
,1,83,30175
,1,84,560
,1,85,560
,1,1,660
,1,2,525
,1,3,139180
,1,4,139185
,1,5,7380
,1,6,7365
,1,7,7395
,1,8,7415
,1,9,7435
,1,10,7455
,1,11,7475
,1,12,12630
,1,13,139190
,1,14,1505
,1,15,1530
,1,16,635
,1,17,139195
,1,18,139200
,1,19,1450
,1,20,335
,1,21,12635
,1,22,139205
,1,23,139210
,1,24,4220
,1,25,39475
,1,26,139215
,1,27,139220
,1,28,139225
,1,29,139230
,1,30,139235
,1,31,139240
,1,32,139245
,1,33,139250
,1,34,139255
,1,35,139260
,1,36,139265
,1,37,139270
,1,38,139275
,1,39,139280
,1,40,139285
,1,41,139290
,1,42,139295
,1,43,139300
,1,44,139305
,1,45,139310
,1,46,139315
,1,47,139320
,1,48,139325
,1,49,139330
,1,50,139335
,1,51,139340
,1,52,139345
,1,53,139350
,1,54,139355
,1,55,139360
,1,56,139365
,1,57,139370
,1,58,139375
,1,59,139380
,1,60,139385
,1,61,139390
,1,62,139395
,1,63,139400
,1,64,139405
,1,65,139410
,1,66,139415
,1,67,139420
,1,68,139425
,1,69,139430
,1,70,139435
,1,71,12565
,1,72,12580
,1,73,3635
,1,74,1055
,1,75,1060
,1,76,1205
,1,77,139445
,1,78,139450
,1,79,139455
,1,80,139460
,1,81,139465
,1,82,139470
,1,83,139475
,1,84,139480
,1,85,139485
,1,86,139490
,1,87,139495
,1,88,139500
,1,89,139505
,1,1,560
,1,2,915
,1,3,40130
,1,4,13690
,1,5,13760
,1,6,13885
,1,7,14005
,1,8,14125
,1,9,14245
,1,10,14365
,1,11,14485
,1,12,14605
,1,13,14725
,1,14,14845
,1,15,12595
,1,16,16870
,1,17,15695
,1,18,15725
,1,19,15755
,1,20,15785
,1,21,15815
,1,22,15845
,1,23,15875
,1,24,15905
,1,25,128695
,1,26,16070
,1,27,16115
,3,19446,21345
,1,29,129715
,1,30,18100
,6,31,20590
,1,32,950
,1,33,24755
,1,34,129775
,1,35,25620
,1,36,38350
,1,37,38380
,1,38,28605
,1,39,38355
,1,40,38360
,1,41,38365
,1,42,38370
,1,43,28510
,1,44,38375
,1,45,38385
,1,46,38390
,1,47,38395
,1,48,38400
,6,49,20600
,1,50,129890
,1,51,129545
,1,52,16585
,1,53,16615
,1,54,16845
,1,55,39425
,1,56,41500
,1,57,40310
,1,58,32315
,3,19342,85
,1,2,128700
,1,1,41705
,1,2,41715
,1,3,41730
,1,4,41835
,1,5,41870
,1,6,41840
,1,7,41810
,1,8,41815
,1,9,41720
,1,10,41740
,1,11,41880
,1,12,41850
,1,13,41860
,1,14,41765
,1,15,41725
,1,16,41885
,1,17,41760
,1,18,41700
,1,19,41865
,1,20,41770
,1,21,41780
,1,22,41745
,1,23,41785
,1,24,41875
,1,25,41855
,1,26,41695
,1,27,41790
,1,28,41710
,1,29,41830
,1,30,41800
,1,31,41820
,1,32,41825
,1,33,41775
,1,34,41735
,1,35,41755
,1,36,41690
,1,37,41795
,1,38,41845
,1,39,41750
,1,40,41805
,1,41,15140
,1,42,15145
,3,19529,75
,4,1,80
,3,19529,142500
,3,19529,75
,4,1,90
,4,2,95
,3,19529,134475
,3,19529,75
,4,1,105
,3,19529,75
,4,1,115
,3,19529,75
,4,1,125
,3,19529,75
,4,1,135
,3,19529,75
,4,1,145
,3,19529,75
,4,1,155
,3,19529,165
,3,19529,142500
,3,19529,142500
,4,35,190
,4,40,195
,4,47,200
,4,48,205
,4,49,210
,4,50,215
,4,51,220
,4,52,225
,4,53,230
,4,54,235
,4,55,240
,4,56,245
,4,57,250
,4,58,255
,4,61,260
,4,63,265
,4,98,270
,4,104,275
,4,105,280
,4,109,285
,4,111,290
,4,113,295
,4,116,300
,3,19530,320
,3,19531,325
,3,19532,330
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135485
,3,19537,6470
,3,19529,139175
,4,1,44060
,4,2,139735
,4,3,44040
,4,4,139735
,4,5,4270
,4,6,44595
,4,8,44215
,4,9,4270
,4,10,44595
,3,19529,4430
,4,5,270
,3,19536,134685
,3,19529,139175
,4,1,335
,4,2,44020
,4,3,139195
,3,19529,142500
,2,54,355
,2,55,360
,2,56,365
,2,57,370
,2,58,375
,2,59,380
,2,60,385
,2,61,390
,2,62,395
,2,63,400
,2,64,405
,2,65,410
,2,66,415
,2,67,420
,2,19076,425
,2,1484,430
,3,19538,435
,3,19539,315
,3,19540,440
,6,64,85
,3,19529,450
,4,1,325
,4,2,455
,2,19076,425
,3,19538,6295
,3,19539,5005
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,5015
,2,19076,425
,3,19538,6370
,3,19539,5355
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,5365
,2,19076,425
,3,19538,6375
,3,19539,5375
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,5385
,2,19076,425
,3,19538,6380
,3,19539,5415
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,5425
,2,19076,425
,3,19538,6395
,3,19539,5455
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6350
,3,19539,5315
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6355
,3,19539,5325
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6365
,3,19539,5345
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,5505
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6415
,3,19539,5495
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6410
,3,19539,5485
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6405
,3,19539,5475
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6400
,3,19539,5465
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6390
,3,19539,5445
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,828,535
,2,82,540
,2,71,545
,2,83,550
,2,84,555
,2,19076,430
,3,19539,515
,3,19540,560
,6,64,85
,3,19529,565
,4,1,525
,2,828,350
,2,71,460
,2,72,465
,2,73,470
,2,74,475
,2,75,480
,2,76,485
,2,77,490
,2,78,495
,2,79,500
,2,80,505
,2,19076,70
,3,19529,510
,4,1,560
,3,19541,3545
,3,19542,560
,3,19543,970
,3,19529,30810
,3,19544,425
,3,19545,133310
,3,19529,142500
,3,19544,430
,3,19546,350
,4,2,41655
,4,3,40475
,4,4,29550
,4,5,41910
,4,6,22620
,4,7,133820
,4,8,34360
,4,9,34400
,4,10,130280
,4,11,133825
,4,12,34440
,4,13,133830
,4,14,16085
,4,15,133835
,4,16,35705
,4,17,35845
,4,18,18055
,4,19,133840
,4,20,31240
,4,21,32930
,3,19547,133815
,3,19529,142500
,2,19076,425
,3,19539,4885
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6285
,3,19539,4895
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,4905
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,4915
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4925
,2,19076,425
,3,19538,6290
,3,19539,4935
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,4945
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,4955
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4965
,2,19076,425
,3,19539,4975
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,4985
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,4995
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,3,19546,350
,3,19545,133305
,3,19529,142500
,3,19530,520
,3,19531,525
,3,19533,320
,3,19548,530
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134595
,3,19529,139175
,4,1,44020
,3,19549,570
,3,19529,575
,4,3,580
,2,19076,425
,2,1484,425
,3,19538,1035
,3,19539,1015
,3,19540,440
,6,64,85
,3,19529,675
,4,1,1025
,4,2,1040
,2,19076,425
,3,19539,5655
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,5650
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,12555
,3,19540,560
,6,64,85
,3,19529,6280
,4,1,12565
,2,19076,425
,3,19539,12570
,3,19540,560
,6,64,85
,3,19529,6280
,4,1,12580
,3,19541,425
,3,19550,685
,3,19543,685
,3,19551,725
,3,19552,685
,3,19553,855
,3,19554,820
,3,19555,840
,3,19556,128625
,3,19557,350
,3,19558,2765
,3,19559,895
,3,19560,39760
,3,19561,880
,3,19562,720
,3,19563,845
,3,19564,430
,3,19565,1805
,3,19566,2415
,3,19567,1590
,3,19568,2580
,3,19569,2905
,3,19570,1855
,3,19571,2490
,3,19572,2290
,3,19573,960
,3,19574,2350
,3,19575,1950
,3,19576,12650
,3,19577,128630
,3,19578,6280
,3,19579,128635
,3,19580,128640
,3,19581,128645
,3,19582,128650
,3,19583,39725
,3,19584,39735
,3,19585,39750
,3,19416,39780
,3,19586,1920
,3,19587,1715
,3,19588,1550
,3,19589,1560
,3,19590,440
,3,19591,1510
,3,19592,1535
,3,19593,2740
,3,19594,2990
,3,19595,1485
,3,19596,39790
,3,19597,2530
,3,19598,128655
,6,63,2645
,6,65,85
,3,19529,128660
,3,19544,430
,3,19545,133765
,3,19529,142500
,3,19529,142500
,3,19529,135065
,3,19529,590
,4,1,595
,4,2,595
,3,19529,142500
,2,19076,425
,3,19539,625
,3,19540,560
,6,64,85
,3,19599,640
,3,19529,645
,4,1,635
,3,19529,590
,4,1,595
,4,2,595
,3,19529,590
,4,1,595
,4,2,595
,3,19529,590
,4,1,595
,4,2,595
,3,19529,590
,4,1,595
,4,2,595
,3,19529,590
,4,1,595
,4,2,595
,3,19530,630
,3,19531,635
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134665
,3,19529,139175
,4,1,44020
,3,19529,39795
,3,19544,425
,3,19545,130460
,3,19529,142500
,3,19530,655
,3,19531,660
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134590
,3,19529,139175
,4,1,44020
,2,19076,425
,2,1484,670
,3,19539,650
,3,19540,560
,6,64,85
,3,19529,675
,4,1,660
,4,2,680
,2,828,350
,2,19076,430
,3,19600,40335
,3,19529,130465
,3,19544,425
,4,2,133615
,3,19547,133610
,3,19545,130370
,3,19529,142500
,3,19544,670
,3,19546,665
,3,19529,142500
,2,19219,690
,2,92,695
,2,93,700
,2,94,705
,2,95,710
,2,19274,715
,2,96,720
,2,1379,725
,2,97,730
,2,98,735
,2,19244,740
,2,1903,745
,2,99,750
,2,1905,755
,2,19192,95
,2,19275,760
,2,132,725
,2,100,765
,2,101,770
,2,102,775
,2,19308,780
,2,19185,785
,2,103,790
,2,104,795
,2,105,800
,2,81,535
,2,1902,805
,2,19162,810
,2,106,815
,2,107,820
,2,1901,825
,2,18,85
,2,108,830
,2,50,350
,2,109,835
,2,110,840
,2,111,845
,2,618,850
,2,113,855
,2,1904,860
,2,114,865
,2,115,870
,2,116,875
,2,117,880
,2,118,885
,2,119,890
,2,120,895
,2,1900,900
,2,19003,905
,2,121,910
,2,122,915
,2,123,920
,2,124,925
,2,2200,930
,2,125,935
,2,126,940
,2,127,945
,2,128,950
,2,19042,955
,2,129,960
,2,130,965
,2,19301,725
,2,19076,670
,3,19601,970
,3,19602,560
,3,19603,725
,3,19600,975
,3,19529,980
,4,1,560
,2,19076,425
,2,1484,15745
,3,19539,15740
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,15750
,2,19076,425
,2,1484,13750
,3,19539,13745
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13755
,2,19076,425
,2,1484,14830
,3,19539,14825
,3,19540,560
,6,64,85
,3,19600,14835
,3,19529,13875
,4,1,12630
,4,2,14840
,2,19076,425
,2,1484,14110
,3,19539,14105
,3,19540,560
,6,64,85
,3,19600,14115
,3,19529,13875
,4,1,12630
,4,2,14120
,2,19076,425
,2,1484,14710
,3,19539,14705
,3,19540,560
,6,64,85
,3,19600,14715
,3,19529,13875
,4,1,12630
,4,2,14720
,3,19529,134475
,2,136,1425
,2,142,1430
,2,19076,430
,3,19529,1435
,3,19529,1010
,4,3,560
,0,486,730
,2,19076,425
,2,1484,39575
,3,19539,10025
,3,19540,40410
,6,64,85
,3,19529,675
,4,1,10005
,4,2,10035
,2,19076,425
,3,19539,4825
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,2,1484,15805
,3,19539,15800
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,15810
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,20940
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,2,19076,425
,3,19539,4845
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,20960
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,2,19076,425
,2,1484,15925
,3,19539,15920
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,15930
,2,19076,425
,2,1484,15125
,3,19539,15120
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,15130
,2,19076,425
,3,19539,8575
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,2,1484,13865
,3,19539,13860
,3,19540,560
,6,64,85
,3,19600,13870
,3,19529,13875
,4,1,12630
,4,2,13880
,2,19076,425
,2,1484,15715
,3,19539,15710
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,15720
,2,19076,425
,2,1484,15865
,3,19539,15860
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,15870
,2,19076,425
,2,1484,13990
,3,19539,13985
,3,19540,560
,6,64,85
,3,19600,13995
,3,19529,13875
,4,1,12630
,4,2,14000
,0,486,795
,2,176,1740
,2,19076,425
,2,1484,33445
,3,19539,9995
,3,19540,40400
,6,64,85
,3,19600,40405
,3,19529,133530
,4,1,10005
,4,2,133535
,0,486,800
,2,19076,425
,2,1484,39600
,3,19539,10040
,3,19540,39605
,6,64,85
,3,19529,675
,4,1,10005
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,20910
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,20915
,2,19076,425
,2,1484,15835
,3,19539,15830
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,15840
,0,486,815
,2,19076,425
,2,1484,39620
,3,19539,10060
,3,19540,39625
,6,64,85
,3,19529,675
,4,1,10005
,2,19090,1105
,2,19043,1110
,2,19192,95
,2,19247,1115
,2,19093,1120
,2,98,1125
,2,114,1130
,2,19076,425
,2,1484,1135
,3,19539,1085
,3,19540,440
,6,64,85
,3,19600,1140
,3,19529,1145
,4,1,1095
,4,2,1150
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,20930
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,2,19076,425
,2,1484,14230
,3,19539,14225
,3,19540,560
,6,64,85
,3,19600,14235
,3,19529,13875
,4,1,12630
,4,2,14240
,2,19076,425
,2,1484,14470
,3,19539,14465
,3,19540,560
,6,64,85
,3,19600,14475
,3,19529,13875
,4,1,12630
,4,2,14480
,2,134,1210
,2,19076,425
,2,1484,1215
,3,19539,1185
,3,19540,440
,6,64,85
,3,19529,1220
,4,1,1195
,4,2,1225
,2,19604,1300
,2,19605,1305
,2,19606,1300
,2,19607,1305
,2,19608,1300
,2,19609,1305
,2,19610,1310
,2,19611,1315
,2,19612,1310
,2,19613,1315
,2,19614,1320
,2,19615,1325
,2,19616,1320
,2,19617,1325
,2,19618,1330
,2,19619,1325
,2,19620,1330
,2,19621,1325
,2,19622,1335
,2,19623,1325
,2,19624,1335
,2,19625,1325
,2,19626,1340
,2,19627,1325
,2,19628,1340
,2,19629,1325
,2,19630,1345
,2,19631,1325
,2,19632,1350
,2,19633,1325
,2,19634,1355
,2,19635,1325
,2,19636,1360
,2,19637,1325
,2,19638,1365
,2,19639,1325
,2,19640,1370
,2,19641,1325
,2,19642,1375
,2,19643,1325
,2,19644,1380
,2,19645,1325
,2,19646,1385
,2,19647,1325
,2,19076,425
,2,1484,1390
,3,19539,1280
,3,19540,440
,6,64,85
,3,19529,1395
,4,1,1290
,4,2,1400
,2,19142,39505
,2,19151,39510
,2,19085,39515
,2,19267,39520
,2,19259,39525
,2,19298,39530
,2,19072,39535
,2,19242,39540
,2,383,2870
,2,250,2130
,2,262,2190
,2,325,2535
,2,440,3195
,2,171,1710
,2,442,3205
,2,151,1600
,2,227,2005
,2,200,1870
,2,296,2370
,2,420,3080
,2,468,3355
,2,290,2340
,2,252,2140
,2,257,2165
,2,370,2795
,2,150,1595
,2,19076,430
,3,19529,39545
,2,19076,425
,2,1484,1175
,3,19539,1155
,3,19540,440
,6,64,85
,3,19529,675
,4,1,1165
,4,2,1180
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,20950
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,2,19076,425
,3,19539,4815
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,4835
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8655
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,135,1250
,2,136,1255
,2,137,1260
,2,19076,425
,2,1484,1265
,3,19539,1230
,3,19540,440
,6,64,85
,3,19529,1270
,4,1,1240
,4,2,1275
,0,486,885
,2,19076,425
,2,1484,39590
,3,19539,10015
,3,19540,39595
,6,64,85
,3,19529,675
,4,1,10005
,0,486,890
,2,19076,425
,2,1484,39610
,3,19539,10050
,3,19540,39615
,6,64,85
,3,19529,675
,4,1,10005
,2,133,1065
,2,19076,425
,2,1484,1070
,3,19539,1045
,3,19540,560
,6,64,85
,3,19529,1075
,4,1,1055
,4,2,1080
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,20900
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,2,19076,425
,2,1484,15895
,3,19539,15890
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,15900
,0,486,910
,2,19076,425
,2,1484,39630
,3,19539,10070
,3,19540,39635
,6,64,85
,3,19529,675
,4,1,10005
,2,1547,40140
,2,1548,40130
,2,1549,40145
,2,1550,40105
,2,1551,40100
,2,1552,40135
,2,1553,40115
,2,1554,40120
,2,1556,40110
,2,1557,40125
,2,1558,12835
,2,1559,12870
,2,1049,12905
,2,1560,12940
,2,1561,12975
,2,1562,13010
,2,1071,13045
,2,1563,13080
,2,1564,13115
,2,1565,13150
,2,1566,13185
,2,1567,13220
,2,1568,13255
,2,1569,13290
,2,1570,13325
,2,1571,13360
,2,1572,13395
,2,1573,13430
,2,1574,13465
,2,1575,13500
,2,1576,13535
,2,1577,13570
,2,1578,13605
,2,1266,13640
,2,1579,13675
,2,1580,40150
,2,1581,40155
,2,860,70
,2,831,26245
,2,1583,17325
,2,1584,110
,2,820,15945
,2,1037,40160
,2,1047,32305
,2,1048,32310
,2,1045,32315
,2,1046,32320
,2,1044,32325
,2,19648,21410
,2,19649,120
,2,19650,21420
,2,19651,120
,2,19652,21430
,2,19653,120
,2,1586,21435
,2,1587,21470
,2,1588,21475
,2,1067,21530
,2,1530,21530
,2,1068,21550
,2,1589,40165
,2,19076,32080
,3,19600,40095
,3,19529,38655
,2,19076,425
,2,1484,14590
,3,19539,14585
,3,19540,560
,6,64,85
,3,19600,14595
,3,19529,13875
,4,1,12630
,4,2,14600
,2,19076,425
,2,1484,14350
,3,19539,14345
,3,19540,560
,6,64,85
,3,19600,14355
,3,19529,13875
,4,1,12630
,4,2,14360
,3,19529,590
,4,1,21020
,2,19076,425
,3,19539,8605
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8615
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8665
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,1679,20665
,2,881,20670
,2,1631,18470
,2,251,20715
,2,19076,425
,2,1484,32845
,3,19539,17375
,3,19540,20650
,6,64,85
,3,19600,40300
,3,19529,33930
,4,1,17385
,4,2,17395
,2,19076,425
,2,1484,15775
,3,19539,15770
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,15780
,2,19076,425
,3,19539,4855
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8585
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,500,960
,2,519,375
,2,549,1585
,2,149,1590
,2,633,1595
,2,629,1600
,2,19314,800
,2,741,1605
,2,574,1610
,2,154,1615
,2,734,1620
,2,156,1625
,2,612,935
,2,135,1630
,2,157,1635
,2,158,1640
,2,708,1250
,2,732,1645
,2,132,685
,2,706,1650
,2,731,1655
,2,605,1660
,2,162,1665
,2,601,1670
,2,764,1425
,2,709,1260
,2,164,1675
,2,165,1680
,2,700,85
,2,578,1685
,2,496,865
,2,753,1690
,2,168,1695
,2,169,1700
,2,170,1705
,2,627,1710
,2,140,1335
,2,655,1715
,2,172,1720
,2,480,535
,2,508,495
,2,173,1725
,2,174,1730
,2,557,1735
,2,176,1740
,2,177,1745
,2,614,875
,2,178,1750
,2,179,1755
,2,516,365
,2,180,1760
,2,181,1765
,2,182,1770
,2,183,1775
,2,184,1780
,2,185,1785
,2,186,1790
,2,187,1795
,2,512,380
,2,188,1800
,2,19075,730
,2,189,1805
,2,592,1210
,2,190,1810
,2,558,1815
,2,716,1820
,2,728,1825
,2,193,1830
,2,699,95
,2,520,415
,2,698,880
,2,648,1835
,2,772,85
,2,585,1840
,2,19094,885
,2,195,1845
,2,196,1850
,2,197,1855
,2,198,1860
,2,199,1865
,2,533,1125
,2,631,1870
,2,201,1875
,2,202,1880
,2,203,1885
,2,204,1890
,2,205,1895
,2,584,1900
,2,207,1905
,2,744,1910
,2,510,505
,2,209,1915
,2,210,1920
,2,746,1925
,2,212,1930
,2,213,1935
,2,522,405
,2,214,1940
,2,215,1945
,2,216,1950
,2,754,1955
,2,218,1960
,2,219,1965
,2,499,750
,2,220,1970
,2,147,970
,2,221,1975
,2,569,1980
,2,223,1985
,2,582,1990
,2,225,1995
,2,226,2000
,2,771,85
,2,619,2005
,2,515,360
,2,228,2010
,2,599,2015
,2,230,2020
,2,231,2025
,2,615,945
,2,748,2030
,2,233,2035
,2,747,2040
,2,481,855
,2,235,2045
,2,568,2050
,2,718,2055
,2,237,2060
,2,238,2065
,2,603,2070
,2,567,2075
,2,240,2080
,2,241,2085
,2,242,2090
,2,243,2095
,2,244,2100
,2,245,2105
,2,536,540
,2,246,2110
,2,531,2115
,2,248,2120
,2,19315,910
,2,768,845
,2,19316,890
,2,613,940
,2,503,470
,2,249,2125
,2,622,2130
,2,571,2135
,2,524,395
,2,626,2140
,2,505,480
,2,253,2145
,2,254,2150
,2,729,2155
,2,256,2160
,2,634,2165
,2,258,2170
,2,495,735
,2,749,2175
,2,719,2180
,2,587,2185
,2,623,2190
,2,263,2195
,2,264,2200
,2,265,2205
,2,266,2210
,2,506,485
,2,267,2215
,2,268,2220
,2,526,2225
,2,742,2230
,2,270,2235
,2,271,2240
,2,272,2245
,2,273,2250
,2,274,2255
,2,275,2260
,2,276,2265
,2,277,2270
,2,572,2275
,2,730,2280
,2,280,2285
,2,139,1330
,2,281,2290
,2,282,2295
,2,283,2300
,2,284,2305
,2,739,2310
,2,769,2315
,2,733,2320
,2,545,2325
,2,288,2330
,2,289,2335
,2,639,2340
,2,291,2345
,2,292,2350
,2,293,2355
,2,580,2360
,2,295,2365
,2,636,2370
,2,751,2375
,2,298,2380
,2,299,2385
,2,300,2390
,2,521,410
,2,727,2395
,2,724,2400
,2,737,2405
,2,575,2410
,2,305,2415
,2,589,2420
,2,307,2425
,2,597,2430
,2,595,2435
,2,725,2440
,2,513,385
,2,535,545
,2,311,2445
,2,775,2450
,2,525,2455
,2,312,2460
,2,745,2465
,2,514,390
,2,740,2470
,2,702,2475
,2,315,2480
,2,316,2485
,2,317,2490
,2,594,2495
,2,319,2500
,2,604,2505
,2,586,2510
,2,322,2515
,2,710,2520
,2,721,2525
,2,138,1320
,2,324,2530
,2,624,2535
,2,326,2540
,2,703,2545
,2,559,2550
,2,328,2555
,2,329,2560
,2,112,2565
,2,547,2570
,2,330,2575
,2,331,2580
,2,647,2585
,2,332,2590
,2,479,820
,2,333,2595
,2,509,500
,2,334,2600
,2,335,2605
,2,336,2610
,2,478,840
,2,337,2615
,2,602,2620
,2,621,850
,2,339,2625
,2,497,735
,2,340,2630
,2,532,2635
,2,498,870
,2,342,2640
,2,577,2645
,2,344,2650
,2,345,2655
,2,346,2660
,2,347,2665
,2,494,865
,2,527,2670
,2,348,2675
,2,349,2680
,2,350,2685
,2,351,2690
,2,551,2695
,2,353,2700
,2,750,2705
,2,355,2710
,2,712,2715
,2,357,2720
,2,358,2725
,2,550,2730
,2,360,2735
,2,361,2740
,2,362,2745
,2,363,2750
,2,364,2755
,2,365,2760
,2,166,2765
,2,366,2770
,2,367,2775
,2,556,2780
,2,368,2785
,2,369,2790
,2,632,2795
,2,371,2800
,2,581,2805
,2,701,2810
,2,743,2815
,2,374,2820
,2,375,2825
,2,620,2130
,2,715,2830
,2,377,2835
,2,776,70
,2,378,2840
,2,379,2845
,2,598,2850
,2,381,2855
,2,382,2860
,2,707,1255
,2,645,2865
,2,635,2870
,2,384,2875
,2,523,400
,2,720,2880
,2,386,2885
,2,387,2890
,2,388,2895
,2,528,2900
,2,389,2905
,2,593,2910
,2,391,2915
,2,392,2920
,2,393,2925
,2,394,2930
,2,705,2935
,2,554,2940
,2,19089,795
,2,396,2945
,2,397,2950
,2,507,490
,2,398,2955
,2,501,460
,2,735,2960
,2,600,2965
,2,401,2970
,2,774,2975
,2,548,2980
,2,773,2985
,2,477,895
,2,404,2990
,2,610,770
,2,630,2005
,2,405,2995
,2,406,3000
,2,736,3005
,2,738,3010
,2,714,3015
,2,410,3020
,2,411,3025
,2,534,1130
,2,590,3030
,2,765,1430
,2,413,3035
,2,414,3040
,2,415,3045
,2,591,3050
,2,611,965
,2,416,3055
,2,417,3060
,2,504,475
,2,553,3065
,2,419,3070
,2,713,3075
,2,637,3080
,2,421,3085
,2,763,720
,2,422,3090
,2,423,3095
,2,424,3100
,2,425,3105
,2,426,3110
,2,722,3115
,2,755,3120
,2,717,3125
,2,430,3130
,2,573,3135
,2,482,95
,2,596,3140
,2,642,3145
,2,552,3150
,2,433,3155
,2,723,3160
,2,546,3165
,2,435,3170
,2,141,1340
,2,502,465
,2,436,3175
,2,437,3180
,2,438,3185
,2,518,420
,2,439,3190
,2,625,3195
,2,441,3200
,2,628,3205
,2,656,1715
,2,443,3210
,2,583,3215
,2,445,3220
,2,446,3225
,2,530,3230
,2,711,3235
,2,449,3240
,2,450,3245
,2,560,1065
,2,511,355
,2,570,3250
,2,452,3255
,2,453,3260
,2,770,3265
,2,579,3270
,2,576,3275
,2,555,3280
,2,588,3285
,2,476,350
,2,458,3290
,2,459,3295
,2,517,370
,2,460,3300
,2,461,3305
,2,529,3310
,2,462,3315
,2,463,3320
,2,752,3325
,2,646,3330
,2,19317,815
,2,465,3335
,2,704,3340
,2,466,3345
,2,467,3350
,2,638,3355
,2,469,3360
,2,470,3365
,2,726,3370
,2,19076,70
,3,19601,970
,3,19602,560
,3,19603,970
,3,19600,3375
,3,19529,3380
,4,1,560
,4,2,2875
,4,3,3350
,4,4,1725
,4,5,2925
,4,6,2710
,4,7,2110
,4,8,3095
,4,9,2300
,4,10,1940
,4,11,2100
,4,12,3255
,4,13,2120
,4,14,3045
,4,15,1790
,4,16,2785
,4,17,1760
,4,18,3055
,4,19,3345
,4,20,2800
,4,21,2090
,4,22,1770
,4,23,2700
,4,24,2200
,4,25,2150
,4,26,3085
,4,27,3180
,4,28,2270
,4,29,2560
,4,30,2540
,4,31,2345
,4,32,2745
,4,33,3385
,4,34,3390
,4,35,3395
,4,36,3400
,4,37,3405
,4,38,3410
,4,39,3415
,4,40,3420
,4,41,3425
,4,42,3430
,4,43,3435
,4,44,3440
,4,45,3445
,4,46,3450
,4,47,3455
,4,48,3460
,4,49,3465
,4,50,3470
,4,51,3475
,4,52,3480
,4,53,3485
,4,54,3490
,4,55,3495
,4,56,3500
,4,57,3505
,4,58,3510
,4,59,3515
,4,60,3520
,4,61,3525
,4,62,3530
,4,63,3535
,3,19529,39795
,4,6,129830
,4,7,130475
,4,9,130480
,4,10,130485
,4,24,130490
,4,25,130495
,4,27,130500
,4,28,130505
,4,30,130510
,4,31,130515
,4,36,130110
,4,37,130520
,4,39,129270
,4,40,130525
,4,42,28275
,4,43,130530
,4,48,10030
,4,49,130535
,4,60,4830
,4,61,130540
,4,69,129955
,4,70,130545
,4,72,39145
,4,73,130550
,4,78,4850
,4,79,130555
,4,81,39155
,4,82,130560
,4,96,129685
,4,97,130565
,4,99,130115
,4,100,130570
,4,102,990
,4,103,130575
,4,114,130580
,4,115,130585
,4,123,8580
,4,124,130590
,4,129,130595
,4,130,130600
,4,132,130285
,4,133,130605
,4,135,129650
,4,136,130610
,4,138,130615
,4,139,130620
,4,141,10000
,4,142,130625
,4,147,10045
,4,148,130630
,4,150,1020
,4,151,130635
,4,153,39140
,4,154,130640
,4,156,129535
,4,157,130645
,4,159,10065
,4,160,130650
,4,162,1090
,4,163,130655
,4,165,39135
,4,166,130660
,4,180,90
,4,181,130665
,4,183,130670
,4,184,130675
,4,189,320
,4,190,130680
,4,192,130685
,4,193,130690
,4,195,1190
,4,196,130695
,4,201,1285
,4,202,130700
,4,204,8815
,4,205,130705
,4,210,1160
,4,211,130710
,4,237,39150
,4,238,130715
,4,240,4820
,4,241,130720
,4,246,4840
,4,247,130725
,4,249,8660
,4,250,130730
,4,258,1235
,4,259,130735
,4,270,10020
,4,271,130740
,4,276,10055
,4,277,130745
,4,279,1050
,4,280,130750
,4,285,39130
,4,286,130755
,4,288,128725
,4,289,130760
,4,291,10075
,4,292,130765
,4,300,12595
,4,301,130770
,4,312,130775
,4,313,130780
,4,315,130785
,4,316,130790
,4,318,43185
,4,319,130795
,4,321,8610
,4,322,130800
,4,342,8620
,4,343,130805
,4,351,8670
,4,352,130810
,4,354,17380
,4,355,130815
,4,360,128925
,4,361,130820
,4,366,4860
,4,367,130825
,4,369,8590
,4,370,130830
,4,375,130250
,4,376,130835
,3,19544,670
,3,19546,665
,3,19529,142500
,3,19530,655
,3,19531,660
,3,19533,990
,3,19534,335
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,1000
,3,19539,985
,3,19540,560
,6,64,85
,3,19529,675
,4,1,660
,4,2,1005
,2,828,995
,2,19076,430
,3,19529,130845
,3,19544,1000
,3,19546,995
,3,19529,142500
,3,19544,685
,3,19546,995
,3,19529,142500
,3,19530,1020
,3,19531,1025
,3,19532,1030
,3,19533,1020
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135555
,3,19537,6505
,3,19529,139175
,4,1,44060
,4,2,655
,4,3,43695
,4,4,3630
,4,5,139275
,4,6,44330
,4,7,6515
,4,8,44115
,4,9,44410
,4,10,139405
,4,11,43750
,4,12,43810
,4,13,139765
,4,14,44040
,4,15,139765
,4,16,44330
,4,17,43950
,4,18,44330
,4,19,129575
,4,20,4250
,4,21,139275
,4,22,6600
,4,23,44625
,4,24,129070
,4,25,6910
,4,26,44540
,4,27,44070
,4,28,129205
,4,29,6500
,4,30,43700
,4,31,9350
,4,32,44565
,4,33,44020
,4,34,43695
,4,35,44330
,4,36,44410
,4,37,4230
,4,38,44595
,4,39,655
,4,40,129145
,4,41,43810
,4,42,128735
,4,43,44310
,4,44,44310
,4,45,129355
,4,46,44310
,4,47,990
,4,48,139275
,4,49,44020
,4,50,44020
,4,51,139195
,4,52,44020
,4,53,44020
,4,54,44020
,4,55,139765
,4,56,44040
,4,57,139765
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,4,11,275
,4,12,280
,4,1,560
,3,19544,425
,3,19546,535
,3,19529,142500
,3,19530,1050
,3,19531,1055
,3,19533,1050
,3,19534,1060
,3,19535,340
,6,1,85
,3,19536,134980
,3,19529,139175
,4,7,134475
,4,8,44370
,4,9,139185
,3,19536,134985
,3,19529,139175
,4,7,134475
,4,8,44370
,4,9,335
,2,19076,425
,3,19539,6945
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,828,895
,2,71,3165
,2,72,2570
,2,402,2980
,2,472,3650
,2,473,3655
,2,251,7480
,2,148,1585
,2,562,7400
,2,563,7420
,2,294,7440
,2,564,7460
,2,359,2730
,2,352,2695
,2,432,3150
,2,418,3065
,2,395,2940
,2,456,3280
,2,278,2780
,2,175,1735
,2,191,1815
,2,327,2550
,2,19076,430
,3,19529,133250
,3,19544,425
,3,19545,133335
,3,19529,142500
,3,19544,1070
,3,19546,895
,4,2,39655
,3,19547,133255
,3,19545,133240
,3,19529,142500
,3,19530,1090
,3,19531,1095
,3,19532,1100
,3,19533,1090
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135530
,3,19537,6485
,3,19529,139175
,4,1,44060
,4,2,44145
,4,3,4195
,4,4,44515
,4,5,43960
,4,6,139750
,4,7,44040
,4,8,139750
,3,19529,4430
,4,5,270
,4,6,4500
,3,19529,134475
,3,19529,134475
,3,19529,134475
,3,19529,134475
,2,19076,425
,3,19539,5610
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,5615
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,828,820
,2,71,2670
,2,72,2900
,2,73,3310
,2,447,3230
,2,247,2115
,2,341,2635
,2,19076,430
,3,19529,133320
,4,1,1115
,4,2,1110
,4,3,1120
,4,4,1105
,4,5,95
,3,19544,425
,3,19545,133330
,3,19529,142500
,3,19544,1135
,3,19546,820
,3,19529,142500
,3,19530,1160
,3,19531,1165
,3,19532,1170
,3,19533,1160
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135425
,3,19537,6455
,3,19529,139175
,4,1,44060
,4,2,4175
,4,3,44515
,4,4,43960
,4,5,4175
,4,6,44595
,4,7,139715
,4,8,44040
,4,9,139715
,3,19529,4430
,4,5,270
,2,828,855
,2,71,2455
,2,73,2225
,2,19076,430
,3,19529,133295
,3,19544,1175
,3,19546,855
,3,19529,142500
,3,19530,1190
,3,19531,1195
,3,19532,1200
,3,19533,1190
,3,19534,1205
,3,19535,340
,6,1,85
,3,19536,135660
,3,19537,8465
,3,19529,139175
,4,1,44060
,4,2,44145
,4,3,655
,4,4,4250
,4,5,44595
,4,6,43960
,4,7,139805
,4,8,44040
,4,9,139805
,3,19529,4430
,4,5,270
,4,6,4500
,3,19536,134990
,3,19529,139175
,4,1,134475
,4,2,1205
,4,3,1205
,4,4,44020
,2,19076,425
,3,19539,7890
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,828,840
,2,73,2050
,2,71,2075
,2,222,1980
,2,451,3250
,2,251,2135
,2,278,2275
,2,175,3135
,2,153,1610
,2,304,2410
,2,343,2645
,2,455,3270
,2,294,2360
,2,372,2805
,2,224,1990
,2,444,3215
,2,206,1900
,2,194,1840
,2,321,2510
,2,261,2185
,2,457,3285
,2,306,2420
,2,412,3030
,2,390,2910
,2,318,2495
,2,309,2435
,2,431,3140
,2,308,2430
,2,380,2850
,2,229,2015
,2,400,2965
,2,163,1670
,2,338,2620
,2,239,2070
,2,320,2505
,2,161,1660
,2,19076,430
,3,19529,128625
,4,1,340
,3,19544,425
,3,19545,133455
,3,19529,142500
,3,19544,1215
,3,19546,840
,3,19545,133435
,3,19529,142500
,3,19530,1235
,3,19531,1240
,3,19532,1245
,3,19533,1235
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135915
,3,19537,11730
,3,19529,139175
,4,1,44060
,4,2,11390
,4,3,139275
,4,4,11740
,4,5,44115
,4,6,4890
,4,7,44670
,4,8,139950
,4,9,44040
,4,10,139950
,4,11,44145
,4,12,44020
,4,13,44020
,4,14,44145
,4,15,11405
,4,16,139275
,4,17,10475
,4,18,139275
,4,19,43990
,4,20,10470
,4,21,139275
,4,22,11435
,4,23,44595
,4,24,44070
,4,25,10470
,4,26,139350
,4,27,10475
,4,28,139350
,4,29,4155
,4,30,44565
,4,31,11435
,4,32,44595
,4,33,4195
,4,34,44595
,4,35,44020
,4,36,4195
,4,37,44595
,4,38,4195
,4,39,44595
,4,40,43695
,4,41,4195
,4,42,44595
,4,43,43695
,4,44,4195
,4,45,44595
,4,46,43695
,4,47,4195
,4,48,44595
,4,49,43695
,4,50,4195
,4,51,44595
,4,52,43695
,4,53,4195
,4,54,44595
,4,55,44070
,4,56,4195
,4,57,44595
,4,58,44020
,4,59,44205
,4,60,4195
,4,61,44595
,4,62,44020
,4,63,44205
,4,64,4195
,4,65,44595
,4,66,44020
,4,67,43810
,4,68,10760
,4,69,44490
,4,70,10740
,4,71,44625
,4,72,10770
,4,73,44565
,4,74,44020
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10255
,4,12,11745
,4,13,11750
,4,14,285
,4,15,11755
,4,16,11760
,2,19076,425
,3,19539,10865
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10855
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10870
,3,19540,440
,6,64,11715
,3,19529,6280
,4,1,11720
,2,828,880
,2,71,2520
,2,448,3235
,2,356,2715
,2,72,3075
,2,409,3015
,2,376,2830
,2,73,1820
,2,429,3125
,2,236,2055
,2,260,2180
,2,385,2880
,2,323,2525
,2,427,3115
,2,434,3160
,2,302,2400
,2,310,2440
,2,471,3370
,2,301,2395
,2,192,1825
,2,255,2155
,2,279,2280
,2,160,1655
,2,159,1645
,2,287,2320
,2,155,1620
,2,399,2960
,2,407,3005
,2,303,2405
,2,408,3010
,2,285,2310
,2,314,2470
,2,152,1605
,2,269,2230
,2,373,2815
,2,208,1910
,2,313,2465
,2,211,1925
,2,234,2040
,2,232,2030
,2,259,2175
,2,167,1690
,2,354,2705
,2,297,2375
,2,464,3325
,2,217,1955
,2,428,3120
,2,19076,430
,3,19529,133710
,4,1,95
,4,2,95
,4,3,95
,4,4,95
,4,5,95
,4,6,95
,4,7,95
,4,8,95
,4,9,95
,3,19544,425
,3,19545,133715
,3,19529,142500
,3,19544,1265
,3,19546,880
,3,19529,142500
,3,19530,1285
,3,19531,1290
,3,19532,1295
,3,19533,1285
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135960
,3,19537,12410
,3,19529,139175
,4,1,44060
,4,2,12040
,4,3,139990
,4,4,139995
,4,5,44040
,4,6,139995
,4,7,12255
,4,8,139275
,4,9,12420
,4,10,44115
,3,19529,4430
,4,5,270
,4,6,4500
,0,44,110
,2,19076,425
,3,19539,12355
,3,19540,40425
,6,64,85
,3,19529,675
,4,1,4220
,0,44,110
,2,19076,425
,3,19539,12365
,3,19540,40425
,6,64,85
,3,19529,675
,4,1,4220
,0,44,110
,2,19076,425
,3,19539,12375
,3,19540,40425
,6,64,85
,3,19529,675
,4,1,4220
,0,44,110
,2,19076,425
,3,19539,12385
,3,19540,40425
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12170
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,0,44,110
,2,19076,425
,3,19539,12395
,3,19540,40425
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12180
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12190
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12200
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12500
,3,19540,40430
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12500
,3,19540,40435
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12500
,3,19540,40440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12500
,3,19540,40445
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12500
,3,19540,40450
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12500
,3,19540,40455
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12500
,3,19540,40460
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12500
,3,19540,40465
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12500
,3,19540,40470
,6,64,85
,3,19529,675
,4,1,4220
,2,842,128780
,2,132,110
,2,19148,110
,2,19299,110
,2,828,845
,2,454,3265
,2,403,2985
,2,71,2975
,2,286,2315
,2,19076,430
,3,19529,130860
,4,1,40340
,3,19544,425
,3,19545,133760
,3,19529,142500
,3,19544,1390
,3,19546,845
,3,19545,130855
,3,19529,142500
,3,19530,1410
,3,19531,660
,3,19533,1410
,3,19534,335
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,430
,3,19539,1405
,3,19540,560
,6,64,85
,3,19529,675
,4,1,660
,4,2,1420
,3,19544,430
,3,19546,1415
,3,19529,142500
,2,19076,425
,3,19538,11995
,3,19539,11810
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,11815
,2,19076,425
,3,19538,12005
,3,19539,11915
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,11925
,3,19544,430
,3,19546,1415
,3,19545,133725
,3,19529,142500
,3,19530,1445
,3,19531,660
,3,19533,1445
,3,19534,1450
,3,19535,340
,6,1,1455
,3,19536,134680
,3,19529,139175
,4,1,1450
,4,2,44020
,4,3,44020
,4,4,139195
,3,19544,430
,3,19546,1460
,4,2,130875
,3,19547,130870
,3,19529,142500
,2,19076,425
,2,1484,430
,3,19539,1440
,3,19540,560
,6,64,85
,3,19529,675
,4,1,660
,4,2,1455
,3,19529,590
,4,1,595
,4,2,595
,3,19529,590
,4,1,595
,4,2,595
,3,19530,655
,3,19531,660
,3,19533,1480
,3,19534,335
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,1490
,3,19539,1475
,3,19540,560
,6,64,85
,3,19529,675
,4,1,660
,4,2,1495
,2,828,1485
,2,19076,430
,3,19529,130900
,3,19544,1490
,3,19546,1485
,3,19529,142500
,3,19530,655
,3,19531,1505
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134655
,3,19529,139175
,4,1,44020
,2,19076,425
,2,1484,1515
,3,19539,1500
,3,19540,560
,6,64,85
,3,19529,675
,4,1,1505
,4,2,1520
,2,828,1510
,2,19076,430
,3,19529,130910
,3,19544,1515
,3,19546,1510
,3,19529,142500
,3,19530,655
,3,19531,1530
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134660
,3,19529,139175
,4,1,44020
,2,19076,425
,2,1484,1540
,3,19539,1525
,3,19540,560
,6,64,85
,3,19529,675
,4,1,1530
,4,2,1545
,2,828,1535
,2,19076,430
,3,19529,130920
,3,19544,1540
,3,19546,1535
,3,19529,142500
,4,1,1555
,4,1,845
,3,19530,655
,3,19531,660
,3,19533,1570
,3,19534,335
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,70
,3,19539,1565
,3,19540,560
,6,64,85
,3,19529,675
,4,1,660
,4,2,1580
,3,19546,1575
,3,19529,142500
,2,19076,425
,3,19538,7115
,3,19539,6765
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,4225
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4235
,2,19076,425
,3,19539,8945
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8905
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11195
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,8355
,3,19539,7605
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,4485
,3,19539,4345
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11115
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,9920
,3,19539,9285
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,10725
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11855
,3,19540,440
,6,64,85
,3,19529,675
,4,1,11865
,2,19076,425
,3,19538,8765
,3,19539,8635
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11095
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,1070
,3,19599,39650
,3,19529,39655
,2,19076,425
,3,19539,11085
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8030
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,4775
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4785
,2,19076,425
,3,19539,7990
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,6625
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9690
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,3640
,3,19599,39495
,3,19529,3645
,2,19076,425
,3,19539,11315
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11790
,3,19540,440
,6,64,85
,3,19529,675
,4,1,11800
,2,19076,425
,3,19539,9630
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,6330
,3,19539,5245
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8875
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,8885
,1,0,12640
,1,1,12755
,1,2,12835
,1,3,12870
,1,4,12905
,1,5,12940
,1,6,12975
,1,7,13010
,1,8,13045
,1,9,13080
,1,10,13115
,1,11,13150
,1,12,13185
,1,13,13220
,1,14,13255
,1,15,13290
,1,16,13325
,1,17,13360
,1,18,13395
,1,19,13430
,1,20,13465
,1,21,13500
,1,22,13535
,1,23,13570
,1,24,13605
,1,25,13640
,1,26,13675
,1,27,695
,1,29,775
,1,34,790
,1,39,705
,1,44,830
,1,49,925
,1,54,835
,1,59,920
,1,64,710
,1,69,700
,1,74,765
,1,91,780
,1,92,690
,1,93,955
,1,94,740
,1,95,810
,1,96,785
,1,97,905
,1,98,760
,1,99,16100
,1,100,16355
,1,101,16385
,1,102,16410
,1,103,16430
,1,104,16455
,1,105,16235
,1,106,16270
,1,107,15965
,1,108,16335
,1,109,18465
,1,110,18505
,1,111,18530
,1,112,18555
,1,113,18580
,1,114,18605
,1,115,18630
,1,116,18655
,1,117,18680
,1,118,18705
,1,119,18730
,1,120,18755
,1,121,18780
,1,122,18805
,1,123,18830
,1,124,18855
,1,125,18880
,1,126,18905
,1,127,18930
,1,128,18955
,1,129,18980
,1,130,19000
,1,131,19025
,1,132,18470
,1,133,18475
,1,134,19120
,1,135,24765
,1,136,24800
,1,137,24835
,1,138,24870
,1,139,24905
,1,140,24940
,1,141,24975
,1,142,25010
,1,143,25045
,1,144,25080
,1,145,25115
,1,146,25150
,1,147,25185
,1,148,25220
,1,149,25255
,1,150,25290
,1,151,25325
,1,152,25360
,1,153,25395
,1,154,25430
,1,155,25465
,1,156,25500
,1,157,25535
,1,158,25570
,1,159,25605
,1,160,25685
,1,161,25705
,1,162,25730
,1,163,29225
,1,164,29775
,1,165,29800
,1,166,29825
,1,167,29850
,1,168,29870
,1,169,29890
,1,170,29915
,1,171,29940
,1,172,29965
,2,19076,3640
,3,19599,39640
,3,19529,3645
,2,19076,425
,3,19539,6655
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6665
,2,19076,425
,3,19539,3715
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3395
,2,19076,425
,3,19539,10745
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,7180
,3,19539,6915
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9770
,3,19540,440
,6,64,85
,3,19529,675
,4,1,9780
,2,19076,425
,3,19539,9425
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8050
,3,19540,440
,6,64,85
,3,19529,675
,4,1,8060
,2,19076,425
,3,19538,9925
,3,19539,9445
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,3940
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3460
,2,19076,425
,3,19539,5675
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5685
,2,19076,425
,3,19538,4460
,3,19539,4015
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3485
,2,19076,425
,3,19538,6360
,3,19539,5335
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,6635
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,7105
,3,19539,6725
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,3910
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3450
,2,19076,425
,3,19539,9640
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9415
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,10300
,3,19540,440
,6,64,85
,3,19529,675
,4,1,10310
,2,19076,425
,3,19539,12230
,3,19540,440
,6,64,85
,3,19529,675
,4,1,12240
,2,19076,425
,3,19538,7185
,3,19539,6925
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10940
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11055
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,5620
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5630
,2,19202,85
,2,491,39565
,2,1404,39570
,2,19654,10265
,2,19655,10275
,2,19076,39575
,3,19529,39580
,2,19076,425
,3,19538,8425
,3,19539,7830
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8545
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9600
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,4285
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,6595
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6605
,2,19076,425
,3,19539,6645
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8925
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,9950
,3,19539,9750
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,2,1484,8460
,3,19539,8040
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12075
,3,19540,440
,6,64,85
,3,19529,675
,4,1,12085
,2,19076,425
,3,19539,5640
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8595
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,8420
,3,19539,7810
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,7820
,2,19076,425
,3,19539,9730
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11225
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,6575
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6585
,2,19076,425
,3,19539,9525
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11245
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6305
,3,19539,5125
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5135
,2,19076,425
,3,19539,4170
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4180
,2,19076,425
,3,19539,3835
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3425
,2,19076,425
,3,19538,4490
,3,19539,4355
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,10360
,3,19540,440
,6,64,85
,3,19529,675
,4,1,10370
,2,19076,425
,3,19538,11725
,3,19539,11335
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10735
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,2,1484,9940
,3,19539,9555
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8495
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11875
,3,19540,440
,6,64,85
,3,19529,675
,4,1,11885
,2,19076,425
,3,19538,8330
,3,19539,7540
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,7550
,2,19076,425
,3,19539,10705
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,8410
,3,19539,7770
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,7780
,2,19076,425
,3,19539,11825
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,6755
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8915
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10775
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,7970
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9365
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9720
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11265
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,9915
,3,19539,9265
,3,19540,440
,6,64,85
,3,19529,675
,4,1,9275
,2,19076,425
,3,19539,11255
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9790
,3,19540,440
,6,64,85
,3,19529,675
,4,1,9800
,2,19076,425
,3,19539,7535
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10955
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9395
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,10825
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8010
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,7530
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8565
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12210
,3,19540,440
,6,64,85
,3,19529,675
,4,1,12220
,2,19076,425
,3,19539,4000
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3480
,2,19076,425
,3,19539,6675
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,3850
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3430
,2,19076,425
,3,19539,4795
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4805
,2,19076,425
,3,19539,3790
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3410
,2,19076,425
,3,19538,6430
,3,19539,5590
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,3880
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3440
,2,19076,425
,3,19539,5065
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5075
,2,19076,425
,3,19539,8825
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,8340
,3,19539,7580
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8865
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9810
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,4060
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3500
,2,19076,425
,3,19539,11065
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8675
,3,19540,440
,6,64,85
,3,19529,675
,4,1,8685
,2,19076,425
,3,19539,8955
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9660
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11275
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10965
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,8435
,3,19539,7850
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8835
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6345
,3,19539,5285
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,4045
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3495
,2,19076,425
,3,19539,9570
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9710
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,4325
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,8455
,3,19539,7900
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,5540
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11205
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,8760
,3,19539,8505
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,7090
,3,19539,6545
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9325
,3,19540,440
,6,64,85
,3,19529,675
,4,1,9335
,2,19076,425
,3,19539,5025
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5035
,2,19076,425
,3,19539,5175
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5185
,2,19076,425
,3,19539,4335
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9620
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,4135
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3515
,2,19076,425
,3,19538,8345
,3,19539,7585
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,7590
,2,19076,425
,3,19539,11075
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9700
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,4315
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9315
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,3820
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3420
,2,19076,425
,3,19539,8625
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11175
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,12335
,3,19539,12065
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11105
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,3640
,3,19529,3645
,2,19076,425
,3,19539,11845
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,7140
,3,19539,6815
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9005
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,4470
,3,19539,4075
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3530
,2,19076,425
,3,19538,10425
,3,19539,10320
,3,19540,440
,6,64,85
,3,19529,675
,4,1,10330
,2,19076,425
,3,19539,9305
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,8390
,3,19539,7715
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,7720
,2,19076,425
,3,19538,7195
,3,19539,6955
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6965
,2,19076,425
,3,19539,8975
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11295
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9225
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,5215
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,6340
,3,19539,5265
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5275
,2,19076,425
,3,19539,11045
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11015
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11155
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,8360
,3,19539,7615
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,4190
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4200
,2,19076,425
,3,19538,8445
,3,19539,7870
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9355
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,7950
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,7930
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11025
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,5395
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5405
,1,1,43560
,1,2,43560
,2,19076,3640
,3,19599,133970
,3,19529,3645
,2,19076,425
,3,19539,5535
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8535
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11235
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11185
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,1,0,10485
,1,1,10490
,1,2,10495
,1,3,10500
,1,4,10505
,1,5,10510
,1,6,10515
,2,19076,1070
,3,19599,10480
,3,19529,34480
,2,19076,425
,3,19539,9435
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12155
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,4295
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4305
,2,19076,425
,3,19539,7920
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9015
,3,19540,440
,6,64,85
,3,19529,675
,4,1,9025
,2,19076,425
,3,19539,8020
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,8430
,3,19539,7840
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9610
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,10890
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10985
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,5145
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8845
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,3760
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3525
,1,0,10530
,1,1,10535
,1,2,10540
,1,3,10545
,1,4,10550
,1,5,10555
,1,6,10560
,1,7,10565
,1,8,10570
,1,9,10575
,1,10,10580
,1,11,10585
,2,19076,1070
,3,19599,10525
,3,19529,34480
,2,19076,425
,3,19538,7190
,3,19539,6935
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9505
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,3745
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3520
,2,19076,425
,2,1484,9175
,3,19539,8795
,3,19540,440
,6,64,85
,3,19529,675
,4,1,8805
,4,2,8820
,2,19076,425
,3,19539,6690
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,2,1484,9935
,3,19539,9490
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9255
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,9955
,3,19539,9830
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,7695
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,10815
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,5295
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5305
,2,19076,425
,3,19539,10845
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9515
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,2,1484,9930
,3,19539,9455
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8000
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10715
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9760
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,6435
,3,19539,5600
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,5225
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,8365
,3,19539,7645
,3,19540,440
,6,64,8370
,3,19529,6280
,4,1,8375
,2,19076,425
,3,19539,11325
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,12330
,3,19539,12035
,3,19540,440
,6,64,85
,3,19529,675
,4,1,12045
,2,19076,425
,3,19539,11355
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9295
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,5565
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,7100
,3,19539,6715
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,6440
,3,19539,5665
,3,19540,440
,6,64,85
,3,19529,675
,4,1,1025
,2,19076,425
,3,19539,6615
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9385
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,7150
,3,19539,6835
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,6845
,2,19076,425
,3,19538,4465
,3,19539,4030
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3490
,2,19076,425
,3,19539,11285
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,3775
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3405
,2,19076,425
,3,19539,10905
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6385
,3,19539,5435
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,10785
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,7145
,3,19539,6825
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11365
,3,19540,440
,6,64,85
,3,19529,675
,4,1,11375
,2,19076,425
,2,1484,3570
,3,19539,3550
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3560
,4,2,3575
,2,19076,425
,3,19538,4475
,3,19539,4090
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3535
,2,19076,425
,3,19538,7130
,3,19539,6795
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6805
,2,19076,425
,3,19538,9945
,3,19539,9740
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,10805
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,2,1484,3640
,3,19539,3625
,3,19540,560
,6,64,85
,3,19529,675
,4,1,3635
,4,2,3645
,2,19076,425
,3,19539,12055
,3,19540,440
,6,64,85
,3,19529,675
,4,1,1290
,2,19076,425
,3,19539,5515
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5525
,2,19076,425
,3,19538,7175
,3,19539,6905
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,3925
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3455
,2,19076,425
,3,19539,4245
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4255
,2,19076,425
,3,19539,8935
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,4455
,3,19539,3985
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3475
,2,19076,425
,3,19538,8395
,3,19539,7730
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,7740
,2,659,95
,2,660,70
,2,19076,430
,3,19529,39645
,2,19076,425
,3,19539,11215
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,7665
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,12115
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,10930
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6320
,3,19539,5195
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9670
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,5045
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5055
,2,19076,425
,3,19539,7960
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8515
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8525
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,3640
,3,19599,39555
,3,19529,3645
,2,19076,425
,3,19539,8965
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,3685
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3385
,2,19076,425
,3,19539,10975
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9470
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,6555
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9590
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,6420
,3,19539,5570
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,4480
,3,19539,4265
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4275
,2,19076,425
,3,19539,7910
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10755
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9535
,3,19540,440
,6,64,85
,3,19529,675
,4,1,9545
,2,19076,425
,3,19539,3730
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3400
,2,19076,425
,3,19539,5085
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5095
,1,0,10645
,1,1,10650
,1,2,10655
,1,3,10660
,1,4,10550
,1,5,10665
,1,6,10670
,1,7,10675
,1,8,10680
,1,9,10685
,1,10,10690
,1,11,10695
,2,19076,1070
,3,19599,10640
,3,19529,34480
,2,19076,425
,3,19538,7165
,3,19539,6885
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,10435
,3,19539,10340
,3,19540,440
,6,64,85
,3,19529,675
,4,1,10350
,2,19076,425
,2,1484,6310
,3,19539,5155
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5165
,4,2,6315
,2,19076,425
,3,19538,6335
,3,19539,5255
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11125
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,11135
,2,19076,425
,3,19539,7980
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,6300
,3,19539,5105
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,12350
,3,19539,12165
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,7095
,3,19539,6695
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,6705
,2,19076,425
,3,19538,12345
,3,19539,12145
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,2,1484,3610
,3,19539,3600
,3,19540,560
,6,64,85
,3,19529,675
,4,1,660
,4,2,3615
,2,19076,425
,3,19539,4210
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,10795
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11145
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11165
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10920
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9235
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,5545
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5555
,2,19076,425
,3,19538,8450
,3,19539,7880
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,5205
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,6325
,3,19539,5235
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,3895
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3445
,2,19076,3640
,3,19599,39500
,3,19529,3645
,2,19076,425
,3,19539,3955
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3465
,2,19076,425
,3,19539,4865
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4875
,2,19076,425
,3,19538,7160
,3,19539,6875
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,4150
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4160
,2,19076,425
,3,19539,10915
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,8985
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,4105
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3505
,2,19076,425
,3,19539,9680
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,3805
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3415
,2,19076,425
,3,19539,7685
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9245
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11935
,3,19540,440
,6,64,85
,3,19529,675
,4,1,11945
,2,19076,425
,3,19539,10995
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11345
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10945
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11835
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,8350
,3,19539,7600
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,7940
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,430
,3,19529,31135
,2,19076,425
,3,19538,7155
,3,19539,6855
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,6865
,2,19076,425
,3,19539,8645
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11005
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,6685
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,11895
,3,19540,440
,6,64,85
,3,19529,675
,4,1,11905
,2,19076,425
,3,19538,7120
,3,19539,6775
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,4120
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3510
,2,19076,425
,3,19539,10765
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8555
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8855
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9375
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8895
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,8400
,3,19539,7750
,3,19540,440
,6,64,85
,3,19529,675
,4,1,7760
,2,19076,425
,3,19538,8415
,3,19539,7790
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,7800
,2,19076,425
,3,19539,6565
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9820
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,6425
,3,19539,5580
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10895
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,10835
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19538,7110
,3,19539,6735
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6745
,2,19076,425
,3,19538,8335
,3,19539,7560
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,7570
,2,19076,425
,3,19539,3865
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3435
,2,19076,425
,3,19539,12095
,3,19540,440
,6,64,85
,3,19529,675
,4,1,12105
,2,19076,425
,3,19538,12340
,3,19539,12125
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,12135
,2,19076,425
,3,19538,8385
,3,19539,7705
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,1,1,655
,1,2,655
,2,19076,1070
,3,19599,7515
,3,19529,34480
,2,19076,425
,3,19538,7170
,3,19539,6895
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,8440
,3,19539,7860
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9480
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,7625
,3,19540,440
,6,64,85
,3,19529,675
,4,1,7635
,2,19076,425
,3,19539,5115
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,7675
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,5575
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19539,9650
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9345
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11305
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,430
,3,19600,39560
,3,19529,455
,2,19076,425
,3,19539,9405
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,1,0,10600
,1,1,10605
,1,2,10610
,1,3,10615
,1,4,10620
,1,5,10625
,1,6,10630
,2,19076,1070
,3,19599,10595
,3,19529,34480
,2,19076,425
,3,19538,4450
,3,19539,3970
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3470
,2,19076,425
,3,19539,3700
,3,19540,440
,6,64,85
,3,19529,675
,4,1,3390
,2,19076,425
,3,19539,8995
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,2,19076,425
,3,19538,7125
,3,19539,6785
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,9580
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,11035
,3,19540,440
,6,64,85
,3,19529,6280
,4,1,4220
,3,19529,39795
,4,12,5730
,4,13,130925
,4,18,5825
,4,19,130930
,4,21,7000
,4,22,130935
,4,24,4230
,4,25,130940
,4,27,9110
,4,28,130945
,4,33,9090
,4,34,130950
,4,42,130955
,4,43,130960
,4,45,11605
,4,46,130965
,4,54,8110
,4,55,130970
,4,57,4350
,4,58,130975
,4,60,11570
,4,61,130980
,4,63,9290
,4,64,130985
,4,69,8720
,4,70,130990
,4,72,10730
,4,73,130995
,4,78,11860
,4,79,131000
,4,81,8640
,4,82,131005
,4,84,11440
,4,85,131010
,4,90,11560
,4,91,131015
,4,99,990
,4,100,131020
,4,102,11430
,4,103,131025
,4,105,11555
,4,106,131030
,4,108,8265
,4,109,131035
,4,114,4780
,4,115,131040
,4,120,8245
,4,121,131045
,4,123,11965
,4,124,131050
,4,132,11445
,4,133,131055
,4,138,6630
,4,139,131060
,4,147,9695
,4,148,131065
,4,150,11400
,4,151,131070
,4,156,8130
,4,157,131075
,4,162,5710
,4,163,131080
,4,165,11665
,4,166,131085
,4,171,11795
,4,172,131090
,4,177,9635
,4,178,131095
,4,189,5250
,4,190,131100
,4,201,9080
,4,202,131105
,4,207,12195
,4,208,131110
,4,210,10385
,4,211,131115
,4,219,6660
,4,220,131120
,4,225,4390
,4,226,131125
,4,228,5770
,4,229,131130
,4,234,3720
,4,235,131135
,4,237,10750
,4,238,131140
,4,243,7040
,4,244,131145
,4,255,9775
,4,256,131150
,4,261,9430
,4,262,131155
,4,270,8730
,4,271,131160
,4,273,8055
,4,274,131165
,4,288,9450
,4,289,131170
,4,291,5810
,4,292,131175
,4,297,3945
,4,298,131180
,4,300,5680
,4,301,131185
,4,306,4020
,4,307,131190
,4,309,5340
,4,310,131195
,4,312,6640
,4,313,131200
,4,318,6730
,4,319,131205
,4,327,3915
,4,328,131210
,4,333,9645
,4,334,131215
,4,348,5790
,4,349,131220
,4,351,9420
,4,352,131225
,4,369,129090
,4,370,131230
,4,372,10305
,4,373,131235
,4,381,8200
,4,382,131240
,4,399,12235
,4,400,131245
,4,423,7045
,4,424,131250
,4,426,11480
,4,427,131255
,4,429,11540
,4,430,131260
,4,465,5625
,4,466,131265
,4,468,11395
,4,469,131270
,4,471,5830
,4,472,131275
,4,474,11390
,4,475,131280
,4,477,9870
,4,478,131285
,4,480,12275
,4,481,131290
,4,498,8165
,4,499,131295
,4,501,131300
,4,502,131305
,4,510,8550
,4,511,131310
,4,519,9605
,4,520,131315
,4,522,4290
,4,523,131320
,4,528,6600
,4,529,131325
,4,531,6650
,4,532,131330
,4,537,5895
,4,538,131335
,4,540,9100
,4,541,131340
,4,543,9755
,4,544,131345
,4,546,8045
,4,547,131350
,4,549,12080
,4,550,131355
,4,555,5645
,4,556,131360
,4,558,8600
,4,559,131365
,4,570,8160
,4,571,131370
,4,582,9735
,4,583,131375
,4,594,11620
,4,595,131380
,4,603,5780
,4,604,131385
,4,606,6580
,4,607,131390
,4,609,9530
,4,610,131395
,4,612,11630
,4,613,131400
,4,621,5130
,4,622,131405
,4,624,4175
,4,625,131410
,4,642,5840
,4,643,131415
,4,645,3840
,4,646,131420
,4,648,4360
,4,649,131425
,4,651,10365
,4,652,131430
,4,654,9850
,4,655,131435
,4,657,11670
,4,658,131440
,4,660,10740
,4,661,131445
,4,672,9560
,4,673,131450
,4,687,5725
,4,688,131455
,4,705,8500
,4,706,131460
,4,729,1570
,4,730,131465
,4,738,11880
,4,739,131470
,4,741,8085
,4,742,131475
,4,744,10710
,4,745,131480
,4,756,8150
,4,757,131485
,4,759,11830
,4,760,131490
,4,765,6760
,4,766,131495
,4,768,12270
,4,769,131500
,4,774,9040
,4,775,131505
,4,777,5805
,4,778,131510
,4,780,10780
,4,781,131515
,4,783,8235
,4,784,131520
,4,786,9370
,4,787,131525
,4,804,9725
,4,805,131530
,4,810,8735
,4,811,131535
,4,813,11640
,4,814,131540
,4,816,9270
,4,817,131545
,4,822,11635
,4,823,131550
,4,825,4395
,4,826,131555
,4,840,9795
,4,841,131560
,4,843,8080
,4,844,131565
,4,864,11490
,4,865,131570
,4,876,9400
,4,877,131575
,4,885,10830
,4,886,131580
,4,894,8255
,4,895,131585
,4,906,8075
,4,907,131590
,4,918,8570
,4,919,131595
,4,927,12215
,4,928,131600
,4,945,4005
,4,946,131605
,4,948,6680
,4,949,131610
,4,957,3855
,4,958,131615
,4,960,4800
,4,961,131620
,4,963,5910
,4,964,131625
,4,996,3795
,4,997,131630
,4,999,5885
,4,1000,131635
,4,1017,3885
,4,1018,131640
,4,1026,131645
,4,1027,131650
,4,1029,12255
,4,1030,131655
,4,1032,131660
,4,1033,131665
,4,1044,8725
,4,1045,131670
,4,1059,5745
,4,1060,131675
,4,1062,5070
,4,1063,131680
,4,1065,9055
,4,1066,131685
,4,1068,8095
,4,1069,131690
,4,1071,5850
,4,1072,131695
,4,1086,9075
,4,1087,131700
,4,1092,5755
,4,1093,131705
,4,1095,9815
,4,1096,131710
,4,1107,4065
,4,1108,131715
,4,1110,11545
,4,1111,131720
,4,1134,8680
,4,1135,131725
,4,1140,9115
,4,1141,131730
,4,1143,9665
,4,1144,131735
,4,1146,5705
,4,1147,131740
,4,1149,11645
,4,1150,131745
,4,1158,11495
,4,1159,131750
,4,1179,8175
,4,1180,131755
,4,1182,9060
,4,1183,131760
,4,1185,5290
,4,1186,131765
,4,1188,4050
,4,1189,131770
,4,1191,9575
,4,1192,131775
,4,1194,9715
,4,1195,131780
,4,1197,5760
,4,1198,131785
,4,1200,9845
,4,1201,131790
,4,1203,4330
,4,1204,131795
,4,1209,7905
,4,1210,131800
,4,1215,5860
,4,1216,131805
,4,1218,11610
,4,1219,131810
,4,1221,8510
,4,1222,131815
,4,1230,6550
,4,1231,131820
,4,1236,9330
,4,1237,131825
,4,1242,5030
,4,1243,131830
,4,1254,5180
,4,1255,131835
,4,1263,4340
,4,1264,131840
,4,1299,9625
,4,1300,131845
,4,1302,4140
,4,1303,131850
,4,1305,8100
,4,1306,131855
,4,1317,11550
,4,1318,131860
,4,1332,9705
,4,1333,131865
,4,1335,12185
,4,1336,131870
,4,1341,4320
,4,1342,131875
,4,1344,9320
,4,1345,131880
,4,1353,3825
,4,1354,131885
,4,1356,8630
,4,1357,131890
,4,1359,11595
,4,1360,131895
,4,1362,12260
,4,1363,131900
,4,1380,11565
,4,1381,131905
,4,1389,6980
,4,1390,131910
,4,1392,11850
,4,1393,131915
,4,1395,6820
,4,1396,131920
,4,1401,9140
,4,1402,131925
,4,1404,4080
,4,1405,131930
,4,1407,10325
,4,1408,131935
,4,1410,9310
,4,1411,131940
,4,1413,8140
,4,1414,131945
,4,1416,6960
,4,1417,131950
,4,1419,9125
,4,1420,131955
,4,1422,11655
,4,1423,131960
,4,1434,9230
,4,1435,131965
,4,1455,5220
,4,1456,131970
,4,1464,5270
,4,1465,131975
,4,1473,5835
,4,1474,131980
,4,1476,11535
,4,1477,131985
,4,1479,11520
,4,1480,131990
,4,1494,11585
,4,1495,131995
,4,1497,8115
,4,1498,132000
,4,1503,4195
,4,1504,132005
,4,1506,8185
,4,1507,132010
,4,1509,9360
,4,1510,132015
,4,1515,8225
,4,1516,132020
,4,1518,8215
,4,1519,132025
,4,1521,11525
,4,1522,132030
,4,1524,5795
,4,1525,132035
,4,1527,5905
,4,1528,132040
,4,1533,5400
,4,1534,132045
,4,1551,12290
,4,1552,132050
,4,1560,5855
,4,1561,132055
,4,1563,8540
,4,1564,132060
,4,1569,11625
,4,1570,132065
,4,1587,5800
,4,1588,132070
,4,1608,11600
,4,1609,132075
,4,1614,11410
,4,1615,132080
,4,1626,9440
,4,1627,132085
,4,1632,12160
,4,1633,132090
,4,1638,4300
,4,1639,132095
,4,1647,8210
,4,1648,132100
,4,1662,9020
,4,1663,132105
,4,1668,8260
,4,1669,132110
,4,1671,8170
,4,1672,132115
,4,1680,8700
,4,1681,132120
,4,1683,9615
,4,1684,132125
,4,1701,11450
,4,1702,132130
,4,1707,11505
,4,1708,132135
,4,1728,12175
,4,1729,132140
,4,1731,5150
,4,1732,132145
,4,1749,9065
,4,1750,132150
,4,1761,3765
,4,1762,132155
,4,1764,11415
,4,1765,132160
,4,1770,7050
,4,1771,132165
,4,1773,9510
,4,1774,132170
,4,1779,3750
,4,1780,132175
,4,1788,8800
,4,1789,132180
,4,1791,6990
,4,1792,132185
,4,1797,9495
,4,1798,132190
,4,1803,9260
,4,1804,132195
,4,1806,9865
,4,1807,132200
,4,1809,7700
,4,1810,132205
,4,1812,4385
,4,1813,132210
,4,1824,10820
,4,1825,132215
,4,1836,5775
,4,1837,132220
,4,1839,5300
,4,1840,132225
,4,1842,10850
,4,1843,132230
,4,1845,9520
,4,1846,132235
,4,1866,4380
,4,1867,132240
,4,1869,9460
,4,1870,132245
,4,1875,8705
,4,1876,132250
,4,1878,8250
,4,1879,132255
,4,1881,9050
,4,1882,132260
,4,1884,10720
,4,1885,132265
,4,1896,5715
,4,1897,132270
,4,1902,9765
,4,1903,132275
,4,1911,5890
,4,1912,132280
,4,1923,5720
,4,1924,132285
,4,1926,5230
,4,1927,132290
,4,1929,8125
,4,1930,132295
,4,1932,11330
,4,1933,132300
,4,1935,12040
,4,1936,132305
,4,1950,11360
,4,1951,132310
,4,1953,9300
,4,1954,132315
,4,1956,5700
,4,1957,132320
,4,1959,5865
,4,1960,132325
,4,1965,6720
,4,1966,132330
,4,1986,5670
,4,1987,132335
,4,1989,6620
,4,1990,132340
,4,1995,9390
,4,1996,132345
,4,2001,7010
,4,2002,132350
,4,2013,4035
,4,2014,132355
,4,2016,11650
,4,2017,132360
,4,2019,3780
,4,2020,132365
,4,2028,11460
,4,2029,132370
,4,2061,5440
,4,2062,132375
,4,2070,10790
,4,2071,132380
,4,2076,7005
,4,2077,132385
,4,2082,11370
,4,2083,132390
,4,2085,3555
,4,2086,132395
,4,2091,4095
,4,2092,132400
,4,2094,6800
,4,2095,132405
,4,2097,9745
,4,2098,132410
,4,2100,10810
,4,2101,132415
,4,2109,3630
,4,2110,132420
,4,2118,12060
,4,2119,132425
,4,2124,5520
,4,2125,132430
,4,2127,7035
,4,2128,132435
,4,2136,3930
,4,2137,132440
,4,2151,4250
,4,2152,132445
,4,2154,9105
,4,2155,132450
,4,2166,3990
,4,2167,132455
,4,2169,8145
,4,2170,132460
,4,2175,11405
,4,2176,132465
,4,2178,11615
,4,2179,132470
,4,2184,7670
,4,2185,132475
,4,2190,12120
,4,2191,132480
,4,2193,9045
,4,2194,132485
,4,2196,11475
,4,2197,132490
,4,2202,5200
,4,2203,132495
,4,2217,12295
,4,2218,132500
,4,2232,9675
,4,2233,132505
,4,2235,5050
,4,2236,132510
,4,2238,8230
,4,2239,132515
,4,2241,8520
,4,2242,132520
,4,2244,8530
,4,2245,132525
,4,2247,11435
,4,2248,132530
,4,2250,9855
,4,2251,132535
,4,2256,9120
,4,2257,132540
,4,2274,3690
,4,2275,132545
,4,2277,5845
,4,2278,132550
,4,2280,11500
,4,2281,132555
,4,2283,9475
,4,2284,132560
,4,2289,6560
,4,2290,132565
,4,2292,9595
,4,2293,132570
,4,2295,5870
,4,2296,132575
,4,2301,4270
,4,2302,132580
,4,2304,8205
,4,2305,132585
,4,2307,10760
,4,2308,132590
,4,2319,9540
,4,2320,132595
,4,2325,3735
,4,2326,132600
,4,2328,5090
,4,2329,132605
,4,2331,11425
,4,2332,132610
,4,2349,7025
,4,2350,132615
,4,2352,129160
,4,2353,132620
,4,2355,10345
,4,2356,132625
,4,2361,5160
,4,2362,132630
,4,2364,5765
,4,2365,132635
,4,2382,5260
,4,2383,132640
,4,2385,5735
,4,2386,132645
,4,2406,11575
,4,2407,132650
,4,2409,8240
,4,2410,132655
,4,2412,5110
,4,2413,132660
,4,2418,12285
,4,2419,132665
,4,2421,6995
,4,2422,132670
,4,2424,12280
,4,2425,132675
,4,2433,4375
,4,2434,132680
,4,2436,3605
,4,2437,132685
,4,2439,8710
,4,2440,132690
,4,2442,9095
,4,2443,132695
,4,2457,4215
,4,2458,132700
,4,2460,10800
,4,2461,132705
,4,2463,11580
,4,2464,132710
,4,2481,11590
,4,2482,132715
,4,2493,11470
,4,2494,132720
,4,2496,9240
,4,2497,132725
,4,2499,5550
,4,2500,132730
,4,2502,5900
,4,2503,132735
,4,2505,8190
,4,2506,132740
,4,2511,11970
,4,2512,132745
,4,2514,5210
,4,2515,132750
,4,2520,5240
,4,2521,132755
,4,2535,3900
,4,2536,132760
,4,2538,8195
,4,2539,132765
,4,2544,8715
,4,2545,132770
,4,2568,3960
,4,2569,132775
,4,2571,4870
,4,2572,132780
,4,2583,5750
,4,2584,132785
,4,2586,7020
,4,2587,132790
,4,2589,4155
,4,2590,132795
,4,2595,11465
,4,2596,132800
,4,2625,9130
,4,2626,132805
,4,2637,4110
,4,2638,132810
,4,2649,11960
,4,2650,132815
,4,2658,9685
,4,2659,132820
,4,2661,3810
,4,2662,132825
,4,2664,7690
,4,2665,132830
,4,2673,9250
,4,2674,132835
,4,2679,11940
,4,2680,132840
,4,2691,11510
,4,2692,132845
,4,2700,11675
,4,2701,132850
,4,2709,11485
,4,2710,132855
,4,2712,11840
,4,2713,132860
,4,2718,8105
,4,2719,132865
,4,2745,4400
,4,2746,132870
,4,2748,8220
,4,2749,132875
,4,2751,9840
,4,2752,132880
,4,2754,7015
,4,2755,132885
,4,2757,8650
,4,2758,132890
,4,2784,11515
,4,2785,132895
,4,2787,6985
,4,2788,132900
,4,2793,11900
,4,2794,132905
,4,2805,12205
,4,2806,132910
,4,2811,5740
,4,2812,132915
,4,2814,6780
,4,2815,132920
,4,2817,4125
,4,2818,132925
,4,2829,10770
,4,2830,132930
,4,2832,5820
,4,2833,132935
,4,2835,8560
,4,2836,132940
,4,2838,9070
,4,2839,132945
,4,2841,9380
,4,2842,132950
,4,2844,9085
,4,2845,132955
,4,2847,10390
,4,2848,132960
,4,2853,7755
,4,2854,132965
,4,2871,8155
,4,2872,132970
,4,2874,6570
,4,2875,132975
,4,2877,9825
,4,2878,132980
,4,2880,5880
,4,2881,132985
,4,2883,11455
,4,2884,132990
,4,2886,10840
,4,2887,132995
,4,2889,6740
,4,2890,133000
,4,2892,7055
,4,2893,133005
,4,2901,5785
,4,2902,133010
,4,2904,8090
,4,2905,133015
,4,2907,3870
,4,2908,133020
,4,2925,12100
,4,2926,133025
,4,2928,12265
,4,2929,133030
,4,2946,8135
,4,2947,133035
,4,2949,8120
,4,2950,133040
,4,2976,7030
,4,2977,133045
,4,2979,8180
,4,2980,133050
,4,2982,4370
,4,2983,133055
,4,2985,9485
,4,2986,133060
,4,2988,7630
,4,2989,133065
,4,2991,5815
,4,2992,133070
,4,2994,5120
,4,2995,133075
,4,2997,7680
,4,2998,133080
,4,3003,5875
,4,3004,133085
,4,3006,9655
,4,3007,133090
,4,3009,9350
,4,3010,133095
,4,3012,11660
,4,3013,133100
,4,3015,9860
,4,3016,133105
,4,3021,133110
,4,3022,133115
,4,3024,9410
,4,3025,133120
,4,3030,11420
,4,3031,133125
,4,3036,3975
,4,3037,133130
,4,3039,3705
,4,3040,133135
,4,3042,9135
,4,3043,133140
,4,3045,6790
,4,3046,133145
,4,3069,9585
,4,3070,133150
,4,3072,11530
,4,3073,133155
,3,19546,1575
,3,19529,142500
,3,19536,135095
,3,19537,4495
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,139515
,4,4,44040
,4,5,139515
,4,6,44020
,4,7,4195
,4,8,44540
,4,9,44020
,4,10,4155
,4,11,44710
,4,12,139515
,4,13,44040
,4,14,139515
,4,15,44020
,4,16,4195
,4,17,44540
,4,18,44020
,4,19,4195
,4,20,44540
,4,21,4195
,4,22,44540
,4,23,44020
,4,24,4155
,4,25,44710
,4,26,139515
,4,27,44040
,4,28,139515
,4,29,4195
,4,30,44540
,4,31,44020
,4,32,4195
,4,33,44540
,4,34,4195
,4,35,44540
,4,36,44020
,4,37,4195
,4,38,44540
,4,39,4155
,4,40,44710
,4,41,4195
,4,42,44540
,4,43,4155
,4,44,44710
,4,45,139515
,4,46,44040
,4,47,139515
,3,19536,135100
,3,19537,4505
,3,19529,139175
,4,1,44060
,4,2,139520
,4,3,44040
,4,4,139520
,4,5,44020
,4,6,44020
,3,19536,135115
,3,19537,4510
,3,19529,139175
,4,1,44060
,4,2,44270
,4,3,139525
,4,4,44040
,4,5,139525
,4,6,44020
,4,7,4155
,4,8,44710
,4,9,4155
,4,10,44710
,4,11,4155
,4,12,44710
,4,13,4155
,4,14,44710
,4,15,44270
,4,16,4195
,4,17,44540
,4,18,4195
,4,19,44540
,4,20,44070
,4,21,44070
,4,22,44020
,3,19536,135125
,3,19537,4535
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,139530
,4,4,44040
,4,5,139530
,4,6,44290
,4,7,4155
,4,8,139535
,4,9,4155
,4,10,139535
,4,11,4230
,4,12,139540
,4,13,44290
,4,14,4250
,4,15,44740
,4,16,44290
,4,17,4195
,4,18,44540
,4,19,4195
,4,20,44540
,4,21,44020
,3,19536,135130
,3,19537,4540
,3,19529,139175
,4,1,44060
,4,2,4215
,4,3,44540
,4,4,4215
,4,5,44540
,4,6,44020
,4,7,139545
,4,8,44040
,4,9,139545
,3,19536,135135
,3,19537,4545
,3,19529,139175
,4,1,44060
,4,2,4215
,4,3,44540
,4,4,4215
,4,5,44540
,4,6,44020
,4,7,139550
,4,8,44040
,4,9,139550
,3,19536,135140
,3,19537,4550
,3,19529,139175
,4,1,44060
,4,2,4215
,4,3,44540
,4,4,4215
,4,5,44540
,4,6,44020
,4,7,139555
,4,8,44040
,4,9,139555
,3,19536,135145
,3,19537,4555
,3,19529,139175
,4,1,44060
,4,2,4215
,4,3,44540
,4,4,4215
,4,5,44540
,4,6,44020
,4,7,139560
,4,8,44040
,4,9,139560
,3,19536,135150
,3,19537,4560
,3,19529,139175
,4,1,44060
,4,2,4215
,4,3,44540
,4,4,4215
,4,5,44540
,4,6,44020
,4,7,139565
,4,8,44040
,4,9,139565
,3,19536,135155
,3,19537,4565
,3,19529,139175
,4,1,44060
,4,2,4215
,4,3,44540
,4,4,4215
,4,5,44540
,4,6,4215
,4,7,44540
,4,8,44070
,4,9,139570
,4,10,44040
,4,11,139570
,4,12,44020
,3,19536,135160
,3,19537,4570
,3,19529,139175
,4,1,44060
,4,2,4215
,4,3,44540
,4,4,4215
,4,5,44540
,4,6,44020
,4,7,139575
,4,8,44040
,4,9,139575
,3,19536,135165
,3,19537,4575
,3,19529,139175
,4,1,44060
,4,2,4215
,4,3,44540
,4,4,44020
,4,5,139580
,4,6,44040
,4,7,139580
,3,19536,135170
,3,19537,4580
,3,19529,139175
,4,1,44060
,4,2,4215
,4,3,44540
,4,4,44020
,4,5,139585
,4,6,44040
,4,7,139585
,3,19536,135175
,3,19537,4585
,3,19529,139175
,4,1,44060
,4,2,4215
,4,3,44540
,4,4,4215
,4,5,44540
,4,6,44020
,4,7,139590
,4,8,44040
,4,9,139590
,3,19536,135180
,3,19537,4590
,3,19529,139175
,4,1,44060
,4,2,4215
,4,3,44540
,4,4,4215
,4,5,44540
,4,6,4215
,4,7,44540
,4,8,44070
,4,9,139595
,4,10,44040
,4,11,139595
,4,12,44020
,3,19536,135185
,3,19537,4595
,3,19529,139175
,4,1,44060
,4,2,4215
,4,3,44540
,4,4,4215
,4,5,44540
,4,6,44020
,4,7,139600
,4,8,44040
,4,9,139600
,3,19536,135190
,3,19537,4600
,3,19529,139175
,4,1,44060
,4,2,4270
,4,3,44740
,4,4,4230
,4,5,44740
,4,6,44020
,4,7,139605
,4,8,44040
,4,9,139605
,3,19536,135200
,3,19537,4615
,3,19529,139175
,4,1,44060
,4,2,130190
,4,3,4610
,4,4,44065
,4,5,44355
,4,6,44355
,4,7,9320
,4,8,44710
,4,9,44020
,4,10,44020
,4,11,4230
,4,12,139540
,4,13,44020
,4,14,139610
,4,15,44040
,4,16,139610
,3,19536,135220
,3,19537,4640
,3,19529,139175
,4,1,44060
,4,2,1020
,4,3,320
,4,4,1020
,4,5,43990
,4,6,130105
,4,7,4625
,4,8,44210
,4,9,44355
,4,10,9320
,4,11,44710
,4,12,44020
,4,13,139615
,4,14,44040
,4,15,139615
,4,16,44020
,4,17,43755
,4,18,139320
,4,19,30850
,4,20,139275
,4,21,130080
,4,22,4635
,4,23,44210
,4,24,44355
,4,25,9320
,4,26,44710
,4,27,44020
,4,28,44020
,4,29,43755
,3,19536,135225
,3,19537,4645
,3,19529,139175
,4,1,44060
,4,2,4230
,4,3,139540
,4,4,44020
,4,5,44140
,4,6,139620
,4,7,44040
,4,8,139620
,3,19536,135235
,3,19537,4660
,3,19529,139175
,4,1,44045
,4,2,44060
,4,3,44020
,4,4,129665
,4,5,4655
,4,6,44210
,4,7,44020
,4,8,44355
,4,9,9320
,4,10,44710
,4,11,44020
,4,12,44020
,4,13,139625
,4,14,44040
,4,15,139625
,3,19536,135240
,3,19537,4680
,3,19529,139175
,4,1,44045
,4,2,44060
,4,3,44020
,4,4,129665
,4,5,4675
,4,6,44210
,4,7,44020
,4,8,44355
,4,9,9320
,4,10,44710
,4,11,44020
,4,12,44020
,4,13,139630
,4,14,44040
,4,15,139630
,3,19536,135255
,3,19537,4685
,3,19529,139175
,4,1,44045
,4,2,44060
,4,3,44330
,4,4,44410
,4,5,44020
,4,6,44020
,4,7,139635
,4,8,44040
,4,9,139635
,3,19536,135260
,3,19537,4690
,3,19529,139175
,4,1,44045
,4,2,44060
,4,3,44020
,4,4,44020
,4,5,139640
,4,6,44040
,4,7,139640
,3,19536,135265
,3,19537,4695
,3,19529,139175
,4,1,44060
,4,2,4270
,4,3,44540
,4,4,139645
,4,5,44040
,4,6,139645
,3,19536,135270
,3,19537,4700
,3,19529,139175
,4,1,44060
,4,2,4195
,4,3,44740
,4,4,139650
,4,5,44040
,4,6,139650
,3,19536,135275
,3,19537,4705
,3,19529,139175
,4,1,44060
,4,2,4230
,4,3,44540
,4,4,139655
,4,5,44040
,4,6,139655
,3,19536,135285
,3,19656,30665
,3,19537,4710
,3,19529,139175
,4,1,44060
,4,2,1020
,4,3,320
,4,4,1190
,4,5,44155
,4,6,4910
,4,7,43790
,4,8,4155
,4,9,44710
,4,10,4230
,4,11,44540
,4,12,44290
,4,13,139660
,4,14,44040
,4,15,139660
,3,19536,135290
,3,19537,4715
,3,19529,139175
,4,1,44060
,4,2,1020
,4,3,320
,4,4,1190
,4,5,44155
,4,6,4910
,4,7,43790
,4,8,4155
,4,9,44710
,4,10,4230
,4,11,44540
,4,12,44290
,4,13,139665
,4,14,44040
,4,15,139665
,3,19536,135315
,3,19656,43640
,3,19537,4740
,3,19529,139175
,4,1,44060
,4,2,21345
,4,3,139290
,4,4,43800
,4,5,43670
,4,6,1020
,4,7,320
,4,8,1020
,4,9,43770
,4,10,139670
,4,11,44040
,4,12,139670
,4,13,21345
,4,14,139675
,4,15,4300
,4,16,139680
,4,17,43890
,4,18,39570
,4,19,4720
,4,20,43700
,4,21,9330
,4,22,44710
,4,23,44020
,4,24,1020
,4,25,320
,4,26,1020
,4,27,43770
,4,28,129365
,4,29,4730
,4,30,44065
,4,31,4230
,4,32,44540
,4,33,44355
,4,34,44020
,4,35,44355
,4,36,9320
,4,37,44710
,4,38,44020
,4,39,129730
,4,40,4735
,4,41,43700
,4,42,9320
,4,43,44710
,4,44,44020
,3,19536,135320
,3,19537,4750
,3,19529,139175
,4,1,44060
,4,2,39570
,4,3,4745
,4,4,43700
,4,5,9330
,4,6,44710
,4,7,44020
,4,8,139685
,4,9,44040
,4,10,139685
,3,19530,655
,3,19531,660
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,85
,3,19539,3540
,3,19540,560
,6,64,85
,3,19529,675
,4,1,660
,3,19530,3555
,3,19531,3560
,3,19532,3565
,3,19533,3555
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135740
,3,19537,9960
,3,19529,139175
,4,1,44060
,4,2,129160
,4,3,139275
,4,4,129225
,4,5,9970
,4,6,44115
,4,7,44020
,4,8,139845
,4,9,44040
,4,10,139845
,3,19529,4430
,4,5,270
,2,828,2740
,2,842,85
,2,1482,85
,2,19229,85
,2,19104,85
,2,19024,85
,2,19281,85
,2,19067,85
,2,19177,2690
,2,19111,2060
,2,19196,3335
,2,19255,1800
,2,19232,1745
,2,19080,2480
,2,19171,1755
,2,19076,70
,3,19600,3580
,3,19529,3585
,3,19544,3570
,3,19546,2740
,3,19545,133160
,3,19529,142500
,3,19546,350
,3,19545,133485
,3,19529,142500
,3,19549,340
,3,19529,575
,4,3,3595
,3,19529,135065
,3,19530,3605
,3,19531,660
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,2,19076,430
,3,19529,3620
,3,19544,3610
,3,19546,2990
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19529,142500
,3,19530,3630
,3,19531,3635
,3,19533,3630
,3,19534,1060
,3,19535,340
,6,1,85
,3,19536,134975
,3,19529,139175
,4,7,134475
,4,8,44370
,4,9,139180
,2,402,2980
,2,472,3650
,2,473,3655
,2,19076,70
,3,19529,3660
,3,19544,3640
,3,19546,2765
,3,19545,133230
,3,19529,142500
,2,19076,425
,3,19539,7355
,3,19540,560
,6,64,85
,3,19529,6280
,4,1,7365
,2,19076,425
,3,19539,7370
,3,19540,560
,6,64,85
,3,19529,6280
,4,1,7380
,3,19546,350
,3,19545,133430
,3,19529,142500
,3,19549,3670
,3,19530,3675
,3,19529,575
,4,3,3680
,3,19529,135065
,3,19530,3690
,3,19531,3385
,3,19532,3695
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,3705
,3,19531,3390
,3,19532,3710
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,3,19530,3720
,3,19531,3395
,3,19532,3725
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,3,19530,3735
,3,19531,3400
,3,19532,3740
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,19530,3750
,3,19531,3520
,3,19532,3755
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,3,19530,3765
,3,19531,3525
,3,19532,3770
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,3780
,3,19531,3405
,3,19532,3785
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,3795
,3,19531,3410
,3,19532,3800
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,3810
,3,19531,3415
,3,19532,3815
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,3825
,3,19531,3420
,3,19532,3830
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,3840
,3,19531,3425
,3,19532,3845
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,3855
,3,19531,3430
,3,19532,3860
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,3870
,3,19531,3435
,3,19532,3875
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,3885
,3,19531,3440
,3,19532,3890
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,3,19530,3900
,3,19531,3445
,3,19532,3905
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,3,19530,3915
,3,19531,3450
,3,19532,3920
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,3930
,3,19531,3455
,3,19532,3935
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,3945
,3,19531,3460
,3,19532,3950
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,3960
,3,19531,3465
,3,19532,3965
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,3975
,3,19531,3470
,3,19532,3980
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,3,19530,3990
,3,19531,3475
,3,19532,3995
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,3,19530,4005
,3,19531,3480
,3,19532,4010
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,4020
,3,19531,3485
,3,19532,4025
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,4665
,4,6,270
,3,19530,4035
,3,19531,3490
,3,19532,4040
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,4665
,4,6,270
,3,19530,4050
,3,19531,3495
,3,19532,4055
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,4665
,4,6,270
,4,7,4500
,4,8,4515
,3,19530,4065
,3,19531,3500
,3,19532,4070
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,4665
,4,6,270
,4,7,4500
,3,19530,4080
,3,19531,3530
,3,19532,4085
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,4095
,3,19531,3535
,3,19532,4100
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,4,5,270
,3,19530,4110
,3,19531,3505
,3,19532,4115
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,3,19530,4125
,3,19531,3510
,3,19532,4130
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,3,19530,4140
,3,19531,3515
,3,19532,4145
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4430
,3,19530,4155
,3,19531,4160
,3,19532,4165
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135990
,3,19537,12490
,3,19529,139175
,4,1,44060
,4,2,140000
,4,3,44040
,4,4,140000
,4,5,44070
,4,6,1020
,4,7,320
,4,8,1235
,4,9,43990
,4,10,44070
,4,11,4350
,4,12,44540
,4,13,4360
,4,14,44540
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,4175
,3,19531,4180
,3,19532,4185
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135435
,3,19537,6460
,3,19529,139175
,4,1,44060
,4,2,139720
,4,3,44040
,4,4,139720
,4,5,21345
,4,6,139275
,4,7,44070
,4,9,44070
,4,10,44070
,3,19529,4430
,4,5,270
,3,19530,4195
,3,19531,4200
,3,19532,4205
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135540
,3,19537,6490
,3,19529,139175
,4,1,44060
,4,2,139755
,4,3,44040
,4,4,139755
,4,5,44020
,4,6,43755
,4,7,4400
,4,8,139280
,4,9,4350
,4,10,44540
,4,11,4195
,4,12,44595
,3,19529,4430
,4,5,270
,3,19530,4215
,3,19531,4220
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134710
,3,19529,139175
,4,1,4220
,4,2,44020
,3,19530,4230
,3,19531,4235
,3,19532,4240
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135995
,3,19537,12495
,3,19529,139175
,4,1,44060
,4,2,140005
,4,3,44040
,4,4,140005
,4,5,43790
,4,6,43755
,4,7,105
,4,8,115
,4,9,90
,4,10,80
,4,11,4360
,4,12,44540
,4,13,4230
,4,14,44540
,3,19529,4430
,4,5,270
,3,19530,4250
,3,19531,4255
,3,19532,4260
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138945
,3,19656,30720
,3,19537,30560
,3,19529,139175
,4,1,44060
,4,2,43790
,4,3,142405
,4,4,44040
,4,5,142405
,4,6,43755
,4,7,105
,4,8,115
,4,9,90
,4,10,80
,4,11,4360
,4,12,44540
,4,13,4230
,4,14,44540
,3,19529,4430
,4,5,270
,3,19530,4270
,3,19531,4275
,3,19532,4280
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136250
,3,19537,17040
,3,19529,139175
,4,1,44060
,4,2,4380
,4,3,139275
,4,4,17050
,4,5,44115
,4,6,140315
,4,7,44040
,4,8,140315
,4,9,4385
,4,10,139275
,4,11,17055
,4,12,44115
,4,13,4395
,4,14,139275
,4,15,17060
,4,16,44115
,4,17,129910
,4,18,17035
,4,19,43700
,4,20,9320
,4,21,44710
,4,22,44020
,3,19529,4430
,4,5,270
,3,19530,4290
,3,19531,4220
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4300
,3,19531,4305
,3,19532,4310
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137005
,3,19537,21170
,3,19529,139175
,4,1,44060
,4,2,43800
,4,3,140920
,4,4,44040
,4,5,140920
,4,6,4195
,4,7,44595
,4,8,44020
,3,19529,4430
,4,5,270
,3,19530,4320
,3,19531,4220
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4330
,3,19531,4220
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4340
,3,19531,4220
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4350
,3,19531,4220
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4360
,3,19531,4220
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,4,1,4370
,4,3,4375
,4,5,4380
,4,7,4385
,4,9,4390
,4,11,4395
,4,13,4400
,4,15,1570
,4,17,3690
,4,18,3685
,4,19,3705
,4,20,3700
,4,21,3720
,4,22,3715
,4,23,3735
,4,24,3730
,4,25,3750
,4,26,3745
,4,27,3765
,4,28,3760
,4,29,3780
,4,30,3775
,4,31,3795
,4,32,3790
,4,33,3810
,4,34,3805
,4,35,3825
,4,36,3820
,4,37,3840
,4,38,3835
,4,39,3855
,4,40,3850
,4,41,3870
,4,42,3865
,4,43,3885
,4,44,3880
,4,45,3900
,4,46,3895
,4,47,3915
,4,48,3910
,4,49,3930
,4,50,3925
,4,51,3945
,4,52,3940
,4,53,3960
,4,54,3955
,4,55,3975
,4,56,3970
,4,57,3990
,4,58,3985
,4,59,4005
,4,60,4000
,4,61,4020
,4,62,4015
,4,63,4035
,4,64,4030
,4,65,4050
,4,66,4045
,4,67,4065
,4,68,4060
,4,69,4080
,4,70,4075
,4,71,4095
,4,72,4090
,4,73,4110
,4,74,4105
,4,75,4125
,4,76,4120
,4,77,4140
,4,78,4135
,4,79,4155
,4,80,4150
,4,81,4175
,4,82,4170
,4,83,4195
,4,84,4190
,4,85,4215
,4,86,4210
,4,87,4230
,4,88,4225
,4,89,4250
,4,90,4245
,4,91,4270
,4,92,4265
,4,93,4290
,4,94,4285
,4,95,4300
,4,96,4295
,4,97,4320
,4,98,4315
,4,99,4330
,4,100,4325
,4,101,4340
,4,102,4335
,4,103,4350
,4,104,4345
,4,105,4360
,4,106,4355
,3,19529,4410
,4,3,4415
,3,19529,142500
,4,1,4420
,3,19529,4430
,4,5,4435
,3,19529,142500
,3,19530,655
,3,19531,4445
,3,19532,4425
,3,19533,320
,3,19548,3665
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135080
,3,19537,4405
,3,19529,139175
,4,1,4365
,4,2,44020
,4,3,44060
,4,4,4370
,4,5,990
,4,6,139280
,4,7,320
,4,8,139280
,4,9,44020
,4,10,4375
,4,11,990
,4,12,139280
,4,13,1050
,4,14,139280
,4,15,44020
,4,16,4380
,4,17,990
,4,18,139280
,4,19,1190
,4,20,139280
,4,21,44020
,4,22,4385
,4,23,990
,4,24,139280
,4,25,1090
,4,26,139280
,4,27,44020
,4,28,4390
,4,29,990
,4,30,139280
,4,31,1020
,4,32,139280
,4,33,44020
,4,34,4395
,4,35,990
,4,36,139280
,4,37,1160
,4,38,139280
,4,39,44020
,4,40,4400
,4,41,44020
,4,42,44020
,4,43,1570
,4,44,44020
,4,45,4375
,4,46,139280
,4,47,4375
,4,48,139280
,4,49,4420
,4,50,44115
,4,51,44020
,4,52,139510
,4,53,44040
,4,54,139510
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,2,4605
,3,19529,4410
,4,2,4620
,4,2,4630
,3,19529,4410
,3,19529,4410
,4,2,4650
,3,19529,4410
,4,2,4670
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,2,4725
,3,19529,4410
,3,19529,4410
,3,19549,4760
,3,19530,4765
,3,19529,575
,4,3,4770
,3,19529,135065
,3,19530,4780
,3,19531,4785
,3,19532,4790
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135385
,3,19537,6450
,3,19529,139175
,4,1,44060
,4,2,21345
,4,3,139290
,4,4,43800
,4,5,21345
,4,6,139290
,4,7,43825
,4,8,44020
,4,9,139705
,4,10,44105
,4,11,139705
,4,12,44020
,4,13,44020
,4,14,44020
,4,15,44020
,4,16,44105
,4,17,139710
,4,18,44040
,4,19,139710
,4,20,21345
,4,21,139290
,4,22,43670
,4,23,44020
,4,24,139710
,4,25,44040
,4,26,139710
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,3,19530,4800
,3,19531,4805
,3,19532,4810
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135465
,3,19537,6465
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,30850
,4,4,139275
,4,5,21345
,4,6,139290
,4,7,43825
,4,8,44085
,4,9,21345
,4,10,139290
,4,11,44395
,4,12,43800
,4,13,44020
,4,14,44085
,4,15,139705
,4,16,44020
,4,17,43750
,4,18,44105
,4,19,139730
,4,20,44040
,4,21,139730
,4,22,21345
,4,23,139290
,4,24,43670
,4,25,139705
,4,26,44105
,4,27,139705
,4,28,44020
,4,29,44020
,4,30,44105
,4,31,139730
,4,32,44040
,4,33,139730
,4,34,21345
,4,35,139290
,4,36,43670
,4,38,129095
,4,39,139350
,4,40,44020
,4,41,139730
,4,42,44040
,4,43,139730
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,4,11,275
,4,12,280
,3,19530,4820
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4830
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4840
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4850
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4860
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4870
,3,19531,4875
,3,19532,4880
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135360
,3,19537,6445
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,990
,4,4,139280
,4,5,129685
,4,6,4400
,4,7,139280
,4,8,44020
,4,9,990
,4,10,139280
,4,11,130110
,4,12,715
,4,13,44020
,4,14,990
,4,15,139280
,4,16,90
,4,17,44020
,4,18,990
,4,19,139280
,4,20,4820
,4,21,5710
,4,22,139280
,4,23,4830
,4,24,5715
,4,25,139280
,4,26,4840
,4,27,5720
,4,28,139280
,4,29,4850
,4,30,5725
,4,31,139280
,4,32,4860
,4,33,5730
,4,34,139280
,4,35,4375
,4,36,44550
,4,37,4780
,4,38,44650
,4,39,139700
,4,40,44040
,4,41,139700
,3,19529,4430
,3,19530,4890
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4900
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4910
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4920
,3,19531,4925
,3,19532,4930
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135620
,3,19537,7490
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,44140
,4,4,44020
,4,5,128805
,4,6,129425
,4,7,139275
,4,8,4250
,4,9,44595
,4,10,5220
,4,11,44625
,4,12,139795
,4,13,44040
,4,14,139795
,4,15,4270
,4,16,44595
,4,17,4250
,4,18,44595
,4,19,44020
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,4940
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4950
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4960
,3,19531,4965
,3,19532,4970
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136890
,3,19537,20985
,3,19529,139175
,4,1,44060
,4,2,990
,4,3,139275
,4,4,44020
,4,5,1020
,4,6,320
,4,7,1020
,4,8,43770
,4,9,129185
,4,10,139275
,4,11,129055
,4,12,20995
,4,13,44115
,4,14,44020
,4,15,5160
,4,16,140325
,4,17,21000
,4,18,44115
,4,19,128840
,4,20,140825
,4,22,130310
,4,23,140335
,4,25,130175
,4,26,140345
,4,27,4270
,4,28,140275
,4,29,4230
,4,30,139885
,4,32,5300
,4,33,140310
,4,34,140830
,4,35,44040
,4,36,140830
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,3,19530,4980
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4990
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5000
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5010
,3,19531,5015
,3,19532,5020
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137410
,3,19537,23255
,3,19529,139175
,4,1,44060
,4,2,129840
,4,3,23250
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,44020
,4,9,44140
,4,10,44020
,4,11,5010
,4,12,129555
,4,13,139275
,4,14,5210
,4,15,44490
,4,16,5010
,4,17,5340
,4,18,44565
,4,19,141250
,4,20,44040
,4,21,141250
,4,22,44020
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,19530,5030
,3,19531,5035
,3,19532,5040
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136295
,3,19537,17155
,3,19529,139175
,4,1,44060
,4,3,140465
,4,4,44040
,4,5,140465
,4,6,128935
,4,7,140470
,4,8,44140
,4,9,129615
,4,10,140475
,3,19529,4430
,4,5,270
,3,19530,5050
,3,19531,5055
,3,19532,5060
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136345
,3,19537,17275
,3,19529,139175
,4,1,44060
,4,3,140600
,4,4,44040
,4,5,140600
,4,6,129245
,4,7,140560
,4,8,44140
,4,9,130025
,4,10,140550
,3,19529,4430
,4,5,270
,3,19530,5070
,3,19531,5075
,3,19532,5080
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136930
,3,19537,21010
,3,19529,139175
,4,1,44060
,4,3,140850
,4,4,44040
,4,5,140850
,4,6,5030
,4,7,140455
,4,8,44140
,4,9,5050
,4,10,44595
,4,11,43755
,3,19529,4430
,4,5,270
,3,19530,5090
,3,19531,5095
,3,19532,5100
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136290
,3,19537,17150
,3,19529,139175
,4,1,44060
,4,2,5030
,4,3,140455
,4,4,44140
,4,5,5050
,4,6,44515
,4,7,140460
,4,8,44040
,4,9,140460
,3,19529,4430
,4,5,270
,3,19530,5110
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5120
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5130
,3,19531,5135
,3,19532,5140
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136260
,3,19537,17125
,3,19529,139175
,4,1,44060
,4,2,128995
,4,3,17090
,4,4,44210
,4,5,44355
,4,6,9320
,4,7,44565
,4,8,44020
,4,9,5160
,4,10,140325
,4,11,17135
,4,12,44115
,4,13,20450
,4,14,20450
,4,15,139275
,4,16,4175
,4,17,140330
,4,18,130310
,4,19,140335
,4,20,20460
,4,21,20460
,4,22,140340
,4,23,4175
,4,24,140330
,4,25,130175
,4,26,140345
,4,27,16510
,4,28,16510
,4,29,139275
,4,30,129190
,4,31,140350
,4,32,20455
,4,33,20455
,4,34,140355
,4,35,4175
,4,36,140330
,4,37,129735
,4,38,140360
,4,39,17595
,4,40,17595
,4,41,139280
,4,42,1020
,4,43,320
,4,44,1020
,4,45,43770
,4,46,129475
,4,47,17100
,4,48,44210
,4,49,44355
,4,50,9320
,4,51,44565
,4,52,44020
,4,53,128840
,4,54,44740
,4,55,17605
,4,56,17605
,4,57,139275
,4,58,1020
,4,59,320
,4,60,1020
,4,61,43990
,4,62,129795
,4,63,17110
,4,64,44210
,4,65,44355
,4,66,9320
,4,67,44565
,4,68,44020
,4,69,129265
,4,70,44540
,4,71,5090
,4,72,140365
,4,73,44140
,4,74,128955
,4,75,17120
,4,76,44210
,4,77,44355
,4,78,9320
,4,79,44565
,4,80,44020
,4,81,140370
,4,82,44040
,4,83,140370
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,3,19530,5150
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5160
,3,19531,5165
,3,19532,5170
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136265
,3,19537,17140
,3,19529,139175
,4,1,44060
,4,2,31895
,4,3,140375
,4,5,31900
,4,6,140380
,4,8,31905
,4,9,140385
,4,11,31910
,4,12,140390
,4,14,31915
,4,15,140395
,4,17,31920
,4,18,140400
,4,20,31925
,4,21,140405
,4,23,31930
,4,24,140410
,4,25,31935
,4,26,140415
,4,28,31940
,4,29,140420
,4,30,31945
,4,31,140425
,4,33,31950
,4,34,140430
,4,35,140435
,4,36,44040
,4,37,140435
,3,19529,4430
,3,19530,5180
,3,19531,5185
,3,19532,5190
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136325
,3,19537,17250
,3,19529,139175
,4,1,44060
,4,3,44155
,4,4,128810
,4,5,44020
,4,6,140575
,4,7,44040
,4,8,140575
,4,9,5160
,4,10,139275
,4,11,17260
,4,12,44115
,4,13,139320
,4,14,43755
,4,15,139320
,4,16,128840
,4,17,44540
,4,18,139320
,4,19,129265
,4,20,44540
,4,21,139320
,4,22,129190
,4,23,44540
,4,24,139320
,4,25,129735
,4,26,44540
,4,27,139320
,4,28,130310
,4,29,44540
,4,30,139320
,4,31,130175
,4,32,44540
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,5200
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5210
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5220
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5230
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5240
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5250
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5260
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5270
,3,19531,5275
,3,19532,5280
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136320
,3,19537,17245
,3,19529,139175
,4,1,44060
,4,2,4270
,4,3,140275
,4,4,4230
,4,5,139885
,4,6,44020
,4,8,44155
,4,9,140510
,4,10,44040
,4,11,140510
,4,12,5180
,4,13,140515
,4,14,4270
,4,15,140275
,4,16,44020
,4,17,44140
,4,18,43755
,4,19,129825
,4,20,17180
,4,21,44210
,4,22,44355
,4,23,9320
,4,24,44565
,4,25,44020
,4,27,5070
,4,28,44595
,4,29,43755
,4,30,5050
,4,31,44595
,4,32,5050
,4,33,44595
,4,34,44070
,4,35,129320
,4,36,44670
,4,37,43755
,4,38,129785
,4,39,44670
,4,40,129785
,4,41,44670
,4,42,4330
,4,43,44565
,4,44,43755
,4,45,129370
,4,46,44670
,4,47,43755
,4,48,130290
,4,49,44670
,4,50,130290
,4,51,44670
,4,52,4330
,4,53,44565
,4,54,43755
,4,55,130025
,4,56,44670
,4,57,43755
,4,58,130165
,4,59,44670
,4,60,130165
,4,61,44670
,4,62,4330
,4,63,44565
,4,64,43755
,4,65,129245
,4,66,44670
,4,67,43755
,4,68,129565
,4,69,44670
,4,70,129565
,4,71,44670
,4,72,4330
,4,73,44565
,4,74,43755
,4,75,128935
,4,76,44670
,4,77,43755
,4,78,129105
,4,79,44670
,4,80,129105
,4,81,44670
,4,82,4330
,4,83,44565
,4,84,43755
,4,85,129615
,4,86,44670
,4,87,43755
,4,88,128960
,4,89,44670
,4,90,128960
,4,91,44670
,4,92,4330
,4,93,44565
,4,94,43755
,4,96,130290
,4,97,44670
,4,98,43755
,4,99,130290
,4,100,44670
,4,101,43755
,4,102,129320
,4,103,44670
,4,104,43755
,4,105,129785
,4,106,44670
,4,107,129785
,4,108,44670
,4,109,44070
,4,110,43755
,4,111,129110
,4,112,17190
,4,113,44210
,4,114,44355
,4,115,9320
,4,116,44565
,4,117,44020
,4,119,5070
,4,120,44595
,4,121,43755
,4,122,5050
,4,123,44595
,4,124,5050
,4,125,44595
,4,126,44070
,4,127,43755
,4,128,129110
,4,129,17200
,4,130,44210
,4,131,44355
,4,132,9320
,4,133,44565
,4,134,44020
,4,136,5050
,4,137,44595
,4,138,43755
,4,139,5050
,4,140,44595
,4,141,43755
,4,142,130165
,4,143,44670
,4,144,43755
,4,145,130165
,4,146,44670
,4,147,43755
,4,148,43755
,4,149,129110
,4,150,17210
,4,151,44210
,4,152,44355
,4,153,9320
,4,154,44565
,4,155,44020
,4,157,130165
,4,158,44670
,4,159,43755
,4,160,129245
,4,161,44670
,4,162,43755
,4,163,129565
,4,164,44670
,4,165,129565
,4,166,44670
,4,167,4330
,4,168,44565
,4,169,43755
,4,170,43755
,4,171,129110
,4,172,17220
,4,173,44210
,4,174,44355
,4,175,9320
,4,176,44565
,4,177,44020
,4,179,5030
,4,180,44595
,4,181,43755
,4,182,5030
,4,183,44595
,4,184,43755
,4,185,129615
,4,186,44670
,4,187,43755
,4,188,128960
,4,189,44670
,4,190,128960
,4,191,44670
,4,192,4330
,4,193,44565
,4,194,43755
,4,195,43755
,4,196,129110
,4,197,17230
,4,198,44210
,4,199,44355
,4,200,9320
,4,201,44565
,4,202,44020
,4,204,128935
,4,205,44670
,4,206,43755
,4,207,129105
,4,208,44670
,4,209,129105
,4,210,44670
,4,211,4330
,4,212,44565
,4,213,43755
,4,214,43755
,4,215,129110
,4,216,17240
,4,217,44210
,4,218,44355
,4,219,9320
,4,220,44565
,4,221,44020
,4,223,129320
,4,224,140520
,4,225,44140
,4,226,129785
,4,227,140525
,4,228,44140
,4,229,44375
,4,230,129785
,4,231,44670
,4,232,43755
,4,233,43850
,4,234,44375
,4,235,129370
,4,236,140530
,4,237,44140
,4,238,130290
,4,239,140535
,4,240,44140
,4,241,44375
,4,242,130290
,4,243,44670
,4,244,43755
,4,245,43850
,4,246,44375
,4,247,5050
,4,248,140540
,4,249,44140
,4,250,5070
,4,251,140545
,4,252,44140
,4,253,5050
,4,254,44595
,4,255,43755
,4,256,130025
,4,257,140550
,4,258,44140
,4,259,130165
,4,260,140555
,4,261,44140
,4,262,44375
,4,263,130165
,4,264,44670
,4,265,43755
,4,266,43850
,4,267,44375
,4,268,129245
,4,269,140560
,4,270,44140
,4,271,129565
,4,272,140565
,4,273,5050
,4,274,44595
,4,275,43755
,4,276,129565
,4,277,44670
,4,278,44020
,4,279,128935
,4,280,140470
,4,281,44140
,4,282,129105
,4,283,140570
,4,285,129615
,4,286,140475
,4,287,44140
,4,288,128960
,4,289,44670
,4,291,44020
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,4,11,275
,4,12,280
,4,13,10255
,4,14,11745
,4,15,11750
,3,19530,5290
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5300
,3,19531,5305
,3,19532,5310
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136310
,3,19537,17170
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,44140
,4,4,5120
,4,5,44595
,4,6,5260
,4,7,44625
,4,8,140500
,4,9,44040
,4,10,140500
,4,11,5290
,4,12,44625
,4,13,5270
,4,14,140505
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,3,19530,5320
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5330
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5340
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5350
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5360
,3,19531,5365
,3,19532,5370
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136240
,3,19537,16990
,3,19529,139175
,4,1,44060
,4,2,129135
,4,3,16985
,4,4,44210
,4,5,44355
,4,6,9320
,4,7,44565
,4,8,44020
,4,9,4370
,4,10,140260
,4,11,17000
,4,12,44115
,4,13,129095
,4,14,139350
,4,15,5815
,4,16,140265
,4,17,140270
,4,18,44040
,4,19,140270
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,19530,5380
,3,19531,5385
,3,19532,5390
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137635
,3,19537,27505
,3,19529,139175
,4,1,44060
,4,2,129840
,4,3,27500
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,4230
,4,9,139885
,4,10,44020
,4,11,44140
,4,13,44215
,4,14,44020
,4,15,27515
,4,16,139320
,4,17,139405
,4,18,141390
,4,19,44040
,4,20,141390
,4,22,5260
,4,23,44625
,4,24,5130
,4,25,140295
,4,27,5300
,4,28,140310
,4,29,141390
,4,30,44040
,4,31,141390
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,4,11,275
,3,19530,5400
,3,19531,5405
,3,19532,5410
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136255
,3,19537,17065
,3,19529,139175
,4,1,44060
,4,2,3630
,4,3,140285
,4,4,17075
,4,5,44115
,4,6,44020
,4,7,17080
,4,8,44020
,4,9,44140
,4,10,7375
,4,11,140300
,4,12,140320
,4,13,44040
,4,14,140320
,4,15,140320
,4,16,44040
,4,17,140320
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,19530,5420
,3,19531,5425
,3,19532,5430
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136245
,3,19537,17020
,3,19529,139175
,4,1,44060
,4,2,129840
,4,3,17015
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,4270
,4,9,140275
,4,10,5400
,4,11,140280
,4,12,3630
,4,13,140285
,4,14,17030
,4,15,44115
,4,16,140045
,4,17,140290
,4,18,5130
,4,19,140295
,4,20,7375
,4,21,140300
,4,22,43750
,4,23,44105
,4,24,140305
,4,25,44040
,4,26,140305
,4,27,21345
,4,28,139290
,4,29,43670
,4,30,140045
,4,31,140045
,4,33,5300
,4,34,140310
,4,35,43750
,4,36,44105
,4,37,140305
,4,38,44040
,4,39,140305
,4,40,21345
,4,41,139290
,4,42,43670
,4,43,140305
,4,44,44040
,4,45,140305
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,3,19530,5440
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5450
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5460
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5470
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5480
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5490
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5500
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5510
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5520
,3,19531,5525
,3,19532,5530
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135500
,3,19537,6475
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,4370
,4,4,139280
,4,5,30850
,4,6,139280
,4,7,4890
,4,8,5735
,4,9,139280
,4,10,4900
,4,11,5740
,4,12,139280
,4,13,4910
,4,14,5745
,4,15,139280
,4,16,4920
,4,17,5750
,4,18,139280
,4,19,4940
,4,20,5755
,4,21,139280
,4,22,4950
,4,23,5760
,4,24,139280
,4,25,4960
,4,26,5765
,4,27,139280
,4,28,4980
,4,29,5770
,4,30,139280
,4,31,4990
,4,32,5775
,4,33,139280
,4,34,5000
,4,35,5780
,4,36,139280
,4,37,4375
,4,38,44470
,4,39,4780
,4,40,44650
,4,41,4370
,4,42,139280
,4,43,5010
,4,44,5785
,4,45,139280
,4,46,5360
,4,47,5805
,4,48,139280
,4,49,5380
,4,50,5810
,4,51,139280
,4,52,5420
,4,53,5815
,4,54,139280
,4,55,5460
,4,56,5825
,4,57,139280
,4,58,5320
,4,59,5790
,4,60,139280
,4,61,5330
,4,62,5795
,4,63,139280
,4,64,5350
,4,65,5800
,4,66,139280
,4,67,5510
,4,68,5850
,4,69,139280
,4,70,5500
,4,71,5845
,4,72,139280
,4,73,5490
,4,74,5840
,4,75,139280
,4,76,5480
,4,77,5835
,4,78,139280
,4,79,5470
,4,80,5830
,4,81,139280
,4,82,5450
,4,83,5820
,4,84,139280
,4,85,4375
,4,86,44475
,4,87,4780
,4,88,44650
,4,89,139740
,4,90,44040
,4,91,139740
,3,19529,4430
,3,19530,4890
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4910
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5550
,3,19531,5555
,3,19532,5560
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135520
,3,19537,6480
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,4395
,4,4,139280
,4,5,30850
,4,6,139280
,4,7,4890
,4,8,5855
,4,9,139280
,4,10,4910
,4,11,5860
,4,12,139280
,4,13,4375
,4,14,44520
,4,15,4780
,4,16,44650
,4,17,139745
,4,18,44040
,4,19,139745
,3,19529,4430
,3,19530,4890
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4900
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4910
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5585
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5595
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5605
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4830
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4820
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5625
,3,19531,5630
,3,19532,5635
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135545
,3,19537,6495
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,4385
,4,4,139280
,4,5,30850
,4,6,139280
,4,7,44020
,4,8,4385
,4,9,139280
,4,10,30850
,4,11,139280
,4,12,16520
,4,13,4385
,4,14,139280
,4,15,44020
,4,16,4385
,4,17,139280
,4,18,44020
,4,19,4385
,4,20,139280
,4,21,129165
,4,22,1105
,4,23,44020
,4,24,4385
,4,25,139280
,4,26,128930
,4,27,1110
,4,28,44020
,4,29,4385
,4,30,139280
,4,31,129685
,4,32,4400
,4,33,139280
,4,34,44020
,4,35,4385
,4,36,139280
,4,37,129970
,4,38,1115
,4,39,44020
,4,40,4385
,4,41,139280
,4,42,129180
,4,43,1120
,4,44,44020
,4,45,4385
,4,46,139280
,4,47,44020
,4,48,4385
,4,49,139280
,4,50,30850
,4,51,139280
,4,52,4890
,4,53,5865
,4,54,139280
,4,55,4900
,4,56,5870
,4,57,139280
,4,58,4910
,4,59,5875
,4,60,139280
,4,61,5585
,4,62,5880
,4,63,139280
,4,64,5595
,4,65,5885
,4,66,139280
,4,67,5605
,4,68,5890
,4,69,139280
,4,70,4375
,4,71,44570
,4,72,4780
,4,73,44650
,4,74,4385
,4,75,139280
,4,76,4830
,4,77,5895
,4,78,139280
,4,79,4820
,4,80,5900
,4,81,139280
,4,82,4375
,4,83,44520
,4,84,4780
,4,85,44650
,4,86,139760
,4,87,44040
,4,88,139760
,3,19529,4430
,3,19530,5645
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4890
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5660
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5670
,3,19531,1025
,3,19532,1030
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,5680
,3,19531,5685
,3,19532,5690
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135560
,3,19537,6520
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,4390
,4,4,139280
,4,5,30850
,4,6,139280
,4,7,5660
,4,8,5910
,4,9,139280
,4,10,4890
,4,11,5905
,4,12,139280
,4,13,4375
,4,14,44520
,4,15,4780
,4,16,44650
,4,17,139770
,4,18,44040
,4,19,139770
,3,19529,4430
,4,1,5700
,4,3,5705
,4,5,4780
,4,6,4775
,4,7,4800
,4,8,4795
,4,9,5710
,4,10,4815
,4,11,5715
,4,12,4825
,4,13,5720
,4,14,4835
,4,15,5725
,4,16,4845
,4,17,5730
,4,18,4855
,4,19,4870
,4,20,4865
,4,21,5735
,4,22,4885
,4,23,5740
,4,24,4895
,4,25,5745
,4,26,4905
,4,27,5750
,4,28,4915
,4,29,5755
,4,30,4935
,4,31,5760
,4,32,4945
,4,33,5765
,4,34,4955
,4,35,5770
,4,36,4975
,4,37,5775
,4,38,4985
,4,39,5780
,4,40,4995
,4,41,5785
,4,42,5005
,4,43,5030
,4,44,5025
,4,45,5050
,4,46,5045
,4,47,5070
,4,48,5065
,4,49,5090
,4,50,5085
,4,51,5110
,4,52,5105
,4,53,5120
,4,54,5115
,4,55,5130
,4,56,5125
,4,57,5150
,4,58,5145
,4,59,5160
,4,60,5155
,4,61,5180
,4,62,5175
,4,63,5200
,4,64,5195
,4,65,5210
,4,66,5205
,4,67,5220
,4,68,5215
,4,69,5230
,4,70,5225
,4,71,5240
,4,72,5235
,4,73,5250
,4,74,5245
,4,75,5260
,4,76,5255
,4,77,5270
,4,78,5265
,4,79,5290
,4,80,5285
,4,81,5300
,4,82,5295
,4,83,5790
,4,84,5315
,4,85,5795
,4,86,5325
,4,87,5340
,4,88,5335
,4,89,5800
,4,90,5345
,4,91,5805
,4,92,5355
,4,93,5810
,4,94,5375
,4,95,5400
,4,96,5395
,4,97,5815
,4,98,5415
,4,99,5440
,4,100,5435
,4,101,5820
,4,102,5445
,4,103,5825
,4,104,5455
,4,105,5830
,4,106,5465
,4,107,5835
,4,108,5475
,4,109,5840
,4,110,5485
,4,111,5845
,4,112,5495
,4,113,5850
,4,114,5505
,4,115,5520
,4,116,5515
,4,117,5855
,4,118,5535
,4,119,5860
,4,120,5540
,4,121,5550
,4,122,5545
,4,123,5865
,4,124,5565
,4,125,5870
,4,126,5570
,4,127,5875
,4,128,5575
,4,129,5880
,4,130,5580
,4,131,5885
,4,132,5590
,4,133,5890
,4,134,5600
,4,135,5895
,4,136,5610
,4,137,5900
,4,138,5615
,4,139,5625
,4,140,5620
,4,141,5645
,4,142,5640
,4,143,5905
,4,144,5650
,4,145,5910
,4,146,5655
,4,147,5670
,4,148,5665
,4,149,5680
,4,150,5675
,3,19530,655
,3,19531,1165
,3,19532,1170
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,5925
,6,1,85
,3,19657,4375
,3,19658,133280
,3,19530,655
,3,19531,5935
,3,19532,5940
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,5945
,3,19659,5950
,6,1,85
,3,19536,136275
,3,19537,17145
,3,19529,139175
,4,1,44060
,4,2,31895
,4,3,140440
,4,5,31900
,4,6,140445
,4,7,140450
,4,8,44040
,4,9,140450
,3,19529,4430
,4,5,270
,3,19657,4375
,3,19658,133285
,4,1,31895
,4,4,31900
,3,19530,655
,3,19531,5960
,3,19532,5965
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,5945
,6,1,85
,3,19536,136365
,3,19537,17290
,3,19529,139175
,4,1,44060
,4,2,31895
,4,3,140625
,4,4,140630
,4,5,44040
,4,6,140630
,3,19529,4430
,3,19530,655
,3,19531,5975
,3,19532,5980
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,5945
,6,1,85
,3,19536,136350
,3,19537,17280
,3,19529,139175
,4,1,44060
,4,2,31900
,4,3,140605
,4,4,140610
,4,5,44040
,4,6,140610
,3,19529,4430
,3,19530,655
,3,19531,5990
,3,19532,5995
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,6000
,3,19659,6005
,6,1,85
,3,19536,136705
,3,19537,20485
,3,19529,139175
,4,1,44060
,4,2,31915
,4,3,140740
,4,5,31920
,4,6,140745
,4,7,140750
,4,8,44040
,4,9,140750
,3,19529,4430
,4,5,270
,3,19657,4375
,3,19658,133290
,4,1,31915
,4,4,31920
,3,19530,655
,3,19531,6015
,3,19532,6020
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,6000
,6,1,85
,3,19536,136820
,3,19537,20500
,3,19529,139175
,4,1,44060
,4,2,31915
,4,3,140785
,4,4,140790
,4,5,44040
,4,6,140790
,3,19529,4430
,3,19530,655
,3,19531,6030
,3,19532,6035
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,6000
,6,1,85
,3,19536,136330
,3,19537,17265
,3,19529,139175
,4,1,44060
,4,2,31920
,4,3,140580
,4,4,140585
,4,5,44040
,4,6,140585
,3,19529,4430
,3,19530,655
,3,19531,6045
,3,19532,6050
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,6055
,3,19659,6060
,6,1,85
,3,19536,136740
,3,19537,20495
,3,19529,139175
,4,1,44060
,4,2,31905
,4,3,140770
,4,5,31910
,4,6,140775
,4,7,140780
,4,8,44040
,4,9,140780
,3,19529,4430
,4,5,270
,3,19657,4375
,3,19658,40345
,4,1,31905
,4,4,31910
,3,19530,655
,3,19531,6070
,3,19532,6075
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,6055
,6,1,85
,3,19536,136860
,3,19537,20510
,3,19529,139175
,4,1,44060
,4,2,31905
,4,3,140805
,4,4,140810
,4,5,44040
,4,6,140810
,3,19529,4430
,3,19530,655
,3,19531,6085
,3,19532,6090
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,6055
,6,1,85
,3,19536,136355
,3,19537,17285
,3,19529,139175
,4,1,44060
,4,2,31910
,4,3,140615
,4,4,140620
,4,5,44040
,4,6,140620
,3,19529,4430
,3,19530,655
,3,19531,6100
,3,19532,6105
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,6110
,3,19659,6115
,6,1,85
,3,19536,136720
,3,19537,20490
,3,19529,139175
,4,1,44060
,4,2,31925
,4,3,140755
,4,5,31930
,4,6,140760
,4,7,140765
,4,8,44040
,4,9,140765
,3,19529,4430
,4,5,270
,4,1,31925
,4,4,31930
,3,19530,655
,3,19531,6125
,3,19532,6130
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,6110
,6,1,85
,3,19536,136340
,3,19537,17270
,3,19529,139175
,4,1,44060
,4,2,31930
,4,3,140590
,4,4,140595
,4,5,44040
,4,6,140595
,3,19529,4430
,3,19530,655
,3,19531,6140
,3,19532,6145
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,6110
,6,1,85
,3,19536,136835
,3,19537,20505
,3,19529,139175
,4,1,44060
,4,2,31925
,4,3,140795
,4,4,140800
,4,5,44040
,4,6,140800
,3,19529,4430
,3,19530,655
,3,19531,6155
,3,19532,6160
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,6165
,3,19659,6170
,6,1,85
,3,19536,136895
,3,19537,21005
,3,19529,139175
,4,1,44060
,4,2,31935
,4,3,140835
,4,5,31940
,4,6,140840
,4,7,140845
,4,8,44040
,4,9,140845
,3,19529,4430
,4,5,270
,4,1,31935
,4,4,31940
,3,19530,655
,3,19531,6180
,3,19532,6185
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,6165
,6,1,85
,3,19536,136935
,3,19537,21015
,3,19529,139175
,4,1,44060
,4,2,31935
,4,3,140855
,4,4,140860
,4,5,44040
,4,6,140860
,3,19529,4430
,3,19530,655
,3,19531,6195
,3,19532,6200
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,6165
,6,1,85
,3,19536,136300
,3,19537,17160
,3,19529,139175
,4,1,44060
,4,2,31940
,4,3,140480
,4,4,140485
,4,5,44040
,4,6,140485
,3,19529,4430
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,3,19659,6210
,6,1,85
,4,1,31945
,4,4,31950
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,6225
,3,19532,6230
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136305
,3,19537,17165
,3,19529,139175
,4,1,44060
,4,2,31950
,4,3,140490
,4,4,140495
,4,5,44040
,4,6,140495
,3,19529,4430
,3,19530,655
,3,19531,325
,3,19532,330
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,1095
,3,19532,1100
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,4,3,6250
,4,1,6255
,4,3,6260
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,6275
,3,19532,6265
,3,19533,320
,3,19548,4755
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135345
,3,19537,6245
,3,19529,139175
,4,1,5695
,4,2,44020
,4,3,44060
,4,4,5700
,4,5,5710
,4,6,139280
,4,7,44020
,4,8,5705
,4,9,5715
,4,10,139280
,4,11,44020
,4,12,4870
,4,13,44555
,4,14,4395
,4,15,139280
,4,16,5915
,4,18,44020
,4,19,44020
,4,20,4395
,4,21,139280
,4,22,4395
,4,23,139280
,4,25,6255
,4,26,44115
,4,27,44020
,4,28,4395
,4,29,139280
,4,30,30850
,4,31,139280
,4,32,16520
,4,33,4395
,4,34,139280
,4,35,44020
,4,36,4370
,4,37,139280
,4,38,30850
,4,39,139280
,4,40,4370
,4,41,139280
,4,42,16520
,4,43,139690
,4,44,5160
,4,45,139280
,4,46,31895
,4,47,31900
,4,48,31905
,4,49,31910
,4,50,31915
,4,51,31920
,4,52,31925
,4,53,31930
,4,54,31935
,4,55,31940
,4,56,31945
,4,57,31950
,4,58,4375
,4,59,44570
,4,60,4890
,4,61,5920
,4,63,44020
,4,64,129190
,4,65,5930
,4,67,44020
,4,68,129565
,4,69,5955
,4,71,44020
,4,72,129245
,4,73,5970
,4,75,44020
,4,76,130310
,4,77,5985
,4,79,44020
,4,80,129785
,4,81,6010
,4,83,44020
,4,84,129320
,4,85,6025
,4,87,44020
,4,88,129735
,4,89,6040
,4,91,44020
,4,92,130165
,4,93,6065
,4,95,44020
,4,96,130025
,4,97,6080
,4,99,44020
,4,100,130175
,4,101,6095
,4,103,44020
,4,104,129370
,4,105,6120
,4,107,44020
,4,108,130290
,4,109,6135
,4,111,44020
,4,112,128840
,4,113,6150
,4,115,44020
,4,116,129105
,4,117,6175
,4,119,44020
,4,120,128935
,4,121,6190
,4,123,44020
,4,124,129265
,4,125,6205
,4,127,44020
,4,128,128960
,4,129,6215
,4,131,44020
,4,132,129615
,4,133,6220
,4,135,44020
,4,136,4375
,4,137,44480
,4,138,4800
,4,139,44650
,4,140,4370
,4,141,139280
,4,142,6235
,4,144,44020
,4,145,44020
,4,146,4370
,4,147,139280
,4,148,44020
,4,149,5520
,4,150,44555
,4,151,5550
,4,152,44555
,4,153,4385
,4,154,139280
,4,155,6240
,4,157,44020
,4,158,44020
,4,159,4385
,4,160,139280
,4,161,4385
,4,162,139280
,4,163,6260
,4,164,44115
,4,165,44020
,4,166,5625
,4,167,44555
,4,168,4390
,4,169,139280
,4,170,30850
,4,171,139280
,4,172,4390
,4,173,139280
,4,174,16520
,4,175,139350
,4,176,4390
,4,177,139280
,4,178,5670
,4,179,139280
,4,180,44020
,4,181,5680
,4,182,44555
,4,183,139695
,4,184,44040
,4,185,139695
,3,19544,425
,3,19545,130345
,3,19529,142500
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,2,828,2950
,2,1535,85
,2,1536,85
,2,1537,85
,2,1538,85
,2,1539,85
,2,1540,85
,2,1541,85
,2,1542,85
,2,1543,85
,2,1544,85
,2,1545,85
,2,1546,85
,2,71,31785
,2,19095,31790
,2,19168,31795
,2,19106,31800
,2,19313,31805
,2,19210,31810
,2,19120,31815
,2,19201,31820
,2,19285,31825
,2,19257,31830
,2,19287,31835
,2,19129,31840
,2,19309,31845
,2,19026,31850
,2,19078,31855
,2,19044,31860
,2,19110,31865
,2,19049,31870
,2,19178,31875
,2,19076,70
,3,19600,31880
,3,19529,31885
,3,19544,6310
,3,19546,2950
,4,2,31960
,3,19547,31955
,3,19529,142500
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,3,6510
,4,1,6515
,3,19529,4410
,3,19549,6530
,3,19530,6535
,3,19529,575
,4,3,6540
,3,19529,135065
,3,19530,6550
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6560
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6570
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6580
,3,19531,6585
,3,19532,6590
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136985
,3,19537,21165
,3,19529,139175
,4,1,44060
,4,2,44140
,4,3,43890
,4,6,44140
,4,7,43755
,4,8,44020
,4,9,44295
,4,10,43950
,4,13,140915
,4,14,44040
,4,15,140915
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,19530,6600
,3,19531,6605
,3,19532,6610
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136980
,3,19660,21125
,3,19537,21130
,3,19529,139175
,4,1,44060
,4,2,44145
,4,3,655
,4,4,140900
,4,5,44040
,4,6,140900
,4,9,44140
,4,10,6980
,4,11,140905
,4,12,44020
,4,13,44140
,4,14,655
,4,15,44020
,4,16,6605
,4,17,44140
,4,18,6980
,4,19,140905
,4,20,6980
,4,21,140905
,4,22,21345
,4,23,139290
,4,24,44245
,4,25,21345
,4,26,139355
,4,27,6605
,4,28,6605
,4,29,6580
,4,30,140910
,4,31,44140
,4,32,21345
,4,33,139275
,4,34,44070
,4,35,6570
,4,36,44490
,4,37,6560
,4,38,44625
,4,39,44145
,4,40,139320
,4,41,21140
,4,42,44190
,4,43,3630
,4,44,140285
,4,45,21145
,4,46,44115
,4,47,21345
,4,48,139295
,4,49,44145
,4,50,139320
,4,51,21150
,4,52,44190
,4,53,43750
,4,54,43810
,4,55,139405
,4,56,43750
,4,57,43810
,4,58,140900
,4,59,44040
,4,60,140900
,4,61,43950
,4,62,21345
,4,63,139350
,4,64,655
,4,65,655
,4,66,44020
,4,67,140095
,4,68,140095
,4,69,21155
,4,70,44190
,4,71,140035
,4,72,43750
,4,73,44105
,4,74,140900
,4,75,44040
,4,76,140900
,4,77,43670
,4,78,139320
,4,79,43790
,4,80,21160
,4,81,44190
,4,82,139405
,4,83,43750
,4,84,43810
,4,85,140900
,4,86,44040
,4,87,140900
,4,88,43950
,4,89,44020
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,4,11,275
,4,12,280
,4,13,10255
,4,14,11745
,3,19530,6620
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6630
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6640
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6650
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6660
,3,19531,6665
,3,19532,6670
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138655
,3,19537,30365
,3,19529,139175
,4,1,44060
,4,2,43810
,4,3,139320
,4,4,139405
,4,5,43750
,4,6,43810
,4,7,142190
,4,8,44040
,4,9,142190
,4,10,43670
,4,11,142190
,4,12,44040
,4,13,142190
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4530
,4,10,275
,4,11,280
,4,12,10255
,3,19530,6680
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4890
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4900
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6700
,3,19531,6705
,3,19532,6710
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136970
,3,19537,21120
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,21115
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,129575
,4,9,4250
,4,10,44595
,4,11,140885
,4,12,44040
,4,13,140885
,4,14,21345
,4,15,139290
,4,16,44000
,4,17,6620
,4,18,140890
,4,19,6600
,4,20,140895
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,6720
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6730
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6740
,3,19531,6745
,3,19532,6750
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137935
,3,19537,28390
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,28385
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,4270
,4,9,140275
,4,10,3630
,4,11,140285
,4,12,44105
,4,13,28400
,4,14,44115
,4,15,140035
,4,16,44105
,4,17,44410
,4,18,140035
,4,19,43750
,4,20,44105
,4,21,141730
,4,22,44040
,4,23,141730
,4,24,43670
,4,25,44020
,4,26,141730
,4,27,44040
,4,28,141730
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4530
,3,19530,6760
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6770
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6780
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6790
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6800
,3,19531,6805
,3,19532,6810
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138650
,3,19537,30360
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,30350
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,21345
,4,9,142175
,4,10,44000
,4,11,4195
,4,12,44595
,4,13,44020
,4,14,4195
,4,15,44595
,4,16,44020
,4,17,43670
,4,18,43810
,4,19,43950
,4,20,43890
,4,21,43670
,4,22,43810
,4,23,43950
,4,24,43890
,4,25,30355
,4,26,43700
,4,27,43670
,4,28,142180
,4,29,44040
,4,30,142180
,4,31,43695
,4,32,44020
,4,33,43950
,4,34,44330
,4,35,6640
,4,36,44485
,4,37,44245
,4,38,6660
,4,39,142185
,4,40,44245
,4,41,21345
,4,42,139355
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4530
,4,10,275
,3,19530,6820
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6830
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6840
,3,19531,6845
,3,19532,6850
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137195
,3,19537,22085
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,22070
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,4270
,4,9,140275
,4,10,21345
,4,11,139290
,4,12,4300
,4,13,141045
,4,14,1020
,4,15,320
,4,16,1020
,4,17,43770
,4,18,129665
,4,19,22080
,4,20,44210
,4,21,44355
,4,22,9320
,4,23,44565
,4,24,44020
,4,25,44020
,4,26,44085
,4,27,4270
,4,28,44595
,4,29,4375
,4,30,141050
,4,31,22095
,4,32,44115
,4,33,3630
,4,34,140285
,4,35,22100
,4,36,44115
,4,37,44020
,4,38,44140
,4,39,139320
,4,40,44020
,4,41,139195
,4,42,44020
,4,43,43755
,4,44,43750
,4,45,43810
,4,46,139405
,4,47,43750
,4,48,43810
,4,49,141055
,4,50,44040
,4,51,141055
,4,52,43950
,4,53,140095
,4,54,139195
,4,55,44020
,4,56,44140
,4,57,43750
,4,58,44105
,4,59,140055
,4,60,43750
,4,61,44105
,4,62,141055
,4,63,44040
,4,64,141055
,4,65,43670
,4,66,44020
,4,67,141055
,4,68,44040
,4,69,141055
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10255
,4,12,11745
,4,13,11750
,3,19530,6860
,3,19531,6865
,3,19532,6870
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137590
,3,19537,26955
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,26940
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,4270
,4,9,44515
,4,10,21345
,4,11,139280
,4,12,44000
,4,13,1020
,4,14,320
,4,15,1020
,4,16,43770
,4,17,129665
,4,18,26950
,4,19,44210
,4,20,44355
,4,21,9320
,4,22,44565
,4,23,44020
,4,24,44020
,4,25,44085
,4,26,4270
,4,27,44595
,4,28,44020
,4,29,44140
,4,30,139320
,4,31,44020
,4,32,139195
,4,33,44020
,4,34,43750
,4,35,43810
,4,36,141360
,4,37,44040
,4,38,141360
,4,39,43950
,4,40,140095
,4,41,139195
,4,42,44020
,4,43,43750
,4,44,44105
,4,45,141360
,4,46,44040
,4,47,141360
,4,48,43670
,4,49,141360
,4,50,44040
,4,51,141360
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,3,19530,6880
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6890
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6900
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6910
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6920
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6930
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6940
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6950
,3,19531,4220
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6960
,3,19531,6965
,3,19532,6970
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135600
,3,19537,7225
,3,19529,139175
,4,1,43985
,4,2,44060
,4,3,44020
,4,4,4375
,4,5,139280
,4,6,30850
,4,7,139280
,4,8,16520
,4,9,4375
,4,10,139280
,4,11,44020
,4,12,4375
,4,13,139280
,4,14,6950
,4,15,7055
,4,16,139280
,4,17,4375
,4,18,44590
,4,19,4780
,4,20,44650
,4,22,44215
,4,23,44020
,4,24,44285
,4,25,7205
,4,26,44335
,4,27,4375
,4,28,139280
,4,29,30850
,4,30,139280
,4,31,4890
,4,32,4890
,4,33,6985
,4,34,139280
,4,35,7235
,4,36,44075
,4,37,4900
,4,38,4900
,4,39,6990
,4,40,139280
,4,41,7240
,4,42,44075
,4,43,6700
,4,44,6700
,4,45,6995
,4,46,139280
,4,47,7245
,4,48,44075
,4,49,7360
,4,50,7360
,4,51,6720
,4,52,139280
,4,53,7250
,4,54,44075
,4,55,7375
,4,56,7375
,4,57,6730
,4,58,139280
,4,59,7255
,4,60,43965
,4,61,7470
,4,62,7470
,4,63,6740
,4,64,139280
,4,65,7260
,4,66,43965
,4,67,6770
,4,68,6770
,4,69,7000
,4,70,139280
,4,71,7265
,4,72,44075
,4,73,7390
,4,74,7390
,4,75,6780
,4,76,139280
,4,77,7270
,4,78,44075
,4,79,7410
,4,80,7410
,4,81,6790
,4,82,139280
,4,83,7275
,4,84,43965
,4,85,7430
,4,86,7430
,4,87,6800
,4,88,139280
,4,89,7280
,4,90,43965
,4,91,7450
,4,92,7450
,4,93,6820
,4,94,139280
,4,95,7285
,4,96,43965
,4,97,6830
,4,98,6830
,4,99,7005
,4,100,139280
,4,101,7290
,4,102,44075
,4,103,6840
,4,104,6840
,4,105,7010
,4,106,139280
,4,107,7295
,4,108,43965
,4,109,6860
,4,110,6860
,4,111,7015
,4,112,139280
,4,113,7300
,4,114,43965
,4,115,6880
,4,116,6880
,4,117,7020
,4,118,139280
,4,119,7305
,4,120,43965
,4,121,6890
,4,122,6890
,4,123,7025
,4,124,139280
,4,125,7310
,4,126,43965
,4,127,6900
,4,128,6900
,4,129,7030
,4,130,139280
,4,131,7315
,4,132,43965
,4,133,6910
,4,134,6910
,4,135,7035
,4,136,139280
,4,137,7320
,4,138,43965
,4,139,6920
,4,140,6920
,4,141,7040
,4,142,139280
,4,143,7325
,4,144,43965
,4,145,6930
,4,146,6930
,4,147,7045
,4,148,139280
,4,149,7330
,4,150,43965
,4,151,6940
,4,152,6940
,4,153,7050
,4,154,139280
,4,155,7335
,4,156,43965
,4,157,4375
,4,158,44660
,4,159,4780
,4,160,44650
,4,161,4375
,4,162,139280
,4,163,30850
,4,164,139280
,4,165,44020
,4,166,3630
,4,167,139280
,4,168,4375
,4,169,44555
,4,170,6700
,4,171,6700
,4,172,6995
,4,173,139280
,4,174,7340
,4,175,44075
,4,176,7360
,4,177,7360
,4,178,6720
,4,179,139280
,4,180,7345
,4,181,44075
,4,182,7375
,4,183,7375
,4,184,6730
,4,185,139280
,4,186,7350
,4,187,44075
,4,188,4375
,4,189,44675
,4,190,4800
,4,191,44650
,4,192,139780
,4,193,44040
,4,194,139780
,3,19529,4430
,4,5,4500
,4,6,270
,4,1,6980
,4,3,6550
,4,4,6545
,4,5,6560
,4,6,6555
,4,7,6570
,4,8,6565
,4,9,6580
,4,10,6575
,4,11,6600
,4,12,6595
,4,13,6620
,4,14,6615
,4,15,6630
,4,16,6625
,4,17,6640
,4,18,6635
,4,19,6650
,4,20,6645
,4,21,6660
,4,22,6655
,4,23,6680
,4,24,6675
,4,25,6985
,4,26,6685
,4,27,6990
,4,28,6690
,4,29,6995
,4,30,6695
,4,31,6720
,4,32,6715
,4,33,6730
,4,34,6725
,4,35,6740
,4,36,6735
,4,37,6760
,4,38,6755
,4,39,7000
,4,40,6765
,4,41,6780
,4,42,6775
,4,43,6790
,4,44,6785
,4,45,6800
,4,46,6795
,4,47,6820
,4,48,6815
,4,49,7005
,4,50,6825
,4,51,7010
,4,52,6835
,4,53,7015
,4,54,6855
,4,55,7020
,4,56,6875
,4,57,7025
,4,58,6885
,4,59,7030
,4,60,6895
,4,61,7035
,4,62,6905
,4,63,7040
,4,64,6915
,4,65,7045
,4,66,6925
,4,67,7050
,4,68,6935
,4,69,7055
,4,70,6945
,4,71,6960
,4,72,6955
,3,19529,4410
,4,3,7065
,4,1,7070
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,7085
,3,19532,7075
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135565
,3,19537,7060
,3,19529,139175
,4,1,6975
,4,2,44020
,4,3,44060
,4,4,6980
,4,5,3630
,4,6,139280
,4,7,7070
,4,8,44115
,4,9,44020
,4,10,6960
,4,11,44555
,4,12,139775
,4,13,44040
,4,14,139775
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,3,7135
,2,19076,1070
,3,19529,34480
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,2,7200
,2,19076,430
,3,19529,31135
,3,19530,655
,3,19531,7210
,3,19532,7215
,3,19533,320
,3,19548,6525
,3,19534,335
,3,19535,7220
,6,1,85
,3,19536,135610
,3,19537,7485
,3,19529,139175
,4,1,44060
,4,2,4920
,4,3,139785
,4,4,44140
,4,5,139320
,4,6,44020
,4,7,139790
,4,8,44040
,4,9,139790
,3,19529,4430
,4,5,4515
,4,6,4520
,4,7,275
,4,8,280
,3,19529,4410
,4,3,7230
,4,1,7235
,4,3,7240
,4,5,7245
,4,7,7250
,4,9,7255
,4,11,7260
,4,13,7265
,4,15,7270
,4,17,7275
,4,19,7280
,4,21,7285
,4,23,7290
,4,25,7295
,4,27,7300
,4,29,7305
,4,31,7310
,4,33,7315
,4,35,7320
,4,37,7325
,4,39,7330
,4,41,7335
,4,43,7340
,4,45,7345
,4,47,7350
,3,19530,7360
,3,19531,7365
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134615
,3,19529,139175
,4,1,44020
,3,19530,7375
,3,19531,7380
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134610
,3,19529,139175
,4,1,44020
,3,19530,7390
,3,19531,7395
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134620
,3,19529,139175
,4,1,44020
,2,19076,425
,3,19539,7385
,3,19540,560
,6,64,85
,3,19529,6280
,4,1,7395
,3,19530,7410
,3,19531,7415
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134625
,3,19529,139175
,4,1,44020
,2,19076,425
,3,19539,7405
,3,19540,560
,6,64,85
,3,19529,6280
,4,1,7415
,3,19530,7430
,3,19531,7435
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134630
,3,19529,139175
,4,1,44020
,2,19076,425
,3,19539,7425
,3,19540,560
,6,64,85
,3,19529,6280
,4,1,7435
,3,19530,7450
,3,19531,7455
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134635
,3,19529,139175
,4,1,44020
,2,19076,425
,3,19539,7445
,3,19540,560
,6,64,85
,3,19529,6280
,4,1,7455
,3,19530,7470
,3,19531,7475
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134640
,3,19529,139175
,4,1,44020
,2,19076,425
,3,19539,7465
,3,19540,560
,6,64,85
,3,19529,6280
,4,1,7475
,3,19529,4410
,3,19529,4410
,3,19549,7500
,3,19530,7505
,3,19529,575
,4,3,7510
,3,19529,135065
,3,19529,7520
,4,2,655
,4,3,655
,3,19529,142500
,4,2,7515
,3,19530,4890
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4910
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7545
,3,19531,7550
,3,19532,7555
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136565
,3,19537,20170
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,20165
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,44020
,4,9,134475
,4,10,44020
,4,11,44020
,4,12,44020
,4,13,44020
,4,14,44020
,4,15,44020
,4,16,4250
,4,17,44595
,4,18,4195
,4,19,44595
,4,20,44020
,4,21,44020
,4,22,134475
,4,23,44020
,4,24,44020
,4,25,44020
,4,26,44020
,4,27,44020
,4,28,44020
,4,29,140705
,4,30,44040
,4,31,140705
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,7565
,3,19531,7570
,3,19532,7575
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138095
,3,19537,28825
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,28820
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,44020
,4,9,134475
,4,10,44020
,4,11,44020
,4,12,44020
,4,13,4250
,4,14,44595
,4,15,4195
,4,16,44595
,4,17,44020
,4,18,44020
,4,19,134475
,4,20,44020
,4,21,44020
,4,22,44020
,4,23,142000
,4,24,44040
,4,25,142000
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,7470
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6910
,3,19531,7590
,3,19532,7595
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137125
,3,19537,21620
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,21615
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,4250
,4,9,44595
,4,10,4250
,4,11,44595
,4,12,43890
,4,13,44410
,4,14,4195
,4,15,44595
,4,16,44020
,4,17,43950
,4,18,21345
,4,19,139275
,4,20,43695
,4,21,21345
,4,22,139275
,4,23,44020
,4,24,141000
,4,25,44040
,4,26,141000
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,19530,6920
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7610
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7620
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7630
,3,19531,7635
,3,19532,7640
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137425
,3,19537,23280
,3,19529,139175
,4,1,44060
,4,2,44105
,4,3,44145
,4,4,44020
,4,5,134475
,4,6,44020
,4,7,44020
,4,8,44020
,4,9,44020
,4,10,44020
,4,11,44020
,4,12,141265
,4,13,44040
,4,14,141265
,4,15,44435
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,19530,7650
,3,19531,7655
,3,19532,7660
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137025
,3,19656,134425
,3,19537,21190
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,21185
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,4250
,4,9,44595
,4,10,1020
,4,11,320
,4,12,1020
,4,13,44155
,4,14,990
,4,15,139275
,4,16,43755
,4,17,7690
,4,18,44490
,4,19,140925
,4,20,44040
,4,21,140925
,4,22,7700
,4,23,44490
,4,24,12295
,4,25,140930
,4,26,4250
,4,27,140935
,4,28,12290
,4,29,140940
,4,30,44020
,4,31,12290
,4,32,139275
,4,33,139320
,4,34,12290
,4,35,139275
,4,36,139405
,4,37,4250
,4,38,44595
,4,39,12290
,4,40,139275
,4,41,44020
,4,42,12290
,4,43,139275
,4,44,139320
,4,45,12290
,4,46,139275
,4,47,139405
,4,49,12295
,4,50,139350
,4,51,4250
,4,52,44595
,4,53,21345
,4,54,139275
,4,55,44070
,4,56,21345
,4,57,139275
,4,58,43695
,4,59,128745
,4,60,44020
,4,61,43950
,4,62,44020
,4,63,44020
,4,64,43950
,4,65,21345
,4,66,139275
,4,67,43810
,4,68,7630
,4,69,44490
,4,70,1020
,4,71,320
,4,72,1020
,4,73,43990
,4,74,44020
,4,75,139195
,4,76,44020
,4,77,43810
,4,78,8120
,4,79,139275
,4,80,139405
,4,81,8120
,4,82,139275
,4,83,139405
,4,84,4250
,4,85,44595
,4,86,8120
,4,87,139275
,4,88,7670
,4,89,44625
,4,90,21345
,4,91,139275
,4,92,7630
,4,93,44490
,4,94,43810
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10255
,4,12,11745
,4,13,11750
,3,19530,7670
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7680
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7690
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7700
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7710
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7430
,3,19531,7720
,3,19532,7725
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137415
,3,19537,23275
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,23270
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,4250
,4,9,44595
,4,10,21345
,4,11,139295
,4,12,4195
,4,13,44595
,4,14,44020
,4,15,4195
,4,16,44595
,4,17,44020
,4,18,43670
,4,19,44105
,4,20,43670
,4,21,43695
,4,22,655
,4,23,141255
,4,24,44040
,4,25,141255
,4,26,43670
,4,27,43810
,4,28,43950
,4,29,655
,4,30,43890
,4,31,43975
,4,32,655
,4,33,7630
,4,34,141260
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,3,19530,7735
,3,19531,7740
,3,19532,7745
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136960
,3,19537,21100
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,21075
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,4250
,4,9,44595
,4,10,136950
,4,11,43705
,4,12,21085
,4,13,44210
,4,14,44355
,4,15,140875
,4,16,44040
,4,17,140875
,4,18,21345
,4,19,139295
,4,20,4250
,4,21,44595
,4,22,44030
,4,23,21090
,4,24,43700
,4,25,21345
,4,26,139295
,4,27,43970
,4,28,44020
,4,29,44020
,4,30,44030
,4,31,21095
,4,32,43700
,4,33,7755
,4,34,140880
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,3,19530,7755
,3,19531,7760
,3,19532,7765
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137915
,3,19537,28360
,3,19529,139175
,4,1,44060
,4,2,43970
,4,3,12080
,4,4,44625
,4,5,28340
,4,6,43700
,4,7,141715
,4,8,44040
,4,9,141715
,4,10,28350
,4,11,44210
,4,12,44355
,4,13,28355
,4,14,43700
,4,15,43970
,4,16,7630
,4,17,44490
,4,18,7375
,4,19,44540
,4,20,12080
,4,21,141720
,4,22,140045
,4,23,43970
,4,24,7630
,4,25,141260
,4,26,7375
,4,27,141705
,4,28,140045
,4,29,43970
,4,30,43990
,4,31,43750
,4,32,43810
,4,33,44105
,4,34,44145
,4,35,44020
,4,36,134475
,4,37,44020
,4,38,44020
,4,39,44020
,4,40,44020
,4,41,44020
,4,42,44020
,4,43,7375
,4,44,44540
,4,45,44435
,4,46,7375
,4,47,141705
,4,48,21345
,4,49,139290
,4,50,44030
,4,51,140045
,4,52,44105
,4,53,43750
,4,54,43810
,4,55,139320
,4,56,43750
,4,57,43810
,4,58,139320
,4,59,44070
,4,60,43810
,4,61,44070
,4,62,44020
,4,63,134475
,4,64,44020
,4,65,44020
,4,66,44020
,4,67,44020
,4,68,44020
,4,69,44020
,4,70,7375
,4,71,44540
,4,72,44435
,4,73,7375
,4,74,44540
,4,75,7375
,4,76,44540
,4,77,21345
,4,78,139275
,4,79,43990
,4,80,141715
,4,81,44040
,4,82,141715
,4,83,43670
,4,84,141715
,4,85,44040
,4,86,141715
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10255
,4,12,11745
,4,13,11750
,4,14,285
,4,15,11755
,4,16,290
,4,17,11760
,4,18,28365
,3,19530,7775
,3,19531,7780
,3,19532,7785
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137375
,3,19537,23120
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,23115
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,4250
,4,9,44595
,4,10,21345
,4,11,139295
,4,12,4195
,4,13,44595
,4,14,44020
,4,15,43670
,4,16,43890
,4,17,4195
,4,18,44595
,4,19,44020
,4,20,43890
,4,21,43670
,4,22,43890
,4,23,44105
,4,24,44145
,4,25,44020
,4,26,134475
,4,27,44020
,4,28,44020
,4,29,44020
,4,30,44020
,4,31,44020
,4,32,44020
,4,33,44435
,4,34,141165
,4,35,44040
,4,36,141165
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10255
,3,19530,7795
,3,19531,7800
,3,19532,7805
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137890
,3,19537,28305
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,28300
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,4250
,4,9,44595
,4,10,21345
,4,11,139275
,4,12,4195
,4,13,44595
,4,14,44020
,4,15,43975
,4,16,655
,4,17,141685
,4,18,44040
,4,19,141685
,4,20,4195
,4,21,44595
,4,22,44020
,4,23,21345
,4,24,139295
,4,25,43800
,4,26,655
,4,27,43670
,4,28,21345
,4,29,139275
,4,30,43810
,4,31,43950
,4,32,44105
,4,33,21345
,4,34,139295
,4,35,43890
,4,36,21345
,4,37,139275
,4,38,44105
,4,39,44145
,4,40,44020
,4,41,134475
,4,42,44020
,4,43,44020
,4,44,44020
,4,45,44020
,4,46,44020
,4,47,44020
,4,48,44435
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,3,19530,7815
,3,19531,7820
,3,19532,7825
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138000
,3,19537,28570
,3,19529,139175
,4,1,44060
,4,2,129175
,4,3,28565
,4,4,44150
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,4250
,4,9,44595
,4,10,44020
,4,11,141820
,4,12,44040
,4,13,141820
,3,19529,4430
,3,19530,7835
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7845
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7855
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7865
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7875
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7885
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7895
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7905
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7915
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7925
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7935
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7945
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7955
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7965
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7975
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7985
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,7995
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8005
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8015
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8025
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8035
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8045
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8055
,3,19531,8060
,3,19532,8065
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135670
,3,19537,8470
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,4380
,4,4,139280
,4,5,30850
,4,6,139280
,4,7,16520
,4,8,4380
,4,9,139280
,4,10,44020
,4,11,4380
,4,12,139280
,4,13,7895
,4,14,8200
,4,15,139280
,4,16,4375
,4,17,44590
,4,18,4780
,4,19,44650
,4,20,4380
,4,21,139280
,4,22,30850
,4,23,139280
,4,24,4910
,4,25,8080
,4,26,139280
,4,27,4890
,4,28,8075
,4,29,139280
,4,30,7545
,4,31,8085
,4,32,139280
,4,33,7565
,4,34,8090
,4,35,139280
,4,36,7470
,4,37,8095
,4,38,139280
,4,39,6910
,4,40,8100
,4,41,139280
,4,42,6920
,4,43,8105
,4,44,139280
,4,45,7610
,4,46,8110
,4,47,139280
,4,48,7620
,4,49,8115
,4,50,139280
,4,51,7650
,4,52,8125
,4,53,139280
,4,54,7710
,4,55,8135
,4,56,139280
,4,57,7430
,4,58,8140
,4,59,139280
,4,60,7735
,4,61,8145
,4,62,139280
,4,63,7775
,4,64,8150
,4,65,139280
,4,66,7795
,4,67,8155
,4,68,139280
,4,69,7815
,4,70,8160
,4,71,139280
,4,72,7835
,4,73,8165
,4,74,139280
,4,75,7845
,4,76,8170
,4,77,139280
,4,78,7855
,4,79,8175
,4,80,139280
,4,81,7865
,4,82,8180
,4,83,139280
,4,84,7875
,4,85,8185
,4,86,139280
,4,87,7885
,4,88,8190
,4,89,139280
,4,90,7915
,4,91,8205
,4,92,139280
,4,93,7925
,4,94,8210
,4,95,139280
,4,96,7935
,4,97,8215
,4,98,139280
,4,99,7945
,4,100,8220
,4,101,139280
,4,102,7955
,4,103,8225
,4,104,139280
,4,105,7965
,4,106,8230
,4,107,139280
,4,108,7975
,4,109,8235
,4,110,139280
,4,111,7985
,4,112,8240
,4,113,139280
,4,114,7995
,4,115,8245
,4,116,139280
,4,117,8005
,4,118,8250
,4,119,139280
,4,120,8015
,4,121,8255
,4,122,139280
,4,123,8025
,4,124,8260
,4,125,139280
,4,126,8035
,4,127,8265
,4,128,139280
,4,129,4375
,4,130,44700
,4,131,4780
,4,132,44650
,4,133,139810
,4,134,44040
,4,135,139810
,3,19529,4430
,4,1,8075
,4,2,7530
,4,3,8080
,4,4,7535
,4,5,8085
,4,6,7540
,4,7,8090
,4,8,7560
,4,9,8095
,4,10,7580
,4,11,8100
,4,12,7585
,4,13,8105
,4,14,7600
,4,15,8110
,4,16,7605
,4,17,8115
,4,18,7615
,4,19,7630
,4,20,7625
,4,21,8120
,4,23,8125
,4,24,7645
,4,25,7670
,4,26,7665
,4,27,7680
,4,28,7675
,4,29,8130
,4,31,7690
,4,32,7685
,4,33,7700
,4,34,7695
,4,35,8135
,4,36,7705
,4,37,8140
,4,38,7715
,4,39,8145
,4,40,7730
,4,41,7755
,4,42,7750
,4,43,8150
,4,44,7770
,4,45,8155
,4,46,7790
,4,47,8160
,4,48,7810
,4,49,8165
,4,50,7830
,4,51,8170
,4,52,7840
,4,53,8175
,4,54,7850
,4,55,8180
,4,56,7860
,4,57,8185
,4,58,7870
,4,59,8190
,4,60,7880
,4,61,8195
,4,63,8200
,4,64,7890
,4,65,7905
,4,66,7900
,4,67,8205
,4,68,7910
,4,69,8210
,4,70,7920
,4,71,8215
,4,72,7930
,4,73,8220
,4,74,7940
,4,75,8225
,4,76,7950
,4,77,8230
,4,78,7960
,4,79,8235
,4,80,7970
,4,81,8240
,4,82,7980
,4,83,8245
,4,84,7990
,4,85,8250
,4,86,8000
,4,87,8255
,4,88,8010
,4,89,8260
,4,90,8020
,4,91,8265
,4,92,8030
,4,93,8045
,4,94,8040
,4,95,8055
,4,96,8050
,3,19530,655
,3,19531,1195
,3,19532,1200
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,4515
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,270
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,4,3,8295
,4,1,8300
,4,3,8305
,4,5,8310
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,8325
,3,19532,8315
,3,19533,320
,3,19548,7495
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135655
,3,19537,8290
,3,19529,139175
,4,1,8070
,4,2,44020
,4,3,44060
,4,4,4380
,4,5,139280
,4,6,8270
,4,8,44020
,4,9,44020
,4,10,4380
,4,11,139280
,4,12,4380
,4,13,139280
,4,14,8300
,4,15,44115
,4,16,44020
,4,17,8095
,4,18,139280
,4,19,44020
,4,20,8120
,4,21,7525
,4,22,44150
,4,23,44020
,4,24,8130
,4,25,3630
,4,26,139280
,4,27,8305
,4,28,44115
,4,29,44020
,4,30,8195
,4,31,3630
,4,32,139280
,4,33,8310
,4,34,44115
,4,35,44020
,4,36,8045
,4,37,139280
,4,38,128865
,4,39,130060
,4,40,4375
,4,41,44590
,4,42,129925
,4,43,8275
,4,45,44020
,4,46,129820
,4,47,8280
,4,49,44020
,4,50,129700
,4,51,8285
,4,53,44020
,4,54,4375
,4,55,44675
,4,56,4800
,4,57,44650
,4,58,8055
,4,59,44555
,4,60,139800
,4,61,44040
,4,62,139800
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,2,8380
,0,1421,39715
,0,660,43560
,0,1422,43565
,2,19076,425
,3,19538,39685
,3,19539,28985
,3,19540,43570
,6,64,128610
,3,19529,12650
,4,1,128615
,3,19536,139165
,3,19656,134430
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,142490
,4,4,131880
,4,5,2295
,4,6,129175
,4,7,2295
,4,8,44020
,4,9,132445
,4,10,2790
,4,11,2790
,4,12,132445
,4,13,2790
,4,14,2790
,4,15,21345
,4,16,139275
,4,17,44070
,4,18,21345
,4,19,139275
,4,20,43695
,4,21,128745
,4,22,44020
,4,23,43950
,4,24,44020
,4,25,43950
,4,26,21345
,4,27,139275
,4,28,43810
,4,29,133065
,4,30,3295
,4,31,3295
,4,32,1020
,4,33,133040
,4,34,139405
,4,35,133040
,4,36,139405
,4,37,132445
,4,38,2790
,4,39,2790
,4,40,133040
,4,41,132475
,4,42,2820
,4,43,2820
,4,44,44020
,4,45,43910
,4,46,139195
,4,47,43810
,4,48,21345
,4,49,139275
,4,50,133065
,4,51,3295
,4,52,3295
,4,53,43810
,4,54,44020
,4,55,1020
,4,56,132500
,4,57,132050
,4,58,139320
,4,59,132050
,4,60,139405
,4,61,132445
,4,62,2790
,4,63,2790
,4,64,132050
,4,65,44020
,4,66,132050
,4,67,139320
,4,69,132500
,4,70,132050
,4,71,139405
,4,72,132445
,4,73,2790
,4,74,2790
,4,75,132050
,4,76,44020
,4,77,990
,4,78,139275
,4,79,132205
,4,80,2590
,4,81,2590
,4,82,132830
,4,83,3100
,4,84,3100
,1,0,21180
,2,19076,1070
,3,19599,133975
,3,19529,34480
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,5,8405
,2,19076,1070
,3,19529,34480
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,2,828,1880
,2,19030,85
,2,19264,85
,2,19238,40360
,2,19217,40365
,2,19195,40370
,2,19076,70
,3,19600,40355
,3,19529,133445
,3,19529,4410
,3,19529,4410
,3,19549,8480
,3,19530,8485
,3,19529,575
,4,3,8490
,3,19529,135065
,3,19530,8500
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8510
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8520
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8530
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8540
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8550
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8560
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8570
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8580
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8590
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8600
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8610
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8620
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8630
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8640
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8650
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8660
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8670
,3,19531,4220
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8680
,3,19531,8685
,3,19532,8690
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135685
,3,19537,8770
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,990
,4,4,139280
,4,5,8660
,4,6,8730
,4,7,139280
,4,8,8670
,4,9,8735
,4,10,139280
,4,11,8580
,4,12,8710
,4,13,139280
,4,14,8590
,4,15,8715
,4,16,139280
,4,17,8610
,4,18,8720
,4,19,139280
,4,20,8620
,4,21,8725
,4,22,139280
,4,23,4375
,4,24,44570
,4,25,4780
,4,26,44650
,4,27,139820
,4,28,44040
,4,29,139820
,3,19529,4430
,4,1,8700
,4,3,8705
,4,5,8500
,4,6,8495
,4,7,8510
,4,8,8505
,4,9,8520
,4,10,8515
,4,11,8530
,4,12,8525
,4,13,8540
,4,14,8535
,4,15,8550
,4,16,8545
,4,17,8560
,4,18,8555
,4,19,8570
,4,20,8565
,4,21,8710
,4,22,8575
,4,23,8715
,4,24,8585
,4,25,8600
,4,26,8595
,4,27,8720
,4,28,8605
,4,29,8725
,4,30,8615
,4,31,8630
,4,32,8625
,4,33,8640
,4,34,8635
,4,35,8650
,4,36,8645
,4,37,8730
,4,38,8655
,4,39,8735
,4,40,8665
,4,41,8680
,4,42,8675
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,8755
,3,19532,8745
,3,19533,320
,3,19548,8475
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135680
,3,19537,8740
,3,19529,139175
,4,1,8695
,4,2,44020
,4,3,44060
,4,4,8700
,4,5,44020
,4,6,8705
,4,7,44020
,4,8,8680
,4,9,44555
,4,10,139815
,4,11,44040
,4,12,139815
,4,1,560
,4,1,560
,3,19529,4410
,3,19549,8780
,3,19530,8785
,3,19529,575
,4,3,8790
,3,19529,135065
,3,19530,8800
,3,19531,8805
,3,19532,8810
,3,19533,8815
,3,19548,8775
,3,19534,1450
,3,19535,340
,6,1,8820
,3,19536,135695
,3,19537,9180
,3,19529,139175
,4,1,44060
,4,2,139830
,4,3,44040
,4,4,139830
,3,19529,4430
,3,19544,9175
,3,19546,2565
,4,3,40380
,3,19547,133475
,3,19529,142500
,3,19530,8830
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8840
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8850
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8860
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8870
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8880
,3,19531,8885
,3,19532,8890
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138045
,3,19537,28710
,3,19529,139175
,4,1,44060
,4,2,4215
,4,3,44595
,4,4,44020
,4,5,141925
,4,6,44040
,4,7,141925
,3,19529,4430
,4,5,270
,3,19530,8900
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8910
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8920
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8930
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8940
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8950
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8960
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8970
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8980
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,8990
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9000
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9010
,3,19531,4220
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9020
,3,19531,9025
,3,19532,9030
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135705
,3,19537,9185
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,9050
,4,4,139280
,4,5,44020
,4,6,9050
,4,7,139280
,4,8,129435
,4,9,39505
,4,10,44020
,4,11,9050
,4,12,139280
,4,13,129480
,4,14,39510
,4,15,44020
,4,16,9050
,4,17,139280
,4,18,129140
,4,19,39515
,4,20,44020
,4,21,9050
,4,22,139280
,4,23,130075
,4,24,39520
,4,25,44020
,4,26,9050
,4,27,139280
,4,28,130035
,4,29,39525
,4,30,44020
,4,31,9050
,4,32,139280
,4,33,130235
,4,34,39530
,4,35,44020
,4,36,9050
,4,37,139280
,4,38,129075
,4,39,39535
,4,40,44020
,4,41,9050
,4,42,139280
,4,43,129945
,4,44,39540
,4,45,44020
,4,46,9050
,4,47,139280
,4,48,44020
,4,49,9050
,4,50,139280
,4,51,8970
,4,52,9120
,4,53,139280
,4,54,8830
,4,55,9055
,4,56,139280
,4,57,8840
,4,58,9060
,4,59,139280
,4,60,8850
,4,61,9065
,4,62,139280
,4,63,8860
,4,64,9070
,4,65,139280
,4,66,8880
,4,67,9080
,4,68,139280
,4,69,8900
,4,70,9085
,4,71,139280
,4,72,8910
,4,73,9090
,4,74,139280
,4,75,8920
,4,76,9095
,4,77,139280
,4,78,8930
,4,79,9100
,4,80,139280
,4,81,8980
,4,82,9125
,4,83,139280
,4,84,8990
,4,85,9130
,4,86,139280
,4,87,9000
,4,88,9135
,4,89,139280
,4,90,9010
,4,91,9140
,4,92,139280
,4,93,8870
,4,94,9075
,4,95,139280
,4,96,8960
,4,97,9115
,4,98,139280
,4,99,8940
,4,100,9105
,4,101,139280
,4,102,8950
,4,103,9110
,4,104,139280
,4,105,4375
,4,106,44725
,4,107,4780
,4,108,44650
,4,109,139835
,4,110,44040
,4,111,139835
,3,19529,4430
,4,1,9040
,4,3,9045
,4,5,8800
,4,6,8795
,4,7,9050
,4,9,9055
,4,10,8825
,4,11,9060
,4,12,8835
,4,13,9065
,4,14,8845
,4,15,9070
,4,16,8855
,4,17,9075
,4,18,8865
,4,19,9080
,4,20,8875
,4,21,9085
,4,22,8895
,4,23,9090
,4,24,8905
,4,25,9095
,4,26,8915
,4,27,9100
,4,28,8925
,4,29,9105
,4,30,8935
,4,31,9110
,4,32,8945
,4,33,9115
,4,34,8955
,4,35,9120
,4,36,8965
,4,37,9125
,4,38,8975
,4,39,9130
,4,40,8985
,4,41,9135
,4,42,8995
,4,43,9140
,4,44,9005
,4,45,9020
,4,46,9015
,3,19529,4410
,4,3,9150
,4,1,9155
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,9170
,3,19532,9160
,3,19533,320
,3,19548,8775
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135690
,3,19537,9145
,3,19529,139175
,4,1,9035
,4,2,44020
,4,3,44060
,4,4,9040
,4,5,9095
,4,6,139280
,4,7,44020
,4,8,9045
,4,9,9055
,4,10,139280
,4,11,44020
,4,12,8800
,4,13,139280
,4,14,8815
,4,15,44020
,4,16,9050
,4,17,8800
,4,18,139280
,4,19,9155
,4,20,44115
,4,21,44020
,4,22,9050
,4,23,139280
,4,24,4370
,4,25,139280
,4,26,30850
,4,27,139280
,4,28,129095
,4,29,139350
,4,30,990
,4,31,139280
,4,32,8815
,4,33,9050
,4,34,139280
,4,35,44020
,4,36,9020
,4,37,44555
,4,38,139825
,4,39,44040
,4,40,139825
,2,828,2565
,2,19076,430
,3,19600,40375
,3,19529,133470
,3,19529,4410
,3,19529,4410
,3,19549,9195
,3,19530,9200
,3,19529,575
,4,3,9205
,3,19529,135065
,4,1,4890
,4,2,9210
,3,19530,9230
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9240
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9250
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9260
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9270
,3,19531,9275
,3,19532,9280
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135860
,3,19537,10215
,3,19529,139175
,4,1,44060
,4,2,10210
,4,3,43700
,4,4,9840
,4,5,139280
,4,6,10225
,4,7,44115
,4,8,28705
,4,9,139915
,4,10,4665
,4,11,139920
,4,12,139925
,4,13,44040
,4,14,139925
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,3,19530,9290
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9300
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9310
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9320
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9330
,3,19531,9335
,3,19532,9340
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135855
,3,19537,10205
,3,19529,139175
,4,1,44060
,4,2,129090
,4,3,139280
,4,4,9270
,4,5,44650
,4,6,139910
,4,7,44040
,4,8,139910
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,9350
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9360
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9370
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9380
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9390
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9400
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9410
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9420
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9430
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9440
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9450
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9460
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,3,19659,9465
,6,1,85
,4,1,16715
,4,4,28760
,4,7,129250
,4,10,128855
,4,13,23085
,4,16,28800
,3,19530,9475
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9485
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9495
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,3,19659,9500
,6,1,85
,4,1,16715
,4,4,129590
,4,7,129010
,4,10,129400
,4,13,129445
,3,19530,9510
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9520
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9530
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9540
,3,19531,9545
,3,19532,9550
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135870
,3,19537,10250
,3,19529,139175
,4,1,43860
,4,2,44350
,4,3,44060
,4,4,44285
,4,5,10230
,4,6,44335
,4,7,10240
,4,8,44335
,4,9,44020
,4,10,139930
,4,11,44040
,4,12,139930
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,280
,4,9,10255
,4,10,270
,4,11,4520
,4,12,275
,3,19530,9560
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,3,19659,9565
,6,1,85
,4,1,130255
,4,4,128750
,4,7,28135
,3,19530,9575
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9585
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9595
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9605
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9615
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9625
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9635
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9645
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9655
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9665
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9675
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9685
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9695
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9705
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9715
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9725
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9735
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9745
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9755
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9765
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9775
,3,19531,9780
,3,19532,9785
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135825
,3,19537,10200
,3,19529,139175
,4,1,43985
,4,2,44060
,4,3,129160
,4,4,139865
,4,5,129595
,4,6,139275
,4,7,43655
,4,9,139900
,4,10,44040
,4,11,139900
,4,12,43670
,4,13,43890
,4,14,44085
,4,15,9775
,4,16,139275
,4,17,44020
,4,18,44285
,4,19,129740
,4,20,10195
,4,21,44335
,4,22,9540
,4,23,139905
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,3,19530,9795
,3,19531,9800
,3,19532,9805
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135770
,3,19537,10080
,3,19529,139175
,4,1,44060
,4,2,9975
,4,3,44335
,4,4,9995
,4,5,44335
,4,6,10090
,4,7,44190
,4,8,10015
,4,9,44335
,4,10,10095
,4,11,44190
,4,12,10025
,4,13,44335
,4,14,10100
,4,15,44190
,4,16,10040
,4,17,44335
,4,18,10105
,4,19,44190
,4,20,10050
,4,21,44335
,4,22,10110
,4,23,44190
,4,24,10060
,4,25,44335
,4,26,10115
,4,27,44190
,4,28,10070
,4,29,44335
,4,30,10120
,4,31,44190
,4,32,139850
,4,33,44040
,4,34,139850
,3,19529,4430
,4,5,270
,3,19530,9815
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,9825
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4890
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,4,1,9840
,4,3,9845
,4,5,9230
,4,6,9225
,4,7,9240
,4,8,9235
,4,9,9250
,4,10,9245
,4,11,9260
,4,12,9255
,4,13,9270
,4,14,9265
,4,15,9290
,4,16,9285
,4,17,9300
,4,18,9295
,4,19,9310
,4,20,9305
,4,21,9320
,4,22,9315
,4,23,9330
,4,24,9325
,4,25,9350
,4,26,9345
,4,27,9360
,4,28,9355
,4,29,9370
,4,30,9365
,4,31,9380
,4,32,9375
,4,33,9390
,4,34,9385
,4,35,9400
,4,36,9395
,4,37,9410
,4,38,9405
,4,39,9420
,4,40,9415
,4,41,9430
,4,42,9425
,4,43,9440
,4,44,9435
,4,45,9450
,4,46,9445
,4,47,9460
,4,48,9455
,4,49,9850
,4,51,9475
,4,52,9470
,4,53,9485
,4,54,9480
,4,55,9495
,4,56,9490
,4,57,9510
,4,58,9505
,4,59,9520
,4,60,9515
,4,61,9530
,4,62,9525
,4,63,9540
,4,64,9535
,4,65,9560
,4,66,9555
,4,67,9575
,4,68,9570
,4,69,9585
,4,70,9580
,4,71,9595
,4,72,9590
,4,73,9605
,4,74,9600
,4,75,9615
,4,76,9610
,4,77,9625
,4,78,9620
,4,79,9635
,4,80,9630
,4,81,9645
,4,82,9640
,4,83,9655
,4,84,9650
,4,85,9665
,4,86,9660
,4,87,9675
,4,88,9670
,4,89,9685
,4,90,9680
,4,91,9695
,4,92,9690
,4,93,9705
,4,94,9700
,4,95,9715
,4,96,9710
,4,97,9725
,4,98,9720
,4,99,9735
,4,100,9730
,4,101,9745
,4,102,9740
,4,103,9755
,4,104,9750
,4,105,9765
,4,106,9760
,4,107,9775
,4,108,9770
,4,109,9795
,4,110,9790
,4,111,9855
,4,113,9860
,4,115,9815
,4,116,9810
,4,117,9825
,4,118,9820
,4,119,9865
,4,120,9830
,4,121,9870
,3,19530,655
,3,19531,3560
,3,19532,3565
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,4,3,9885
,4,1,9890
,4,3,9895
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,9910
,3,19532,9900
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135735
,3,19537,9880
,3,19529,139175
,4,1,9835
,4,2,44020
,4,3,44060
,4,4,9840
,4,6,44215
,4,7,44020
,4,8,9845
,4,9,44020
,4,10,3555
,4,11,139280
,4,12,3555
,4,13,44020
,4,14,3555
,4,15,139280
,4,16,30850
,4,17,139280
,4,18,16520
,4,19,3555
,4,20,139280
,4,21,44020
,4,22,3555
,4,23,139280
,4,24,9875
,4,26,44020
,4,27,44020
,4,28,3555
,4,29,139280
,4,30,16695
,4,31,30825
,4,32,129880
,4,33,129235
,4,34,128830
,4,35,130145
,4,36,129050
,4,37,4375
,4,38,44500
,4,39,129610
,4,40,9390
,4,41,139280
,4,42,129275
,4,43,9400
,4,44,139280
,4,45,129705
,4,46,9410
,4,47,139280
,4,48,130015
,4,49,9420
,4,50,139280
,4,51,129895
,4,52,9430
,4,53,139280
,4,54,129115
,4,55,9440
,4,56,139280
,4,57,129580
,4,58,9450
,4,59,139280
,4,60,4375
,4,61,44610
,4,62,4800
,4,63,44650
,4,64,9850
,4,65,44020
,4,66,9460
,4,67,139280
,4,68,16715
,4,69,28760
,4,70,129250
,4,71,128855
,4,72,23085
,4,73,28800
,4,74,4375
,4,75,44675
,4,76,129020
,4,77,9475
,4,78,139280
,4,79,129440
,4,80,9485
,4,81,139280
,4,82,4375
,4,83,44520
,4,84,4800
,4,85,44650
,4,86,9495
,4,87,139280
,4,88,16715
,4,89,129590
,4,90,129010
,4,91,129400
,4,92,129445
,4,93,4375
,4,94,44525
,4,95,129440
,4,96,9510
,4,97,139280
,4,98,4375
,4,99,44590
,4,100,4800
,4,101,44650
,4,102,9560
,4,103,139280
,4,104,130255
,4,105,128750
,4,106,28135
,4,107,4375
,4,108,44650
,4,109,128975
,4,110,9575
,4,111,139280
,4,112,129850
,4,113,9585
,4,114,139280
,4,115,129815
,4,116,9595
,4,117,139280
,4,118,130050
,4,119,9605
,4,120,139280
,4,121,128710
,4,122,9615
,4,123,139280
,4,124,129215
,4,125,9625
,4,126,139280
,4,127,130030
,4,128,9635
,4,129,139280
,4,130,128895
,4,131,9645
,4,132,139280
,4,133,129415
,4,134,9655
,4,135,139280
,4,136,129605
,4,137,9665
,4,138,139280
,4,139,130170
,4,140,9675
,4,141,139280
,4,142,129640
,4,143,9685
,4,144,139280
,4,145,130185
,4,146,9695
,4,147,139280
,4,148,130300
,4,149,9705
,4,150,139280
,4,151,129805
,4,152,9715
,4,153,139280
,4,154,4890
,4,155,9725
,4,156,139280
,4,157,4375
,4,158,44530
,4,159,4800
,4,160,44650
,4,161,9795
,4,162,44555
,4,163,129160
,4,164,139280
,4,165,9775
,4,166,139280
,4,167,9775
,4,168,139350
,4,169,129160
,4,170,139280
,4,171,30850
,4,172,139280
,4,173,28255
,4,174,655
,4,175,44020
,4,176,9855
,4,177,3630
,4,178,139280
,4,179,9890
,4,180,44115
,4,181,44020
,4,182,9860
,4,183,4370
,4,184,139280
,4,185,9895
,4,186,44115
,4,187,44020
,4,188,129160
,4,189,139280
,4,190,30850
,4,191,139280
,4,192,9215
,4,193,44065
,4,194,9865
,4,195,139280
,4,196,44355
,4,197,4780
,4,198,44650
,4,199,9870
,4,200,39570
,4,201,9220
,4,202,43700
,4,203,9330
,4,204,44590
,4,205,44020
,4,206,139840
,4,207,44040
,4,208,139840
,4,1,560
,4,1,560
,4,1,560
,2,828,2615
,2,844,85
,2,1405,85
,2,19107,85
,2,19029,85
,2,1137,85
,2,1408,85
,2,19061,2885
,2,19143,3290
,2,19076,70
,3,19600,40385
,3,19529,133490
,2,828,2575
,2,844,85
,2,19173,85
,2,19059,85
,2,19135,85
,2,19144,85
,2,19143,2555
,2,19076,70
,3,19600,40390
,3,19529,133500
,2,828,1965
,2,19302,85
,2,19008,85
,2,1372,85
,2,19052,2205
,2,19223,3365
,2,19216,2895
,2,19262,1850
,2,19000,2515
,2,19100,2265
,2,19258,1700
,2,19036,1795
,2,19138,3315
,2,19176,2170
,2,19286,2840
,2,19183,3090
,2,19289,1680
,2,19311,2285
,2,19214,2210
,2,71,2025
,2,19076,70
,3,19600,40395
,3,19529,133510
,4,1,560
,4,1,560
,4,1,560
,3,19529,4410
,4,3,9965
,4,1,9970
,3,19530,655
,3,19531,9980
,3,19532,9985
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,9990
,6,1,85
,3,19536,135780
,3,19537,10150
,3,19529,139175
,4,1,43985
,4,2,44350
,4,3,44060
,4,4,30825
,4,5,139280
,4,6,990
,4,7,139855
,4,8,44020
,4,9,1570
,4,10,139860
,4,11,128745
,4,12,44415
,4,13,44020
,4,14,10000
,4,15,43725
,4,16,10125
,4,17,44335
,4,18,4370
,4,19,139280
,4,20,30850
,4,21,139280
,4,22,44020
,4,23,10000
,4,24,44020
,4,25,10160
,4,26,44115
,4,27,44020
,4,28,129160
,4,29,139865
,4,30,10165
,4,31,44115
,4,32,44020
,4,33,10000
,4,34,44020
,4,35,30850
,4,36,139305
,4,37,16520
,4,38,44020
,4,39,30850
,4,40,139305
,4,41,30825
,4,42,44020
,4,43,10145
,4,44,44335
,4,45,44020
,4,46,44020
,4,47,139870
,4,48,44040
,4,49,139870
,3,19529,4430
,4,5,4500
,4,6,4515
,4,7,4520
,4,8,4500
,3,19530,10000
,3,19531,10005
,3,19532,10010
,3,19533,10000
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135805
,3,19537,10180
,3,19529,139175
,4,1,44060
,4,2,129740
,4,3,44020
,4,4,4665
,4,5,44020
,4,6,28705
,4,7,44020
,4,8,9840
,4,9,139880
,4,10,44155
,4,11,28255
,4,12,10175
,4,13,44335
,4,14,9540
,4,15,44650
,4,16,28255
,4,17,4230
,4,18,139885
,4,19,44020
,4,20,9775
,4,21,139890
,4,22,10190
,4,23,44115
,4,24,139895
,4,25,44040
,4,26,139895
,3,19529,4430
,4,5,275
,3,19530,10020
,3,19531,10005
,3,19532,10010
,3,19533,10000
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10030
,3,19531,10005
,3,19532,10010
,3,19533,10000
,3,19534,1450
,3,19535,340
,6,1,10035
,3,19544,39575
,3,19546,730
,4,2,133635
,3,19547,133630
,3,19529,142500
,3,19530,10045
,3,19531,10005
,3,19532,10010
,3,19533,10000
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10055
,3,19531,10005
,3,19532,10010
,3,19533,10000
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10065
,3,19531,10005
,3,19532,10010
,3,19533,10000
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10075
,3,19531,10005
,3,19532,10010
,3,19533,10000
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,4,3,10085
,4,1,10090
,4,3,10095
,4,5,10100
,4,7,10105
,4,9,10110
,4,11,10115
,4,13,10120
,3,19530,655
,3,19531,10130
,3,19532,10135
,3,19533,10000
,3,19548,9190
,3,19534,1450
,3,19535,4520
,6,1,10140
,3,19536,135800
,3,19537,10170
,3,19529,139175
,4,1,44060
,4,2,139875
,4,3,44040
,4,4,139875
,3,19529,4430
,3,19544,430
,3,19546,133520
,3,19529,142500
,3,19530,655
,3,19531,10005
,3,19532,10010
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,4,3,10155
,4,1,10160
,4,3,10165
,3,19529,4410
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,4,3,10185
,4,1,10190
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,3,10220
,4,1,10225
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,10235
,6,1,85
,3,19657,9540
,3,19658,133660
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,9190
,3,19534,335
,3,19535,10245
,6,1,85
,3,19657,9540
,3,19658,133665
,3,19529,4410
,3,19529,590
,4,1,10265
,0,43,1835
,0,488,85
,0,44,40420
,2,19076,425
,3,19539,10230
,3,19540,40415
,6,64,85
,3,19529,675
,4,1,4220
,3,19529,590
,4,1,10265
,4,2,10275
,0,43,1835
,0,488,85
,0,44,40420
,2,19076,425
,3,19539,10240
,3,19540,40415
,6,64,85
,3,19529,675
,4,1,4220
,3,19549,10285
,3,19530,10290
,3,19529,575
,4,3,10295
,3,19529,135065
,3,19530,10305
,3,19531,10310
,3,19532,10315
,3,19533,320
,3,19548,10280
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137660
,3,19537,28025
,3,19529,139175
,4,1,44060
,4,2,11390
,4,3,141435
,4,4,28035
,4,5,44115
,4,6,11130
,4,7,141440
,4,8,141445
,4,9,44040
,4,10,141445
,3,19529,4430
,4,5,270
,4,6,4500
,3,19530,10325
,3,19531,10330
,3,19532,10335
,3,19533,320
,3,19548,10280
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136020
,3,19537,12600
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,44140
,4,4,140015
,4,5,44040
,4,6,140015
,4,7,44020
,4,8,43970
,4,9,43970
,4,10,10345
,4,11,140020
,4,12,44020
,4,14,44215
,4,15,10325
,4,16,44595
,4,17,12610
,4,18,44115
,4,19,10365
,4,20,140025
,4,21,44020
,4,22,128740
,4,23,43810
,4,24,265
,4,25,44310
,4,26,44020
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,3,19530,10345
,3,19531,10350
,3,19532,10355
,3,19533,320
,3,19548,10280
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136035
,3,19660,12615
,3,19537,12620
,3,19529,139175
,4,1,44060
,4,2,10385
,4,3,140030
,4,4,44020
,4,7,44140
,4,8,139320
,4,9,44070
,4,10,44140
,4,11,4525
,4,12,44020
,4,13,139405
,4,14,44020
,4,15,10350
,4,17,139405
,4,18,44020
,4,19,43830
,4,20,44020
,4,21,140035
,4,22,44020
,4,23,44020
,4,25,44215
,4,26,10325
,4,27,140040
,4,28,30850
,4,29,139350
,4,30,43845
,4,31,43870
,4,32,44020
,4,33,30850
,4,34,139305
,4,35,16520
,4,36,44020
,4,37,44020
,4,38,10325
,4,39,44595
,4,40,30850
,4,41,139275
,4,42,30850
,4,43,139275
,4,44,129095
,4,45,139350
,4,46,10365
,4,47,140025
,4,48,140045
,4,49,140050
,4,50,44040
,4,51,140050
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10255
,4,12,11745
,4,13,11750
,4,14,285
,3,19530,10365
,3,19531,10370
,3,19532,10375
,3,19533,320
,3,19548,10280
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136070
,3,19660,12660
,3,19537,12665
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,44090
,4,4,44020
,4,5,44020
,4,6,10370
,4,7,44140
,4,8,44020
,4,9,10370
,4,10,10370
,4,11,44105
,4,12,140060
,4,13,44105
,4,14,140060
,4,15,44105
,4,16,140060
,4,17,10325
,4,18,140065
,4,19,44020
,4,20,44105
,4,21,140070
,4,22,44040
,4,23,140070
,4,24,140060
,4,25,43670
,4,26,140070
,4,27,44040
,4,28,140070
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10255
,4,12,11745
,4,13,11750
,4,1,10305
,4,2,10300
,4,3,10385
,4,5,10390
,4,7,10325
,4,8,10320
,4,9,10345
,4,10,10340
,4,11,10365
,4,12,10360
,3,19529,4410
,4,3,10400
,4,1,10405
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,10420
,3,19532,10410
,3,19533,320
,3,19548,10280
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135885
,3,19537,10395
,3,19529,139175
,4,1,10380
,4,2,44020
,4,3,44060
,4,4,10385
,4,5,3630
,4,6,139280
,4,7,10405
,4,8,44115
,4,9,44020
,4,10,10390
,4,11,10385
,4,12,139280
,4,13,44020
,4,14,139935
,4,15,44040
,4,16,139935
,4,1,560
,4,2,10430
,2,19076,430
,3,19529,31135
,4,1,560
,4,2,10440
,2,19076,430
,3,19529,31135
,3,19549,10450
,3,19530,10455
,3,19529,575
,4,3,10460
,3,19529,135065
,4,1,10470
,4,3,10475
,3,19529,7520
,4,1,10485
,4,2,10490
,4,3,10495
,4,4,10500
,4,5,10505
,4,6,10510
,4,7,10515
,4,2,10480
,3,19529,7520
,4,1,10530
,4,2,10535
,4,3,10540
,4,4,10545
,4,5,10550
,4,6,10555
,4,7,10560
,4,8,10565
,4,9,10570
,4,10,10575
,4,11,10580
,4,12,10585
,4,2,10525
,3,19529,7520
,4,1,10600
,4,2,10605
,4,3,10610
,4,4,10615
,4,5,10620
,4,6,10625
,4,7,10630
,4,2,10595
,3,19529,7520
,4,1,10645
,4,2,10650
,4,3,10655
,4,4,10660
,4,5,10550
,4,6,10665
,4,7,10670
,4,8,10675
,4,9,10680
,4,10,10685
,4,11,10690
,4,12,10695
,4,2,10640
,3,19530,10710
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10720
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10730
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10740
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10750
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10760
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10770
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10780
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10790
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10800
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10810
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10820
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10830
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10840
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10850
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10860
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10730
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10875
,3,19531,10880
,3,19532,10885
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138680
,3,19656,30605
,3,19537,30415
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,142260
,4,4,44040
,4,5,142260
,3,19529,4430
,3,19530,4890
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10900
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10910
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4900
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10925
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10935
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4910
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10950
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10960
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10970
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10980
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,10990
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11000
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11010
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11020
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11030
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11040
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11050
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11060
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11070
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11080
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11090
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11100
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11110
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11120
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11130
,3,19531,11135
,3,19532,11140
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137665
,3,19537,28040
,3,19529,139175
,4,1,44060
,4,2,1020
,4,3,320
,4,4,1235
,4,5,43770
,4,6,10710
,4,7,44755
,4,8,4195
,4,9,141450
,4,10,44020
,4,11,44020
,4,12,141455
,4,13,44040
,4,14,141455
,3,19529,4430
,4,5,270
,3,19530,11150
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11160
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11170
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11180
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11190
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11200
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11210
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11220
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11230
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11240
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11250
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11260
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11270
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11280
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11290
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11300
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11310
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11320
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11330
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11340
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11350
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11360
,3,19531,4220
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11370
,3,19531,11375
,3,19532,11380
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135925
,3,19537,11765
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,11390
,4,4,139280
,4,5,10730
,4,6,11440
,4,7,139280
,4,8,10860
,4,9,11435
,4,10,139280
,4,11,10875
,4,12,11445
,4,13,139280
,4,14,4375
,4,15,44675
,4,16,4780
,4,17,44650
,4,18,11390
,4,19,139280
,4,20,30850
,4,21,139280
,4,22,16520
,4,23,11390
,4,24,139280
,4,25,44020
,4,26,11390
,4,27,139280
,4,28,30850
,4,29,139280
,4,30,4890
,4,31,11450
,4,32,139280
,4,33,10900
,4,34,11455
,4,35,139280
,4,36,10910
,4,37,11460
,4,38,139280
,4,39,4900
,4,40,11465
,4,41,139280
,4,42,10925
,4,43,11470
,4,44,139280
,4,45,10935
,4,46,11475
,4,47,139280
,4,48,4910
,4,49,11480
,4,50,139280
,4,51,10950
,4,52,11485
,4,53,139280
,4,54,10960
,4,55,11490
,4,56,139280
,4,57,10970
,4,58,11495
,4,59,139280
,4,60,10980
,4,61,11500
,4,62,139280
,4,63,10990
,4,64,11505
,4,65,139280
,4,66,11000
,4,67,11510
,4,68,139280
,4,69,11010
,4,70,11515
,4,71,139280
,4,72,11020
,4,73,11520
,4,74,139280
,4,75,11030
,4,76,11525
,4,77,139280
,4,78,11040
,4,79,11530
,4,80,139280
,4,81,11050
,4,82,11535
,4,83,139280
,4,84,11060
,4,85,11540
,4,86,139280
,4,87,11070
,4,88,11545
,4,89,139280
,4,90,11080
,4,91,11550
,4,92,139280
,4,93,11090
,4,94,11555
,4,95,139280
,4,96,11100
,4,97,11560
,4,98,139280
,4,99,11110
,4,100,11565
,4,101,139280
,4,102,11120
,4,103,11570
,4,104,139280
,4,105,11130
,4,106,11575
,4,107,139280
,4,108,11150
,4,109,11580
,4,110,139280
,4,111,11160
,4,112,11585
,4,113,139280
,4,114,11170
,4,115,11590
,4,116,139280
,4,117,11180
,4,118,11595
,4,119,139280
,4,120,11190
,4,121,11600
,4,122,139280
,4,123,11200
,4,124,11605
,4,125,139280
,4,126,11210
,4,127,11610
,4,128,139280
,4,129,11220
,4,130,11615
,4,131,139280
,4,132,11230
,4,133,11620
,4,134,139280
,4,135,11240
,4,136,11625
,4,137,139280
,4,138,11250
,4,139,11630
,4,140,139280
,4,141,11260
,4,142,11635
,4,143,139280
,4,144,11270
,4,145,11640
,4,146,139280
,4,147,11280
,4,148,11645
,4,149,139280
,4,150,11320
,4,151,11665
,4,152,139280
,4,153,11290
,4,154,11650
,4,155,139280
,4,156,11300
,4,157,11655
,4,158,139280
,4,159,11310
,4,160,11660
,4,161,139280
,4,162,11340
,4,163,11670
,4,164,139280
,4,165,11350
,4,166,11675
,4,167,139280
,4,168,4375
,4,169,44690
,4,170,4780
,4,171,44650
,4,172,139955
,4,173,44040
,4,174,139955
,3,19529,4430
,4,1,11390
,4,3,10710
,4,4,10705
,4,5,11395
,4,7,11400
,4,9,10720
,4,10,10715
,4,11,10730
,4,12,10725
,4,13,10740
,4,14,10735
,4,15,10750
,4,16,10745
,4,17,10760
,4,18,10755
,4,19,10770
,4,20,10765
,4,21,10780
,4,22,10775
,4,23,11405
,4,25,11410
,4,27,11415
,4,29,10790
,4,30,10785
,4,31,10800
,4,32,10795
,4,33,11420
,4,35,11425
,4,37,10810
,4,38,10805
,4,39,10820
,4,40,10815
,4,41,10830
,4,42,10825
,4,43,10840
,4,44,10835
,4,45,10850
,4,46,10845
,4,47,11430
,4,49,11435
,4,50,10855
,4,51,11440
,4,52,10865
,4,53,11445
,4,54,10870
,4,55,11450
,4,56,10890
,4,57,11455
,4,58,10895
,4,59,11460
,4,60,10905
,4,61,11465
,4,62,10915
,4,63,11470
,4,64,10920
,4,65,11475
,4,66,10930
,4,67,11480
,4,68,10940
,4,69,11485
,4,70,10945
,4,71,11490
,4,72,10955
,4,73,11495
,4,74,10965
,4,75,11500
,4,76,10975
,4,77,11505
,4,78,10985
,4,79,11510
,4,80,10995
,4,81,11515
,4,82,11005
,4,83,11520
,4,84,11015
,4,85,11525
,4,86,11025
,4,87,11530
,4,88,11035
,4,89,11535
,4,90,11045
,4,91,11540
,4,92,11055
,4,93,11545
,4,94,11065
,4,95,11550
,4,96,11075
,4,97,11555
,4,98,11085
,4,99,11560
,4,100,11095
,4,101,11565
,4,102,11105
,4,103,11570
,4,104,11115
,4,105,11575
,4,106,11125
,4,107,11580
,4,108,11145
,4,109,11585
,4,110,11155
,4,111,11590
,4,112,11165
,4,113,11595
,4,114,11175
,4,115,11600
,4,116,11185
,4,117,11605
,4,118,11195
,4,119,11610
,4,120,11205
,4,121,11615
,4,122,11215
,4,123,11620
,4,124,11225
,4,125,11625
,4,126,11235
,4,127,11630
,4,128,11245
,4,129,11635
,4,130,11255
,4,131,11640
,4,132,11265
,4,133,11645
,4,134,11275
,4,135,11650
,4,136,11285
,4,137,11655
,4,138,11295
,4,139,11660
,4,140,11305
,4,141,11665
,4,142,11315
,4,143,11330
,4,144,11325
,4,145,11670
,4,146,11335
,4,147,11675
,4,148,11345
,4,149,11360
,4,150,11355
,4,151,11370
,4,152,11365
,3,19530,655
,3,19531,1240
,3,19532,1245
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,4,3,11690
,4,1,11695
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,11710
,3,19532,11700
,3,19533,320
,3,19548,10445
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135895
,3,19537,11685
,3,19529,139175
,4,1,11385
,4,2,44020
,4,3,44060
,4,4,11390
,4,5,990
,4,6,139280
,4,7,1235
,4,8,139280
,4,9,44020
,4,10,11395
,4,11,4400
,4,12,139280
,4,13,44020
,4,14,11400
,4,15,44020
,4,16,11405
,4,17,10465
,4,18,44080
,4,19,4400
,4,20,139280
,4,21,10470
,4,22,139940
,4,23,44020
,4,24,11390
,4,25,139280
,4,26,11680
,4,28,44020
,4,29,44020
,4,30,11390
,4,31,139280
,4,32,11390
,4,33,139280
,4,34,4400
,4,35,139280
,4,36,11695
,4,37,44115
,4,38,44020
,4,39,11410
,4,40,10520
,4,41,44150
,4,42,44020
,4,43,11415
,4,44,10590
,4,45,44150
,4,46,44020
,4,47,11420
,4,48,10635
,4,49,44150
,4,50,44020
,4,51,11425
,4,52,10700
,4,53,44150
,4,54,44020
,4,55,11430
,4,56,4375
,4,57,44515
,4,58,44020
,4,59,11370
,4,60,44555
,4,61,139945
,4,62,44040
,4,63,139945
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,962,20375
,2,955,20395
,2,756,11715
,2,963,20515
,2,964,20520
,2,965,20525
,2,966,20530
,2,967,20535
,2,968,20540
,2,1652,20545
,2,1653,20555
,2,1654,20565
,2,19076,425
,3,19539,19195
,3,19540,20435
,6,64,39035
,3,19529,33570
,4,1,39470
,3,19536,139060
,3,19656,30610
,3,19529,139175
,4,1,44060
,4,2,44020
,4,1,560
,3,19529,4410
,4,3,11735
,4,1,11740
,3,19529,4410
,3,19549,11775
,3,19530,11780
,3,19529,575
,4,3,11785
,3,19529,135065
,3,19530,11795
,3,19531,11800
,3,19532,11805
,3,19533,320
,3,19548,11770
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137035
,3,19537,21205
,3,19529,139175
,4,1,44060
,4,2,139320
,4,3,21345
,4,4,139290
,4,5,4380
,4,6,44595
,4,7,11795
,4,8,44490
,4,9,139405
,4,10,43750
,4,11,43810
,4,12,140950
,4,13,44040
,4,14,140950
,4,15,43670
,4,16,44020
,4,17,21215
,4,18,5750
,4,19,140955
,4,20,139195
,4,21,44020
,4,22,44140
,4,23,11795
,4,24,140960
,4,25,139405
,4,26,140950
,4,27,44040
,4,28,140950
,4,29,139195
,4,30,44020
,4,31,140950
,4,32,44040
,4,33,140950
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10255
,4,12,11745
,3,19530,10860
,3,19531,11815
,3,19532,11820
,3,19533,320
,3,19548,11770
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137030
,3,19537,21200
,3,19529,139175
,4,1,44060
,4,2,4250
,4,3,44595
,4,4,44020
,4,5,1020
,4,6,320
,4,7,1020
,4,8,44155
,4,9,21195
,4,10,43760
,4,11,655
,4,12,139360
,4,13,655
,4,14,11795
,4,15,44650
,4,16,140945
,4,17,44040
,4,18,140945
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,19530,11830
,3,19531,4220
,3,19533,320
,3,19548,11770
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11840
,3,19531,4220
,3,19533,320
,3,19548,11770
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11850
,3,19531,4220
,3,19533,320
,3,19548,11770
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,11860
,3,19531,11865
,3,19532,11870
,3,19533,320
,3,19548,11770
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137395
,3,19537,23160
,3,19529,139175
,4,1,44060
,4,2,21345
,4,3,139290
,4,4,44145
,4,5,129725
,4,6,7375
,4,7,44540
,4,9,141195
,4,10,44040
,4,11,141195
,4,12,44020
,4,13,44140
,4,14,130160
,4,15,4375
,4,16,44755
,4,17,9320
,4,18,44565
,4,19,44020
,4,20,128835
,4,21,7375
,4,22,140300
,4,23,139705
,4,24,44020
,4,25,21345
,4,26,139290
,4,27,44245
,4,28,140035
,4,29,7360
,4,30,141200
,4,32,44020
,4,33,7375
,4,34,44740
,4,35,139705
,4,36,44020
,4,37,7375
,4,38,140300
,4,39,129575
,4,40,7375
,4,41,44540
,4,42,21345
,4,43,139275
,4,44,11900
,4,45,44625
,4,46,21345
,4,47,139275
,4,48,44070
,4,49,44330
,4,50,128720
,4,51,139405
,4,52,43750
,4,53,44105
,4,54,141195
,4,55,44040
,4,56,141195
,4,57,43670
,4,58,44330
,4,59,44070
,4,60,43790
,4,61,80
,4,62,7375
,4,63,44540
,4,64,129575
,4,65,7375
,4,66,44540
,4,67,139320
,4,68,44330
,4,69,44070
,4,70,43790
,4,71,80
,4,72,7375
,4,73,44540
,4,74,21345
,4,75,139275
,4,76,11900
,4,77,44625
,4,78,21345
,4,79,139275
,4,80,44070
,4,81,44330
,4,82,128720
,4,83,139405
,4,84,43750
,4,85,43810
,4,86,141195
,4,87,44040
,4,88,141195
,4,89,43950
,4,90,21345
,4,91,139275
,4,92,11900
,4,93,44625
,4,94,21345
,4,95,139275
,4,96,44070
,4,97,80
,4,98,7375
,4,99,44540
,4,100,129575
,4,101,7375
,4,102,44540
,4,103,21345
,4,104,139275
,4,105,139320
,4,106,11900
,4,107,44625
,4,108,21345
,4,109,139275
,4,110,44070
,4,111,44330
,4,112,128720
,4,113,139405
,4,114,43750
,4,115,43810
,4,116,141195
,4,117,44040
,4,118,141195
,4,119,43950
,4,120,7360
,4,121,44680
,4,122,128985
,4,123,7375
,4,124,44740
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10255
,4,12,11745
,3,19530,11880
,3,19531,11885
,3,19532,11890
,3,19533,320
,3,19548,11770
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137440
,3,19537,23285
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,44140
,4,4,130160
,4,5,4375
,4,6,44755
,4,7,9320
,4,8,44565
,4,9,44020
,4,10,129790
,4,11,7375
,4,12,140300
,4,14,5785
,4,15,141270
,4,16,21345
,4,17,139290
,4,18,140095
,4,19,44140
,4,20,44020
,4,21,7375
,4,22,140300
,4,23,44020
,4,24,7375
,4,25,140300
,4,26,41220
,4,27,7375
,4,28,140300
,4,29,21345
,4,30,139290
,4,31,139320
,4,32,11900
,4,33,141170
,4,34,21345
,4,35,139290
,4,36,44145
,4,37,7360
,4,38,44670
,4,39,7360
,4,40,44670
,4,42,43750
,4,43,44105
,4,44,141275
,4,45,44040
,4,46,141275
,4,47,43670
,4,48,7360
,4,49,141200
,4,50,129360
,4,51,7375
,4,52,140300
,4,53,141275
,4,54,44040
,4,55,141275
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10255
,4,12,11745
,4,13,11750
,3,19530,11900
,3,19531,11905
,3,19532,11910
,3,19533,320
,3,19548,11770
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137385
,3,19537,23155
,3,19529,139175
,4,1,44060
,4,2,11350
,4,3,139275
,4,4,1020
,4,5,320
,4,6,1020
,4,7,44155
,4,8,4230
,4,9,44595
,4,10,139195
,4,11,44020
,4,12,655
,4,13,43935
,4,14,44020
,4,15,130010
,4,16,7375
,4,17,140300
,4,18,44330
,4,19,44070
,4,20,43790
,4,21,80
,4,22,7375
,4,23,44540
,4,24,43755
,4,25,105
,4,26,115
,4,27,7375
,4,28,44540
,4,29,80
,4,30,7375
,4,31,44540
,4,32,1020
,4,33,320
,4,34,1090
,4,35,43770
,4,36,4195
,4,37,44595
,4,38,44330
,4,39,44070
,4,40,43790
,4,41,80
,4,42,7375
,4,43,44540
,4,44,1020
,4,45,320
,4,46,1190
,4,47,43770
,4,48,4230
,4,49,44595
,4,50,44020
,4,51,7375
,4,52,44540
,4,53,1020
,4,54,320
,4,55,1160
,4,56,43770
,4,57,43755
,4,58,105
,4,59,115
,4,60,7375
,4,61,44540
,4,62,11860
,4,63,141180
,4,64,11880
,4,65,141185
,4,66,141190
,4,67,44040
,4,68,141190
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,3,19530,11920
,3,19531,11925
,3,19532,11930
,3,19533,320
,3,19548,11770
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137380
,3,19537,23130
,3,19529,139175
,4,1,44060
,4,2,44145
,4,3,3630
,4,4,140285
,4,5,23140
,4,6,44115
,4,7,655
,4,8,3630
,4,9,140285
,4,10,23145
,4,11,44115
,4,12,11900
,4,13,141170
,4,14,21345
,4,15,139290
,4,16,44145
,4,18,141175
,4,19,44040
,4,20,141175
,4,21,655
,4,22,21345
,4,23,139290
,4,24,655
,4,25,44020
,4,26,1020
,4,27,320
,4,28,1090
,4,29,43990
,4,30,4195
,4,31,44595
,4,32,1020
,4,33,320
,4,34,1190
,4,35,43990
,4,36,4230
,4,37,44595
,4,38,4290
,4,39,44595
,4,40,9110
,4,41,44565
,4,42,9105
,4,43,44565
,4,44,129800
,4,45,7630
,4,46,44490
,4,47,21345
,4,48,139275
,4,49,43695
,4,50,7630
,4,51,44490
,4,52,655
,4,53,655
,4,54,23125
,4,55,43760
,4,56,655
,4,57,139350
,4,58,3630
,4,59,139275
,4,60,23150
,4,61,44115
,4,62,655
,4,63,11850
,4,64,44760
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,3,19530,11940
,3,19531,11945
,3,19532,11950
,3,19533,320
,3,19548,11770
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135940
,3,19537,12010
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,11960
,4,4,139280
,4,5,10860
,4,6,11965
,4,7,139280
,4,8,11920
,4,9,11970
,4,10,139280
,4,11,4375
,4,12,44520
,4,13,4780
,4,14,44650
,4,15,139965
,4,16,44040
,4,17,139965
,3,19529,4430
,4,1,11960
,4,3,11795
,4,4,11790
,4,5,11965
,4,6,11810
,4,7,11830
,4,8,11825
,4,9,11840
,4,10,11835
,4,11,11850
,4,12,11845
,4,13,11860
,4,14,11855
,4,15,11880
,4,16,11875
,4,17,11900
,4,18,11895
,4,19,11970
,4,20,11915
,4,21,11940
,4,22,11935
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,11990
,3,19532,11980
,3,19533,320
,3,19548,11770
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135935
,3,19537,11975
,3,19529,139175
,4,1,11955
,4,2,44020
,4,3,44060
,4,4,11960
,4,5,990
,4,6,139280
,4,7,129270
,4,8,139280
,4,9,44020
,4,10,11940
,4,11,44555
,4,12,139960
,4,13,44040
,4,14,139960
,4,1,560
,4,2,12000
,3,53,85
,2,19076,430
,3,19600,34460
,3,19529,34465
,4,1,560
,3,19529,4410
,3,19549,12020
,3,19530,12025
,3,19529,575
,4,3,12030
,3,19529,135065
,3,19530,12040
,3,19531,12045
,3,19532,12050
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136560
,3,19537,20150
,3,19529,139175
,4,1,44060
,4,2,129525
,4,3,20105
,4,4,43700
,4,5,9320
,4,6,44565
,4,7,44020
,4,8,990
,4,9,139275
,4,10,43755
,4,11,275
,4,12,655
,4,13,129465
,4,14,139275
,4,15,43755
,4,16,10255
,4,17,655
,4,18,43810
,4,19,130240
,4,20,139275
,4,21,43755
,4,22,11755
,4,23,655
,4,24,44310
,4,25,16695
,4,26,139275
,4,27,655
,4,28,4230
,4,29,139885
,4,30,655
,4,31,4230
,4,32,139885
,4,36,8085
,4,37,140695
,4,38,139195
,4,39,44020
,4,40,275
,4,41,43770
,4,42,10255
,4,43,43990
,4,44,11755
,4,45,43990
,4,46,44140
,4,47,129560
,4,48,20115
,4,49,44210
,4,50,44355
,4,51,9350
,4,52,44565
,4,53,44020
,4,55,43755
,4,56,129560
,4,57,20125
,4,58,44210
,4,59,44355
,4,60,9350
,4,61,44565
,4,62,44020
,4,64,43755
,4,65,129560
,4,66,20135
,4,67,44210
,4,68,44355
,4,69,9350
,4,70,44565
,4,71,44020
,4,73,129560
,4,74,20145
,4,75,44210
,4,76,44355
,4,77,9350
,4,78,44565
,4,79,44020
,4,80,43750
,4,81,44105
,4,82,140700
,4,83,44040
,4,84,140700
,4,85,21345
,4,86,139295
,4,87,43670
,4,88,44020
,4,89,44020
,4,90,140700
,4,91,44040
,4,92,140700
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10255
,4,12,11745
,3,19530,12060
,3,19531,1290
,3,19532,1295
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,12070
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,12080
,3,19531,12085
,3,19532,12090
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137920
,3,19537,28370
,3,19529,139175
,4,1,44060
,4,2,12290
,4,3,140940
,4,4,44095
,4,6,12295
,4,7,141545
,4,8,141725
,4,9,44040
,4,10,141725
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,3,19530,12100
,3,19531,12105
,3,19532,12110
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137735
,3,19537,28180
,3,19529,139175
,4,1,44060
,4,2,140045
,4,3,43825
,4,4,140045
,4,5,140045
,4,6,44180
,4,7,44105
,4,8,44145
,4,9,44020
,4,10,134475
,4,11,44020
,4,12,44020
,4,13,44020
,4,14,44020
,4,15,44020
,4,16,44020
,4,17,141555
,4,18,44435
,4,19,141555
,4,20,43750
,4,21,44105
,4,22,140045
,4,23,44145
,4,24,140045
,4,25,44105
,4,26,44145
,4,27,44020
,4,28,134475
,4,29,44020
,4,30,44020
,4,31,44020
,4,32,44020
,4,33,44020
,4,34,44020
,4,35,141555
,4,36,44435
,4,37,141555
,4,38,43750
,4,39,44105
,4,40,43750
,4,41,44105
,4,42,141560
,4,43,44040
,4,44,141560
,4,45,43670
,4,46,141560
,4,47,44040
,4,48,141560
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10255
,4,12,11745
,3,19530,12120
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,12130
,3,19531,12135
,3,19532,12140
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137715
,3,19537,28175
,3,19529,139175
,4,1,44060
,4,2,129680
,4,3,28170
,4,4,44065
,4,5,44355
,4,6,9320
,4,7,44565
,4,8,44020
,4,9,4250
,4,10,44595
,4,11,130245
,4,12,141515
,4,13,4195
,4,14,44595
,4,15,44020
,4,16,990
,4,17,141535
,4,18,44140
,4,19,43670
,4,20,21345
,4,21,139295
,4,22,43890
,4,23,130245
,4,24,139350
,4,26,141540
,4,27,44040
,4,28,141540
,4,29,12290
,4,30,140940
,4,31,44095
,4,32,43755
,4,33,130245
,4,34,139350
,4,37,12295
,4,38,141545
,4,39,44140
,4,40,12290
,4,41,140940
,4,42,140045
,4,43,130245
,4,44,141500
,4,45,12100
,4,46,141550
,3,19529,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,3,19530,12150
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,12160
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4890
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,12175
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,12185
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,12195
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,12205
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,12215
,3,19531,12220
,3,19532,12225
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136000
,3,19537,12505
,3,19529,139175
,4,1,43985
,4,2,44350
,4,3,44060
,4,4,12500
,4,5,44335
,4,6,140010
,4,7,44040
,4,8,140010
,3,19529,4430
,4,5,270
,4,6,270
,3,19530,12235
,3,19531,12240
,3,19532,12245
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135955
,3,19537,12405
,3,19529,139175
,4,1,43985
,4,2,44060
,4,3,44020
,4,4,12255
,4,5,139280
,4,6,1285
,4,7,44020
,4,8,12255
,4,9,139280
,4,10,30850
,4,11,139280
,4,12,16520
,4,13,12255
,4,14,139280
,4,15,44020
,4,16,12255
,4,17,139280
,4,18,12060
,4,19,139280
,4,20,44020
,4,21,12255
,4,22,139280
,4,23,30850
,4,24,139280
,4,25,12130
,4,26,12265
,4,27,139280
,4,28,12150
,4,29,12280
,4,30,139280
,4,31,4890
,4,32,12285
,4,33,139280
,4,34,12070
,4,35,12260
,4,36,139280
,4,37,4375
,4,38,44585
,4,39,4780
,4,40,44650
,4,41,12255
,4,42,139280
,4,43,30850
,4,44,139280
,4,45,12070
,4,46,139280
,4,47,44020
,4,48,12355
,4,49,44335
,4,50,12365
,4,51,44335
,4,52,12255
,4,53,139280
,4,54,44020
,4,55,12255
,4,56,139280
,4,57,128965
,4,58,44020
,4,59,12255
,4,60,139280
,4,61,129340
,4,62,44020
,4,63,12255
,4,64,139280
,4,65,129845
,4,66,44020
,4,68,44285
,4,69,12375
,4,70,44335
,4,71,12385
,4,72,44335
,4,73,12255
,4,74,139280
,4,75,130240
,4,76,44020
,4,77,12255
,4,78,139280
,4,79,128880
,4,80,44020
,4,81,12395
,4,82,44335
,4,83,12255
,4,84,139280
,4,85,130265
,4,86,12175
,4,87,139280
,4,88,44020
,4,89,12255
,4,90,139280
,4,91,130215
,4,92,12175
,4,93,139280
,4,94,44020
,4,95,12255
,4,96,139280
,4,97,129865
,4,98,12185
,4,99,139280
,4,100,44020
,4,101,12255
,4,102,139280
,4,103,130040
,4,104,12185
,4,105,139280
,4,106,44020
,4,107,12255
,4,108,139280
,4,109,130205
,4,110,12195
,4,111,139280
,4,112,44020
,4,113,12255
,4,114,139280
,4,115,130020
,4,116,12195
,4,117,139280
,4,118,44020
,4,119,12255
,4,120,139280
,4,121,129645
,4,122,12205
,4,123,139280
,4,124,44020
,4,125,12255
,4,126,139280
,4,127,129305
,4,128,12205
,4,129,139280
,4,130,44020
,4,131,12255
,4,132,139975
,4,133,128745
,4,134,44220
,4,135,12215
,4,136,139980
,4,137,44020
,4,138,43750
,4,139,44105
,4,140,139985
,4,141,44040
,4,142,139985
,4,143,43670
,4,144,12255
,4,145,139280
,4,146,44020
,4,147,139985
,4,148,44040
,4,149,139985
,3,19529,4430
,4,5,270
,4,6,4515
,4,7,280
,4,8,10255
,4,9,11750
,4,10,11755
,4,11,275
,4,1,12255
,4,3,12040
,4,4,12035
,4,5,12060
,4,6,12055
,4,7,12260
,4,8,12065
,4,9,12080
,4,10,12075
,4,11,12100
,4,12,12095
,4,13,12120
,4,14,12115
,4,15,12265
,4,16,12125
,4,17,12270
,4,19,12275
,4,21,12280
,4,22,12145
,4,23,12160
,4,24,12155
,4,25,12285
,4,26,12165
,4,27,12175
,4,28,12170
,4,29,12185
,4,30,12180
,4,31,12195
,4,32,12190
,4,33,12205
,4,34,12200
,4,35,12215
,4,36,12210
,4,37,12290
,4,39,12295
,4,41,12235
,4,42,12230
,3,19529,4410
,4,3,12305
,4,1,12310
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,12325
,3,19532,12315
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,135945
,3,19537,12300
,3,19529,139175
,4,1,12250
,4,2,44020
,4,3,44060
,4,4,12255
,4,5,990
,4,6,139280
,4,7,1285
,4,8,139280
,4,9,44020
,4,10,12270
,4,11,44020
,4,12,12275
,4,13,44020
,4,14,12290
,4,15,3630
,4,16,139280
,4,17,655
,4,18,12310
,4,19,44115
,4,20,44020
,4,21,12295
,4,23,44020
,4,24,12235
,4,25,44555
,4,26,139970
,4,27,44040
,4,28,139970
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,12360
,6,1,85
,3,19657,12235
,3,19658,133730
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,12370
,6,1,85
,3,19657,12235
,3,19658,133735
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,12380
,6,1,85
,3,19657,12235
,3,19658,133740
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,12390
,6,1,85
,3,19657,12235
,3,19658,133745
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,12400
,6,1,85
,3,19657,12235
,3,19658,133750
,3,19529,4410
,3,19529,4410
,4,3,12415
,4,1,12420
,3,19529,590
,4,1,1300
,4,2,1305
,3,19529,590
,4,1,1300
,4,2,1305
,3,19529,590
,4,1,1300
,4,2,1305
,3,19529,590
,4,1,1310
,4,2,1315
,3,19529,590
,4,1,1310
,4,2,1315
,3,19529,590
,4,1,1320
,4,2,1325
,3,19529,590
,4,1,1320
,4,2,1325
,3,19529,590
,4,1,1330
,4,2,1325
,3,19529,590
,4,1,1330
,4,2,1325
,3,19529,590
,4,1,1335
,4,2,1325
,3,19529,590
,4,1,1335
,4,2,1325
,3,19529,590
,4,1,1340
,4,2,1325
,3,19529,590
,4,1,1340
,4,2,1325
,3,19529,4410
,3,19529,4410
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,12015
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,3,19529,590
,4,1,1345
,4,2,1325
,3,19529,590
,4,1,1350
,4,2,1325
,3,19529,590
,4,1,1355
,4,2,1325
,3,19529,590
,4,1,1360
,4,2,1325
,3,19529,590
,4,1,1365
,4,2,1325
,3,19529,590
,4,1,1370
,4,2,1325
,3,19529,590
,4,1,1375
,4,2,1325
,3,19529,590
,4,1,1380
,4,2,1325
,3,19529,590
,4,1,1385
,4,2,1325
,3,19530,12560
,3,19531,12565
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134960
,3,19529,139175
,4,2,12565
,4,3,139195
,4,4,139195
,4,5,139195
,3,19530,12575
,3,19531,12580
,3,19533,320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,134965
,3,19529,139175
,4,1,12580
,4,2,139440
,4,3,139195
,4,4,139195
,3,19529,12590
,4,11,12595
,3,19529,142500
,3,19529,4410
,4,3,12605
,4,1,12610
,3,19529,4410
,3,19530,12595
,3,19531,12630
,3,19533,12595
,3,19534,12635
,3,19661,12585
,3,19535,340
,6,1,85
,3,19536,134645
,3,19529,139175
,4,1,44020
,3,19536,134690
,3,19529,139175
,4,1,12635
,4,2,44020
,4,3,139190
,2,19076,425
,2,1484,12645
,3,19539,12625
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,12655
,2,828,12640
,2,19076,430
,3,19529,133800
,3,19544,425
,4,4,19280
,4,5,33475
,4,6,32870
,4,7,134255
,4,8,33145
,4,9,134260
,4,10,130000
,4,11,13875
,4,12,33385
,4,13,36780
,4,14,31735
,4,15,41020
,4,16,26450
,4,17,134265
,4,18,33805
,4,19,33830
,4,20,16380
,4,21,31210
,4,22,34990
,4,23,35075
,4,24,25890
,4,25,36645
,4,26,30860
,4,27,30945
,4,28,31270
,4,29,31315
,3,19547,134250
,3,19545,130400
,3,19529,142500
,3,19544,12645
,3,19546,12640
,3,19529,142500
,3,19529,4410
,3,19529,12675
,4,1,12680
,4,2,12685
,4,4,12690
,3,19529,142500
,3,19529,135065
,3,19529,135065
,3,19529,12700
,4,3,12705
,3,19529,142500
,3,19529,12590
,4,8,12710
,4,10,12695
,3,19529,12715
,4,1,12720
,4,2,12725
,4,3,12730
,4,4,12735
,4,5,12740
,4,6,12745
,3,19529,142500
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,2,19076,430
,3,19600,40480
,3,19529,455
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,12705
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,12760
,3,19539,12750
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,12765
,2,828,12755
,2,19076,430
,3,19529,133910
,3,19544,12760
,3,19546,12755
,3,19529,142500
,3,19529,12675
,4,1,12775
,4,2,12780
,4,4,12785
,3,19529,135065
,3,19529,135065
,3,19529,12675
,4,1,12795
,4,2,12800
,4,4,12805
,3,19529,135065
,3,19529,135065
,3,19529,12590
,4,4,12815
,3,19529,12820
,4,1,12825
,3,19529,142500
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,12810
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,12840
,3,19539,12830
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,12845
,2,828,12835
,2,19076,430
,3,19529,133980
,3,19544,12840
,3,19546,12835
,3,19529,142500
,3,19529,12590
,4,4,12855
,3,19529,12820
,4,1,12860
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,12850
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,12875
,3,19539,12865
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,12880
,2,828,12870
,2,19076,430
,3,19529,133990
,3,19544,12875
,3,19546,12870
,3,19529,142500
,3,19529,12590
,4,4,12890
,3,19529,12820
,4,1,12895
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,12885
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,12910
,3,19539,12900
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,12915
,2,828,12905
,2,19076,430
,3,19529,134000
,3,19544,12910
,3,19546,12905
,3,19529,142500
,3,19529,12590
,4,4,12925
,3,19529,12820
,4,1,12930
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,12920
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,12945
,3,19539,12935
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,12950
,2,828,12940
,2,19076,430
,3,19529,134010
,3,19544,12945
,3,19546,12940
,3,19529,142500
,3,19529,12590
,4,4,12960
,3,19529,12820
,4,1,12965
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,12955
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,12980
,3,19539,12970
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,12985
,2,828,12975
,2,19076,430
,3,19529,134020
,3,19544,12980
,3,19546,12975
,3,19529,142500
,3,19529,12590
,4,4,12995
,3,19529,12820
,4,1,13000
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,12990
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13015
,3,19539,13005
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13020
,2,828,13010
,2,19076,430
,3,19529,134030
,3,19544,13015
,3,19546,13010
,3,19529,142500
,3,19529,12590
,4,4,13030
,3,19529,12820
,4,1,13035
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13025
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13050
,3,19539,13040
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13055
,2,828,13045
,2,19076,430
,3,19529,134040
,3,19544,13050
,3,19546,13045
,3,19529,142500
,3,19529,12590
,4,4,13065
,3,19529,12820
,4,1,13070
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13060
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13085
,3,19539,13075
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13090
,2,828,13080
,2,19076,430
,3,19529,134050
,3,19544,13085
,3,19546,13080
,3,19529,142500
,3,19529,12590
,4,4,13100
,3,19529,12820
,4,1,13105
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13095
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13120
,3,19539,13110
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13125
,2,828,13115
,2,19076,430
,3,19529,134060
,3,19544,13120
,3,19546,13115
,3,19529,142500
,3,19529,12590
,4,4,13135
,3,19529,12820
,4,1,13140
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13130
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13155
,3,19539,13145
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13160
,2,828,13150
,2,19076,430
,3,19529,134070
,3,19544,13155
,3,19546,13150
,3,19529,142500
,3,19529,12590
,4,4,13170
,3,19529,12820
,4,1,13175
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13165
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13190
,3,19539,13180
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13195
,2,828,13185
,2,19076,430
,3,19529,134080
,3,19544,13190
,3,19546,13185
,3,19529,142500
,3,19529,12590
,4,4,13205
,3,19529,12820
,4,1,13210
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13200
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13225
,3,19539,13215
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13230
,2,828,13220
,2,19076,430
,3,19529,134090
,3,19544,13225
,3,19546,13220
,3,19529,142500
,3,19529,12590
,4,4,13240
,3,19529,12820
,4,1,13245
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13235
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13260
,3,19539,13250
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13265
,2,828,13255
,2,19076,430
,3,19529,134100
,3,19544,13260
,3,19546,13255
,3,19529,142500
,3,19529,12590
,4,4,13275
,3,19529,12820
,4,1,13280
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13270
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13295
,3,19539,13285
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13300
,2,828,13290
,2,19076,430
,3,19529,134110
,3,19544,13295
,3,19546,13290
,3,19529,142500
,3,19529,12590
,4,4,13310
,3,19529,12820
,4,1,13315
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13305
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13330
,3,19539,13320
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13335
,2,828,13325
,2,19076,430
,3,19529,134120
,3,19544,13330
,3,19546,13325
,3,19529,142500
,3,19529,12590
,4,4,13345
,3,19529,12820
,4,1,13350
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13340
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13365
,3,19539,13355
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13370
,2,828,13360
,2,19076,430
,3,19529,134130
,3,19544,13365
,3,19546,13360
,3,19529,142500
,3,19529,12590
,4,4,13380
,3,19529,12820
,4,1,13385
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13375
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13400
,3,19539,13390
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13405
,2,828,13395
,2,19076,430
,3,19529,134140
,3,19544,13400
,3,19546,13395
,3,19529,142500
,3,19529,12590
,4,4,13415
,3,19529,12820
,4,1,13420
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13410
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13435
,3,19539,13425
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13440
,2,828,13430
,2,19076,430
,3,19529,134150
,3,19544,13435
,3,19546,13430
,3,19529,142500
,3,19529,12590
,4,4,13450
,3,19529,12820
,4,1,13455
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13445
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13470
,3,19539,13460
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13475
,2,828,13465
,2,19076,430
,3,19529,134160
,3,19544,13470
,3,19546,13465
,3,19529,142500
,3,19529,12590
,4,4,13485
,3,19529,12820
,4,1,13490
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13480
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13505
,3,19539,13495
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13510
,2,828,13500
,2,19076,430
,3,19529,134170
,3,19544,13505
,3,19546,13500
,3,19529,142500
,3,19529,12590
,4,4,13520
,3,19529,12820
,4,1,13525
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13515
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13540
,3,19539,13530
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13545
,2,828,13535
,2,19076,430
,3,19529,134180
,3,19544,13540
,3,19546,13535
,3,19529,142500
,3,19529,12590
,4,4,13555
,3,19529,12820
,4,1,13560
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13550
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13575
,3,19539,13565
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13580
,2,828,13570
,2,19076,430
,3,19529,134190
,3,19544,13575
,3,19546,13570
,3,19529,142500
,3,19529,12590
,4,4,13590
,3,19529,12820
,4,1,13595
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13585
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13610
,3,19539,13600
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13615
,2,828,13605
,2,19076,430
,3,19529,134200
,3,19544,13610
,3,19546,13605
,3,19529,142500
,3,19529,12590
,4,4,13625
,3,19529,12820
,4,1,13630
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13620
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13645
,3,19539,13635
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13650
,2,828,13640
,2,19076,430
,3,19529,134210
,3,19544,13645
,3,19546,13640
,3,19529,142500
,3,19529,12590
,4,4,13660
,3,19529,12820
,4,1,13665
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,13655
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,13680
,3,19539,13670
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,13685
,2,828,13675
,2,19076,430
,3,19529,134220
,3,19544,13680
,3,19546,13675
,3,19529,142500
,3,19529,12590
,4,4,13695
,4,10,13700
,4,11,13705
,3,19529,12820
,4,1,13710
,3,19529,12700
,4,2,13715
,4,3,13690
,3,19529,135065
,1,1,40490
,1,2,13730
,2,19076,70
,3,19599,40485
,3,19529,31085
,3,19529,13725
,4,1,13690
,3,19529,142500
,3,19529,12590
,4,4,13735
,4,12,13720
,3,19529,12820
,4,1,13740
,3,19529,135065
,3,19530,13705
,3,19531,12630
,3,19533,13705
,3,19534,12635
,3,19661,13690
,3,19535,340
,6,1,85
,2,828,695
,2,19076,430
,3,19529,134230
,3,19544,13750
,3,19546,695
,3,19529,142500
,3,19529,12590
,4,2,13765
,4,4,13770
,4,10,13775
,4,11,13780
,1,1,40500
,2,19076,70
,3,19599,40495
,3,19529,31085
,3,19529,12820
,4,1,13785
,3,19529,12700
,4,2,13790
,4,3,13760
,3,19529,135065
,1,1,40510
,1,4,40515
,1,5,13800
,1,7,40520
,1,8,13815
,1,10,40525
,1,11,13830
,1,13,40530
,1,14,13845
,2,19076,70
,3,19599,40505
,3,19529,31085
,3,19529,13725
,4,1,13760
,3,19529,12590
,4,4,13805
,4,12,13795
,3,19529,12820
,4,1,13810
,3,19529,135065
,3,19529,12590
,4,4,13820
,4,12,13795
,3,19529,12820
,4,1,13825
,3,19529,135065
,3,19529,12590
,4,4,13835
,4,12,13795
,3,19529,12820
,4,1,13840
,3,19529,135065
,3,19529,12590
,4,4,13850
,4,12,13795
,3,19529,12820
,4,1,13855
,3,19529,135065
,3,19530,13780
,3,19531,12630
,3,19533,13780
,3,19534,12635
,3,19661,13760
,3,19535,340
,6,1,85
,2,828,775
,2,19076,430
,3,19529,134240
,3,19544,425
,3,19662,12650
,3,19545,130400
,3,19529,142500
,3,19544,13865
,3,19546,775
,3,19529,142500
,3,19529,12590
,4,2,13890
,4,4,13895
,4,10,13900
,4,11,13905
,1,1,40540
,2,19076,70
,3,19599,40535
,3,19529,31085
,3,19529,12820
,4,1,13910
,3,19529,12700
,4,2,13915
,4,3,13885
,3,19529,135065
,1,1,40550
,1,4,40555
,1,5,13925
,1,7,40560
,1,8,13940
,1,10,40565
,1,11,13955
,1,13,40570
,1,14,13970
,2,19076,70
,3,19599,40545
,3,19529,31085
,3,19529,13725
,4,1,13885
,3,19529,12590
,4,4,13930
,4,12,13920
,3,19529,12820
,4,1,13935
,3,19529,135065
,3,19529,12590
,4,4,13945
,4,12,13920
,3,19529,12820
,4,1,13950
,3,19529,135065
,3,19529,12590
,4,4,13960
,4,12,13920
,3,19529,12820
,4,1,13965
,3,19529,135065
,3,19529,12590
,4,4,13975
,4,12,13920
,3,19529,12820
,4,1,13980
,3,19529,135065
,3,19530,13905
,3,19531,12630
,3,19533,13905
,3,19534,12635
,3,19661,13885
,3,19535,340
,6,1,85
,2,828,790
,2,19076,430
,3,19529,134270
,3,19544,13990
,3,19546,790
,3,19529,142500
,3,19529,12590
,4,2,14010
,4,4,14015
,4,10,14020
,4,11,14025
,1,1,40580
,2,19076,70
,3,19599,40575
,3,19529,31085
,3,19529,12820
,4,1,14030
,3,19529,12700
,4,2,14035
,4,3,14005
,3,19529,135065
,1,1,40590
,1,4,40595
,1,5,14045
,1,7,40600
,1,8,14060
,1,10,40605
,1,11,14075
,1,13,40610
,1,14,14090
,2,19076,70
,3,19599,40585
,3,19529,31085
,3,19529,13725
,4,1,14005
,3,19529,12590
,4,4,14050
,4,12,14040
,3,19529,12820
,4,1,14055
,3,19529,135065
,3,19529,12590
,4,4,14065
,4,12,14040
,3,19529,12820
,4,1,14070
,3,19529,135065
,3,19529,12590
,4,4,14080
,4,12,14040
,3,19529,12820
,4,1,14085
,3,19529,135065
,3,19529,12590
,4,4,14095
,4,12,14040
,3,19529,12820
,4,1,14100
,3,19529,135065
,3,19530,14025
,3,19531,12630
,3,19533,14025
,3,19534,12635
,3,19661,14005
,3,19535,340
,6,1,85
,2,828,705
,2,19076,430
,3,19529,134280
,3,19544,14110
,3,19546,705
,3,19529,142500
,3,19529,12590
,4,2,14130
,4,4,14135
,4,10,14140
,4,11,14145
,1,1,40620
,2,19076,70
,3,19599,40615
,3,19529,31085
,3,19529,12820
,4,1,14150
,3,19529,12700
,4,2,14155
,4,3,14125
,3,19529,135065
,1,1,40630
,1,4,40635
,1,5,14165
,1,7,40640
,1,8,14180
,1,10,40645
,1,11,14195
,1,13,40650
,1,14,14210
,2,19076,70
,3,19599,40625
,3,19529,31085
,3,19529,13725
,4,1,14125
,3,19529,12590
,4,4,14170
,4,12,14160
,3,19529,12820
,4,1,14175
,3,19529,135065
,3,19529,12590
,4,4,14185
,4,12,14160
,3,19529,12820
,4,1,14190
,3,19529,135065
,3,19529,12590
,4,4,14200
,4,12,14160
,3,19529,12820
,4,1,14205
,3,19529,135065
,3,19529,12590
,4,4,14215
,4,12,14160
,3,19529,12820
,4,1,14220
,3,19529,135065
,3,19530,14145
,3,19531,12630
,3,19533,14145
,3,19534,12635
,3,19661,14125
,3,19535,340
,6,1,85
,2,828,830
,2,19076,430
,3,19529,134290
,3,19544,14230
,3,19546,830
,3,19529,142500
,3,19529,12590
,4,2,14250
,4,4,14255
,4,10,14260
,4,11,14265
,1,1,40660
,2,19076,70
,3,19599,40655
,3,19529,31085
,3,19529,12820
,4,1,14270
,3,19529,12700
,4,2,14275
,4,3,14245
,3,19529,135065
,1,1,40670
,1,4,40675
,1,5,14285
,1,7,40680
,1,8,14300
,1,10,40685
,1,11,14315
,1,13,40690
,1,14,14330
,2,19076,70
,3,19599,40665
,3,19529,31085
,3,19529,13725
,4,1,14245
,3,19529,12590
,4,4,14290
,4,12,14280
,3,19529,12820
,4,1,14295
,3,19529,135065
,3,19529,12590
,4,4,14305
,4,12,14280
,3,19529,12820
,4,1,14310
,3,19529,135065
,3,19529,12590
,4,4,14320
,4,12,14280
,3,19529,12820
,4,1,14325
,3,19529,135065
,3,19529,12590
,4,4,14335
,4,12,14280
,3,19529,12820
,4,1,14340
,3,19529,135065
,3,19530,14265
,3,19531,12630
,3,19533,14265
,3,19534,12635
,3,19661,14245
,3,19535,340
,6,1,85
,2,828,925
,2,19076,430
,3,19529,134300
,3,19544,14350
,3,19546,925
,3,19529,142500
,3,19529,12590
,4,2,14370
,4,4,14375
,4,10,14380
,4,11,14385
,1,1,40700
,2,19076,70
,3,19599,40695
,3,19529,31085
,3,19529,12820
,4,1,14390
,3,19529,12700
,4,2,14395
,4,3,14365
,3,19529,135065
,1,1,40710
,1,4,40715
,1,5,14405
,1,7,40720
,1,8,14420
,1,10,40725
,1,11,14435
,1,13,40730
,1,14,14450
,2,19076,70
,3,19599,40705
,3,19529,31085
,3,19529,13725
,4,1,14365
,3,19529,12590
,4,4,14410
,4,12,14400
,3,19529,12820
,4,1,14415
,3,19529,135065
,3,19529,12590
,4,4,14425
,4,12,14400
,3,19529,12820
,4,1,14430
,3,19529,135065
,3,19529,12590
,4,4,14440
,4,12,14400
,3,19529,12820
,4,1,14445
,3,19529,135065
,3,19529,12590
,4,4,14455
,4,12,14400
,3,19529,12820
,4,1,14460
,3,19529,135065
,3,19530,14385
,3,19531,12630
,3,19533,14385
,3,19534,12635
,3,19661,14365
,3,19535,340
,6,1,85
,2,828,835
,2,19076,430
,3,19529,134310
,3,19544,14470
,3,19546,835
,3,19529,142500
,3,19529,12590
,4,2,14490
,4,4,14495
,4,10,14500
,4,11,14505
,1,1,40740
,2,19076,70
,3,19599,40735
,3,19529,31085
,3,19529,12820
,4,1,14510
,3,19529,12700
,4,2,14515
,4,3,14485
,3,19529,135065
,1,1,40750
,1,4,40755
,1,5,14525
,1,7,40760
,1,8,14540
,1,10,40765
,1,11,14555
,1,13,40770
,1,14,14570
,2,19076,70
,3,19599,40745
,3,19529,31085
,3,19529,13725
,4,1,14485
,3,19529,12590
,4,4,14530
,4,12,14520
,3,19529,12820
,4,1,14535
,3,19529,135065
,3,19529,12590
,4,4,14545
,4,12,14520
,3,19529,12820
,4,1,14550
,3,19529,135065
,3,19529,12590
,4,4,14560
,4,12,14520
,3,19529,12820
,4,1,14565
,3,19529,135065
,3,19529,12590
,4,4,14575
,4,12,14520
,3,19529,12820
,4,1,14580
,3,19529,135065
,3,19530,14505
,3,19531,12630
,3,19533,14505
,3,19534,12635
,3,19661,14485
,3,19535,340
,6,1,85
,2,828,920
,2,19076,430
,3,19529,134320
,3,19544,14590
,3,19546,920
,3,19529,142500
,3,19529,12590
,4,2,14610
,4,4,14615
,4,10,14620
,4,11,14625
,1,1,40780
,2,19076,70
,3,19599,40775
,3,19529,31085
,3,19529,12820
,4,1,14630
,3,19529,12700
,4,2,14635
,4,3,14605
,3,19529,135065
,1,1,40790
,1,4,40795
,1,5,14645
,1,7,40800
,1,8,14660
,1,10,40805
,1,11,14675
,1,13,40810
,1,14,14690
,2,19076,70
,3,19599,40785
,3,19529,31085
,3,19529,13725
,4,1,14605
,3,19529,12590
,4,4,14650
,4,12,14640
,3,19529,12820
,4,1,14655
,3,19529,135065
,3,19529,12590
,4,4,14665
,4,12,14640
,3,19529,12820
,4,1,14670
,3,19529,135065
,3,19529,12590
,4,4,14680
,4,12,14640
,3,19529,12820
,4,1,14685
,3,19529,135065
,3,19529,12590
,4,4,14695
,4,12,14640
,3,19529,12820
,4,1,14700
,3,19529,135065
,3,19530,14625
,3,19531,12630
,3,19533,14625
,3,19534,12635
,3,19661,14605
,3,19535,340
,6,1,85
,2,828,710
,2,19076,430
,3,19529,134330
,3,19544,14710
,3,19546,710
,3,19529,142500
,3,19529,12590
,4,2,14730
,4,4,14735
,4,10,14740
,4,11,14745
,1,1,40820
,2,19076,70
,3,19599,40815
,3,19529,31085
,3,19529,12820
,4,1,14750
,3,19529,12700
,4,2,14755
,4,3,14725
,3,19529,135065
,1,1,40830
,1,4,40835
,1,5,14765
,1,7,40840
,1,8,14780
,1,10,40845
,1,11,14795
,1,13,40850
,1,14,14810
,2,19076,70
,3,19599,40825
,3,19529,31085
,3,19529,13725
,4,1,14725
,3,19529,12590
,4,4,14770
,4,12,14760
,3,19529,12820
,4,1,14775
,3,19529,135065
,3,19529,12590
,4,4,14785
,4,12,14760
,3,19529,12820
,4,1,14790
,3,19529,135065
,3,19529,12590
,4,4,14800
,4,12,14760
,3,19529,12820
,4,1,14805
,3,19529,135065
,3,19529,12590
,4,4,14815
,4,12,14760
,3,19529,12820
,4,1,14820
,3,19529,135065
,3,19530,14745
,3,19531,12630
,3,19533,14745
,3,19534,12635
,3,19661,14725
,3,19535,340
,6,1,85
,2,828,700
,2,19076,430
,3,19529,134340
,3,19544,14830
,3,19546,700
,3,19529,142500
,3,19529,12590
,4,4,14850
,4,10,14855
,4,11,14860
,3,19529,12820
,4,1,14865
,3,19529,12700
,4,2,14870
,4,3,14845
,3,19529,135065
,1,1,40860
,1,2,14880
,1,4,40865
,1,5,14895
,1,7,40870
,1,8,14910
,1,10,40875
,1,11,14925
,1,13,40880
,1,14,14940
,1,16,40885
,1,17,14955
,1,19,40890
,1,20,14970
,1,22,40895
,1,23,14985
,1,25,40900
,1,26,15000
,1,28,40905
,1,29,15015
,1,31,40910
,1,32,15030
,1,34,40915
,1,35,15045
,1,37,40920
,1,38,15060
,1,40,40925
,1,41,15075
,1,43,40930
,1,44,15090
,1,46,40935
,1,47,15105
,1,49,85
,1,50,85
,1,51,85
,1,52,85
,1,53,85
,1,54,85
,1,55,85
,1,56,85
,1,57,85
,1,58,85
,1,59,85
,1,60,85
,1,61,85
,1,62,85
,1,63,85
,2,19076,70
,3,19599,40855
,3,19529,31085
,3,19529,13725
,4,1,14845
,3,19529,12590
,4,4,14885
,4,12,14875
,3,19529,12820
,4,1,14890
,3,19529,135065
,3,19529,12590
,4,4,14900
,4,12,14875
,3,19529,12820
,4,1,14905
,3,19529,135065
,3,19529,12590
,4,4,14915
,4,12,14875
,3,19529,12820
,4,1,14920
,3,19529,135065
,3,19529,12590
,4,4,14930
,4,12,14875
,3,19529,12820
,4,1,14935
,3,19529,135065
,3,19529,12590
,4,4,14945
,4,12,14875
,3,19529,12820
,4,1,14950
,3,19529,135065
,3,19529,12590
,4,4,14960
,4,12,14875
,3,19529,12820
,4,1,14965
,3,19529,135065
,3,19529,12590
,4,4,14975
,4,12,14875
,3,19529,12820
,4,1,14980
,3,19529,135065
,3,19529,12590
,4,4,14990
,4,12,14875
,3,19529,12820
,4,1,14995
,3,19529,135065
,3,19529,12590
,4,4,15005
,4,12,14875
,3,19529,12820
,4,1,15010
,3,19529,135065
,3,19529,12590
,4,4,15020
,4,12,14875
,3,19529,12820
,4,1,15025
,3,19529,135065
,3,19529,12590
,4,4,15035
,4,12,14875
,3,19529,12820
,4,1,15040
,3,19529,135065
,3,19529,12590
,4,4,15050
,4,12,14875
,3,19529,12820
,4,1,15055
,3,19529,135065
,3,19529,12590
,4,4,15065
,4,12,14875
,3,19529,12820
,4,1,15070
,3,19529,135065
,3,19529,12590
,4,4,15080
,4,12,14875
,3,19529,12820
,4,1,15085
,3,19529,135065
,3,19529,12590
,4,4,15095
,4,12,14875
,3,19529,12820
,4,1,15100
,3,19529,135065
,3,19529,12590
,4,4,15110
,4,12,14875
,3,19529,12820
,4,1,15115
,3,19529,135065
,3,19530,14860
,3,19531,12630
,3,19533,14860
,3,19534,12635
,3,19661,14845
,3,19535,340
,6,1,85
,2,828,765
,2,19076,430
,3,19529,134350
,3,19544,15125
,3,19546,765
,3,19529,142500
,3,19549,15140
,3,19530,15145
,3,19529,575
,4,3,15150
,3,19529,135065
,3,19529,7520
,4,1,15160
,4,2,15165
,4,2,15155
,3,19530,15180
,3,19531,15185
,3,19532,15190
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136150
,3,19537,16565
,3,19529,139175
,4,1,43985
,4,2,44060
,4,3,31500
,4,4,16850
,4,5,44740
,4,6,16580
,4,7,139280
,4,8,320
,4,9,139280
,4,10,30850
,4,11,139280
,4,12,16515
,4,13,44020
,4,14,16505
,4,15,43760
,4,16,16520
,4,17,139280
,4,18,16510
,4,19,140085
,4,20,16520
,4,21,140090
,4,22,5360
,4,23,44720
,4,24,129095
,4,25,139350
,4,26,12560
,4,27,44740
,4,28,16580
,4,29,139350
,4,30,30885
,4,31,44680
,4,32,30860
,4,33,44680
,4,34,30865
,4,35,44680
,4,36,30870
,4,37,44680
,4,38,30890
,4,39,44680
,4,40,30895
,4,41,44680
,4,42,30900
,4,43,44680
,4,44,30905
,4,45,44680
,4,46,30910
,4,47,44680
,4,48,30915
,4,49,44680
,4,50,30920
,4,51,44680
,4,52,30925
,4,53,44680
,4,54,130225
,4,55,31285
,4,56,44740
,4,57,44140
,4,58,16540
,4,59,44335
,4,60,21300
,4,61,44540
,4,62,32130
,4,63,139280
,4,64,140095
,4,65,22620
,4,66,43945
,4,67,43115
,4,68,16850
,4,69,44540
,4,70,23085
,4,71,44670
,4,72,129405
,4,73,139280
,4,74,129260
,4,75,16575
,4,76,44190
,4,77,32130
,4,78,139280
,4,79,140095
,4,80,44275
,4,81,16585
,4,82,16850
,4,83,44740
,4,84,32130
,4,85,139280
,4,86,32130
,4,87,139280
,4,88,140095
,4,89,34735
,4,90,44740
,4,91,140100
,4,92,32140
,4,93,139280
,4,94,129835
,4,95,139280
,4,96,43745
,4,97,16590
,4,98,16850
,4,99,44540
,4,100,129155
,4,101,44670
,4,102,32140
,4,103,139275
,4,104,129835
,4,105,16855
,4,106,16850
,4,107,44740
,4,108,990
,4,109,139280
,4,110,128905
,4,111,139280
,4,112,43745
,4,113,32135
,4,114,139275
,4,115,16545
,4,117,44020
,4,118,6880
,4,119,44540
,4,120,43755
,4,121,32140
,4,122,139275
,4,123,129315
,4,124,139275
,4,125,43750
,4,126,43755
,4,127,35045
,4,128,139275
,4,129,39130
,4,130,44565
,4,131,35045
,4,132,44680
,4,133,16855
,4,134,16850
,4,135,44540
,4,136,129100
,4,137,139275
,4,138,43755
,4,139,129350
,4,140,16850
,4,141,44540
,4,142,128760
,4,143,44540
,4,144,43755
,4,145,16525
,4,146,44080
,4,147,32140
,4,148,139275
,4,149,128800
,4,150,139275
,4,151,4840
,4,152,44565
,4,153,43755
,4,155,129025
,4,156,139350
,4,157,32140
,4,158,139275
,4,159,129080
,4,160,139275
,4,161,4840
,4,162,44565
,4,163,43755
,4,165,129810
,4,166,139350
,4,167,35055
,4,168,44670
,4,169,23085
,4,170,44540
,4,171,32340
,4,172,16550
,4,173,44335
,4,174,31620
,4,175,44710
,4,176,21390
,4,177,139275
,4,178,129065
,4,179,36485
,4,180,44540
,4,181,655
,4,182,44285
,4,183,21390
,4,184,139275
,4,185,129040
,4,186,16555
,4,187,44335
,4,188,31620
,4,189,44710
,4,190,21390
,4,191,139275
,4,192,28800
,4,193,16560
,4,194,44335
,4,195,31620
,4,196,44710
,4,197,140105
,4,198,44040
,4,199,140105
,3,19529,4430
,4,5,16580
,4,6,4520
,4,7,16585
,4,8,16590
,4,9,16595
,4,10,16600
,4,11,16605
,4,12,16610
,4,13,16615
,3,19530,15200
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,15210
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,15220
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,15230
,3,19531,15235
,3,19532,15240
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136170
,3,19537,16665
,3,19529,139175
,4,1,44060
,4,2,35260
,4,3,44415
,4,4,22945
,4,5,140170
,4,6,16640
,4,7,140175
,4,9,44215
,4,10,16845
,4,11,140180
,4,13,31450
,4,14,140185
,4,15,140190
,4,16,44040
,4,17,140190
,3,19529,4430
,4,5,16640
,3,19530,655
,3,19531,15250
,3,19532,15255
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15260
,6,1,85
,3,19536,136390
,3,19537,17330
,3,19529,139175
,4,1,44060
,4,2,990
,4,3,139280
,4,4,12595
,4,5,139350
,4,6,990
,4,7,139280
,4,8,990
,4,9,139280
,4,10,990
,4,11,139350
,4,12,990
,4,13,139280
,4,14,990
,4,15,139280
,4,16,130250
,4,17,139350
,4,18,990
,4,19,139280
,4,20,990
,4,21,139280
,4,22,28275
,4,23,139350
,4,24,990
,4,25,139280
,4,26,28520
,4,27,16850
,4,28,44740
,4,29,17380
,4,30,139280
,4,31,17380
,4,32,139350
,4,33,28520
,4,34,24635
,4,35,44740
,4,36,990
,4,37,139280
,4,38,17380
,4,39,139280
,4,40,32900
,4,41,44740
,4,43,16870
,4,44,140650
,4,46,32300
,4,47,139350
,4,48,140655
,4,49,44040
,4,50,140655
,3,19529,4430
,3,19657,15180
,3,19658,40940
,3,19530,655
,3,19531,15270
,3,19532,15275
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15280
,6,1,85
,3,19536,136880
,3,19537,20970
,3,19529,139175
,4,1,44060
,4,2,990
,4,3,139280
,4,4,20900
,4,6,44020
,4,7,39130
,4,8,139350
,4,9,990
,4,10,139280
,4,11,20910
,4,13,44020
,4,14,39140
,4,15,139350
,4,16,990
,4,17,139280
,4,18,20930
,4,20,44020
,4,21,39135
,4,22,139350
,4,23,990
,4,24,139280
,4,25,20940
,4,27,44020
,4,28,39145
,4,29,139350
,4,30,990
,4,31,139280
,4,32,20950
,4,34,44020
,4,35,39150
,4,36,139350
,4,37,990
,4,38,139280
,4,39,20960
,4,41,44020
,4,42,39155
,4,43,139350
,4,44,140815
,4,45,44040
,4,46,140815
,3,19529,4430
,3,19657,15180
,3,19658,40945
,3,19530,655
,3,19531,15290
,3,19532,15295
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15300
,6,1,85
,3,19536,136885
,3,19537,20980
,3,19529,139175
,4,1,44060
,4,2,990
,4,3,139280
,4,4,43185
,4,5,20975
,4,6,44335
,4,7,4960
,4,8,44720
,4,9,140820
,4,10,44040
,4,11,140820
,3,19529,4430
,3,19657,15180
,3,19658,40950
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15310
,6,1,85
,3,19657,15180
,3,19658,40955
,3,19530,655
,3,19531,15320
,3,19532,15325
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15330
,6,1,85
,3,19536,136385
,3,19537,17320
,3,19529,139175
,4,1,44060
,4,2,17310
,4,4,44020
,4,5,32295
,4,6,139350
,4,7,140645
,4,8,44040
,4,9,140645
,3,19529,4430
,3,19657,15180
,3,19658,40960
,3,19530,655
,3,19531,15340
,3,19532,15345
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15350
,6,1,85
,3,19536,136940
,3,19537,21035
,3,19529,139175
,4,1,44060
,4,2,21025
,4,4,44020
,4,5,15655
,4,6,139350
,4,7,44285
,4,8,140865
,4,9,44040
,4,10,140865
,3,19529,4430
,3,19657,15180
,3,19658,40965
,3,19530,655
,3,19531,15360
,3,19532,15365
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15370
,6,1,85
,3,19536,136945
,3,19537,21055
,3,19529,139175
,4,1,44060
,4,2,31270
,4,3,139280
,4,4,21060
,4,5,139280
,4,6,31270
,4,7,139280
,4,8,21060
,4,9,129285
,4,10,7735
,4,11,44740
,4,12,7430
,4,13,44740
,4,14,129285
,4,15,6700
,4,16,44740
,4,17,195
,4,18,275
,4,19,44020
,4,20,44020
,4,21,190
,4,22,7650
,4,23,44720
,4,24,129270
,4,25,139280
,4,26,21040
,4,27,44335
,4,28,10860
,4,29,44720
,4,30,21060
,4,31,139350
,4,32,140870
,4,33,44040
,4,34,140870
,3,19529,4430
,4,5,21060
,3,19657,15180
,3,19658,40970
,3,19530,655
,3,19531,15380
,3,19532,15385
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15390
,6,1,85
,3,19536,137060
,3,19537,21315
,3,19529,139175
,4,1,44185
,4,2,21235
,4,4,44020
,4,5,44125
,4,6,21245
,4,7,44335
,4,8,44125
,4,9,21255
,4,10,44335
,4,11,21265
,4,12,44335
,4,13,21285
,4,14,44335
,4,15,21295
,4,17,44020
,4,18,21305
,4,20,44020
,4,21,44060
,4,22,21320
,4,23,139280
,4,24,44285
,4,25,21230
,4,26,43700
,4,27,44285
,4,29,44285
,4,31,44285
,4,32,32280
,4,33,139280
,4,34,44285
,4,35,44285
,4,36,44285
,4,37,44285
,4,38,21300
,4,39,139350
,4,40,21310
,4,41,139350
,4,42,21270
,4,43,139350
,4,44,21290
,4,45,139350
,4,46,21260
,4,47,139350
,4,48,32330
,4,49,139350
,4,50,140970
,4,51,44040
,4,52,140970
,3,19529,4430
,4,5,21260
,4,6,21270
,4,7,21290
,4,8,21300
,4,9,21310
,4,10,21320
,4,11,21325
,4,12,21330
,4,13,21335
,4,14,21340
,4,15,21345
,4,16,21350
,4,17,21355
,4,18,21240
,4,19,21250
,3,19657,15180
,3,19658,40975
,3,19530,655
,3,19531,15400
,3,19532,15405
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15410
,6,1,85
,3,19536,137065
,3,19537,21385
,3,19529,139175
,4,1,43860
,4,2,44060
,4,3,21395
,4,4,21360
,4,5,44335
,4,6,4960
,4,7,44720
,4,8,21400
,4,9,21365
,4,10,44335
,4,11,4960
,4,12,44720
,4,13,21390
,4,14,21370
,4,16,44020
,4,17,4960
,4,18,44720
,4,19,21375
,4,21,44020
,4,22,32335
,4,23,139350
,4,24,140975
,4,25,44040
,4,26,140975
,3,19529,4430
,4,5,21390
,4,6,21395
,4,7,21400
,3,19657,15180
,3,19658,40980
,3,19530,655
,3,19531,15420
,3,19532,15425
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15430
,6,1,85
,3,19536,137100
,3,19537,21465
,3,19529,139175
,4,1,44060
,4,2,21445
,4,4,44020
,4,5,32340
,4,6,139350
,4,7,21455
,4,9,44020
,4,10,32345
,4,11,139350
,4,12,140980
,4,13,44040
,4,14,140980
,3,19529,4430
,3,19657,15180
,3,19658,40985
,3,19530,655
,3,19531,15440
,3,19532,15445
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15450
,6,1,85
,3,19536,137105
,3,19537,21510
,3,19529,139175
,4,1,44160
,4,2,21480
,4,3,44335
,4,4,44125
,4,5,44060
,4,7,44215
,4,8,44285
,4,9,21520
,4,10,139280
,4,11,44285
,4,12,21525
,4,13,139280
,4,14,44285
,4,15,21490
,4,17,44020
,4,18,21520
,4,19,139350
,4,20,31620
,4,21,139350
,4,22,21500
,4,24,44020
,4,25,21525
,4,26,139350
,4,27,140985
,4,28,44040
,4,29,140985
,3,19529,4430
,4,5,21515
,4,6,21520
,4,7,21525
,4,8,21485
,3,19657,15180
,3,19658,40990
,3,19530,655
,3,19531,15460
,3,19532,15465
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15470
,6,1,85
,3,19536,137110
,3,19537,21555
,3,19529,139175
,4,1,44060
,4,2,32140
,4,3,139280
,4,4,129745
,4,5,139280
,4,6,43745
,4,7,32140
,4,8,139275
,4,9,129745
,4,10,139275
,4,11,4840
,4,12,44565
,4,13,43880
,4,16,21565
,4,17,44190
,4,18,32140
,4,19,139275
,4,20,129745
,4,21,43200
,4,22,16850
,4,23,44540
,4,24,129995
,4,25,24635
,4,26,44540
,4,27,128790
,4,28,44540
,4,29,128785
,4,30,139275
,4,31,21570
,4,32,44190
,4,33,140990
,4,34,44040
,4,35,140990
,3,19529,4430
,4,5,21575
,4,6,21580
,3,19657,15180
,3,19658,40995
,3,19530,655
,3,19531,15480
,3,19532,15485
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15490
,6,1,85
,3,19536,137115
,3,19537,21585
,3,19529,139175
,4,1,44060
,4,2,21590
,4,3,44680
,4,4,32125
,4,5,139280
,4,6,129600
,4,7,43935
,4,10,32130
,4,11,139280
,4,12,140095
,4,13,44140
,4,14,205
,4,15,6910
,4,16,44740
,4,17,43970
,4,18,7545
,4,19,44540
,4,20,205
,4,21,43990
,4,22,16585
,4,23,16850
,4,24,44540
,4,25,32130
,4,26,139275
,4,27,32130
,4,28,139275
,4,29,139320
,4,30,6700
,4,31,44710
,4,32,139405
,4,33,140995
,4,34,44040
,4,35,140995
,3,19529,4430
,4,5,21590
,4,6,21595
,4,7,21600
,4,8,16585
,3,19657,15180
,3,19658,41000
,3,19530,655
,3,19531,15500
,3,19532,15505
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15510
,6,1,85
,3,19536,136155
,3,19537,16620
,3,19529,139175
,4,1,44060
,4,2,129410
,4,3,43725
,4,4,140110
,4,5,44040
,4,6,140110
,4,7,31280
,4,8,140115
,4,9,44090
,4,10,16845
,4,11,140120
,4,12,31285
,4,13,140125
,4,14,44140
,4,15,10000
,4,16,139275
,4,17,129630
,4,18,43810
,4,19,16630
,4,20,44115
,4,21,44020
,4,22,32110
,4,23,139275
,4,24,41680
,4,25,44415
,4,26,7375
,4,27,140130
,4,28,16635
,4,29,44115
,4,30,28095
,4,31,140135
,4,32,12070
,4,33,140140
,4,34,16845
,4,35,140120
,3,19529,4430
,4,5,16640
,4,6,16645
,4,7,16650
,3,19657,15230
,3,19658,134360
,3,19530,655
,3,19531,15520
,3,19532,15525
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15530
,6,1,85
,3,19536,136160
,3,19537,16655
,3,19529,139175
,4,1,44060
,4,2,31275
,4,3,140145
,4,4,139320
,4,5,140150
,4,6,44040
,4,7,140150
,3,19529,4430
,4,5,16640
,3,19657,15230
,3,19658,134365
,3,19530,655
,3,19531,15540
,3,19532,15545
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15550
,6,1,85
,3,19536,136165
,3,19537,16660
,3,19529,139175
,4,1,44060
,4,2,31270
,4,3,140155
,4,4,4920
,4,5,140160
,4,6,140165
,4,7,44040
,4,8,140165
,3,19529,4430
,4,5,16640
,3,19657,15230
,3,19658,134370
,3,19530,655
,3,19531,15560
,3,19532,15565
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15570
,6,1,85
,3,19536,136195
,3,19537,16705
,3,19529,139175
,4,1,44060
,4,2,31270
,4,3,140155
,4,4,139320
,4,5,140235
,4,6,44040
,4,7,140235
,3,19529,4430
,4,5,16640
,3,19657,15230
,3,19658,134375
,3,19530,655
,3,19531,15580
,3,19532,15585
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15590
,6,1,85
,3,19536,136200
,3,19537,16710
,3,19529,139175
,4,1,44060
,4,2,28940
,4,3,140240
,4,4,139705
,4,5,44415
,4,6,28940
,4,7,140240
,4,8,139705
,4,9,44420
,4,10,140245
,4,11,44040
,4,12,140245
,3,19529,4430
,4,5,16715
,3,19657,15230
,3,19658,134380
,3,19530,655
,3,19531,15600
,3,19532,15605
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15610
,6,1,85
,3,19536,136190
,3,19537,16675
,3,19529,139175
,4,1,44060
,4,2,16640
,4,3,140195
,4,4,31290
,4,5,140205
,4,6,31295
,4,7,140210
,4,8,22945
,4,9,140215
,4,11,16685
,4,12,43965
,4,13,16845
,4,14,140120
,4,15,16850
,4,16,140220
,4,17,22945
,4,18,140215
,4,19,16690
,4,20,43925
,4,22,31450
,4,23,140225
,4,24,140230
,4,25,44040
,4,26,140230
,3,19529,4430
,4,5,16695
,4,6,16700
,3,19657,15230
,3,19658,134385
,3,19530,655
,3,19531,15620
,3,19532,15625
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,15630
,6,1,85
,3,19536,136180
,3,19537,16670
,3,19529,139175
,4,1,44060
,4,2,31275
,4,3,140145
,4,4,16640
,4,5,140195
,4,6,139405
,4,7,140200
,4,8,44040
,4,9,140200
,3,19529,4430
,3,19657,15230
,3,19658,134390
,3,19529,4410
,4,3,15640
,4,1,15645
,3,19529,4430
,4,5,12595
,4,6,3555
,4,7,12595
,4,8,15180
,4,9,15655
,4,10,15200
,4,11,15210
,4,12,15220
,4,13,15660
,4,14,15230
,3,19530,655
,3,19531,15670
,3,19532,15650
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136130
,3,19537,15635
,3,19529,139175
,4,1,44255
,4,2,44350
,4,3,15175
,4,5,44020
,4,6,44125
,4,7,15195
,4,8,44335
,4,9,44125
,4,10,15205
,4,11,44335
,4,12,44125
,4,13,15215
,4,15,44020
,4,16,44125
,4,17,15225
,4,19,44020
,4,20,44125
,4,21,44060
,4,22,990
,4,23,139350
,4,24,15245
,4,26,44020
,4,27,30860
,4,28,139350
,4,29,15265
,4,31,44020
,4,32,30865
,4,33,139350
,4,34,15285
,4,36,44020
,4,37,30870
,4,38,139350
,4,40,30875
,4,41,139350
,4,42,15305
,4,44,44020
,4,45,30880
,4,46,139350
,4,47,15315
,4,49,44020
,4,50,30885
,4,51,139350
,4,52,15335
,4,54,44020
,4,55,30890
,4,56,139350
,4,57,15355
,4,59,44020
,4,60,30895
,4,61,139350
,4,62,15375
,4,64,44020
,4,65,30900
,4,66,139350
,4,67,15395
,4,69,44020
,4,70,30905
,4,71,139350
,4,72,15415
,4,74,44020
,4,75,30910
,4,76,139350
,4,77,15435
,4,79,44020
,4,80,30915
,4,81,139350
,4,82,15455
,4,84,44020
,4,85,30920
,4,86,139350
,4,87,15475
,4,89,44020
,4,90,30925
,4,91,139350
,4,92,31240
,4,93,24635
,4,94,44740
,4,95,16140
,4,96,139280
,4,97,15660
,4,98,139280
,4,99,44285
,4,100,31245
,4,101,24635
,4,102,44740
,4,103,31270
,4,104,139350
,4,106,44215
,4,107,31275
,4,108,139350
,4,109,15495
,4,111,44020
,4,112,16850
,4,113,139350
,4,114,15515
,4,116,44020
,4,117,31280
,4,118,139350
,4,119,15535
,4,121,44020
,4,122,31285
,4,123,139350
,4,124,15555
,4,126,44020
,4,127,31290
,4,128,139350
,4,129,15575
,4,131,44020
,4,132,31295
,4,133,139350
,4,134,15170
,4,135,44150
,4,136,28940
,4,137,139350
,4,138,30850
,4,139,139280
,4,140,15595
,4,142,44020
,4,143,12070
,4,144,139350
,4,145,30850
,4,146,139280
,4,147,15615
,4,149,44020
,4,150,28095
,4,151,139350
,4,152,15645
,4,153,44240
,4,154,140075
,4,155,44040
,4,156,140075
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,15690
,3,19532,15680
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136135
,3,19537,15675
,3,19529,139175
,4,1,44060
,4,2,15665
,4,4,44020
,4,5,140080
,4,6,44040
,4,7,140080
,3,19529,12590
,4,4,15700
,3,19529,12820
,4,1,15705
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,15695
,3,19535,340
,6,1,85
,2,828,780
,2,19076,430
,3,19529,134395
,3,19544,15715
,3,19546,780
,3,19529,142500
,3,19529,12590
,4,4,15730
,3,19529,12820
,4,1,15735
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,15725
,3,19535,340
,6,1,85
,2,828,690
,2,19076,430
,3,19529,134405
,3,19544,15745
,3,19546,690
,3,19529,142500
,3,19529,12590
,4,4,15760
,3,19529,12820
,4,1,15765
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,15755
,3,19535,340
,6,1,85
,2,828,955
,2,19076,430
,3,19529,134415
,3,19544,15775
,3,19546,955
,3,19529,142500
,3,19529,12590
,4,4,15790
,3,19529,12820
,4,1,15795
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,15785
,3,19535,340
,6,1,85
,2,828,740
,2,19076,430
,3,19529,30755
,3,19544,15805
,3,19546,740
,3,19529,142500
,3,19529,12590
,4,4,15820
,3,19529,12820
,4,1,15825
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,15815
,3,19535,340
,6,1,85
,2,828,810
,2,19076,430
,3,19529,30765
,3,19544,15835
,3,19546,810
,3,19529,142500
,3,19529,12590
,4,4,15850
,3,19529,12820
,4,1,15855
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,15845
,3,19535,340
,6,1,85
,2,828,785
,2,19076,430
,3,19529,30775
,3,19544,15865
,3,19546,785
,3,19529,142500
,3,19529,12590
,4,4,15880
,3,19529,12820
,4,1,15885
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,15875
,3,19535,340
,6,1,85
,2,828,905
,2,19076,430
,3,19529,30785
,3,19544,15895
,3,19546,905
,3,19529,142500
,3,19529,12590
,4,4,15910
,3,19529,12820
,4,1,15915
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,15905
,3,19535,340
,6,1,85
,2,828,760
,2,19076,430
,3,19529,30795
,3,19544,15925
,3,19546,760
,3,19529,142500
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15245
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15250
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,1485,15935
,2,1486,15980
,2,1487,15985
,2,1488,70
,2,1489,15990
,2,1490,15995
,2,1491,16000
,2,1492,16005
,2,1493,16020
,2,1494,16035
,2,1495,16040
,2,1496,16045
,2,1497,16060
,2,1498,16065
,2,19076,425
,3,19538,39660
,3,19539,15175
,3,19540,15975
,6,64,85
,3,19600,39665
,3,19529,31060
,4,1,15185
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,21025
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15195
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15205
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19538,41005
,3,19539,15215
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,2,19076,425
,2,1484,16305
,3,19539,16300
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,16310
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,1503,31415
,2,1504,31420
,2,856,16470
,2,1505,16475
,2,1506,16480
,2,1507,16485
,2,1508,16490
,2,1415,31425
,2,19076,425
,2,1484,31405
,3,19538,31430
,3,19539,15225
,3,19540,15975
,6,64,85
,3,19600,31435
,3,19529,31370
,4,1,15235
,4,2,31440
,3,19541,30805
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,915
,4,3,15940
,4,4,15945
,4,5,15950
,4,6,15955
,4,7,15960
,4,8,15965
,4,9,15970
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15265
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15270
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15285
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15290
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15305
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15315
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15320
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15335
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15340
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19538,16010
,3,19539,15355
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15360
,4,1,560
,4,2,16015
,2,842,195
,2,132,100
,2,19148,110
,2,19299,110
,2,19076,1390
,3,19529,1400
,4,1,34345
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19538,16025
,3,19539,15375
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15380
,4,1,560
,4,2,16030
,2,19076,1070
,3,19529,34480
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15395
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15400
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15415
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15420
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19538,16050
,3,19539,15435
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15440
,4,1,560
,4,2,16055
,2,19076,430
,3,19529,31135
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15455
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15460
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15475
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15480
,3,19529,12590
,4,4,16075
,4,10,16080
,4,11,16085
,3,19529,12820
,4,1,16090
,3,19529,12700
,4,3,16070
,3,19529,135065
,3,19530,16085
,3,19531,12630
,3,19533,16085
,3,19534,12635
,3,19661,16070
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,16105
,3,19539,16095
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,16110
,2,828,16100
,2,19076,430
,3,19529,31065
,3,19544,16105
,3,19546,16100
,3,19529,142500
,3,19529,12590
,4,2,16120
,4,4,16125
,4,6,16130
,4,10,16135
,4,11,16140
,1,1,16380
,1,2,16235
,1,4,16405
,1,5,16270
,1,7,15660
,1,8,15965
,1,10,16450
,1,11,16335
,1,13,85
,1,14,85
,1,15,85
,2,19076,70
,3,19599,31100
,3,19529,31085
,3,19529,12820
,4,1,16145
,3,19529,12700
,4,2,16165
,3,19529,12700
,4,3,16115
,3,19529,135065
,3,19529,12590
,4,4,16155
,3,19529,12820
,4,1,16160
,3,19529,135065
,1,1,16380
,1,2,16150
,1,4,16405
,1,5,16170
,1,7,15660
,1,8,16185
,1,10,16450
,1,11,16200
,1,13,85
,1,14,85
,1,15,85
,2,19076,70
,3,19599,31080
,3,19529,31085
,3,19529,12590
,4,4,16175
,3,19529,12820
,4,1,16180
,3,19529,135065
,3,19529,12590
,4,4,16190
,3,19529,12820
,4,1,16195
,3,19529,135065
,3,19529,12590
,4,4,16205
,3,19529,12820
,4,1,16210
,3,19529,135065
,3,19529,12590
,4,4,16220
,3,19529,12820
,4,1,16225
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,16215
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,16240
,3,19539,16230
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,16245
,2,828,16235
,2,19076,430
,3,19529,31090
,3,19544,16240
,3,19546,16235
,3,19529,142500
,3,19529,12590
,4,4,16255
,3,19529,12820
,4,1,16260
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,16250
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,16275
,3,19539,16265
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,16280
,2,828,16270
,2,19076,430
,3,19529,31105
,3,19544,16275
,3,19546,16270
,3,19529,142500
,3,19529,12590
,4,4,16290
,3,19529,12820
,4,1,16295
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,16285
,3,19535,340
,6,1,85
,2,828,15965
,2,19076,430
,3,19529,31115
,3,19544,16305
,3,19546,15965
,3,19529,142500
,3,19529,12590
,4,4,16320
,3,19529,12820
,4,1,16325
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,16315
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,16340
,3,19539,16330
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,16345
,2,828,16335
,2,19076,430
,3,19529,31125
,3,19544,16340
,3,19546,16335
,3,19529,142500
,3,19530,16140
,3,19531,12630
,3,19533,16140
,3,19534,12635
,3,19661,16115
,3,19535,340
,6,1,85
,2,824,16235
,2,825,16270
,2,821,15965
,2,826,16335
,2,19076,425
,2,1484,16360
,3,19539,16350
,3,19540,560
,6,64,85
,3,19529,16365
,4,1,12630
,4,2,16370
,2,824,16385
,2,825,16410
,2,821,16430
,2,826,16455
,2,828,16355
,2,19076,430
,3,19529,31180
,3,19544,425
,3,19662,31215
,3,19545,31190
,3,19529,142500
,3,19544,16360
,3,19546,16355
,3,19529,142500
,3,19530,16380
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,16150
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,16390
,3,19539,16375
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,16395
,2,828,16385
,2,19076,430
,3,19529,31140
,3,19544,16390
,3,19546,16385
,3,19529,142500
,3,19530,16405
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,16170
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,16415
,3,19539,16400
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,16420
,2,828,16410
,2,19076,430
,3,19529,31150
,3,19544,16415
,3,19546,16410
,3,19529,142500
,3,19530,15660
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,16185
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,16435
,3,19539,16425
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,16440
,2,828,16430
,2,19076,430
,3,19529,31160
,3,19544,16435
,3,19546,16430
,3,19529,142500
,3,19530,16450
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,16200
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,16460
,3,19539,16445
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,16465
,2,828,16455
,2,19076,430
,3,19529,31170
,3,19544,16460
,3,19546,16455
,3,19529,142500
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15495
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15500
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15515
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15520
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15535
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15540
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15555
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15560
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15575
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15580
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15595
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15600
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,15615
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,15620
,4,1,16510
,4,1,16520
,4,1,16530
,4,3,16535
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,4,3,16570
,4,1,16575
,3,19529,4410
,4,3,16625
,4,1,16630
,4,3,16635
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,3,16680
,4,1,16685
,4,3,16690
,3,19529,4410
,3,19529,4410
,3,19549,16725
,3,19530,16730
,3,19529,575
,4,3,16735
,3,19529,135065
,3,19530,16580
,3,19531,16745
,3,19532,16750
,3,19533,320
,3,19548,16720
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136375
,3,19537,17295
,3,19529,139175
,4,1,44060
,4,3,16870
,4,4,139350
,4,5,31590
,4,6,139280
,4,7,44140
,4,8,43755
,4,9,16870
,4,10,17305
,4,11,44190
,4,12,44285
,4,13,39125
,4,14,139275
,4,15,43755
,4,16,129695
,4,17,139275
,4,18,43735
,4,19,39125
,4,20,139275
,4,21,16870
,4,22,139350
,4,23,32285
,4,24,139280
,4,25,44085
,4,27,44215
,4,28,32285
,4,29,140635
,4,30,32290
,4,31,139280
,4,32,43745
,4,33,32290
,4,34,139350
,4,35,140640
,4,36,44040
,4,37,140640
,3,19529,4430
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,16720
,3,19534,335
,3,19535,16760
,6,1,85
,3,19657,16580
,3,19658,31545
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,16720
,3,19534,335
,3,19535,16770
,6,1,85
,3,19657,16580
,3,19658,31550
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,16720
,3,19534,335
,3,19535,16780
,6,1,85
,3,19657,16580
,3,19658,31555
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,16720
,3,19534,335
,3,19535,16790
,6,1,85
,3,19657,16580
,3,19658,31560
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,16720
,3,19534,335
,3,19535,16800
,6,1,85
,3,19657,16580
,3,19658,31565
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,16720
,3,19534,335
,3,19535,16810
,6,1,85
,3,19657,16580
,3,19658,31570
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,16720
,3,19534,335
,3,19535,16820
,6,1,85
,3,19657,16580
,3,19658,31575
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,16720
,3,19534,335
,3,19535,16830
,6,1,85
,3,19657,16580
,3,19658,31580
,3,19529,4410
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,16580
,4,11,16850
,4,12,16845
,4,13,16870
,4,14,16875
,3,19530,655
,3,19531,16885
,3,19532,16840
,3,19533,320
,3,19548,16720
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136215
,3,19537,16835
,3,19529,139175
,4,1,44160
,4,2,44350
,4,3,44350
,4,4,16740
,4,6,44020
,4,7,44060
,4,9,31590
,4,10,139350
,4,11,16580
,4,12,139350
,4,13,44285
,4,14,30850
,4,15,139280
,4,16,16755
,4,18,44020
,4,19,31610
,4,20,139350
,4,21,30850
,4,22,139280
,4,23,16765
,4,25,44020
,4,26,31615
,4,27,139350
,4,28,30850
,4,29,139280
,4,30,16775
,4,32,44020
,4,33,21520
,4,34,139350
,4,35,30850
,4,36,139280
,4,37,30850
,4,38,139280
,4,39,21520
,4,40,139280
,4,41,31620
,4,42,139350
,4,43,30850
,4,44,139280
,4,45,16785
,4,47,44020
,4,48,31625
,4,49,139350
,4,50,30850
,4,51,139280
,4,52,16795
,4,54,44020
,4,55,21525
,4,56,139350
,4,57,30850
,4,58,139280
,4,59,16805
,4,61,44020
,4,62,31630
,4,63,139350
,4,64,30850
,4,65,139280
,4,66,16815
,4,68,44020
,4,69,31635
,4,70,139350
,4,71,16825
,4,73,44020
,4,74,31735
,4,75,139350
,4,76,140250
,4,77,44040
,4,78,140250
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,16905
,3,19532,16895
,3,19533,320
,3,19548,16720
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136220
,3,19537,16890
,3,19529,139175
,4,1,44060
,4,2,16880
,4,4,44020
,4,5,140255
,4,6,44040
,4,7,140255
,0,856,16470
,0,855,16915
,0,860,85
,2,19076,425
,3,19539,16755
,3,19540,16920
,6,64,85
,3,19529,12650
,4,1,4220
,2,1527,110
,2,831,26245
,2,19076,430
,3,19600,41025
,3,19529,31600
,3,19541,31640
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,16470
,4,3,16915
,0,856,16470
,0,855,16915
,0,860,85
,2,19076,425
,3,19538,16930
,3,19539,16765
,3,19540,16920
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,856,16470
,0,855,16915
,0,860,85
,2,19076,425
,3,19538,16940
,3,19539,16775
,3,19540,16920
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,856,16470
,0,855,16915
,0,860,85
,2,19076,425
,3,19539,16785
,3,19540,16920
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,16915
,0,860,85
,2,19076,425
,3,19539,16795
,3,19540,16920
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,16915
,0,860,85
,2,19076,425
,3,19538,16960
,3,19539,16805
,3,19540,16920
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,856,16470
,0,855,16915
,0,860,85
,2,19076,425
,3,19538,16970
,3,19539,16815
,3,19540,16920
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,856,16470
,0,855,16915
,0,860,85
,2,19076,425
,3,19539,16825
,3,19540,16920
,6,64,85
,3,19529,12650
,4,1,4220
,4,2,16980
,3,19529,4410
,4,3,16995
,4,1,17000
,3,19529,7520
,4,1,17010
,4,2,17005
,3,19529,4410
,4,3,17025
,4,1,17030
,3,19529,4410
,4,3,17045
,4,1,17050
,4,3,17055
,4,5,17060
,3,19529,4410
,4,3,17070
,4,1,17075
,4,3,17080
,4,2,17085
,4,2,17095
,4,2,17105
,4,2,17115
,3,19529,4410
,4,3,17130
,4,1,17135
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,2,17175
,4,2,17185
,4,2,17195
,4,2,17205
,4,2,17215
,4,2,17225
,4,2,17235
,3,19529,4410
,3,19529,4410
,4,3,17255
,4,1,17260
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,3,17300
,4,1,17305
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,17315
,6,1,85
,3,19657,12595
,3,19658,32390
,3,19529,4410
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,17310
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,3,19529,4410
,3,19549,17340
,3,19530,17345
,3,19529,575
,4,3,17350
,3,19529,135065
,3,19530,17360
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,17370
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,17380
,3,19531,17385
,3,19532,17390
,3,19533,320
,3,19548,17335
,3,19534,1450
,3,19535,340
,6,1,17395
,3,19536,138040
,3,19537,28655
,3,19529,139175
,4,1,44060
,4,2,43735
,4,3,28665
,4,4,44115
,4,5,141855
,4,6,44040
,4,7,141855
,4,8,17565
,4,9,44540
,4,10,43755
,4,11,10020
,4,12,139275
,4,13,130305
,4,14,28670
,4,15,44115
,4,16,44020
,4,17,43750
,4,18,43695
,4,19,8815
,4,20,139275
,4,21,8880
,4,22,44540
,4,23,21345
,4,24,139350
,4,25,22935
,4,26,139275
,4,27,43755
,4,28,22935
,4,29,139275
,4,30,22935
,4,31,139350
,4,32,28700
,4,33,139350
,4,34,44020
,4,35,19725
,4,36,43770
,4,37,10475
,4,38,43990
,4,39,129310
,4,40,43990
,4,41,43750
,4,42,43890
,4,43,8815
,4,44,141860
,4,45,8880
,4,46,141865
,4,47,21345
,4,48,141870
,4,49,32870
,4,50,44710
,4,51,21345
,4,52,139350
,4,53,21345
,4,54,139275
,4,55,43750
,4,56,43695
,4,57,8815
,4,58,139275
,4,59,21345
,4,60,139275
,4,61,8880
,4,62,44540
,4,63,21345
,4,64,139350
,4,65,10020
,4,66,139275
,4,67,129550
,4,68,130150
,4,69,43810
,4,70,28675
,4,71,44115
,4,72,44020
,4,73,21345
,4,74,141875
,4,75,33810
,4,76,141880
,4,77,43890
,4,78,21345
,4,79,139275
,4,80,28680
,4,81,44115
,4,82,22935
,4,83,139350
,4,84,28700
,4,85,139350
,4,86,21345
,4,87,141875
,4,88,43890
,4,89,44090
,4,90,21345
,4,91,139280
,4,92,33760
,4,93,139280
,4,94,44245
,4,95,21345
,4,96,139280
,4,97,43670
,4,98,28685
,4,99,44240
,4,100,22935
,4,101,141885
,4,102,33760
,4,103,141890
,4,104,28700
,4,105,141895
,4,106,33760
,4,107,141890
,4,108,21345
,4,109,141900
,4,110,44105
,4,111,44395
,4,112,43835
,4,113,33760
,4,114,141905
,4,115,22935
,4,116,139350
,4,117,28700
,4,118,139350
,4,119,10475
,4,120,43990
,4,121,33590
,4,122,44465
,4,123,21345
,4,124,139350
,4,125,17565
,4,126,44540
,4,127,43755
,4,128,22935
,4,129,139275
,4,130,43755
,4,131,22935
,4,132,139275
,4,133,22935
,4,134,139275
,4,135,28700
,4,136,139275
,4,137,28700
,4,138,139275
,4,139,21345
,4,140,139275
,4,141,28700
,4,142,139275
,4,143,43810
,4,144,19020
,4,145,44510
,4,146,22935
,4,147,139275
,4,148,28700
,4,149,139275
,4,150,21345
,4,151,139275
,4,152,19020
,4,153,44510
,4,154,28690
,4,155,44190
,4,156,43755
,4,157,22935
,4,158,139275
,4,159,28700
,4,160,139275
,4,161,43810
,4,162,139320
,4,163,139405
,4,164,43750
,4,165,43810
,4,166,141855
,4,167,44040
,4,168,141855
,4,169,21345
,4,170,139275
,4,171,43950
,4,172,22935
,4,173,141910
,4,174,28700
,4,175,141915
,4,176,21345
,4,177,141900
,4,178,32875
,4,179,141920
,3,19529,4430
,4,5,28695
,4,6,28445
,4,7,28700
,4,8,28705
,4,9,10255
,3,19544,32845
,3,19546,950
,4,2,38720
,3,19547,38715
,3,19529,142500
,3,19530,17405
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,17415
,3,19531,17420
,3,19532,17425
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138050
,3,19537,28715
,3,19529,139175
,4,1,44060
,4,2,33810
,4,3,139280
,4,4,28725
,4,5,44115
,4,6,44285
,4,7,33760
,4,8,139350
,4,9,141930
,4,10,44040
,4,11,141930
,3,19529,4430
,3,19530,17435
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,17445
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,17455
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,17465
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,17475
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,17485
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,17495
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,17505
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17515
,6,1,85
,3,19657,18055
,3,19658,32415
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17525
,6,1,85
,3,19657,18055
,3,19658,32420
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17535
,6,1,85
,3,19657,18055
,3,19658,32425
,3,19530,655
,3,19531,17545
,3,19532,17550
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17555
,6,1,85
,3,19536,137995
,3,19537,28550
,3,19529,139175
,4,1,44060
,4,2,44275
,4,3,7815
,4,4,141810
,4,5,129855
,4,6,43770
,4,7,129065
,4,8,43770
,4,9,130135
,4,10,43990
,4,11,129780
,4,12,43990
,4,13,129570
,4,14,43990
,4,15,129460
,4,16,43990
,4,17,128890
,4,18,43990
,4,19,130210
,4,20,43990
,4,21,129915
,4,22,43990
,4,23,129585
,4,24,43990
,4,25,129960
,4,26,43990
,4,28,141815
,4,29,44040
,4,30,141815
,3,19529,4430
,4,5,28445
,3,19657,17380
,3,19658,32430
,3,19530,17565
,3,19531,17570
,3,19532,17575
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138075
,3,19537,28775
,3,19529,139175
,4,1,44060
,4,2,43735
,4,5,141950
,4,6,44040
,4,7,141950
,3,19529,4430
,4,5,4500
,4,6,17565
,3,19530,17585
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,17595
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,17605
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17615
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17625
,6,1,85
,3,19657,17380
,3,19658,32435
,3,19530,655
,3,19531,17635
,3,19532,17640
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17645
,6,1,85
,3,19536,138085
,3,19537,28785
,3,19529,139175
,4,1,44060
,4,2,44275
,4,3,129065
,4,4,1190
,4,5,141965
,4,6,7815
,4,7,141810
,4,8,43950
,4,9,21345
,4,10,139275
,4,11,43695
,4,12,21345
,4,13,139275
,4,14,21345
,4,15,139275
,4,16,43695
,4,17,21345
,4,18,141970
,4,19,43950
,4,20,28700
,4,21,141975
,4,22,44105
,4,23,28700
,4,24,141975
,4,25,44105
,4,26,129855
,4,27,43770
,4,28,129065
,4,29,43770
,4,30,130135
,4,31,43990
,4,32,129780
,4,33,43990
,4,34,129570
,4,35,43990
,4,36,129460
,4,37,43990
,4,38,128890
,4,39,43990
,4,40,130210
,4,41,43990
,4,42,129915
,4,43,43990
,4,44,129585
,4,45,43990
,4,46,22935
,4,47,139275
,4,48,18600
,4,49,44710
,4,50,141980
,4,51,44040
,4,52,141980
,4,53,22935
,4,54,141985
,4,55,18625
,4,56,141990
,4,57,22935
,4,58,139275
,4,59,18525
,4,60,44710
,4,61,22935
,4,62,139275
,4,63,18500
,4,64,44710
,4,65,22935
,4,66,139275
,4,67,18550
,4,68,44710
,4,69,22935
,4,70,139275
,4,71,18575
,4,72,44710
,4,73,10020
,4,74,139275
,4,75,129330
,4,76,43810
,4,77,28795
,4,78,44115
,4,79,44020
,3,19529,4430
,4,5,28445
,4,6,23085
,4,7,28800
,3,19657,17380
,3,19658,32440
,3,19530,17655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17665
,6,1,85
,3,19657,17380
,3,19658,32445
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17675
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17685
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17695
,6,1,85
,3,19657,17380
,3,19658,32450
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17705
,6,1,85
,3,19657,17380
,3,19658,32455
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17715
,6,1,85
,3,19657,17380
,3,19658,32460
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17725
,6,1,85
,3,19657,17380
,3,19658,32465
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17735
,6,1,85
,3,19657,17380
,3,19658,32470
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17745
,6,1,85
,3,19657,17380
,3,19658,32475
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17755
,6,1,85
,3,19657,17380
,3,19658,32480
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17765
,6,1,85
,3,19657,17380
,3,19658,32485
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17775
,6,1,85
,3,19657,17380
,3,19658,32490
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17785
,6,1,85
,3,19657,17380
,3,19658,32495
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17795
,6,1,85
,3,19657,17380
,3,19658,32500
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17805
,6,1,85
,3,19657,17380
,3,19658,32505
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17815
,6,1,85
,3,19657,17380
,3,19658,32510
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17825
,6,1,85
,3,19657,17380
,3,19658,32515
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17835
,6,1,85
,3,19657,17380
,3,19658,32520
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17845
,6,1,85
,3,19657,17380
,3,19658,32525
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17855
,6,1,85
,3,19657,17380
,3,19658,32530
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17865
,6,1,85
,3,19657,17380
,3,19658,32535
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17875
,6,1,85
,3,19657,17380
,3,19658,32540
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17885
,6,1,85
,3,19657,17380
,3,19658,32545
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17895
,6,1,85
,3,19657,17380
,3,19658,32550
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17905
,6,1,85
,3,19657,17380
,3,19658,32555
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17915
,6,1,85
,3,19657,17380
,3,19658,32560
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17925
,6,1,85
,3,19657,17380
,3,19658,32565
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17935
,6,1,85
,3,19657,17380
,3,19658,32570
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17945
,6,1,85
,3,19657,17380
,3,19658,32575
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17955
,6,1,85
,3,19657,17380
,3,19658,32580
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17965
,6,1,85
,3,19657,17380
,3,19658,32585
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17975
,6,1,85
,3,19657,17380
,3,19658,32590
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17985
,6,1,85
,3,19657,17380
,3,19658,32595
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,17995
,6,1,85
,3,19657,17380
,3,19658,32600
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,18005
,6,1,85
,3,19657,17380
,3,19658,32605
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,18015
,6,1,85
,3,19657,17380
,3,19658,32610
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,18025
,6,1,85
,3,19657,17380
,3,19658,32615
,3,19529,4410
,4,3,18035
,4,1,18040
,4,3,18045
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,15655
,4,11,16845
,4,12,18055
,4,13,17360
,4,14,17370
,4,15,18060
,4,16,17380
,4,17,17405
,4,18,18065
,4,19,17415
,4,20,17435
,4,21,17445
,4,22,17455
,4,23,17465
,4,24,17475
,4,25,17485
,4,26,17495
,4,27,17505
,3,19530,655
,3,19531,18075
,3,19532,18050
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136505
,3,19537,18030
,3,19529,139175
,4,1,44315
,4,2,44350
,4,3,17355
,4,4,44335
,4,5,44125
,4,6,17365
,4,7,44335
,4,8,44125
,4,9,17375
,4,10,44335
,4,11,44125
,4,12,17400
,4,13,44335
,4,14,44125
,4,15,17410
,4,16,44335
,4,17,44125
,4,18,17430
,4,19,44335
,4,20,44125
,4,21,17440
,4,22,44335
,4,23,44125
,4,24,17450
,4,25,44335
,4,26,44125
,4,27,17460
,4,28,44335
,4,29,44125
,4,30,17470
,4,31,44335
,4,32,44125
,4,33,17480
,4,34,44335
,4,35,44125
,4,36,17490
,4,37,44335
,4,38,44125
,4,39,17500
,4,40,44335
,4,41,44125
,4,42,44060
,4,43,12595
,4,44,139280
,4,45,28520
,4,46,24635
,4,47,44740
,4,48,18055
,4,49,139280
,4,50,44285
,4,51,15655
,4,52,18040
,4,53,44190
,4,54,33580
,4,55,139350
,4,56,30850
,4,57,139280
,4,58,30850
,4,59,139280
,4,60,129095
,4,61,139350
,4,62,30850
,4,63,139280
,4,64,17510
,4,66,44020
,4,67,4890
,4,68,139350
,4,69,30850
,4,70,139280
,4,71,17520
,4,73,44020
,4,74,33590
,4,75,139350
,4,76,30850
,4,77,139280
,4,78,17530
,4,80,44020
,4,81,7430
,4,82,139350
,4,83,18045
,4,84,44115
,4,85,44285
,4,86,18055
,4,87,139350
,4,88,17380
,4,89,139350
,4,90,17540
,4,92,44020
,4,93,33805
,4,94,139350
,4,95,33810
,4,96,139350
,4,97,17560
,4,99,44020
,4,100,17565
,4,101,139350
,4,102,30850
,4,103,139280
,4,104,17580
,4,106,44020
,4,107,17585
,4,108,139350
,4,109,30850
,4,110,139280
,4,111,17590
,4,113,44020
,4,114,17595
,4,115,139350
,4,116,30850
,4,117,139280
,4,118,17600
,4,120,44020
,4,121,17605
,4,122,139350
,4,123,30850
,4,124,139280
,4,125,17610
,4,127,44020
,4,128,33590
,4,129,139350
,4,130,30850
,4,131,139280
,4,132,17620
,4,134,44020
,4,135,11350
,4,136,139350
,4,137,30850
,4,138,139280
,4,139,17630
,4,141,44020
,4,142,4890
,4,143,139350
,4,144,32870
,4,145,139280
,4,146,32870
,4,147,139350
,4,148,30850
,4,149,139280
,4,150,17650
,4,152,44020
,4,153,17655
,4,154,139350
,4,155,17660
,4,157,44020
,4,158,7470
,4,159,139350
,4,160,30850
,4,161,139280
,4,162,17670
,4,164,44020
,4,165,19020
,4,166,139350
,4,167,30850
,4,168,139280
,4,169,17680
,4,171,44020
,4,172,7430
,4,173,139350
,4,174,30850
,4,175,139280
,4,176,17690
,4,178,44020
,4,179,18625
,4,180,139350
,4,181,30850
,4,182,139280
,4,183,17700
,4,185,44020
,4,186,18500
,4,187,139350
,4,188,30850
,4,189,139280
,4,190,17710
,4,192,44020
,4,193,18525
,4,194,139350
,4,195,30850
,4,196,139280
,4,197,17720
,4,199,44020
,4,200,18650
,4,201,139350
,4,202,30850
,4,203,139280
,4,204,17730
,4,206,44020
,4,207,18700
,4,208,139350
,4,209,30850
,4,210,139280
,4,211,17740
,4,213,44020
,4,214,18675
,4,215,139350
,4,216,30850
,4,217,139280
,4,218,17750
,4,220,44020
,4,221,33595
,4,222,139350
,4,223,30850
,4,224,139280
,4,225,17760
,4,227,44020
,4,228,33600
,4,229,139350
,4,230,30850
,4,231,139280
,4,232,17770
,4,234,44020
,4,235,33605
,4,236,139350
,4,237,30850
,4,238,139280
,4,239,17780
,4,241,44020
,4,242,33610
,4,243,139350
,4,244,30850
,4,245,139280
,4,246,17790
,4,248,44020
,4,249,33615
,4,250,139350
,4,251,30850
,4,252,139280
,4,253,17800
,4,255,44020
,4,256,33620
,4,257,139350
,4,258,30850
,4,259,139280
,4,260,17810
,4,262,44020
,4,263,33625
,4,264,139350
,4,265,30850
,4,266,139280
,4,267,17820
,4,269,44020
,4,270,33630
,4,271,139350
,4,272,30850
,4,273,139280
,4,274,17830
,4,276,44020
,4,277,33635
,4,278,139350
,4,279,30850
,4,280,139280
,4,281,17840
,4,283,44020
,4,284,33640
,4,285,139350
,4,286,30850
,4,287,139280
,4,288,17850
,4,290,44020
,4,291,18800
,4,292,139350
,4,293,30850
,4,294,139280
,4,295,17860
,4,297,44020
,4,298,18825
,4,299,139350
,4,300,30850
,4,301,139280
,4,302,17870
,4,304,44020
,4,305,18850
,4,306,139350
,4,307,30850
,4,308,139280
,4,309,17880
,4,311,44020
,4,312,18875
,4,313,139350
,4,314,30850
,4,315,139280
,4,316,17890
,4,318,44020
,4,319,33645
,4,320,139350
,4,321,30850
,4,322,139280
,4,323,17900
,4,325,44020
,4,326,33650
,4,327,139350
,4,328,30850
,4,329,139280
,4,330,17910
,4,332,44020
,4,333,33655
,4,334,139350
,4,335,30850
,4,336,139280
,4,337,17920
,4,339,44020
,4,340,33660
,4,341,139350
,4,342,30850
,4,343,139280
,4,344,17930
,4,346,44020
,4,347,33665
,4,348,139350
,4,349,30850
,4,350,139280
,4,351,17940
,4,353,44020
,4,354,33670
,4,355,139350
,4,356,30850
,4,357,139280
,4,358,17950
,4,360,44020
,4,361,33675
,4,362,139350
,4,363,30850
,4,364,139280
,4,365,17960
,4,367,44020
,4,368,33680
,4,369,139350
,4,370,30850
,4,371,139280
,4,372,17970
,4,374,44020
,4,375,33685
,4,376,139350
,4,377,30850
,4,378,139280
,4,379,17980
,4,381,44020
,4,382,33690
,4,383,139350
,4,384,30850
,4,385,139280
,4,386,17990
,4,388,44020
,4,389,18900
,4,390,139350
,4,391,30850
,4,392,139280
,4,393,18000
,4,395,44020
,4,396,18925
,4,397,139350
,4,398,30850
,4,399,139280
,4,400,18010
,4,402,44020
,4,403,18950
,4,404,139350
,4,405,30850
,4,406,139280
,4,407,18020
,4,409,44020
,4,410,18975
,4,411,139350
,4,412,140660
,4,413,44040
,4,414,140660
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,18095
,3,19532,18085
,3,19533,320
,3,19548,17335
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136510
,3,19537,18080
,3,19529,139175
,4,1,44060
,4,2,18070
,4,4,44020
,4,5,140665
,4,6,44040
,4,7,140665
,3,19529,12590
,4,4,18105
,4,6,18110
,4,10,18115
,4,11,18055
,3,19529,12820
,4,1,18120
,3,19529,12700
,4,2,18140
,3,19529,12700
,4,3,18100
,3,19529,135065
,3,19529,12590
,4,4,18130
,3,19529,12820
,4,1,18135
,3,19529,135065
,1,1,18500
,1,2,18125
,1,4,18525
,1,5,18145
,1,7,18550
,1,8,18160
,1,10,18575
,1,11,18175
,1,13,18600
,1,14,18190
,1,16,18625
,1,17,18205
,1,19,18650
,1,20,18220
,1,22,18675
,1,23,18235
,1,25,18700
,1,26,18250
,1,28,18725
,1,29,18265
,1,31,18750
,1,32,18280
,1,34,18775
,1,35,18295
,1,37,18800
,1,38,18310
,1,40,18825
,1,41,18325
,1,43,18850
,1,44,18340
,1,46,18875
,1,47,18355
,1,49,18900
,1,50,18370
,1,52,18925
,1,53,18385
,1,55,18950
,1,56,18400
,1,58,18975
,1,59,18415
,1,61,17655
,1,62,18430
,1,64,19020
,1,65,18445
,1,67,85
,1,68,85
,1,69,85
,1,70,85
,1,71,85
,1,72,85
,1,73,85
,1,74,85
,1,75,85
,1,76,85
,1,77,85
,1,78,85
,1,79,85
,1,80,85
,1,81,85
,1,82,85
,1,83,85
,1,84,85
,1,85,85
,1,86,85
,1,87,85
,1,88,85
,1,89,85
,1,90,85
,1,91,85
,1,92,85
,1,93,85
,1,94,85
,1,95,85
,1,96,85
,1,97,85
,1,98,85
,1,99,85
,1,100,85
,1,101,85
,1,102,85
,1,103,85
,1,104,85
,1,105,85
,1,106,85
,1,107,85
,1,108,85
,1,109,85
,1,110,85
,1,111,85
,1,112,85
,1,113,85
,1,114,85
,1,115,85
,1,116,85
,1,117,85
,1,118,85
,1,119,85
,1,120,85
,1,121,85
,1,122,85
,1,123,85
,1,124,85
,1,125,85
,1,126,85
,1,127,85
,2,19076,70
,3,19599,32620
,3,19529,31085
,3,19529,12590
,4,4,18150
,3,19529,12820
,4,1,18155
,3,19529,135065
,3,19529,12590
,4,4,18165
,3,19529,12820
,4,1,18170
,3,19529,135065
,3,19529,12590
,4,4,18180
,3,19529,12820
,4,1,18185
,3,19529,135065
,3,19529,12590
,4,4,18195
,3,19529,12820
,4,1,18200
,3,19529,135065
,3,19529,12590
,4,4,18210
,3,19529,12820
,4,1,18215
,3,19529,135065
,3,19529,12590
,4,4,18225
,3,19529,12820
,4,1,18230
,3,19529,135065
,3,19529,12590
,4,4,18240
,3,19529,12820
,4,1,18245
,3,19529,135065
,3,19529,12590
,4,4,18255
,3,19529,12820
,4,1,18260
,3,19529,135065
,3,19529,12590
,4,4,18270
,3,19529,12820
,4,1,18275
,3,19529,135065
,3,19529,12590
,4,4,18285
,3,19529,12820
,4,1,18290
,3,19529,135065
,3,19529,12590
,4,4,18300
,3,19529,12820
,4,1,18305
,3,19529,135065
,3,19529,12590
,4,4,18315
,3,19529,12820
,4,1,18320
,3,19529,135065
,3,19529,12590
,4,4,18330
,3,19529,12820
,4,1,18335
,3,19529,135065
,3,19529,12590
,4,4,18345
,3,19529,12820
,4,1,18350
,3,19529,135065
,3,19529,12590
,4,4,18360
,3,19529,12820
,4,1,18365
,3,19529,135065
,3,19529,12590
,4,4,18375
,3,19529,12820
,4,1,18380
,3,19529,135065
,3,19529,12590
,4,4,18390
,3,19529,12820
,4,1,18395
,3,19529,135065
,3,19529,12590
,4,4,18405
,3,19529,12820
,4,1,18410
,3,19529,135065
,3,19529,12590
,4,4,18420
,3,19529,12820
,4,1,18425
,3,19529,135065
,3,19529,12590
,4,4,18435
,3,19529,12820
,4,1,18440
,3,19529,135065
,3,19529,12590
,4,4,18450
,3,19529,12820
,4,1,18455
,3,19529,135065
,3,19530,18055
,3,19531,12630
,3,19533,18055
,3,19534,12635
,3,19661,18100
,3,19535,340
,6,1,85
,2,1631,18470
,2,1632,18475
,2,19076,425
,2,1484,18480
,3,19539,18460
,3,19540,560
,6,64,85
,3,19529,18485
,4,1,12630
,4,2,18490
,2,19076,425
,2,1484,19060
,3,19539,19055
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,19065
,2,19076,425
,2,1484,19090
,3,19539,19085
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,19095
,2,929,18505
,2,930,18530
,2,931,18555
,2,932,18580
,2,933,18605
,2,934,18630
,2,935,18655
,2,936,18680
,2,937,18705
,2,938,18730
,2,939,18755
,2,940,18780
,2,941,18805
,2,942,18830
,2,943,18855
,2,944,18880
,2,945,18905
,2,946,18930
,2,947,18955
,2,948,18980
,2,888,19000
,2,949,19025
,2,828,18465
,2,71,20570
,2,1657,20655
,2,294,20660
,2,19076,32845
,3,19529,32850
,3,19544,425
,3,19662,134255
,3,19545,32865
,3,19529,142500
,3,19544,18480
,3,19546,18465
,4,2,33750
,3,19547,33745
,3,19529,142500
,3,19530,18500
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18125
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18510
,3,19539,18495
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18515
,2,828,18505
,2,19076,430
,3,19529,32625
,3,19544,18510
,3,19546,18505
,3,19529,142500
,3,19530,18525
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18145
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18535
,3,19539,18520
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18540
,2,828,18530
,2,19076,430
,3,19529,32635
,3,19544,18535
,3,19546,18530
,3,19529,142500
,3,19530,18550
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18160
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18560
,3,19539,18545
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18565
,2,828,18555
,2,19076,430
,3,19529,32645
,3,19544,18560
,3,19546,18555
,3,19529,142500
,3,19530,18575
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18175
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18585
,3,19539,18570
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18590
,2,828,18580
,2,19076,430
,3,19529,32655
,3,19544,18585
,3,19546,18580
,3,19529,142500
,3,19530,18600
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18190
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18610
,3,19539,18595
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18615
,2,828,18605
,2,19076,430
,3,19529,32665
,3,19544,18610
,3,19546,18605
,3,19529,142500
,3,19530,18625
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18205
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18635
,3,19539,18620
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18640
,2,828,18630
,2,19076,430
,3,19529,32675
,3,19544,18635
,3,19546,18630
,3,19529,142500
,3,19530,18650
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18220
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18660
,3,19539,18645
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18665
,2,828,18655
,2,19076,430
,3,19529,32685
,3,19544,18660
,3,19546,18655
,3,19529,142500
,3,19530,18675
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18235
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18685
,3,19539,18670
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18690
,2,828,18680
,2,19076,430
,3,19529,32695
,3,19544,18685
,3,19546,18680
,3,19529,142500
,3,19530,18700
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18250
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18710
,3,19539,18695
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18715
,2,828,18705
,2,19076,430
,3,19529,32705
,3,19544,18710
,3,19546,18705
,3,19529,142500
,3,19530,18725
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18265
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18735
,3,19539,18720
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18740
,2,828,18730
,2,19076,430
,3,19529,32715
,3,19544,18735
,3,19546,18730
,3,19529,142500
,3,19530,18750
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18280
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18760
,3,19539,18745
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18765
,2,828,18755
,2,19076,430
,3,19529,32725
,3,19544,18760
,3,19546,18755
,3,19529,142500
,3,19530,18775
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18295
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18785
,3,19539,18770
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18790
,2,828,18780
,2,19076,430
,3,19529,32735
,3,19544,18785
,3,19546,18780
,3,19529,142500
,3,19530,18800
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18310
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18810
,3,19539,18795
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18815
,2,828,18805
,2,19076,430
,3,19529,32745
,3,19544,18810
,3,19546,18805
,3,19529,142500
,3,19530,18825
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18325
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18835
,3,19539,18820
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18840
,2,828,18830
,2,19076,430
,3,19529,32755
,3,19544,18835
,3,19546,18830
,3,19529,142500
,3,19530,18850
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18340
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18860
,3,19539,18845
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18865
,2,828,18855
,2,19076,430
,3,19529,32765
,3,19544,18860
,3,19546,18855
,3,19529,142500
,3,19530,18875
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18355
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18885
,3,19539,18870
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18890
,2,828,18880
,2,19076,430
,3,19529,32775
,3,19544,18885
,3,19546,18880
,3,19529,142500
,3,19530,18900
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18370
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18910
,3,19539,18895
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18915
,2,828,18905
,2,19076,430
,3,19529,32785
,3,19544,18910
,3,19546,18905
,3,19529,142500
,3,19530,18925
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18385
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18935
,3,19539,18920
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18940
,2,828,18930
,2,19076,430
,3,19529,32795
,3,19544,18935
,3,19546,18930
,3,19529,142500
,3,19530,18950
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18400
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18960
,3,19539,18945
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18965
,2,828,18955
,2,19076,430
,3,19529,32805
,3,19544,18960
,3,19546,18955
,3,19529,142500
,3,19530,18975
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18415
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,18985
,3,19539,18970
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,18990
,2,828,18980
,2,19076,430
,3,19529,32815
,3,19544,18985
,3,19546,18980
,3,19529,142500
,3,19530,17655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18430
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,19005
,3,19539,18995
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,19010
,2,828,19000
,2,19076,430
,3,19529,32825
,3,19544,19005
,3,19546,19000
,3,19529,142500
,3,19530,19020
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,18445
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,19030
,3,19539,19015
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,19035
,2,828,19025
,2,19076,430
,3,19529,32835
,3,19544,19030
,3,19546,19025
,3,19529,142500
,3,19529,12590
,4,4,19045
,3,19529,12820
,4,1,19050
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,19040
,3,19535,340
,6,1,85
,2,828,18470
,2,19076,430
,3,19529,32855
,3,19544,19060
,3,19546,18470
,3,19529,142500
,3,19529,12590
,4,4,19075
,3,19529,12820
,4,1,19080
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,19070
,3,19535,340
,6,1,85
,2,828,18475
,2,19076,430
,3,19529,32880
,3,19544,19090
,3,19546,18475
,3,19529,142500
,3,19529,12590
,4,4,19105
,3,19529,12820
,4,1,19110
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,19100
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,19125
,3,19539,19115
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,19130
,2,828,19120
,2,19076,430
,3,19529,32905
,3,19544,19125
,3,19546,19120
,3,19529,142500
,3,19549,19140
,3,19530,19145
,3,19529,575
,4,3,19150
,3,19529,135065
,3,19530,19160
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19170
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19180
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19190
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19200
,3,19531,19205
,3,19532,19210
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137865
,3,19656,30590
,3,19537,28240
,3,19529,139175
,4,1,44060
,4,2,44110
,4,4,130055
,4,5,19200
,4,6,139275
,4,7,28250
,4,8,44035
,4,9,141660
,4,10,44040
,4,11,141660
,3,19529,4430
,4,5,16510
,4,6,28255
,3,19530,19220
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19230
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19240
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19250
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19260
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19270
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19280
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19290
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19300
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19310
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19320
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19330
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19340
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,19350
,6,1,85
,3,19657,15655
,3,19658,32955
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,19360
,6,1,85
,3,19657,15655
,3,19658,32960
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,19370
,6,1,85
,3,19657,15655
,3,19658,32965
,3,19529,4410
,4,3,19380
,4,1,19385
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,19395
,4,11,19200
,4,12,19400
,4,13,15655
,4,14,19160
,4,15,19170
,4,16,19180
,4,17,19190
,4,18,19220
,4,19,19230
,4,20,19240
,4,21,19250
,4,22,19260
,4,23,19270
,3,19530,655
,3,19531,19410
,3,19532,19390
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136535
,3,19537,19375
,3,19529,139175
,4,1,43675
,4,2,19155
,4,3,44335
,4,4,44125
,4,5,19165
,4,6,44335
,4,7,44125
,4,8,19175
,4,9,44335
,4,10,44125
,4,11,19185
,4,13,44020
,4,14,44125
,4,15,19195
,4,16,44335
,4,17,19215
,4,18,44335
,4,19,44125
,4,20,19225
,4,21,44335
,4,22,44125
,4,23,19235
,4,24,44335
,4,25,44125
,4,26,19245
,4,27,44335
,4,28,44125
,4,29,19255
,4,31,44020
,4,32,44125
,4,33,19265
,4,34,44335
,4,35,44125
,4,36,44060
,4,37,19395
,4,38,19385
,4,39,44190
,4,40,1050
,4,41,139280
,4,42,30850
,4,43,139280
,4,44,7430
,4,45,139280
,4,46,44285
,4,47,16845
,4,48,140670
,4,49,44285
,4,50,19275
,4,52,44020
,4,53,19280
,4,54,139350
,4,55,19280
,4,56,139280
,4,57,10000
,4,58,139280
,4,59,33060
,4,60,44720
,4,61,19190
,4,62,139350
,4,63,19200
,4,64,139350
,4,65,19285
,4,67,44020
,4,68,19290
,4,69,139350
,4,70,19295
,4,72,44020
,4,73,19300
,4,74,139350
,4,75,19305
,4,77,44020
,4,78,19310
,4,79,139350
,4,80,19315
,4,82,44020
,4,83,19320
,4,84,139350
,4,85,19325
,4,87,44020
,4,88,19330
,4,89,139350
,4,90,19335
,4,92,44020
,4,93,19340
,4,94,139350
,4,95,19345
,4,97,44020
,4,98,33365
,4,99,139350
,4,100,19355
,4,102,44020
,4,103,33370
,4,104,139350
,4,105,19365
,4,107,44020
,4,108,33375
,4,109,139350
,4,110,140675
,4,111,44040
,4,112,140675
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,19430
,3,19532,19420
,3,19533,320
,3,19548,19135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136540
,3,19537,19415
,3,19529,139175
,4,1,44060
,4,2,19405
,4,4,44020
,4,5,140680
,4,6,44040
,4,7,140680
,3,19549,19440
,3,19530,19445
,3,19529,575
,4,3,19450
,3,19529,135065
,3,19529,7520
,4,2,19455
,3,19529,7520
,4,2,19465
,3,19529,7520
,4,2,19475
,3,19529,7520
,4,2,19485
,3,19529,7520
,4,2,19495
,3,19529,7520
,4,2,19505
,3,19529,7520
,4,2,19515
,3,19529,7520
,4,2,19525
,3,19529,7520
,4,2,19535
,3,19529,7520
,4,2,19545
,3,19529,7520
,4,2,19555
,3,19529,7520
,4,2,19565
,3,19529,7520
,4,2,19575
,4,1,7975
,4,2,19590
,4,3,19595
,4,4,19600
,4,5,19605
,4,6,19610
,4,7,19615
,4,8,19620
,4,9,19625
,4,10,19630
,4,11,19635
,4,12,19640
,4,13,19645
,4,14,19650
,4,15,19655
,4,16,19660
,4,17,19665
,4,18,19670
,4,19,19675
,4,20,19680
,4,21,19685
,4,22,19690
,4,23,19695
,4,24,19700
,4,25,19705
,4,26,19710
,4,2,19460
,4,2,19470
,4,2,19480
,4,2,19490
,4,2,19500
,4,2,19510
,4,2,19520
,4,2,19530
,4,2,19540
,4,2,19550
,4,2,19560
,4,2,19570
,4,2,19580
,4,1,19720
,4,2,19665
,4,3,19725
,4,4,19705
,4,5,19730
,4,6,19705
,4,7,90
,4,8,19635
,4,9,80
,4,10,7975
,4,11,10475
,4,12,19675
,4,13,19735
,4,14,19685
,4,15,19740
,4,16,19695
,3,19529,7520
,4,1,10530
,4,2,10535
,4,3,10540
,4,4,10545
,4,5,10550
,4,6,10555
,4,7,10560
,4,8,10565
,4,9,10570
,4,10,10575
,4,11,10580
,4,12,10585
,4,2,19745
,3,19530,17585
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19765
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19775
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19785
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19795
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19805
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19815
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19825
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19835
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19845
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,6950
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19860
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19870
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19880
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19890
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19900
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19910
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,19920
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,4920
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,19935
,6,1,85
,3,19657,16845
,3,19658,32980
,3,19530,655
,3,19531,19945
,3,19532,19950
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,19955
,6,1,85
,3,19536,136575
,3,19537,20330
,3,19529,139175
,4,1,43860
,4,2,44350
,4,3,44350
,4,4,20320
,4,5,44335
,4,6,44060
,4,7,12595
,4,8,139275
,4,9,128715
,4,10,139275
,4,12,44155
,4,13,140710
,4,14,44040
,4,15,140710
,4,17,44285
,3,19529,4430
,4,5,16700
,4,6,20335
,4,7,20325
,4,8,20335
,4,9,16700
,4,10,20340
,3,19657,16845
,3,19658,32985
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,19965
,6,1,85
,3,19657,16845
,3,19658,32990
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,19975
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,19985
,6,1,85
,3,19657,16845
,3,19658,32995
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,19995
,6,1,85
,3,19657,16845
,3,19658,33000
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,20010
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,20025
,3,19532,20030
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,20035
,6,1,85
,3,19536,136590
,3,19537,20470
,3,19529,139175
,4,1,44060
,4,2,33385
,4,3,140715
,4,4,320
,4,5,140720
,4,6,30850
,4,7,139305
,4,8,20465
,4,9,44020
,4,10,20445
,4,11,43930
,4,12,16510
,4,13,140725
,4,14,16520
,4,15,140090
,4,16,5360
,4,17,140730
,4,18,30850
,4,19,139350
,4,20,140735
,4,21,44040
,4,22,140735
,3,19529,4430
,4,5,20475
,4,6,20480
,3,19657,16845
,3,19658,33005
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,20045
,6,1,85
,3,19657,16845
,3,19658,33010
,3,19529,4410
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,19920
,4,11,16850
,4,12,16845
,4,13,20060
,4,14,20065
,4,15,17585
,4,16,19765
,4,17,19775
,4,18,19785
,4,19,19795
,4,20,19805
,4,21,19815
,4,22,19825
,4,23,19835
,4,24,19845
,4,25,6950
,4,26,19860
,4,27,19870
,4,28,19880
,4,29,19890
,4,30,19900
,4,31,20070
,4,32,19910
,4,33,4920
,3,19530,655
,3,19531,20080
,3,19532,20055
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136550
,3,19537,20050
,3,19529,139175
,4,1,43840
,4,2,44350
,4,3,44350
,4,4,19755
,4,6,44020
,4,7,44125
,4,8,19760
,4,9,44335
,4,10,44125
,4,11,19770
,4,12,44335
,4,13,44125
,4,14,19780
,4,16,44020
,4,17,44125
,4,18,19790
,4,20,44020
,4,21,44125
,4,22,19800
,4,24,44020
,4,25,44125
,4,26,19810
,4,27,44335
,4,28,44125
,4,29,19820
,4,31,44020
,4,32,44125
,4,33,19830
,4,35,44020
,4,36,44125
,4,37,19840
,4,38,44335
,4,39,44125
,4,40,19850
,4,41,44335
,4,42,44125
,4,43,19855
,4,44,44335
,4,45,44125
,4,46,19865
,4,47,44335
,4,48,44125
,4,49,19875
,4,50,44335
,4,51,44125
,4,52,19885
,4,53,44335
,4,54,44125
,4,55,19895
,4,56,44335
,4,57,44125
,4,58,19905
,4,60,44020
,4,61,44125
,4,62,19915
,4,63,44335
,4,64,19925
,4,65,44335
,4,66,44125
,4,67,44060
,4,68,40055
,4,69,275
,4,70,44020
,4,71,44020
,4,72,44285
,4,73,19930
,4,75,44020
,4,76,33025
,4,77,139350
,4,78,19940
,4,80,44020
,4,81,33030
,4,82,139350
,4,83,19960
,4,85,44020
,4,86,33035
,4,87,139350
,4,88,19970
,4,90,44020
,4,91,33040
,4,92,139350
,4,93,19980
,4,95,44020
,4,96,22620
,4,97,139350
,4,98,19990
,4,100,44020
,4,101,20065
,4,102,139350
,4,103,44285
,4,104,17585
,4,105,139350
,4,106,19585
,4,107,44020
,4,108,33145
,4,109,139350
,4,110,19715
,4,111,44020
,4,112,33150
,4,113,139350
,4,114,6950
,4,115,139350
,4,116,19860
,4,117,139350
,4,118,19870
,4,119,139350
,4,120,19880
,4,121,139350
,4,122,20000
,4,123,44335
,4,124,41105
,4,125,33030
,4,126,44720
,4,127,295
,4,128,139350
,4,129,19750
,4,130,44150
,4,131,44285
,4,132,20005
,4,134,44020
,4,135,8930
,4,136,139350
,4,137,20015
,4,138,44335
,4,139,41120
,4,140,33030
,4,141,44720
,4,142,12130
,4,143,139350
,4,144,41135
,4,145,33030
,4,146,44720
,4,147,19920
,4,148,139350
,4,149,20020
,4,151,44020
,4,152,33060
,4,153,139350
,4,154,20040
,4,156,44020
,4,157,33065
,4,158,139350
,4,159,140685
,4,160,44040
,4,161,140685
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,20100
,3,19532,20090
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,136555
,3,19537,20085
,3,19529,139175
,4,1,44060
,4,2,20075
,4,4,44020
,4,5,140690
,4,6,44040
,4,7,140690
,4,2,20110
,4,2,20120
,4,2,20130
,4,2,20140
,3,19529,4410
,3,19529,7520
,4,1,20160
,4,2,20155
,3,19529,4410
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19538,20290
,3,19539,19930
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,2,1644,20175
,2,1645,20300
,2,1646,20305
,2,1647,20310
,2,1120,20315
,2,1018,20190
,2,882,20195
,2,133,20245
,2,1001,20250
,2,1002,20255
,2,1003,20260
,2,48,33045
,2,200,20345
,2,454,33050
,2,1007,33055
,2,1648,20350
,2,1649,20370
,2,19076,430
,3,19529,33350
,2,842,40055
,2,132,100
,2,19148,110
,2,19299,110
,2,19076,1390
,3,19529,1400
,4,1,40050
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19990
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,1650,41055
,2,1651,41060
,2,19076,425
,3,19538,41065
,3,19539,19755
,3,19540,20295
,6,64,85
,3,19600,41070
,3,19529,33250
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19760
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19770
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19538,41075
,3,19539,19780
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19538,41080
,3,19539,19790
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19538,41085
,3,19539,19800
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19810
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19538,41090
,3,19539,19820
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19538,41095
,3,19539,19830
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19840
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19850
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19855
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19865
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19875
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19885
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19895
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,1,0,10530
,1,1,10535
,1,2,10540
,1,3,10545
,1,4,10550
,1,5,10555
,1,6,10560
,1,7,10565
,1,8,10570
,1,9,10575
,1,10,10580
,1,11,10585
,2,19076,1070
,3,19599,19745
,3,19529,34480
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19538,41100
,3,19539,19905
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19925
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,3,19541,33015
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,16470
,4,3,20180
,4,4,20185
,4,5,20190
,4,6,20195
,4,7,20200
,4,8,20205
,4,9,20210
,4,10,20215
,4,11,20220
,4,12,20225
,4,13,20230
,4,14,20235
,4,15,20240
,4,16,20245
,4,17,20250
,4,18,20255
,4,19,20260
,4,20,20265
,4,21,20270
,4,22,20275
,4,23,20280
,4,24,20285
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19940
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,19945
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19960
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19970
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19980
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,3,19530,20325
,3,19531,4220
,3,19533,320
,3,19548,19435
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,20005
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19538,20355
,3,19539,20020
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,20025
,4,1,560
,4,2,20360
,4,3,20365
,2,827,85
,2,1025,110
,2,1026,100
,2,1027,100
,2,19076,430
,3,19529,33435
,2,828,85
,2,19076,430
,3,19529,31755
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,20040
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,1655,795
,2,19076,425
,2,1484,20430
,3,19539,19275
,3,19540,20435
,6,64,85
,3,19529,20440
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19155
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19165
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19175
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19538,41150
,3,19539,19185
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19215
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19225
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19235
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19245
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19538,41155
,3,19539,19255
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19265
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,2,828,20375
,2,19076,33445
,3,19600,33450
,3,19529,33455
,3,19541,33355
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,7440
,4,3,11715
,4,4,20380
,4,5,20385
,4,6,20390
,4,7,20395
,4,8,20400
,4,9,20405
,4,10,20410
,4,11,20415
,4,12,20420
,4,13,20425
,3,19544,425
,3,19662,12650
,3,19545,33380
,3,19529,142500
,4,1,16510
,4,3,20450
,4,5,20455
,4,7,20460
,4,1,16520
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19285
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19295
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19305
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19315
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19325
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19335
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19538,20550
,3,19539,19345
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19538,20560
,3,19539,19355
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,973,7440
,0,820,11715
,0,952,20380
,0,953,20385
,0,954,20390
,0,955,20395
,0,956,20400
,0,957,20405
,0,958,20410
,0,959,20415
,0,960,20420
,0,961,20425
,2,19076,425
,3,19539,19365
,3,19540,20435
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17510
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,2,926,18465
,2,128,950
,2,19076,430
,3,19600,41160
,3,19529,33795
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17355
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17365
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,2,19076,18480
,3,19600,41165
,3,19599,41170
,3,19529,33770
,3,19663,142780
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17400
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,2,19076,18480
,3,19600,41175
,3,19599,41180
,3,19529,38730
,3,19663,142790
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17410
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,17420
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17430
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17440
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17450
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17460
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17470
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17480
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17490
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17500
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,33710
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,20575
,4,3,18465
,4,4,20580
,4,5,20585
,4,6,20590
,4,7,950
,4,8,20595
,4,9,20600
,4,10,20605
,4,11,20610
,4,12,20615
,4,13,20620
,4,14,20625
,4,15,20630
,4,16,20635
,4,17,20640
,4,18,20645
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17520
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17530
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17540
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,17545
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17560
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,17570
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19538,20680
,3,19539,17580
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17590
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17600
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17610
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17620
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17630
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,17635
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17650
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17660
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17670
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17680
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17690
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17700
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17710
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17720
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17730
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17740
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17750
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17760
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17770
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17780
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17790
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17800
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17810
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17820
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17830
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17840
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17850
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17860
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17870
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17880
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17890
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17900
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17910
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17920
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17930
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17940
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17950
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17960
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17970
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17980
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,17990
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,18000
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,18010
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,0,855,20575
,0,926,18465
,0,865,20580
,0,866,20585
,0,927,20590
,0,128,950
,0,867,20595
,0,928,20600
,0,868,20605
,0,869,20610
,0,870,20615
,0,871,20620
,0,872,20625
,0,873,20630
,0,874,20635
,0,875,20640
,0,876,20645
,2,19076,425
,3,19539,18020
,3,19540,20650
,6,64,85
,3,19529,12650
,4,1,4220
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,20905
,6,1,85
,3,19657,990
,3,19658,34300
,3,19530,655
,3,19531,20915
,3,19532,20920
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,20925
,6,1,85
,3,19536,138585
,3,19537,29240
,3,19529,139175
,4,1,44045
,4,2,44060
,4,3,31535
,4,4,16850
,4,5,141280
,4,6,39140
,4,7,142055
,4,8,12575
,4,9,142060
,4,10,142065
,4,11,44040
,4,12,142065
,3,19529,4430
,4,5,4665
,4,6,29245
,3,19657,990
,3,19658,34305
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,20935
,6,1,85
,3,19657,990
,3,19658,34310
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,20945
,6,1,85
,3,19657,990
,3,19658,34315
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,20955
,6,1,85
,3,19657,990
,3,19658,34320
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,20965
,6,1,85
,3,19657,990
,3,19658,34325
,3,19529,4410
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,3,19529,4410
,4,3,20990
,4,1,20995
,4,3,21000
,3,19529,4410
,3,19529,4410
,3,19529,4410
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,20975
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,21030
,6,1,85
,3,19657,12595
,3,19658,34330
,3,19529,4410
,3,19530,655
,3,19531,21045
,3,19532,21050
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137050
,3,19537,21220
,3,19529,139175
,4,1,44060
,4,2,105
,4,3,44155
,4,5,140965
,4,6,44040
,4,7,140965
,4,8,115
,4,9,44155
,3,19529,4430
,4,5,21225
,4,6,16510
,3,19529,4410
,3,19529,7520
,4,1,21070
,4,2,21065
,4,2,21080
,3,19529,4410
,3,19529,7520
,4,1,21110
,4,2,21105
,3,19529,4410
,3,19529,4410
,4,3,21135
,4,1,21140
,4,3,21145
,4,5,21150
,4,7,21155
,4,9,21160
,3,19529,4410
,3,19529,4410
,3,19529,7520
,4,1,21180
,4,2,21175
,3,19529,4410
,4,1,655
,3,19529,4410
,3,19529,4410
,4,3,21210
,4,1,21215
,3,19529,4410
,3,19530,21240
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,21250
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,21260
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,21270
,3,19531,21275
,3,19532,21280
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138890
,3,19660,30445
,3,19537,30450
,3,19529,139175
,4,1,44060
,4,2,44140
,4,4,142330
,4,5,44040
,4,6,142330
,4,7,142335
,4,8,43970
,4,9,142340
,4,10,142340
,4,13,44285
,4,14,139320
,4,15,139320
,4,16,43990
,4,17,30460
,4,18,44190
,4,19,139320
,4,20,43750
,4,21,43810
,4,22,139405
,4,23,139320
,4,24,28010
,4,25,139275
,4,27,44020
,4,28,21275
,4,29,43755
,4,30,139320
,4,31,30465
,4,32,44190
,4,33,21275
,4,34,21275
,4,35,30470
,4,36,44240
,4,38,142330
,4,39,44040
,4,40,142330
,4,41,139320
,4,42,43950
,4,43,142330
,4,44,44040
,4,45,142330
,4,46,139320
,4,47,43750
,4,48,43810
,4,49,139405
,4,50,32330
,4,51,139275
,4,52,43950
,4,53,30475
,4,54,44190
,3,19529,4430
,4,5,28010
,4,6,30480
,4,7,28515
,3,19530,21290
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,21300
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,21310
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,21380
,6,1,85
,3,19657,12595
,3,19658,34545
,3,19529,4410
,3,19529,590
,4,1,21410
,0,1058,85
,0,1059,85
,0,1060,85
,2,19076,425
,3,19539,21360
,3,19540,21440
,6,64,85
,3,19529,12650
,4,1,4220
,3,19529,590
,4,1,21420
,0,1058,85
,0,1059,85
,0,1060,85
,2,19076,425
,3,19539,21365
,3,19540,21440
,6,64,85
,3,19529,12650
,4,1,4220
,3,19529,590
,4,1,21430
,0,1058,85
,0,1059,85
,0,1060,85
,2,19076,425
,3,19538,34570
,3,19539,21370
,3,19540,21440
,6,64,85
,3,19529,12650
,4,1,4220
,0,1058,85
,0,1059,85
,0,1060,85
,2,19076,425
,3,19539,21375
,3,19540,21440
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,16035
,3,19542,15975
,3,19543,685
,3,19529,30810
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,21450
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,21460
,6,1,85
,3,19529,4410
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,21445
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,0,122,915
,0,795,15940
,0,820,15945
,0,796,15950
,0,797,15955
,0,798,15960
,0,821,15965
,0,799,15970
,2,19076,425
,3,19539,21455
,3,19540,15975
,6,64,85
,3,19529,12650
,4,1,4220
,3,19530,21485
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,21495
,6,1,85
,3,19657,34615
,3,19658,34620
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,15135
,3,19534,335
,3,19535,21505
,6,1,85
,3,19657,12595
,3,19658,34625
,3,19529,4410
,0,1066,21535
,0,1067,16935
,0,1068,16950
,0,1063,21540
,2,19076,425
,3,19539,21490
,3,19540,21545
,6,64,85
,3,19529,12650
,4,1,4220
,2,19076,430
,3,19529,31135
,0,1066,21535
,0,1067,16935
,0,1068,16950
,0,1063,21540
,2,19076,425
,3,19539,21480
,3,19540,21545
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,16045
,3,19542,15975
,3,19543,685
,3,19529,30810
,4,2,21535
,4,3,16935
,4,4,16950
,4,5,21540
,0,1066,21535
,0,1067,16935
,0,1068,16950
,0,1063,21540
,2,19076,425
,3,19539,21500
,3,19540,21545
,6,64,85
,3,19529,12650
,4,1,4220
,3,19529,4410
,4,3,21560
,4,1,21565
,4,3,21570
,3,19529,4410
,3,19529,7520
,4,1,21610
,4,2,21605
,3,19529,4410
,3,19549,21630
,3,19530,21635
,3,19529,575
,4,3,21640
,3,19529,135065
,3,19530,21650
,3,19531,21655
,3,19532,21660
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137205
,3,19537,22110
,3,19529,139175
,4,1,44060
,4,2,21345
,4,3,139290
,4,4,44245
,4,5,140095
,4,6,200
,4,7,43935
,4,8,7450
,4,9,44720
,4,10,128915
,4,11,43935
,4,12,7450
,4,13,141065
,4,14,43750
,4,15,44105
,4,16,43870
,4,17,7450
,4,18,141065
,4,19,43750
,4,20,44245
,4,21,43750
,4,22,44245
,4,23,141070
,4,24,44040
,4,25,141070
,4,26,43800
,4,27,44140
,4,28,128915
,4,29,7410
,4,30,44540
,4,31,141070
,4,32,44040
,4,33,141070
,4,34,43750
,4,35,44330
,4,36,43755
,4,37,141070
,4,38,44040
,4,39,141070
,3,19529,4430
,4,5,22115
,4,6,22120
,4,7,22125
,4,8,10255
,4,9,22130
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21670
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21680
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21690
,6,1,85
,3,19657,16845
,3,19658,34670
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21700
,6,1,85
,3,19657,16845
,3,19658,34675
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21710
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21720
,6,1,85
,3,19657,16845
,3,19658,34680
,3,19530,655
,3,19531,21730
,3,19532,21735
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21670
,6,1,85
,3,19536,137880
,3,19537,28285
,3,19529,139175
,4,1,44060
,4,2,12130
,4,3,141505
,4,4,7430
,4,5,141675
,4,6,141680
,4,7,44040
,4,8,141680
,3,19529,4430
,4,5,22945
,3,19530,655
,3,19531,21745
,3,19532,21750
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21755
,6,1,85
,3,19536,137180
,3,19537,22030
,3,19529,139175
,4,1,44045
,4,2,44060
,4,3,655
,4,5,21345
,4,6,139675
,4,7,44245
,4,8,43800
,4,9,139440
,4,10,12595
,4,11,139280
,4,12,21590
,4,13,44680
,4,14,10020
,4,15,139275
,4,16,129875
,4,17,22040
,4,18,44115
,4,19,44020
,4,20,44275
,4,21,205
,4,22,44415
,4,23,44420
,4,24,7545
,4,25,141020
,4,26,205
,4,27,43770
,4,30,43750
,4,31,44245
,4,32,141025
,4,33,44040
,4,34,141025
,4,35,43800
,4,36,44140
,4,37,205
,4,38,7735
,4,39,141030
,4,40,22015
,4,41,44335
,4,42,6840
,4,43,141035
,4,44,44140
,4,45,22045
,4,46,44075
,4,47,205
,4,48,6700
,4,49,141040
,4,50,44140
,4,51,205
,4,52,655
,4,53,44415
,4,54,44275
,4,55,200
,4,56,141025
,4,57,44040
,4,58,141025
,3,19529,4430
,4,5,4665
,4,6,22050
,4,7,22055
,4,8,10255
,4,9,16585
,3,19657,16845
,3,19658,34685
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21765
,6,1,85
,3,19657,16845
,3,19658,34690
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21775
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21785
,6,1,85
,3,19657,16845
,3,19658,34695
,3,19530,655
,3,19531,21795
,3,19532,21800
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21805
,6,1,85
,3,19536,137875
,3,19537,28260
,3,19529,139175
,4,1,44060
,4,2,28270
,4,3,44190
,4,4,140095
,4,5,140095
,4,6,44275
,4,7,43755
,4,8,200
,4,9,141665
,4,10,44040
,4,11,141665
,4,12,44275
,4,13,21345
,4,14,139295
,4,15,44245
,4,16,7795
,4,17,141670
,4,18,44415
,3,19529,4430
,4,5,16585
,4,6,28110
,4,7,28275
,4,8,28280
,3,19657,16845
,3,19658,34700
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21815
,6,1,85
,3,19657,16845
,3,19658,34705
,3,19530,655
,3,19531,21825
,3,19532,21830
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21835
,6,1,85
,3,19536,137950
,3,19537,28405
,3,19529,139175
,4,1,44060
,4,2,28415
,4,3,44190
,4,4,140095
,4,5,141735
,4,6,44040
,4,7,141735
,3,19529,4430
,4,5,16585
,3,19657,16845
,3,19658,34710
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21855
,6,1,85
,3,19657,16845
,3,19658,34715
,3,19530,655
,3,19531,21865
,3,19532,21870
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,21875
,6,1,85
,3,19536,137655
,3,19537,28020
,3,19529,139175
,4,1,44060
,4,2,141430
,4,3,44040
,4,4,141430
,3,19529,4430
,4,5,16585
,3,19657,16845
,3,19658,34720
,3,19529,4410
,4,3,21885
,4,1,21890
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,21595
,4,11,19395
,4,12,16850
,4,13,16845
,4,14,21650
,4,15,21900
,4,16,21905
,4,17,21670
,4,18,21680
,4,19,21910
,3,19530,655
,3,19531,21920
,3,19532,21895
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137165
,3,19537,21880
,3,19529,139175
,4,1,44255
,4,2,44350
,4,3,44350
,4,4,21645
,4,5,44335
,4,6,44125
,4,7,44060
,4,8,12595
,4,9,139280
,4,10,32125
,4,11,139280
,4,12,129600
,4,13,43935
,4,16,19395
,4,17,21890
,4,18,44190
,4,19,44140
,4,20,137140
,4,21,137145
,4,22,44020
,4,23,44020
,4,24,44285
,4,25,137150
,4,26,137155
,4,27,44020
,4,28,44020
,4,29,44285
,4,30,21665
,4,32,44020
,4,33,44285
,4,34,21675
,4,36,44020
,4,37,44285
,4,38,21685
,4,40,44020
,4,41,34735
,4,42,139350
,4,43,21695
,4,45,44020
,4,46,24625
,4,47,139350
,4,48,21705
,4,50,44020
,4,51,6700
,4,52,139350
,4,53,21715
,4,55,44020
,4,56,34740
,4,57,139350
,4,58,129490
,4,59,34745
,4,60,139350
,4,61,129060
,4,62,34750
,4,63,139350
,4,64,40020
,4,65,137160
,4,66,44020
,4,67,44020
,4,68,44285
,4,69,21725
,4,70,44335
,4,71,44285
,4,72,21740
,4,74,44020
,4,75,34735
,4,76,139350
,4,77,21760
,4,79,44020
,4,80,24625
,4,81,139350
,4,82,21770
,4,84,44020
,4,85,6700
,4,86,139350
,4,87,21780
,4,89,44020
,4,90,34740
,4,91,139350
,4,92,205
,4,93,34745
,4,94,139350
,4,95,41220
,4,96,34750
,4,97,139350
,4,98,21790
,4,100,44020
,4,101,28930
,4,102,139350
,4,103,21810
,4,105,44020
,4,106,34755
,4,107,139350
,4,108,21820
,4,110,44020
,4,111,34760
,4,112,139350
,4,113,21840
,4,114,44335
,4,115,41230
,4,116,33030
,4,117,44720
,4,118,31285
,4,119,139350
,4,120,21845
,4,121,44335
,4,122,41245
,4,123,33030
,4,124,44720
,4,125,34770
,4,126,139350
,4,127,44140
,4,128,21850
,4,130,44020
,4,131,34780
,4,132,139350
,4,133,21860
,4,135,44020
,4,136,34780
,4,137,139350
,4,138,141005
,4,139,44040
,4,140,141005
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,21940
,3,19532,21930
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137170
,3,19537,21925
,3,19529,139175
,4,1,44060
,4,2,21915
,4,4,44020
,4,5,141010
,4,6,44040
,4,7,141010
,0,856,16470
,0,855,21950
,0,1076,21955
,0,1087,85
,0,1088,85
,0,1077,21960
,0,1078,85
,0,1089,21965
,2,19076,425
,3,19539,21740
,3,19540,21970
,6,64,85
,3,19529,12650
,4,1,21745
,2,1704,21945
,2,1264,21975
,2,402,21980
,2,1705,21985
,2,1706,205
,2,1707,41220
,2,1413,21995
,2,1708,22000
,2,1709,22005
,2,1506,34765
,2,1710,34775
,2,1711,22010
,2,19076,430
,3,19600,41225
,3,19529,34895
,0,856,16470
,0,855,21950
,0,1076,21955
,0,1087,85
,0,1088,85
,0,1077,21960
,0,1078,85
,0,1089,21965
,2,19076,425
,3,19539,21645
,3,19540,21970
,6,64,85
,3,19529,12650
,4,1,21655
,0,856,16470
,0,855,21950
,0,1076,21955
,0,1087,85
,0,1088,85
,0,1077,21960
,0,1078,85
,0,1089,21965
,2,19076,425
,3,19539,21725
,3,19540,21970
,6,64,85
,3,19529,12650
,4,1,21730
,2,842,40020
,2,132,110
,2,19148,110
,2,19299,110
,2,19076,1390
,3,19529,1400
,4,1,40015
,3,19541,34725
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,16470
,4,3,21950
,4,4,21955
,4,7,21960
,4,9,21965
,0,856,16470
,0,855,21950
,0,1076,21955
,0,1087,85
,0,1088,85
,0,1077,21960
,0,1078,85
,0,1089,21965
,2,19076,425
,3,19539,21760
,3,19540,21970
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,21950
,0,1076,21955
,0,1087,85
,0,1088,85
,0,1077,21960
,0,1078,85
,0,1089,21965
,2,19076,425
,3,19539,21770
,3,19540,21970
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,21950
,0,1076,21955
,0,1087,85
,0,1088,85
,0,1077,21960
,0,1078,85
,0,1089,21965
,2,19076,425
,3,19538,21990
,3,19539,21780
,3,19540,21970
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,856,16470
,0,855,21950
,0,1076,21955
,0,1087,85
,0,1088,85
,0,1077,21960
,0,1078,85
,0,1089,21965
,2,19076,425
,3,19539,21790
,3,19540,21970
,6,64,85
,3,19529,12650
,4,1,21795
,0,856,16470
,0,855,21950
,0,1076,21955
,0,1087,85
,0,1088,85
,0,1077,21960
,0,1078,85
,0,1089,21965
,2,19076,425
,3,19539,21810
,3,19540,21970
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,21950
,0,1076,21955
,0,1087,85
,0,1088,85
,0,1077,21960
,0,1078,85
,0,1089,21965
,2,19076,425
,3,19539,21820
,3,19540,21970
,6,64,85
,3,19529,12650
,4,1,21825
,0,856,16470
,0,855,21950
,0,1076,21955
,0,1087,85
,0,1088,85
,0,1077,21960
,0,1078,85
,0,1089,21965
,2,19076,425
,3,19539,21860
,3,19540,21970
,6,64,85
,3,19529,12650
,4,1,21865
,3,19530,655
,3,19531,22020
,3,19532,22025
,3,19533,320
,3,19548,21625
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137200
,3,19537,22105
,3,19529,139175
,4,1,44060
,4,2,44275
,4,3,141060
,4,4,44040
,4,5,141060
,3,19529,4430
,4,5,295
,3,19529,4410
,4,3,22035
,4,1,22040
,4,3,22045
,3,19529,7520
,4,1,22065
,4,2,22060
,4,2,22075
,3,19529,4410
,4,3,22090
,4,1,22095
,4,3,22100
,3,19529,4410
,3,19529,4410
,3,19549,22140
,3,19530,22145
,3,19529,575
,4,3,22150
,3,19529,135065
,3,19530,4920
,3,19531,22170
,3,19532,22175
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138295
,3,19537,29190
,3,19529,139175
,4,1,44060
,4,2,320
,4,3,139280
,4,4,30850
,4,5,139280
,4,6,4920
,4,7,139280
,4,8,12560
,4,9,44720
,4,10,142050
,4,11,44040
,4,12,142050
,3,19529,4430
,4,5,29195
,4,6,29200
,3,19530,16595
,3,19531,22185
,3,19532,22190
,3,19533,320
,3,19548,22135
,3,19534,1450
,3,19535,340
,6,1,22195
,3,19536,137840
,3,19537,28210
,3,19529,139175
,4,1,44060
,4,2,16640
,4,3,141580
,4,5,44215
,4,6,16845
,4,7,141585
,4,8,22935
,4,9,141590
,4,10,43955
,4,11,38585
,4,12,139280
,4,13,44085
,4,14,38585
,4,15,139280
,4,16,7375
,4,17,44740
,4,19,22945
,4,20,141595
,4,22,31450
,4,23,141600
,4,24,28205
,4,25,43700
,4,26,38585
,4,27,141605
,4,28,141610
,4,29,44040
,4,30,141610
,3,19529,4430
,4,5,16640
,4,6,22935
,3,19544,38535
,3,19546,22675
,4,2,38595
,3,19547,38590
,3,19529,142500
,3,19530,22205
,3,19531,22210
,3,19532,22215
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137640
,3,19660,27965
,3,19537,27970
,3,19529,139175
,4,1,44060
,4,2,23310
,4,3,16850
,4,4,141280
,4,5,129395
,4,6,44020
,4,7,22210
,4,8,37250
,4,9,141395
,4,10,141400
,4,11,44040
,4,12,141400
,3,19529,4430
,4,5,16585
,4,6,23310
,3,19530,22225
,3,19531,22230
,3,19532,22235
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138290
,3,19660,29160
,3,19537,29165
,3,19529,139175
,4,1,44060
,4,2,29175
,4,3,44075
,4,4,44140
,4,5,139320
,4,6,142045
,4,7,44040
,4,8,142045
,4,9,23310
,4,10,16850
,4,11,44740
,4,12,4525
,4,13,44020
,4,15,22230
,4,16,128845
,4,17,34735
,4,18,44720
,4,19,129065
,4,20,37170
,4,21,44720
,4,22,4525
,4,23,44020
,4,24,16585
,4,25,139350
,4,26,128900
,4,27,43810
,4,28,128825
,4,29,44310
,4,30,28255
,4,31,139275
,4,32,44310
,4,33,28255
,4,34,139350
,4,35,44020
,4,36,22230
,4,37,129270
,4,38,139280
,4,39,10860
,4,40,44740
,4,41,129975
,4,42,139280
,4,43,139405
,3,19529,4430
,4,5,23305
,4,6,23310
,4,7,29180
,4,8,29185
,4,9,29155
,3,19530,22245
,3,19531,22250
,3,19532,22255
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138285
,3,19537,29125
,3,19529,139175
,4,1,44060
,4,2,29135
,4,3,44190
,4,4,44275
,4,6,142040
,4,7,44040
,4,8,142040
,4,9,34735
,4,10,44720
,4,11,29140
,4,12,44190
,4,13,44140
,4,14,29145
,4,15,44075
,4,16,44275
,4,17,21350
,4,18,34735
,4,19,44710
,4,20,29150
,4,21,44075
,3,19529,4430
,4,5,23305
,4,6,23215
,4,7,29155
,4,8,22945
,3,19530,22265
,3,19531,22270
,3,19532,22275
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137450
,3,19537,23290
,3,19529,139175
,4,1,44060
,4,2,23310
,4,3,16850
,4,4,141280
,4,5,23300
,4,6,44190
,4,7,44200
,4,8,35665
,4,9,141285
,4,10,44140
,4,11,35015
,4,12,141290
,4,13,24435
,4,14,141295
,4,15,141300
,4,16,44040
,4,17,141300
,3,19529,4430
,4,5,23305
,4,6,23310
,4,7,23315
,3,19530,22285
,3,19531,22290
,3,19532,22295
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138265
,3,19537,29105
,3,19529,139175
,4,1,44060
,4,2,21345
,4,3,139290
,4,4,140095
,4,5,44415
,4,6,29115
,4,7,44190
,4,8,44110
,4,9,142035
,4,10,44040
,4,11,142035
,4,12,43750
,4,13,44105
,4,14,142035
,4,15,44040
,4,16,142035
,4,17,43670
,3,19529,4430
,4,5,295
,4,6,23215
,4,7,10255
,4,8,29120
,4,9,22945
,3,19530,22305
,3,19531,22310
,3,19532,22315
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138090
,3,19537,28805
,3,19529,139175
,4,1,44060
,4,2,7565
,4,3,44740
,4,4,43970
,4,5,7430
,4,6,44540
,4,7,141995
,4,8,44040
,4,9,141995
,3,19529,4430
,4,5,28435
,3,19530,655
,3,19531,22325
,3,19532,22330
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22335
,6,1,85
,3,19536,137400
,3,19537,23165
,3,19529,139175
,4,1,44060
,4,2,141205
,4,3,44040
,4,4,141205
,3,19529,4430
,3,19657,16595
,3,19658,34910
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22345
,6,1,85
,3,19657,16595
,3,19658,34915
,3,19530,655
,3,19531,22355
,3,19532,22360
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22365
,6,1,85
,3,19536,137405
,3,19537,23185
,3,19529,139175
,4,1,44060
,4,2,320
,4,3,140720
,4,4,35000
,4,5,141210
,4,6,5010
,4,7,141215
,4,8,7545
,4,9,141020
,4,10,205
,4,11,43770
,4,12,23175
,4,13,44150
,4,14,7430
,4,15,141220
,4,16,205
,4,17,43770
,4,20,129270
,4,21,141140
,4,22,23180
,4,23,44080
,4,24,22930
,4,25,141225
,4,26,22880
,4,27,141230
,4,28,11920
,4,29,141145
,4,30,34995
,4,31,141235
,4,32,139320
,4,33,43745
,4,34,34995
,4,35,139275
,4,36,139320
,4,37,141240
,4,38,44040
,4,39,141240
,4,40,21345
,4,41,139290
,4,42,139705
,4,43,34735
,4,44,141245
,4,45,44140
,4,46,23195
,4,47,44190
,4,48,44110
,4,49,44140
,4,50,23200
,4,51,44075
,4,52,44110
,4,53,23205
,4,54,44075
,4,55,44275
,4,56,21350
,4,57,34735
,4,58,44710
,4,59,23210
,4,60,44075
,4,61,44275
,4,62,34995
,4,63,141235
,4,64,139405
,4,65,43750
,4,66,43810
,4,67,141240
,4,68,44040
,4,69,141240
,4,70,43670
,3,19529,4430
,4,5,22930
,4,6,22880
,4,7,23215
,4,8,23220
,4,9,23225
,4,10,10255
,4,11,23230
,4,12,23235
,4,13,22945
,3,19657,16595
,3,19658,34920
,3,19530,655
,3,19531,22375
,3,19532,22380
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22385
,6,1,85
,3,19536,137910
,3,19537,28315
,3,19529,139175
,4,1,44060
,4,2,34735
,4,3,141480
,4,4,12595
,4,5,141015
,4,6,32125
,4,7,141690
,4,8,129600
,4,9,43935
,4,10,137895
,4,11,137900
,4,12,44020
,4,13,44020
,4,14,38660
,4,15,137905
,4,16,44020
,4,17,44020
,4,18,12595
,4,19,141015
,4,20,32125
,4,21,141690
,4,22,129600
,4,23,43935
,4,24,129490
,4,25,205
,4,26,28310
,4,27,43700
,4,28,7735
,4,29,141030
,4,30,21345
,4,31,139290
,4,32,44245
,4,33,139705
,4,34,129380
,4,35,43935
,4,36,44105
,4,37,7430
,4,38,141695
,4,39,129380
,4,40,7470
,4,41,141700
,4,42,6700
,4,43,141040
,4,44,7375
,4,45,141705
,4,46,43750
,4,47,44245
,4,48,141710
,4,49,44040
,4,50,141710
,4,51,43800
,4,52,141710
,4,53,44040
,4,54,141710
,3,19529,4430
,4,5,28320
,4,6,28325
,4,7,28330
,4,8,22880
,4,9,22115
,4,10,28335
,4,11,28280
,3,19657,16595
,3,19658,34925
,3,19530,655
,3,19531,22395
,3,19532,22400
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22405
,6,1,85
,3,19536,137365
,3,19537,23070
,3,19529,139175
,4,1,44060
,4,2,31285
,4,3,140125
,4,4,44140
,4,5,23010
,4,6,44020
,4,7,44355
,4,8,141155
,4,9,44040
,4,10,141155
,4,11,7775
,4,12,141160
,4,13,129195
,4,14,43935
,4,15,128915
,4,16,43935
,4,17,43955
,4,18,22880
,4,19,139280
,4,20,44085
,4,21,23015
,4,22,43700
,4,23,22880
,4,24,139350
,4,25,22880
,4,26,139280
,4,27,7470
,4,28,44740
,4,29,23025
,4,30,44065
,4,31,44355
,4,32,44355
,4,33,43755
,4,34,16640
,4,35,139275
,4,36,43755
,4,37,22945
,4,38,139275
,4,39,43755
,4,40,23035
,4,41,44150
,4,42,7470
,4,43,44540
,4,44,200
,4,45,35025
,4,46,44540
,4,47,7470
,4,48,44540
,4,49,23045
,4,50,44065
,4,51,44355
,4,52,44355
,4,53,137355
,4,54,137360
,4,55,44020
,4,56,44020
,4,57,22945
,4,58,139275
,4,59,34755
,4,60,44540
,4,61,12150
,4,62,44540
,4,63,43755
,4,64,16640
,4,65,139275
,4,66,16640
,4,67,139275
,4,68,28930
,4,69,44540
,4,70,34735
,4,71,44710
,4,72,200
,4,73,43990
,4,74,205
,4,75,6910
,4,76,44540
,4,77,43990
,4,78,129195
,4,79,43810
,4,80,129755
,4,81,43810
,4,82,129900
,4,83,44310
,4,84,44310
,4,85,129300
,4,86,44310
,4,87,16640
,4,88,139275
,4,89,44310
,4,90,23080
,4,91,44190
,4,92,23065
,4,93,44020
,4,94,44355
,4,95,23055
,4,96,44210
,4,97,22945
,4,98,139275
,4,99,28930
,4,100,44540
,4,101,44355
,4,102,44355
,3,19529,4430
,4,5,22930
,4,6,22935
,4,7,23085
,4,8,22880
,4,9,23090
,4,10,23095
,4,11,23100
,4,12,16640
,3,19657,16595
,3,19658,34930
,3,19530,655
,3,19531,22415
,3,19532,22420
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22425
,6,1,85
,3,19536,137340
,3,19660,22895
,3,19537,22900
,3,19529,139175
,4,1,44060
,4,2,43955
,4,3,128705
,4,4,44415
,4,5,128885
,4,6,44420
,4,7,16640
,4,8,139280
,4,9,44420
,4,10,22910
,4,11,44190
,4,12,35040
,4,13,141100
,4,14,31275
,4,15,141105
,4,16,139320
,4,17,43745
,4,18,16845
,4,19,139275
,4,20,141110
,4,21,44040
,4,22,141110
,4,23,31285
,4,24,140125
,4,25,44140
,4,26,16610
,4,27,44070
,4,28,16610
,4,29,22915
,4,30,44115
,4,31,16610
,4,32,31290
,4,33,44540
,4,34,128770
,4,35,35210
,4,36,44710
,4,37,31275
,4,38,139275
,4,39,16610
,4,40,139350
,4,41,16845
,4,42,139275
,4,43,129625
,4,44,43810
,4,45,22920
,4,46,44190
,4,47,16850
,4,48,44540
,4,49,22925
,4,50,44115
,4,51,43765
,4,52,12595
,4,53,139280
,4,54,32350
,4,55,139350
,4,56,200
,4,57,16640
,4,58,141115
,4,59,31275
,4,60,141105
,4,61,139405
,4,63,44020
,4,64,22415
,4,65,44140
,4,66,31275
,4,67,139275
,4,68,22415
,4,69,22415
,4,70,35205
,4,71,141120
,4,73,16845
,4,74,141125
,3,19529,4430
,4,5,22930
,4,6,22935
,4,7,22940
,4,8,22945
,4,9,22950
,4,10,22955
,4,11,16855
,4,12,22960
,3,19530,655
,3,19531,22435
,3,19532,22440
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22445
,6,1,85
,3,19536,137350
,3,19537,22965
,3,19529,139175
,4,1,44060
,4,2,31285
,4,3,140125
,4,4,44140
,4,5,141130
,4,6,44040
,4,7,141130
,4,8,35030
,4,9,141135
,4,10,139705
,4,11,139705
,4,12,129345
,4,13,129270
,4,14,141140
,4,15,11920
,4,16,141145
,4,17,44415
,4,18,129985
,4,19,44420
,4,20,129270
,4,21,141140
,4,22,11920
,4,23,141145
,4,24,44420
,4,25,22975
,4,26,44190
,4,27,35020
,4,28,141150
,4,29,44275
,4,30,10000
,4,31,139275
,4,32,129230
,4,33,43810
,4,34,195
,4,35,44310
,4,36,22980
,4,37,44115
,4,38,130275
,4,39,16615
,4,40,139350
,4,41,44020
,3,19529,4430
,4,5,22930
,4,6,22935
,4,7,22985
,4,8,16640
,4,9,22880
,4,10,22945
,4,11,22990
,3,19657,16595
,3,19658,34935
,3,19530,655
,3,19531,22455
,3,19532,22460
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22465
,6,1,85
,3,19536,137855
,3,19537,28215
,3,19529,139175
,4,1,44060
,4,2,129420
,4,3,129270
,4,4,141140
,4,5,11920
,4,6,141145
,4,7,44415
,4,8,129760
,4,9,44420
,4,10,129270
,4,11,141140
,4,12,16640
,4,13,141615
,4,14,11920
,4,15,141145
,4,16,44420
,4,17,28225
,4,18,44190
,4,19,31450
,4,20,141620
,4,21,44140
,4,22,28230
,4,23,44190
,4,24,22945
,4,25,141625
,4,26,28930
,4,27,141630
,4,28,35025
,4,29,141635
,4,30,22880
,4,31,141640
,4,32,34760
,4,33,141645
,4,34,44275
,4,35,35260
,4,36,35000
,4,37,141210
,4,38,139320
,4,39,44085
,4,40,35260
,4,41,35000
,4,42,141210
,4,43,44730
,4,45,31450
,4,46,141650
,4,47,141655
,4,48,44040
,4,49,141655
,3,19529,4430
,4,5,22945
,4,6,28235
,3,19530,655
,3,19531,22475
,3,19532,22480
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22485
,6,1,85
,3,19536,138155
,3,19537,29085
,3,19529,139175
,4,1,44060
,4,4,129950
,4,5,29095
,4,6,44075
,4,7,128730
,4,8,29100
,4,9,44075
,4,10,35035
,4,11,44720
,4,12,142030
,4,13,44040
,4,14,142030
,3,19529,4430
,4,5,16585
,3,19657,16595
,3,19658,34940
,3,19530,655
,3,19531,22495
,3,19532,22500
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22505
,6,1,85
,3,19536,138115
,3,19537,28890
,3,19529,139175
,4,1,43985
,4,2,28845
,4,3,44335
,4,4,44060
,4,5,44285
,4,6,38785
,4,7,138100
,4,8,44020
,4,9,44020
,4,10,655
,4,11,7650
,4,12,44720
,4,13,28860
,4,15,44020
,4,16,34735
,4,17,139350
,4,18,320
,4,19,139280
,4,20,22880
,4,21,28830
,4,22,43760
,4,23,28870
,4,24,44335
,4,25,17595
,4,26,142005
,4,27,5380
,4,28,44750
,4,29,12595
,4,30,139280
,4,31,32350
,4,32,139280
,4,33,129975
,4,34,139350
,4,35,35000
,4,36,139280
,4,37,128980
,4,38,139350
,4,39,28880
,4,41,44020
,4,42,41475
,4,43,139350
,4,44,31275
,4,45,139280
,4,46,28095
,4,47,139350
,4,48,28930
,4,49,44740
,4,50,34990
,4,51,139280
,4,52,44140
,4,53,16640
,4,54,139275
,4,55,200
,4,56,43990
,4,57,130070
,4,58,28900
,4,59,44190
,4,61,44215
,4,62,990
,4,63,139275
,4,64,44020
,4,65,28905
,4,66,990
,4,67,139275
,4,68,139320
,4,69,139405
,4,70,142010
,4,71,44040
,4,72,142010
,4,73,16850
,4,74,139350
,4,75,16845
,4,76,139275
,4,77,16845
,4,78,139350
,4,79,16860
,4,80,139350
,4,81,16865
,4,82,139350
,4,83,16855
,4,84,139350
,4,85,990
,4,86,139350
,4,87,28275
,4,88,139275
,4,89,28275
,4,90,139350
,4,92,28910
,4,93,43925
,4,94,142010
,4,95,44040
,4,96,142010
,4,97,129980
,4,98,28915
,4,99,44190
,4,100,990
,4,101,139275
,4,102,16850
,4,103,139350
,4,104,990
,4,105,139275
,4,106,16845
,4,107,139275
,4,108,16845
,4,109,139350
,4,110,990
,4,111,139275
,4,112,16860
,4,113,139350
,4,114,990
,4,115,139275
,4,116,16865
,4,117,139350
,4,118,990
,4,119,139275
,4,120,16855
,4,121,139350
,4,123,28920
,4,124,43965
,4,125,31295
,4,126,44740
,4,128,28925
,4,129,43965
,4,130,990
,4,131,139280
,4,132,128905
,4,133,139280
,4,134,43745
,4,135,43755
,4,136,12595
,4,137,139275
,4,138,32130
,4,139,139275
,4,140,139320
,4,141,43755
,4,142,12595
,4,143,139275
,4,144,32130
,4,145,139275
,4,146,139320
,4,148,35040
,4,149,44710
,4,150,44285
,4,151,16610
,4,152,44285
,4,153,43990
,4,154,990
,4,155,139275
,4,156,128905
,4,157,139275
,4,158,128820
,4,159,139275
,4,160,129690
,4,161,44465
,4,162,28840
,4,163,43710
,4,164,16845
,4,165,139280
,4,166,43905
,4,167,43905
,4,168,43905
,4,169,43905
,4,170,43905
,4,171,16845
,4,172,139280
,4,173,12575
,4,174,44720
,3,19529,4430
,4,5,28435
,4,6,22945
,4,7,16850
,4,8,28930
,4,9,28935
,4,10,11750
,4,11,28940
,4,12,28945
,4,13,28950
,4,14,28955
,3,19657,16595
,3,19658,34945
,3,19530,655
,3,19531,22515
,3,19532,22520
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22525
,6,1,85
,3,19536,137970
,3,19537,28420
,3,19529,139175
,4,1,44060
,4,2,23310
,4,3,16850
,4,4,44740
,4,5,129065
,4,6,37170
,4,7,44720
,4,8,28430
,4,9,44190
,4,10,35210
,4,11,44720
,4,12,141740
,4,13,44040
,4,14,141740
,3,19529,4430
,4,5,16855
,4,6,22945
,4,7,28435
,3,19657,34950
,3,19658,34955
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22535
,6,1,85
,3,19657,34960
,3,19658,34965
,3,19530,655
,3,19531,22545
,3,19532,22550
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22555
,6,1,85
,3,19536,137330
,3,19537,22890
,3,19529,139175
,4,1,44060
,4,2,12595
,4,3,139280
,4,4,32130
,4,5,139280
,4,6,140095
,4,9,35035
,4,10,44750
,4,11,12595
,4,12,139280
,4,13,21270
,4,14,44680
,4,15,141095
,4,16,44040
,4,17,141095
,3,19529,4430
,3,19657,16595
,3,19658,34970
,3,19530,655
,3,19531,22565
,3,19532,22570
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22575
,6,1,85
,3,19536,137270
,3,19537,22870
,3,19529,139175
,4,1,44060
,4,2,12595
,4,3,139280
,4,4,32125
,4,5,139280
,4,6,129600
,4,7,43935
,4,10,44140
,4,11,12595
,4,12,139275
,4,13,32140
,4,14,139275
,4,15,129520
,4,16,139275
,4,17,12595
,4,18,139280
,4,19,32140
,4,20,139280
,4,21,129125
,4,22,139280
,4,23,22865
,4,24,44210
,4,25,12595
,4,26,139280
,4,27,32160
,4,28,139280
,4,29,128915
,4,30,128915
,4,31,129030
,4,32,129765
,4,33,34735
,4,34,44545
,4,35,44355
,4,36,44275
,4,37,129530
,4,38,34735
,4,39,44720
,4,40,7410
,4,41,44740
,4,42,130260
,4,43,34735
,4,44,44720
,4,45,7410
,4,46,44740
,4,47,12595
,4,48,139280
,4,49,32140
,4,50,139280
,4,51,129220
,4,52,139280
,4,53,43745
,4,54,43755
,4,55,129060
,4,56,41220
,4,57,12595
,4,58,139275
,4,59,32140
,4,60,139275
,4,61,129220
,4,62,139275
,4,63,7735
,4,64,44540
,4,65,7470
,4,66,44540
,4,67,44285
,4,68,7430
,4,69,44740
,4,70,35005
,4,71,141085
,4,72,141090
,4,73,44040
,4,74,141090
,3,19529,4430
,4,5,21595
,4,6,22875
,4,7,22880
,4,8,22885
,3,19657,16595
,3,19658,34975
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,22585
,6,1,85
,3,19657,16595
,3,19658,34980
,3,19529,4410
,4,3,22595
,4,1,22600
,4,3,22605
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,3555
,4,11,15230
,4,12,15660
,4,13,16450
,4,14,15655
,4,15,4920
,4,16,16595
,4,17,22615
,4,18,16585
,4,19,22620
,4,20,22205
,4,21,22625
,4,22,22225
,4,23,22245
,4,24,22265
,4,25,22285
,4,26,22630
,4,27,22305
,3,19530,655
,3,19531,22640
,3,19532,22610
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137245
,3,19537,22590
,3,19529,139175
,4,1,44315
,4,2,22165
,4,3,44335
,4,4,44125
,4,5,22180
,4,7,44020
,4,8,44125
,4,9,22200
,4,10,44335
,4,11,44125
,4,12,22220
,4,13,44335
,4,14,44125
,4,15,22240
,4,16,44335
,4,17,44125
,4,18,22260
,4,19,44335
,4,20,44125
,4,21,22280
,4,22,44335
,4,23,44125
,4,24,22300
,4,25,44335
,4,26,44125
,4,27,44060
,4,28,129410
,4,29,22600
,4,30,44190
,4,31,44285
,4,32,12595
,4,33,139280
,4,34,31240
,4,35,24635
,4,36,44740
,4,37,16140
,4,38,139280
,4,39,15660
,4,40,139280
,4,41,44285
,4,42,16450
,4,43,139280
,4,44,44285
,4,45,15655
,4,46,22605
,4,47,44190
,4,48,19200
,4,49,139280
,4,50,44285
,4,51,16845
,4,52,140670
,4,53,12595
,4,54,139280
,4,55,32140
,4,56,139280
,4,57,129200
,4,58,139280
,4,59,43750
,4,60,44010
,4,63,34990
,4,64,139350
,4,66,44215
,4,67,31275
,4,68,139350
,4,70,44215
,4,71,34995
,4,72,139350
,4,74,44215
,4,75,35000
,4,76,139350
,4,77,22155
,4,78,43700
,4,79,44285
,4,80,22160
,4,81,43700
,4,82,35005
,4,83,139350
,4,84,28940
,4,85,139280
,4,86,28940
,4,87,139350
,4,88,31295
,4,89,139280
,4,90,31295
,4,91,139350
,4,92,16585
,4,93,16850
,4,94,44740
,4,95,44285
,4,96,22320
,4,98,44020
,4,99,35010
,4,100,139350
,4,101,12595
,4,102,139280
,4,103,32140
,4,104,139280
,4,105,129390
,4,106,139280
,4,107,43745
,4,108,137235
,4,109,137240
,4,110,44020
,4,111,44020
,4,112,12595
,4,113,139275
,4,114,32140
,4,115,139275
,4,116,129390
,4,117,139275
,4,118,12150
,4,119,44540
,4,120,43755
,4,121,22340
,4,123,44020
,4,124,35010
,4,125,139350
,4,126,35010
,4,127,139280
,4,128,44285
,4,130,44215
,4,131,44285
,4,133,44215
,4,134,35015
,4,135,139350
,4,136,22350
,4,138,44020
,4,139,35020
,4,140,139350
,4,141,22370
,4,143,44020
,4,144,35025
,4,145,139350
,4,146,22390
,4,148,44020
,4,149,35030
,4,150,139350
,4,151,22410
,4,153,44020
,4,154,35035
,4,155,139350
,4,156,22430
,4,158,44020
,4,159,35040
,4,160,139350
,4,161,30850
,4,162,139280
,4,163,22450
,4,165,44020
,4,166,35205
,4,167,139350
,4,168,30850
,4,169,139280
,4,170,22470
,4,172,44020
,4,173,16850
,4,174,139350
,4,175,30850
,4,176,139280
,4,177,22490
,4,179,44020
,4,180,35210
,4,181,139350
,4,182,35000
,4,183,139280
,4,184,22510
,4,186,44020
,4,187,35260
,4,188,139350
,4,189,35000
,4,190,139280
,4,191,22530
,4,193,44020
,4,194,35265
,4,195,139350
,4,196,35000
,4,197,139280
,4,198,12595
,4,199,139280
,4,200,32260
,4,201,139280
,4,202,35270
,4,203,139350
,4,204,22540
,4,206,44020
,4,207,35045
,4,208,139350
,4,209,22560
,4,211,44020
,4,212,35050
,4,213,139350
,4,214,22580
,4,216,44020
,4,217,35055
,4,218,139350
,4,219,35050
,4,220,44680
,4,221,16595
,4,222,139350
,4,223,141075
,4,224,44040
,4,225,141075
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,22660
,3,19532,22650
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137250
,3,19537,22645
,3,19529,139175
,4,1,44060
,4,2,22635
,4,4,44020
,4,5,141080
,4,6,44040
,4,7,141080
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22320
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22325
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22165
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22170
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,1725,110
,2,1504,38545
,2,1726,38550
,2,1727,38555
,2,1728,38560
,2,1415,31425
,2,1508,16490
,2,1729,22665
,2,1730,38565
,2,1731,22725
,2,1732,22745
,2,1733,22765
,2,1734,22780
,2,1735,22785
,2,1736,22835
,2,1737,22840
,2,1738,22855
,2,834,22675
,2,19076,425
,2,1484,38535
,3,19538,38570
,3,19539,22180
,3,19540,22720
,6,64,85
,3,19600,38575
,3,19529,35340
,4,1,22185
,4,2,22195
,1,0,41275
,1,1,41280
,1,2,41285
,2,19076,1070
,3,19599,41290
,3,19529,34480
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22200
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22210
,2,2000,41295
,2,19076,430
,3,19600,41300
,3,19529,34465
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22220
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22230
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22240
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22250
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22260
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22270
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22280
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22290
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22300
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22310
,3,19541,35125
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,15970
,4,3,15965
,4,4,16335
,4,5,11715
,4,6,22670
,4,7,22675
,4,8,22680
,4,9,21950
,4,10,22665
,4,11,22685
,4,12,22690
,4,13,22695
,4,14,22700
,4,15,22705
,4,16,22710
,4,18,22715
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19538,22730
,3,19539,22350
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22355
,4,1,560
,4,2,22735
,4,3,22740
,1,0,655
,2,19076,1070
,3,19599,23170
,3,19529,34480
,2,1128,85
,2,1126,85
,2,19076,430
,3,19529,35380
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19538,22750
,3,19539,22370
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22375
,4,1,560
,4,3,22755
,4,4,22760
,2,842,38660
,2,132,110
,2,19148,110
,2,19299,110
,2,19076,1390
,3,19529,1400
,4,1,38665
,2,19076,1070
,3,19529,34480
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19538,22770
,3,19539,22390
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22395
,4,1,560
,4,5,22775
,2,19076,1070
,3,19599,35345
,3,19529,34480
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22410
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22415
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22430
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22435
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22450
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22455
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22470
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22475
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19538,22805
,3,19539,22490
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22495
,4,1,560
,4,2,22810
,4,3,22815
,4,5,22820
,2,842,38785
,2,132,110
,2,19148,110
,2,19299,110
,2,19076,1390
,3,19529,1400
,4,1,38790
,2,883,85
,2,19076,430
,3,19529,38805
,2,19076,1070
,3,19599,38810
,3,19529,34480
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22510
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22515
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22530
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,4220
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22540
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22545
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19538,22845
,3,19539,22560
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,22565
,4,1,560
,4,2,22850
,2,19076,1070
,3,19599,35330
,3,19529,34480
,0,799,15970
,0,821,15965
,0,826,16335
,0,820,11715
,0,74,22670
,0,834,22675
,0,1119,22680
,0,832,21950
,0,1120,22665
,0,1099,22685
,0,1121,22690
,0,1100,22695
,0,1101,22700
,0,1102,22705
,0,1103,22710
,0,1122,85
,0,1104,22715
,2,19076,425
,3,19539,22580
,3,19540,22720
,6,64,85
,3,19529,12650
,4,1,4220
,4,2,22860
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,3,22905
,4,1,22910
,4,3,22915
,4,5,22920
,4,7,22925
,3,19529,4410
,4,3,22970
,4,1,22975
,4,3,22980
,4,2,23005
,4,2,22995
,4,2,23000
,4,2,23020
,3,19529,7520
,4,1,200
,4,2,23030
,4,2,23040
,4,2,23050
,4,2,23060
,3,19529,4410
,4,3,23075
,4,1,23080
,3,19529,7520
,4,1,23110
,4,2,23105
,3,19529,4410
,4,1,655
,3,19529,4410
,4,3,23135
,4,1,23140
,4,3,23145
,4,5,23150
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,7520
,4,1,655
,4,2,23170
,4,1,22930
,4,3,22880
,3,19529,4410
,4,3,23190
,4,1,23195
,4,3,23200
,4,5,23205
,4,7,23210
,3,19529,7520
,4,1,23245
,4,2,23240
,3,19529,4410
,3,19529,7520
,4,1,23265
,4,2,23260
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,3,23295
,4,1,23300
,3,19549,23325
,3,19530,23330
,3,19529,575
,4,3,23335
,3,19529,135065
,4,1,20450
,4,3,16510
,3,19530,23350
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,23360
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,23370
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,23380
,3,19531,23385
,3,19532,23390
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137990
,3,19537,28535
,3,19529,139175
,4,1,44060
,4,2,44275
,4,3,17380
,4,4,141775
,4,5,33805
,4,6,141800
,4,7,44140
,4,8,10000
,4,9,139275
,4,10,129330
,4,11,43810
,4,12,28545
,4,13,44115
,4,14,44020
,4,15,141805
,4,16,44040
,4,17,141805
,3,19529,4430
,4,5,28445
,3,19530,23400
,3,19531,23405
,3,19532,23410
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137650
,3,19537,27995
,3,19529,139175
,4,1,44025
,4,2,44350
,4,3,44060
,4,4,655
,4,5,44415
,4,6,130230
,4,7,6910
,4,8,141420
,4,9,43970
,4,10,10000
,4,11,139275
,4,12,129905
,4,13,28005
,4,14,44115
,4,15,44285
,4,16,43755
,4,17,44020
,4,18,12595
,4,19,139275
,4,20,27990
,4,21,44335
,4,22,21300
,4,23,44540
,4,25,141425
,4,26,44040
,4,27,141425
,3,19529,4430
,4,5,16585
,4,6,28010
,4,7,28010
,4,8,28015
,3,19530,23420
,3,19531,23425
,3,19532,23430
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138025
,3,19537,28630
,3,19529,139175
,4,1,44060
,4,2,141840
,4,3,44040
,4,4,141840
,4,5,43870
,4,6,129385
,4,7,6910
,4,8,44540
,4,9,44425
,4,10,43755
,4,11,42555
,4,12,128920
,4,13,28640
,4,14,44075
,4,15,44020
,4,16,28455
,4,17,43770
,4,18,129505
,4,19,43990
,4,20,130180
,4,21,43990
,4,22,129375
,4,23,43990
,4,24,130130
,4,25,43990
,4,26,129635
,4,27,43990
,4,28,129280
,4,29,43990
,4,30,130195
,4,31,43990
,4,32,129000
,4,33,43990
,4,34,128870
,4,35,43990
,4,36,270
,4,37,43990
,4,38,129675
,4,39,43990
,4,40,129085
,4,41,43990
,4,42,130065
,4,43,43990
,4,44,129935
,4,45,43990
,4,46,130140
,4,47,43990
,4,48,43850
,4,49,43850
,4,50,43850
,4,51,43660
,4,52,43850
,4,53,43660
,4,54,43660
,4,55,43850
,4,56,43660
,4,57,43850
,4,58,43660
,4,59,43660
,4,60,43850
,4,61,43660
,4,62,43850
,4,63,43660
,4,64,43660
,4,65,43850
,4,66,43660
,4,67,43850
,4,68,43660
,4,69,43660
,4,70,10000
,4,71,139275
,4,72,129515
,4,73,43810
,4,74,28645
,4,75,44115
,4,76,44020
,3,19529,4430
,4,5,28450
,3,19530,23440
,3,19531,23445
,3,19532,23450
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138010
,3,19537,28610
,3,19529,139175
,4,1,44060
,4,2,44020
,4,3,19725
,4,4,43770
,4,5,10475
,4,6,43990
,4,7,141835
,4,8,44040
,4,9,141835
,4,10,4840
,4,11,44565
,4,12,43755
,4,13,28620
,4,14,44190
,4,15,90
,4,16,139275
,3,19529,4430
,4,5,11755
,4,6,28625
,3,19530,23460
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,23470
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,23480
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,15210
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,23495
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,23505
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,23515
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,23525
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,23535
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,23545
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,23555
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,23565
,3,19532,23570
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23575
,6,1,85
,3,19536,137690
,3,19537,28050
,3,19529,139175
,4,1,44060
,4,2,28605
,4,3,141470
,4,4,42705
,4,5,139285
,4,6,43845
,4,7,43970
,4,10,141475
,4,11,44040
,4,12,141475
,3,19529,4430
,4,5,28055
,3,19657,35395
,3,19658,35400
,3,19530,655
,3,19531,23585
,3,19532,23590
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23595
,6,1,85
,3,19536,137685
,3,19537,28045
,3,19529,139175
,4,1,44060
,4,2,42110
,4,3,139285
,4,4,35660
,4,5,141460
,4,6,141465
,4,7,44040
,4,8,141465
,3,19529,4430
,3,19657,35405
,3,19658,35410
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23605
,6,1,85
,3,19657,35415
,3,19658,35420
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23615
,6,1,85
,3,19657,35425
,3,19658,35430
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23625
,6,1,85
,3,19657,35435
,3,19658,35440
,3,19530,655
,3,19531,23635
,3,19532,23640
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23645
,6,1,85
,3,19536,137790
,3,19537,28200
,3,19529,139175
,4,1,44060
,4,2,42840
,4,3,139285
,4,4,35660
,4,5,141460
,4,6,141575
,4,7,44040
,4,8,141575
,3,19529,4430
,3,19657,35445
,3,19658,35450
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23655
,6,1,85
,3,19657,35455
,3,19658,35460
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23665
,6,1,85
,3,19657,35465
,3,19658,35470
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23675
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23685
,6,1,85
,3,19657,23310
,3,19658,35475
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23695
,6,1,85
,3,19530,655
,3,19531,23705
,3,19532,23710
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23715
,6,1,85
,3,19536,137980
,3,19660,28470
,3,19537,28475
,3,19529,139175
,4,1,44060
,4,2,44275
,4,3,28440
,4,4,44080
,4,5,28460
,4,6,44080
,4,7,28445
,4,8,141745
,4,9,10020
,4,10,139275
,4,11,129210
,4,12,28485
,4,13,44115
,4,14,44020
,4,15,28445
,4,16,141750
,4,17,28490
,4,18,44190
,4,19,28450
,4,20,141755
,4,21,44275
,4,22,28455
,4,23,37185
,4,24,141760
,4,26,44020
,4,27,23705
,4,28,44140
,4,29,37180
,4,30,44540
,4,31,23705
,4,32,23705
,4,33,37240
,4,34,141765
,4,35,28510
,4,36,141770
,4,38,43970
,4,39,28465
,4,40,43700
,4,41,17380
,4,42,141775
,4,43,28495
,4,44,44115
,4,47,44020
,4,48,23705
,4,49,44140
,4,50,37180
,4,51,44540
,4,52,23705
,4,53,23705
,4,54,43970
,4,55,44245
,4,56,37190
,4,57,141780
,4,58,17380
,4,59,139275
,4,60,28500
,4,61,44115
,4,62,37190
,4,63,44510
,4,64,43755
,4,65,7430
,4,66,44710
,4,67,7375
,4,68,44540
,4,70,44105
,4,71,43970
,4,74,44140
,4,75,43970
,4,76,44140
,4,77,43800
,4,80,141785
,4,81,44040
,4,82,141785
,4,83,44140
,4,84,37180
,4,85,141790
,4,86,43970
,4,87,17380
,4,88,139275
,4,89,7470
,4,90,44710
,4,91,43670
,4,92,7430
,4,93,44710
,4,94,44275
,4,95,4890
,4,96,141795
,4,97,141785
,4,98,44040
,4,99,141785
,3,19529,4430
,4,5,16585
,4,6,28505
,4,7,28445
,4,8,28450
,4,9,21575
,4,10,28510
,4,11,28515
,4,12,28135
,4,13,28520
,4,14,28525
,4,15,27025
,4,16,28530
,3,19657,23310
,3,19658,35480
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23725
,6,1,85
,3,19530,655
,3,19531,23735
,3,19532,23740
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23745
,6,1,85
,3,19536,138080
,3,19537,28780
,3,19529,139175
,4,1,44060
,4,2,29795
,4,3,141955
,4,4,141960
,4,5,44040
,4,6,141960
,3,19529,4430
,4,5,21575
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23755
,6,1,85
,3,19530,655
,3,19531,23765
,3,19532,23770
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23775
,6,1,85
,3,19536,138005
,3,19537,28575
,3,19529,139175
,4,1,44060
,4,2,28585
,4,3,44075
,4,4,28590
,4,5,44190
,4,6,34780
,4,7,141405
,4,8,28595
,4,9,44190
,4,10,35710
,4,11,141825
,4,12,141830
,4,13,44040
,4,14,141830
,3,19529,4430
,4,5,16585
,4,6,28600
,4,7,28605
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23785
,6,1,85
,3,19530,655
,3,19531,23795
,3,19532,23800
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23805
,6,1,85
,3,19536,138070
,3,19537,28740
,3,19529,139175
,4,1,44175
,4,2,44350
,4,3,44350
,4,4,44350
,4,5,44350
,4,6,44350
,4,7,44045
,4,8,44060
,4,10,17380
,4,11,141775
,4,12,17565
,4,13,141935
,4,14,44140
,4,16,139320
,4,17,28750
,4,18,44190
,4,19,139320
,4,20,44285
,4,21,139320
,4,22,44285
,4,23,17380
,4,24,139275
,4,25,28755
,4,26,44115
,4,27,44285
,4,28,44285
,4,29,35715
,4,30,141940
,4,31,44140
,4,32,141945
,4,33,44040
,4,34,141945
,4,35,43695
,4,36,4890
,4,37,44465
,4,38,655
,4,39,28735
,4,40,44065
,4,41,44355
,4,42,44355
,3,19529,4430
,4,5,21575
,4,6,28520
,4,7,28700
,4,8,21345
,4,9,28760
,4,10,4665
,4,11,28765
,4,12,28445
,4,13,28455
,4,14,28770
,4,15,28760
,4,16,21345
,4,17,28700
,4,18,28520
,4,19,21575
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23815
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23825
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23835
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23845
,6,1,85
,3,19657,23310
,3,19658,35485
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23855
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23865
,6,1,85
,3,19657,23310
,3,19658,35490
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23875
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23885
,6,1,85
,3,19657,23310
,3,19658,35495
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23895
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23905
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23915
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23925
,6,1,85
,3,19657,23310
,3,19658,35500
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23935
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23945
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23955
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23965
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23975
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23985
,6,1,85
,3,19657,23310
,3,19658,35505
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,23995
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24005
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24015
,6,1,85
,3,19530,655
,3,19531,24025
,3,19532,24030
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24035
,6,1,85
,3,19536,138030
,3,19537,28650
,3,19529,139175
,4,1,44060
,4,2,35760
,4,3,141845
,4,4,141850
,4,5,44040
,4,6,141850
,3,19529,4430
,4,5,21575
,3,19530,655
,3,19531,24045
,3,19532,24050
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24055
,6,1,85
,3,19536,137780
,3,19537,28185
,3,19529,139175
,4,1,44060
,4,2,28195
,4,3,44190
,4,4,34780
,4,5,141405
,4,6,35755
,4,7,141565
,4,8,141570
,4,9,44040
,4,10,141570
,3,19529,4430
,4,5,16585
,3,19530,655
,3,19531,24065
,3,19532,24070
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24075
,6,1,85
,3,19536,137645
,3,19537,27975
,3,19529,139175
,4,1,44060
,4,2,27985
,4,3,44190
,4,4,34780
,4,5,141405
,4,6,28120
,4,7,141410
,4,8,141415
,4,9,44040
,4,10,141415
,3,19529,4430
,4,5,16585
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24085
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24095
,6,1,85
,3,19657,23310
,3,19658,35510
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24105
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24115
,6,1,85
,3,19657,23310
,3,19658,35515
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24125
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24135
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24145
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24155
,6,1,85
,3,19657,23310
,3,19658,35520
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24165
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24175
,6,1,85
,3,19657,23310
,3,19658,35525
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24185
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24195
,6,1,85
,3,19657,23310
,3,19658,35530
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24205
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24215
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24225
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24235
,6,1,85
,3,19657,23310
,3,19658,35535
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24245
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24255
,6,1,85
,3,19657,23310
,3,19658,35540
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24265
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24275
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24285
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24295
,6,1,85
,3,19657,23310
,3,19658,35545
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24305
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24315
,6,1,85
,3,19657,23310
,3,19658,35550
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24325
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24335
,6,1,85
,3,19657,23310
,3,19658,35555
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24345
,6,1,85
,3,19657,23310
,3,19658,35560
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24355
,6,1,85
,3,19657,23310
,3,19658,35565
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24365
,6,1,85
,3,19657,23495
,3,19658,35570
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24375
,6,1,85
,3,19657,23495
,3,19658,35575
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24385
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24395
,6,1,85
,3,19657,23505
,3,19658,35580
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24405
,6,1,85
,3,19657,23505
,3,19658,35585
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24415
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24425
,6,1,85
,3,19657,23310
,3,19658,35590
,3,19530,24435
,3,19531,24440
,3,19532,24445
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137700
,3,19537,28075
,3,19529,139175
,4,1,43665
,4,2,44350
,4,3,28060
,4,4,44335
,4,5,44060
,4,6,34735
,4,7,141480
,4,8,44285
,4,9,44085
,4,10,320
,4,11,140720
,4,12,30850
,4,13,139305
,4,14,4920
,4,15,141485
,4,16,12560
,4,17,141490
,4,18,44140
,4,19,139320
,4,20,141495
,4,21,44040
,4,22,141495
,4,24,44215
,4,26,44215
,4,27,44285
,4,28,28085
,4,29,44240
,4,30,130245
,4,31,141500
,4,32,12130
,4,33,141505
,4,34,44285
,4,35,141510
,4,36,44415
,4,37,44285
,4,38,141510
,4,39,44415
,4,40,44285
,4,41,130245
,4,42,141515
,4,43,44285
,4,44,139320
,4,45,43745
,4,46,44085
,4,47,139320
,4,48,44155
,4,49,44085
,4,50,320
,4,51,140720
,4,52,30850
,4,53,139305
,4,54,4920
,4,55,141485
,4,56,12560
,4,57,141490
,4,58,44140
,4,59,139320
,4,60,37245
,4,61,141520
,4,62,35685
,4,63,141525
,4,64,44140
,4,66,139405
,4,67,44085
,4,68,139405
,4,70,43755
,4,71,38350
,4,72,139275
,4,73,4890
,4,74,44540
,4,75,41220
,4,76,43810
,4,77,38380
,4,78,139275
,4,79,4890
,4,80,44540
,4,81,44310
,4,82,4920
,4,83,44540
,4,84,43755
,4,85,139320
,4,86,37250
,4,87,44540
,4,88,37255
,4,89,44540
,4,90,34735
,4,91,44710
,4,92,43755
,4,93,139405
,4,94,43755
,4,95,139405
,4,96,7430
,4,97,44540
,4,98,34735
,4,99,44710
,4,100,44285
,4,101,28090
,4,102,44240
,4,103,141495
,4,104,44040
,4,105,141495
,4,106,21345
,4,107,139295
,4,108,43670
,4,109,44085
,4,110,139405
,3,19529,4430
,4,5,295
,4,6,28095
,4,7,28100
,4,8,28105
,4,9,23085
,4,10,28110
,4,11,28115
,4,12,28120
,4,13,28125
,4,14,16640
,4,15,295
,4,16,28130
,4,17,28135
,4,18,28140
,4,19,28145
,4,20,28150
,4,27,24435
,3,19530,24455
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24465
,6,1,85
,3,19657,23310
,3,19658,35595
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24475
,6,1,85
,3,19657,23535
,3,19658,35600
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24485
,6,1,85
,3,19657,23535
,3,19658,35605
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24495
,6,1,85
,3,19657,23535
,3,19658,35610
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24505
,6,1,85
,3,19657,23535
,3,19658,35615
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24515
,6,1,85
,3,19657,23310
,3,19658,35620
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24525
,6,1,85
,3,19657,23545
,3,19658,35625
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24535
,6,1,85
,3,19657,23545
,3,19658,35630
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24545
,6,1,85
,3,19657,23555
,3,19658,35635
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24555
,6,1,85
,3,19657,23555
,3,19658,35640
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,24565
,6,1,85
,3,19657,23555
,3,19658,35645
,3,19529,4410
,4,3,24575
,4,1,24580
,4,3,24585
,4,5,24590
,4,7,24595
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,24605
,4,11,24610
,4,12,24615
,4,13,24620
,4,14,24625
,4,15,23555
,4,16,19395
,4,17,24630
,4,18,24635
,4,19,24640
,4,20,23310
,4,21,24645
,4,22,16580
,4,23,24650
,4,24,24655
,4,25,24660
,4,26,24665
,4,27,24670
,4,28,24675
,4,29,24680
,4,30,24685
,4,31,24690
,4,32,24695
,4,33,24700
,4,34,21595
,4,35,24705
,4,36,23350
,4,37,23360
,4,38,23370
,4,39,23380
,4,40,23400
,4,41,23420
,4,42,23440
,4,43,23460
,4,44,23470
,4,45,23480
,4,46,15210
,4,47,23495
,4,48,23505
,4,49,24710
,4,50,23515
,4,51,24715
,4,52,24720
,4,53,18065
,4,54,23525
,4,55,23535
,4,56,23545
,3,19530,655
,3,19531,24730
,3,19532,24600
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137490
,3,19537,24570
,3,19529,139175
,4,1,44340
,4,2,23345
,4,3,44335
,4,4,44125
,4,5,23355
,4,6,44335
,4,7,44125
,4,8,23365
,4,9,44335
,4,10,44125
,4,11,23375
,4,12,44335
,4,13,44125
,4,14,23395
,4,15,44335
,4,16,44125
,4,17,23415
,4,18,44335
,4,19,44125
,4,20,23435
,4,21,44335
,4,22,44125
,4,23,23455
,4,25,44020
,4,26,44125
,4,27,23465
,4,28,44335
,4,29,44125
,4,30,23475
,4,31,44335
,4,32,44125
,4,33,23485
,4,34,44335
,4,35,44125
,4,36,23490
,4,37,44335
,4,38,44125
,4,39,23500
,4,40,44335
,4,41,44125
,4,42,23510
,4,43,44335
,4,44,44125
,4,45,23520
,4,46,44335
,4,47,44125
,4,48,23530
,4,50,44020
,4,51,44125
,4,52,23540
,4,54,44020
,4,55,44125
,4,56,23550
,4,57,44335
,4,58,44060
,4,59,19395
,4,60,24580
,4,61,44190
,4,62,44285
,4,63,16585
,4,64,24585
,4,65,44190
,4,66,44285
,4,67,12595
,4,68,139280
,4,69,23310
,4,70,24635
,4,71,44740
,4,72,44285
,4,73,12595
,4,74,139280
,4,75,24640
,4,76,24635
,4,77,44740
,4,78,44285
,4,79,44285
,4,80,31505
,4,81,24590
,4,82,44190
,4,83,24645
,4,84,139280
,4,85,44285
,4,86,31500
,4,87,24595
,4,88,44190
,4,89,16580
,4,90,139280
,4,91,44285
,4,92,24650
,4,93,139280
,4,94,44285
,4,95,24655
,4,96,139280
,4,97,44285
,4,98,44285
,4,99,24665
,4,100,139280
,4,101,43870
,4,102,44285
,4,103,24670
,4,104,139280
,4,105,43870
,4,106,44285
,4,107,24605
,4,108,139280
,4,109,43870
,4,110,24675
,4,111,139280
,4,112,43870
,4,113,44285
,4,114,24610
,4,115,139280
,4,116,43870
,4,117,24615
,4,118,139280
,4,119,43870
,4,120,24680
,4,121,139280
,4,122,43870
,4,123,44285
,4,124,24685
,4,125,139280
,4,126,43870
,4,127,44285
,4,128,24620
,4,129,139280
,4,130,43870
,4,131,24690
,4,132,139280
,4,133,43870
,4,134,44285
,4,135,24695
,4,136,139280
,4,137,43870
,4,138,44285
,4,139,24700
,4,140,139280
,4,141,43870
,4,142,44285
,4,143,12595
,4,144,139280
,4,145,32125
,4,146,139280
,4,147,129600
,4,148,43935
,4,151,44285
,4,152,12595
,4,153,139280
,4,154,32140
,4,155,139280
,4,156,129390
,4,157,139280
,4,158,43745
,4,159,137455
,4,160,137460
,4,161,44020
,4,162,44020
,4,163,12595
,4,164,139275
,4,165,32140
,4,166,139275
,4,167,129390
,4,168,139275
,4,169,12150
,4,170,44540
,4,171,44285
,4,172,35705
,4,173,139280
,4,174,35705
,4,175,139350
,4,176,35705
,4,177,139280
,4,178,30850
,4,179,139280
,4,180,23560
,4,182,44020
,4,183,35660
,4,184,139350
,4,185,35705
,4,186,139280
,4,187,30850
,4,188,139280
,4,189,23580
,4,191,44020
,4,192,35665
,4,193,139350
,4,194,35705
,4,195,139280
,4,196,30850
,4,197,139280
,4,198,23600
,4,200,44020
,4,201,35670
,4,202,139350
,4,203,35705
,4,204,139280
,4,205,30850
,4,206,139280
,4,207,23610
,4,209,44020
,4,210,35675
,4,211,139350
,4,212,35705
,4,213,139280
,4,214,30850
,4,215,139280
,4,216,23620
,4,218,44020
,4,219,35680
,4,220,139350
,4,221,35705
,4,222,139280
,4,223,30850
,4,224,139280
,4,225,23630
,4,227,44020
,4,228,35685
,4,229,139350
,4,230,35705
,4,231,139280
,4,232,30850
,4,233,139280
,4,234,23650
,4,236,44020
,4,237,35690
,4,238,139350
,4,239,35705
,4,240,139280
,4,241,30850
,4,242,139280
,4,243,23660
,4,245,44020
,4,246,35695
,4,247,139350
,4,248,23670
,4,250,44020
,4,251,31285
,4,252,139350
,4,253,23680
,4,255,44020
,4,256,34770
,4,257,139350
,4,258,23690
,4,260,44020
,4,261,37165
,4,262,139350
,4,263,23700
,4,265,44020
,4,266,37170
,4,267,139350
,4,268,320
,4,269,139280
,4,270,37175
,4,271,23340
,4,272,44080
,4,273,16510
,4,274,141305
,4,275,5380
,4,276,44750
,4,277,23720
,4,279,44020
,4,280,29795
,4,281,139350
,4,282,23730
,4,284,44020
,4,285,37180
,4,286,139350
,4,287,23750
,4,289,44020
,4,290,35710
,4,291,139350
,4,292,23760
,4,294,44020
,4,295,37185
,4,296,139350
,4,297,23780
,4,299,44020
,4,300,35715
,4,301,139350
,4,302,23790
,4,304,44020
,4,305,37190
,4,306,139350
,4,307,23810
,4,309,44020
,4,310,33590
,4,311,139350
,4,312,23820
,4,314,44020
,4,315,37195
,4,316,139350
,4,317,23830
,4,319,44020
,4,320,35730
,4,321,139350
,4,322,23840
,4,324,44020
,4,325,37200
,4,326,139350
,4,327,23850
,4,329,44020
,4,330,19170
,4,331,139350
,4,332,23860
,4,334,44020
,4,335,37205
,4,336,139350
,4,337,23870
,4,339,44020
,4,340,35735
,4,341,139350
,4,342,23880
,4,344,44020
,4,345,37210
,4,346,139350
,4,347,23890
,4,349,44020
,4,350,35740
,4,351,139350
,4,352,23900
,4,354,44020
,4,355,37215
,4,356,139350
,4,357,23910
,4,359,44020
,4,360,35720
,4,361,139350
,4,362,23920
,4,364,44020
,4,365,37220
,4,366,139350
,4,367,23930
,4,369,44020
,4,370,35725
,4,371,139350
,4,372,23940
,4,374,44020
,4,375,37225
,4,376,139350
,4,377,23950
,4,379,44020
,4,380,35745
,4,381,139350
,4,382,23960
,4,384,44020
,4,385,37230
,4,386,139350
,4,387,23970
,4,389,44020
,4,390,35750
,4,391,139350
,4,392,23980
,4,394,44020
,4,395,37235
,4,396,139350
,4,397,23990
,4,399,44020
,4,400,35760
,4,401,139350
,4,402,24000
,4,404,44020
,4,405,35755
,4,406,139350
,4,407,24010
,4,409,44020
,4,410,28120
,4,411,139350
,4,412,24020
,4,414,44020
,4,415,37240
,4,416,139350
,4,417,24040
,4,419,44020
,4,420,37245
,4,421,139350
,4,422,24060
,4,424,44020
,4,425,37250
,4,426,139350
,4,427,24080
,4,429,44020
,4,430,35770
,4,431,139350
,4,432,24090
,4,434,44020
,4,435,37255
,4,436,139350
,4,437,24100
,4,439,44020
,4,440,35765
,4,441,139350
,4,442,24110
,4,444,44020
,4,445,37260
,4,446,139350
,4,447,24120
,4,449,44020
,4,450,7915
,4,451,139350
,4,452,24130
,4,454,44020
,4,455,37265
,4,456,139350
,4,457,24140
,4,459,44020
,4,460,35775
,4,461,139350
,4,462,24150
,4,464,44020
,4,465,37270
,4,466,139350
,4,467,24160
,4,469,44020
,4,470,35785
,4,471,139350
,4,472,24170
,4,474,44020
,4,475,37275
,4,476,139350
,4,477,24620
,4,478,4920
,4,479,44740
,4,480,44140
,4,481,24180
,4,483,44020
,4,484,37280
,4,485,139350
,4,486,24190
,4,488,44020
,4,489,37285
,4,490,139350
,4,491,24200
,4,493,44020
,4,494,35780
,4,495,139350
,4,496,24210
,4,498,44020
,4,499,37290
,4,500,139350
,4,501,24620
,4,502,4920
,4,503,44740
,4,504,44140
,4,505,24220
,4,507,44020
,4,508,37295
,4,509,139350
,4,510,24230
,4,512,44020
,4,513,37300
,4,514,139350
,4,515,24240
,4,517,44020
,4,518,35795
,4,519,139350
,4,520,24250
,4,522,44020
,4,523,37305
,4,524,139350
,4,525,24260
,4,527,44020
,4,528,35790
,4,529,139350
,4,530,24270
,4,532,44020
,4,533,37310
,4,534,139350
,4,535,37315
,4,536,139350
,4,537,24280
,4,539,44020
,4,540,35800
,4,541,139350
,4,542,24290
,4,544,44020
,4,545,37320
,4,546,139350
,4,547,24300
,4,549,44020
,4,550,35805
,4,551,139350
,4,552,24310
,4,554,44020
,4,555,37325
,4,556,139350
,4,557,24320
,4,559,44020
,4,560,37330
,4,561,139350
,4,562,24330
,4,564,44020
,4,565,37335
,4,566,139350
,4,567,24340
,4,569,44020
,4,570,37340
,4,571,139350
,4,572,24350
,4,574,44020
,4,575,37345
,4,576,139350
,4,577,33060
,4,578,44720
,4,579,30850
,4,580,139280
,4,581,24360
,4,583,44020
,4,584,23085
,4,585,139350
,4,586,30850
,4,587,139280
,4,588,24370
,4,590,44020
,4,591,29795
,4,592,139350
,4,593,24380
,4,595,44020
,4,596,37350
,4,597,139350
,4,598,33060
,4,599,44720
,4,600,30850
,4,601,139280
,4,602,24390
,4,604,44020
,4,605,23085
,4,606,139350
,4,607,30850
,4,608,139280
,4,609,24400
,4,611,44020
,4,612,25725
,4,613,139350
,4,615,44215
,4,616,44285
,4,617,24410
,4,619,44020
,4,620,37355
,4,621,139350
,4,622,24420
,4,624,44020
,4,625,37360
,4,626,139350
,4,627,24625
,4,628,139280
,4,629,44140
,4,630,137465
,4,631,275
,4,632,44020
,4,633,44020
,4,634,44285
,4,635,40065
,4,636,275
,4,637,44020
,4,638,44020
,4,639,44285
,4,640,44140
,4,641,137470
,4,642,137475
,4,643,44020
,4,644,44020
,4,645,44285
,4,646,40035
,4,647,137480
,4,648,44020
,4,649,44020
,4,650,44285
,4,651,24430
,4,653,44020
,4,654,24435
,4,655,139350
,4,656,24450
,4,658,44020
,4,659,24455
,4,660,139350
,4,661,24460
,4,663,44020
,4,664,37365
,4,665,139350
,4,666,33060
,4,667,44720
,4,668,23535
,4,669,139350
,4,670,23535
,4,671,139280
,4,672,37370
,4,673,139350
,4,674,30850
,4,675,139280
,4,676,24470
,4,678,44020
,4,679,35710
,4,680,139350
,4,681,30850
,4,682,139280
,4,683,24480
,4,685,44020
,4,686,36490
,4,687,139350
,4,688,30850
,4,689,139280
,4,690,24490
,4,692,44020
,4,693,38110
,4,694,139350
,4,695,30850
,4,696,139280
,4,697,24500
,4,699,44020
,4,700,29795
,4,701,139350
,4,702,24510
,4,704,44020
,4,705,37375
,4,706,139350
,4,707,33060
,4,708,44720
,4,709,23545
,4,710,139350
,4,711,23545
,4,712,139280
,4,713,37380
,4,714,139350
,4,715,30850
,4,716,139280
,4,717,24520
,4,719,44020
,4,720,35710
,4,721,139350
,4,722,30850
,4,723,139280
,4,724,24530
,4,726,44020
,4,727,36720
,4,728,139350
,4,729,30850
,4,730,139280
,4,731,30850
,4,732,139280
,4,733,38110
,4,734,139280
,4,735,38110
,4,736,139350
,4,737,30850
,4,738,139280
,4,739,30850
,4,740,139280
,4,741,29795
,4,742,139280
,4,743,29795
,4,744,139350
,4,745,30850
,4,746,139280
,4,747,30850
,4,748,139280
,4,749,28800
,4,750,139280
,4,751,38205
,4,752,139350
,4,753,33060
,4,754,44720
,4,755,23555
,4,756,139350
,4,757,30850
,4,758,139280
,4,759,24540
,4,761,44020
,4,762,33590
,4,763,139350
,4,764,30850
,4,765,139280
,4,766,24550
,4,768,44020
,4,769,28800
,4,770,139350
,4,771,30850
,4,772,139280
,4,773,24560
,4,775,44020
,4,776,38110
,4,777,139350
,4,778,30850
,4,779,139280
,4,780,30850
,4,781,139280
,4,782,38110
,4,783,139280
,4,784,38205
,4,785,139350
,4,786,141310
,4,787,44040
,4,788,141310
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,24750
,3,19532,24740
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137495
,3,19537,24735
,3,19529,139175
,4,1,44060
,4,2,24725
,4,4,44020
,4,5,141315
,4,6,44040
,4,7,141315
,3,19529,12590
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,24755
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,24770
,3,19539,24760
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,24775
,2,828,24765
,2,1783,27295
,2,1784,27420
,2,1785,27425
,2,1786,27430
,2,1787,27435
,2,1788,27440
,2,1789,27445
,2,1790,27450
,2,19076,430
,3,19529,35650
,3,19544,24770
,3,19546,24765
,4,2,38410
,3,19547,38405
,3,19529,142500
,3,19529,12590
,4,4,24785
,3,19529,12820
,4,1,24790
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,24780
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,24805
,3,19539,24795
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,24810
,2,828,24800
,2,19076,430
,3,19529,35810
,3,19544,24805
,3,19546,24800
,3,19529,142500
,3,19529,12590
,4,4,24820
,3,19529,12820
,4,1,24825
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,24815
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,24840
,3,19539,24830
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,24845
,2,828,24835
,2,19076,430
,3,19529,35830
,3,19544,24840
,3,19546,24835
,3,19529,142500
,3,19529,12590
,4,4,24855
,3,19529,12820
,4,1,24860
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,24850
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,24875
,3,19539,24865
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,24880
,2,828,24870
,2,19076,430
,3,19529,35855
,3,19544,24875
,3,19546,24870
,3,19529,142500
,3,19529,12590
,4,4,24890
,3,19529,12820
,4,1,24895
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,24885
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,24910
,3,19539,24900
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,24915
,2,828,24905
,2,19076,430
,3,19529,35875
,3,19544,24910
,3,19546,24905
,3,19529,142500
,3,19529,12590
,4,4,24925
,3,19529,12820
,4,1,24930
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,24920
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,24945
,3,19539,24935
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,24950
,2,828,24940
,2,19076,430
,3,19529,35895
,3,19544,24945
,3,19546,24940
,3,19529,142500
,3,19529,12590
,4,4,24960
,3,19529,12820
,4,1,24965
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,24955
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,24980
,3,19539,24970
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,24985
,2,828,24975
,2,19076,430
,3,19529,35915
,3,19544,24980
,3,19546,24975
,3,19529,142500
,3,19529,12590
,4,4,24995
,3,19529,12820
,4,1,25000
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,24990
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25015
,3,19539,25005
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25020
,2,828,25010
,2,19076,430
,3,19529,35935
,3,19544,25015
,3,19546,25010
,3,19529,142500
,3,19529,12590
,4,4,25030
,3,19529,12820
,4,1,25035
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25025
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25050
,3,19539,25040
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25055
,2,828,25045
,2,19076,430
,3,19529,35955
,3,19544,25050
,3,19546,25045
,3,19529,142500
,3,19529,12590
,4,4,25065
,3,19529,12820
,4,1,25070
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25060
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25085
,3,19539,25075
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25090
,2,828,25080
,2,19076,430
,3,19529,35975
,3,19544,25085
,3,19546,25080
,3,19529,142500
,3,19529,12590
,4,4,25100
,3,19529,12820
,4,1,25105
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25095
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25120
,3,19539,25110
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25125
,2,828,25115
,2,19076,430
,3,19529,35995
,3,19544,25120
,3,19546,25115
,3,19529,142500
,3,19529,12590
,4,4,25135
,3,19529,12820
,4,1,25140
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25130
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25155
,3,19539,25145
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25160
,2,828,25150
,2,19076,430
,3,19529,36015
,3,19544,25155
,3,19546,25150
,3,19529,142500
,3,19529,12590
,4,4,25170
,3,19529,12820
,4,1,25175
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25165
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25190
,3,19539,25180
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25195
,2,828,25185
,2,19076,430
,3,19529,36035
,3,19544,25190
,3,19546,25185
,3,19529,142500
,3,19529,12590
,4,4,25205
,3,19529,12820
,4,1,25210
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25200
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25225
,3,19539,25215
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25230
,2,828,25220
,2,19076,430
,3,19529,36055
,3,19544,25225
,3,19546,25220
,3,19529,142500
,3,19529,12590
,4,4,25240
,3,19529,12820
,4,1,25245
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25235
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25260
,3,19539,25250
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25265
,2,828,25255
,2,19076,430
,3,19529,36075
,3,19544,25260
,3,19546,25255
,3,19529,142500
,3,19529,12590
,4,4,25275
,3,19529,12820
,4,1,25280
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25270
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25295
,3,19539,25285
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25300
,2,828,25290
,2,19076,430
,3,19529,36095
,3,19544,25295
,3,19546,25290
,3,19529,142500
,3,19529,12590
,4,4,25310
,3,19529,12820
,4,1,25315
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25305
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25330
,3,19539,25320
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25335
,2,828,25325
,2,19076,430
,3,19529,36115
,3,19544,25330
,3,19546,25325
,3,19529,142500
,3,19529,12590
,4,4,25345
,3,19529,12820
,4,1,25350
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25340
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25365
,3,19539,25355
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25370
,2,828,25360
,2,19076,430
,3,19529,36135
,3,19544,25365
,3,19546,25360
,3,19529,142500
,3,19529,12590
,4,4,25380
,3,19529,12820
,4,1,25385
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25375
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25400
,3,19539,25390
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25405
,2,828,25395
,2,19076,430
,3,19529,36155
,3,19544,25400
,3,19546,25395
,3,19529,142500
,3,19529,12590
,4,4,25415
,3,19529,12820
,4,1,25420
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25410
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25435
,3,19539,25425
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25440
,2,828,25430
,2,19076,430
,3,19529,36175
,3,19544,25435
,3,19546,25430
,3,19529,142500
,3,19529,12590
,4,4,25450
,3,19529,12820
,4,1,25455
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25445
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25470
,3,19539,25460
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25475
,2,828,25465
,2,19076,430
,3,19529,36195
,3,19544,25470
,3,19546,25465
,3,19529,142500
,3,19529,12590
,4,4,25485
,3,19529,12820
,4,1,25490
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25480
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25505
,3,19539,25495
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25510
,2,828,25500
,2,19076,430
,3,19529,36215
,3,19544,25505
,3,19546,25500
,3,19529,142500
,3,19529,12590
,4,4,25520
,3,19529,12820
,4,1,25525
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25515
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25540
,3,19539,25530
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25545
,2,828,25535
,2,19076,430
,3,19529,36235
,3,19544,25540
,3,19546,25535
,3,19529,142500
,3,19529,12590
,4,4,25555
,3,19529,12820
,4,1,25560
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25550
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25575
,3,19539,25565
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25580
,2,828,25570
,2,19076,430
,3,19529,36255
,3,19544,25575
,3,19546,25570
,3,19529,142500
,3,19529,12590
,4,4,25590
,3,19529,12820
,4,1,25595
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25585
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25610
,3,19539,25600
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25615
,2,828,25605
,2,19076,430
,3,19529,36275
,3,19544,25610
,3,19546,25605
,3,19529,142500
,3,19529,12590
,4,4,25625
,4,6,25630
,4,10,25635
,4,11,23505
,3,19529,12820
,4,1,25640
,3,19529,12700
,4,2,25660
,3,19529,12700
,4,3,25620
,3,19529,135065
,3,19529,12590
,4,4,25650
,3,19529,12820
,4,1,25655
,3,19529,135065
,1,1,23085
,1,2,25645
,1,4,25725
,1,5,25665
,1,7,85
,2,19076,70
,3,19599,36295
,3,19529,31085
,3,19529,12590
,4,4,25670
,3,19529,12820
,4,1,25675
,3,19529,135065
,3,19530,23505
,3,19531,12630
,3,19533,23505
,3,19534,12635
,3,19661,25620
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25690
,3,19539,25680
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25695
,2,1137,25705
,2,1284,25730
,2,828,25685
,2,19076,430
,3,19529,36320
,3,19544,25690
,3,19546,25685
,3,19529,142500
,3,19530,23085
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25645
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25710
,3,19539,25700
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25715
,2,828,25705
,2,19076,430
,3,19529,36300
,3,19544,25710
,3,19546,25705
,3,19529,142500
,3,19530,25725
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,25665
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,25735
,3,19539,25720
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,25740
,2,828,25730
,2,19076,430
,3,19529,36310
,3,19544,25735
,3,19546,25730
,3,19529,142500
,3,19549,25750
,3,19530,25755
,3,19529,575
,4,3,25760
,3,19529,135065
,3,19530,24645
,3,19531,4220
,3,19533,320
,3,19548,25745
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,25745
,3,19534,335
,3,19535,25775
,6,1,85
,3,19529,4410
,4,3,25785
,4,1,25790
,4,3,25795
,4,5,25800
,4,7,25805
,4,9,25810
,4,11,25815
,4,13,25820
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,19395
,4,11,24645
,4,12,25830
,3,19530,655
,3,19531,25840
,3,19532,25825
,3,19533,320
,3,19548,25745
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137500
,3,19537,25780
,3,19529,139175
,4,1,43985
,4,2,25765
,4,3,44335
,4,4,44060
,4,5,16845
,4,6,140670
,4,7,31500
,4,8,25790
,4,9,44190
,4,10,16580
,4,11,139280
,4,12,44285
,4,13,19395
,4,14,25795
,4,15,44190
,4,16,33060
,4,17,44720
,4,18,31510
,4,19,25800
,4,20,44190
,4,21,24650
,4,22,139350
,4,23,31515
,4,24,25805
,4,25,44190
,4,26,24655
,4,27,139350
,4,28,31520
,4,29,25810
,4,30,44190
,4,31,26835
,4,32,139350
,4,33,31525
,4,34,25815
,4,35,44190
,4,36,27015
,4,37,139350
,4,38,31530
,4,39,25820
,4,40,44190
,4,41,27200
,4,42,139350
,4,43,24645
,4,44,139350
,4,45,30850
,4,46,139280
,4,47,25770
,4,49,44020
,4,50,36380
,4,51,139350
,4,52,141320
,4,53,44040
,4,54,141320
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,25860
,3,19532,25850
,3,19533,320
,3,19548,25745
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137505
,3,19537,25845
,3,19529,139175
,4,1,44060
,4,2,25835
,4,4,44020
,4,5,141325
,4,6,44040
,4,7,141325
,3,19549,25870
,3,19530,25875
,3,19529,575
,4,3,25880
,3,19657,31510
,3,19658,35260
,3,19529,135065
,3,19530,25890
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,24650
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,25905
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,25915
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,25925
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,25935
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,25945
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,25955
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,25965
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,25975
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,25985
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,25995
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26005
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26015
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26025
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26035
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26045
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26055
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,26065
,6,1,85
,3,19657,24650
,3,19658,36395
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,26075
,6,1,85
,3,19657,24650
,3,19658,36400
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,26085
,6,1,85
,3,19657,24650
,3,19658,36405
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,26095
,6,1,85
,3,19657,24650
,3,19658,36410
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,26105
,6,1,85
,3,19657,24650
,3,19658,36415
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,26115
,6,1,85
,3,19657,24650
,3,19658,36420
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,26125
,6,1,85
,3,19657,24650
,3,19658,36425
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,26135
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,26145
,6,1,85
,3,19657,24650
,3,19658,36430
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,26155
,6,1,85
,3,19657,24650
,3,19658,36435
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,26165
,6,1,85
,3,19657,24650
,3,19658,36440
,3,19529,4410
,4,3,26175
,4,1,26180
,4,3,26185
,4,5,26190
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,19395
,4,11,16850
,4,12,25830
,4,13,24645
,4,14,26200
,4,15,25890
,4,16,24650
,4,17,25905
,4,18,25915
,4,19,26205
,4,20,25925
,4,21,25935
,4,22,25945
,4,23,25955
,4,24,25965
,4,25,25975
,4,26,25985
,4,27,25995
,4,28,26005
,4,29,26015
,4,30,26025
,4,31,26035
,4,32,26045
,4,33,26055
,3,19530,655
,3,19531,26215
,3,19532,26195
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137550
,3,19537,26170
,3,19529,139175
,4,1,43840
,4,2,44350
,4,3,25885
,4,5,44020
,4,6,44125
,4,7,25895
,4,8,44335
,4,9,44125
,4,10,25900
,4,11,44335
,4,12,44125
,4,13,25910
,4,14,44335
,4,15,44125
,4,16,25920
,4,17,44335
,4,18,44125
,4,19,25930
,4,20,44335
,4,21,44125
,4,22,25940
,4,23,44335
,4,24,44125
,4,25,25950
,4,26,44335
,4,27,44125
,4,28,25960
,4,29,44335
,4,30,44125
,4,31,25970
,4,32,44335
,4,33,44125
,4,34,25980
,4,35,44335
,4,36,44125
,4,37,25990
,4,38,44335
,4,39,44125
,4,40,26000
,4,41,44335
,4,42,44125
,4,43,26010
,4,44,44335
,4,45,44125
,4,46,26020
,4,47,44335
,4,48,44125
,4,49,26030
,4,50,44335
,4,51,44125
,4,52,26040
,4,53,44335
,4,54,44125
,4,55,26050
,4,56,44335
,4,57,44125
,4,58,44060
,4,59,16845
,4,60,140670
,4,61,25890
,4,62,139350
,4,63,31500
,4,64,26180
,4,65,44190
,4,66,16580
,4,67,139280
,4,68,44285
,4,69,31505
,4,70,26185
,4,71,44190
,4,72,44285
,4,73,19395
,4,74,26190
,4,75,44190
,4,76,33060
,4,77,44720
,4,78,30850
,4,79,139280
,4,80,26060
,4,82,44020
,4,83,7375
,4,84,139350
,4,85,30850
,4,86,139280
,4,87,26070
,4,89,44020
,4,90,7410
,4,91,139350
,4,92,30850
,4,93,139280
,4,94,26080
,4,96,44020
,4,97,36485
,4,98,139350
,4,99,44285
,4,100,30850
,4,101,139280
,4,102,26090
,4,104,44020
,4,105,35715
,4,106,139350
,4,107,30850
,4,108,139280
,4,109,26100
,4,111,44020
,4,112,36490
,4,113,139350
,4,114,30850
,4,115,139280
,4,116,26110
,4,118,44020
,4,119,36380
,4,120,139350
,4,121,30850
,4,122,139280
,4,123,26120
,4,125,44020
,4,126,36495
,4,127,139350
,4,128,30850
,4,129,139280
,4,130,26130
,4,132,44020
,4,133,31620
,4,134,139350
,4,135,30850
,4,136,139280
,4,137,30850
,4,138,139280
,4,139,31620
,4,140,139280
,4,141,21520
,4,142,139350
,4,143,30850
,4,144,139280
,4,145,26140
,4,147,44020
,4,148,36500
,4,149,139350
,4,150,30850
,4,151,139280
,4,152,26150
,4,154,44020
,4,155,36505
,4,156,139350
,4,157,30850
,4,158,139280
,4,159,26160
,4,161,44020
,4,162,31295
,4,163,139350
,4,164,36450
,4,165,139350
,4,166,141330
,4,167,44040
,4,168,141330
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,26235
,3,19532,26225
,3,19533,320
,3,19548,25865
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137555
,3,19537,26220
,3,19529,139175
,4,1,44060
,4,2,26210
,4,4,44020
,4,5,141335
,4,6,44040
,4,7,141335
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26060
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,16915
,0,860,85
,2,1534,16975
,2,19076,425
,2,1484,31775
,3,19538,41015
,3,19539,16740
,3,19540,16920
,6,64,85
,3,19529,41020
,4,1,16745
,0,1287,26245
,2,1655,26245
,2,1269,26260
,2,1270,26715
,2,1341,27130
,2,1349,27145
,2,1356,27275
,2,1268,26250
,2,19076,425
,2,1484,36465
,3,19539,25765
,3,19540,27290
,6,64,85
,3,19600,41350
,3,19529,37030
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19538,41355
,3,19539,25885
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,1289,26255
,2,1655,26250
,2,1822,26335
,2,19076,425
,2,1484,36800
,3,19539,25895
,3,19540,26345
,6,64,85
,3,19529,36650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,25900
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,25910
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,25920
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,25930
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,25940
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,25950
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,25960
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,25970
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,25980
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,25990
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26000
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26010
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26020
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26030
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26040
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26050
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,36510
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,16470
,4,3,26245
,4,4,26250
,4,6,26255
,4,7,26260
,4,8,26265
,4,9,26270
,4,11,26275
,4,12,26280
,4,13,26285
,4,14,26290
,4,15,26295
,4,16,26300
,4,17,26305
,4,18,26310
,4,19,26315
,4,20,26320
,4,21,26325
,4,22,26330
,4,23,26335
,4,24,26340
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26070
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26080
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26090
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26100
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19538,26375
,3,19539,26110
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26120
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26130
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26140
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19539,26150
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,1287,26245
,0,1268,26250
,0,1317,85
,0,1289,26255
,0,1269,26260
,0,1290,26265
,0,1291,26270
,0,1292,26275
,0,1293,26280
,0,1294,26285
,0,1295,26290
,0,1296,26295
,0,1297,26300
,0,1298,26305
,0,1299,26310
,0,1300,26315
,0,1301,26320
,0,1302,26325
,0,1303,26330
,0,1304,26335
,0,1305,26340
,2,19076,425
,3,19538,26405
,3,19539,26160
,3,19540,26345
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,3,19549,26415
,3,19530,26420
,3,19529,575
,4,3,26425
,3,19657,31515
,3,19658,35260
,3,19529,135065
,3,19530,26435
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,3,19659,26440
,6,1,85
,4,1,36675
,4,4,28445
,4,7,28010
,3,19530,26450
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,24655
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26465
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26475
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26485
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26495
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26505
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26515
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26525
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26535
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26545
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26555
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26565
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26575
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26585
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26595
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,26605
,6,1,85
,3,19657,24655
,3,19658,36680
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,26615
,6,1,85
,3,19657,24655
,3,19658,36685
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,26625
,6,1,85
,3,19657,24655
,3,19658,36690
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,26635
,6,1,85
,3,19529,4410
,4,3,26645
,4,1,26650
,4,3,26655
,4,5,26660
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,19395
,4,11,15655
,4,12,24645
,4,13,26435
,4,14,26450
,4,15,24655
,4,16,26465
,4,17,26475
,4,18,26485
,4,19,26495
,4,20,26505
,4,21,26515
,4,22,26525
,4,23,26535
,4,24,26545
,4,25,26555
,4,26,26565
,4,27,26575
,4,28,26585
,4,29,26595
,3,19530,655
,3,19531,26675
,3,19532,26665
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137565
,3,19537,26640
,3,19529,139175
,4,1,44250
,4,2,26430
,4,3,44335
,4,4,44125
,4,5,26445
,4,7,44020
,4,8,44125
,4,9,26455
,4,10,44335
,4,11,44125
,4,12,26460
,4,13,44335
,4,14,44125
,4,15,26470
,4,16,44335
,4,17,44125
,4,18,26480
,4,19,44335
,4,20,44125
,4,21,26490
,4,22,44335
,4,23,44125
,4,24,26500
,4,25,44335
,4,26,44125
,4,27,26510
,4,28,44335
,4,29,44125
,4,30,26520
,4,31,44335
,4,32,44125
,4,33,26530
,4,34,44335
,4,35,44125
,4,36,26540
,4,37,44335
,4,38,44125
,4,39,26550
,4,40,44335
,4,41,44125
,4,42,26560
,4,43,44335
,4,44,44125
,4,45,26570
,4,46,44335
,4,47,44125
,4,48,26580
,4,49,44335
,4,50,44125
,4,51,26590
,4,52,44335
,4,53,44125
,4,54,44060
,4,55,16845
,4,56,140670
,4,57,26450
,4,58,139350
,4,59,19395
,4,60,26650
,4,61,44190
,4,62,15655
,4,63,26655
,4,64,44190
,4,65,31505
,4,66,26660
,4,67,44190
,4,68,44285
,4,69,33060
,4,70,44720
,4,71,30850
,4,72,139280
,4,73,26600
,4,75,44020
,4,76,36380
,4,77,139350
,4,78,30850
,4,79,139280
,4,80,26610
,4,82,44020
,4,83,33590
,4,84,139350
,4,85,30850
,4,86,139280
,4,87,26620
,4,89,44020
,4,90,36720
,4,91,139350
,4,92,30850
,4,93,139280
,4,94,26630
,4,96,44020
,4,97,28800
,4,98,139350
,4,99,141340
,4,100,44040
,4,101,141340
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,26695
,3,19532,26685
,3,19533,320
,3,19548,26410
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137570
,3,19537,26680
,3,19529,139175
,4,1,44060
,4,2,26670
,4,4,44020
,4,5,141345
,4,6,44040
,4,7,141345
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26600
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26430
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19538,41360
,3,19539,26445
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,1321,26710
,2,1655,26250
,2,19076,425
,2,1484,38190
,3,19539,26455
,3,19540,26790
,6,64,85
,3,19529,36705
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26460
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26470
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26480
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26490
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26500
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26510
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26520
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26530
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26540
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26550
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26560
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26570
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26580
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26590
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,36725
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,26250
,4,3,26705
,4,4,26710
,4,5,26715
,4,6,26720
,4,7,26725
,4,8,26730
,4,9,26735
,4,10,26740
,4,11,26745
,4,12,26750
,4,13,26755
,4,14,26760
,4,15,26765
,4,16,26770
,4,17,26775
,4,18,26780
,4,19,26785
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26610
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26620
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,0,1268,26250
,0,1320,26705
,0,1321,26710
,0,1270,26715
,0,1322,26720
,0,1323,26725
,0,1324,26730
,0,1325,26735
,0,1326,26740
,0,1327,26745
,0,1328,26750
,0,1329,26755
,0,1330,26760
,0,1331,26765
,0,1332,26770
,0,1333,26775
,0,1334,26780
,0,1335,26785
,2,19076,425
,3,19539,26630
,3,19540,26790
,6,64,85
,3,19529,12650
,4,1,4220
,3,19549,26815
,3,19530,26820
,3,19529,575
,4,3,26825
,3,19657,31520
,3,19658,35260
,3,19529,135065
,3,19530,26835
,3,19531,4220
,3,19533,320
,3,19548,26810
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,26845
,3,19531,4220
,3,19533,320
,3,19548,26810
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,26855
,3,19532,26860
,3,19533,320
,3,19548,26810
,3,19534,335
,3,19535,26865
,6,1,85
,3,19536,137595
,3,19537,26960
,3,19529,139175
,4,1,44060
,4,2,30850
,4,3,139305
,4,4,139325
,4,5,44090
,4,6,30850
,4,7,139305
,4,8,30850
,4,9,139305
,4,10,139320
,4,11,139405
,4,12,141365
,4,13,44040
,4,14,141365
,3,19529,4430
,4,5,26965
,3,19529,4410
,4,3,26875
,4,1,26880
,4,3,26885
,4,5,26890
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,19395
,4,11,24650
,4,12,24655
,4,13,26835
,4,14,26845
,3,19530,655
,3,19531,26905
,3,19532,26895
,3,19533,320
,3,19548,26810
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137575
,3,19537,26870
,3,19529,139175
,4,1,44160
,4,2,26830
,4,3,44335
,4,4,44125
,4,5,26840
,4,6,44335
,4,7,44125
,4,8,44060
,4,9,16845
,4,10,140670
,4,11,19395
,4,12,26880
,4,13,44190
,4,14,31510
,4,15,26885
,4,16,44190
,4,17,44285
,4,18,31515
,4,19,26890
,4,20,44190
,4,21,44285
,4,22,33060
,4,23,44720
,4,24,320
,4,25,139280
,4,26,30850
,4,27,139280
,4,28,5010
,4,29,44740
,4,30,26850
,4,31,44335
,4,32,6860
,4,33,44740
,4,34,141350
,4,35,44040
,4,36,141350
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,26925
,3,19532,26915
,3,19533,320
,3,19548,26810
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137580
,3,19537,26910
,3,19529,139175
,4,1,44060
,4,2,26900
,4,4,44020
,4,5,141355
,4,6,44040
,4,7,141355
,3,19529,7520
,4,1,26935
,4,2,26930
,4,2,26945
,3,19529,4410
,3,19529,4410
,3,19549,26975
,3,19530,26980
,3,19529,575
,4,3,26985
,3,19657,31525
,3,19658,35260
,3,19529,135065
,3,19530,26995
,3,19531,4220
,3,19533,320
,3,19548,26970
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,27005
,3,19531,4220
,3,19533,320
,3,19548,26970
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,27015
,3,19531,4220
,3,19533,320
,3,19548,26970
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,27025
,3,19531,4220
,3,19533,320
,3,19548,26970
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,26970
,3,19534,335
,3,19535,27035
,6,1,85
,3,19657,27015
,3,19658,36870
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,26970
,3,19534,335
,3,19535,27045
,6,1,85
,3,19657,27015
,3,19658,36875
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,26970
,3,19534,335
,3,19535,27055
,6,1,85
,3,19657,27015
,3,19658,36880
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,26970
,3,19534,335
,3,19535,27065
,6,1,85
,3,19657,27015
,3,19658,36885
,3,19529,4410
,4,3,27075
,4,1,27080
,4,3,27085
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,19395
,4,11,26835
,4,12,26995
,4,13,27005
,4,14,27015
,4,15,27025
,3,19530,655
,3,19531,27100
,3,19532,27090
,3,19533,320
,3,19548,26970
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137605
,3,19537,27070
,3,19529,139175
,4,1,44175
,4,2,26990
,4,3,44335
,4,4,44125
,4,5,27000
,4,6,44335
,4,7,44125
,4,8,27010
,4,9,44335
,4,10,44125
,4,11,27020
,4,12,44335
,4,13,44125
,4,14,44060
,4,15,16845
,4,16,140670
,4,17,31520
,4,18,27080
,4,19,44190
,4,20,44285
,4,21,19395
,4,22,27085
,4,23,44190
,4,24,33060
,4,25,44720
,4,26,30850
,4,27,139280
,4,28,27030
,4,30,44020
,4,31,7375
,4,32,139350
,4,33,30850
,4,34,139280
,4,35,27040
,4,37,44020
,4,38,36905
,4,39,139350
,4,40,30850
,4,41,139280
,4,42,27050
,4,44,44020
,4,45,36720
,4,46,139350
,4,47,30850
,4,48,139280
,4,49,27060
,4,51,44020
,4,52,36490
,4,53,139350
,4,54,141370
,4,55,44040
,4,56,141370
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,27120
,3,19532,27110
,3,19533,320
,3,19548,26970
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137610
,3,19537,27105
,3,19529,139175
,4,1,44060
,4,2,27095
,4,4,44020
,4,5,141375
,4,6,44040
,4,7,141375
,0,1341,27130
,0,1347,27135
,0,1348,27140
,0,1349,27145
,0,1350,27150
,2,19076,425
,3,19539,27030
,3,19540,27155
,6,64,85
,3,19529,12650
,4,1,4220
,0,1269,26260
,0,1270,26715
,0,1341,27130
,0,1342,41320
,2,1655,26260
,2,19076,425
,2,1484,36890
,3,19539,26830
,3,19540,41325
,6,64,85
,3,19600,41330
,3,19529,36780
,4,1,4220
,0,1341,27130
,0,1347,27135
,0,1348,27140
,0,1349,27145
,0,1350,27150
,2,19076,425
,3,19539,26990
,3,19540,27155
,6,64,85
,3,19529,12650
,4,1,4220
,0,1341,27130
,0,1347,27135
,0,1348,27140
,0,1349,27145
,0,1350,27150
,2,19076,425
,3,19539,27000
,3,19540,27155
,6,64,85
,3,19529,12650
,4,1,4220
,0,1341,27130
,0,1347,27135
,0,1348,27140
,0,1349,27145
,0,1350,27150
,2,1655,27130
,2,19076,425
,2,1484,36985
,3,19539,27010
,3,19540,27155
,6,64,85
,3,19600,41335
,3,19529,36780
,4,1,4220
,0,1341,27130
,0,1347,27135
,0,1348,27140
,0,1349,27145
,0,1350,27150
,2,19076,425
,3,19539,27020
,3,19540,27155
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,36910
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,27130
,4,3,27135
,4,4,27140
,4,5,27145
,4,6,27150
,0,1341,27130
,0,1347,27135
,0,1348,27140
,0,1349,27145
,0,1350,27150
,2,19076,425
,3,19539,27040
,3,19540,27155
,6,64,85
,3,19529,12650
,4,1,4220
,0,1341,27130
,0,1347,27135
,0,1348,27140
,0,1349,27145
,0,1350,27150
,2,19076,425
,3,19539,27050
,3,19540,27155
,6,64,85
,3,19529,12650
,4,1,4220
,0,1341,27130
,0,1347,27135
,0,1348,27140
,0,1349,27145
,0,1350,27150
,2,19076,425
,3,19539,27060
,3,19540,27155
,6,64,85
,3,19529,12650
,4,1,4220
,3,19549,27180
,3,19530,27185
,3,19529,575
,4,3,27190
,3,19657,31530
,3,19658,35260
,3,19529,135065
,3,19530,27200
,3,19531,4220
,3,19533,320
,3,19548,27175
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,27175
,3,19534,335
,3,19535,27210
,6,1,85
,3,19657,27200
,3,19658,36980
,3,19529,4410
,4,3,27220
,4,1,27225
,4,3,27230
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,19395
,4,11,27015
,4,12,27200
,3,19530,655
,3,19531,27245
,3,19532,27235
,3,19533,320
,3,19548,27175
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137620
,3,19537,27215
,3,19529,139175
,4,1,44025
,4,2,27195
,4,3,44335
,4,4,44125
,4,5,44060
,4,6,16845
,4,7,140670
,4,8,31525
,4,9,27225
,4,10,44190
,4,11,44285
,4,12,19395
,4,13,27230
,4,14,44190
,4,15,33060
,4,16,44720
,4,17,30850
,4,18,139280
,4,19,27205
,4,21,44020
,4,22,36905
,4,23,139350
,4,24,141380
,4,25,44040
,4,26,141380
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,27265
,3,19532,27255
,3,19533,320
,3,19548,27175
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137625
,3,19537,27250
,3,19529,139175
,4,1,44060
,4,2,27240
,4,4,44020
,4,5,141385
,4,6,44040
,4,7,141385
,0,1349,27145
,0,1356,27275
,2,19076,425
,3,19539,27205
,3,19540,27280
,6,64,85
,3,19529,12650
,4,1,4220
,0,1349,27145
,0,1356,27275
,2,1655,27145
,2,19076,425
,2,1484,41340
,3,19539,27195
,3,19540,27280
,6,64,85
,3,19600,41345
,3,19529,36780
,4,1,4220
,3,19541,37000
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,27145
,4,3,27275
,0,1287,26245
,2,19076,425
,3,19539,25770
,3,19540,27290
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,37035
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,26245
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23560
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,23565
,2,1791,24765
,2,1458,24800
,2,1792,24835
,2,1793,24870
,2,1794,24905
,2,1795,24940
,2,1796,24975
,2,1797,25010
,2,1798,25045
,2,1799,25080
,2,1800,25115
,2,1369,25150
,2,1801,25185
,2,1802,25220
,2,390,25255
,2,1803,25290
,2,1804,25325
,2,1805,25360
,2,1657,25395
,2,1806,25430
,2,1807,25465
,2,1808,25500
,2,1809,25535
,2,1810,25570
,2,1811,25605
,2,1164,25685
,2,19076,430
,3,19600,41375
,3,19529,36335
,2,2005,41380
,2,2084,41385
,2,19076,430
,3,19600,41390
,3,19529,34465
,2,1791,24765
,2,1506,27455
,2,1710,27460
,2,1832,27465
,2,1833,27475
,2,1834,27340
,2,1458,27520
,2,1835,27525
,2,1792,27530
,2,1836,27535
,2,1793,27540
,2,1837,27545
,2,1657,27555
,2,1838,27560
,2,1796,27565
,2,1839,27570
,2,953,27575
,2,1840,27580
,2,1797,27585
,2,1841,27590
,2,1798,27595
,2,1842,27600
,2,1794,27605
,2,1843,27610
,2,1795,27615
,2,1844,27620
,2,1799,27625
,2,1845,27630
,2,1800,27635
,2,1846,27640
,2,1802,27645
,2,1801,27650
,2,1369,27655
,2,1847,27660
,2,1848,27665
,2,1849,27670
,2,1804,27675
,2,1850,27680
,2,1803,27685
,2,1851,27690
,2,390,27695
,2,1852,27700
,2,1805,27705
,2,1853,27710
,2,1807,27715
,2,1854,27720
,2,1855,27725
,2,1856,27730
,2,1806,27735
,2,1857,27740
,2,1858,27745
,2,1859,27750
,2,1809,27755
,2,1860,27760
,2,1808,27765
,2,1861,27770
,2,1862,27355
,2,1810,27775
,2,1863,27780
,2,1811,27785
,2,1864,27790
,2,1865,27795
,2,1866,27805
,2,1867,27815
,2,1868,27825
,2,1869,27845
,2,1870,27865
,2,1871,27875
,2,1247,27880
,2,1248,27900
,2,1872,27910
,2,1167,27405
,2,1873,27405
,2,1874,27935
,2,1168,27410
,2,1875,27410
,2,1169,37385
,2,19076,430
,3,19529,38295
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23345
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23355
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23365
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23375
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,23385
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23395
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,23405
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23415
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,23425
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23435
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,23445
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19538,41395
,3,19539,23455
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23465
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23475
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23485
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,1655,26245
,2,19076,425
,2,1484,41400
,3,19539,23490
,3,19540,27415
,6,64,85
,3,19600,41405
,3,19529,36780
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,1655,26245
,2,19076,425
,2,1484,41410
,3,19539,23500
,3,19540,27415
,6,64,85
,3,19600,41415
,3,19529,36780
,4,1,4220
,2,19076,430
,3,19529,31135
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23510
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,2,842,40065
,2,132,100
,2,19148,110
,2,19299,110
,2,19076,1390
,3,19529,1400
,4,1,40060
,2,842,40035
,2,132,110
,2,19148,110
,2,19299,110
,2,19076,1390
,3,19529,1400
,4,1,40030
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23520
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,1655,26260
,2,19076,425
,2,1484,41420
,3,19538,41425
,3,19539,23530
,3,19540,27415
,6,64,85
,3,19600,41430
,3,19529,36780
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,1655,26715
,2,19076,425
,2,1484,41435
,3,19538,41440
,3,19539,23540
,3,19540,27415
,6,64,85
,3,19600,41445
,3,19529,36780
,4,1,4220
,3,19541,37045
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,20180
,4,3,21950
,4,4,27300
,4,5,27305
,4,6,27310
,4,7,26250
,4,8,26245
,4,9,26260
,4,10,26715
,4,22,27315
,4,23,27320
,4,24,27325
,4,25,27330
,4,26,27335
,4,27,27340
,4,28,27345
,4,29,27350
,4,30,27355
,4,31,27360
,4,32,27365
,4,33,27370
,4,34,27375
,4,35,27380
,4,36,27385
,4,37,27390
,4,38,27395
,4,40,27400
,4,41,27405
,4,42,27410
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23580
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,23585
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23600
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23610
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23620
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23630
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,23635
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23650
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23660
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23670
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23680
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19538,27470
,3,19539,23690
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19538,27480
,3,19539,23700
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,23705
,4,1,560
,4,3,27485
,2,1389,85
,2,1390,28455
,2,19076,430
,3,19529,38705
,3,19529,7520
,4,1,27495
,4,2,27490
,3,19529,4410
,4,3,27510
,4,1,27515
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23720
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23730
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,23735
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23750
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23760
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,23765
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23780
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19538,27550
,3,19539,23790
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,23795
,4,1,560
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23810
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23820
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23830
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23840
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23850
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23860
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23870
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23880
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23890
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23900
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23910
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23920
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23930
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23940
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23950
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23960
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23970
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23980
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,23990
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24000
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24010
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24020
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,24025
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24040
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,24045
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24060
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,24065
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24080
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24090
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24100
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24110
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24120
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24130
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24140
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24150
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24160
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24170
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24180
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24190
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24200
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24210
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24220
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24230
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24240
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24250
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24260
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24270
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24280
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24290
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24300
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24310
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19538,27800
,3,19539,24320
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19538,27810
,3,19539,24330
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19538,27820
,3,19539,24340
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19538,27830
,3,19539,24350
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24360
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24370
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19538,27850
,3,19539,24380
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24390
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24400
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19538,27870
,3,19539,24410
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24420
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19538,27885
,3,19539,24430
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,24440
,4,1,560
,4,2,27890
,4,3,27895
,2,19076,430
,3,19529,31135
,2,19076,430
,3,19529,31135
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19538,27905
,3,19539,24450
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24460
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24470
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24480
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24490
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24500
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24510
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24520
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24530
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24540
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24550
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,19076,425
,3,19539,24560
,3,19540,27415
,6,64,85
,3,19529,12650
,4,1,4220
,3,19529,4410
,3,19529,4410
,4,3,27980
,4,1,27985
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,4,3,28000
,4,1,28005
,3,19529,4410
,3,19529,4410
,4,3,28030
,4,1,28035
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19530,23085
,3,19531,28065
,3,19532,28070
,3,19533,320
,3,19548,23320
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,137705
,3,19537,28155
,3,19529,139175
,4,1,44060
,4,2,12130
,4,3,141505
,4,4,141510
,4,5,21345
,4,6,139295
,4,7,44285
,4,8,141510
,4,9,44285
,4,10,141510
,4,11,44285
,4,12,655
,4,13,44285
,4,14,44140
,4,15,139320
,4,16,43755
,4,17,37245
,4,18,44540
,4,20,139405
,4,21,141530
,4,22,44040
,4,23,141530
,3,19529,4430
,4,5,11755
,3,19529,4410
,4,3,28080
,4,1,28085
,4,3,28090
,3,19529,4410
,4,1,28165
,4,2,28160
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,3,28190
,4,1,28195
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,3,28220
,4,1,28225
,4,3,28230
,3,19529,4410
,4,3,28245
,4,1,28250
,3,19529,4410
,4,3,28265
,4,1,28270
,3,19529,4410
,3,19529,7520
,4,1,28295
,4,2,28290
,3,19529,4410
,3,19529,4410
,4,2,28345
,3,19529,4410
,3,19529,4410
,3,19529,7520
,4,1,28380
,4,2,28375
,3,19529,4410
,4,3,28395
,4,1,28400
,3,19529,4410
,4,3,28410
,4,1,28415
,3,19529,4410
,4,3,28425
,4,1,28430
,4,1,28445
,4,3,28450
,4,4,28455
,4,1,28445
,4,3,28450
,4,4,28455
,3,19529,4410
,4,3,28480
,4,1,28485
,4,3,28490
,4,5,28495
,4,7,28500
,3,19529,4410
,4,3,28540
,4,1,28545
,3,19529,4410
,3,19529,7520
,4,1,28560
,4,2,28555
,3,19529,4410
,3,19529,4410
,4,3,28580
,4,1,28585
,4,3,28590
,4,5,28595
,3,19529,4410
,4,3,28615
,4,1,28620
,3,19529,4410
,4,3,28635
,4,1,28640
,4,3,28645
,3,19529,4410
,3,19529,4410
,4,3,28660
,4,1,28665
,4,3,28670
,4,5,28675
,4,7,28680
,4,9,28685
,4,11,28690
,3,19529,4410
,3,19529,4410
,4,3,28720
,4,1,28725
,4,2,28730
,3,19529,4410
,4,3,28745
,4,1,28750
,4,3,28755
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,3,28790
,4,1,28795
,3,19529,4410
,3,19529,7520
,4,1,28815
,4,2,28810
,3,19529,4410
,4,1,17595
,4,2,28835
,3,19530,16850
,3,19531,28850
,3,19532,28855
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138150
,3,19537,29080
,3,19529,139175
,4,1,44060
,4,2,16850
,4,3,44740
,4,4,142025
,4,5,44040
,4,6,142025
,3,19529,4430
,4,5,16585
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,28865
,6,1,85
,3,19657,16850
,3,19658,38765
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,28875
,6,1,85
,3,19657,38770
,3,19658,38775
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,22135
,3,19534,335
,3,19535,28885
,6,1,85
,3,19657,16850
,3,19658,38780
,3,19529,4410
,4,3,28895
,4,1,28900
,4,3,28905
,4,5,28910
,4,7,28915
,4,9,28920
,4,11,28925
,3,19549,28965
,3,19530,28970
,3,19529,575
,4,3,28975
,3,19529,135065
,3,19530,655
,3,19531,28990
,3,19532,28995
,3,19533,320
,3,19548,28960
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138990
,3,19656,30740
,3,19537,30570
,3,19529,139175
,4,1,44060
,4,2,215
,4,3,275
,4,4,44020
,4,5,44020
,4,6,43750
,4,7,44105
,4,8,44285
,4,9,7650
,4,10,142425
,4,11,7375
,4,12,141705
,4,13,142430
,4,14,44040
,4,15,142430
,3,19529,4430
,3,19530,655
,3,19531,29005
,3,19532,29010
,3,19533,320
,3,19548,28960
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,139170
,3,19537,134445
,3,19529,139175
,4,1,44060
,4,2,38830
,4,3,44680
,4,4,43755
,4,5,43185
,4,6,139275
,4,7,130120
,4,8,8930
,4,9,44540
,4,10,142495
,4,11,44040
,4,12,142495
,3,19529,4430
,3,19529,4410
,4,3,29020
,4,1,29025
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,29035
,4,11,10475
,4,12,29040
,4,13,29045
,3,19530,655
,3,19531,29055
,3,19532,29030
,3,19533,320
,3,19548,28960
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138140
,3,19537,29015
,3,19529,139175
,4,1,44160
,4,2,44060
,4,3,29035
,4,4,29025
,4,5,44190
,4,6,44285
,4,7,43560
,4,8,44285
,4,9,28980
,4,10,43700
,4,11,44285
,4,12,44285
,4,13,28985
,4,15,44020
,4,16,39140
,4,17,44590
,4,18,29000
,4,19,44335
,4,20,39140
,4,21,44590
,4,22,142015
,4,23,44040
,4,24,142015
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,29075
,3,19532,29065
,3,19533,320
,3,19548,28960
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138145
,3,19537,29060
,3,19529,139175
,4,1,44060
,4,2,29050
,4,4,44020
,4,5,142020
,4,6,44040
,4,7,142020
,3,19529,4410
,3,19529,4410
,4,3,29090
,4,1,29095
,4,3,29100
,3,19529,4410
,4,3,29110
,4,1,29115
,3,19529,4410
,4,3,29130
,4,1,29135
,4,3,29140
,4,5,29145
,4,7,29150
,3,19529,4410
,4,3,29170
,4,1,29175
,3,19529,4410
,3,19529,12590
,4,4,29210
,3,19529,12820
,4,1,29215
,3,19529,135065
,3,19530,655
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,29205
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,29230
,3,19539,29220
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,29235
,2,828,29225
,2,19076,430
,3,19529,38815
,3,19544,29230
,3,19546,29225
,3,19529,142500
,3,19529,4410
,3,19549,29255
,3,19530,29260
,3,19529,575
,4,3,29265
,3,19529,135065
,3,19530,29275
,3,19531,29280
,3,19532,29285
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138675
,3,19656,30675
,3,19537,30395
,3,19529,139175
,4,1,44060
,4,2,1235
,4,3,142210
,4,4,10875
,4,5,142215
,4,6,39345
,4,7,142220
,4,8,39340
,4,9,142225
,4,10,43670
,4,12,142230
,4,13,44040
,4,14,142230
,4,15,139320
,4,16,44090
,4,17,142235
,4,18,30405
,4,19,44115
,4,20,23085
,4,21,142240
,4,22,30005
,4,23,142245
,4,24,139405
,4,25,30390
,4,26,142250
,4,27,39425
,4,28,139350
,4,29,30070
,4,30,142255
,4,31,30090
,4,32,142200
,4,33,44140
,4,34,30410
,4,35,44190
,3,19529,4430
,4,5,30385
,4,6,30390
,4,7,30260
,3,19530,29295
,3,19531,29300
,3,19532,29305
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138915
,3,19660,30485
,3,19537,30495
,3,19529,139175
,4,1,43985
,4,2,44060
,4,3,30390
,4,4,142345
,4,5,44285
,4,6,129720
,4,7,44220
,4,8,30505
,4,9,44190
,4,10,1235
,4,11,142210
,4,12,10875
,4,13,142215
,4,14,129510
,4,15,44220
,4,16,30510
,4,17,44190
,4,18,39345
,4,19,142350
,4,20,44440
,4,21,44005
,4,22,44245
,4,23,23085
,4,24,142355
,4,25,130270
,4,26,44220
,4,27,43680
,4,28,30515
,4,29,44190
,4,31,142360
,4,32,44040
,4,33,142360
,4,34,30050
,4,35,142365
,4,36,30025
,4,37,142370
,4,38,44155
,4,39,30520
,4,40,44190
,4,41,39350
,4,42,142375
,4,43,44085
,4,44,16870
,4,45,142380
,4,46,43745
,4,47,129150
,4,48,139275
,4,49,43755
,4,50,44020
,4,51,29300
,4,52,44140
,4,53,12595
,4,54,139275
,4,55,30490
,4,56,44335
,4,57,21300
,4,58,44540
,4,59,29300
,4,60,29300
,4,61,43745
,4,62,129920
,4,63,44670
,4,65,39350
,4,66,142385
,4,67,43745
,4,68,32340
,4,69,44670
,4,71,142360
,4,72,44040
,4,73,142360
,4,74,30025
,4,75,142370
,4,76,44085
,4,77,130095
,4,78,43810
,4,79,30525
,4,80,44190
,4,81,30090
,4,82,44540
,4,83,30530
,4,84,44190
,4,85,29795
,4,86,44670
,3,19529,4430
,4,5,30390
,4,6,10875
,4,7,30535
,4,8,30540
,4,9,16870
,4,10,28515
,4,11,30260
,3,19530,29315
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,29325
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,22620
,6,1,85
,3,19530,655
,3,19531,29340
,3,19532,29345
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,22620
,6,1,85
,3,19536,138925
,3,19656,30650
,3,19537,30545
,3,19529,139175
,4,1,44060
,4,2,142390
,4,3,44040
,4,4,142390
,3,19529,4430
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,29355
,6,1,85
,3,19657,16845
,3,19658,38845
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,29365
,6,1,85
,3,19657,16845
,3,19658,38850
,3,19530,655
,3,19531,29375
,3,19532,29380
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,29385
,6,1,85
,3,19536,138670
,3,19656,30670
,3,19537,30370
,3,19529,139175
,4,1,44060
,4,2,39340
,4,3,142195
,4,4,43800
,4,5,139320
,4,6,44090
,4,7,30090
,4,8,142200
,4,9,44140
,4,10,30380
,4,11,44075
,4,12,1235
,4,13,139275
,4,14,10875
,4,15,44670
,4,16,39345
,4,17,139350
,4,18,30070
,4,19,44710
,4,20,142205
,4,21,44040
,4,22,142205
,3,19529,4430
,4,5,30385
,4,6,30390
,4,7,30260
,3,19657,16845
,3,19658,38855
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,29395
,6,1,85
,3,19657,16845
,3,19658,38860
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,29405
,6,1,85
,3,19657,16845
,3,19658,38865
,3,19530,655
,3,19531,29415
,3,19532,29420
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,29425
,6,1,85
,3,19536,138635
,3,19537,30305
,3,19529,139175
,4,1,44160
,4,2,44350
,4,3,44350
,4,4,44045
,4,5,30290
,4,6,44335
,4,7,44060
,4,8,43900
,4,9,44285
,4,10,43800
,4,11,43975
,4,12,44285
,4,13,30315
,4,14,44115
,4,15,44285
,4,16,1050
,4,17,142105
,4,18,30850
,4,19,139305
,4,20,7430
,4,21,142110
,4,22,12560
,4,23,141490
,4,24,44285
,4,25,39350
,4,26,142115
,4,28,39355
,4,29,142120
,4,30,12595
,4,31,141015
,4,32,16870
,4,33,142125
,4,34,44400
,4,35,12595
,4,36,139275
,4,37,16870
,4,38,139275
,4,39,16870
,4,40,139350
,4,41,39125
,4,42,142130
,4,43,142135
,4,44,44040
,4,45,142135
,3,19529,4430
,4,5,28010
,4,6,30320
,4,7,4665
,4,8,28940
,4,9,30320
,4,10,28010
,4,11,30325
,4,12,28950
,3,19657,16845
,3,19658,38870
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,29435
,6,1,85
,3,19657,16845
,3,19658,38875
,3,19530,655
,3,19531,29445
,3,19532,29450
,3,19533,320
,3,19548,29250
,3,19534,1450
,3,19535,29455
,6,1,29460
,3,19536,138645
,3,19537,30330
,3,19529,139175
,4,1,44060
,4,2,39340
,4,3,142140
,4,4,39280
,4,5,142145
,4,6,39275
,4,7,142150
,4,9,39345
,4,10,142155
,4,12,39350
,4,13,142160
,4,15,39355
,4,16,142165
,4,17,142170
,4,18,44040
,4,19,142170
,3,19529,4430
,4,5,30335
,3,19544,39325
,3,19546,30180
,4,2,39365
,3,19547,39360
,3,19529,142500
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,29470
,6,1,85
,3,19657,29455
,3,19658,38880
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,29480
,6,1,85
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,29490
,6,1,85
,3,19657,29455
,3,19658,38885
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,29500
,6,1,85
,3,19657,16845
,3,19658,38890
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,29510
,6,1,85
,3,19657,16845
,3,19658,38895
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,29520
,6,1,85
,3,19657,16845
,3,19658,38900
,3,19529,4410
,4,3,29530
,4,1,29535
,4,3,29540
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,16850
,4,11,16845
,4,12,29550
,4,13,29555
,4,14,15655
,4,15,29560
,4,16,22620
,4,17,29565
,4,18,29275
,4,19,29295
,4,20,29570
,4,21,29455
,4,22,29575
,4,23,29315
,4,24,29580
,4,25,29585
,4,26,29325
,3,19530,655
,3,19531,29595
,3,19532,29545
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138600
,3,19537,29525
,3,19529,139175
,4,1,44315
,4,2,44350
,4,3,44350
,4,4,29270
,4,5,44335
,4,6,44125
,4,7,29290
,4,8,44335
,4,9,44125
,4,10,29310
,4,11,44335
,4,12,44125
,4,13,29320
,4,14,44335
,4,15,44125
,4,16,44060
,4,17,12595
,4,18,139280
,4,19,31250
,4,20,24635
,4,21,44740
,4,22,29550
,4,23,139280
,4,24,44285
,4,25,31540
,4,26,29535
,4,27,44190
,4,28,44285
,4,29,15655
,4,30,29540
,4,31,44190
,4,32,19200
,4,33,139280
,4,34,44285
,4,35,44285
,4,36,12595
,4,37,139280
,4,38,32140
,4,39,139280
,4,40,129390
,4,41,139280
,4,42,43745
,4,43,138590
,4,44,138595
,4,45,44020
,4,46,44020
,4,47,12595
,4,48,139275
,4,49,32140
,4,50,139275
,4,51,129390
,4,52,139275
,4,53,12150
,4,54,44540
,4,55,43755
,4,56,29330
,4,57,44335
,4,58,44285
,4,59,29335
,4,60,44335
,4,61,44285
,4,63,44215
,4,64,44285
,4,65,29350
,4,67,44020
,4,68,29570
,4,69,139350
,4,70,44285
,4,71,29360
,4,73,44020
,4,74,39120
,4,75,139350
,4,76,29370
,4,78,44020
,4,79,39125
,4,80,139350
,4,81,29390
,4,83,44020
,4,84,39130
,4,85,139350
,4,86,29400
,4,88,44020
,4,89,39135
,4,90,139350
,4,91,29410
,4,93,44020
,4,94,39140
,4,95,139350
,4,96,29430
,4,98,44020
,4,99,39145
,4,100,139350
,4,101,29440
,4,102,44335
,4,103,44285
,4,104,30850
,4,105,139280
,4,106,29465
,4,108,44020
,4,109,29845
,4,110,139350
,4,111,30850
,4,112,139280
,4,113,29475
,4,115,44020
,4,116,29820
,4,117,139350
,4,118,30850
,4,119,139280
,4,120,29485
,4,122,44020
,4,123,29795
,4,124,139350
,4,126,44215
,4,127,44285
,4,128,30005
,4,129,44740
,4,130,29495
,4,132,44020
,4,133,39150
,4,134,139350
,4,135,29505
,4,137,44020
,4,138,39155
,4,139,139350
,4,140,29515
,4,142,44020
,4,143,39160
,4,144,139350
,4,145,142070
,4,146,44040
,4,147,142070
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,29615
,3,19532,29605
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138605
,3,19537,29600
,3,19529,139175
,4,1,44060
,4,2,29590
,4,4,44020
,4,5,142075
,4,6,44040
,4,7,142075
,3,19529,12590
,4,4,29625
,4,6,29630
,4,10,29635
,4,11,29550
,3,19529,12820
,4,1,29640
,3,19529,12700
,4,2,29660
,3,19529,12700
,4,3,29620
,3,19529,135065
,3,19529,12590
,4,4,29650
,3,19529,12820
,4,1,29655
,3,19529,135065
,1,1,29795
,1,2,29645
,1,4,29820
,1,5,29665
,1,7,29845
,1,8,29680
,1,10,23085
,1,11,29695
,1,13,25725
,1,14,29710
,1,16,29910
,1,17,29725
,1,19,29935
,1,20,29740
,1,22,29960
,1,23,29755
,1,25,85
,1,26,85
,1,27,85
,1,28,85
,1,29,85
,1,30,85
,1,31,85
,2,19076,70
,3,19599,38905
,3,19529,31085
,3,19529,12590
,4,4,29670
,3,19529,12820
,4,1,29675
,3,19529,135065
,3,19529,12590
,4,4,29685
,3,19529,12820
,4,1,29690
,3,19529,135065
,3,19529,12590
,4,4,29700
,3,19529,12820
,4,1,29705
,3,19529,135065
,3,19529,12590
,4,4,29715
,3,19529,12820
,4,1,29720
,3,19529,135065
,3,19529,12590
,4,4,29730
,3,19529,12820
,4,1,29735
,3,19529,135065
,3,19529,12590
,4,4,29745
,3,19529,12820
,4,1,29750
,3,19529,135065
,3,19529,12590
,4,4,29760
,3,19529,12820
,4,1,29765
,3,19529,135065
,3,19530,29550
,3,19531,12630
,3,19533,29550
,3,19534,12635
,3,19661,29620
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,29780
,3,19539,29770
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,29785
,2,1458,29800
,2,1459,29825
,2,1460,29850
,2,1137,29870
,2,1284,29890
,2,1461,29915
,2,1462,29940
,2,1463,29965
,2,828,29775
,2,19076,430
,3,19529,38990
,3,19544,29780
,3,19546,29775
,4,2,39435
,3,19547,39430
,3,19529,142500
,3,19530,29795
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,29645
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,29805
,3,19539,29790
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,29810
,2,828,29800
,2,19076,430
,3,19529,38910
,3,19544,29805
,3,19546,29800
,3,19529,142500
,3,19530,29820
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,29665
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,29830
,3,19539,29815
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,29835
,2,828,29825
,2,19076,430
,3,19529,38920
,3,19544,29830
,3,19546,29825
,3,19529,142500
,3,19530,29845
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,29680
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,29855
,3,19539,29840
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,29860
,2,828,29850
,2,19076,430
,3,19529,38930
,3,19544,29855
,3,19546,29850
,3,19529,142500
,3,19530,23085
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,29695
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,29875
,3,19539,29865
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,29880
,2,828,29870
,2,19076,430
,3,19529,38940
,3,19544,29875
,3,19546,29870
,3,19529,142500
,3,19530,25725
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,29710
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,29895
,3,19539,29885
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,29900
,2,828,29890
,2,19076,430
,3,19529,38950
,3,19544,29895
,3,19546,29890
,3,19529,142500
,3,19530,29910
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,29725
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,29920
,3,19539,29905
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,29925
,2,828,29915
,2,19076,430
,3,19529,38960
,3,19544,29920
,3,19546,29915
,3,19529,142500
,3,19530,29935
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,29740
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,29945
,3,19539,29930
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,29950
,2,828,29940
,2,19076,430
,3,19529,38970
,3,19544,29945
,3,19546,29940
,3,19529,142500
,3,19530,29960
,3,19531,12630
,3,19533,320
,3,19534,12635
,3,19661,29755
,3,19535,340
,6,1,85
,2,19076,425
,2,1484,29970
,3,19539,29955
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,12630
,4,2,29975
,2,828,29965
,2,19076,430
,3,19529,38980
,3,19544,29970
,3,19546,29965
,3,19529,142500
,3,19549,29985
,3,19530,29990
,3,19529,575
,4,3,29995
,3,19529,135065
,3,19530,30005
,3,19531,30010
,3,19532,30015
,3,19533,320
,3,19548,29980
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138625
,3,19537,30255
,3,19529,139175
,4,1,44060
,4,2,39275
,4,3,142090
,4,4,39280
,4,5,142095
,4,6,142100
,4,7,44040
,4,8,142100
,3,19529,4430
,4,5,30260
,3,19530,30025
,3,19531,30030
,3,19532,30035
,3,19533,320
,3,19548,29980
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138930
,3,19656,30575
,3,19537,30555
,3,19529,139175
,4,1,44060
,4,2,39280
,4,3,142395
,4,4,44305
,4,6,142400
,4,7,44040
,4,8,142400
,4,9,39280
,4,10,142395
,3,19529,4430
,4,5,30260
,3,19530,7390
,3,19531,4220
,3,19533,320
,3,19548,29980
,3,19534,335
,3,19535,340
,6,1,85
,3,19530,30050
,3,19531,30055
,3,19532,30060
,3,19533,320
,3,19548,29980
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138705
,3,19656,30620
,3,19537,30435
,3,19529,139175
,4,1,44060
,4,2,39275
,4,3,142295
,4,4,43955
,4,5,39275
,4,6,142295
,4,7,39280
,4,8,142300
,4,9,39280
,4,10,139350
,4,11,39280
,4,12,142300
,4,13,43955
,4,14,39280
,4,15,142300
,4,16,39275
,4,17,142295
,4,18,39275
,4,19,139350
,4,21,39275
,4,22,142270
,4,24,39280
,4,25,142280
,4,26,142305
,4,27,44040
,4,28,142305
,3,19529,4430
,4,5,30385
,3,19530,30070
,3,19531,30075
,3,19532,30080
,3,19533,320
,3,19548,29980
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138700
,3,19656,30695
,3,19537,30420
,3,19529,139175
,4,1,44060
,4,2,30430
,4,3,44190
,4,4,39275
,4,5,142265
,4,6,39275
,4,7,142270
,4,8,39275
,4,9,142265
,4,10,39280
,4,11,142275
,4,12,39280
,4,13,142280
,4,14,39275
,4,15,142285
,4,16,142290
,4,17,44040
,4,18,142290
,3,19529,4430
,4,5,30260
,4,6,30385
,3,19530,30090
,3,19531,30095
,3,19532,30100
,3,19533,320
,3,19548,29980
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138730
,3,19656,30635
,3,19537,30440
,3,19529,139175
,4,1,44060
,4,2,39275
,4,3,142265
,4,4,44265
,4,7,142310
,4,8,44040
,4,9,142310
,3,19529,4430
,4,5,30260
,3,19529,4410
,3,19529,4430
,4,5,16845
,4,6,16850
,4,7,16855
,4,8,16860
,4,9,16865
,4,10,30005
,4,11,30025
,4,12,7390
,4,13,30070
,4,14,30090
,4,15,30050
,3,19530,655
,3,19531,30120
,3,19532,30110
,3,19533,320
,3,19548,29980
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138615
,3,19537,30105
,3,19529,139175
,4,1,43985
,4,2,30000
,4,3,44335
,4,4,30020
,4,5,44335
,4,6,30040
,4,7,44335
,4,8,30045
,4,9,44335
,4,10,44125
,4,11,30065
,4,12,44335
,4,13,30085
,4,14,44335
,4,15,44060
,4,16,30005
,4,17,139350
,4,18,30025
,4,19,139350
,4,20,7390
,4,21,139350
,4,22,30050
,4,23,139350
,4,24,30070
,4,25,139350
,4,26,30090
,4,27,139350
,4,28,142080
,4,29,44040
,4,30,142080
,3,19529,4410
,3,19529,4430
,4,5,4435
,3,19530,655
,3,19531,30140
,3,19532,30130
,3,19533,320
,3,19548,29980
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138620
,3,19537,30125
,3,19529,139175
,4,1,44060
,4,2,30115
,4,4,44020
,4,5,142085
,4,6,44040
,4,7,142085
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29350
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,4220
,2,1454,30145
,2,1898,30205
,2,1899,30210
,2,1900,30220
,2,1901,30225
,2,1902,30230
,2,1903,30235
,2,1904,30265
,2,1905,30275
,2,1906,30280
,2,19076,430
,3,19529,39320
,2,1465,39030
,2,1466,39035
,2,562,39040
,2,1467,30715
,2,1468,39045
,2,1469,39050
,2,19076,430
,3,19529,39105
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29335
,3,19540,30200
,6,64,39050
,3,19529,12650
,4,1,39480
,1,1,41500
,1,20000,40310
,2,19076,430
,3,19599,41505
,3,19529,41510
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29270
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,39475
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29290
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,29300
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,2,1484,39325
,3,19539,29440
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,29445
,4,2,29460
,2,1907,30185
,2,1908,30185
,2,19076,430
,3,19600,41515
,3,19529,39290
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29310
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29320
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,39110
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,16470
,4,3,30150
,4,4,29775
,4,5,30155
,4,6,11715
,4,8,30160
,4,9,30165
,4,10,30170
,4,11,30175
,4,12,30145
,4,13,30180
,4,14,30185
,4,15,30190
,4,18,30195
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29360
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29370
,3,19540,30200
,6,64,30160
,3,19529,12650
,4,1,30215
,3,19536,139095
,3,19656,30680
,3,19529,139175
,4,1,44060
,4,2,39415
,4,3,142235
,4,4,39105
,4,5,142440
,4,6,130735
,4,7,10875
,4,8,44670
,4,9,39345
,4,10,139350
,4,11,30070
,4,12,44710
,4,13,142445
,4,14,130735
,4,15,1270
,4,16,1260
,4,17,39415
,4,18,44385
,4,19,44385
,4,20,142235
,4,21,44405
,4,22,23085
,4,23,44710
,4,24,39105
,4,25,142450
,4,26,139405
,4,27,39445
,4,28,142455
,4,29,38990
,4,30,430
,4,31,510
,4,32,39455
,4,33,44015
,4,34,44380
,4,35,39425
,4,36,139350
,4,37,142235
,4,38,39105
,4,39,142460
,4,40,39105
,4,41,142465
,4,44,142470
,4,45,142475
,4,46,139195
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29390
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29400
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29410
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,29415
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29430
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29465
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29475
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29485
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,4220
,3,19529,4410
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19538,30270
,3,19539,29495
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19539,29505
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,4220
,0,856,16470
,0,855,30150
,0,1450,29775
,0,1451,30155
,0,820,11715
,0,1120,30160
,0,1453,30165
,0,1432,30170
,0,1433,30175
,0,1454,30145
,0,1443,30180
,0,1455,30185
,0,1434,30190
,0,1456,85
,0,1457,85
,0,1435,30195
,2,19076,425
,3,19538,30285
,3,19539,29515
,3,19540,30200
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,560
,3,19530,28940
,3,19531,30295
,3,19532,30300
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,340
,6,1,85
,3,19536,138985
,3,19656,30725
,3,19537,30565
,3,19529,139175
,4,1,44060
,4,2,12575
,4,3,142060
,4,4,39355
,4,5,142415
,4,7,44155
,4,9,142420
,4,10,44040
,4,11,142420
,4,12,129485
,4,13,142380
,4,14,43745
,4,15,129485
,4,16,139275
,4,17,23085
,4,18,44710
,4,19,39340
,4,20,142225
,4,21,39125
,4,22,142130
,3,19529,4430
,3,19529,4410
,4,3,30310
,4,1,30315
,3,19529,4410
,3,19529,7520
,4,1,30345
,4,2,30340
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,3,30375
,4,1,30380
,3,19529,4410
,4,3,30400
,4,1,30405
,4,3,30410
,3,19529,4410
,3,19529,4410
,4,3,30425
,4,1,30430
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,3,30455
,4,1,30460
,4,3,30465
,4,5,30470
,4,7,30475
,3,19530,655
,3,19531,4220
,3,19533,320
,3,19548,29250
,3,19534,335
,3,19535,340
,6,1,85
,3,19529,4410
,4,3,30500
,4,1,30505
,4,3,30510
,4,5,30515
,4,7,30520
,4,9,30525
,4,11,30530
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,3,19529,4410
,4,1,30585
,3,19529,134465
,4,1,30600
,3,19529,134465
,4,1,30615
,3,19529,134465
,4,1,30630
,3,19529,134465
,4,1,30645
,3,19529,134465
,4,1,30660
,3,19529,134465
,4,1,30685
,4,3,30690
,3,19529,134465
,4,1,30170
,4,1,30705
,4,3,30710
,3,19529,134465
,4,1,30715
,0,1467,30715
,2,19076,425
,3,19539,30045
,3,19540,39485
,6,64,1260
,3,19529,12650
,4,1,39490
,4,1,30735
,3,19529,134465
,4,1,30750
,3,19529,134465
,3,19544,430
,3,19546,350
,3,19545,30760
,3,19529,142500
,4,3,16520
,4,5,740
,3,19544,430
,3,19546,350
,3,19545,30770
,3,19529,142500
,4,3,16520
,4,5,810
,3,19544,430
,3,19546,350
,3,19545,30780
,3,19529,142500
,4,3,16520
,4,5,785
,3,19544,430
,3,19546,350
,3,19545,30790
,3,19529,142500
,4,3,16520
,4,5,905
,3,19544,430
,3,19546,350
,3,19545,30800
,3,19529,142500
,4,3,16520
,4,5,760
,2,19076,425
,3,19538,40080
,3,19539,15665
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,15670
,3,19529,142500
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,30860
,4,20,15935
,4,21,30865
,4,23,15980
,4,24,30870
,4,26,15985
,4,27,30875
,4,30,30880
,4,32,15990
,4,33,30885
,4,35,15995
,4,36,30890
,4,38,16000
,4,39,30895
,4,41,16005
,4,42,30900
,4,44,16020
,4,45,30905
,4,47,16035
,4,48,30910
,4,50,16040
,4,51,30915
,4,53,16045
,4,54,30920
,4,56,16060
,4,57,30925
,4,59,16065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,4,1,12650
,4,2,30935
,3,19544,425
,3,19662,30945
,4,2,30950
,3,19547,30940
,3,19545,30815
,3,19529,142500
,4,1,30945
,4,2,30950
,3,19544,425
,3,19662,12650
,4,2,30935
,3,19547,30930
,3,19545,30815
,3,19529,142500
,3,19544,425
,3,19662,30935
,4,2,30960
,3,19547,30955
,3,19545,30815
,3,19529,142500
,4,1,30935
,4,2,30960
,3,19544,425
,3,19662,30950
,4,2,30970
,3,19547,30965
,3,19545,30815
,3,19529,142500
,4,1,30950
,4,2,30970
,3,19544,425
,3,19662,30960
,4,2,30980
,3,19547,30975
,3,19545,30815
,3,19529,142500
,4,1,30960
,4,2,30980
,3,19544,425
,3,19662,30970
,4,2,30990
,3,19547,30985
,3,19545,30815
,3,19529,142500
,4,1,30970
,4,2,30990
,3,19544,425
,3,19662,30980
,4,2,31000
,3,19547,30995
,3,19545,30815
,3,19529,142500
,4,1,30980
,4,2,31000
,3,19544,425
,3,19662,30990
,4,2,31010
,3,19547,31005
,3,19545,30815
,3,19529,142500
,4,1,30990
,4,2,31010
,3,19544,425
,3,19662,31000
,4,2,31020
,3,19547,31015
,3,19545,30815
,3,19529,142500
,4,1,31000
,4,2,31020
,3,19544,425
,3,19662,31010
,4,2,31030
,3,19547,31025
,3,19545,30815
,3,19529,142500
,4,1,31010
,4,2,31030
,3,19544,425
,3,19662,31020
,4,2,31040
,3,19547,31035
,3,19545,30815
,3,19529,142500
,4,1,31020
,4,2,31040
,3,19544,425
,3,19662,31030
,4,2,31050
,3,19547,31045
,3,19545,30815
,3,19529,142500
,4,1,31030
,4,2,31050
,3,19544,425
,3,19662,31040
,4,2,31060
,3,19547,31055
,3,19545,30815
,3,19529,142500
,4,1,31040
,4,2,31060
,3,19544,425
,3,19662,31050
,3,19545,30815
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,31070
,3,19529,142500
,4,3,16520
,4,5,16100
,4,3,16085
,4,5,16100
,4,6,16140
,4,8,16355
,4,2,16380
,4,3,16150
,4,5,16405
,4,6,16170
,4,8,15660
,4,9,16185
,4,11,16450
,4,12,16200
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,31095
,3,19529,142500
,4,3,16520
,4,5,16235
,4,2,16380
,4,3,16235
,4,5,16405
,4,6,16270
,4,8,15660
,4,9,15965
,4,11,16450
,4,12,16335
,3,19544,430
,3,19546,350
,3,19545,31110
,3,19529,142500
,4,3,16520
,4,5,16270
,3,19544,430
,3,19546,350
,3,19545,31120
,3,19529,142500
,4,3,16520
,4,5,15965
,3,19544,430
,3,19546,350
,3,19545,31130
,3,19529,142500
,4,3,16520
,4,5,16335
,3,19544,430
,3,19546,350
,4,2,41510
,4,4,33025
,4,5,33085
,4,6,35260
,4,7,35290
,4,8,7360
,4,9,133350
,4,10,31500
,4,11,32945
,4,12,29570
,4,13,39180
,4,14,30005
,4,15,39070
,4,16,38830
,4,17,39720
,4,18,34735
,4,19,34800
,4,20,39275
,4,21,133355
,4,22,31590
,4,23,133360
,4,24,33580
,4,25,33790
,3,19547,133345
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,31145
,3,19529,142500
,4,3,16520
,4,5,16385
,3,19544,430
,3,19546,350
,3,19545,31155
,3,19529,142500
,4,3,16520
,4,5,16410
,3,19544,430
,3,19546,350
,3,19545,31165
,3,19529,142500
,4,3,16520
,4,5,16430
,3,19544,430
,3,19546,350
,3,19545,31175
,3,19529,142500
,4,3,16520
,4,5,16455
,3,19544,430
,3,19546,350
,3,19545,31185
,3,19529,142500
,4,3,16380
,4,5,16385
,4,6,16405
,4,8,16410
,4,9,15660
,4,11,16430
,4,12,16450
,4,14,16455
,4,15,16520
,4,17,16355
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,16380
,4,20,16235
,4,21,16405
,4,23,16270
,4,24,15660
,4,26,15965
,4,27,16450
,4,29,16335
,4,1,12650
,4,2,31200
,3,19544,425
,3,19662,31210
,4,2,31215
,3,19547,31205
,3,19545,31190
,3,19529,142500
,4,1,31210
,4,2,31215
,3,19544,425
,3,19662,12650
,4,2,31200
,3,19547,31195
,3,19545,31190
,3,19529,142500
,3,19544,425
,3,19662,31200
,4,2,16365
,3,19547,31220
,3,19545,31190
,3,19529,142500
,4,1,31200
,4,2,16365
,4,1,455
,4,2,31230
,3,19544,430
,3,19546,350
,3,19662,133835
,3,19545,31075
,3,19529,142500
,4,3,31240
,4,6,31245
,4,9,28520
,4,12,23310
,4,15,24640
,4,18,31250
,4,1,455
,4,2,31260
,3,19544,430
,3,19546,350
,3,19662,32930
,4,2,32935
,3,19547,32925
,3,19545,31235
,3,19529,142500
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,31270
,4,21,31275
,4,24,16850
,4,26,16470
,4,27,31280
,4,29,16475
,4,30,31285
,4,32,16480
,4,33,31290
,4,35,16485
,4,36,31295
,4,38,16490
,4,39,28940
,4,1,12650
,4,2,31305
,3,19544,425
,3,19662,31315
,4,2,31320
,3,19547,31310
,3,19545,31265
,3,19529,142500
,4,1,31315
,4,2,31320
,3,19544,425
,3,19662,12650
,4,2,31305
,3,19547,31300
,3,19545,31265
,3,19529,142500
,3,19544,425
,3,19662,31305
,4,2,31330
,3,19547,31325
,3,19545,31265
,3,19529,142500
,4,1,31305
,4,2,31330
,3,19544,425
,3,19662,31320
,4,2,31340
,3,19547,31335
,3,19545,31265
,3,19529,142500
,4,1,31320
,4,2,31340
,3,19544,425
,3,19662,31330
,4,2,31350
,3,19547,31345
,3,19545,31265
,3,19529,142500
,4,1,31330
,4,2,31350
,3,19544,425
,3,19662,31340
,4,2,31360
,3,19547,31355
,3,19545,31265
,3,19529,142500
,4,1,31340
,4,2,31360
,3,19544,425
,3,19662,31350
,4,2,31370
,3,19547,31365
,3,19545,31265
,3,19529,142500
,4,1,31350
,4,2,31370
,3,19544,425
,3,19662,31360
,3,19545,31265
,3,19529,142500
,4,3,16520
,4,5,15970
,4,6,12070
,4,8,16495
,4,9,28095
,4,11,16500
,4,2,31385
,3,19544,430
,3,19546,350
,3,19662,31395
,4,2,31400
,3,19547,31390
,3,19545,31375
,3,19529,142500
,4,1,31395
,4,2,31400
,3,19544,430
,3,19546,350
,4,2,31385
,3,19547,31380
,3,19545,31375
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,31385
,3,19545,31375
,3,19529,142500
,2,828,15970
,2,286,16495
,2,1364,16500
,2,19076,430
,3,19600,31410
,3,19529,31400
,2,2185,41690
,2,1511,41695
,2,857,41700
,2,2186,41705
,2,1513,41710
,2,1518,41715
,2,833,41720
,2,1150,41725
,2,820,41730
,2,1517,41735
,2,2187,41740
,2,2188,41745
,2,2189,41750
,2,2190,41755
,2,2191,41760
,2,2192,41765
,2,2193,41770
,2,2194,41775
,2,832,41780
,2,2195,41785
,2,1512,41790
,2,2196,41795
,2,1515,41800
,2,2197,41805
,2,1267,41810
,2,2198,41815
,2,1516,41820
,2,2199,41825
,2,1514,41830
,2,1395,41835
,2,2200,41840
,2,972,41845
,2,860,41850
,2,837,41855
,2,1510,41860
,2,2201,41865
,2,2202,41870
,2,2203,41875
,2,2204,41880
,2,2205,41885
,2,19076,430
,3,19600,41890
,3,19529,41895
,2,1510,41935
,2,1395,41940
,2,820,41945
,2,972,41950
,2,832,41955
,2,857,41960
,2,1150,41965
,2,1511,41970
,2,1512,41975
,2,1513,41980
,2,1514,41985
,2,1515,41990
,2,1516,41995
,2,1517,42000
,2,1518,42005
,2,19076,430
,3,19600,42010
,3,19529,39020
,1,0,15160
,1,1,15165
,2,19076,1070
,3,19599,15155
,3,19529,34480
,4,1,560
,4,2,41010
,4,1,31415
,4,2,31420
,4,3,31425
,3,19544,31405
,3,19546,15970
,4,2,31460
,3,19547,31455
,3,19529,142500
,4,3,22945
,4,6,16640
,4,9,16845
,4,12,31450
,4,2,31460
,3,19544,31405
,3,19546,15970
,3,19662,31440
,4,2,31470
,3,19547,31465
,3,19545,31445
,3,19529,142500
,4,1,31440
,4,2,31470
,3,19544,31405
,3,19546,15970
,3,19662,31460
,4,2,31480
,3,19547,31475
,3,19545,31445
,3,19529,142500
,4,1,31460
,4,2,31480
,3,19544,31405
,3,19546,15970
,3,19662,31470
,4,2,31490
,3,19547,31485
,3,19545,31445
,3,19529,142500
,4,1,31470
,4,2,31490
,3,19544,31405
,3,19546,15970
,3,19662,31480
,3,19545,31445
,3,19529,142500
,4,3,31500
,4,6,28520
,4,9,15655
,4,12,19395
,4,15,16585
,4,18,16855
,4,21,23310
,4,24,31505
,4,27,31510
,4,30,31515
,4,33,31520
,4,36,31525
,4,39,31530
,4,42,31535
,4,45,31540
,3,19657,200
,3,19658,31610
,3,19657,200
,3,19658,21525
,3,19657,200
,3,19658,31630
,3,19657,200
,3,19658,31735
,4,3,31590
,4,6,16580
,4,8,26245
,4,1,31135
,4,2,31600
,3,19544,430
,3,19546,350
,3,19662,133360
,3,19545,31585
,3,19529,142500
,4,3,16520
,4,5,26245
,4,6,31610
,4,8,16910
,4,9,31615
,4,11,16925
,4,12,21520
,4,14,16935
,4,15,31620
,4,17,16935
,4,18,31625
,4,20,16945
,4,21,21525
,4,23,16950
,4,24,31630
,4,26,16955
,4,27,31635
,4,29,16965
,2,19076,425
,3,19539,16880
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,16885
,4,2,31650
,3,19544,430
,3,19546,350
,3,19662,31660
,4,2,31665
,3,19547,31655
,3,19545,31605
,3,19529,142500
,4,1,31660
,4,2,31665
,3,19544,430
,3,19546,350
,4,2,31650
,3,19547,31645
,3,19545,31605
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,31650
,4,2,31675
,3,19547,31670
,3,19545,31605
,3,19529,142500
,4,1,31650
,4,2,31675
,3,19544,430
,3,19546,350
,3,19662,31665
,4,2,31685
,3,19547,31680
,3,19545,31605
,3,19529,142500
,4,1,31665
,4,2,31685
,3,19544,430
,3,19546,350
,3,19662,31675
,4,2,31695
,3,19547,31690
,3,19545,31605
,3,19529,142500
,4,1,31675
,4,2,31695
,3,19544,430
,3,19546,350
,3,19662,31685
,4,2,31705
,3,19547,31700
,3,19545,31605
,3,19529,142500
,4,1,31685
,4,2,31705
,3,19544,430
,3,19546,350
,3,19662,31695
,4,2,31715
,3,19547,31710
,3,19545,31605
,3,19529,142500
,4,1,31695
,4,2,31715
,3,19544,430
,3,19546,350
,3,19662,31705
,4,2,31725
,3,19547,31720
,3,19545,31605
,3,19529,142500
,4,1,31705
,4,2,31725
,3,19544,430
,3,19546,350
,3,19662,31715
,3,19545,31605
,3,19529,142500
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,31735
,4,20,16975
,4,2,31745
,4,3,16520
,4,1,41030
,4,2,41035
,4,2,31755
,3,19544,430
,3,19546,350
,3,19662,39815
,3,19545,31740
,3,19529,142500
,4,3,16510
,4,2,31770
,3,19544,430
,3,19546,350
,3,19662,39835
,3,19545,31760
,3,19529,142500
,2,828,26245
,2,1528,16910
,2,1529,16925
,2,1067,16935
,2,1530,16935
,2,1531,16945
,2,1068,16950
,2,1532,16955
,2,1533,16965
,2,19076,430
,3,19600,31780
,3,19529,31725
,2,19076,425
,3,19539,5920
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,5930
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5935
,2,19076,425
,3,19539,5955
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5960
,2,19076,425
,3,19539,5970
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5975
,2,19076,425
,3,19539,5985
,3,19540,440
,6,64,85
,3,19529,675
,4,1,5990
,2,19076,425
,3,19539,6010
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6015
,2,19076,425
,3,19539,6025
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6030
,2,19076,425
,3,19539,6040
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6045
,2,19076,425
,3,19539,6065
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6070
,2,19076,425
,3,19539,6080
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6085
,2,19076,425
,3,19539,6095
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6100
,2,19076,425
,3,19539,6120
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6125
,2,19076,425
,3,19539,6135
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6140
,2,19076,425
,3,19539,6150
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6155
,2,19076,425
,3,19539,6175
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6180
,2,19076,425
,3,19539,6190
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6195
,2,19076,425
,3,19539,6205
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,6215
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,6220
,3,19540,440
,6,64,85
,3,19529,675
,4,1,6225
,4,2,31860
,4,3,31805
,4,4,31825
,4,8,31855
,4,9,31830
,4,10,31810
,4,11,31845
,4,14,31865
,4,15,31800
,4,16,31850
,4,17,31870
,4,18,31820
,4,19,31875
,4,20,31795
,4,21,31840
,4,24,31785
,4,25,31815
,4,29,31835
,4,30,31790
,3,19546,350
,3,19545,133300
,3,19529,142500
,4,3,31895
,4,6,31900
,4,9,31905
,4,12,31910
,4,15,31915
,4,18,31920
,4,21,31925
,4,24,31930
,4,27,31935
,4,30,31940
,4,33,31945
,4,36,31950
,4,2,31960
,3,19544,6310
,3,19546,2950
,3,19662,6315
,4,2,31970
,3,19547,31965
,3,19545,31890
,3,19529,142500
,4,1,6315
,4,2,31970
,3,19544,6310
,3,19546,2950
,3,19662,31960
,4,2,31980
,3,19547,31975
,3,19545,31890
,3,19529,142500
,4,1,31960
,4,2,31980
,3,19544,6310
,3,19546,2950
,3,19662,31970
,4,2,31990
,3,19547,31985
,3,19545,31890
,3,19529,142500
,4,1,31970
,4,2,31990
,3,19544,6310
,3,19546,2950
,3,19662,31980
,4,2,32000
,3,19547,31995
,3,19545,31890
,3,19529,142500
,4,1,31980
,4,2,32000
,3,19544,6310
,3,19546,2950
,3,19662,31990
,4,2,32010
,3,19547,32005
,3,19545,31890
,3,19529,142500
,4,1,31990
,4,2,32010
,3,19544,6310
,3,19546,2950
,3,19662,32000
,4,2,32020
,3,19547,32015
,3,19545,31890
,3,19529,142500
,4,1,32000
,4,2,32020
,3,19544,6310
,3,19546,2950
,3,19662,32010
,4,2,32030
,3,19547,32025
,3,19545,31890
,3,19529,142500
,4,1,32010
,4,2,32030
,3,19544,6310
,3,19546,2950
,3,19662,32020
,4,2,32040
,3,19547,32035
,3,19545,31890
,3,19529,142500
,4,1,32020
,4,2,32040
,3,19544,6310
,3,19546,2950
,3,19662,32030
,4,2,32050
,3,19547,32045
,3,19545,31890
,3,19529,142500
,4,1,32030
,4,2,32050
,3,19544,6310
,3,19546,2950
,3,19662,32040
,4,2,32060
,3,19547,32055
,3,19545,31890
,3,19529,142500
,4,1,32040
,4,2,32060
,3,19544,6310
,3,19546,2950
,3,19662,32050
,4,2,32070
,3,19547,32065
,3,19545,31890
,3,19529,142500
,4,1,32050
,4,2,32070
,3,19544,6310
,3,19546,2950
,3,19662,32060
,3,19545,31890
,3,19529,142500
,4,3,16520
,4,5,12640
,2,828,12640
,2,19076,31775
,3,19600,32085
,3,19529,32090
,3,19544,31775
,3,19546,350
,3,19545,32075
,3,19529,142500
,4,3,32100
,4,5,12670
,4,6,32105
,4,9,32110
,4,12,32115
,4,15,32120
,4,18,32125
,4,21,32130
,4,24,32135
,4,27,32140
,4,30,32145
,4,33,32150
,4,36,32155
,4,38,12770
,4,39,32160
,4,42,32165
,4,44,12790
,4,45,32170
,4,47,12835
,4,48,32175
,4,50,12870
,4,51,21320
,4,53,12905
,4,54,32180
,4,56,12940
,4,57,32185
,4,59,12975
,4,60,32190
,4,62,13010
,4,63,21590
,4,65,13045
,4,66,32195
,4,68,13080
,4,69,32200
,4,71,13115
,4,72,32205
,4,74,13150
,4,75,32210
,4,77,13185
,4,78,32215
,4,80,13220
,4,81,32220
,4,83,13255
,4,84,32225
,4,86,13290
,4,87,32230
,4,89,13325
,4,90,32235
,4,92,13360
,4,93,32240
,4,95,13395
,4,96,32245
,4,98,13430
,4,99,32250
,4,101,13465
,4,102,32255
,4,104,13500
,4,105,32260
,4,107,13535
,4,108,32265
,4,110,13570
,4,111,32270
,4,113,13605
,4,114,24635
,4,116,13640
,4,117,32275
,4,119,13675
,4,120,32280
,4,123,32285
,4,126,16870
,4,129,32290
,4,132,16580
,4,134,26245
,4,135,32295
,4,137,17325
,4,138,32300
,4,141,15655
,4,143,15945
,4,144,21060
,4,147,21300
,4,149,32305
,4,150,21310
,4,152,32310
,4,153,21270
,4,155,32315
,4,156,21290
,4,158,32320
,4,159,21260
,4,161,32325
,4,162,32330
,4,165,21395
,4,167,21405
,4,168,21400
,4,170,21415
,4,171,21390
,4,173,21425
,4,174,32335
,4,176,21435
,4,177,32340
,4,179,21470
,4,180,32345
,4,182,21475
,4,183,21520
,4,185,21530
,4,186,31620
,4,188,21530
,4,189,21525
,4,191,21550
,4,192,32350
,0,1049,12905
,0,1050,40320
,0,1051,100
,0,1052,110
,0,1053,40150
,0,1042,40325
,0,1043,40330
,2,19076,425
,3,19538,41040
,3,19539,21295
,3,19540,40315
,6,64,85
,3,19529,12650
,4,1,4220
,0,1049,12905
,0,1050,40320
,0,1051,100
,0,1052,110
,0,1053,40150
,0,1042,40325
,0,1043,40330
,2,19076,425
,3,19538,41045
,3,19539,21305
,3,19540,40315
,6,64,85
,3,19529,12650
,4,1,4220
,0,1049,12905
,0,1050,40320
,0,1051,100
,0,1052,110
,0,1053,40150
,0,1042,40325
,0,1043,40330
,2,19076,425
,3,19539,21265
,3,19540,40315
,6,64,85
,3,19529,12650
,4,1,21275
,0,1049,12905
,0,1050,40320
,0,1051,100
,0,1052,110
,0,1053,40150
,0,1042,40325
,0,1043,40330
,2,19076,425
,3,19539,21285
,3,19540,40315
,6,64,85
,3,19529,12650
,4,1,4220
,0,1049,12905
,0,1050,40320
,0,1051,100
,0,1052,110
,0,1053,40150
,0,1042,40325
,0,1043,40330
,2,19076,425
,3,19539,21255
,3,19540,40315
,6,64,85
,3,19529,12650
,4,1,4220
,4,2,32360
,3,19544,32080
,3,19546,12640
,3,19662,32370
,4,2,32375
,3,19547,32365
,3,19545,32095
,3,19529,142500
,4,1,32370
,4,2,32375
,3,19544,32080
,3,19546,12640
,4,2,32360
,3,19547,32355
,3,19545,32095
,3,19529,142500
,3,19544,32080
,3,19546,12640
,3,19662,32360
,4,2,32385
,3,19547,32380
,3,19545,32095
,3,19529,142500
,4,1,32360
,4,2,32385
,3,19544,32080
,3,19546,12640
,3,19662,32375
,4,2,32400
,3,19547,32395
,3,19545,32095
,3,19529,142500
,3,19657,200
,3,19658,32295
,4,1,32375
,4,2,32400
,3,19544,32080
,3,19546,12640
,3,19662,32385
,4,2,34295
,3,19547,34290
,3,19545,32095
,3,19529,142500
,4,1,31135
,4,2,32410
,3,19544,430
,3,19546,350
,3,19662,32945
,4,2,32950
,3,19547,32940
,3,19545,31495
,3,19529,142500
,3,19657,200
,3,19658,33600
,3,19657,200
,3,19658,33605
,3,19657,200
,3,19658,33610
,3,19657,200
,3,19658,33615
,3,19657,200
,3,19658,18850
,3,19657,200
,3,19658,18875
,3,19657,200
,3,19658,33650
,3,19657,200
,3,19658,33655
,3,19657,200
,3,19658,33660
,3,19657,200
,3,19658,33665
,3,19657,200
,3,19658,33675
,3,19657,200
,3,19658,33680
,3,19657,200
,3,19658,33685
,3,19657,200
,3,19658,33690
,3,19657,200
,3,19658,18900
,3,19657,200
,3,19658,18925
,3,19657,200
,3,19658,18950
,3,19657,200
,3,19658,18975
,4,2,18500
,4,3,18125
,4,5,18525
,4,6,18145
,4,8,18550
,4,9,18160
,4,11,18575
,4,12,18175
,4,14,18600
,4,15,18190
,4,17,18625
,4,18,18205
,4,20,18650
,4,21,18220
,4,23,18675
,4,24,18235
,4,26,18700
,4,27,18250
,4,29,18725
,4,30,18265
,4,32,18750
,4,33,18280
,4,35,18775
,4,36,18295
,4,38,18800
,4,39,18310
,4,41,18825
,4,42,18325
,4,44,18850
,4,45,18340
,4,47,18875
,4,48,18355
,4,50,18900
,4,51,18370
,4,53,18925
,4,54,18385
,4,56,18950
,4,57,18400
,4,59,18975
,4,60,18415
,4,62,17655
,4,63,18430
,4,65,19020
,4,66,18445
,3,19544,430
,3,19546,350
,3,19545,32630
,3,19529,142500
,4,3,16520
,4,5,18505
,3,19544,430
,3,19546,350
,3,19545,32640
,3,19529,142500
,4,3,16520
,4,5,18530
,3,19544,430
,3,19546,350
,3,19545,32650
,3,19529,142500
,4,3,16520
,4,5,18555
,3,19544,430
,3,19546,350
,3,19545,32660
,3,19529,142500
,4,3,16520
,4,5,18580
,3,19544,430
,3,19546,350
,3,19545,32670
,3,19529,142500
,4,3,16520
,4,5,18605
,3,19544,430
,3,19546,350
,3,19545,32680
,3,19529,142500
,4,3,16520
,4,5,18630
,3,19544,430
,3,19546,350
,3,19545,32690
,3,19529,142500
,4,3,16520
,4,5,18655
,3,19544,430
,3,19546,350
,3,19545,32700
,3,19529,142500
,4,3,16520
,4,5,18680
,3,19544,430
,3,19546,350
,3,19545,32710
,3,19529,142500
,4,3,16520
,4,5,18705
,3,19544,430
,3,19546,350
,3,19545,32720
,3,19529,142500
,4,3,16520
,4,5,18730
,3,19544,430
,3,19546,350
,3,19545,32730
,3,19529,142500
,4,3,16520
,4,5,18755
,3,19544,430
,3,19546,350
,3,19545,32740
,3,19529,142500
,4,3,16520
,4,5,18780
,3,19544,430
,3,19546,350
,3,19545,32750
,3,19529,142500
,4,3,16520
,4,5,18805
,3,19544,430
,3,19546,350
,3,19545,32760
,3,19529,142500
,4,3,16520
,4,5,18830
,3,19544,430
,3,19546,350
,3,19545,32770
,3,19529,142500
,4,3,16520
,4,5,18855
,3,19544,430
,3,19546,350
,3,19545,32780
,3,19529,142500
,4,3,16520
,4,5,18880
,3,19544,430
,3,19546,350
,3,19545,32790
,3,19529,142500
,4,3,16520
,4,5,18905
,3,19544,430
,3,19546,350
,3,19545,32800
,3,19529,142500
,4,3,16520
,4,5,18930
,3,19544,430
,3,19546,350
,3,19545,32810
,3,19529,142500
,4,3,16520
,4,5,18955
,3,19544,430
,3,19546,350
,3,19545,32820
,3,19529,142500
,4,3,16520
,4,5,18980
,3,19544,430
,3,19546,350
,3,19545,32830
,3,19529,142500
,4,3,16520
,4,5,19000
,3,19544,430
,3,19546,350
,3,19545,32840
,3,19529,142500
,4,3,16520
,4,5,19025
,2,828,950
,2,882,20675
,2,883,20685
,2,884,20690
,2,1657,20695
,2,428,20700
,2,71,20705
,2,888,20710
,2,949,20720
,2,294,20725
,2,934,20730
,2,929,20735
,2,930,20740
,2,935,20745
,2,937,20750
,2,936,20755
,2,1658,20760
,2,1659,20765
,2,1660,20770
,2,1661,20775
,2,1662,20780
,2,1663,20785
,2,1664,20790
,2,1665,20795
,2,1666,20800
,2,1667,20805
,2,941,20810
,2,942,20815
,2,943,20820
,2,944,20825
,2,1668,20830
,2,1669,20835
,2,1670,20840
,2,1671,20845
,2,1672,20850
,2,1673,20855
,2,1674,20860
,2,1675,20865
,2,1676,20870
,2,1677,20875
,2,945,20880
,2,946,20885
,2,947,20890
,2,948,20895
,2,19076,430
,3,19600,33700
,3,19529,33705
,3,19544,32845
,3,19546,350
,3,19662,33735
,3,19545,33695
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,32860
,3,19529,142500
,4,3,16520
,4,5,18470
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,32870
,4,20,18470
,4,21,32875
,4,23,18475
,3,19544,430
,3,19546,350
,3,19545,32885
,3,19529,142500
,4,3,16520
,4,5,18475
,4,1,12650
,4,2,18485
,4,3,18055
,4,5,18465
,4,6,32900
,4,8,19120
,3,19544,430
,3,19546,350
,3,19545,32910
,3,19529,142500
,4,3,16520
,4,5,19120
,4,1,455
,4,2,32920
,3,19544,430
,3,19546,350
,3,19662,133840
,3,19545,32895
,3,19529,142500
,4,1,32930
,4,2,32935
,3,19544,430
,3,19546,350
,3,19662,455
,4,2,31260
,3,19547,31255
,3,19545,31235
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,31260
,4,2,36345
,3,19547,36340
,3,19545,31235
,3,19529,142500
,4,1,32945
,4,2,32950
,3,19544,430
,3,19546,350
,3,19662,31135
,4,2,32410
,3,19547,32405
,3,19545,31495
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,32410
,4,2,32975
,3,19547,32970
,3,19545,31495
,3,19529,142500
,3,19657,200
,3,19658,33370
,4,1,32410
,4,2,32975
,3,19544,430
,3,19546,350
,3,19662,32950
,4,2,34665
,3,19547,34660
,3,19545,31495
,3,19529,142500
,2,19076,425
,3,19538,41050
,3,19539,20075
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,20080
,4,3,33025
,4,5,20175
,4,6,33030
,4,8,20300
,4,9,33035
,4,11,20305
,4,12,33040
,4,14,20310
,4,15,22620
,4,17,20315
,4,18,20065
,4,20,20190
,4,21,17585
,4,23,20195
,4,24,6950
,4,26,20245
,4,27,19860
,4,29,20250
,4,30,19870
,4,32,20255
,4,33,19880
,4,35,20260
,4,36,295
,4,38,33045
,4,39,8930
,4,41,20345
,4,42,12130
,4,44,33050
,4,45,19920
,4,47,33055
,4,48,33060
,4,50,20350
,4,51,33065
,4,53,20370
,0,1023,41105
,0,843,41110
,0,1024,110
,2,19076,425
,3,19539,20320
,3,19540,41115
,6,64,85
,3,19529,12650
,4,1,4220
,0,1023,41120
,0,843,41125
,0,1024,110
,2,19076,425
,3,19539,20320
,3,19540,41130
,6,64,85
,3,19529,12650
,4,1,4220
,0,1023,41135
,0,843,41140
,0,1024,110
,2,19076,425
,3,19539,20320
,3,19540,41145
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,31135
,4,2,33075
,3,19544,430
,3,19546,350
,3,19662,33085
,4,2,33090
,3,19547,33080
,3,19545,33020
,3,19529,142500
,4,1,33085
,4,2,33090
,3,19544,430
,3,19546,350
,3,19662,31135
,4,2,33075
,3,19547,33070
,3,19545,33020
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,33075
,4,2,33100
,3,19547,33095
,3,19545,33020
,3,19529,142500
,4,1,33075
,4,2,33100
,3,19544,430
,3,19546,350
,3,19662,33090
,4,2,33110
,3,19547,33105
,3,19545,33020
,3,19529,142500
,4,1,33090
,4,2,33110
,3,19544,430
,3,19546,350
,3,19662,33100
,4,2,33120
,3,19547,33115
,3,19545,33020
,3,19529,142500
,4,1,33100
,4,2,33120
,3,19544,430
,3,19546,350
,3,19662,33110
,4,2,33130
,3,19547,33125
,3,19545,33020
,3,19529,142500
,4,1,33110
,4,2,33130
,3,19544,430
,3,19546,350
,3,19662,33120
,4,2,33260
,3,19547,33255
,3,19545,33020
,3,19529,142500
,4,3,7975
,4,6,19595
,4,9,19605
,4,12,19615
,4,15,19625
,4,18,19635
,4,21,19645
,4,24,19655
,4,27,19665
,4,30,19675
,4,33,19685
,4,36,19695
,4,39,19705
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,33145
,4,21,33150
,4,3,19720
,4,6,19725
,4,9,19730
,4,12,90
,4,15,80
,4,18,10475
,4,21,19735
,4,24,19740
,4,2,33165
,3,19544,430
,3,19546,350
,3,19662,33175
,4,2,33180
,3,19547,33170
,3,19545,33155
,3,19529,142500
,4,1,33175
,4,2,33180
,3,19544,430
,3,19546,350
,4,2,33165
,3,19547,33160
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,33165
,4,2,33190
,3,19547,33185
,3,19545,33155
,3,19529,142500
,4,1,33165
,4,2,33190
,3,19544,430
,3,19546,350
,3,19662,33180
,4,2,33200
,3,19547,33195
,3,19545,33155
,3,19529,142500
,4,1,33180
,4,2,33200
,3,19544,430
,3,19546,350
,3,19662,33190
,4,2,33210
,3,19547,33205
,3,19545,33155
,3,19529,142500
,4,1,33190
,4,2,33210
,3,19544,430
,3,19546,350
,3,19662,33200
,4,2,33220
,3,19547,33215
,3,19545,33155
,3,19529,142500
,4,1,33200
,4,2,33220
,3,19544,430
,3,19546,350
,3,19662,33210
,4,2,33230
,3,19547,33225
,3,19545,33155
,3,19529,142500
,4,1,33210
,4,2,33230
,3,19544,430
,3,19546,350
,3,19662,33220
,4,2,33240
,3,19547,33235
,3,19545,33155
,3,19529,142500
,4,1,33220
,4,2,33240
,3,19544,430
,3,19546,350
,3,19662,33230
,3,19545,33155
,3,19529,142500
,4,1,12650
,4,2,33250
,3,19544,425
,3,19662,134260
,3,19545,33140
,3,19529,142500
,4,1,33120
,4,2,33260
,3,19544,430
,3,19546,350
,3,19662,33130
,4,2,33270
,3,19547,33265
,3,19545,33020
,3,19529,142500
,4,1,33130
,4,2,33270
,3,19544,430
,3,19546,350
,3,19662,33260
,4,2,33280
,3,19547,33275
,3,19545,33020
,3,19529,142500
,4,1,33260
,4,2,33280
,3,19544,430
,3,19546,350
,3,19662,33270
,4,2,33290
,3,19547,33285
,3,19545,33020
,3,19529,142500
,4,1,33270
,4,2,33290
,3,19544,430
,3,19546,350
,3,19662,33280
,4,2,33300
,3,19547,33295
,3,19545,33020
,3,19529,142500
,4,1,33280
,4,2,33300
,3,19544,430
,3,19546,350
,3,19662,33290
,4,2,33310
,3,19547,33305
,3,19545,33020
,3,19529,142500
,4,1,33290
,4,2,33310
,3,19544,430
,3,19546,350
,3,19662,33300
,4,2,33320
,3,19547,33315
,3,19545,33020
,3,19529,142500
,4,1,33300
,4,2,33320
,3,19544,430
,3,19546,350
,3,19662,33310
,4,2,33330
,3,19547,33325
,3,19545,33020
,3,19529,142500
,4,1,33310
,4,2,33330
,3,19544,430
,3,19546,350
,3,19662,33320
,4,2,33340
,3,19547,33335
,3,19545,33020
,3,19529,142500
,4,1,33320
,4,2,33340
,3,19544,430
,3,19546,350
,3,19662,33330
,4,2,33350
,3,19547,33345
,3,19545,33020
,3,19529,142500
,4,1,33330
,4,2,33350
,3,19544,430
,3,19546,350
,3,19662,33340
,3,19545,33020
,3,19529,142500
,2,19076,425
,3,19539,19405
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,19410
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,19280
,4,20,20375
,4,21,19190
,4,23,20395
,4,24,19200
,4,26,11715
,4,27,19290
,4,29,20515
,4,30,19300
,4,32,20520
,4,33,19310
,4,35,20525
,4,36,19320
,4,38,20530
,4,39,19330
,4,41,20535
,4,42,19340
,4,44,20540
,4,45,33365
,4,47,20545
,4,48,33370
,4,50,20555
,4,51,33375
,4,53,20565
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,33385
,4,20,795
,4,3,16510
,4,6,20450
,4,9,20455
,4,12,20460
,4,2,33400
,3,19544,430
,3,19546,350
,3,19662,33410
,4,2,33415
,3,19547,33405
,3,19545,33390
,3,19529,142500
,4,1,33410
,4,2,33415
,3,19544,430
,3,19546,350
,4,2,33400
,3,19547,33395
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,33400
,4,2,33425
,3,19547,33420
,3,19545,33390
,3,19529,142500
,4,1,33400
,4,2,33425
,3,19544,430
,3,19546,350
,3,19662,33415
,4,2,33435
,3,19547,33430
,3,19545,33390
,3,19529,142500
,4,1,33415
,4,2,33435
,3,19544,430
,3,19546,350
,3,19662,33425
,3,19545,33390
,3,19529,142500
,4,3,16520
,4,5,20375
,2,828,795
,2,1482,10000
,2,1378,655
,2,71,2585
,2,19076,430
,3,19529,133525
,3,19544,33445
,3,19546,350
,3,19545,33440
,3,19529,142500
,4,1,12650
,4,2,33465
,3,19544,425
,3,19662,33475
,4,2,33480
,3,19547,33470
,3,19545,33360
,3,19529,142500
,4,1,33475
,4,2,33480
,3,19544,425
,3,19662,12650
,4,2,33465
,3,19547,33460
,3,19545,33360
,3,19529,142500
,3,19544,425
,3,19662,33465
,4,2,33490
,3,19547,33485
,3,19545,33360
,3,19529,142500
,4,1,33465
,4,2,33490
,3,19544,425
,3,19662,33480
,4,2,33500
,3,19547,33495
,3,19545,33360
,3,19529,142500
,4,1,33480
,4,2,33500
,3,19544,425
,3,19662,33490
,4,2,33510
,3,19547,33505
,3,19545,33360
,3,19529,142500
,4,1,33490
,4,2,33510
,3,19544,425
,3,19662,33500
,4,2,33520
,3,19547,33515
,3,19545,33360
,3,19529,142500
,4,1,33500
,4,2,33520
,3,19544,425
,3,19662,33510
,4,2,33530
,3,19547,33525
,3,19545,33360
,3,19529,142500
,4,1,33510
,4,2,33530
,3,19544,425
,3,19662,33520
,4,2,33540
,3,19547,33535
,3,19545,33360
,3,19529,142500
,4,1,33520
,4,2,33540
,3,19544,425
,3,19662,33530
,4,2,33550
,3,19547,33545
,3,19545,33360
,3,19529,142500
,4,1,33530
,4,2,33550
,3,19544,425
,3,19662,33540
,4,2,33560
,3,19547,33555
,3,19545,33360
,3,19529,142500
,4,1,33540
,4,2,33560
,3,19544,425
,3,19662,33550
,4,2,33570
,3,19547,33565
,3,19545,33360
,3,19529,142500
,4,1,33550
,4,2,33570
,3,19544,425
,3,19662,33560
,3,19545,33360
,3,19529,142500
,4,3,33580
,4,6,18055
,4,8,18465
,4,9,17380
,4,11,950
,4,3,16520
,4,5,950
,4,6,17585
,4,8,20675
,4,9,17595
,4,11,20685
,4,12,17605
,4,14,20690
,4,15,33590
,4,17,20695
,4,18,11350
,4,20,20700
,4,21,4890
,4,23,20705
,4,24,17655
,4,26,20710
,4,27,19020
,4,29,20720
,4,30,7430
,4,32,20725
,4,33,18625
,4,35,20730
,4,36,18500
,4,38,20735
,4,39,18525
,4,41,20740
,4,42,18650
,4,44,20745
,4,45,18700
,4,47,20750
,4,48,18675
,4,50,20755
,4,51,33595
,4,53,20760
,4,54,33600
,4,56,20765
,4,57,33605
,4,59,20770
,4,60,33610
,4,62,20775
,4,63,33615
,4,65,20780
,4,66,33620
,4,68,20785
,4,69,33625
,4,71,20790
,4,72,33630
,4,74,20795
,4,75,33635
,4,77,20800
,4,78,33640
,4,80,20805
,4,81,18800
,4,83,20810
,4,84,18825
,4,86,20815
,4,87,18850
,4,89,20820
,4,90,18875
,4,92,20825
,4,93,33645
,4,95,20830
,4,96,33650
,4,98,20835
,4,99,33655
,4,101,20840
,4,102,33660
,4,104,20845
,4,105,33665
,4,107,20850
,4,108,33670
,4,110,20855
,4,111,33675
,4,113,20860
,4,114,33680
,4,116,20865
,4,117,33685
,4,119,20870
,4,120,33690
,4,122,20875
,4,123,18900
,4,125,20880
,4,126,18925
,4,128,20885
,4,129,18950
,4,131,20890
,4,132,18975
,4,134,20895
,4,3,18500
,4,5,18505
,4,6,18525
,4,8,18530
,4,9,18550
,4,11,18555
,4,12,18575
,4,14,18580
,4,15,18600
,4,17,18605
,4,18,18625
,4,20,18630
,4,21,18650
,4,23,18655
,4,24,18675
,4,26,18680
,4,27,18700
,4,29,18705
,4,30,18725
,4,32,18730
,4,33,18750
,4,35,18755
,4,36,18775
,4,38,18780
,4,39,18800
,4,41,18805
,4,42,18825
,4,44,18830
,4,45,18850
,4,47,18855
,4,48,18875
,4,50,18880
,4,51,18900
,4,53,18905
,4,54,18925
,4,56,18930
,4,57,18950
,4,59,18955
,4,60,18975
,4,62,18980
,4,63,17655
,4,65,19000
,4,66,19020
,4,68,19025
,4,69,16520
,4,71,18465
,4,72,4890
,4,74,20570
,4,75,33590
,4,77,20655
,4,78,7430
,4,80,20660
,3,19544,430
,3,19546,350
,3,19662,34280
,3,19545,33585
,3,19529,142500
,2,19076,425
,3,19539,18070
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,18075
,4,2,33720
,3,19544,32845
,3,19546,350
,3,19662,33730
,4,2,33735
,3,19547,33725
,3,19545,33695
,3,19529,142500
,4,1,33730
,4,2,33735
,3,19544,32845
,3,19546,350
,4,2,33720
,3,19547,33715
,3,19545,33695
,3,19529,142500
,3,19544,32845
,3,19546,350
,3,19662,33720
,4,2,32850
,3,19547,33740
,3,19545,33695
,3,19529,142500
,4,1,33720
,4,2,32850
,4,2,33750
,3,19544,18480
,3,19546,18465
,3,19662,18490
,4,2,33770
,3,19547,33765
,3,19529,142500
,4,3,21345
,4,6,33760
,4,1,18490
,4,2,33770
,3,19544,18480
,3,19546,18465
,3,19662,33750
,4,2,38730
,3,19547,38725
,3,19545,33755
,3,19529,142500
,4,1,31135
,4,2,33780
,3,19544,430
,3,19546,350
,3,19662,33790
,4,2,33795
,3,19547,33785
,3,19545,33575
,3,19529,142500
,4,1,33790
,4,2,33795
,3,19544,430
,3,19546,350
,3,19662,31135
,4,2,33780
,3,19547,33775
,3,19545,33575
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,33780
,3,19545,33575
,3,19529,142500
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,33805
,4,20,20665
,4,21,33810
,4,24,17565
,4,26,20670
,4,27,32870
,4,29,18470
,4,30,7470
,4,32,20715
,4,1,12650
,4,2,33820
,3,19544,425
,3,19662,33830
,4,2,33835
,3,19547,33825
,3,19545,33800
,3,19529,142500
,4,1,33830
,4,2,33835
,3,19544,425
,3,19662,12650
,4,2,33820
,3,19547,33815
,3,19545,33800
,3,19529,142500
,3,19544,425
,3,19662,33820
,4,2,33910
,3,19547,33905
,3,19545,33800
,3,19529,142500
,4,2,33845
,3,19544,430
,3,19546,350
,3,19662,33855
,4,2,33860
,3,19547,33850
,3,19545,33585
,3,19529,142500
,4,1,33855
,4,2,33860
,3,19544,430
,3,19546,350
,4,2,33845
,3,19547,33840
,3,19545,33585
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,33845
,4,2,33870
,3,19547,33865
,3,19545,33585
,3,19529,142500
,4,1,33845
,4,2,33870
,3,19544,430
,3,19546,350
,3,19662,33860
,4,2,33880
,3,19547,33875
,3,19545,33585
,3,19529,142500
,4,1,33860
,4,2,33880
,3,19544,430
,3,19546,350
,3,19662,33870
,4,2,33890
,3,19547,33885
,3,19545,33585
,3,19529,142500
,4,1,33870
,4,2,33890
,3,19544,430
,3,19546,350
,3,19662,33880
,4,2,33900
,3,19547,33895
,3,19545,33585
,3,19529,142500
,4,1,33880
,4,2,33900
,3,19544,430
,3,19546,350
,3,19662,33890
,4,2,33920
,3,19547,33915
,3,19545,33585
,3,19529,142500
,4,1,33820
,4,2,33910
,3,19544,425
,3,19662,33835
,4,2,33930
,3,19547,33925
,3,19545,33800
,3,19529,142500
,4,1,33890
,4,2,33920
,3,19544,430
,3,19546,350
,3,19662,33900
,4,2,33940
,3,19547,33935
,3,19545,33585
,3,19529,142500
,4,1,33835
,4,2,33930
,3,19544,425
,3,19662,33910
,3,19545,33800
,3,19529,142500
,4,1,33900
,4,2,33940
,3,19544,430
,3,19546,350
,3,19662,33920
,4,2,33950
,3,19547,33945
,3,19545,33585
,3,19529,142500
,4,1,33920
,4,2,33950
,3,19544,430
,3,19546,350
,3,19662,33940
,4,2,33960
,3,19547,33955
,3,19545,33585
,3,19529,142500
,4,1,33940
,4,2,33960
,3,19544,430
,3,19546,350
,3,19662,33950
,4,2,33970
,3,19547,33965
,3,19545,33585
,3,19529,142500
,4,1,33950
,4,2,33970
,3,19544,430
,3,19546,350
,3,19662,33960
,4,2,33980
,3,19547,33975
,3,19545,33585
,3,19529,142500
,4,1,33960
,4,2,33980
,3,19544,430
,3,19546,350
,3,19662,33970
,4,2,33990
,3,19547,33985
,3,19545,33585
,3,19529,142500
,4,1,33970
,4,2,33990
,3,19544,430
,3,19546,350
,3,19662,33980
,4,2,34000
,3,19547,33995
,3,19545,33585
,3,19529,142500
,4,1,33980
,4,2,34000
,3,19544,430
,3,19546,350
,3,19662,33990
,4,2,34010
,3,19547,34005
,3,19545,33585
,3,19529,142500
,4,1,33990
,4,2,34010
,3,19544,430
,3,19546,350
,3,19662,34000
,4,2,34020
,3,19547,34015
,3,19545,33585
,3,19529,142500
,4,1,34000
,4,2,34020
,3,19544,430
,3,19546,350
,3,19662,34010
,4,2,34030
,3,19547,34025
,3,19545,33585
,3,19529,142500
,4,1,34010
,4,2,34030
,3,19544,430
,3,19546,350
,3,19662,34020
,4,2,34040
,3,19547,34035
,3,19545,33585
,3,19529,142500
,4,1,34020
,4,2,34040
,3,19544,430
,3,19546,350
,3,19662,34030
,4,2,34050
,3,19547,34045
,3,19545,33585
,3,19529,142500
,4,1,34030
,4,2,34050
,3,19544,430
,3,19546,350
,3,19662,34040
,4,2,34060
,3,19547,34055
,3,19545,33585
,3,19529,142500
,4,1,34040
,4,2,34060
,3,19544,430
,3,19546,350
,3,19662,34050
,4,2,34070
,3,19547,34065
,3,19545,33585
,3,19529,142500
,4,1,34050
,4,2,34070
,3,19544,430
,3,19546,350
,3,19662,34060
,4,2,34080
,3,19547,34075
,3,19545,33585
,3,19529,142500
,4,1,34060
,4,2,34080
,3,19544,430
,3,19546,350
,3,19662,34070
,4,2,34090
,3,19547,34085
,3,19545,33585
,3,19529,142500
,4,1,34070
,4,2,34090
,3,19544,430
,3,19546,350
,3,19662,34080
,4,2,34100
,3,19547,34095
,3,19545,33585
,3,19529,142500
,4,1,34080
,4,2,34100
,3,19544,430
,3,19546,350
,3,19662,34090
,4,2,34110
,3,19547,34105
,3,19545,33585
,3,19529,142500
,4,1,34090
,4,2,34110
,3,19544,430
,3,19546,350
,3,19662,34100
,4,2,34120
,3,19547,34115
,3,19545,33585
,3,19529,142500
,4,1,34100
,4,2,34120
,3,19544,430
,3,19546,350
,3,19662,34110
,4,2,34130
,3,19547,34125
,3,19545,33585
,3,19529,142500
,4,1,34110
,4,2,34130
,3,19544,430
,3,19546,350
,3,19662,34120
,4,2,34140
,3,19547,34135
,3,19545,33585
,3,19529,142500
,4,1,34120
,4,2,34140
,3,19544,430
,3,19546,350
,3,19662,34130
,4,2,34150
,3,19547,34145
,3,19545,33585
,3,19529,142500
,4,1,34130
,4,2,34150
,3,19544,430
,3,19546,350
,3,19662,34140
,4,2,34160
,3,19547,34155
,3,19545,33585
,3,19529,142500
,4,1,34140
,4,2,34160
,3,19544,430
,3,19546,350
,3,19662,34150
,4,2,34170
,3,19547,34165
,3,19545,33585
,3,19529,142500
,4,1,34150
,4,2,34170
,3,19544,430
,3,19546,350
,3,19662,34160
,4,2,34180
,3,19547,34175
,3,19545,33585
,3,19529,142500
,4,1,34160
,4,2,34180
,3,19544,430
,3,19546,350
,3,19662,34170
,4,2,34190
,3,19547,34185
,3,19545,33585
,3,19529,142500
,4,1,34170
,4,2,34190
,3,19544,430
,3,19546,350
,3,19662,34180
,4,2,34200
,3,19547,34195
,3,19545,33585
,3,19529,142500
,4,1,34180
,4,2,34200
,3,19544,430
,3,19546,350
,3,19662,34190
,4,2,34210
,3,19547,34205
,3,19545,33585
,3,19529,142500
,4,1,34190
,4,2,34210
,3,19544,430
,3,19546,350
,3,19662,34200
,4,2,34220
,3,19547,34215
,3,19545,33585
,3,19529,142500
,4,1,34200
,4,2,34220
,3,19544,430
,3,19546,350
,3,19662,34210
,4,2,34230
,3,19547,34225
,3,19545,33585
,3,19529,142500
,4,1,34210
,4,2,34230
,3,19544,430
,3,19546,350
,3,19662,34220
,4,2,34240
,3,19547,34235
,3,19545,33585
,3,19529,142500
,4,1,34220
,4,2,34240
,3,19544,430
,3,19546,350
,3,19662,34230
,4,2,34250
,3,19547,34245
,3,19545,33585
,3,19529,142500
,4,1,34230
,4,2,34250
,3,19544,430
,3,19546,350
,3,19662,34240
,4,2,34260
,3,19547,34255
,3,19545,33585
,3,19529,142500
,4,1,34240
,4,2,34260
,3,19544,430
,3,19546,350
,3,19662,34250
,4,2,34270
,3,19547,34265
,3,19545,33585
,3,19529,142500
,4,1,34250
,4,2,34270
,3,19544,430
,3,19546,350
,3,19662,34260
,4,2,34280
,3,19547,34275
,3,19545,33585
,3,19529,142500
,4,1,34260
,4,2,34280
,3,19544,430
,3,19546,350
,3,19662,34270
,4,2,33705
,3,19547,34285
,3,19545,33585
,3,19529,142500
,4,1,34270
,4,2,33705
,4,1,32385
,4,2,34295
,3,19544,32080
,3,19546,12640
,3,19662,32400
,4,2,34340
,3,19547,34335
,3,19545,32095
,3,19529,142500
,3,19657,200
,3,19658,39135
,3,19657,200
,3,19658,39145
,3,19657,200
,3,19658,39150
,3,19657,200
,3,19658,39155
,4,1,32400
,4,2,34340
,3,19544,32080
,3,19546,12640
,3,19662,34295
,4,2,34475
,3,19547,34470
,3,19545,32095
,3,19529,142500
,4,2,195
,4,4,195
,4,2,34355
,4,3,34360
,4,6,34365
,4,9,34370
,4,12,34375
,4,15,34380
,4,1,41185
,4,2,41190
,4,1,455
,4,2,34390
,3,19544,430
,3,19546,350
,3,19662,34400
,4,2,34405
,3,19547,34395
,3,19545,34350
,3,19529,142500
,4,1,34400
,4,2,34405
,3,19544,430
,3,19546,350
,3,19662,455
,4,2,34390
,3,19547,34385
,3,19545,34350
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,34390
,4,2,34415
,3,19547,34410
,3,19545,34350
,3,19529,142500
,4,1,34390
,4,2,34415
,3,19544,430
,3,19546,350
,3,19662,34405
,4,2,34425
,3,19547,34420
,3,19545,34350
,3,19529,142500
,4,1,34405
,4,2,34425
,3,19544,430
,3,19546,350
,3,19662,34415
,3,19545,34350
,3,19529,142500
,4,2,34435
,4,3,34440
,4,6,34445
,4,1,41195
,4,2,41200
,4,1,455
,4,2,34455
,3,19544,430
,3,19546,350
,3,19662,133830
,3,19545,34430
,3,19529,142500
,3,19529,39795
,4,36,655
,3,19544,430
,3,19546,350
,3,19529,142500
,4,1,34295
,4,2,34475
,3,19544,32080
,3,19546,12640
,3,19662,34340
,4,2,34490
,3,19547,34485
,3,19545,32095
,3,19529,142500
,3,19544,1070
,3,19546,895
,3,19662,39775
,4,2,39765
,3,19547,133275
,3,19545,133240
,3,19529,142500
,4,1,34340
,4,2,34490
,3,19544,32080
,3,19546,12640
,3,19662,34475
,4,2,34500
,3,19547,34495
,3,19545,32095
,3,19529,142500
,4,1,34475
,4,2,34500
,3,19544,32080
,3,19546,12640
,3,19662,34490
,4,2,34510
,3,19547,34505
,3,19545,32095
,3,19529,142500
,4,1,34490
,4,2,34510
,3,19544,32080
,3,19546,12640
,3,19662,34500
,4,2,34520
,3,19547,34515
,3,19545,32095
,3,19529,142500
,4,1,34500
,4,2,34520
,3,19544,32080
,3,19546,12640
,3,19662,34510
,4,2,34530
,3,19547,34525
,3,19545,32095
,3,19529,142500
,4,1,34510
,4,2,34530
,3,19544,32080
,3,19546,12640
,3,19662,34520
,4,2,34540
,3,19547,34535
,3,19545,32095
,3,19529,142500
,4,1,34520
,4,2,34540
,3,19544,32080
,3,19546,12640
,3,19662,34530
,4,2,34555
,3,19547,34550
,3,19545,32095
,3,19529,142500
,4,1,34530
,4,2,34555
,3,19544,32080
,3,19546,12640
,3,19662,34540
,4,2,34565
,3,19547,34560
,3,19545,32095
,3,19529,142500
,4,1,34540
,4,2,34565
,3,19544,32080
,3,19546,12640
,3,19662,34555
,4,2,34580
,3,19547,34575
,3,19545,32095
,3,19529,142500
,4,1,560
,4,1,34555
,4,2,34580
,3,19544,32080
,3,19546,12640
,3,19662,34565
,4,2,34590
,3,19547,34585
,3,19545,32095
,3,19529,142500
,4,1,34565
,4,2,34590
,3,19544,32080
,3,19546,12640
,3,19662,34580
,4,2,34600
,3,19547,34595
,3,19545,32095
,3,19529,142500
,4,1,34580
,4,2,34600
,3,19544,32080
,3,19546,12640
,3,19662,34590
,4,2,34610
,3,19547,34605
,3,19545,32095
,3,19529,142500
,4,1,34590
,4,2,34610
,3,19544,32080
,3,19546,12640
,3,19662,34600
,4,2,34635
,3,19547,34630
,3,19545,32095
,3,19529,142500
,3,19657,41205
,3,19658,41210
,3,19657,200
,3,19658,21525
,4,1,34600
,4,2,34635
,3,19544,32080
,3,19546,12640
,3,19662,34610
,4,2,34645
,3,19547,34640
,3,19545,32095
,3,19529,142500
,4,1,34610
,4,2,34645
,3,19544,32080
,3,19546,12640
,3,19662,34635
,4,2,34655
,3,19547,34650
,3,19545,32095
,3,19529,142500
,4,1,34635
,4,2,34655
,3,19544,32080
,3,19546,12640
,3,19662,34645
,4,2,38655
,3,19547,38650
,3,19545,32095
,3,19529,142500
,4,1,32950
,4,2,34665
,3,19544,430
,3,19546,350
,3,19662,32975
,4,2,34905
,3,19547,34900
,3,19545,31495
,3,19529,142500
,2,19076,425
,3,19538,41215
,3,19539,21915
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,21920
,4,3,34735
,4,5,21945
,4,6,24625
,4,8,21975
,4,9,6700
,4,11,21980
,4,12,34740
,4,14,21985
,4,15,34745
,4,18,34750
,4,21,28930
,4,23,21995
,4,24,34755
,4,26,22000
,4,27,34760
,4,29,22005
,4,30,31285
,4,32,34765
,4,33,34770
,4,35,34775
,4,36,34780
,4,38,22010
,0,1023,41230
,0,843,41235
,0,1024,110
,2,19076,425
,3,19539,20320
,3,19540,41240
,6,64,85
,3,19529,12650
,4,1,4220
,0,1023,41245
,0,843,41250
,0,1024,110
,2,19076,425
,3,19539,20320
,3,19540,41255
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,31135
,4,2,34790
,3,19544,430
,3,19546,350
,3,19662,34800
,4,2,34805
,3,19547,34795
,3,19545,34730
,3,19529,142500
,4,1,34800
,4,2,34805
,3,19544,430
,3,19546,350
,3,19662,31135
,4,2,34790
,3,19547,34785
,3,19545,34730
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,34790
,4,2,34815
,3,19547,34810
,3,19545,34730
,3,19529,142500
,4,1,34790
,4,2,34815
,3,19544,430
,3,19546,350
,3,19662,34805
,4,2,34825
,3,19547,34820
,3,19545,34730
,3,19529,142500
,4,1,34805
,4,2,34825
,3,19544,430
,3,19546,350
,3,19662,34815
,4,2,34835
,3,19547,34830
,3,19545,34730
,3,19529,142500
,4,1,34815
,4,2,34835
,3,19544,430
,3,19546,350
,3,19662,34825
,4,2,34845
,3,19547,34840
,3,19545,34730
,3,19529,142500
,4,1,34825
,4,2,34845
,3,19544,430
,3,19546,350
,3,19662,34835
,4,2,34855
,3,19547,34850
,3,19545,34730
,3,19529,142500
,4,1,34835
,4,2,34855
,3,19544,430
,3,19546,350
,3,19662,34845
,4,2,34865
,3,19547,34860
,3,19545,34730
,3,19529,142500
,4,1,34845
,4,2,34865
,3,19544,430
,3,19546,350
,3,19662,34855
,4,2,34875
,3,19547,34870
,3,19545,34730
,3,19529,142500
,4,1,34855
,4,2,34875
,3,19544,430
,3,19546,350
,3,19662,34865
,4,2,34885
,3,19547,34880
,3,19545,34730
,3,19529,142500
,4,1,34865
,4,2,34885
,3,19544,430
,3,19546,350
,3,19662,34875
,4,2,34895
,3,19547,34890
,3,19545,34730
,3,19529,142500
,4,1,34875
,4,2,34895
,3,19544,430
,3,19546,350
,3,19662,34885
,3,19545,34730
,3,19529,142500
,4,1,32975
,4,2,34905
,3,19544,430
,3,19546,350
,3,19662,34665
,4,2,35390
,3,19547,35385
,3,19545,31495
,3,19529,142500
,3,19657,200
,3,19658,35025
,3,19657,200
,3,19658,35030
,3,19657,200
,3,19658,35040
,3,19657,16595
,3,19658,41260
,3,19657,16595
,3,19658,41265
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,34990
,4,21,31275
,4,24,34995
,4,27,35000
,4,30,35005
,4,33,28940
,4,36,31295
,4,38,16490
,4,39,35010
,4,41,22665
,4,42,35015
,4,45,35020
,4,47,22725
,4,48,35025
,4,50,22745
,4,51,35030
,4,53,22765
,4,54,35035
,4,56,22780
,4,57,35040
,4,59,22785
,4,60,35045
,4,62,22835
,4,63,35050
,4,65,22840
,4,66,35055
,4,68,22855
,4,69,16595
,4,71,22675
,4,1,12650
,4,2,35065
,3,19544,425
,3,19662,35075
,4,2,35080
,3,19547,35070
,3,19545,34985
,3,19529,142500
,4,1,35075
,4,2,35080
,3,19544,425
,3,19662,12650
,4,2,35065
,3,19547,35060
,3,19545,34985
,3,19529,142500
,3,19544,425
,3,19662,35065
,4,2,35090
,3,19547,35085
,3,19545,34985
,3,19529,142500
,4,1,35065
,4,2,35090
,3,19544,425
,3,19662,35080
,4,2,35100
,3,19547,35095
,3,19545,34985
,3,19529,142500
,4,1,35080
,4,2,35100
,3,19544,425
,3,19662,35090
,4,2,35110
,3,19547,35105
,3,19545,34985
,3,19529,142500
,4,1,35090
,4,2,35110
,3,19544,425
,3,19662,35100
,4,2,35120
,3,19547,35115
,3,19545,34985
,3,19529,142500
,4,1,35100
,4,2,35120
,3,19544,425
,3,19662,35110
,4,2,35135
,3,19547,35130
,3,19545,34985
,3,19529,142500
,2,19076,425
,3,19538,41270
,3,19539,22635
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,22640
,4,1,35110
,4,2,35135
,3,19544,425
,3,19662,35120
,4,2,35145
,3,19547,35140
,3,19545,34985
,3,19529,142500
,4,1,35120
,4,2,35145
,3,19544,425
,3,19662,35135
,4,2,35155
,3,19547,35150
,3,19545,34985
,3,19529,142500
,4,1,35135
,4,2,35155
,3,19544,425
,3,19662,35145
,4,2,35165
,3,19547,35160
,3,19545,34985
,3,19529,142500
,4,1,35145
,4,2,35165
,3,19544,425
,3,19662,35155
,4,2,35175
,3,19547,35170
,3,19545,34985
,3,19529,142500
,4,1,35155
,4,2,35175
,3,19544,425
,3,19662,35165
,4,2,35185
,3,19547,35180
,3,19545,34985
,3,19529,142500
,4,1,35165
,4,2,35185
,3,19544,425
,3,19662,35175
,4,2,35195
,3,19547,35190
,3,19545,34985
,3,19529,142500
,4,1,35175
,4,2,35195
,3,19544,425
,3,19662,35185
,4,2,35305
,3,19547,35300
,3,19545,34985
,3,19529,142500
,4,3,16520
,4,5,22675
,4,6,35205
,4,8,22790
,4,9,16850
,4,11,22795
,4,12,35210
,4,14,22800
,4,2,35220
,3,19544,430
,3,19546,350
,3,19662,35230
,4,2,35235
,3,19547,35225
,3,19545,35200
,3,19529,142500
,4,1,35230
,4,2,35235
,3,19544,430
,3,19546,350
,4,2,35220
,3,19547,35215
,3,19545,35200
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,35220
,4,2,35245
,3,19547,35240
,3,19545,35200
,3,19529,142500
,4,1,35220
,4,2,35245
,3,19544,430
,3,19546,350
,3,19662,35235
,3,19545,35200
,3,19529,142500
,4,2,35255
,4,3,35260
,4,5,22825
,4,6,35265
,4,8,22830
,4,9,35270
,4,11,13535
,4,1,41305
,4,1,31135
,4,2,35280
,3,19544,430
,3,19546,350
,3,19662,35290
,4,2,35295
,3,19547,35285
,3,19545,35250
,3,19529,142500
,4,1,35290
,4,2,35295
,3,19544,430
,3,19546,350
,3,19662,31135
,4,2,35280
,3,19547,35275
,3,19545,35250
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,35280
,3,19545,35250
,3,19529,142500
,4,1,35185
,4,2,35305
,3,19544,425
,3,19662,35195
,4,2,35315
,3,19547,35310
,3,19545,34985
,3,19529,142500
,4,1,35195
,4,2,35315
,3,19544,425
,3,19662,35305
,4,2,35325
,3,19547,35320
,3,19545,34985
,3,19529,142500
,4,1,35305
,4,2,35325
,3,19544,425
,3,19662,35315
,4,2,35340
,3,19547,35335
,3,19545,34985
,3,19529,142500
,4,1,35315
,4,2,35340
,3,19544,425
,3,19662,35325
,3,19545,34985
,3,19529,142500
,4,2,35355
,4,3,22930
,4,6,22880
,4,1,41310
,4,2,41315
,4,2,35365
,3,19544,430
,3,19546,350
,3,19662,35375
,4,2,35380
,3,19547,35370
,3,19545,35350
,3,19529,142500
,4,1,35375
,4,2,35380
,3,19544,430
,3,19546,350
,4,2,35365
,3,19547,35360
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,35365
,3,19545,35350
,3,19529,142500
,4,1,34665
,4,2,35390
,3,19544,430
,3,19546,350
,3,19662,34905
,4,2,36365
,3,19547,36360
,3,19545,31495
,3,19529,142500
,3,19657,200
,3,19658,35660
,3,19657,200
,3,19658,35675
,3,19657,200
,3,19658,35680
,3,19657,200
,3,19658,35685
,3,19657,200
,3,19658,37170
,3,19657,200
,3,19658,37205
,3,19657,200
,3,19658,37210
,3,19657,200
,3,19658,37220
,3,19657,200
,3,19658,37255
,3,19657,200
,3,19658,37335
,3,19657,200
,3,19658,37345
,3,19657,200
,3,19658,37365
,3,19657,200
,3,19658,37375
,3,19544,430
,3,19546,350
,3,19662,37120
,3,19545,35655
,3,19529,142500
,4,3,16520
,4,5,24765
,4,6,35660
,4,8,27295
,4,9,35665
,4,11,27420
,4,12,35670
,4,14,27425
,4,15,35675
,4,17,27430
,4,18,35680
,4,20,27435
,4,21,35685
,4,23,27440
,4,24,35690
,4,26,27445
,4,27,35695
,4,29,27450
,4,3,35705
,4,5,24765
,4,6,29795
,4,8,24800
,4,9,35710
,4,11,24835
,4,12,35715
,4,14,24870
,4,15,35720
,4,17,24905
,4,18,35725
,4,20,24940
,4,21,35730
,4,23,24975
,4,24,35735
,4,26,25010
,4,27,35740
,4,29,25045
,4,30,35745
,4,32,25080
,4,33,35750
,4,35,25115
,4,36,28120
,4,38,25150
,4,39,35755
,4,41,25185
,4,42,35760
,4,44,25220
,4,45,7915
,4,47,25255
,4,48,35765
,4,50,25290
,4,51,35770
,4,53,25325
,4,54,35775
,4,56,25360
,4,57,33590
,4,59,25395
,4,60,35780
,4,62,25430
,4,63,35785
,4,65,25465
,4,66,35790
,4,68,25500
,4,69,35795
,4,71,25535
,4,72,35800
,4,74,25570
,4,75,35805
,4,77,25605
,4,78,23505
,4,80,25685
,3,19544,430
,3,19546,350
,3,19545,35815
,3,19529,142500
,4,3,16520
,4,5,24800
,4,1,455
,4,2,35825
,3,19544,430
,3,19546,350
,3,19662,35845
,4,2,35850
,3,19547,35840
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,35835
,3,19529,142500
,4,3,16520
,4,5,24835
,4,1,35845
,4,2,35850
,3,19544,430
,3,19546,350
,3,19662,455
,4,2,35825
,3,19547,35820
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,35825
,4,2,35870
,3,19547,35865
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,35860
,3,19529,142500
,4,3,16520
,4,5,24870
,4,1,35825
,4,2,35870
,3,19544,430
,3,19546,350
,3,19662,35850
,4,2,35890
,3,19547,35885
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,35880
,3,19529,142500
,4,3,16520
,4,5,24905
,4,1,35850
,4,2,35890
,3,19544,430
,3,19546,350
,3,19662,35870
,4,2,35910
,3,19547,35905
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,35900
,3,19529,142500
,4,3,16520
,4,5,24940
,4,1,35870
,4,2,35910
,3,19544,430
,3,19546,350
,3,19662,35890
,4,2,35930
,3,19547,35925
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,35920
,3,19529,142500
,4,3,16520
,4,5,24975
,4,1,35890
,4,2,35930
,3,19544,430
,3,19546,350
,3,19662,35910
,4,2,35950
,3,19547,35945
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,35940
,3,19529,142500
,4,3,16520
,4,5,25010
,4,1,35910
,4,2,35950
,3,19544,430
,3,19546,350
,3,19662,35930
,4,2,35970
,3,19547,35965
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,35960
,3,19529,142500
,4,3,16520
,4,5,25045
,4,1,35930
,4,2,35970
,3,19544,430
,3,19546,350
,3,19662,35950
,4,2,35990
,3,19547,35985
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,35980
,3,19529,142500
,4,3,16520
,4,5,25080
,4,1,35950
,4,2,35990
,3,19544,430
,3,19546,350
,3,19662,35970
,4,2,36010
,3,19547,36005
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36000
,3,19529,142500
,4,3,16520
,4,5,25115
,4,1,35970
,4,2,36010
,3,19544,430
,3,19546,350
,3,19662,35990
,4,2,36030
,3,19547,36025
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36020
,3,19529,142500
,4,3,16520
,4,5,25150
,4,1,35990
,4,2,36030
,3,19544,430
,3,19546,350
,3,19662,36010
,4,2,36050
,3,19547,36045
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36040
,3,19529,142500
,4,3,16520
,4,5,25185
,4,1,36010
,4,2,36050
,3,19544,430
,3,19546,350
,3,19662,36030
,4,2,36070
,3,19547,36065
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36060
,3,19529,142500
,4,3,16520
,4,5,25220
,4,1,36030
,4,2,36070
,3,19544,430
,3,19546,350
,3,19662,36050
,4,2,36090
,3,19547,36085
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36080
,3,19529,142500
,4,3,16520
,4,5,25255
,4,1,36050
,4,2,36090
,3,19544,430
,3,19546,350
,3,19662,36070
,4,2,36110
,3,19547,36105
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36100
,3,19529,142500
,4,3,16520
,4,5,25290
,4,1,36070
,4,2,36110
,3,19544,430
,3,19546,350
,3,19662,36090
,4,2,36130
,3,19547,36125
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36120
,3,19529,142500
,4,3,16520
,4,5,25325
,4,1,36090
,4,2,36130
,3,19544,430
,3,19546,350
,3,19662,36110
,4,2,36150
,3,19547,36145
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36140
,3,19529,142500
,4,3,16520
,4,5,25360
,4,1,36110
,4,2,36150
,3,19544,430
,3,19546,350
,3,19662,36130
,4,2,36170
,3,19547,36165
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36160
,3,19529,142500
,4,3,16520
,4,5,25395
,4,1,36130
,4,2,36170
,3,19544,430
,3,19546,350
,3,19662,36150
,4,2,36190
,3,19547,36185
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36180
,3,19529,142500
,4,3,16520
,4,5,25430
,4,1,36150
,4,2,36190
,3,19544,430
,3,19546,350
,3,19662,36170
,4,2,36210
,3,19547,36205
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36200
,3,19529,142500
,4,3,16520
,4,5,25465
,4,1,36170
,4,2,36210
,3,19544,430
,3,19546,350
,3,19662,36190
,4,2,36230
,3,19547,36225
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36220
,3,19529,142500
,4,3,16520
,4,5,25500
,4,1,36190
,4,2,36230
,3,19544,430
,3,19546,350
,3,19662,36210
,4,2,36250
,3,19547,36245
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36240
,3,19529,142500
,4,3,16520
,4,5,25535
,4,1,36210
,4,2,36250
,3,19544,430
,3,19546,350
,3,19662,36230
,4,2,36270
,3,19547,36265
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36260
,3,19529,142500
,4,3,16520
,4,5,25570
,4,1,36230
,4,2,36270
,3,19544,430
,3,19546,350
,3,19662,36250
,4,2,36290
,3,19547,36285
,3,19545,35700
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,36280
,3,19529,142500
,4,3,16520
,4,5,25605
,4,1,36250
,4,2,36290
,3,19544,430
,3,19546,350
,3,19662,36270
,4,2,36335
,3,19547,36330
,3,19545,35700
,3,19529,142500
,4,2,23085
,4,3,25645
,4,5,25725
,4,6,25665
,3,19544,430
,3,19546,350
,3,19545,36305
,3,19529,142500
,4,3,16520
,4,5,25705
,3,19544,430
,3,19546,350
,3,19545,36315
,3,19529,142500
,4,3,16520
,4,5,25730
,3,19544,430
,3,19546,350
,3,19545,36325
,3,19529,142500
,4,3,23085
,4,5,25705
,4,6,25725
,4,8,25730
,4,9,16520
,4,11,25685
,4,1,36270
,4,2,36335
,3,19544,430
,3,19546,350
,3,19662,36290
,3,19545,35700
,3,19529,142500
,4,1,31260
,4,2,36345
,3,19544,430
,3,19546,350
,3,19662,32935
,4,2,36355
,3,19547,36350
,3,19545,31235
,3,19529,142500
,4,1,32935
,4,2,36355
,3,19544,430
,3,19546,350
,3,19662,36345
,4,2,39010
,3,19547,39005
,3,19545,31235
,3,19529,142500
,4,1,34905
,4,2,36365
,3,19544,430
,3,19546,350
,3,19662,35390
,4,2,36390
,3,19547,36385
,3,19545,31495
,3,19529,142500
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,33385
,4,21,24650
,4,23,26260
,4,24,24655
,4,26,26715
,4,27,26835
,4,29,27130
,4,30,27015
,4,32,27145
,4,33,27200
,4,35,27275
,4,36,24645
,4,38,26250
,4,3,16520
,4,5,26250
,4,6,36380
,4,8,27285
,4,1,35390
,4,2,36390
,3,19544,430
,3,19546,350
,3,19662,36365
,4,2,36670
,3,19547,36665
,3,19545,31495
,3,19529,142500
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,25890
,4,20,26255
,4,21,33385
,4,23,26250
,4,24,36450
,4,26,26335
,4,1,12650
,4,2,36460
,3,19544,425
,3,19662,36645
,4,2,36650
,3,19547,36640
,3,19545,36445
,3,19529,142500
,2,828,26250
,2,1812,27285
,2,19076,31775
,3,19600,36470
,3,19529,36475
,3,19544,31775
,3,19546,350
,3,19662,142770
,3,19545,36375
,3,19529,142500
,4,3,16520
,4,5,26260
,4,6,7375
,4,8,26240
,4,9,7410
,4,11,26350
,4,12,36485
,4,14,26355
,4,15,35715
,4,17,26360
,4,18,36490
,4,20,26365
,4,21,36380
,4,23,26370
,4,24,36495
,4,26,26380
,4,27,31620
,4,29,26385
,4,30,21520
,4,32,26385
,4,33,36500
,4,35,26390
,4,36,36505
,4,38,26395
,4,39,31295
,4,41,26400
,2,19076,425
,3,19539,26210
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,26215
,4,2,36520
,3,19544,36465
,3,19546,350
,3,19662,36530
,4,2,36535
,3,19547,36525
,3,19545,36480
,3,19529,142500
,4,1,36530
,4,2,36535
,3,19544,36465
,3,19546,350
,4,2,36520
,3,19547,36515
,3,19545,36480
,3,19529,142500
,3,19544,36465
,3,19546,350
,3,19662,36520
,4,2,36545
,3,19547,36540
,3,19545,36480
,3,19529,142500
,4,1,36520
,4,2,36545
,3,19544,36465
,3,19546,350
,3,19662,36535
,4,2,36555
,3,19547,36550
,3,19545,36480
,3,19529,142500
,4,1,36535
,4,2,36555
,3,19544,36465
,3,19546,350
,3,19662,36545
,4,2,36565
,3,19547,36560
,3,19545,36480
,3,19529,142500
,4,1,36545
,4,2,36565
,3,19544,36465
,3,19546,350
,3,19662,36555
,4,2,36575
,3,19547,36570
,3,19545,36480
,3,19529,142500
,4,1,36555
,4,2,36575
,3,19544,36465
,3,19546,350
,3,19662,36565
,4,2,36585
,3,19547,36580
,3,19545,36480
,3,19529,142500
,4,1,36565
,4,2,36585
,3,19544,36465
,3,19546,350
,3,19662,36575
,4,2,36595
,3,19547,36590
,3,19545,36480
,3,19529,142500
,4,1,36575
,4,2,36595
,3,19544,36465
,3,19546,350
,3,19662,36585
,4,2,36605
,3,19547,36600
,3,19545,36480
,3,19529,142500
,4,1,36585
,4,2,36605
,3,19544,36465
,3,19546,350
,3,19662,36595
,4,2,36615
,3,19547,36610
,3,19545,36480
,3,19529,142500
,4,1,36595
,4,2,36615
,3,19544,36465
,3,19546,350
,3,19662,36605
,4,2,36625
,3,19547,36620
,3,19545,36480
,3,19529,142500
,4,1,36605
,4,2,36625
,3,19544,36465
,3,19546,350
,3,19662,36615
,4,2,36635
,3,19547,36630
,3,19545,36480
,3,19529,142500
,4,1,36615
,4,2,36635
,3,19544,36465
,3,19546,350
,3,19662,36625
,3,19545,36480
,3,19529,142500
,4,1,36645
,4,2,36650
,3,19544,425
,3,19662,12650
,4,2,36460
,3,19547,36455
,3,19545,36445
,3,19529,142500
,3,19544,425
,3,19662,36460
,3,19545,36445
,3,19529,142500
,4,1,12650
,4,2,36660
,3,19544,425
,3,19662,36780
,4,2,36785
,3,19547,36775
,3,19545,36370
,3,19529,142500
,4,1,36365
,4,2,36670
,3,19544,430
,3,19546,350
,3,19662,36390
,4,2,36795
,3,19547,36790
,3,19545,31495
,3,19529,142500
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,26450
,4,20,26710
,4,21,33385
,4,23,26250
,4,1,12650
,4,2,36705
,3,19544,425
,3,19662,134265
,3,19545,36695
,3,19529,142500
,4,2,36715
,4,3,16520
,4,5,26715
,4,6,36380
,4,8,26700
,4,9,33590
,4,11,26795
,4,12,36720
,4,14,26800
,4,15,28800
,4,17,26805
,4,1,41365
,2,19076,425
,3,19539,26670
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,26675
,4,2,36735
,3,19544,36465
,3,19546,350
,3,19662,36745
,4,2,36750
,3,19547,36740
,3,19545,36710
,3,19529,142500
,4,1,36745
,4,2,36750
,3,19544,36465
,3,19546,350
,4,2,36735
,3,19547,36730
,3,19545,36710
,3,19529,142500
,3,19544,36465
,3,19546,350
,3,19662,36735
,4,2,36760
,3,19547,36755
,3,19545,36710
,3,19529,142500
,4,1,36735
,4,2,36760
,3,19544,36465
,3,19546,350
,3,19662,36750
,4,2,36770
,3,19547,36765
,3,19545,36710
,3,19529,142500
,4,1,36750
,4,2,36770
,3,19544,36465
,3,19546,350
,3,19662,36760
,3,19545,36710
,3,19529,142500
,4,1,36780
,4,2,36785
,3,19544,425
,3,19662,12650
,4,2,36660
,3,19547,36655
,3,19545,36370
,3,19529,142500
,3,19544,425
,3,19662,36660
,4,2,36855
,3,19547,36850
,3,19545,36370
,3,19529,142500
,4,1,36390
,4,2,36795
,3,19544,430
,3,19546,350
,3,19662,36670
,4,2,36865
,3,19547,36860
,3,19545,31495
,3,19529,142500
,2,828,26260
,2,473,26240
,2,563,26350
,2,1823,26355
,2,1793,26360
,2,1824,26365
,2,1812,26370
,2,1825,26380
,2,1530,26385
,2,1067,26385
,2,1826,26390
,2,1827,26395
,2,1508,26400
,2,19076,36465
,3,19600,36805
,3,19529,36635
,4,3,16520
,4,5,27130
,4,6,33590
,4,8,26795
,4,9,36720
,4,11,26800
,4,12,28800
,4,14,26805
,4,2,36820
,3,19544,36800
,3,19546,350
,3,19662,36830
,4,2,36835
,3,19547,36825
,3,19545,36810
,3,19529,142500
,4,1,36830
,4,2,36835
,3,19544,36800
,3,19546,350
,4,2,36820
,3,19547,36815
,3,19545,36810
,3,19529,142500
,3,19544,36800
,3,19546,350
,3,19662,36820
,4,2,36845
,3,19547,36840
,3,19545,36810
,3,19529,142500
,4,1,36820
,4,2,36845
,3,19544,36800
,3,19546,350
,3,19662,36835
,3,19545,36810
,3,19529,142500
,4,1,36660
,4,2,36855
,3,19544,425
,3,19662,36785
,4,2,36965
,3,19547,36960
,3,19545,36370
,3,19529,142500
,4,1,36670
,4,2,36865
,3,19544,430
,3,19546,350
,3,19662,36795
,4,2,36975
,3,19547,36970
,3,19545,31495
,3,19529,142500
,2,828,27130
,2,1657,26795
,2,1829,26800
,2,1408,26805
,2,19076,36800
,3,19600,36895
,3,19529,36845
,4,3,16520
,4,5,27145
,4,6,7375
,4,8,27125
,4,9,36905
,4,11,27160
,4,12,36720
,4,14,27165
,4,15,36490
,4,17,27170
,2,19076,425
,3,19539,27095
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,27100
,4,2,36920
,3,19544,36890
,3,19546,350
,3,19662,36930
,4,2,36935
,3,19547,36925
,3,19545,36900
,3,19529,142500
,4,1,36930
,4,2,36935
,3,19544,36890
,3,19546,350
,4,2,36920
,3,19547,36915
,3,19545,36900
,3,19529,142500
,3,19544,36890
,3,19546,350
,3,19662,36920
,4,2,36945
,3,19547,36940
,3,19545,36900
,3,19529,142500
,4,1,36920
,4,2,36945
,3,19544,36890
,3,19546,350
,3,19662,36935
,4,2,36955
,3,19547,36950
,3,19545,36900
,3,19529,142500
,4,1,36935
,4,2,36955
,3,19544,36890
,3,19546,350
,3,19662,36945
,3,19545,36900
,3,19529,142500
,4,1,36785
,4,2,36965
,3,19544,425
,3,19662,36855
,4,2,37020
,3,19547,37015
,3,19545,36370
,3,19529,142500
,4,1,36795
,4,2,36975
,3,19544,430
,3,19546,350
,3,19662,36865
,4,2,38840
,3,19547,38835
,3,19545,31495
,3,19529,142500
,2,828,27145
,2,473,27125
,2,1831,27160
,2,1829,27165
,2,1824,27170
,2,19076,36890
,3,19600,36990
,3,19529,36955
,4,3,16520
,4,5,27275
,4,6,36905
,4,8,27270
,2,19076,425
,3,19539,27240
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,27245
,4,2,37010
,3,19544,36985
,3,19546,350
,3,19662,142775
,3,19545,36995
,3,19529,142500
,4,1,36855
,4,2,37020
,3,19544,425
,3,19662,36965
,4,2,37030
,3,19547,37025
,3,19545,36370
,3,19529,142500
,4,1,36965
,4,2,37030
,3,19544,425
,3,19662,37020
,3,19545,36370
,3,19529,142500
,2,19076,425
,3,19539,25835
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,25840
,4,2,36475
,2,19076,425
,3,19538,41370
,3,19539,24725
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,24730
,4,2,37055
,3,19544,430
,3,19546,350
,3,19662,37065
,4,2,37070
,3,19547,37060
,3,19545,35655
,3,19529,142500
,4,1,37065
,4,2,37070
,3,19544,430
,3,19546,350
,4,2,37055
,3,19547,37050
,3,19545,35655
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,37055
,4,2,37080
,3,19547,37075
,3,19545,35655
,3,19529,142500
,4,1,37055
,4,2,37080
,3,19544,430
,3,19546,350
,3,19662,37070
,4,2,37090
,3,19547,37085
,3,19545,35655
,3,19529,142500
,4,1,37070
,4,2,37090
,3,19544,430
,3,19546,350
,3,19662,37080
,4,2,37100
,3,19547,37095
,3,19545,35655
,3,19529,142500
,4,1,37080
,4,2,37100
,3,19544,430
,3,19546,350
,3,19662,37090
,4,2,37110
,3,19547,37105
,3,19545,35655
,3,19529,142500
,4,1,37090
,4,2,37110
,3,19544,430
,3,19546,350
,3,19662,37100
,4,2,37120
,3,19547,37115
,3,19545,35655
,3,19529,142500
,4,1,37100
,4,2,37120
,3,19544,430
,3,19546,350
,3,19662,37110
,4,2,35650
,3,19547,37125
,3,19545,35655
,3,19529,142500
,4,1,37110
,4,2,35650
,4,3,20450
,4,6,16510
,4,2,37140
,3,19544,430
,3,19546,350
,3,19662,37150
,4,2,37155
,3,19547,37145
,3,19545,37130
,3,19529,142500
,4,1,37150
,4,2,37155
,3,19544,430
,3,19546,350
,4,2,37140
,3,19547,37135
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,37140
,3,19545,37130
,3,19529,142500
,4,3,35705
,4,5,24765
,4,6,31285
,4,8,27455
,4,9,34770
,4,11,27460
,4,12,37165
,4,14,27465
,4,15,37170
,4,17,27475
,4,18,37175
,4,20,27340
,4,21,29795
,4,23,27520
,4,24,37180
,4,26,27525
,4,27,35710
,4,29,27530
,4,30,37185
,4,32,27535
,4,33,35715
,4,35,27540
,4,36,37190
,4,38,27545
,4,39,33590
,4,41,27555
,4,42,37195
,4,44,27560
,4,45,35730
,4,47,27565
,4,48,37200
,4,50,27570
,4,51,19170
,4,53,27575
,4,54,37205
,4,56,27580
,4,57,35735
,4,59,27585
,4,60,37210
,4,62,27590
,4,63,35740
,4,65,27595
,4,66,37215
,4,68,27600
,4,69,35720
,4,71,27605
,4,72,37220
,4,74,27610
,4,75,35725
,4,77,27615
,4,78,37225
,4,80,27620
,4,81,35745
,4,83,27625
,4,84,37230
,4,86,27630
,4,87,35750
,4,89,27635
,4,90,37235
,4,92,27640
,4,93,35760
,4,95,27645
,4,96,35755
,4,98,27650
,4,99,28120
,4,101,27655
,4,102,37240
,4,104,27660
,4,105,37245
,4,107,27665
,4,108,37250
,4,110,27670
,4,111,35770
,4,113,27675
,4,114,37255
,4,116,27680
,4,117,35765
,4,119,27685
,4,120,37260
,4,122,27690
,4,123,7915
,4,125,27695
,4,126,37265
,4,128,27700
,4,129,35775
,4,131,27705
,4,132,37270
,4,134,27710
,4,135,35785
,4,137,27715
,4,138,37275
,4,140,27720
,4,141,37280
,4,143,27725
,4,144,37285
,4,146,27730
,4,147,35780
,4,149,27735
,4,150,37290
,4,152,27740
,4,153,37295
,4,155,27745
,4,156,37300
,4,158,27750
,4,159,35795
,4,161,27755
,4,162,37305
,4,164,27760
,4,165,35790
,4,167,27765
,4,168,37310
,4,170,27770
,4,171,37315
,4,173,27355
,4,174,35800
,4,176,27775
,4,177,37320
,4,179,27780
,4,180,35805
,4,182,27785
,4,183,37325
,4,185,27790
,4,186,37330
,4,188,27795
,4,189,37335
,4,191,27805
,4,192,37340
,4,194,27815
,4,195,37345
,4,197,27825
,4,198,37350
,4,200,27845
,4,201,37355
,4,203,27865
,4,204,37360
,4,206,27875
,4,207,24435
,4,209,27880
,4,210,24455
,4,212,27900
,4,213,37365
,4,215,27910
,4,216,23535
,4,218,27405
,4,219,37370
,4,221,27405
,4,222,37375
,4,224,27935
,4,225,23545
,4,227,27410
,4,228,37380
,4,230,27410
,4,231,23555
,4,233,37385
,0,972,20180
,0,1265,21950
,0,1266,27300
,0,1267,27305
,0,1150,27310
,0,1268,26250
,0,831,26245
,0,1269,26260
,0,1270,26715
,0,1072,110
,0,1280,85
,0,1153,27315
,0,1154,27320
,0,1155,27325
,0,1156,27330
,0,1157,27335
,0,1158,27340
,0,1159,27345
,0,1160,27350
,0,1161,27355
,0,1162,27360
,0,797,27365
,0,1163,27370
,0,1164,27375
,0,1281,27380
,0,1165,27385
,0,1282,27390
,0,1283,27395
,0,928,85
,0,1166,27400
,0,1167,27405
,0,1168,27410
,2,1655,26250
,2,19076,425
,2,1484,41450
,3,19539,23550
,3,19540,27415
,6,64,85
,3,19600,41455
,3,19529,36780
,4,1,4220
,4,2,37395
,3,19544,430
,3,19546,350
,3,19662,37405
,4,2,37410
,3,19547,37400
,3,19545,37160
,3,19529,142500
,4,1,37405
,4,2,37410
,3,19544,430
,3,19546,350
,4,2,37395
,3,19547,37390
,3,19545,37160
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,37395
,4,2,37420
,3,19547,37415
,3,19545,37160
,3,19529,142500
,4,1,37395
,4,2,37420
,3,19544,430
,3,19546,350
,3,19662,37410
,4,2,37430
,3,19547,37425
,3,19545,37160
,3,19529,142500
,4,1,37410
,4,2,37430
,3,19544,430
,3,19546,350
,3,19662,37420
,4,2,37440
,3,19547,37435
,3,19545,37160
,3,19529,142500
,4,1,37420
,4,2,37440
,3,19544,430
,3,19546,350
,3,19662,37430
,4,2,37450
,3,19547,37445
,3,19545,37160
,3,19529,142500
,4,1,37430
,4,2,37450
,3,19544,430
,3,19546,350
,3,19662,37440
,4,2,37460
,3,19547,37455
,3,19545,37160
,3,19529,142500
,4,1,37440
,4,2,37460
,3,19544,430
,3,19546,350
,3,19662,37450
,4,2,37470
,3,19547,37465
,3,19545,37160
,3,19529,142500
,4,1,37450
,4,2,37470
,3,19544,430
,3,19546,350
,3,19662,37460
,4,2,37480
,3,19547,37475
,3,19545,37160
,3,19529,142500
,4,1,37460
,4,2,37480
,3,19544,430
,3,19546,350
,3,19662,37470
,4,2,37490
,3,19547,37485
,3,19545,37160
,3,19529,142500
,4,1,37470
,4,2,37490
,3,19544,430
,3,19546,350
,3,19662,37480
,4,2,37500
,3,19547,37495
,3,19545,37160
,3,19529,142500
,4,1,37480
,4,2,37500
,3,19544,430
,3,19546,350
,3,19662,37490
,4,2,37510
,3,19547,37505
,3,19545,37160
,3,19529,142500
,4,1,37490
,4,2,37510
,3,19544,430
,3,19546,350
,3,19662,37500
,4,2,37520
,3,19547,37515
,3,19545,37160
,3,19529,142500
,4,1,37500
,4,2,37520
,3,19544,430
,3,19546,350
,3,19662,37510
,4,2,37530
,3,19547,37525
,3,19545,37160
,3,19529,142500
,4,1,37510
,4,2,37530
,3,19544,430
,3,19546,350
,3,19662,37520
,4,2,37540
,3,19547,37535
,3,19545,37160
,3,19529,142500
,4,1,37520
,4,2,37540
,3,19544,430
,3,19546,350
,3,19662,37530
,4,2,37550
,3,19547,37545
,3,19545,37160
,3,19529,142500
,4,1,37530
,4,2,37550
,3,19544,430
,3,19546,350
,3,19662,37540
,4,2,37560
,3,19547,37555
,3,19545,37160
,3,19529,142500
,4,1,37540
,4,2,37560
,3,19544,430
,3,19546,350
,3,19662,37550
,4,2,37570
,3,19547,37565
,3,19545,37160
,3,19529,142500
,4,1,37550
,4,2,37570
,3,19544,430
,3,19546,350
,3,19662,37560
,4,2,37580
,3,19547,37575
,3,19545,37160
,3,19529,142500
,4,1,37560
,4,2,37580
,3,19544,430
,3,19546,350
,3,19662,37570
,4,2,37590
,3,19547,37585
,3,19545,37160
,3,19529,142500
,4,1,37570
,4,2,37590
,3,19544,430
,3,19546,350
,3,19662,37580
,4,2,37600
,3,19547,37595
,3,19545,37160
,3,19529,142500
,4,1,37580
,4,2,37600
,3,19544,430
,3,19546,350
,3,19662,37590
,4,2,37610
,3,19547,37605
,3,19545,37160
,3,19529,142500
,4,1,37590
,4,2,37610
,3,19544,430
,3,19546,350
,3,19662,37600
,4,2,37620
,3,19547,37615
,3,19545,37160
,3,19529,142500
,4,1,37600
,4,2,37620
,3,19544,430
,3,19546,350
,3,19662,37610
,4,2,37630
,3,19547,37625
,3,19545,37160
,3,19529,142500
,4,1,37610
,4,2,37630
,3,19544,430
,3,19546,350
,3,19662,37620
,4,2,37640
,3,19547,37635
,3,19545,37160
,3,19529,142500
,4,1,37620
,4,2,37640
,3,19544,430
,3,19546,350
,3,19662,37630
,4,2,37650
,3,19547,37645
,3,19545,37160
,3,19529,142500
,4,1,37630
,4,2,37650
,3,19544,430
,3,19546,350
,3,19662,37640
,4,2,37660
,3,19547,37655
,3,19545,37160
,3,19529,142500
,4,1,37640
,4,2,37660
,3,19544,430
,3,19546,350
,3,19662,37650
,4,2,37670
,3,19547,37665
,3,19545,37160
,3,19529,142500
,4,1,37650
,4,2,37670
,3,19544,430
,3,19546,350
,3,19662,37660
,4,2,37680
,3,19547,37675
,3,19545,37160
,3,19529,142500
,4,1,37660
,4,2,37680
,3,19544,430
,3,19546,350
,3,19662,37670
,4,2,37690
,3,19547,37685
,3,19545,37160
,3,19529,142500
,4,1,37670
,4,2,37690
,3,19544,430
,3,19546,350
,3,19662,37680
,4,2,37700
,3,19547,37695
,3,19545,37160
,3,19529,142500
,4,1,37680
,4,2,37700
,3,19544,430
,3,19546,350
,3,19662,37690
,4,2,37710
,3,19547,37705
,3,19545,37160
,3,19529,142500
,4,1,37690
,4,2,37710
,3,19544,430
,3,19546,350
,3,19662,37700
,4,2,37720
,3,19547,37715
,3,19545,37160
,3,19529,142500
,4,1,37700
,4,2,37720
,3,19544,430
,3,19546,350
,3,19662,37710
,4,2,37730
,3,19547,37725
,3,19545,37160
,3,19529,142500
,4,1,37710
,4,2,37730
,3,19544,430
,3,19546,350
,3,19662,37720
,4,2,37740
,3,19547,37735
,3,19545,37160
,3,19529,142500
,4,1,37720
,4,2,37740
,3,19544,430
,3,19546,350
,3,19662,37730
,4,2,37750
,3,19547,37745
,3,19545,37160
,3,19529,142500
,4,1,37730
,4,2,37750
,3,19544,430
,3,19546,350
,3,19662,37740
,4,2,37760
,3,19547,37755
,3,19545,37160
,3,19529,142500
,4,1,37740
,4,2,37760
,3,19544,430
,3,19546,350
,3,19662,37750
,4,2,37770
,3,19547,37765
,3,19545,37160
,3,19529,142500
,4,1,37750
,4,2,37770
,3,19544,430
,3,19546,350
,3,19662,37760
,4,2,37780
,3,19547,37775
,3,19545,37160
,3,19529,142500
,4,1,37760
,4,2,37780
,3,19544,430
,3,19546,350
,3,19662,37770
,4,2,37790
,3,19547,37785
,3,19545,37160
,3,19529,142500
,4,1,37770
,4,2,37790
,3,19544,430
,3,19546,350
,3,19662,37780
,4,2,37800
,3,19547,37795
,3,19545,37160
,3,19529,142500
,4,1,37780
,4,2,37800
,3,19544,430
,3,19546,350
,3,19662,37790
,4,2,37810
,3,19547,37805
,3,19545,37160
,3,19529,142500
,4,1,37790
,4,2,37810
,3,19544,430
,3,19546,350
,3,19662,37800
,4,2,37820
,3,19547,37815
,3,19545,37160
,3,19529,142500
,4,1,37800
,4,2,37820
,3,19544,430
,3,19546,350
,3,19662,37810
,4,2,37830
,3,19547,37825
,3,19545,37160
,3,19529,142500
,4,1,37810
,4,2,37830
,3,19544,430
,3,19546,350
,3,19662,37820
,4,2,37840
,3,19547,37835
,3,19545,37160
,3,19529,142500
,4,1,37820
,4,2,37840
,3,19544,430
,3,19546,350
,3,19662,37830
,4,2,37850
,3,19547,37845
,3,19545,37160
,3,19529,142500
,4,1,37830
,4,2,37850
,3,19544,430
,3,19546,350
,3,19662,37840
,4,2,37860
,3,19547,37855
,3,19545,37160
,3,19529,142500
,4,1,37840
,4,2,37860
,3,19544,430
,3,19546,350
,3,19662,37850
,4,2,37870
,3,19547,37865
,3,19545,37160
,3,19529,142500
,4,1,37850
,4,2,37870
,3,19544,430
,3,19546,350
,3,19662,37860
,4,2,37880
,3,19547,37875
,3,19545,37160
,3,19529,142500
,4,1,37860
,4,2,37880
,3,19544,430
,3,19546,350
,3,19662,37870
,4,2,37890
,3,19547,37885
,3,19545,37160
,3,19529,142500
,4,1,37870
,4,2,37890
,3,19544,430
,3,19546,350
,3,19662,37880
,4,2,37900
,3,19547,37895
,3,19545,37160
,3,19529,142500
,4,1,37880
,4,2,37900
,3,19544,430
,3,19546,350
,3,19662,37890
,4,2,37910
,3,19547,37905
,3,19545,37160
,3,19529,142500
,4,1,37890
,4,2,37910
,3,19544,430
,3,19546,350
,3,19662,37900
,4,2,37920
,3,19547,37915
,3,19545,37160
,3,19529,142500
,4,1,37900
,4,2,37920
,3,19544,430
,3,19546,350
,3,19662,37910
,4,2,37930
,3,19547,37925
,3,19545,37160
,3,19529,142500
,4,1,37910
,4,2,37930
,3,19544,430
,3,19546,350
,3,19662,37920
,4,2,37940
,3,19547,37935
,3,19545,37160
,3,19529,142500
,4,1,37920
,4,2,37940
,3,19544,430
,3,19546,350
,3,19662,37930
,4,2,37950
,3,19547,37945
,3,19545,37160
,3,19529,142500
,4,1,37930
,4,2,37950
,3,19544,430
,3,19546,350
,3,19662,37940
,4,2,37960
,3,19547,37955
,3,19545,37160
,3,19529,142500
,4,1,37940
,4,2,37960
,3,19544,430
,3,19546,350
,3,19662,37950
,4,2,37970
,3,19547,37965
,3,19545,37160
,3,19529,142500
,4,1,37950
,4,2,37970
,3,19544,430
,3,19546,350
,3,19662,37960
,4,2,37980
,3,19547,37975
,3,19545,37160
,3,19529,142500
,4,1,37960
,4,2,37980
,3,19544,430
,3,19546,350
,3,19662,37970
,4,2,38020
,3,19547,38015
,3,19545,37160
,3,19529,142500
,4,3,16520
,4,5,27370
,4,6,23085
,4,8,27835
,4,9,29795
,4,11,27840
,4,2,37995
,3,19544,31775
,3,19546,350
,3,19662,38005
,4,2,38010
,3,19547,38000
,3,19545,37985
,3,19529,142500
,4,1,38005
,4,2,38010
,3,19544,31775
,3,19546,350
,4,2,37995
,3,19547,37990
,3,19545,37985
,3,19529,142500
,3,19544,31775
,3,19546,350
,3,19662,37995
,3,19545,37985
,3,19529,142500
,4,1,37970
,4,2,38020
,3,19544,430
,3,19546,350
,3,19662,37980
,4,2,38060
,3,19547,38055
,3,19545,37160
,3,19529,142500
,4,3,16520
,4,5,27375
,4,6,23085
,4,8,27855
,4,9,25725
,4,11,27860
,4,2,38035
,3,19544,31775
,3,19546,350
,3,19662,38045
,4,2,38050
,3,19547,38040
,3,19545,38025
,3,19529,142500
,4,1,38045
,4,2,38050
,3,19544,31775
,3,19546,350
,4,2,38035
,3,19547,38030
,3,19545,38025
,3,19529,142500
,3,19544,31775
,3,19546,350
,3,19662,38035
,3,19545,38025
,3,19529,142500
,4,1,37980
,4,2,38060
,3,19544,430
,3,19546,350
,3,19662,38020
,4,2,38070
,3,19547,38065
,3,19545,37160
,3,19529,142500
,4,1,38020
,4,2,38070
,3,19544,430
,3,19546,350
,3,19662,38060
,4,2,38080
,3,19547,38075
,3,19545,37160
,3,19529,142500
,4,1,38060
,4,2,38080
,3,19544,430
,3,19546,350
,3,19662,38070
,4,2,38090
,3,19547,38085
,3,19545,37160
,3,19529,142500
,4,1,38070
,4,2,38090
,3,19544,430
,3,19546,350
,3,19662,38080
,4,2,38100
,3,19547,38095
,3,19545,37160
,3,19529,142500
,4,1,38080
,4,2,38100
,3,19544,430
,3,19546,350
,3,19662,38090
,4,2,38120
,3,19547,38115
,3,19545,37160
,3,19529,142500
,4,3,16520
,4,5,27405
,4,6,35710
,4,8,27915
,4,9,36490
,4,11,27920
,4,12,38110
,4,14,27925
,4,15,29795
,4,17,27930
,4,1,38090
,4,2,38120
,3,19544,430
,3,19546,350
,3,19662,38100
,4,2,38130
,3,19547,38125
,3,19545,37160
,3,19529,142500
,4,1,38100
,4,2,38130
,3,19544,430
,3,19546,350
,3,19662,38120
,4,2,38185
,3,19547,38180
,3,19545,37160
,3,19529,142500
,4,2,38140
,3,19544,36800
,3,19546,350
,3,19662,38150
,4,2,38155
,3,19547,38145
,3,19545,38105
,3,19529,142500
,4,1,38150
,4,2,38155
,3,19544,36800
,3,19546,350
,4,2,38140
,3,19547,38135
,3,19545,38105
,3,19529,142500
,3,19544,36800
,3,19546,350
,3,19662,38140
,4,2,38165
,3,19547,38160
,3,19545,38105
,3,19529,142500
,4,1,38140
,4,2,38165
,3,19544,36800
,3,19546,350
,3,19662,38155
,4,2,38175
,3,19547,38170
,3,19545,38105
,3,19529,142500
,4,1,38155
,4,2,38175
,3,19544,36800
,3,19546,350
,3,19662,38165
,3,19545,38105
,3,19529,142500
,4,1,38120
,4,2,38185
,3,19544,430
,3,19546,350
,3,19662,38130
,4,2,38215
,3,19547,38210
,3,19545,37160
,3,19529,142500
,2,828,26715
,2,1812,26700
,2,1657,26795
,2,1829,26800
,2,1408,26805
,2,19076,36465
,3,19600,38195
,3,19529,36770
,4,3,16520
,4,5,27410
,4,6,35710
,4,8,27940
,4,9,36720
,4,11,27945
,4,12,38110
,4,14,27925
,4,15,29795
,4,17,27930
,4,18,38205
,4,20,26805
,4,1,38130
,4,2,38215
,3,19544,430
,3,19546,350
,3,19662,38185
,4,2,38225
,3,19547,38220
,3,19545,37160
,3,19529,142500
,4,1,38185
,4,2,38225
,3,19544,430
,3,19546,350
,3,19662,38215
,4,2,38295
,3,19547,38290
,3,19545,37160
,3,19529,142500
,4,2,38235
,3,19544,38190
,3,19546,350
,3,19662,38245
,4,2,38250
,3,19547,38240
,3,19545,38200
,3,19529,142500
,4,1,38245
,4,2,38250
,3,19544,38190
,3,19546,350
,4,2,38235
,3,19547,38230
,3,19545,38200
,3,19529,142500
,3,19544,38190
,3,19546,350
,3,19662,38235
,4,2,38260
,3,19547,38255
,3,19545,38200
,3,19529,142500
,4,1,38235
,4,2,38260
,3,19544,38190
,3,19546,350
,3,19662,38250
,4,2,38270
,3,19547,38265
,3,19545,38200
,3,19529,142500
,4,1,38250
,4,2,38270
,3,19544,38190
,3,19546,350
,3,19662,38260
,4,2,38280
,3,19547,38275
,3,19545,38200
,3,19529,142500
,4,1,38260
,4,2,38280
,3,19544,38190
,3,19546,350
,3,19662,38270
,3,19545,38200
,3,19529,142500
,4,3,16520
,4,5,37385
,4,6,33590
,4,8,27950
,4,9,28800
,4,11,27955
,4,12,38110
,4,14,27960
,4,15,38205
,4,17,27960
,4,1,38215
,4,2,38295
,3,19544,430
,3,19546,350
,3,19662,38225
,3,19545,37160
,3,19529,142500
,4,2,38305
,3,19544,36465
,3,19546,350
,3,19662,38315
,4,2,38320
,3,19547,38310
,3,19545,38285
,3,19529,142500
,4,1,38315
,4,2,38320
,3,19544,36465
,3,19546,350
,4,2,38305
,3,19547,38300
,3,19545,38285
,3,19529,142500
,3,19544,36465
,3,19546,350
,3,19662,38305
,4,2,38330
,3,19547,38325
,3,19545,38285
,3,19529,142500
,4,1,38305
,4,2,38330
,3,19544,36465
,3,19546,350
,3,19662,38320
,4,2,38340
,3,19547,38335
,3,19545,38285
,3,19529,142500
,4,1,38320
,4,2,38340
,3,19544,36465
,3,19546,350
,3,19662,38330
,3,19545,38285
,3,19529,142500
,4,3,38350
,4,6,28605
,4,9,38355
,4,12,38360
,4,15,38365
,4,18,38370
,4,21,38375
,4,24,38380
,4,27,28510
,4,30,38385
,4,33,38390
,4,36,38395
,4,39,38400
,4,2,38410
,3,19544,24770
,3,19546,24765
,3,19662,24775
,4,2,38420
,3,19547,38415
,3,19545,38345
,3,19529,142500
,4,1,24775
,4,2,38420
,3,19544,24770
,3,19546,24765
,3,19662,38410
,4,2,38430
,3,19547,38425
,3,19545,38345
,3,19529,142500
,4,1,38410
,4,2,38430
,3,19544,24770
,3,19546,24765
,3,19662,38420
,4,2,38440
,3,19547,38435
,3,19545,38345
,3,19529,142500
,4,1,38420
,4,2,38440
,3,19544,24770
,3,19546,24765
,3,19662,38430
,4,2,38450
,3,19547,38445
,3,19545,38345
,3,19529,142500
,4,1,38430
,4,2,38450
,3,19544,24770
,3,19546,24765
,3,19662,38440
,4,2,38460
,3,19547,38455
,3,19545,38345
,3,19529,142500
,4,1,38440
,4,2,38460
,3,19544,24770
,3,19546,24765
,3,19662,38450
,4,2,38470
,3,19547,38465
,3,19545,38345
,3,19529,142500
,4,1,38450
,4,2,38470
,3,19544,24770
,3,19546,24765
,3,19662,38460
,4,2,38480
,3,19547,38475
,3,19545,38345
,3,19529,142500
,4,1,38460
,4,2,38480
,3,19544,24770
,3,19546,24765
,3,19662,38470
,4,2,38490
,3,19547,38485
,3,19545,38345
,3,19529,142500
,4,1,38470
,4,2,38490
,3,19544,24770
,3,19546,24765
,3,19662,38480
,4,2,38500
,3,19547,38495
,3,19545,38345
,3,19529,142500
,4,1,38480
,4,2,38500
,3,19544,24770
,3,19546,24765
,3,19662,38490
,4,2,38510
,3,19547,38505
,3,19545,38345
,3,19529,142500
,4,1,38490
,4,2,38510
,3,19544,24770
,3,19546,24765
,3,19662,38500
,4,2,38520
,3,19547,38515
,3,19545,38345
,3,19529,142500
,4,1,38500
,4,2,38520
,3,19544,24770
,3,19546,24765
,3,19662,38510
,4,2,38530
,3,19547,38525
,3,19545,38345
,3,19529,142500
,4,1,38510
,4,2,38530
,3,19544,24770
,3,19546,24765
,3,19662,38520
,3,19545,38345
,3,19529,142500
,2,828,22675
,2,1739,22790
,2,856,22795
,2,1740,22800
,2,19076,430
,3,19600,38540
,3,19529,35245
,2,2165,42955
,2,1419,40165
,2,19076,430
,3,19600,42960
,3,19529,34465
,2,2206,28970
,2,2207,42965
,2,19076,430
,3,19600,42970
,3,19529,34465
,2,1741,22825
,2,1742,22830
,2,1743,13535
,2,19076,430
,3,19529,35295
,1,0,41275
,1,1,41280
,1,2,41285
,2,19076,1070
,3,19599,42975
,3,19529,34480
,2,2165,42965
,2,2166,42980
,2,2167,42985
,2,2168,42990
,2,2169,42995
,2,2170,43000
,2,2171,43005
,2,2172,43010
,2,2000,43015
,2,1419,28970
,2,2173,43020
,2,2174,43025
,2,2175,43030
,2,2176,43035
,2,19076,430
,3,19600,43040
,3,19529,34465
,4,1,560
,4,2,41460
,4,3,41465
,4,2,38545
,4,3,38550
,4,4,38555
,4,5,38560
,4,6,31425
,4,7,38565
,4,3,16640
,4,6,16845
,4,9,22935
,4,12,22945
,4,15,31450
,4,18,38585
,4,21,22880
,4,2,38595
,3,19544,38535
,3,19546,22675
,3,19662,22195
,4,2,38605
,3,19547,38600
,3,19545,38580
,3,19529,142500
,4,1,22195
,4,2,38605
,3,19544,38535
,3,19546,22675
,3,19662,38595
,4,2,38615
,3,19547,38610
,3,19545,38580
,3,19529,142500
,4,1,38595
,4,2,38615
,3,19544,38535
,3,19546,22675
,3,19662,38605
,4,2,38625
,3,19547,38620
,3,19545,38580
,3,19529,142500
,4,1,38605
,4,2,38625
,3,19544,38535
,3,19546,22675
,3,19662,38615
,4,2,38635
,3,19547,38630
,3,19545,38580
,3,19529,142500
,4,1,38615
,4,2,38635
,3,19544,38535
,3,19546,22675
,3,19662,38625
,4,2,38645
,3,19547,38640
,3,19545,38580
,3,19529,142500
,4,1,38625
,4,2,38645
,3,19544,38535
,3,19546,22675
,3,19662,38635
,4,2,38675
,3,19547,38670
,3,19545,38580
,3,19529,142500
,4,1,34645
,4,2,38655
,3,19544,32080
,3,19546,12640
,3,19662,34655
,3,19545,32095
,3,19529,142500
,4,2,38660
,4,4,40075
,4,1,38635
,4,2,38675
,3,19544,38535
,3,19546,22675
,3,19662,38645
,3,19545,38580
,3,19529,142500
,4,3,28445
,4,6,28450
,4,2,38690
,3,19544,430
,3,19546,350
,3,19662,38700
,4,2,38705
,3,19547,38695
,3,19545,38680
,3,19529,142500
,4,1,38700
,4,2,38705
,3,19544,430
,3,19546,350
,4,2,38690
,3,19547,38685
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,38690
,3,19545,38680
,3,19529,142500
,4,3,21345
,4,6,22935
,4,9,28700
,4,2,38720
,3,19544,32845
,3,19546,950
,3,19662,17395
,4,2,38740
,3,19547,38735
,3,19545,38710
,3,19529,142500
,4,1,33750
,4,2,38730
,3,19544,18480
,3,19546,18465
,3,19662,33770
,3,19545,33755
,3,19529,142500
,4,1,17395
,4,2,38740
,3,19544,32845
,3,19546,950
,3,19662,38720
,4,2,38750
,3,19547,38745
,3,19545,38710
,3,19529,142500
,4,1,38720
,4,2,38750
,3,19544,32845
,3,19546,950
,3,19662,38740
,4,2,38760
,3,19547,38755
,3,19545,38710
,3,19529,142500
,4,1,38740
,4,2,38760
,3,19544,32845
,3,19546,950
,3,19662,38750
,3,19545,38710
,3,19529,142500
,3,19657,320
,3,19658,41470
,3,19657,200
,3,19658,41475
,4,2,38785
,4,6,40045
,4,3,17595
,4,2,38805
,3,19544,430
,3,19546,350
,3,19662,39855
,3,19545,38795
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,38820
,3,19529,142500
,4,3,16520
,4,5,29225
,4,3,38830
,4,5,29225
,4,1,36865
,4,2,38840
,3,19544,430
,3,19546,350
,3,19662,36975
,4,2,39020
,3,19547,39015
,3,19545,31495
,3,19529,142500
,3,19657,200
,3,19658,39135
,3,19657,200
,3,19658,39145
,3,19657,200
,3,19658,39150
,3,19657,200
,3,19658,39155
,3,19657,200
,3,19658,39160
,4,2,29795
,4,3,29645
,4,5,29820
,4,6,29665
,4,8,29845
,4,9,29680
,4,11,23085
,4,12,29695
,4,14,25725
,4,15,29710
,4,17,29910
,4,18,29725
,4,20,29935
,4,21,29740
,4,23,29960
,4,24,29755
,3,19544,430
,3,19546,350
,3,19545,38915
,3,19529,142500
,4,3,16520
,4,5,29800
,3,19544,430
,3,19546,350
,3,19545,38925
,3,19529,142500
,4,3,16520
,4,5,29825
,3,19544,430
,3,19546,350
,3,19545,38935
,3,19529,142500
,4,3,16520
,4,5,29850
,3,19544,430
,3,19546,350
,3,19545,38945
,3,19529,142500
,4,3,16520
,4,5,29870
,3,19544,430
,3,19546,350
,3,19545,38955
,3,19529,142500
,4,3,16520
,4,5,29890
,3,19544,430
,3,19546,350
,3,19545,38965
,3,19529,142500
,4,3,16520
,4,5,29915
,3,19544,430
,3,19546,350
,3,19545,38975
,3,19529,142500
,4,3,16520
,4,5,29940
,3,19544,430
,3,19546,350
,3,19545,38985
,3,19529,142500
,4,3,16520
,4,5,29965
,3,19544,430
,3,19546,350
,3,19545,38995
,3,19529,142500
,4,3,29795
,4,5,29800
,4,6,29820
,4,8,29825
,4,9,29845
,4,11,29850
,4,12,23085
,4,14,29870
,4,15,25725
,4,17,29890
,4,18,29910
,4,20,29915
,4,21,29935
,4,23,29940
,4,24,29960
,4,26,29965
,4,27,16520
,4,29,29775
,4,3,29550
,4,5,29775
,4,1,36345
,4,2,39010
,3,19544,430
,3,19546,350
,3,19662,36355
,3,19545,31235
,3,19529,142500
,4,1,36975
,4,2,39020
,3,19544,430
,3,19546,350
,3,19662,38840
,3,19545,31495
,3,19529,142500
,4,3,30005
,4,5,39030
,4,6,30025
,4,8,39035
,4,9,7390
,4,11,39040
,4,12,30050
,4,14,30715
,4,15,30070
,4,17,39045
,4,18,30090
,4,20,39050
,0,1467,30715
,2,19076,425
,3,19539,30000
,3,19540,39485
,6,64,85
,3,19529,12650
,4,1,30010
,0,1467,30715
,2,19076,425
,3,19539,30020
,3,19540,39485
,6,64,85
,3,19529,12650
,4,1,39680
,0,1467,30715
,2,19076,425
,3,19539,30040
,3,19540,39485
,6,64,85
,3,19529,12650
,4,1,4220
,0,1467,30715
,2,19076,425
,3,19539,30065
,3,19540,39485
,6,64,30210
,3,19529,12650
,4,1,39670
,0,1467,30715
,2,19076,425
,3,19539,30085
,3,19540,39485
,6,64,30715
,3,19529,12650
,4,1,39675
,4,1,31135
,4,2,39060
,3,19544,430
,3,19546,350
,3,19662,39070
,4,2,39075
,3,19547,39065
,3,19545,39025
,3,19529,142500
,4,1,39070
,4,2,39075
,3,19544,430
,3,19546,350
,3,19662,31135
,4,2,39060
,3,19547,39055
,3,19545,39025
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,39060
,4,2,39085
,3,19547,39080
,3,19545,39025
,3,19529,142500
,4,1,39060
,4,2,39085
,3,19544,430
,3,19546,350
,3,19662,39075
,4,2,39095
,3,19547,39090
,3,19545,39025
,3,19529,142500
,4,1,39075
,4,2,39095
,3,19544,430
,3,19546,350
,3,19662,39085
,4,2,39105
,3,19547,39100
,3,19545,39025
,3,19529,142500
,4,1,39085
,4,2,39105
,3,19544,430
,3,19546,350
,3,19662,39095
,3,19545,39025
,3,19529,142500
,2,19076,425
,3,19538,41495
,3,19539,29590
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,29595
,4,3,29570
,4,5,30145
,4,6,39120
,4,8,30205
,4,9,39125
,4,11,30210
,4,12,39130
,4,14,30220
,4,15,39135
,4,17,30225
,4,18,39140
,4,20,30230
,4,21,39145
,4,23,30235
,4,24,39150
,4,26,30265
,4,27,39155
,4,29,30275
,4,30,39160
,4,32,30280
,4,1,31135
,4,2,39170
,3,19544,430
,3,19546,350
,3,19662,39180
,4,2,39185
,3,19547,39175
,3,19545,39115
,3,19529,142500
,4,1,39180
,4,2,39185
,3,19544,430
,3,19546,350
,3,19662,31135
,4,2,39170
,3,19547,39165
,3,19545,39115
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,39170
,4,2,39195
,3,19547,39190
,3,19545,39115
,3,19529,142500
,4,1,39170
,4,2,39195
,3,19544,430
,3,19546,350
,3,19662,39185
,4,2,39205
,3,19547,39200
,3,19545,39115
,3,19529,142500
,4,1,39185
,4,2,39205
,3,19544,430
,3,19546,350
,3,19662,39195
,4,2,39215
,3,19547,39210
,3,19545,39115
,3,19529,142500
,4,1,39195
,4,2,39215
,3,19544,430
,3,19546,350
,3,19662,39205
,4,2,39225
,3,19547,39220
,3,19545,39115
,3,19529,142500
,4,1,39205
,4,2,39225
,3,19544,430
,3,19546,350
,3,19662,39215
,4,2,39300
,3,19547,39295
,3,19545,39115
,3,19529,142500
,4,3,16520
,4,5,30180
,4,6,29845
,4,8,30240
,4,9,29820
,4,11,30245
,4,12,29795
,4,14,30250
,4,2,39240
,3,19544,430
,3,19546,350
,3,19662,39250
,4,2,39255
,3,19547,39245
,3,19545,39230
,3,19529,142500
,4,1,39250
,4,2,39255
,3,19544,430
,3,19546,350
,4,2,39240
,3,19547,39235
,3,19545,39230
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,39240
,4,2,39265
,3,19547,39260
,3,19545,39230
,3,19529,142500
,4,1,39240
,4,2,39265
,3,19544,430
,3,19546,350
,3,19662,39255
,3,19545,39230
,3,19529,142500
,4,3,39275
,4,6,39280
,4,1,31135
,4,2,39290
,3,19544,430
,3,19546,350
,3,19662,133355
,3,19545,39270
,3,19529,142500
,4,1,39215
,4,2,39300
,3,19544,430
,3,19546,350
,3,19662,39225
,4,2,39310
,3,19547,39305
,3,19545,39115
,3,19529,142500
,4,1,39225
,4,2,39310
,3,19544,430
,3,19546,350
,3,19662,39300
,4,2,39320
,3,19547,39315
,3,19545,39115
,3,19529,142500
,4,1,39300
,4,2,39320
,3,19544,430
,3,19546,350
,3,19662,39310
,3,19545,39115
,3,19529,142500
,2,828,30180
,2,1460,30240
,2,1459,30245
,2,1458,30250
,2,19076,430
,3,19600,39330
,3,19529,39265
,4,3,39340
,4,6,39280
,4,9,39275
,4,12,39345
,4,15,39350
,4,18,39355
,4,2,39365
,3,19544,39325
,3,19546,30180
,3,19662,29460
,4,2,39375
,3,19547,39370
,3,19545,39335
,3,19529,142500
,4,1,29460
,4,2,39375
,3,19544,39325
,3,19546,30180
,3,19662,39365
,4,2,39385
,3,19547,39380
,3,19545,39335
,3,19529,142500
,4,1,39365
,4,2,39385
,3,19544,39325
,3,19546,30180
,3,19662,39375
,4,2,39395
,3,19547,39390
,3,19545,39335
,3,19529,142500
,4,1,39375
,4,2,39395
,3,19544,39325
,3,19546,30180
,3,19662,39385
,4,2,39405
,3,19547,39400
,3,19545,39335
,3,19529,142500
,4,1,39385
,4,2,39405
,3,19544,39325
,3,19546,30180
,3,19662,39395
,4,2,39415
,3,19547,39410
,3,19545,39335
,3,19529,142500
,4,1,39395
,4,2,39415
,3,19544,39325
,3,19546,30180
,3,19662,39405
,3,19545,39335
,3,19529,142500
,4,3,39275
,4,6,39280
,4,9,30390
,4,12,39425
,4,14,30175
,4,2,39435
,3,19544,29780
,3,19546,29775
,3,19662,29785
,4,2,39445
,3,19547,39440
,3,19545,39420
,3,19529,142500
,4,1,29785
,4,2,39445
,3,19544,29780
,3,19546,29775
,3,19662,39435
,4,2,39455
,3,19547,39450
,3,19545,39420
,3,19529,142500
,4,1,39435
,4,2,39455
,3,19544,29780
,3,19546,29775
,3,19662,39445
,4,2,39465
,3,19547,39460
,3,19545,39420
,3,19529,142500
,4,1,39445
,4,2,39465
,3,19544,29780
,3,19546,29775
,3,19662,39455
,3,19545,39420
,3,19529,142500
,3,19536,139055
,3,19656,30595
,3,19529,139175
,4,1,44060
,4,3,130055
,4,4,19200
,4,5,139275
,4,6,43720
,3,19536,134715
,3,19529,139175
,4,1,39475
,4,2,44020
,3,19536,139075
,3,19656,30655
,3,19529,139175
,4,1,44060
,3,19541,41520
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,30715
,3,19536,139065
,3,19656,30625
,3,19529,139175
,4,1,44060
,4,2,39415
,4,3,39280
,4,4,142275
,4,5,39415
,4,6,39275
,4,7,142285
,4,8,39415
,3,19529,134475
,3,19529,134475
,3,19529,134475
,3,19529,134475
,3,19529,134475
,3,19529,134475
,3,19529,134475
,3,19529,134475
,3,19544,430
,3,19546,2565
,3,19545,133480
,3,19529,142500
,3,19529,142500
,2,19076,1070
,3,19529,34480
,2,19202,85
,2,491,85
,2,1404,85
,2,828,730
,2,1482,10030
,2,19076,33445
,3,19529,133565
,3,19544,39575
,3,19546,730
,3,19662,133675
,3,19545,133680
,3,19529,142500
,2,19076,425
,3,19539,9975
,3,19540,440
,6,64,85
,3,19529,675
,4,1,9980
,2,19202,85
,2,491,85
,2,1404,85
,2,828,885
,2,1482,10020
,2,19076,33445
,3,19529,41525
,3,19541,39585
,3,19542,440
,3,19543,970
,3,19529,30810
,4,2,885
,2,19202,85
,2,491,85
,2,1404,85
,2,828,800
,2,1482,10045
,2,19076,33445
,3,19529,41530
,3,19541,39585
,3,19542,440
,3,19543,970
,3,19529,30810
,4,2,800
,2,19202,85
,2,491,85
,2,1404,85
,2,828,890
,2,1482,10055
,2,19076,33445
,3,19529,41535
,3,19541,39585
,3,19542,440
,3,19543,970
,3,19529,30810
,4,2,890
,2,19202,85
,2,491,85
,2,1404,85
,2,828,815
,2,1482,10065
,2,19076,33445
,3,19529,41540
,3,19541,39585
,3,19542,440
,3,19543,970
,3,19529,30810
,4,2,815
,2,19202,85
,2,491,85
,2,1404,85
,2,828,910
,2,1482,10075
,2,19076,33445
,3,19529,41545
,3,19541,39585
,3,19542,440
,3,19543,970
,3,19529,30810
,4,2,910
,4,1,12640
,4,2,12755
,4,3,12835
,4,4,12870
,4,5,12905
,4,6,12940
,4,7,12975
,4,8,13010
,4,9,13045
,4,10,13080
,4,11,13115
,4,12,13150
,4,13,13185
,4,14,13220
,4,15,13255
,4,16,13290
,4,17,13325
,4,18,13360
,4,19,13395
,4,20,13430
,4,21,13465
,4,22,13500
,4,23,13535
,4,24,13570
,4,25,13605
,4,26,13640
,4,27,13675
,4,28,695
,4,30,775
,4,35,790
,4,40,705
,4,45,830
,4,50,925
,4,55,835
,4,60,920
,4,65,710
,4,70,700
,4,75,765
,4,92,780
,4,93,690
,4,94,955
,4,95,740
,4,96,810
,4,97,785
,4,98,905
,4,99,760
,4,100,16100
,4,101,16355
,4,102,16385
,4,103,16410
,4,104,16430
,4,105,16455
,4,106,16235
,4,107,16270
,4,108,15965
,4,109,16335
,4,110,18465
,4,111,18505
,4,112,18530
,4,113,18555
,4,114,18580
,4,115,18605
,4,116,18630
,4,117,18655
,4,118,18680
,4,119,18705
,4,120,18730
,4,121,18755
,4,122,18780
,4,123,18805
,4,124,18830
,4,125,18855
,4,126,18880
,4,127,18905
,4,128,18930
,4,129,18955
,4,130,18980
,4,131,19000
,4,132,19025
,4,133,18470
,4,134,18475
,4,135,19120
,4,136,24765
,4,137,24800
,4,138,24835
,4,139,24870
,4,140,24905
,4,141,24940
,4,142,24975
,4,143,25010
,4,144,25045
,4,145,25080
,4,146,25115
,4,147,25150
,4,148,25185
,4,149,25220
,4,150,25255
,4,151,25290
,4,152,25325
,4,153,25360
,4,154,25395
,4,155,25430
,4,156,25465
,4,157,25500
,4,158,25535
,4,159,25570
,4,160,25605
,4,161,25685
,4,162,25705
,4,163,25730
,4,164,29225
,4,165,29775
,4,166,29800
,4,167,29825
,4,168,29850
,4,169,29870
,4,170,29890
,4,171,29915
,4,172,29940
,4,173,29965
,3,19544,430
,3,19546,350
,3,19662,133700
,3,19545,133690
,3,19529,142500
,3,19544,1070
,3,19546,895
,3,19662,1080
,4,2,39770
,3,19547,133260
,3,19545,133240
,3,19529,142500
,4,1,560
,4,2,41550
,4,3,41555
,3,19536,139120
,3,19656,30700
,3,19529,139175
,4,1,44060
,4,2,142480
,4,3,39415
,4,4,39280
,4,5,139350
,4,6,39415
,4,7,39275
,4,8,139350
,4,9,39415
,4,12,39465
,4,13,43715
,4,14,39465
,4,15,44120
,4,16,44325
,4,17,44300
,3,19536,139070
,3,19656,30640
,3,19529,139175
,4,1,44060
,4,2,39465
,3,19536,139045
,3,19656,30580
,3,19529,139175
,4,1,44060
,4,2,39465
,4,1,560
,4,2,39690
,2,842,215
,2,132,100
,2,19148,110
,2,19299,110
,2,19076,1390
,3,19529,1400
,4,1,39700
,4,2,215
,4,4,215
,2,19076,425
,3,19538,39710
,3,19539,29050
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,29055
,4,1,560
,4,2,41560
,2,1892,29225
,2,19076,430
,3,19529,39720
,3,19544,430
,3,19546,350
,3,19662,31135
,3,19545,38825
,3,19529,142500
,2,1054,85
,2,19261,85
,2,19076,430
,3,19529,39730
,3,19544,430
,3,19546,1460
,3,19662,130875
,3,19545,130865
,3,19529,142500
,2,1054,85
,2,19261,85
,2,19076,430
,3,19599,39740
,3,19529,39745
,3,19529,41565
,3,19544,430
,3,19546,1460
,3,19545,130885
,3,19529,142500
,2,1054,85
,2,19664,595
,2,19665,595
,2,19666,595
,2,19667,595
,2,19076,430
,3,19529,39755
,3,19544,430
,3,19546,1460
,3,19545,130890
,3,19529,142500
,4,1,1080
,4,2,39655
,4,3,34480
,4,4,39765
,4,5,39770
,4,6,39775
,3,19544,1070
,3,19546,895
,3,19662,34480
,3,19545,133240
,3,19529,142500
,3,19544,1070
,3,19546,895
,3,19662,39655
,4,2,39775
,3,19547,133265
,3,19545,133240
,3,19529,142500
,3,19544,1070
,3,19546,895
,3,19662,39770
,4,2,34480
,3,19547,133270
,3,19545,133240
,3,19529,142500
,1,1,85
,2,19076,70
,3,19599,39785
,3,19529,31085
,3,19529,39795
,4,5,31135
,4,26,39800
,4,27,39805
,4,62,39810
,4,63,39815
,4,84,39820
,4,85,33175
,4,100,39825
,4,101,35375
,4,104,39830
,4,105,39835
,4,110,39840
,4,111,37150
,4,112,39845
,4,113,33410
,4,122,39850
,4,123,39855
,4,128,39860
,4,129,38700
,3,19529,142500
,4,1,10470
,4,2,10475
,3,19544,430
,3,19546,350
,4,2,133700
,3,19547,133695
,3,19529,142500
,4,1,16520
,3,19544,430
,3,19546,350
,4,2,31755
,3,19547,31750
,3,19529,142500
,4,1,19720
,4,2,19725
,4,3,19730
,4,4,90
,4,5,80
,4,6,10475
,4,7,19735
,4,8,19740
,4,1,22930
,4,2,22880
,4,1,16510
,3,19544,430
,3,19546,350
,4,2,31770
,3,19547,31765
,3,19529,142500
,4,1,20450
,4,2,16510
,4,1,16510
,4,2,20450
,4,3,20455
,4,4,20460
,4,1,17595
,3,19544,430
,3,19546,350
,4,2,38805
,3,19547,38800
,3,19529,142500
,4,1,28445
,4,2,28450
,4,1,39870
,4,2,39870
,2,1908,41500
,2,1907,41500
,2,1910,128620
,2,1911,128610
,2,1912,100
,2,19076,39325
,3,19529,39415
,4,1,515
,4,2,16725
,4,1,515
,4,2,12020
,4,1,515
,4,2,22140
,4,1,515
,4,2,25870
,4,1,515
,4,2,29985
,4,1,515
,4,2,19140
,4,1,515
,4,2,26975
,4,1,515
,4,2,15140
,4,1,515
,4,2,3670
,4,1,515
,4,2,23325
,4,1,515
,4,2,9195
,4,1,515
,4,2,8780
,4,1,515
,4,2,26815
,4,1,515
,4,2,25750
,4,1,515
,4,2,6530
,4,1,515
,4,2,28965
,4,1,515
,4,2,26415
,4,1,515
,4,2,19440
,4,1,515
,4,2,4760
,4,1,515
,4,2,11775
,4,1,515
,4,2,10450
,4,1,515
,4,2,29255
,4,1,515
,4,2,8480
,4,1,515
,4,2,27180
,4,1,515
,4,2,17340
,4,1,515
,4,2,21630
,4,1,515
,4,2,7500
,4,1,515
,4,2,10285
,4,2,40020
,4,7,40025
,3,19536,137885
,3,19529,139175
,4,1,40025
,4,2,40025
,4,3,40025
,4,4,40025
,4,2,40035
,4,7,40040
,3,19536,137720
,3,19529,139175
,4,1,40040
,4,2,40040
,4,3,40040
,4,4,40040
,3,19536,138125
,3,19529,139175
,4,1,40045
,4,2,40045
,4,3,40045
,4,4,40045
,4,2,40055
,4,2,40065
,4,7,40070
,3,19536,137770
,3,19529,139175
,4,1,40070
,4,2,40070
,4,3,40070
,4,4,40070
,4,1,560
,4,2,40085
,4,3,40090
,2,19076,430
,3,19529,31135
,1,0,15160
,1,1,15165
,2,19076,1070
,3,19599,15155
,3,19529,34480
,4,1,40100
,4,2,40105
,4,3,40110
,4,4,40115
,4,5,40120
,4,6,40125
,4,7,40130
,4,9,40135
,4,10,40140
,4,11,40145
,4,12,40150
,4,13,40155
,4,17,40160
,4,19,40165
,2,1120,110
,2,19270,100
,2,19187,100
,2,19123,100
,2,19009,100
,2,2190,100
,2,19076,430
,3,19600,41570
,3,19529,41575
,2,19076,1070
,3,19529,39765
,2,19076,12760
,3,19529,12765
,1,0,40175
,1,1,40180
,1,2,40185
,1,3,40190
,1,4,40195
,1,5,40200
,1,6,40205
,1,7,40210
,1,8,40215
,1,9,40220
,1,10,40225
,1,11,40230
,1,12,40235
,1,13,40240
,1,14,40245
,1,15,40250
,1,16,40255
,1,17,40260
,1,18,40265
,1,19,40270
,1,20,40275
,2,19076,1070
,3,19599,40170
,3,19529,39765
,1,0,41580
,1,1,41585
,2,19076,1070
,3,19599,41590
,3,19529,39765
,2,19307,41595
,2,1987,41600
,2,19045,41605
,2,19310,41610
,2,19270,41615
,2,2197,41620
,2,19251,41625
,2,19021,41630
,2,19076,430
,3,19600,41635
,3,19529,41640
,2,19076,430
,3,19600,41645
,3,19599,41650
,3,19529,41655
,2,19076,430
,3,19600,41660
,3,19529,455
,2,1693,41665
,2,1694,41670
,2,19076,430
,3,19600,41675
,3,19529,34455
,2,839,200
,2,855,41480
,2,1129,70
,2,1131,28970
,2,1509,100
,2,1889,41485
,2,1126,41490
,2,19076,38535
,3,19529,38675
,4,1,40175
,4,2,40180
,4,3,40185
,4,4,40190
,4,5,40195
,4,6,40200
,4,7,40205
,4,8,40210
,4,9,40215
,4,10,40220
,4,11,40225
,4,12,40230
,4,13,40235
,4,14,40240
,4,15,40245
,4,16,40250
,4,17,40255
,4,18,40260
,4,19,40265
,4,20,40270
,4,21,40275
,3,19657,41680
,3,19658,31500
,3,19657,41680
,3,19658,28520
,3,19657,41680
,3,19658,15655
,3,19657,41680
,3,19658,19395
,3,19657,41680
,3,19658,16585
,3,19657,41680
,3,19658,16855
,3,19657,41680
,3,19658,23310
,3,19657,41680
,3,19658,31505
,3,19657,41680
,3,19658,31510
,3,19657,41680
,3,19658,31515
,3,19657,41680
,3,19658,31520
,3,19657,41680
,3,19658,31525
,3,19657,41680
,3,19658,31530
,3,19657,41680
,3,19658,31535
,3,19657,41680
,3,19658,31540
,4,1,40285
,4,2,31415
,4,3,40290
,4,4,27300
,4,5,27305
,4,6,40295
,2,822,16100
,2,823,16355
,2,19076,430
,3,19600,41685
,3,19529,31230
,2,926,18465
,2,1633,19120
,2,19076,430
,3,19600,41900
,3,19529,32920
,2,1450,29775
,2,19076,430
,3,19600,41905
,3,19529,41910
,4,1,40310
,4,2,40310
,2,1907,40310
,2,1908,40310
,2,1913,30175
,2,19076,29780
,3,19600,40305
,3,19529,39465
,3,19541,16020
,3,19542,15975
,3,19543,685
,3,19529,30810
,4,2,12905
,4,3,40320
,4,6,40150
,4,10,40325
,4,11,40330
,2,19076,1070
,3,19529,34480
,0,1049,12905
,0,1050,40320
,0,1051,100
,0,1052,110
,0,1053,40150
,0,1042,40325
,0,1043,40330
,2,19076,425
,3,19538,41930
,3,19539,21235
,3,19540,40315
,6,64,85
,3,19529,12650
,4,1,4220
,0,1049,12905
,0,1050,40320
,0,1051,100
,0,1052,110
,0,1053,40150
,0,1042,40325
,0,1043,40330
,2,19076,425
,3,19539,21245
,3,19540,40315
,6,64,85
,3,19529,12650
,4,1,4220
,4,1,350
,4,2,340
,3,19657,200
,3,19658,31925
,4,2,40360
,4,3,40365
,4,5,40370
,2,19076,425
,3,19539,8275
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8280
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,2,19076,425
,3,19539,8285
,3,19540,440
,6,64,85
,3,19529,675
,4,1,4220
,3,19541,39585
,3,19542,440
,3,19543,970
,3,19529,30810
,4,2,795
,3,19541,39585
,3,19542,440
,3,19543,970
,3,19529,30810
,4,2,730
,3,19541,2920
,3,19542,440
,3,19543,970
,3,19529,30810
,4,2,1835
,4,4,40420
,0,486,730
,2,19076,425
,3,19539,10175
,3,19540,40410
,6,64,85
,3,19529,675
,4,1,4220
,3,19541,1810
,3,19542,440
,3,19543,970
,3,19529,30810
,3,19541,2085
,3,19542,440
,3,19543,970
,3,19529,30810
,3,19541,2085
,3,19542,440
,3,19543,970
,3,19529,30810
,3,19541,2085
,3,19542,440
,3,19543,970
,3,19529,30810
,3,19541,2085
,3,19542,440
,3,19543,970
,3,19529,30810
,3,19541,2085
,3,19542,440
,3,19543,970
,3,19529,30810
,3,19541,2085
,3,19542,440
,3,19543,970
,3,19529,30810
,3,19541,2085
,3,19542,440
,3,19543,970
,3,19529,30810
,3,19541,2085
,3,19542,440
,3,19543,970
,3,19529,30810
,3,19541,2085
,3,19542,440
,3,19543,970
,3,19529,30810
,4,2,40490
,4,3,13730
,4,2,40500
,4,2,40510
,4,5,40515
,4,6,13800
,4,8,40520
,4,9,13815
,4,11,40525
,4,12,13830
,4,14,40530
,4,15,13845
,4,2,40540
,4,2,40550
,4,5,40555
,4,6,13925
,4,8,40560
,4,9,13940
,4,11,40565
,4,12,13955
,4,14,40570
,4,15,13970
,4,2,40580
,4,2,40590
,4,5,40595
,4,6,14045
,4,8,40600
,4,9,14060
,4,11,40605
,4,12,14075
,4,14,40610
,4,15,14090
,4,2,40620
,4,2,40630
,4,5,40635
,4,6,14165
,4,8,40640
,4,9,14180
,4,11,40645
,4,12,14195
,4,14,40650
,4,15,14210
,4,2,40660
,4,2,40670
,4,5,40675
,4,6,14285
,4,8,40680
,4,9,14300
,4,11,40685
,4,12,14315
,4,14,40690
,4,15,14330
,4,2,40700
,4,2,40710
,4,5,40715
,4,6,14405
,4,8,40720
,4,9,14420
,4,11,40725
,4,12,14435
,4,14,40730
,4,15,14450
,4,2,40740
,4,2,40750
,4,5,40755
,4,6,14525
,4,8,40760
,4,9,14540
,4,11,40765
,4,12,14555
,4,14,40770
,4,15,14570
,4,2,40780
,4,2,40790
,4,5,40795
,4,6,14645
,4,8,40800
,4,9,14660
,4,11,40805
,4,12,14675
,4,14,40810
,4,15,14690
,4,2,40820
,4,2,40830
,4,5,40835
,4,6,14765
,4,8,40840
,4,9,14780
,4,11,40845
,4,12,14795
,4,14,40850
,4,15,14810
,4,2,40860
,4,3,14880
,4,5,40865
,4,6,14895
,4,8,40870
,4,9,14910
,4,11,40875
,4,12,14925
,4,14,40880
,4,15,14940
,4,17,40885
,4,18,14955
,4,20,40890
,4,21,14970
,4,23,40895
,4,24,14985
,4,26,40900
,4,27,15000
,4,29,40905
,4,30,15015
,4,32,40910
,4,33,15030
,4,35,40915
,4,36,15045
,4,38,40920
,4,39,15060
,4,41,40925
,4,42,15075
,4,44,40930
,4,45,15090
,4,47,40935
,4,48,15105
,3,19657,200
,3,19658,30860
,3,19657,200
,3,19658,30865
,3,19657,200
,3,19658,30870
,3,19657,200
,3,19658,30880
,3,19657,200
,3,19658,30885
,3,19657,200
,3,19658,30890
,3,19657,200
,3,19658,30895
,3,19657,200
,3,19658,30900
,3,19657,200
,3,19658,30905
,3,19657,200
,3,19658,30910
,3,19657,200
,3,19658,30915
,3,19657,200
,3,19658,30920
,3,19657,200
,3,19658,30925
,4,1,560
,2,19076,430
,3,19529,31135
,4,1,560
,3,19544,425
,3,19662,12650
,3,19545,31730
,3,19529,142500
,4,1,16520
,4,1,560
,4,1,560
,4,1,560
,4,2,42015
,4,16,42020
,4,17,42025
,4,18,42030
,2,229,43305
,2,975,43310
,2,976,43315
,2,977,43320
,2,978,43325
,2,979,43330
,2,980,43335
,2,981,43340
,2,982,43345
,2,983,43350
,2,984,43355
,2,985,43360
,2,986,43365
,2,19076,430
,3,19529,43300
,2,987,19665
,2,988,19705
,2,989,19705
,2,18,19635
,2,17,7975
,2,660,19675
,2,990,19685
,2,991,19695
,2,19076,430
,3,19529,33240
,4,1,560
,4,1,41055
,4,2,41060
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,20000
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,20300
,3,19542,20295
,3,19543,685
,3,19529,30810
,4,2,41105
,4,3,41110
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,20015
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,20300
,3,19542,20295
,3,19543,685
,3,19529,30810
,4,2,41120
,4,3,41125
,0,856,16470
,0,855,20180
,0,1017,20185
,0,1018,20190
,0,882,20195
,0,992,20200
,0,993,20205
,0,994,20210
,0,995,20215
,0,996,20220
,0,997,20225
,0,998,20230
,0,999,20235
,0,1000,20240
,0,133,20245
,0,1001,20250
,0,1002,20255
,0,1003,20260
,0,1004,20265
,0,1005,20270
,0,1019,20275
,0,1006,20280
,0,74,20285
,2,19076,425
,3,19539,19915
,3,19540,20295
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,20300
,3,19542,20295
,3,19543,685
,3,19529,30810
,4,2,41135
,4,3,41140
,4,1,560
,4,1,560
,3,19529,139135
,3,19529,139135
,4,1,34360
,4,2,34365
,4,3,34370
,4,4,34375
,4,5,34380
,4,1,34440
,4,2,34445
,4,1,560
,4,4,42035
,4,1,205
,4,2,41220
,0,856,16470
,0,855,21950
,0,1076,21955
,0,1087,85
,0,1088,85
,0,1077,21960
,0,1078,85
,0,1089,21965
,2,19076,425
,3,19539,21840
,3,19540,21970
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,20300
,3,19542,20295
,3,19543,685
,3,19529,30810
,4,2,41230
,4,3,41235
,0,856,16470
,0,855,21950
,0,1076,21955
,0,1087,85
,0,1088,85
,0,1077,21960
,0,1078,85
,0,1089,21965
,2,19076,425
,3,19539,21845
,3,19540,21970
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,20300
,3,19542,20295
,3,19543,685
,3,19529,30810
,4,2,41245
,4,3,41250
,4,1,560
,4,2,42040
,4,3,42045
,4,4,42050
,4,5,42055
,4,6,42060
,4,8,42065
,4,9,42070
,4,1,41275
,4,2,41280
,4,3,41285
,3,19529,39795
,4,66,42075
,4,67,41295
,4,1,35260
,4,2,35265
,4,3,35270
,4,1,22930
,4,2,22880
,0,1269,26260
,0,1270,26715
,0,1341,27130
,0,1342,41320
,2,19076,425
,3,19539,26840
,3,19540,41325
,6,64,85
,3,19529,12650
,4,1,4220
,3,19541,42080
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,26260
,4,3,26715
,4,4,27130
,4,5,41320
,4,1,26260
,4,1,27130
,2,828,27275
,2,1831,27270
,2,19076,36985
,3,19600,42085
,3,19529,37010
,4,1,27145
,4,1,26245
,4,1,560
,4,1,560
,4,1,36380
,4,2,33590
,4,3,36720
,4,4,28800
,4,1,560
,4,3,42090
,4,4,42095
,4,6,42100
,4,8,42105
,3,19529,134475
,3,19529,134475
,3,19529,39795
,4,9,42110
,4,12,42115
,4,15,24675
,4,18,42120
,4,21,42125
,4,27,42130
,4,28,41380
,4,39,42135
,4,45,42140
,4,81,42145
,4,84,42150
,4,87,42155
,4,90,42160
,4,93,42165
,4,96,42170
,4,99,42175
,4,102,42180
,4,108,42185
,4,117,24700
,4,120,42190
,4,132,42195
,4,180,42200
,4,183,42205
,4,186,42210
,4,198,42215
,4,210,42220
,4,228,42225
,4,237,42230
,4,240,42235
,4,243,42240
,4,246,42245
,4,255,42250
,4,258,42255
,4,276,42260
,4,312,42265
,4,321,42270
,4,384,42275
,4,387,42280
,4,396,42285
,4,399,42290
,4,405,42295
,4,408,42300
,4,414,42305
,4,423,42310
,4,426,42315
,4,435,42320
,4,441,42325
,4,453,42330
,4,456,42335
,4,483,42340
,4,492,42345
,4,507,42350
,4,510,42355
,4,513,42360
,4,516,42365
,4,522,42370
,4,528,42375
,4,531,42380
,4,534,42385
,4,537,42390
,4,540,42395
,4,546,42400
,4,552,42405
,4,555,42410
,4,558,42415
,4,561,42420
,4,564,42425
,4,567,42430
,4,570,42435
,4,573,42440
,4,576,42445
,4,579,42450
,4,582,42455
,4,585,42460
,4,588,42465
,4,597,42470
,4,600,42475
,4,603,42480
,4,618,42485
,4,621,42490
,4,630,42495
,4,660,42500
,4,666,42505
,4,669,42510
,4,672,42515
,4,696,24685
,4,699,24670
,4,705,42520
,4,720,24665
,4,753,42525
,4,754,41385
,4,765,42530
,4,768,42535
,4,777,42540
,4,786,42545
,4,789,42550
,4,816,42555
,4,819,42560
,4,828,42565
,4,843,42570
,4,846,42575
,4,849,42580
,4,855,42585
,4,867,24695
,4,870,42590
,4,894,42595
,4,897,42600
,4,906,42605
,4,909,42610
,4,912,42615
,4,918,42620
,4,930,42625
,4,945,42630
,4,951,42635
,4,954,42640
,4,957,42645
,4,960,42650
,4,963,42655
,4,972,42660
,4,975,42665
,4,978,42670
,4,993,42675
,4,1002,42680
,4,1014,42685
,4,1017,42690
,4,1035,42695
,4,1038,42700
,4,1041,42705
,4,1044,24690
,4,1047,42710
,4,1053,42715
,4,1071,42720
,4,1074,42725
,4,1083,42730
,4,1104,42735
,4,1107,42740
,4,1122,42745
,4,1128,24615
,4,1131,42750
,4,1134,42755
,4,1155,42760
,4,1158,42765
,4,1161,42770
,4,1164,42775
,4,1176,42780
,4,1179,42785
,4,1185,42790
,4,1194,42795
,4,1200,42800
,4,1206,24620
,4,1221,42805
,4,1230,42810
,4,1233,42815
,4,1236,42820
,4,1257,42825
,4,1281,42830
,4,1287,42835
,4,1290,42840
,4,1293,42845
,4,1296,42850
,4,1314,42855
,4,1323,42860
,4,1338,42865
,4,1341,42870
,4,1353,24680
,4,1380,24605
,4,1383,42875
,4,1446,42880
,4,1449,42885
,4,1464,42890
,4,1467,42895
,4,1470,42900
,4,1482,42905
,4,1491,24610
,4,1503,42910
,4,1506,42915
,4,1524,42920
,4,1536,42925
,4,1,560
,2,828,27370
,2,1137,27835
,2,1458,27840
,2,19076,31775
,3,19600,42930
,3,19529,38010
,4,1,26245
,2,828,27375
,2,1137,27855
,2,1284,27860
,2,19076,31775
,3,19600,42935
,3,19529,38050
,4,1,26245
,2,828,27405
,2,1792,27915
,2,1824,27920
,2,1876,27925
,2,1458,27930
,2,19076,36800
,3,19600,42940
,3,19529,38175
,4,1,560
,4,1,26260
,2,828,27410
,2,1792,27940
,2,1829,27945
,2,1876,27925
,2,1458,27930
,2,1877,26805
,2,19076,38190
,3,19600,42945
,3,19529,38280
,4,1,560
,4,1,26715
,2,828,37385
,2,1657,27950
,2,1408,27955
,2,1876,27960
,2,1877,27960
,2,19076,36465
,3,19600,42950
,3,19529,38340
,4,1,26250
,2,19076,430
,3,19529,31135
,2,19076,1070
,3,19529,34480
,3,19657,200
,3,19658,5380
,2,19076,430
,3,19529,31135
,1,0,42955
,2,19076,1070
,3,19599,43045
,3,19529,34480
,1,0,43050
,1,1,43055
,1,2,43060
,1,3,43065
,1,4,43070
,1,5,43075
,1,6,43080
,1,7,43085
,1,8,43090
,2,19076,1070
,3,19599,43095
,3,19529,34480
,4,1,560
,4,3,43100
,4,4,43105
,2,1907,39870
,2,1908,39870
,2,1913,30175
,2,19076,29780
,3,19600,39865
,3,19529,39465
,3,19529,39795
,4,13,41500
,4,19,40310
,3,19544,430
,3,19546,350
,3,19662,31135
,3,19529,142500
,4,1,30185
,4,2,30185
,2,19076,425
,3,19539,30115
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,30120
,3,19544,33445
,3,19546,795
,3,19662,142740
,3,19545,133545
,3,19529,142500
,3,19544,33445
,3,19546,795
,3,19662,142750
,3,19545,133570
,3,19529,142500
,3,19544,33445
,3,19546,795
,3,19662,142755
,3,19545,133580
,3,19529,142500
,3,19544,33445
,3,19546,795
,3,19662,142760
,3,19545,133590
,3,19529,142500
,3,19544,33445
,3,19546,795
,3,19662,142765
,3,19545,133600
,3,19529,142500
,2,827,85
,2,19076,430
,3,19529,31770
,2,828,85
,2,19076,430
,3,19529,31755
,2,19076,1070
,3,19529,34480
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,133960
,3,19545,133920
,3,19529,142500
,4,1,41580
,4,2,41585
,4,1,41595
,4,2,41600
,4,3,41605
,4,4,41610
,4,5,41615
,4,6,41620
,4,7,41625
,4,8,41630
,3,19544,430
,3,19546,350
,3,19662,133900
,3,19545,133810
,3,19529,142500
,3,19529,139140
,3,19544,430
,3,19546,350
,3,19662,455
,3,19529,142500
,2,1688,43390
,2,1689,43395
,2,1690,43400
,2,1691,43405
,2,1692,43410
,2,19076,430
,3,19600,43415
,3,19529,34425
,2,2210,110
,2,2211,110
,2,2213,100
,2,2214,100
,2,2215,340
,2,2216,110
,2,2217,43420
,2,2218,43425
,2,2219,110
,2,2220,110
,2,2221,100
,2,2223,43430
,2,2224,43435
,2,2225,110
,2,2226,110
,2,2228,110
,2,2230,110
,2,19076,430
,3,19600,43440
,3,19529,34465
,4,1,41665
,4,2,41670
,3,19529,39795
,4,12,43110
,4,13,41690
,4,33,31505
,4,34,41695
,4,48,16855
,4,49,41700
,4,90,43115
,4,91,41705
,4,96,31515
,4,97,41710
,4,99,31540
,4,100,41715
,4,114,16590
,4,115,41720
,4,132,23310
,4,133,41725
,4,138,15655
,4,139,41730
,4,141,31535
,4,142,41735
,4,147,43120
,4,148,41740
,4,150,43125
,4,151,41745
,4,159,43130
,4,160,41750
,4,165,43135
,4,166,41755
,4,180,43140
,4,181,41760
,4,183,43145
,4,184,41765
,4,198,43150
,4,199,41770
,4,216,43155
,4,217,41775
,4,237,16585
,4,238,41780
,4,246,43160
,4,247,41785
,4,249,31510
,4,250,41790
,4,252,43165
,4,253,41795
,4,276,31525
,4,277,41800
,4,279,43170
,4,280,41805
,4,288,24640
,4,289,41810
,4,291,43175
,4,292,41815
,4,297,31530
,4,298,41820
,4,300,43180
,4,301,41825
,4,303,31520
,4,304,41830
,4,306,28520
,4,307,41835
,4,315,43185
,4,316,41840
,4,318,19395
,4,319,41845
,4,324,16870
,4,325,41850
,4,345,43190
,4,346,41855
,4,348,31500
,4,349,41860
,4,357,43195
,4,358,41865
,4,366,43200
,4,367,41870
,4,369,43205
,4,370,41875
,4,372,43210
,4,373,41880
,4,381,43215
,4,382,41885
,3,19544,430
,3,19546,350
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,455
,3,19545,39000
,3,19529,142500
,2,1908,70
,2,1907,70
,2,1910,41920
,2,1911,41925
,2,1912,100
,2,19076,39325
,3,19529,39415
,3,19529,134475
,0,1361,43220
,0,1472,41915
,0,1417,43225
,2,19076,425
,3,19539,30290
,3,19540,43230
,6,64,85
,3,19529,12650
,4,1,30295
,4,1,560
,2,1131,16730
,2,839,31500
,2,855,16915
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,17345
,2,839,28520
,2,855,20575
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,19145
,2,839,15655
,2,855,11715
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,19445
,2,839,19395
,2,855,20180
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,21635
,2,839,16585
,2,855,21950
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,22145
,2,839,16855
,2,855,22675
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,23330
,2,839,23310
,2,855,27310
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,25755
,2,839,31505
,2,855,26250
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,25875
,2,839,31510
,2,855,26260
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,26420
,2,839,31515
,2,855,26715
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,26820
,2,839,31520
,2,855,27130
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,26980
,2,839,31525
,2,855,27145
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,27185
,2,839,31530
,2,855,27275
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,29260
,2,839,31535
,2,855,30150
,2,1509,100
,2,19076,31405
,3,19529,31490
,2,1131,29990
,2,839,31540
,2,855,30155
,2,1509,100
,2,19076,31405
,3,19529,31490
,4,1,41935
,4,2,41940
,4,3,41945
,4,4,41950
,4,5,41955
,4,6,41960
,4,7,41965
,4,8,41970
,4,9,41975
,4,10,41980
,4,11,41985
,4,12,41990
,4,13,41995
,4,14,42000
,4,15,42005
,2,842,40055
,2,132,100
,2,19148,110
,2,19299,110
,2,19076,1390
,3,19529,1400
,4,1,40050
,2,229,43235
,2,975,43240
,2,976,43245
,2,977,43250
,2,978,43255
,2,979,43260
,2,980,43265
,2,981,43270
,2,982,43275
,2,983,43280
,2,984,43285
,2,985,43290
,2,986,43295
,2,19076,430
,3,19529,43300
,2,987,19665
,2,988,19705
,2,989,19705
,2,18,19635
,2,17,7975
,2,660,19675
,2,990,19685
,2,991,19695
,2,19076,430
,3,19529,33240
,1,0,10530
,1,1,10535
,1,2,10540
,1,3,10545
,1,4,10550
,1,5,10555
,1,6,10560
,1,7,10565
,1,8,10570
,1,9,10575
,1,10,10580
,1,11,10585
,2,19076,1070
,3,19599,19745
,3,19529,34480
,2,842,40020
,2,132,110
,2,19148,110
,2,19299,110
,2,19076,1390
,3,19529,1400
,4,1,40015
,2,19076,430
,3,19529,31135
,2,19076,430
,3,19529,31135
,2,19076,430
,3,19529,31135
,2,19076,1070
,3,19529,34480
,2,19076,1070
,3,19529,34480
,2,19076,430
,3,19529,31135
,2,19076,430
,3,19529,31135
,2,19076,425
,3,19539,26900
,3,19540,560
,6,64,85
,3,19529,12650
,4,1,26905
,2,1025,110
,2,827,85
,2,19076,430
,3,19529,37155
,2,19076,430
,3,19529,31135
,2,842,40065
,2,132,100
,2,19148,110
,2,19299,110
,2,19076,1390
,3,19529,1400
,4,1,40060
,2,842,40035
,2,132,110
,2,19148,110
,2,19299,110
,2,19076,1390
,3,19529,1400
,4,1,40030
,2,839,42965
,2,855,39715
,2,1129,40165
,2,1131,42965
,2,1509,100
,2,1889,43445
,2,1126,43450
,2,19076,38535
,3,19529,38675
,3,19529,39795
,4,12,42965
,4,13,42955
,4,69,28970
,4,70,40165
,3,19529,39795
,4,75,43370
,4,76,28970
,4,96,43375
,4,97,42965
,4,1,41275
,4,2,41280
,4,3,41285
,3,19529,39795
,4,12,43380
,4,13,42965
,4,18,42980
,4,19,42980
,4,21,42985
,4,22,42985
,4,27,42990
,4,28,42990
,4,30,42995
,4,31,42995
,4,39,43000
,4,40,43000
,4,51,43005
,4,52,43005
,4,60,43010
,4,61,43010
,4,66,43015
,4,67,43015
,4,69,43385
,4,70,28970
,4,72,43020
,4,73,43020
,4,78,43025
,4,79,43025
,4,93,43030
,4,94,43030
,4,96,43035
,4,97,43035
,4,1,42955
,4,1,43050
,4,2,43055
,4,3,43060
,4,4,43065
,4,5,43070
,4,6,43075
,4,7,43080
,4,8,43085
,4,9,43090
,2,19076,430
,3,19529,31135
,2,19076,430
,3,19529,31135
,0,1421,39715
,0,660,43560
,0,1422,43565
,2,19076,425
,3,19539,29000
,3,19540,43570
,6,64,85
,3,19529,12650
,4,1,29005
,2,19076,1070
,3,19529,34480
,3,19541,30230
,3,19542,30200
,3,19543,685
,3,19529,30810
,4,3,43220
,4,4,41915
,4,5,43225
,2,19076,1070
,3,19599,19455
,3,19529,1080
,2,19076,1070
,3,19599,19465
,3,19529,1080
,2,19076,1070
,3,19599,19475
,3,19529,1080
,2,19076,1070
,3,19599,19485
,3,19529,1080
,2,19076,1070
,3,19599,19495
,3,19529,1080
,2,19076,1070
,3,19599,19505
,3,19529,1080
,2,19076,1070
,3,19599,19515
,3,19529,1080
,2,19076,1070
,3,19599,19525
,3,19529,1080
,2,19076,1070
,3,19599,19535
,3,19529,1080
,2,19076,1070
,3,19599,19545
,3,19529,1080
,2,19076,1070
,3,19599,19555
,3,19529,1080
,2,19076,1070
,3,19599,19565
,3,19529,1080
,2,19076,1070
,3,19599,19575
,3,19529,1080
,3,19544,430
,3,19546,350
,3,19545,33135
,3,19529,142500
,2,19076,1070
,3,19599,19455
,3,19529,1080
,2,19076,1070
,3,19599,19465
,3,19529,1080
,2,19076,1070
,3,19599,19475
,3,19529,1080
,2,19076,1070
,3,19599,19485
,3,19529,1080
,2,19076,1070
,3,19599,19495
,3,19529,1080
,2,19076,1070
,3,19599,19505
,3,19529,1080
,2,19076,1070
,3,19599,19515
,3,19529,1080
,2,19076,1070
,3,19599,19525
,3,19529,1080
,2,19076,1070
,3,19599,19535
,3,19529,1080
,2,19076,1070
,3,19599,19545
,3,19529,1080
,2,19076,1070
,3,19599,19555
,3,19529,1080
,2,19076,1070
,3,19599,19565
,3,19529,1080
,2,19076,1070
,3,19599,19575
,3,19529,1080
,2,19076,1070
,3,19529,39765
,2,19076,1070
,3,19529,39765
,2,19076,1070
,3,19529,39765
,2,19076,1070
,3,19529,39765
,4,1,43390
,4,2,43395
,4,3,43400
,4,4,43405
,4,5,43410
,3,19529,39795
,4,6,43455
,4,9,43460
,4,12,43465
,4,27,43470
,4,33,43475
,4,42,43480
,4,43,340
,4,45,43485
,4,54,43490
,4,55,43420
,4,57,43495
,4,58,43425
,4,60,43500
,4,63,43505
,4,69,43510
,4,72,43515
,4,75,43520
,4,76,43430
,4,78,43525
,4,79,43435
,4,81,43530
,4,87,43535
,4,90,43540
,4,93,43545
,4,96,43550
,4,99,43555
,2,19076,1070
,3,19529,34480
,1,0,43575
,1,1,43580
,1,2,43585
,1,3,43590
,1,4,43595
,1,5,43600
,1,6,43605
,1,7,43610
,1,8,43615
,1,9,43620
,1,10,43625
,1,11,43630
,2,19076,1070
,3,19599,43635
,3,19529,34480
,1,0,46585
,1,1,46590
,1,2,46595
,1,3,46600
,1,4,46605
,1,5,46610
,1,6,46615
,1,7,46620
,1,8,46625
,1,9,46630
,1,10,46635
,1,11,46640
,1,12,46645
,1,13,46650
,1,14,46655
,1,15,46660
,1,16,46665
,1,17,46670
,1,18,46675
,1,19,46680
,1,20,46685
,1,21,46690
,1,22,46695
,1,23,46700
,1,24,46705
,1,25,46710
,1,26,46715
,1,27,46720
,1,28,46725
,1,29,46730
,1,30,46735
,1,31,46740
,1,32,46745
,1,33,46750
,1,34,46755
,1,35,46760
,1,36,46765
,1,37,46770
,1,38,46775
,1,39,46780
,1,40,46785
,1,41,46790
,1,42,46795
,1,43,46800
,1,44,46805
,1,45,46810
,1,46,46815
,1,47,46820
,1,48,46825
,1,49,46830
,1,50,46835
,1,51,46840
,1,52,46845
,1,53,46850
,1,54,46855
,1,55,46860
,1,56,46865
,1,57,46870
,1,58,46875
,1,59,46880
,1,60,46885
,1,61,46890
,1,62,46895
,1,63,46900
,1,64,46905
,1,65,46910
,1,66,46915
,1,67,46920
,1,68,46925
,1,69,46930
,1,70,46935
,1,71,46940
,1,72,46945
,1,73,46950
,1,74,46955
,1,75,46960
,1,76,46965
,1,77,46970
,1,78,46975
,1,79,46980
,1,80,46985
,1,81,46990
,1,82,46995
,1,83,47000
,1,84,47005
,1,85,47010
,1,86,47015
,1,87,47020
,1,88,47025
,1,89,47030
,1,90,47035
,1,91,47040
,1,92,47045
,1,93,47050
,1,94,47055
,1,95,47060
,1,96,47065
,1,97,47070
,1,98,47075
,1,99,47080
,1,100,47085
,1,101,47090
,1,102,47095
,1,103,47100
,1,104,47105
,1,105,47110
,1,106,47115
,1,107,47120
,1,108,47125
,1,109,47130
,1,110,47135
,1,111,47140
,1,112,47145
,1,113,47150
,1,114,47155
,1,115,47160
,1,116,47165
,1,117,47170
,1,118,47175
,1,119,47180
,1,120,47185
,1,121,47190
,1,122,47195
,1,123,47200
,1,124,47205
,1,125,47210
,1,126,47215
,1,127,47220
,1,128,47225
,1,129,47230
,1,130,47235
,1,131,47240
,1,132,47245
,1,133,47250
,1,134,47255
,1,135,47260
,1,136,47265
,1,137,47270
,1,138,47275
,1,139,47280
,1,140,47285
,1,141,47290
,1,142,47295
,1,143,47300
,1,144,47305
,1,145,47310
,1,146,47315
,1,147,47320
,1,148,47325
,1,149,47330
,1,150,47335
,1,151,47340
,1,152,47345
,1,153,47350
,1,154,47355
,1,155,47360
,1,156,47365
,1,157,47370
,1,158,47375
,1,159,47380
,1,160,47385
,1,161,47390
,1,162,47395
,1,163,47400
,1,164,47405
,1,165,47410
,1,166,47415
,1,167,47420
,1,168,47425
,1,169,47430
,1,170,47435
,1,171,47440
,1,172,47445
,1,173,47450
,1,174,47455
,1,175,47460
,1,176,47465
,1,177,47470
,1,178,47475
,1,179,47480
,1,180,47485
,1,181,47490
,1,182,47495
,1,183,47500
,1,184,47505
,1,185,47510
,1,186,47515
,1,187,47520
,1,188,47525
,1,189,47530
,1,190,47535
,1,191,47540
,1,192,47545
,1,193,47550
,1,194,47555
,1,195,47560
,1,196,47565
,1,197,47570
,1,198,47575
,1,199,47580
,1,200,47585
,1,201,47590
,1,202,47595
,1,203,47600
,1,204,47605
,1,205,47610
,1,206,47615
,1,207,47620
,1,208,47625
,1,209,47630
,1,210,47635
,1,211,47640
,1,212,47645
,1,213,47650
,1,214,47655
,1,215,47660
,1,216,47665
,1,217,47670
,1,218,47675
,1,219,47680
,1,220,47685
,1,221,47690
,1,222,47695
,1,223,47700
,1,224,47705
,1,225,47710
,1,226,47715
,1,227,47720
,1,228,47725
,1,229,47730
,1,230,47735
,1,231,47740
,1,232,47745
,1,233,47750
,1,234,47755
,1,235,47760
,1,236,47765
,1,237,47770
,1,238,47775
,1,239,47780
,1,240,47785
,1,241,47790
,1,242,47795
,1,243,47800
,1,244,47805
,1,245,47810
,1,246,47815
,1,247,47820
,1,248,47825
,1,249,47830
,1,250,47835
,1,251,47840
,1,252,47845
,1,253,47850
,1,254,47855
,1,255,47860
,1,256,47865
,1,257,47870
,1,258,47875
,1,259,47880
,1,260,47885
,1,261,47890
,1,262,47895
,1,263,47900
,1,264,47905
,1,265,47910
,1,266,47915
,1,267,47920
,1,268,47925
,1,269,47930
,1,270,47935
,1,271,47940
,1,272,47945
,1,273,47950
,1,274,47955
,1,275,47960
,1,276,47965
,1,277,47970
,1,278,47975
,1,279,47980
,1,280,47985
,1,281,47990
,1,282,47995
,1,283,48000
,1,284,48005
,1,285,48010
,1,286,48015
,1,287,48020
,1,288,48025
,1,289,48030
,1,290,48035
,1,291,48040
,1,292,48045
,1,293,48050
,1,294,48055
,1,295,48060
,1,296,48065
,1,297,48070
,1,298,48075
,1,299,48080
,1,300,48085
,1,301,48090
,1,302,48095
,1,303,48100
,1,304,48105
,1,305,48110
,1,306,48115
,1,307,48120
,1,308,48125
,1,309,48130
,1,310,48135
,1,311,48140
,1,312,48145
,1,313,48150
,1,314,48155
,1,315,48160
,1,316,48165
,1,317,48170
,1,318,48175
,1,319,48180
,1,320,48185
,1,321,48190
,1,322,48195
,1,323,48200
,1,324,48205
,1,325,48210
,1,326,48215
,1,327,48220
,1,328,48225
,1,329,48230
,1,330,48235
,1,331,48240
,1,332,48245
,1,333,48250
,1,334,48255
,1,335,48260
,1,336,48265
,1,337,48270
,1,338,48275
,1,339,48280
,1,340,48285
,1,341,48290
,1,342,48295
,1,343,48300
,1,344,48305
,1,345,48310
,1,346,48315
,1,347,48320
,1,348,48325
,1,349,48330
,1,350,48335
,1,351,48340
,1,352,48345
,1,353,48350
,1,354,48355
,1,355,48360
,1,356,48365
,1,357,48370
,1,358,48375
,1,359,48380
,1,360,48385
,1,361,48390
,1,362,48395
,1,363,48400
,1,364,48405
,1,365,48410
,1,366,48415
,1,367,48420
,1,368,48425
,1,369,48430
,1,370,48435
,1,371,48440
,1,372,48445
,1,373,48450
,1,374,48455
,1,375,48460
,1,376,48465
,1,377,48470
,1,378,48475
,1,379,48480
,1,380,48485
,1,381,48490
,1,382,48495
,1,383,48500
,1,384,48505
,1,385,48510
,1,386,48515
,1,387,48520
,1,388,48525
,1,389,48530
,1,390,48535
,1,391,48540
,1,392,48545
,1,393,48550
,1,394,48555
,1,395,48560
,1,396,48565
,1,397,48570
,1,398,48575
,1,399,48580
,1,400,48585
,1,401,48590
,1,402,48595
,1,403,48600
,1,404,48605
,1,405,48610
,1,406,48615
,1,407,48620
,1,408,48625
,1,409,48630
,1,410,48635
,1,411,48640
,1,412,48645
,1,413,48650
,1,414,48655
,1,415,48660
,1,416,48665
,1,417,48670
,1,418,48675
,1,419,48680
,1,420,48685
,1,421,48690
,1,422,48695
,1,423,48700
,1,424,48705
,1,425,48710
,1,426,48715
,1,427,48720
,1,428,48725
,1,429,48730
,1,430,48735
,1,431,48740
,1,432,48745
,1,433,48750
,1,434,48755
,1,435,48760
,1,436,48765
,1,437,48770
,1,438,48775
,1,439,48780
,1,440,48785
,1,441,48790
,1,442,48795
,1,443,48800
,1,444,48805
,1,445,48810
,1,446,48815
,1,447,48820
,1,448,48825
,1,449,48830
,1,450,48835
,1,451,48840
,1,452,48845
,1,453,48850
,1,454,48855
,1,455,48860
,1,456,48865
,1,457,48870
,1,458,48875
,1,459,48880
,1,460,48885
,1,461,48890
,1,462,48895
,1,463,48900
,1,464,48905
,1,465,48910
,1,466,48915
,1,467,48920
,1,468,48925
,1,469,48930
,1,470,48935
,1,471,48940
,1,472,48945
,1,473,48950
,1,474,48955
,1,475,48960
,1,476,48965
,1,477,48970
,1,478,48975
,1,479,48980
,1,480,48985
,1,481,48990
,1,482,48995
,1,483,49000
,1,484,49005
,1,485,49010
,1,486,49015
,1,487,49020
,1,488,49025
,1,489,49030
,1,490,49035
,1,491,49040
,1,492,49045
,1,493,49050
,1,494,49055
,1,495,49060
,1,496,49065
,1,497,49070
,1,498,49075
,1,499,49080
,1,500,49085
,1,501,49090
,1,502,49095
,1,503,49100
,1,504,49105
,1,505,49110
,1,506,49115
,1,507,49120
,1,508,49125
,1,509,49130
,1,510,49135
,1,511,49140
,1,512,49145
,1,513,49150
,1,514,49155
,1,515,49160
,1,516,49165
,1,517,49170
,1,518,49175
,1,519,49180
,1,520,49185
,1,521,49190
,1,522,49195
,1,523,49200
,1,524,49205
,1,525,49210
,1,526,49215
,1,527,49220
,1,528,49225
,1,529,49230
,1,530,49235
,1,531,49240
,1,532,49245
,1,533,49250
,1,534,49255
,1,535,49260
,1,536,49265
,1,537,49270
,1,538,49275
,1,539,49280
,1,540,49285
,1,541,49290
,1,542,49295
,1,543,49300
,1,544,49305
,1,545,49310
,1,546,49315
,1,547,49320
,1,548,49325
,1,549,49330
,1,550,49335
,1,551,49340
,1,552,49345
,1,553,49350
,1,554,49355
,1,555,49360
,1,556,49365
,1,557,49370
,1,558,49375
,1,559,49380
,1,560,49385
,1,561,49390
,1,562,49395
,1,563,49400
,1,564,49405
,1,565,49410
,1,566,49415
,1,567,49420
,1,568,49425
,1,569,49430
,1,570,49435
,1,571,49440
,1,572,49445
,1,573,49450
,1,574,49455
,1,575,49460
,1,576,49465
,1,577,49470
,1,578,49475
,1,579,49480
,1,580,49485
,1,581,49490
,1,582,49495
,1,583,49500
,1,584,49505
,1,585,49510
,1,586,49515
,1,587,49520
,1,588,49525
,1,589,49530
,1,590,49535
,1,591,49540
,1,592,49545
,1,593,49550
,1,594,49555
,1,595,49560
,1,596,49565
,1,597,49570
,1,598,49575
,1,599,49580
,1,600,49585
,1,601,49590
,1,602,49595
,1,603,49600
,1,604,49605
,1,605,49610
,1,606,49615
,1,607,49620
,1,608,49625
,1,609,49630
,1,610,49635
,1,611,49640
,1,612,49645
,1,613,49650
,1,614,49655
,1,615,49660
,1,616,49665
,1,617,49670
,1,618,49675
,1,619,49680
,1,620,49685
,1,621,49690
,1,622,49695
,1,623,49700
,1,624,49705
,1,625,49710
,1,626,49715
,1,627,49720
,1,628,49725
,1,629,49730
,1,630,49735
,1,631,49740
,1,632,49745
,1,633,49750
,1,634,49755
,1,635,49760
,1,636,49765
,1,637,49770
,1,638,49775
,1,639,49780
,1,640,49785
,1,641,49790
,1,642,49795
,1,643,49800
,1,644,49805
,1,645,49810
,1,646,49815
,1,647,49820
,1,648,49825
,1,649,49830
,1,650,49835
,1,651,49840
,1,652,49845
,1,653,49850
,1,654,49855
,1,655,49860
,1,656,49865
,1,657,49870
,1,658,49875
,1,659,49880
,1,660,49885
,1,661,49890
,1,662,49895
,1,663,49900
,1,664,49905
,1,665,49910
,1,666,49915
,1,667,49920
,1,668,49925
,1,669,49930
,1,670,49935
,1,671,49940
,1,672,49945
,1,673,49950
,1,674,49955
,1,675,49960
,1,676,49965
,1,677,49970
,1,678,49975
,1,679,49980
,1,680,49985
,1,681,49990
,1,682,49995
,1,683,50000
,1,684,50005
,1,685,50010
,1,686,50015
,1,687,50020
,1,688,50025
,1,689,50030
,1,690,50035
,1,691,50040
,1,692,50045
,1,693,50050
,1,694,50055
,1,695,50060
,1,696,50065
,1,697,50070
,1,698,50075
,1,699,50080
,1,700,50085
,1,701,50090
,1,702,50095
,1,703,50100
,1,704,50105
,1,705,50110
,1,706,50115
,1,707,50120
,1,708,50125
,1,709,50130
,1,710,50135
,1,711,50140
,1,712,50145
,1,713,50150
,1,714,50155
,1,715,50160
,1,716,50165
,1,717,50170
,1,718,50175
,1,719,50180
,1,720,50185
,1,721,50190
,1,722,50195
,1,723,50200
,1,724,50205
,1,725,50210
,1,726,50215
,1,727,50220
,1,728,50225
,1,729,50230
,1,730,50235
,1,731,50240
,1,732,50245
,1,733,50250
,1,734,50255
,1,735,50260
,1,736,50265
,1,737,50270
,1,738,50275
,1,739,50280
,1,740,50285
,1,741,50290
,1,742,50295
,1,743,50300
,1,744,50305
,1,745,50310
,1,746,50315
,1,747,50320
,1,748,50325
,1,749,50330
,1,750,50335
,1,751,50340
,1,752,50345
,1,753,50350
,1,754,50355
,1,755,50360
,1,756,50365
,1,757,50370
,1,758,50375
,1,759,50380
,1,760,50385
,1,761,50390
,1,762,50395
,1,763,50400
,1,764,50405
,1,765,50410
,1,766,50415
,1,767,50420
,1,768,50425
,1,769,50430
,1,770,50435
,1,771,50440
,1,772,50445
,1,773,50450
,1,774,50455
,1,775,50460
,1,776,50465
,1,777,50470
,1,778,50475
,1,779,50480
,1,780,50485
,1,781,50490
,1,782,50495
,1,783,50500
,1,784,50505
,1,785,50510
,1,786,50515
,1,787,50520
,1,788,50525
,1,789,50530
,1,790,50535
,1,791,50540
,1,792,50545
,1,793,50550
,1,794,50555
,1,795,50560
,1,796,50565
,1,797,50570
,1,798,50575
,1,799,50580
,1,800,50585
,1,801,50590
,1,802,50595
,1,803,50600
,1,804,50605
,1,805,50610
,1,806,50615
,1,807,50620
,1,808,50625
,1,809,50630
,1,810,50635
,1,811,50640
,1,812,50645
,1,813,50650
,1,814,50655
,1,815,50660
,1,816,50665
,1,817,50670
,1,818,50675
,1,819,50680
,1,820,50685
,1,821,50690
,1,822,50695
,1,823,50700
,1,824,50705
,1,825,50710
,1,826,50715
,1,827,50720
,1,828,50725
,1,829,50730
,1,830,50735
,1,831,50740
,1,832,50745
,1,833,50750
,1,834,50755
,1,835,50760
,1,836,50765
,1,837,50770
,1,838,50775
,1,839,50780
,1,840,50785
,1,841,50790
,1,842,50795
,1,843,50800
,1,844,50805
,1,845,50810
,1,846,50815
,1,847,50820
,1,848,50825
,1,849,50830
,1,850,50835
,1,851,50840
,1,852,50845
,1,853,50850
,1,854,50855
,1,855,50860
,1,856,50865
,1,857,50870
,1,858,50875
,1,859,50880
,1,860,50885
,1,861,50890
,1,862,50895
,1,863,50900
,1,864,50905
,1,865,50910
,1,866,50915
,1,867,50920
,1,868,50925
,1,869,50930
,1,870,50935
,1,871,50940
,1,872,50945
,1,873,50950
,1,874,50955
,1,875,50960
,1,876,50965
,1,877,50970
,1,878,50975
,1,879,50980
,1,880,50985
,1,881,50990
,1,882,50995
,1,883,51000
,1,884,51005
,1,885,51010
,1,886,51015
,1,887,51020
,1,888,51025
,1,889,51030
,1,890,51035
,1,891,51040
,1,892,51045
,1,893,51050
,1,894,51055
,1,895,51060
,1,896,51065
,1,897,51070
,1,898,51075
,1,899,51080
,1,900,51085
,1,901,51090
,1,902,51095
,1,903,51100
,1,904,51105
,1,905,51110
,1,906,51115
,1,907,51120
,1,908,51125
,1,909,51130
,1,910,51135
,1,911,51140
,1,912,51145
,1,913,51150
,1,914,51155
,1,915,51160
,1,916,51165
,1,917,51170
,1,918,51175
,1,919,51180
,1,920,51185
,1,921,51190
,1,922,51195
,1,923,51200
,1,924,51205
,1,925,51210
,1,926,51215
,1,927,51220
,1,928,51225
,1,929,51230
,1,930,51235
,1,931,51240
,1,932,51245
,1,933,51250
,1,934,51255
,1,935,51260
,1,936,51265
,1,937,51270
,1,938,51275
,1,939,51280
,1,940,51285
,1,941,51290
,1,942,51295
,1,943,51300
,1,944,51305
,1,945,51310
,1,946,51315
,1,947,51320
,1,948,51325
,1,949,51330
,1,950,51335
,1,951,51340
,1,952,51345
,1,953,51350
,1,954,51355
,1,955,51360
,1,956,51365
,1,957,51370
,1,958,51375
,1,959,51380
,1,960,51385
,1,961,51390
,1,962,51395
,1,963,51400
,1,964,51405
,1,965,51410
,1,966,51415
,1,967,51420
,1,968,51425
,1,969,51430
,1,970,51435
,1,971,51440
,1,972,51445
,1,973,51450
,1,974,51455
,1,975,51460
,1,976,51465
,1,977,51470
,1,978,51475
,1,979,51480
,1,980,51485
,1,981,51490
,1,982,51495
,1,983,51500
,1,984,51505
,1,985,51510
,1,986,51515
,1,987,51520
,1,988,51525
,1,989,51530
,1,990,51535
,1,991,51540
,1,992,51545
,1,993,51550
,1,994,51555
,1,995,51560
,1,996,51565
,1,997,51570
,1,998,51575
,1,999,51580
,1,1000,51585
,1,1001,51590
,1,1002,51595
,1,1003,51600
,1,1004,51605
,1,1005,51610
,1,1006,51615
,1,1007,51620
,1,1008,51625
,1,1009,51630
,1,1010,51635
,1,1011,51640
,1,1012,51645
,1,1013,51650
,1,1014,51655
,1,1015,51660
,1,1016,51665
,1,1017,51670
,1,1018,51675
,1,1019,51680
,1,1020,51685
,1,1021,51690
,1,1022,51695
,1,1023,51700
,1,1024,51705
,1,1025,51710
,1,1026,51715
,1,1027,51720
,1,1028,51725
,1,1029,51730
,1,1030,51735
,1,1031,51740
,1,1032,51745
,1,1033,51750
,1,1034,51755
,1,1035,51760
,1,1036,51765
,1,1037,51770
,1,1038,51775
,1,1039,51780
,1,1040,51785
,1,1041,51790
,1,1042,51795
,1,1043,51800
,1,1044,51805
,1,1045,51810
,1,1046,51815
,1,1047,51820
,1,1048,51825
,1,1049,51830
,1,1050,51835
,1,1051,51840
,1,1052,51845
,1,1053,51850
,1,1054,51855
,1,1055,51860
,1,1056,51865
,1,1057,51870
,1,1058,51875
,1,1059,51880
,1,1060,51885
,1,1061,51890
,1,1062,51895
,1,1063,51900
,1,1064,51905
,1,1065,51910
,1,1066,51915
,1,1067,51920
,1,1068,51925
,1,1069,51930
,1,1070,51935
,1,1071,51940
,1,1072,51945
,1,1073,51950
,1,1074,51955
,1,1075,51960
,1,1076,51965
,1,1077,51970
,1,1078,51975
,1,1079,51980
,1,1080,51985
,1,1081,51990
,1,1082,51995
,1,1083,52000
,1,1084,52005
,1,1085,52010
,1,1086,52015
,1,1087,52020
,1,1088,52025
,1,1089,52030
,1,1090,52035
,1,1091,52040
,1,1092,52045
,1,1093,52050
,1,1094,52055
,1,1095,52060
,1,1096,52065
,1,1097,52070
,1,1098,52075
,1,1099,52080
,1,1100,52085
,1,1101,52090
,1,1102,52095
,1,1103,52100
,1,1104,52105
,1,1105,52110
,1,1106,52115
,1,1107,52120
,1,1108,52125
,1,1109,52130
,1,1110,52135
,1,1111,52140
,1,1112,52145
,1,1113,52150
,1,1114,52155
,1,1115,52160
,1,1116,52165
,1,1117,52170
,1,1118,52175
,1,1119,52180
,1,1120,52185
,1,1121,52190
,1,1122,52195
,1,1123,52200
,1,1124,52205
,1,1125,52210
,1,1126,52215
,1,1127,52220
,1,1128,52225
,1,1129,52230
,1,1130,52235
,1,1131,52240
,1,1132,52245
,1,1133,52250
,1,1134,52255
,1,1135,52260
,1,1136,52265
,1,1137,52270
,1,1138,52275
,1,1139,52280
,1,1140,52285
,1,1141,52290
,1,1142,52295
,1,1143,52300
,1,1144,52305
,1,1145,52310
,1,1146,52315
,1,1147,52320
,1,1148,52325
,1,1149,52330
,1,1150,52335
,1,1151,52340
,1,1152,52345
,1,1153,52350
,1,1154,52355
,1,1155,52360
,1,1156,52365
,1,1157,52370
,1,1158,52375
,1,1159,52380
,1,1160,52385
,1,1161,52390
,1,1162,52395
,1,1163,52400
,1,1164,52405
,1,1165,52410
,1,1166,52415
,1,1167,52420
,1,1168,52425
,1,1169,52430
,1,1170,52435
,1,1171,52440
,1,1172,52445
,1,1173,52450
,1,1174,52455
,1,1175,52460
,1,1176,52465
,1,1177,52470
,1,1178,52475
,1,1179,52480
,1,1180,52485
,1,1181,52490
,1,1182,52495
,1,1183,52500
,1,1184,52505
,1,1185,52510
,1,1186,52515
,1,1187,52520
,1,1188,52525
,1,1189,52530
,1,1190,52535
,1,1191,52540
,1,1192,52545
,1,1193,52550
,1,1194,52555
,1,1195,52560
,1,1196,52565
,1,1197,52570
,1,1198,52575
,1,1199,52580
,1,1200,52585
,1,1201,52590
,1,1202,52595
,1,1203,52600
,1,1204,52605
,1,1205,52610
,1,1206,52615
,1,1207,52620
,1,1208,52625
,1,1209,52630
,1,1210,52635
,1,1211,52640
,1,1212,52645
,1,1213,52650
,1,1214,52655
,1,1215,52660
,1,1216,52665
,1,1217,52670
,1,1218,52675
,1,1219,52680
,1,1220,52685
,1,1221,52690
,1,1222,52695
,1,1223,52700
,1,1224,52705
,1,1225,52710
,1,1226,52715
,1,1227,52720
,1,1228,52725
,1,1229,52730
,1,1230,52735
,1,1231,52740
,1,1232,52745
,1,1233,52750
,1,1234,52755
,1,1235,52760
,1,1236,52765
,1,1237,52770
,1,1238,52775
,1,1239,52780
,1,1240,52785
,1,1241,52790
,1,1242,52795
,1,1243,52800
,1,1244,52805
,1,1245,52810
,1,1246,52815
,1,1247,52820
,1,1248,52825
,1,1249,52830
,1,1250,52835
,1,1251,52840
,1,1252,52845
,1,1253,52850
,1,1254,52855
,1,1255,52860
,1,1256,52865
,1,1257,52870
,1,1258,52875
,1,1259,52880
,1,1260,52885
,1,1261,52890
,1,1262,52895
,1,1263,52900
,1,1264,52905
,1,1265,52910
,1,1266,52915
,1,1267,52920
,1,1268,52925
,1,1269,52930
,1,1270,52935
,1,1271,52940
,1,1272,52945
,1,1273,52950
,1,1274,52955
,1,1275,52960
,1,1276,52965
,1,1277,52970
,1,1278,52975
,1,1279,52980
,1,1280,52985
,1,1281,52990
,1,1282,52995
,1,1283,53000
,1,1284,53005
,1,1285,53010
,1,1286,53015
,1,1287,53020
,1,1288,53025
,1,1289,53030
,1,1290,53035
,1,1291,53040
,1,1292,53045
,1,1293,53050
,1,1294,53055
,1,1295,53060
,1,1296,53065
,1,1297,53070
,1,1298,53075
,1,1299,53080
,1,1300,53085
,1,1301,53090
,1,1302,53095
,1,1303,53100
,1,1304,53105
,1,1305,53110
,1,1306,53115
,1,1307,53120
,1,1308,53125
,1,1309,53130
,1,1310,53135
,1,1311,53140
,1,1312,53145
,1,1313,53150
,1,1314,53155
,1,1315,53160
,1,1316,53165
,1,1317,53170
,1,1318,53175
,1,1319,53180
,1,1320,53185
,1,1321,53190
,1,1322,53195
,1,1323,53200
,1,1324,53205
,1,1325,53210
,1,1326,53215
,1,1327,53220
,1,1328,53225
,1,1329,53230
,1,1330,53235
,1,1331,53240
,1,1332,53245
,1,1333,53250
,1,1334,53255
,1,1335,53260
,1,1336,53265
,1,1337,53270
,1,1338,53275
,1,1339,53280
,1,1340,53285
,1,1341,53290
,1,1342,53295
,1,1343,53300
,1,1344,53305
,1,1345,53310
,1,1346,53315
,1,1347,53320
,1,1348,53325
,1,1349,53330
,1,1350,53335
,1,1351,53340
,1,1352,53345
,1,1353,53350
,1,1354,53355
,1,1355,53360
,1,1356,53365
,1,1357,53370
,1,1358,53375
,1,1359,53380
,1,1360,53385
,1,1361,53390
,1,1362,53395
,1,1363,53400
,1,1364,53405
,1,1365,53410
,1,1366,53415
,1,1367,53420
,1,1368,53425
,1,1369,53430
,1,1370,53435
,1,1371,53440
,1,1372,53445
,1,1373,53450
,1,1374,53455
,1,1375,53460
,1,1376,53465
,1,1377,53470
,1,1378,53475
,1,1379,53480
,1,1380,53485
,1,1381,53490
,1,1382,53495
,1,1383,53500
,1,1384,53505
,1,1385,53510
,1,1386,53515
,1,1387,53520
,1,1388,53525
,1,1389,53530
,1,1390,53535
,1,1391,53540
,1,1392,53545
,1,1393,53550
,1,1394,53555
,1,1395,53560
,1,1396,53565
,1,1397,53570
,1,1398,53575
,1,1399,53580
,1,1400,53585
,1,1401,53590
,1,1402,53595
,1,1403,53600
,1,1404,53605
,1,1405,53610
,1,1406,53615
,1,1407,53620
,1,1408,53625
,1,1409,53630
,1,1410,53635
,1,1411,53640
,1,1412,53645
,1,1413,53650
,1,1414,53655
,1,1415,53660
,1,1416,53665
,1,1417,53670
,1,1418,53675
,1,1419,53680
,1,1420,53685
,1,1421,53690
,1,1422,53695
,1,1423,53700
,1,1424,53705
,1,1425,53710
,1,1426,53715
,1,1427,53720
,1,1428,53725
,1,1429,53730
,1,1430,53735
,1,1431,53740
,1,1432,53745
,1,1433,53750
,1,1434,53755
,1,1435,53760
,1,1436,53765
,1,1437,53770
,1,1438,53775
,1,1439,53780
,1,1440,53785
,1,1441,53790
,1,1442,53795
,1,1443,53800
,1,1444,53805
,1,1445,53810
,1,1446,53815
,1,1447,53820
,1,1448,53825
,1,1449,53830
,1,1450,53835
,1,1451,53840
,1,1452,53845
,1,1453,53850
,1,1454,53855
,1,1455,53860
,1,1456,53865
,1,1457,53870
,1,1458,53875
,1,1459,53880
,1,1460,53885
,1,1461,53890
,1,1462,53895
,1,1463,53900
,1,1464,53905
,1,1465,53910
,1,1466,53915
,1,1467,53920
,1,1468,53925
,1,1469,53930
,1,1470,53935
,1,1471,53940
,1,1472,53945
,1,1473,53950
,1,1474,53955
,1,1475,53960
,1,1476,53965
,1,1477,53970
,1,1478,53975
,1,1479,53980
,1,1480,53985
,1,1481,53990
,1,1482,53995
,1,1483,54000
,1,1484,54005
,1,1485,54010
,1,1486,54015
,1,1487,54020
,1,1488,54025
,1,1489,54030
,1,1490,54035
,1,1491,54040
,1,1492,54045
,1,1493,54050
,1,1494,54055
,1,1495,54060
,1,1496,54065
,1,1497,54070
,1,1498,54075
,1,1499,54080
,1,1500,54085
,1,1501,54090
,1,1502,54095
,1,1503,54100
,1,1504,54105
,1,1505,54110
,1,1506,54115
,1,1507,54120
,1,1508,54125
,1,1509,54130
,1,1510,54135
,1,1511,54140
,1,1512,54145
,1,1513,54150
,1,1514,54155
,1,1515,54160
,1,1516,54165
,1,1517,54170
,1,1518,54175
,1,1519,54180
,1,1520,54185
,1,1521,54190
,1,1522,54195
,1,1523,54200
,1,1524,54205
,1,1525,54210
,1,1526,54215
,1,1527,54220
,1,1528,54225
,1,1529,54230
,1,1530,54235
,1,1531,54240
,1,1532,54245
,1,1533,54250
,1,1534,54255
,1,1535,54260
,1,1536,54265
,1,1537,54270
,1,1538,54275
,1,1539,54280
,1,1540,54285
,1,1541,54290
,1,1542,54295
,1,1543,54300
,1,1544,54305
,1,1545,54310
,1,1546,54315
,1,1547,54320
,1,1548,54325
,1,1549,54330
,1,1550,54335
,1,1551,54340
,1,1552,54345
,1,1553,54350
,1,1554,54355
,1,1555,54360
,1,1556,54365
,1,1557,54370
,1,1558,54375
,1,1559,54380
,1,1560,54385
,1,1561,54390
,1,1562,54395
,1,1563,54400
,1,1564,54405
,1,1565,54410
,1,1566,54415
,1,1567,54420
,1,1568,54425
,1,1569,54430
,1,1570,54435
,1,1571,54440
,1,1572,54445
,1,1573,54450
,1,1574,54455
,1,1575,54460
,1,1576,54465
,1,1577,54470
,1,1578,54475
,1,1579,54480
,1,1580,54485
,1,1581,54490
,1,1582,54495
,1,1583,54500
,1,1584,54505
,1,1585,54510
,1,1586,54515
,1,1587,54520
,1,1588,54525
,1,1589,54530
,1,1590,54535
,1,1591,54540
,1,1592,54545
,1,1593,54550
,1,1594,54555
,1,1595,54560
,1,1596,54565
,1,1597,54570
,1,1598,54575
,1,1599,54580
,1,1600,54585
,1,1601,54590
,1,1602,54595
,1,1603,54600
,1,1604,54605
,1,1605,54610
,1,1606,54615
,1,1607,54620
,1,1608,54625
,1,1609,54630
,1,1610,54635
,1,1611,54640
,1,1612,54645
,1,1613,54650
,1,1614,54655
,1,1615,54660
,1,1616,54665
,1,1617,54670
,1,1618,54675
,1,1619,54680
,1,1620,54685
,1,1621,54690
,1,1622,54695
,1,1623,54700
,1,1624,54705
,1,1625,54710
,1,1626,54715
,1,1627,54720
,1,1628,54725
,1,1629,54730
,1,1630,54735
,1,1631,54740
,1,1632,54745
,1,1633,54750
,1,1634,54755
,1,1635,54760
,1,1636,54765
,1,1637,54770
,1,1638,54775
,1,1639,54780
,1,1640,54785
,1,1641,54790
,1,1642,54795
,1,1643,54800
,1,1644,54805
,1,1645,54810
,1,1646,54815
,1,1647,54820
,1,1648,54825
,1,1649,54830
,1,1650,54835
,1,1651,54840
,1,1652,54845
,1,1653,54850
,1,1654,54855
,1,1655,54860
,1,1656,54865
,1,1657,54870
,1,1658,54875
,1,1659,54880
,1,1660,54885
,1,1661,54890
,1,1662,54895
,1,1663,54900
,1,1664,54905
,1,1665,54910
,1,1666,54915
,1,1667,54920
,1,1668,54925
,1,1669,54930
,1,1670,54935
,1,1671,54940
,1,1672,54945
,1,1673,54950
,1,1674,54955
,1,1675,54960
,1,1676,54965
,1,1677,54970
,1,1678,54975
,1,1679,54980
,1,1680,54985
,1,1681,54990
,1,1682,54995
,1,1683,55000
,1,1684,55005
,1,1685,55010
,1,1686,55015
,1,1687,55020
,1,1688,55025
,1,1689,55030
,1,1690,55035
,1,1691,55040
,1,1692,55045
,1,1693,55050
,1,1694,55055
,1,1695,55060
,1,1696,55065
,1,1697,55070
,1,1698,55075
,1,1699,55080
,1,1700,55085
,1,1701,55090
,1,1702,55095
,1,1703,55100
,1,1704,55105
,1,1705,55110
,1,1706,55115
,1,1707,55120
,1,1708,55125
,1,1709,55130
,1,1710,55135
,1,1711,55140
,1,1712,55145
,1,1713,55150
,1,1714,55155
,1,1715,55160
,1,1716,55165
,1,1717,55170
,1,1718,55175
,1,1719,55180
,1,1720,55185
,1,1721,55190
,1,1722,55195
,1,1723,55200
,1,1724,55205
,1,1725,55210
,1,1726,55215
,1,1727,55220
,1,1728,55225
,1,1729,55230
,1,1730,55235
,1,1731,55240
,1,1732,55245
,1,1733,55250
,1,1734,55255
,1,1735,55260
,1,1736,55265
,1,1737,55270
,1,1738,55275
,1,1739,55280
,1,1740,55285
,1,1741,55290
,1,1742,55295
,1,1743,55300
,1,1744,55305
,1,1745,55310
,1,1746,55315
,1,1747,55320
,1,1748,55325
,1,1749,55330
,1,1750,55335
,1,1751,55340
,1,1752,55345
,1,1753,55350
,1,1754,55355
,1,1755,55360
,1,1756,55365
,1,1757,55370
,1,1758,55375
,1,1759,55380
,1,1760,55385
,1,1761,55390
,1,1762,55395
,1,1763,55400
,1,1764,55405
,1,1765,55410
,1,1766,55415
,1,1767,55420
,1,1768,55425
,1,1769,55430
,1,1770,55435
,1,1771,55440
,1,1772,55445
,1,1773,55450
,1,1774,55455
,1,1775,55460
,1,1776,55465
,1,1777,55470
,1,1778,55475
,1,1779,55480
,1,1780,55485
,1,1781,55490
,1,1782,55495
,1,1783,55500
,1,1784,55505
,1,1785,55510
,1,1786,55515
,1,1787,55520
,1,1788,55525
,1,1789,55530
,1,1790,55535
,1,1791,55540
,1,1792,55545
,1,1793,55550
,1,1794,55555
,1,1795,55560
,1,1796,55565
,1,1797,55570
,1,1798,55575
,1,1799,55580
,1,1800,55585
,1,1801,55590
,1,1802,55595
,1,1803,55600
,1,1804,55605
,1,1805,55610
,1,1806,55615
,1,1807,55620
,1,1808,55625
,1,1809,55630
,1,1810,55635
,1,1811,55640
,1,1812,55645
,1,1813,55650
,1,1814,55655
,1,1815,55660
,1,1816,55665
,1,1817,55670
,1,1818,55675
,1,1819,55680
,1,1820,55685
,1,1821,55690
,1,1822,55695
,1,1823,55700
,1,1824,55705
,1,1825,55710
,1,1826,55715
,1,1827,55720
,1,1828,55725
,1,1829,55730
,1,1830,55735
,1,1831,55740
,1,1832,55745
,1,1833,55750
,1,1834,55755
,1,1835,55760
,1,1836,55765
,1,1837,55770
,1,1838,55775
,1,1839,55780
,1,1840,55785
,1,1841,55790
,1,1842,55795
,1,1843,55800
,1,1844,55805
,1,1845,55810
,1,1846,55815
,1,1847,55820
,1,1848,55825
,1,1849,55830
,1,1850,55835
,1,1851,55840
,1,1852,55845
,1,1853,55850
,1,1854,55855
,1,1855,55860
,1,1856,55865
,1,1857,55870
,1,1858,55875
,1,1859,55880
,1,1860,55885
,1,1861,55890
,1,1862,55895
,1,1863,55900
,1,1864,55905
,1,1865,55910
,1,1866,55915
,1,1867,55920
,1,1868,55925
,1,1869,55930
,1,1870,55935
,1,1871,55940
,1,1872,55945
,1,1873,55950
,1,1874,55955
,1,1875,55960
,1,1876,55965
,1,1877,55970
,1,1878,55975
,1,1879,55980
,1,1880,55985
,1,1881,55990
,1,1882,55995
,1,1883,56000
,1,1884,56005
,1,1885,56010
,1,1886,56015
,1,1887,56020
,1,1888,56025
,1,1889,56030
,1,1890,56035
,1,1891,56040
,1,1892,56045
,1,1893,56050
,1,1894,56055
,1,1895,56060
,1,1896,56065
,1,1897,56070
,1,1898,56075
,1,1899,56080
,1,1900,56085
,1,1901,56090
,1,1902,56095
,1,1903,56100
,1,1904,56105
,1,1905,56110
,1,1906,56115
,1,1907,56120
,1,1908,56125
,1,1909,56130
,1,1910,56135
,1,1911,56140
,1,1912,56145
,1,1913,56150
,1,1914,56155
,1,1915,56160
,1,1916,56165
,1,1917,56170
,1,1918,56175
,1,1919,56180
,1,1920,56185
,1,1921,56190
,1,1922,56195
,1,1923,56200
,1,1924,56205
,1,1925,56210
,1,1926,56215
,1,1927,56220
,1,1928,56225
,1,1929,56230
,1,1930,56235
,1,1931,56240
,1,1932,56245
,1,1933,56250
,1,1934,56255
,1,1935,56260
,1,1936,56265
,1,1937,56270
,1,1938,56275
,1,1939,56280
,1,1940,56285
,1,1941,56290
,1,1942,56295
,1,1943,56300
,1,1944,56305
,1,1945,56310
,1,1946,56315
,1,1947,56320
,1,1948,56325
,1,1949,56330
,1,1950,56335
,1,1951,56340
,1,1952,56345
,1,1953,56350
,1,1954,56355
,1,1955,56360
,1,1956,56365
,1,1957,56370
,1,1958,56375
,1,1959,56380
,1,1960,56385
,1,1961,56390
,1,1962,56395
,1,1963,56400
,1,1964,56405
,1,1965,56410
,1,1966,56415
,1,1967,56420
,1,1968,56425
,1,1969,56430
,1,1970,56435
,1,1971,56440
,1,1972,56445
,1,1973,56450
,1,1974,56455
,1,1975,56460
,1,1976,56465
,1,1977,56470
,1,1978,56475
,1,1979,56480
,1,1980,56485
,1,1981,56490
,1,1982,56495
,1,1983,56500
,1,1984,56505
,1,1985,56510
,1,1986,56515
,1,1987,56520
,1,1988,56525
,1,1989,56530
,1,1990,56535
,1,1991,56540
,1,1992,56545
,1,1993,56550
,1,1994,56555
,1,1995,56560
,1,1996,56565
,1,1997,56570
,1,1998,56575
,1,1999,56580
,1,2000,56585
,1,2001,56590
,1,2002,56595
,1,2003,56600
,1,2004,56605
,1,2005,56610
,1,2006,56615
,1,2007,56620
,1,2008,56625
,1,2009,56630
,1,2010,56635
,1,2011,56640
,1,2012,56645
,1,2013,56650
,1,2014,56655
,1,2015,56660
,1,2016,56665
,1,2017,56670
,1,2018,56675
,1,2019,56680
,1,2020,56685
,1,2021,56690
,1,2022,56695
,1,2023,56700
,1,2024,56705
,1,2025,56710
,1,2026,56715
,1,2027,56720
,1,2028,56725
,1,2029,56730
,1,2030,56735
,1,2031,56740
,1,2032,56745
,1,2033,56750
,1,2034,56755
,1,2035,56760
,1,2036,56765
,1,2037,56770
,1,2038,56775
,1,2039,56780
,1,2040,56785
,1,2041,56790
,1,2042,56795
,1,2043,56800
,1,2044,56805
,1,2045,56810
,1,2046,56815
,1,2047,56820
,1,2048,56825
,1,2049,56830
,1,2050,56835
,1,2051,56840
,1,2052,56845
,1,2053,56850
,1,2054,56855
,1,2055,56860
,1,2056,56865
,1,2057,56870
,1,2058,56875
,1,2059,56880
,1,2060,56885
,1,2061,56890
,1,2062,56895
,1,2063,56900
,1,2064,56905
,1,2065,56910
,1,2066,56915
,1,2067,56920
,1,2068,56925
,1,2069,56930
,1,2070,56935
,1,2071,56940
,1,2072,56945
,1,2073,56950
,1,2074,56955
,1,2075,56960
,1,2076,56965
,1,2077,56970
,1,2078,56975
,1,2079,56980
,1,2080,56985
,1,2081,56990
,1,2082,56995
,1,2083,57000
,1,2084,57005
,1,2085,57010
,1,2086,57015
,1,2087,57020
,1,2088,57025
,1,2089,57030
,1,2090,57035
,1,2091,57040
,1,2092,57045
,1,2093,57050
,1,2094,57055
,1,2095,57060
,1,2096,57065
,1,2097,57070
,1,2098,57075
,1,2099,57080
,1,2100,57085
,1,2101,57090
,1,2102,57095
,1,2103,57100
,1,2104,57105
,1,2105,57110
,1,2106,57115
,1,2107,57120
,1,2108,57125
,1,2109,57130
,1,2110,57135
,1,2111,57140
,1,2112,57145
,1,2113,57150
,1,2114,57155
,1,2115,57160
,1,2116,57165
,1,2117,57170
,1,2118,57175
,1,2119,57180
,1,2120,57185
,1,2121,57190
,1,2122,57195
,1,2123,57200
,1,2124,57205
,1,2125,57210
,1,2126,57215
,1,2127,57220
,1,2128,57225
,1,2129,57230
,1,2130,57235
,1,2131,57240
,1,2132,57245
,1,2133,57250
,1,2134,57255
,1,2135,57260
,1,2136,57265
,1,2137,57270
,1,2138,57275
,1,2139,57280
,1,2140,57285
,1,2141,57290
,1,2142,57295
,1,2143,57300
,1,2144,57305
,1,2145,57310
,1,2146,57315
,1,2147,57320
,1,2148,57325
,1,2149,57330
,1,2150,57335
,1,2151,57340
,1,2152,57345
,1,2153,57350
,1,2154,57355
,1,2155,57360
,1,2156,57365
,1,2157,57370
,1,2158,57375
,1,2159,57380
,1,2160,57385
,1,2161,57390
,1,2162,57395
,1,2163,57400
,1,2164,57405
,1,2165,57410
,1,2166,57415
,1,2167,57420
,1,2168,57425
,1,2169,57430
,1,2170,57435
,1,2171,57440
,1,2172,57445
,1,2173,57450
,1,2174,57455
,1,2175,57460
,1,2176,57465
,1,2177,57470
,1,2178,57475
,1,2179,57480
,1,2180,57485
,1,2181,57490
,1,2182,57495
,1,2183,57500
,1,2184,57505
,1,2185,57510
,1,2186,57515
,1,2187,57520
,1,2188,57525
,1,2189,57530
,1,2190,57535
,1,2191,57540
,1,2192,57545
,1,2193,57550
,1,2194,57555
,1,2195,57560
,1,2196,57565
,1,2197,57570
,1,2198,57575
,1,2199,57580
,1,2200,57585
,1,2201,57590
,1,2202,57595
,1,2203,57600
,1,2204,57605
,1,2205,57610
,1,2206,57615
,1,2207,57620
,1,2208,57625
,1,2209,57630
,1,2210,57635
,1,2211,57640
,1,2212,57645
,1,2213,57650
,1,2214,57655
,1,2215,57660
,1,2216,57665
,1,2217,57670
,1,2218,57675
,1,2219,57680
,1,2220,57685
,1,2221,57690
,1,2222,57695
,1,2223,57700
,1,2224,57705
,1,2225,57710
,1,2226,57715
,1,2227,57720
,1,2228,57725
,1,2229,57730
,1,2230,57735
,1,2231,57740
,1,2232,57745
,1,2233,57750
,1,2234,57755
,1,2235,57760
,1,2236,57765
,1,2237,57770
,1,2238,57775
,1,2239,57780
,1,2240,57785
,1,2241,57790
,1,2242,57795
,1,2243,57800
,1,2244,57805
,1,2245,57810
,1,2246,57815
,1,2247,57820
,1,2248,57825
,1,2249,57830
,1,2250,57835
,1,2251,57840
,1,2252,57845
,1,2253,57850
,1,2254,57855
,1,2255,57860
,1,2256,57865
,1,2257,57870
,1,2258,57875
,1,2259,57880
,1,2260,57885
,1,2261,57890
,1,2262,57895
,1,2263,57900
,1,2264,57905
,1,2265,57910
,1,2266,57915
,1,2267,57920
,1,2268,57925
,1,2269,57930
,1,2270,57935
,1,2271,57940
,1,2272,57945
,1,2273,57950
,1,2274,57955
,1,2275,57960
,1,2276,57965
,1,2277,57970
,1,2278,57975
,1,2279,57980
,1,2280,57985
,1,2281,57990
,1,2282,57995
,1,2283,58000
,1,2284,58005
,1,2285,58010
,1,2286,58015
,1,2287,58020
,1,2288,58025
,1,2289,58030
,1,2290,58035
,1,2291,58040
,1,2292,58045
,1,2293,58050
,1,2294,58055
,1,2295,58060
,1,2296,58065
,1,2297,58070
,1,2298,58075
,1,2299,58080
,1,2300,58085
,1,2301,58090
,1,2302,58095
,1,2303,58100
,1,2304,58105
,1,2305,58110
,1,2306,58115
,1,2307,58120
,1,2308,58125
,1,2309,58130
,1,2310,58135
,1,2311,58140
,1,2312,58145
,1,2313,58150
,1,2314,58155
,1,2315,58160
,1,2316,58165
,1,2317,58170
,1,2318,58175
,1,2319,58180
,1,2320,58185
,1,2321,58190
,1,2322,58195
,1,2323,58200
,1,2324,58205
,1,2325,58210
,1,2326,58215
,1,2327,58220
,1,2328,58225
,1,2329,58230
,1,2330,58235
,1,2331,58240
,1,2332,58245
,1,2333,58250
,1,2334,58255
,1,2335,58260
,1,2336,58265
,1,2337,58270
,1,2338,58275
,1,2339,58280
,1,2340,58285
,1,2341,58290
,1,2342,58295
,1,2343,58300
,1,2344,58305
,1,2345,58310
,1,2346,58315
,1,2347,58320
,1,2348,58325
,1,2349,58330
,1,2350,58335
,1,2351,58340
,1,2352,58345
,1,2353,58350
,1,2354,58355
,1,2355,58360
,1,2356,58365
,1,2357,58370
,1,2358,58375
,1,2359,58380
,1,2360,58385
,1,2361,58390
,1,2362,58395
,1,2363,58400
,1,2364,58405
,1,2365,58410
,1,2366,58415
,1,2367,58420
,1,2368,58425
,1,2369,58430
,1,2370,58435
,1,2371,58440
,1,2372,58445
,1,2373,58450
,1,2374,58455
,1,2375,58460
,1,2376,58465
,1,2377,58470
,1,2378,58475
,1,2379,58480
,1,2380,58485
,1,2381,58490
,1,2382,58495
,1,2383,58500
,1,2384,58505
,1,2385,58510
,1,2386,58515
,1,2387,58520
,1,2388,58525
,1,2389,58530
,1,2390,58535
,1,2391,58540
,1,2392,58545
,1,2393,58550
,1,2394,58555
,1,2395,58560
,1,2396,58565
,1,2397,58570
,1,2398,58575
,1,2399,58580
,1,2400,58585
,1,2401,58590
,1,2402,58595
,1,2403,58600
,1,2404,58605
,1,2405,58610
,1,2406,58615
,1,2407,58620
,1,2408,58625
,1,2409,58630
,1,2410,58635
,1,2411,58640
,1,2412,58645
,1,2413,58650
,1,2414,58655
,1,2415,58660
,1,2416,58665
,1,2417,58670
,1,2418,58675
,1,2419,58680
,1,2420,58685
,1,2421,58690
,1,2422,58695
,1,2423,58700
,1,2424,58705
,1,2425,58710
,1,2426,58715
,1,2427,58720
,1,2428,58725
,1,2429,58730
,1,2430,58735
,1,2431,58740
,1,2432,58745
,1,2433,58750
,1,2434,58755
,1,2435,58760
,1,2436,58765
,1,2437,58770
,1,2438,58775
,1,2439,58780
,1,2440,58785
,1,2441,58790
,1,2442,58795
,1,2443,58800
,1,2444,58805
,1,2445,58810
,1,2446,58815
,1,2447,58820
,1,2448,58825
,1,2449,58830
,1,2450,58835
,1,2451,58840
,1,2452,58845
,1,2453,58850
,1,2454,58855
,1,2455,58860
,1,2456,58865
,1,2457,58870
,1,2458,58875
,1,2459,58880
,1,2460,58885
,1,2461,58890
,1,2462,58895
,1,2463,58900
,1,2464,58905
,1,2465,58910
,1,2466,58915
,1,2467,58920
,1,2468,58925
,1,2469,58930
,1,2470,58935
,1,2471,58940
,1,2472,58945
,1,2473,58950
,1,2474,58955
,1,2475,58960
,1,2476,58965
,1,2477,58970
,1,2478,58975
,1,2479,58980
,1,2480,58985
,1,2481,58990
,1,2482,58995
,1,2483,59000
,1,2484,59005
,1,2485,59010
,1,2486,59015
,1,2487,59020
,1,2488,59025
,1,2489,59030
,1,2490,59035
,1,2491,59040
,1,2492,59045
,1,2493,59050
,1,2494,59055
,1,2495,59060
,1,2496,59065
,1,2497,59070
,1,2498,59075
,1,2499,59080
,1,2500,59085
,1,2501,59090
,1,2502,59095
,1,2503,59100
,1,2504,59105
,1,2505,59110
,1,2506,59115
,1,2507,59120
,1,2508,59125
,1,2509,59130
,1,2510,59135
,1,2511,59140
,1,2512,59145
,1,2513,59150
,1,2514,59155
,1,2515,59160
,1,2516,59165
,1,2517,59170
,1,2518,59175
,1,2519,59180
,1,2520,59185
,1,2521,59190
,1,2522,59195
,1,2523,59200
,1,2524,59205
,1,2525,59210
,1,2526,59215
,1,2527,59220
,1,2528,59225
,1,2529,59230
,1,2530,59235
,1,2531,59240
,1,2532,59245
,1,2533,59250
,1,2534,59255
,1,2535,59260
,1,2536,59265
,1,2537,59270
,1,2538,59275
,1,2539,59280
,1,2540,59285
,1,2541,59290
,1,2542,59295
,1,2543,59300
,1,2544,59305
,1,2545,59310
,1,2546,59315
,1,2547,59320
,1,2548,59325
,1,2549,59330
,1,2550,59335
,1,2551,59340
,1,2552,59345
,1,2553,59350
,1,2554,59355
,1,2555,59360
,1,2556,59365
,1,2557,59370
,1,2558,59375
,1,2559,59380
,1,2560,59385
,1,2561,59390
,1,2562,59395
,1,2563,59400
,1,2564,59405
,1,2565,59410
,1,2566,59415
,1,2567,59420
,1,2568,59425
,1,2569,59430
,1,2570,59435
,1,2571,59440
,1,2572,59445
,1,2573,59450
,1,2574,59455
,1,2575,59460
,1,2576,59465
,1,2577,59470
,1,2578,59475
,1,2579,59480
,1,2580,59485
,1,2581,59490
,1,2582,59495
,1,2583,59500
,1,2584,59505
,1,2585,59510
,1,2586,59515
,1,2587,59520
,1,2588,59525
,1,2589,59530
,1,2590,59535
,1,2591,59540
,1,2592,59545
,1,2593,59550
,1,2594,59555
,1,2595,59560
,1,2596,59565
,1,2597,59570
,1,2598,59575
,1,2599,59580
,1,2600,59585
,1,2601,59590
,1,2602,59595
,1,2603,59600
,1,2604,59605
,1,2605,59610
,1,2606,59615
,1,2607,59620
,1,2608,59625
,1,2609,59630
,1,2610,59635
,1,2611,59640
,1,2612,59645
,1,2613,59650
,1,2614,59655
,1,2615,59660
,1,2616,59665
,1,2617,59670
,1,2618,59675
,1,2619,59680
,1,2620,59685
,1,2621,59690
,1,2622,59695
,1,2623,59700
,1,2624,59705
,1,2625,59710
,1,2626,59715
,1,2627,59720
,1,2628,59725
,1,2629,59730
,1,2630,59735
,1,2631,59740
,1,2632,59745
,1,2633,59750
,1,2634,59755
,1,2635,59760
,1,2636,59765
,1,2637,59770
,1,2638,59775
,1,2639,59780
,1,2640,59785
,1,2641,59790
,1,2642,59795
,1,2643,59800
,1,2644,59805
,1,2645,59810
,1,2646,59815
,1,2647,59820
,1,2648,59825
,1,2649,59830
,1,2650,59835
,1,2651,59840
,1,2652,59845
,1,2653,59850
,1,2654,59855
,1,2655,59860
,1,2656,59865
,1,2657,59870
,1,2658,59875
,1,2659,59880
,1,2660,59885
,1,2661,59890
,1,2662,59895
,1,2663,59900
,1,2664,59905
,1,2665,59910
,1,2666,59915
,1,2667,59920
,1,2668,59925
,1,2669,59930
,1,2670,59935
,1,2671,59940
,1,2672,59945
,1,2673,59950
,1,2674,59955
,1,2675,59960
,1,2676,59965
,1,2677,59970
,1,2678,59975
,1,2679,59980
,1,2680,59985
,1,2681,59990
,1,2682,59995
,1,2683,60000
,1,2684,60005
,1,2685,60010
,1,2686,60015
,1,2687,60020
,1,2688,60025
,1,2689,60030
,1,2690,60035
,1,2691,60040
,1,2692,60045
,1,2693,60050
,1,2694,60055
,1,2695,60060
,1,2696,60065
,1,2697,60070
,1,2698,60075
,1,2699,60080
,1,2700,60085
,1,2701,60090
,1,2702,60095
,1,2703,60100
,1,2704,60105
,1,2705,60110
,1,2706,60115
,1,2707,60120
,1,2708,60125
,1,2709,60130
,1,2710,60135
,1,2711,60140
,1,2712,60145
,1,2713,60150
,1,2714,60155
,1,2715,60160
,1,2716,60165
,1,2717,60170
,1,2718,60175
,1,2719,60180
,1,2720,60185
,1,2721,60190
,1,2722,60195
,1,2723,60200
,1,2724,60205
,1,2725,60210
,1,2726,60215
,1,2727,60220
,1,2728,60225
,1,2729,60230
,1,2730,60235
,1,2731,60240
,1,2732,60245
,1,2733,60250
,1,2734,60255
,1,2735,60260
,1,2736,60265
,1,2737,60270
,1,2738,60275
,1,2739,60280
,1,2740,60285
,1,2741,60290
,1,2742,60295
,1,2743,60300
,1,2744,60305
,1,2745,60310
,1,2746,60315
,1,2747,60320
,1,2748,60325
,1,2749,60330
,1,2750,60335
,1,2751,60340
,1,2752,60345
,1,2753,60350
,1,2754,60355
,1,2755,60360
,1,2756,60365
,1,2757,60370
,1,2758,60375
,1,2759,60380
,1,2760,60385
,1,2761,60390
,1,2762,60395
,1,2763,60400
,1,2764,60405
,1,2765,60410
,1,2766,60415
,1,2767,60420
,1,2768,60425
,1,2769,60430
,1,2770,60435
,1,2771,60440
,1,2772,60445
,1,2773,60450
,1,2774,60455
,1,2775,60460
,1,2776,60465
,1,2777,60470
,1,2778,60475
,1,2779,60480
,1,2780,60485
,1,2781,60490
,1,2782,60495
,1,2783,60500
,1,2784,60505
,1,2785,60510
,1,2786,60515
,1,2787,60520
,1,2788,60525
,1,2789,60530
,1,2790,60535
,1,2791,60540
,1,2792,60545
,1,2793,60550
,1,2794,60555
,1,2795,60560
,1,2796,60565
,1,2797,60570
,1,2798,60575
,1,2799,60580
,1,2800,60585
,1,2801,60590
,1,2802,60595
,1,2803,60600
,1,2804,60605
,1,2805,60610
,1,2806,60615
,1,2807,60620
,1,2808,60625
,1,2809,60630
,1,2810,60635
,1,2811,60640
,1,2812,60645
,1,2813,60650
,1,2814,60655
,1,2815,60660
,1,2816,60665
,1,2817,60670
,1,2818,60675
,1,2819,60680
,1,2820,60685
,1,2821,60690
,1,2822,60695
,1,2823,60700
,1,2824,60705
,1,2825,60710
,1,2826,60715
,1,2827,60720
,1,2828,60725
,1,2829,60730
,1,2830,60735
,1,2831,60740
,1,2832,60745
,1,2833,60750
,1,2834,60755
,1,2835,60760
,1,2836,60765
,1,2837,60770
,1,2838,60775
,1,2839,60780
,1,2840,60785
,1,2841,60790
,1,2842,60795
,1,2843,60800
,1,2844,60805
,1,2845,60810
,1,2846,60815
,1,2847,60820
,1,2848,60825
,1,2849,60830
,1,2850,60835
,1,2851,60840
,1,2852,60845
,1,2853,60850
,1,2854,60855
,1,2855,60860
,1,2856,60865
,1,2857,60870
,1,2858,60875
,1,2859,60880
,1,2860,60885
,1,2861,60890
,1,2862,60895
,1,2863,60900
,1,2864,60905
,1,2865,60910
,1,2866,60915
,1,2867,60920
,1,2868,60925
,1,2869,60930
,1,2870,60935
,1,2871,60940
,1,2872,60945
,1,2873,60950
,1,2874,60955
,1,2875,60960
,1,2876,60965
,1,2877,60970
,1,2878,60975
,1,2879,60980
,1,2880,60985
,1,2881,60990
,1,2882,60995
,1,2883,61000
,1,2884,61005
,1,2885,61010
,1,2886,61015
,1,2887,61020
,1,2888,61025
,1,2889,61030
,1,2890,61035
,1,2891,61040
,1,2892,61045
,1,2893,61050
,1,2894,61055
,1,2895,61060
,1,2896,61065
,1,2897,61070
,1,2898,61075
,1,2899,61080
,1,2900,61085
,1,2901,61090
,1,2902,61095
,1,2903,61100
,1,2904,61105
,1,2905,61110
,1,2906,61115
,1,2907,61120
,1,2908,61125
,1,2909,61130
,1,2910,61135
,1,2911,61140
,1,2912,61145
,1,2913,61150
,1,2914,61155
,1,2915,61160
,1,2916,61165
,1,2917,61170
,1,2918,61175
,1,2919,61180
,1,2920,61185
,1,2921,61190
,1,2922,61195
,1,2923,61200
,1,2924,61205
,1,2925,61210
,1,2926,61215
,1,2927,61220
,1,2928,61225
,1,2929,61230
,1,2930,61235
,1,2931,61240
,1,2932,61245
,1,2933,61250
,1,2934,61255
,1,2935,61260
,1,2936,61265
,1,2937,61270
,1,2938,61275
,1,2939,61280
,1,2940,61285
,1,2941,61290
,1,2942,61295
,1,2943,61300
,1,2944,61305
,1,2945,61310
,1,2946,61315
,1,2947,61320
,1,2948,61325
,1,2949,61330
,1,2950,61335
,1,2951,61340
,1,2952,61345
,1,2953,61350
,1,2954,61355
,1,2955,61360
,1,2956,61365
,1,2957,61370
,1,2958,61375
,1,2959,61380
,1,2960,61385
,1,2961,61390
,1,2962,61395
,1,2963,61400
,1,2964,61405
,1,2965,61410
,1,2966,61415
,1,2967,61420
,1,2968,61425
,1,2969,61430
,1,2970,61435
,1,2971,61440
,1,2972,61445
,1,2973,61450
,1,2974,61455
,1,2975,61460
,1,2976,61465
,1,2977,61470
,1,2978,61475
,1,2979,61480
,1,2980,61485
,1,2981,61490
,1,2982,61495
,1,2983,61500
,1,2984,61505
,1,2985,61510
,1,2986,61515
,1,2987,61520
,1,2988,61525
,1,2989,61530
,1,2990,61535
,1,2991,61540
,1,2992,61545
,1,2993,61550
,1,2994,61555
,1,2995,61560
,1,2996,61565
,1,2997,61570
,1,2998,61575
,1,2999,61580
,1,3000,61585
,1,3001,61590
,1,3002,61595
,1,3003,61600
,1,3004,61605
,1,3005,61610
,1,3006,61615
,1,3007,61620
,1,3008,61625
,1,3009,61630
,1,3010,61635
,1,3011,61640
,1,3012,61645
,1,3013,61650
,1,3014,61655
,1,3015,61660
,1,3016,61665
,1,3017,61670
,1,3018,61675
,1,3019,61680
,1,3020,61685
,1,3021,61690
,1,3022,61695
,1,3023,61700
,1,3024,61705
,1,3025,61710
,1,3026,61715
,1,3027,61720
,1,3028,61725
,1,3029,61730
,1,3030,61735
,1,3031,61740
,1,3032,61745
,1,3033,61750
,1,3034,61755
,1,3035,61760
,1,3036,61765
,1,3037,61770
,1,3038,61775
,1,3039,61780
,1,3040,61785
,1,3041,61790
,1,3042,61795
,1,3043,61800
,1,3044,61805
,1,3045,61810
,1,3046,61815
,1,3047,61820
,1,3048,61825
,1,3049,61830
,1,3050,61835
,1,3051,61840
,1,3052,61845
,1,3053,61850
,1,3054,61855
,1,3055,61860
,1,3056,61865
,1,3057,61870
,1,3058,61875
,1,3059,61880
,1,3060,61885
,1,3061,61890
,1,3062,61895
,1,3063,61900
,1,3064,61905
,1,3065,61910
,1,3066,61915
,1,3067,61920
,1,3068,61925
,1,3069,61930
,1,3070,61935
,1,3071,61940
,1,3072,61945
,1,3073,61950
,1,3074,61955
,1,3075,61960
,1,3076,61965
,1,3077,61970
,1,3078,61975
,1,3079,61980
,1,3080,61985
,1,3081,61990
,1,3082,61995
,1,3083,62000
,1,3084,62005
,1,3085,62010
,1,3086,62015
,1,3087,62020
,1,3088,62025
,1,3089,62030
,1,3090,62035
,1,3091,62040
,1,3092,62045
,1,3093,62050
,1,3094,62055
,1,3095,62060
,1,3096,62065
,1,3097,62070
,1,3098,62075
,1,3099,62080
,1,3100,62085
,1,3101,62090
,1,3102,62095
,1,3103,62100
,1,3104,62105
,1,3105,62110
,1,3106,62115
,1,3107,62120
,1,3108,62125
,1,3109,62130
,1,3110,62135
,1,3111,62140
,1,3112,62145
,1,3113,62150
,1,3114,62155
,1,3115,62160
,1,3116,62165
,1,3117,62170
,1,3118,62175
,1,3119,62180
,1,3120,62185
,1,3121,62190
,1,3122,62195
,1,3123,62200
,1,3124,62205
,1,3125,62210
,1,3126,62215
,1,3127,62220
,1,3128,62225
,1,3129,62230
,1,3130,62235
,1,3131,62240
,1,3132,62245
,1,3133,62250
,1,3134,62255
,1,3135,62260
,1,3136,62265
,1,3137,62270
,1,3138,62275
,1,3139,62280
,1,3140,62285
,1,3141,62290
,1,3142,62295
,1,3143,62300
,1,3144,62305
,1,3145,62310
,1,3146,62315
,1,3147,62320
,1,3148,62325
,1,3149,62330
,1,3150,62335
,1,3151,62340
,1,3152,62345
,1,3153,62350
,1,3154,62355
,1,3155,62360
,1,3156,62365
,1,3157,62370
,1,3158,62375
,1,3159,62380
,1,3160,62385
,1,3161,62390
,1,3162,62395
,1,3163,62400
,1,3164,62405
,1,3165,62410
,1,3166,62415
,1,3167,62420
,1,3168,62425
,1,3169,62430
,1,3170,62435
,1,3171,62440
,1,3172,62445
,1,3173,62450
,1,3174,62455
,1,3175,62460
,1,3176,62465
,1,3177,62470
,1,3178,62475
,1,3179,62480
,1,3180,62485
,1,3181,62490
,1,3182,62495
,1,3183,62500
,1,3184,62505
,1,3185,62510
,1,3186,62515
,1,3187,62520
,1,3188,62525
,1,3189,62530
,1,3190,62535
,1,3191,62540
,1,3192,62545
,1,3193,62550
,1,3194,62555
,1,3195,62560
,1,3196,62565
,1,3197,62570
,1,3198,62575
,1,3199,62580
,1,3200,62585
,1,3201,62590
,1,3202,62595
,1,3203,62600
,1,3204,62605
,1,3205,62610
,1,3206,62615
,1,3207,62620
,1,3208,62625
,1,3209,62630
,1,3210,62635
,1,3211,62640
,1,3212,62645
,1,3213,62650
,1,3214,62655
,1,3215,62660
,1,3216,62665
,1,3217,62670
,1,3218,62675
,1,3219,62680
,1,3220,62685
,1,3221,62690
,1,3222,62695
,1,3223,62700
,1,3224,62705
,1,3225,62710
,1,3226,62715
,1,3227,62720
,1,3228,62725
,1,3229,62730
,1,3230,62735
,1,3231,62740
,1,3232,62745
,1,3233,62750
,1,3234,62755
,1,3235,62760
,1,3236,62765
,1,3237,62770
,1,3238,62775
,1,3239,62780
,1,3240,62785
,1,3241,62790
,1,3242,62795
,1,3243,62800
,1,3244,62805
,1,3245,62810
,1,3246,62815
,1,3247,62820
,1,3248,62825
,1,3249,62830
,1,3250,62835
,1,3251,62840
,1,3252,62845
,1,3253,62850
,1,3254,62855
,1,3255,62860
,1,3256,62865
,1,3257,62870
,1,3258,62875
,1,3259,62880
,1,3260,62885
,1,3261,62890
,1,3262,62895
,1,3263,62900
,1,3264,62905
,1,3265,62910
,1,3266,62915
,1,3267,62920
,1,3268,62925
,1,3269,62930
,1,3270,62935
,1,3271,62940
,1,3272,62945
,1,3273,62950
,1,3274,62955
,1,3275,62960
,1,3276,62965
,1,3277,62970
,1,3278,62975
,1,3279,62980
,1,3280,62985
,1,3281,62990
,1,3282,62995
,1,3283,63000
,1,3284,63005
,1,3285,63010
,1,3286,63015
,1,3287,63020
,1,3288,63025
,1,3289,63030
,1,3290,63035
,1,3291,63040
,1,3292,63045
,1,3293,63050
,1,3294,63055
,1,3295,63060
,1,3296,63065
,1,3297,63070
,1,3298,63075
,1,3299,63080
,1,3300,63085
,1,3301,63090
,1,3302,63095
,1,3303,63100
,1,3304,63105
,1,3305,63110
,1,3306,63115
,1,3307,63120
,1,3308,63125
,1,3309,63130
,1,3310,63135
,1,3311,63140
,1,3312,63145
,1,3313,63150
,1,3314,63155
,1,3315,63160
,1,3316,63165
,1,3317,63170
,1,3318,63175
,1,3319,63180
,1,3320,63185
,1,3321,63190
,1,3322,63195
,1,3323,63200
,1,3324,63205
,1,3325,63210
,1,3326,63215
,1,3327,63220
,1,3328,63225
,1,3329,63230
,1,3330,63235
,1,3331,63240
,1,3332,63245
,1,3333,63250
,1,3334,63255
,1,3335,63260
,1,3336,63265
,1,3337,63270
,1,3338,63275
,1,3339,63280
,1,3340,63285
,1,3341,63290
,1,3342,63295
,1,3343,63300
,1,3344,63305
,1,3345,63310
,1,3346,63315
,1,3347,63320
,1,3348,63325
,1,3349,63330
,1,3350,63335
,1,3351,63340
,1,3352,63345
,1,3353,63350
,1,3354,63355
,1,3355,63360
,1,3356,63365
,1,3357,63370
,1,3358,63375
,1,3359,63380
,1,3360,63385
,1,3361,63390
,1,3362,63395
,1,3363,63400
,1,3364,63405
,1,3365,63410
,1,3366,63415
,1,3367,63420
,1,3368,63425
,1,3369,63430
,1,3370,63435
,1,3371,63440
,1,3372,63445
,1,3373,63450
,1,3374,63455
,1,3375,63460
,1,3376,63465
,1,3377,63470
,1,3378,63475
,1,3379,63480
,1,3380,63485
,1,3381,63490
,1,3382,63495
,1,3383,63500
,1,3384,63505
,1,3385,63510
,1,3386,63515
,1,3387,63520
,1,3388,63525
,1,3389,63530
,1,3390,63535
,1,3391,63540
,1,3392,63545
,1,3393,63550
,1,3394,63555
,1,3395,63560
,1,3396,63565
,1,3397,63570
,1,3398,63575
,1,3399,63580
,1,3400,63585
,1,3401,63590
,1,3402,63595
,1,3403,63600
,1,3404,63605
,1,3405,63610
,1,3406,63615
,1,3407,63620
,1,3408,63625
,1,3409,63630
,1,3410,63635
,1,3411,63640
,1,3412,63645
,1,3413,63650
,1,3414,63655
,1,3415,63660
,1,3416,63665
,1,3417,63670
,1,3418,63675
,1,3419,63680
,1,3420,63685
,1,3421,63690
,1,3422,63695
,1,3423,63700
,1,3424,63705
,1,3425,63710
,1,3426,63715
,1,3427,63720
,1,3428,63725
,1,3429,63730
,1,3430,63735
,1,3431,63740
,1,3432,63745
,1,3433,63750
,1,3434,63755
,1,3435,63760
,1,3436,63765
,1,3437,63770
,1,3438,63775
,1,3439,63780
,1,3440,63785
,1,3441,63790
,1,3442,63795
,1,3443,63800
,1,3444,63805
,1,3445,63810
,1,3446,63815
,1,3447,63820
,1,3448,63825
,1,3449,63830
,1,3450,63835
,1,3451,63840
,1,3452,63845
,1,3453,63850
,1,3454,63855
,1,3455,63860
,1,3456,63865
,1,3457,63870
,1,3458,63875
,1,3459,63880
,1,3460,63885
,1,3461,63890
,1,3462,63895
,1,3463,63900
,1,3464,63905
,1,3465,63910
,1,3466,63915
,1,3467,63920
,1,3468,63925
,1,3469,63930
,1,3470,63935
,1,3471,63940
,1,3472,63945
,1,3473,63950
,1,3474,63955
,1,3475,63960
,1,3476,63965
,1,3477,63970
,1,3478,63975
,1,3479,63980
,1,3480,63985
,1,3481,63990
,1,3482,63995
,1,3483,64000
,1,3484,64005
,1,3485,64010
,1,3486,64015
,1,3487,64020
,1,3488,64025
,1,3489,64030
,1,3490,64035
,1,3491,64040
,1,3492,64045
,1,3493,64050
,1,3494,64055
,1,3495,64060
,1,3496,64065
,1,3497,64070
,1,3498,64075
,1,3499,64080
,1,3500,64085
,1,3501,64090
,1,3502,64095
,1,3503,64100
,1,3504,64105
,1,3505,64110
,1,3506,64115
,1,3507,64120
,1,3508,64125
,1,3509,64130
,1,3510,64135
,1,3511,64140
,1,3512,64145
,1,3513,64150
,1,3514,64155
,1,3515,64160
,1,3516,64165
,1,3517,64170
,1,3518,64175
,1,3519,64180
,1,3520,64185
,1,3521,64190
,1,3522,64195
,1,3523,64200
,1,3524,64205
,1,3525,64210
,1,3526,64215
,1,3527,64220
,1,3528,64225
,1,3529,64230
,1,3530,64235
,1,3531,64240
,1,3532,64245
,1,3533,64250
,1,3534,64255
,1,3535,64260
,1,3536,64265
,1,3537,64270
,1,3538,64275
,1,3539,64280
,1,3540,64285
,1,3541,64290
,1,3542,64295
,1,3543,64300
,1,3544,64305
,1,3545,64310
,1,3546,64315
,1,3547,64320
,1,3548,64325
,1,3549,64330
,1,3550,64335
,1,3551,64340
,1,3552,64345
,1,3553,64350
,1,3554,64355
,1,3555,64360
,1,3556,64365
,1,3557,64370
,1,3558,64375
,1,3559,64380
,1,3560,64385
,1,3561,64390
,1,3562,64395
,1,3563,64400
,1,3564,64405
,1,3565,64410
,1,3566,64415
,1,3567,64420
,1,3568,64425
,1,3569,64430
,1,3570,64435
,1,3571,64440
,1,3572,64445
,1,3573,64450
,1,3574,64455
,1,3575,64460
,1,3576,64465
,1,3577,64470
,1,3578,64475
,1,3579,64480
,1,3580,64485
,1,3581,64490
,1,3582,64495
,1,3583,64500
,1,3584,64505
,1,3585,64510
,1,3586,64515
,1,3587,64520
,1,3588,64525
,1,3589,64530
,1,3590,64535
,1,3591,64540
,1,3592,64545
,1,3593,64550
,1,3594,64555
,1,3595,64560
,1,3596,64565
,1,3597,64570
,1,3598,64575
,1,3599,64580
,1,3600,64585
,1,3601,64590
,1,3602,64595
,1,3603,64600
,1,3604,64605
,1,3605,64610
,1,3606,64615
,1,3607,64620
,1,3608,64625
,1,3609,64630
,1,3610,64635
,1,3611,64640
,1,3612,64645
,1,3613,64650
,1,3614,64655
,1,3615,64660
,1,3616,64665
,1,3617,64670
,1,3618,64675
,1,3619,64680
,1,3620,64685
,1,3621,64690
,1,3622,64695
,1,3623,64700
,1,3624,64705
,1,3625,64710
,1,3626,64715
,1,3627,64720
,1,3628,64725
,1,3629,64730
,1,3630,64735
,1,3631,64740
,1,3632,64745
,1,3633,64750
,1,3634,64755
,1,3635,64760
,1,3636,64765
,1,3637,64770
,1,3638,64775
,1,3639,64780
,1,3640,64785
,1,3641,64790
,1,3642,64795
,1,3643,64800
,1,3644,64805
,1,3645,64810
,1,3646,64815
,1,3647,64820
,1,3648,64825
,1,3649,64830
,1,3650,64835
,1,3651,64840
,1,3652,64845
,1,3653,64850
,1,3654,64855
,1,3655,64860
,1,3656,64865
,1,3657,64870
,1,3658,64875
,1,3659,64880
,1,3660,64885
,1,3661,64890
,1,3662,64895
,1,3663,64900
,1,3664,64905
,1,3665,64910
,1,3666,64915
,1,3667,64920
,1,3668,64925
,1,3669,64930
,1,3670,64935
,1,3671,64940
,1,3672,64945
,1,3673,64950
,1,3674,64955
,1,3675,64960
,1,3676,64965
,1,3677,64970
,1,3678,64975
,1,3679,64980
,1,3680,64985
,1,3681,64990
,1,3682,64995
,1,3683,65000
,1,3684,65005
,1,3685,65010
,1,3686,65015
,1,3687,65020
,1,3688,65025
,1,3689,65030
,1,3690,65035
,1,3691,65040
,1,3692,65045
,1,3693,65050
,1,3694,65055
,1,3695,65060
,1,3696,65065
,1,3697,65070
,1,3698,65075
,1,3699,65080
,1,3700,65085
,1,3701,65090
,1,3702,65095
,1,3703,65100
,1,3704,65105
,1,3705,65110
,1,3706,65115
,1,3707,65120
,1,3708,65125
,1,3709,65130
,1,3710,65135
,1,3711,65140
,1,3712,65145
,1,3713,65150
,1,3714,65155
,1,3715,65160
,1,3716,65165
,1,3717,65170
,1,3718,65175
,1,3719,65180
,1,3720,65185
,1,3721,65190
,1,3722,65195
,1,3723,65200
,1,3724,65205
,1,3725,65210
,1,3726,65215
,1,3727,65220
,1,3728,65225
,1,3729,65230
,1,3730,65235
,1,3731,65240
,1,3732,65245
,1,3733,65250
,1,3734,65255
,1,3735,65260
,1,3736,65265
,1,3737,65270
,1,3738,65275
,1,3739,65280
,1,3740,65285
,1,3741,65290
,1,3742,65295
,1,3743,65300
,1,3744,65305
,1,3745,65310
,1,3746,65315
,1,3747,65320
,1,3748,65325
,1,3749,65330
,1,3750,65335
,1,3751,65340
,1,3752,65345
,1,3753,65350
,1,3754,65355
,1,3755,65360
,1,3756,65365
,1,3757,65370
,1,3758,65375
,1,3759,65380
,1,3760,65385
,1,3761,65390
,1,3762,65395
,1,3763,65400
,1,3764,65405
,1,3765,65410
,1,3766,65415
,1,3767,65420
,1,3768,65425
,1,3769,65430
,1,3770,65435
,1,3771,65440
,1,3772,65445
,1,3773,65450
,1,3774,65455
,1,3775,65460
,1,3776,65465
,1,3777,65470
,1,3778,65475
,1,3779,65480
,1,3780,65485
,1,3781,65490
,1,3782,65495
,1,3783,65500
,1,3784,65505
,1,3785,65510
,1,3786,65515
,1,3787,65520
,1,3788,65525
,1,3789,65530
,1,3790,65535
,1,3791,65540
,1,3792,65545
,1,3793,65550
,1,3794,65555
,1,3795,65560
,1,3796,65565
,1,3797,65570
,1,3798,65575
,1,3799,65580
,1,3800,65585
,1,3801,65590
,1,3802,65595
,1,3803,65600
,1,3804,65605
,1,3805,65610
,1,3806,65615
,1,3807,65620
,1,3808,65625
,1,3809,65630
,1,3810,65635
,1,3811,65640
,1,3812,65645
,1,3813,65650
,1,3814,65655
,1,3815,65660
,1,3816,65665
,1,3817,65670
,1,3818,65675
,1,3819,65680
,1,3820,65685
,1,3821,65690
,1,3822,65695
,1,3823,65700
,1,3824,65705
,1,3825,65710
,1,3826,65715
,1,3827,65720
,1,3828,65725
,1,3829,65730
,1,3830,65735
,1,3831,65740
,1,3832,65745
,1,3833,65750
,1,3834,65755
,1,3835,65760
,1,3836,65765
,1,3837,65770
,1,3838,65775
,1,3839,65780
,1,3840,65785
,1,3841,65790
,1,3842,65795
,1,3843,65800
,1,3844,65805
,1,3845,65810
,1,3846,65815
,1,3847,65820
,1,3848,65825
,1,3849,65830
,1,3850,65835
,1,3851,65840
,1,3852,65845
,1,3853,65850
,1,3854,65855
,1,3855,65860
,1,3856,65865
,1,3857,65870
,1,3858,65875
,1,3859,65880
,1,3860,65885
,1,3861,65890
,1,3862,65895
,1,3863,65900
,1,3864,65905
,1,3865,65910
,1,3866,65915
,1,3867,65920
,1,3868,65925
,1,3869,65930
,1,3870,65935
,1,3871,65940
,1,3872,65945
,1,3873,65950
,1,3874,65955
,1,3875,65960
,1,3876,65965
,1,3877,65970
,1,3878,65975
,1,3879,65980
,1,3880,65985
,1,3881,65990
,1,3882,65995
,1,3883,66000
,1,3884,66005
,1,3885,66010
,1,3886,66015
,1,3887,66020
,1,3888,66025
,1,3889,66030
,1,3890,66035
,1,3891,66040
,1,3892,66045
,1,3893,66050
,1,3894,66055
,1,3895,66060
,1,3896,66065
,1,3897,66070
,1,3898,66075
,1,3899,66080
,1,3900,66085
,1,3901,66090
,1,3902,66095
,1,3903,66100
,1,3904,66105
,1,3905,66110
,1,3906,66115
,1,3907,66120
,1,3908,66125
,1,3909,66130
,1,3910,66135
,1,3911,66140
,1,3912,66145
,1,3913,66150
,1,3914,66155
,1,3915,66160
,1,3916,66165
,1,3917,66170
,1,3918,66175
,1,3919,66180
,1,3920,66185
,1,3921,66190
,1,3922,66195
,1,3923,66200
,1,3924,66205
,1,3925,66210
,1,3926,66215
,1,3927,66220
,1,3928,66225
,1,3929,66230
,1,3930,66235
,1,3931,66240
,1,3932,66245
,1,3933,66250
,1,3934,66255
,1,3935,66260
,1,3936,66265
,1,3937,66270
,1,3938,66275
,1,3939,66280
,1,3940,66285
,1,3941,66290
,1,3942,66295
,1,3943,66300
,1,3944,66305
,1,3945,66310
,1,3946,66315
,1,3947,66320
,1,3948,66325
,1,3949,66330
,1,3950,66335
,1,3951,66340
,1,3952,66345
,1,3953,66350
,1,3954,66355
,1,3955,66360
,1,3956,66365
,1,3957,66370
,1,3958,66375
,1,3959,66380
,1,3960,66385
,1,3961,66390
,1,3962,66395
,1,3963,66400
,1,3964,66405
,1,3965,66410
,1,3966,66415
,1,3967,66420
,1,3968,66425
,1,3969,66430
,1,3970,66435
,1,3971,66440
,1,3972,66445
,1,3973,66450
,1,3974,66455
,1,3975,66460
,1,3976,66465
,1,3977,66470
,1,3978,66475
,1,3979,66480
,1,3980,66485
,1,3981,66490
,1,3982,66495
,1,3983,66500
,1,3984,66505
,1,3985,66510
,1,3986,66515
,1,3987,66520
,1,3988,66525
,1,3989,66530
,1,3990,66535
,1,3991,66540
,1,3992,66545
,1,3993,66550
,1,3994,66555
,1,3995,66560
,1,3996,66565
,1,3997,66570
,1,3998,66575
,1,3999,66580
,1,4000,66585
,1,4001,66590
,1,4002,66595
,1,4003,66600
,1,4004,66605
,1,4005,66610
,1,4006,66615
,1,4007,66620
,1,4008,66625
,1,4009,66630
,1,4010,66635
,1,4011,66640
,1,4012,66645
,1,4013,66650
,1,4014,66655
,1,4015,66660
,1,4016,66665
,1,4017,66670
,1,4018,66675
,1,4019,66680
,1,4020,66685
,1,4021,66690
,1,4022,66695
,1,4023,66700
,1,4024,66705
,1,4025,66710
,1,4026,66715
,1,4027,66720
,1,4028,66725
,1,4029,66730
,1,4030,66735
,1,4031,66740
,1,4032,66745
,1,4033,66750
,1,4034,66755
,1,4035,66760
,1,4036,66765
,1,4037,66770
,1,4038,66775
,1,4039,66780
,1,4040,66785
,1,4041,66790
,1,4042,66795
,1,4043,66800
,1,4044,66805
,1,4045,66810
,1,4046,66815
,1,4047,66820
,1,4048,66825
,1,4049,66830
,1,4050,66835
,1,4051,66840
,1,4052,66845
,1,4053,66850
,1,4054,66855
,1,4055,66860
,1,4056,66865
,1,4057,66870
,1,4058,66875
,1,4059,66880
,1,4060,66885
,1,4061,66890
,1,4062,66895
,1,4063,66900
,1,4064,66905
,1,4065,66910
,1,4066,66915
,1,4067,66920
,1,4068,66925
,1,4069,66930
,1,4070,66935
,1,4071,66940
,1,4072,66945
,1,4073,66950
,1,4074,66955
,1,4075,66960
,1,4076,66965
,1,4077,66970
,1,4078,66975
,1,4079,66980
,1,4080,66985
,1,4081,66990
,1,4082,66995
,1,4083,67000
,1,4084,67005
,1,4085,67010
,1,4086,67015
,1,4087,67020
,1,4088,67025
,1,4089,67030
,1,4090,67035
,1,4091,67040
,1,4092,67045
,1,4093,67050
,1,4094,67055
,1,4095,67060
,1,4096,67065
,1,4097,67070
,1,4098,67075
,1,4099,67080
,1,4100,67085
,1,4101,67090
,1,4102,67095
,1,4103,67100
,1,4104,67105
,1,4105,67110
,1,4106,67115
,1,4107,67120
,1,4108,67125
,1,4109,67130
,1,4110,67135
,1,4111,67140
,1,4112,67145
,1,4113,67150
,1,4114,67155
,1,4115,67160
,1,4116,67165
,1,4117,67170
,1,4118,67175
,1,4119,67180
,1,4120,67185
,1,4121,67190
,1,4122,67195
,1,4123,67200
,1,4124,67205
,1,4125,67210
,1,4126,67215
,1,4127,67220
,1,4128,67225
,1,4129,67230
,1,4130,67235
,1,4131,67240
,1,4132,67245
,1,4133,67250
,1,4134,67255
,1,4135,67260
,1,4136,67265
,1,4137,67270
,1,4138,67275
,1,4139,67280
,1,4140,67285
,1,4141,67290
,1,4142,67295
,1,4143,67300
,1,4144,67305
,1,4145,67310
,1,4146,67315
,1,4147,67320
,1,4148,67325
,1,4149,67330
,1,4150,67335
,1,4151,67340
,1,4152,67345
,1,4153,67350
,1,4154,67355
,1,4155,67360
,1,4156,67365
,1,4157,67370
,1,4158,67375
,1,4159,67380
,1,4160,67385
,1,4161,67390
,1,4162,67395
,1,4163,67400
,1,4164,67405
,1,4165,67410
,1,4166,67415
,1,4167,67420
,1,4168,67425
,1,4169,67430
,1,4170,67435
,1,4171,67440
,1,4172,67445
,1,4173,67450
,1,4174,67455
,1,4175,67460
,1,4176,67465
,1,4177,67470
,1,4178,67475
,1,4179,67480
,1,4180,67485
,1,4181,67490
,1,4182,67495
,1,4183,67500
,1,4184,67505
,1,4185,67510
,1,4186,67515
,1,4187,67520
,1,4188,67525
,1,4189,67530
,1,4190,67535
,1,4191,67540
,1,4192,67545
,1,4193,67550
,1,4194,67555
,1,4195,67560
,1,4196,67565
,1,4197,67570
,1,4198,67575
,1,4199,67580
,1,4200,67585
,1,4201,67590
,1,4202,67595
,1,4203,67600
,1,4204,67605
,1,4205,67610
,1,4206,67615
,1,4207,67620
,1,4208,67625
,1,4209,67630
,1,4210,67635
,1,4211,67640
,1,4212,67645
,1,4213,67650
,1,4214,67655
,1,4215,67660
,1,4216,67665
,1,4217,67670
,1,4218,67675
,1,4219,67680
,1,4220,67685
,1,4221,67690
,1,4222,67695
,1,4223,67700
,1,4224,67705
,1,4225,67710
,1,4226,67715
,1,4227,67720
,1,4228,67725
,1,4229,67730
,1,4230,67735
,1,4231,67740
,1,4232,67745
,1,4233,67750
,1,4234,67755
,1,4235,67760
,1,4236,67765
,1,4237,67770
,1,4238,67775
,1,4239,67780
,1,4240,67785
,1,4241,67790
,1,4242,67795
,1,4243,67800
,1,4244,67805
,1,4245,67810
,1,4246,67815
,1,4247,67820
,1,4248,67825
,1,4249,67830
,1,4250,67835
,1,4251,67840
,1,4252,67845
,1,4253,67850
,1,4254,67855
,1,4255,67860
,1,4256,67865
,1,4257,67870
,1,4258,67875
,1,4259,67880
,1,4260,67885
,1,4261,67890
,1,4262,67895
,1,4263,67900
,1,4264,67905
,1,4265,67910
,1,4266,67915
,1,4267,67920
,1,4268,67925
,1,4269,67930
,1,4270,67935
,1,4271,67940
,1,4272,67945
,1,4273,67950
,1,4274,67955
,1,4275,67960
,1,4276,67965
,1,4277,67970
,1,4278,67975
,1,4279,67980
,1,4280,67985
,1,4281,67990
,1,4282,67995
,1,4283,68000
,1,4284,68005
,1,4285,68010
,1,4286,68015
,1,4287,68020
,1,4288,68025
,1,4289,68030
,1,4290,68035
,1,4291,68040
,1,4292,68045
,1,4293,68050
,1,4294,68055
,1,4295,68060
,1,4296,68065
,1,4297,68070
,1,4298,68075
,1,4299,68080
,1,4300,68085
,1,4301,68090
,1,4302,68095
,1,4303,68100
,1,4304,68105
,1,4305,68110
,1,4306,68115
,1,4307,68120
,1,4308,68125
,1,4309,68130
,1,4310,68135
,1,4311,68140
,1,4312,68145
,1,4313,68150
,1,4314,68155
,1,4315,68160
,1,4316,68165
,1,4317,68170
,1,4318,68175
,1,4319,68180
,1,4320,68185
,1,4321,68190
,1,4322,68195
,1,4323,68200
,1,4324,68205
,1,4325,68210
,1,4326,68215
,1,4327,68220
,1,4328,68225
,1,4329,68230
,1,4330,68235
,1,4331,68240
,1,4332,68245
,1,4333,68250
,1,4334,68255
,1,4335,68260
,1,4336,68265
,1,4337,68270
,1,4338,68275
,1,4339,68280
,1,4340,68285
,1,4341,68290
,1,4342,68295
,1,4343,68300
,1,4344,68305
,1,4345,68310
,1,4346,68315
,1,4347,68320
,1,4348,68325
,1,4349,68330
,1,4350,68335
,1,4351,68340
,1,4352,68345
,1,4353,68350
,1,4354,68355
,1,4355,68360
,1,4356,68365
,1,4357,68370
,1,4358,68375
,1,4359,68380
,1,4360,68385
,1,4361,68390
,1,4362,68395
,1,4363,68400
,1,4364,68405
,1,4365,68410
,1,4366,68415
,1,4367,68420
,1,4368,68425
,1,4369,68430
,1,4370,68435
,1,4371,68440
,1,4372,68445
,1,4373,68450
,1,4374,68455
,1,4375,68460
,1,4376,68465
,1,4377,68470
,1,4378,68475
,1,4379,68480
,1,4380,68485
,1,4381,68490
,1,4382,68495
,1,4383,68500
,1,4384,68505
,1,4385,68510
,1,4386,68515
,1,4387,68520
,1,4388,68525
,1,4389,68530
,1,4390,68535
,1,4391,68540
,1,4392,68545
,1,4393,68550
,1,4394,68555
,1,4395,68560
,1,4396,68565
,1,4397,68570
,1,4398,68575
,1,4399,68580
,1,4400,68585
,1,4401,68590
,1,4402,68595
,1,4403,68600
,1,4404,68605
,1,4405,68610
,1,4406,68615
,1,4407,68620
,1,4408,68625
,1,4409,68630
,1,4410,68635
,1,4411,68640
,1,4412,68645
,1,4413,68650
,1,4414,68655
,1,4415,68660
,1,4416,68665
,1,4417,68670
,1,4418,68675
,1,4419,68680
,1,4420,68685
,1,4421,68690
,1,4422,68695
,1,4423,68700
,1,4424,68705
,1,4425,68710
,1,4426,68715
,1,4427,68720
,1,4428,68725
,1,4429,68730
,1,4430,68735
,1,4431,68740
,1,4432,68745
,1,4433,68750
,1,4434,68755
,1,4435,68760
,1,4436,68765
,1,4437,68770
,1,4438,68775
,1,4439,68780
,1,4440,68785
,1,4441,68790
,1,4442,68795
,1,4443,68800
,1,4444,68805
,1,4445,68810
,1,4446,68815
,1,4447,68820
,1,4448,68825
,1,4449,68830
,1,4450,68835
,1,4451,68840
,1,4452,68845
,1,4453,68850
,1,4454,68855
,1,4455,68860
,1,4456,68865
,1,4457,68870
,1,4458,68875
,1,4459,68880
,1,4460,68885
,1,4461,68890
,1,4462,68895
,1,4463,68900
,1,4464,68905
,1,4465,68910
,1,4466,68915
,1,4467,68920
,1,4468,68925
,1,4469,68930
,1,4470,68935
,1,4471,68940
,1,4472,68945
,1,4473,68950
,1,4474,68955
,1,4475,68960
,1,4476,68965
,1,4477,68970
,1,4478,68975
,1,4479,68980
,1,4480,68985
,1,4481,68990
,1,4482,68995
,1,4483,69000
,1,4484,69005
,1,4485,69010
,1,4486,69015
,1,4487,69020
,1,4488,69025
,1,4489,69030
,1,4490,69035
,1,4491,69040
,1,4492,69045
,1,4493,69050
,1,4494,69055
,1,4495,69060
,1,4496,69065
,1,4497,69070
,1,4498,69075
,1,4499,69080
,1,4500,69085
,1,4501,69090
,1,4502,69095
,1,4503,69100
,1,4504,69105
,1,4505,69110
,1,4506,69115
,1,4507,69120
,1,4508,69125
,1,4509,69130
,1,4510,69135
,1,4511,69140
,1,4512,69145
,1,4513,69150
,1,4514,69155
,1,4515,69160
,1,4516,69165
,1,4517,69170
,1,4518,69175
,1,4519,69180
,1,4520,69185
,1,4521,69190
,1,4522,69195
,1,4523,69200
,1,4524,69205
,1,4525,69210
,1,4526,69215
,1,4527,69220
,1,4528,69225
,1,4529,69230
,1,4530,69235
,1,4531,69240
,1,4532,69245
,1,4533,69250
,1,4534,69255
,1,4535,69260
,1,4536,69265
,1,4537,69270
,1,4538,69275
,1,4539,69280
,1,4540,69285
,1,4541,69290
,1,4542,69295
,1,4543,69300
,1,4544,69305
,1,4545,69310
,1,4546,69315
,1,4547,69320
,1,4548,69325
,1,4549,69330
,1,4550,69335
,1,4551,69340
,1,4552,69345
,1,4553,69350
,1,4554,69355
,1,4555,69360
,1,4556,69365
,1,4557,69370
,1,4558,69375
,1,4559,69380
,1,4560,69385
,1,4561,69390
,1,4562,69395
,1,4563,69400
,1,4564,69405
,1,4565,69410
,1,4566,69415
,1,4567,69420
,1,4568,69425
,1,4569,69430
,1,4570,69435
,1,4571,69440
,1,4572,69445
,1,4573,69450
,1,4574,69455
,1,4575,69460
,1,4576,69465
,1,4577,69470
,1,4578,69475
,1,4579,69480
,1,4580,69485
,1,4581,69490
,1,4582,69495
,1,4583,69500
,1,4584,69505
,1,4585,69510
,1,4586,69515
,1,4587,69520
,1,4588,69525
,1,4589,69530
,1,4590,69535
,1,4591,69540
,1,4592,69545
,1,4593,69550
,1,4594,69555
,1,4595,69560
,1,4596,69565
,1,4597,69570
,1,4598,69575
,1,4599,69580
,1,4600,69585
,1,4601,69590
,1,4602,69595
,1,4603,69600
,1,4604,69605
,1,4605,69610
,1,4606,69615
,1,4607,69620
,1,4608,69625
,1,4609,69630
,1,4610,69635
,1,4611,69640
,1,4612,69645
,1,4613,69650
,1,4614,69655
,1,4615,69660
,1,4616,69665
,1,4617,69670
,1,4618,69675
,1,4619,69680
,1,4620,69685
,1,4621,69690
,1,4622,69695
,1,4623,69700
,1,4624,69705
,1,4625,69710
,1,4626,69715
,1,4627,69720
,1,4628,69725
,1,4629,69730
,1,4630,69735
,1,4631,69740
,1,4632,69745
,1,4633,69750
,1,4634,69755
,1,4635,69760
,1,4636,69765
,1,4637,69770
,1,4638,69775
,1,4639,69780
,1,4640,69785
,1,4641,69790
,1,4642,69795
,1,4643,69800
,1,4644,69805
,1,4645,69810
,1,4646,69815
,1,4647,69820
,1,4648,69825
,1,4649,69830
,1,4650,69835
,1,4651,69840
,1,4652,69845
,1,4653,69850
,1,4654,69855
,1,4655,69860
,1,4656,69865
,1,4657,69870
,1,4658,69875
,1,4659,69880
,1,4660,69885
,1,4661,69890
,1,4662,69895
,1,4663,69900
,1,4664,69905
,1,4665,69910
,1,4666,69915
,1,4667,69920
,1,4668,69925
,1,4669,69930
,1,4670,69935
,1,4671,69940
,1,4672,69945
,1,4673,69950
,1,4674,69955
,1,4675,69960
,1,4676,69965
,1,4677,69970
,1,4678,69975
,1,4679,69980
,1,4680,69985
,1,4681,69990
,1,4682,69995
,1,4683,70000
,1,4684,70005
,1,4685,70010
,1,4686,70015
,1,4687,70020
,1,4688,70025
,1,4689,70030
,1,4690,70035
,1,4691,70040
,1,4692,70045
,1,4693,70050
,1,4694,70055
,1,4695,70060
,1,4696,70065
,1,4697,70070
,1,4698,70075
,1,4699,70080
,1,4700,70085
,1,4701,70090
,1,4702,70095
,1,4703,70100
,1,4704,70105
,1,4705,70110
,1,4706,70115
,1,4707,70120
,1,4708,70125
,1,4709,70130
,1,4710,70135
,1,4711,70140
,1,4712,70145
,1,4713,70150
,1,4714,70155
,1,4715,70160
,1,4716,70165
,1,4717,70170
,1,4718,70175
,1,4719,70180
,1,4720,70185
,1,4721,70190
,1,4722,70195
,1,4723,70200
,1,4724,70205
,1,4725,70210
,1,4726,70215
,1,4727,70220
,1,4728,70225
,1,4729,70230
,1,4730,70235
,1,4731,70240
,1,4732,70245
,1,4733,70250
,1,4734,70255
,1,4735,70260
,1,4736,70265
,1,4737,70270
,1,4738,70275
,1,4739,70280
,1,4740,70285
,1,4741,70290
,1,4742,70295
,1,4743,70300
,1,4744,70305
,1,4745,70310
,1,4746,70315
,1,4747,70320
,1,4748,70325
,1,4749,70330
,1,4750,70335
,1,4751,70340
,1,4752,70345
,1,4753,70350
,1,4754,70355
,1,4755,70360
,1,4756,70365
,1,4757,70370
,1,4758,70375
,1,4759,70380
,1,4760,70385
,1,4761,70390
,1,4762,70395
,1,4763,70400
,1,4764,70405
,1,4765,70410
,1,4766,70415
,1,4767,70420
,1,4768,70425
,1,4769,70430
,1,4770,70435
,1,4771,70440
,1,4772,70445
,1,4773,70450
,1,4774,70455
,1,4775,70460
,1,4776,70465
,1,4777,70470
,1,4778,70475
,1,4779,70480
,1,4780,70485
,1,4781,70490
,1,4782,70495
,1,4783,70500
,1,4784,70505
,1,4785,70510
,1,4786,70515
,1,4787,70520
,1,4788,70525
,1,4789,70530
,1,4790,70535
,1,4791,70540
,1,4792,70545
,1,4793,70550
,1,4794,70555
,1,4795,70560
,1,4796,70565
,1,4797,70570
,1,4798,70575
,1,4799,70580
,1,4800,70585
,1,4801,70590
,1,4802,70595
,1,4803,70600
,1,4804,70605
,1,4805,70610
,1,4806,70615
,1,4807,70620
,1,4808,70625
,1,4809,70630
,1,4810,70635
,1,4811,70640
,1,4812,70645
,1,4813,70650
,1,4814,70655
,1,4815,70660
,1,4816,70665
,1,4817,70670
,1,4818,70675
,1,4819,70680
,1,4820,70685
,1,4821,70690
,1,4822,70695
,1,4823,70700
,1,4824,70705
,1,4825,70710
,1,4826,70715
,1,4827,70720
,1,4828,70725
,1,4829,70730
,1,4830,70735
,1,4831,70740
,1,4832,70745
,1,4833,70750
,1,4834,70755
,1,4835,70760
,1,4836,70765
,1,4837,70770
,1,4838,70775
,1,4839,70780
,1,4840,70785
,1,4841,70790
,1,4842,70795
,1,4843,70800
,1,4844,70805
,1,4845,70810
,1,4846,70815
,1,4847,70820
,1,4848,70825
,1,4849,70830
,1,4850,70835
,1,4851,70840
,1,4852,70845
,1,4853,70850
,1,4854,70855
,1,4855,70860
,1,4856,70865
,1,4857,70870
,1,4858,70875
,1,4859,70880
,1,4860,70885
,1,4861,70890
,1,4862,70895
,1,4863,70900
,1,4864,70905
,1,4865,70910
,1,4866,70915
,1,4867,70920
,1,4868,70925
,1,4869,70930
,1,4870,70935
,1,4871,70940
,1,4872,70945
,1,4873,70950
,1,4874,70955
,1,4875,70960
,1,4876,70965
,1,4877,70970
,1,4878,70975
,1,4879,70980
,1,4880,70985
,1,4881,70990
,1,4882,70995
,1,4883,71000
,1,4884,71005
,1,4885,71010
,1,4886,71015
,1,4887,71020
,1,4888,71025
,1,4889,71030
,1,4890,71035
,1,4891,71040
,1,4892,71045
,1,4893,71050
,1,4894,71055
,1,4895,71060
,1,4896,71065
,1,4897,71070
,1,4898,71075
,1,4899,71080
,1,4900,71085
,1,4901,71090
,1,4902,71095
,1,4903,71100
,1,4904,71105
,1,4905,71110
,1,4906,71115
,1,4907,71120
,1,4908,71125
,1,4909,71130
,1,4910,71135
,1,4911,71140
,1,4912,71145
,1,4913,71150
,1,4914,71155
,1,4915,71160
,1,4916,71165
,1,4917,71170
,1,4918,71175
,1,4919,71180
,1,4920,71185
,1,4921,71190
,1,4922,71195
,1,4923,71200
,1,4924,71205
,1,4925,71210
,1,4926,71215
,1,4927,71220
,1,4928,71225
,1,4929,71230
,1,4930,71235
,1,4931,71240
,1,4932,71245
,1,4933,71250
,1,4934,71255
,1,4935,71260
,1,4936,71265
,1,4937,71270
,1,4938,71275
,1,4939,71280
,1,4940,71285
,1,4941,71290
,1,4942,71295
,1,4943,71300
,1,4944,71305
,1,4945,71310
,1,4946,71315
,1,4947,71320
,1,4948,71325
,1,4949,71330
,1,4950,71335
,1,4951,71340
,1,4952,71345
,1,4953,71350
,1,4954,71355
,1,4955,71360
,1,4956,71365
,1,4957,71370
,1,4958,71375
,1,4959,71380
,1,4960,71385
,1,4961,71390
,1,4962,71395
,1,4963,71400
,1,4964,71405
,1,4965,71410
,1,4966,71415
,1,4967,71420
,1,4968,71425
,1,4969,71430
,1,4970,71435
,1,4971,71440
,1,4972,71445
,1,4973,71450
,1,4974,71455
,1,4975,71460
,1,4976,71465
,1,4977,71470
,1,4978,71475
,1,4979,71480
,1,4980,71485
,1,4981,71490
,1,4982,71495
,1,4983,71500
,1,4984,71505
,1,4985,71510
,1,4986,71515
,1,4987,71520
,1,4988,71525
,1,4989,71530
,1,4990,71535
,1,4991,71540
,1,4992,71545
,1,4993,71550
,1,4994,71555
,1,4995,71560
,1,4996,71565
,1,4997,71570
,1,4998,71575
,1,4999,71580
,1,5000,71585
,1,5001,71590
,1,5002,71595
,1,5003,71600
,1,5004,71605
,1,5005,71610
,1,5006,71615
,1,5007,71620
,1,5008,71625
,1,5009,71630
,1,5010,71635
,1,5011,71640
,1,5012,71645
,1,5013,71650
,1,5014,71655
,1,5015,71660
,1,5016,71665
,1,5017,71670
,1,5018,71675
,1,5019,71680
,1,5020,71685
,1,5021,71690
,1,5022,71695
,1,5023,71700
,1,5024,71705
,1,5025,71710
,1,5026,71715
,1,5027,71720
,1,5028,71725
,1,5029,71730
,1,5030,71735
,1,5031,71740
,1,5032,71745
,1,5033,71750
,1,5034,71755
,1,5035,71760
,1,5036,71765
,1,5037,71770
,1,5038,71775
,1,5039,71780
,1,5040,71785
,1,5041,71790
,1,5042,71795
,1,5043,71800
,1,5044,71805
,1,5045,71810
,1,5046,71815
,1,5047,71820
,1,5048,71825
,1,5049,71830
,1,5050,71835
,1,5051,71840
,1,5052,71845
,1,5053,71850
,1,5054,71855
,1,5055,71860
,1,5056,71865
,1,5057,71870
,1,5058,71875
,1,5059,71880
,1,5060,71885
,1,5061,71890
,1,5062,71895
,1,5063,71900
,1,5064,71905
,1,5065,71910
,1,5066,71915
,1,5067,71920
,1,5068,71925
,1,5069,71930
,1,5070,71935
,1,5071,71940
,1,5072,71945
,1,5073,71950
,1,5074,71955
,1,5075,71960
,1,5076,71965
,1,5077,71970
,1,5078,71975
,1,5079,71980
,1,5080,71985
,1,5081,71990
,1,5082,71995
,1,5083,72000
,1,5084,72005
,1,5085,72010
,1,5086,72015
,1,5087,72020
,1,5088,72025
,1,5089,72030
,1,5090,72035
,1,5091,72040
,1,5092,72045
,1,5093,72050
,1,5094,72055
,1,5095,72060
,1,5096,72065
,1,5097,72070
,1,5098,72075
,1,5099,72080
,1,5100,72085
,1,5101,72090
,1,5102,72095
,1,5103,72100
,1,5104,72105
,1,5105,72110
,1,5106,72115
,1,5107,72120
,1,5108,72125
,1,5109,72130
,1,5110,72135
,1,5111,72140
,1,5112,72145
,1,5113,72150
,1,5114,72155
,1,5115,72160
,1,5116,72165
,1,5117,72170
,1,5118,72175
,1,5119,72180
,1,5120,72185
,1,5121,72190
,1,5122,72195
,1,5123,72200
,1,5124,72205
,1,5125,72210
,1,5126,72215
,1,5127,72220
,1,5128,72225
,1,5129,72230
,1,5130,72235
,1,5131,72240
,1,5132,72245
,1,5133,72250
,1,5134,72255
,1,5135,72260
,1,5136,72265
,1,5137,72270
,1,5138,72275
,1,5139,72280
,1,5140,72285
,1,5141,72290
,1,5142,72295
,1,5143,72300
,1,5144,72305
,1,5145,72310
,1,5146,72315
,1,5147,72320
,1,5148,72325
,1,5149,72330
,1,5150,72335
,1,5151,72340
,1,5152,72345
,1,5153,72350
,1,5154,72355
,1,5155,72360
,1,5156,72365
,1,5157,72370
,1,5158,72375
,1,5159,72380
,1,5160,72385
,1,5161,72390
,1,5162,72395
,1,5163,72400
,1,5164,72405
,1,5165,72410
,1,5166,72415
,1,5167,72420
,1,5168,72425
,1,5169,72430
,1,5170,72435
,1,5171,72440
,1,5172,72445
,1,5173,72450
,1,5174,72455
,1,5175,72460
,1,5176,72465
,1,5177,72470
,1,5178,72475
,1,5179,72480
,1,5180,72485
,1,5181,72490
,1,5182,72495
,1,5183,72500
,1,5184,72505
,1,5185,72510
,1,5186,72515
,1,5187,72520
,1,5188,72525
,1,5189,72530
,1,5190,72535
,1,5191,72540
,1,5192,72545
,1,5193,72550
,1,5194,72555
,1,5195,72560
,1,5196,72565
,1,5197,72570
,1,5198,72575
,1,5199,72580
,1,5200,72585
,1,5201,72590
,1,5202,72595
,1,5203,72600
,1,5204,72605
,1,5205,72610
,1,5206,72615
,1,5207,72620
,1,5208,72625
,1,5209,72630
,1,5210,72635
,1,5211,72640
,1,5212,72645
,1,5213,72650
,1,5214,72655
,1,5215,72660
,1,5216,72665
,1,5217,72670
,1,5218,72675
,1,5219,72680
,1,5220,72685
,1,5221,72690
,1,5222,72695
,1,5223,72700
,1,5224,72705
,1,5225,72710
,1,5226,72715
,1,5227,72720
,1,5228,72725
,1,5229,72730
,1,5230,72735
,1,5231,72740
,1,5232,72745
,1,5233,72750
,1,5234,72755
,1,5235,72760
,1,5236,72765
,1,5237,72770
,1,5238,72775
,1,5239,72780
,1,5240,72785
,1,5241,72790
,1,5242,72795
,1,5243,72800
,1,5244,72805
,1,5245,72810
,1,5246,72815
,1,5247,72820
,1,5248,72825
,1,5249,72830
,1,5250,72835
,1,5251,72840
,1,5252,72845
,1,5253,72850
,1,5254,72855
,1,5255,72860
,1,5256,72865
,1,5257,72870
,1,5258,72875
,1,5259,72880
,1,5260,72885
,1,5261,72890
,1,5262,72895
,1,5263,72900
,1,5264,72905
,1,5265,72910
,1,5266,72915
,1,5267,72920
,1,5268,72925
,1,5269,72930
,1,5270,72935
,1,5271,72940
,1,5272,72945
,1,5273,72950
,1,5274,72955
,1,5275,72960
,1,5276,72965
,1,5277,72970
,1,5278,72975
,1,5279,72980
,1,5280,72985
,1,5281,72990
,1,5282,72995
,1,5283,73000
,1,5284,73005
,1,5285,73010
,1,5286,73015
,1,5287,73020
,1,5288,73025
,1,5289,73030
,1,5290,73035
,1,5291,73040
,1,5292,73045
,1,5293,73050
,1,5294,73055
,1,5295,73060
,1,5296,73065
,1,5297,73070
,1,5298,73075
,1,5299,73080
,1,5300,73085
,1,5301,73090
,1,5302,73095
,1,5303,73100
,1,5304,73105
,1,5305,73110
,1,5306,73115
,1,5307,73120
,1,5308,73125
,1,5309,73130
,1,5310,73135
,1,5311,73140
,1,5312,73145
,1,5313,73150
,1,5314,73155
,1,5315,73160
,1,5316,73165
,1,5317,73170
,1,5318,73175
,1,5319,73180
,1,5320,73185
,1,5321,73190
,1,5322,73195
,1,5323,73200
,1,5324,73205
,1,5325,73210
,1,5326,73215
,1,5327,73220
,1,5328,73225
,1,5329,73230
,1,5330,73235
,1,5331,73240
,1,5332,73245
,1,5333,73250
,1,5334,73255
,1,5335,73260
,1,5336,73265
,1,5337,73270
,1,5338,73275
,1,5339,73280
,1,5340,73285
,1,5341,73290
,1,5342,73295
,1,5343,73300
,1,5344,73305
,1,5345,73310
,1,5346,73315
,1,5347,73320
,1,5348,73325
,1,5349,73330
,1,5350,73335
,1,5351,73340
,1,5352,73345
,1,5353,73350
,1,5354,73355
,1,5355,73360
,1,5356,73365
,1,5357,73370
,1,5358,73375
,1,5359,73380
,1,5360,73385
,1,5361,73390
,1,5362,73395
,1,5363,73400
,1,5364,73405
,1,5365,73410
,1,5366,73415
,1,5367,73420
,1,5368,73425
,1,5369,73430
,1,5370,73435
,1,5371,73440
,1,5372,73445
,1,5373,73450
,1,5374,73455
,1,5375,73460
,1,5376,73465
,1,5377,73470
,1,5378,73475
,1,5379,73480
,1,5380,73485
,1,5381,73490
,1,5382,73495
,1,5383,73500
,1,5384,73505
,1,5385,73510
,1,5386,73515
,1,5387,73520
,1,5388,73525
,1,5389,73530
,1,5390,73535
,1,5391,73540
,1,5392,73545
,1,5393,73550
,1,5394,73555
,1,5395,73560
,1,5396,73565
,1,5397,73570
,1,5398,73575
,1,5399,73580
,1,5400,73585
,1,5401,73590
,1,5402,73595
,1,5403,73600
,1,5404,73605
,1,5405,73610
,1,5406,73615
,1,5407,73620
,1,5408,73625
,1,5409,73630
,1,5410,73635
,1,5411,73640
,1,5412,73645
,1,5413,73650
,1,5414,73655
,1,5415,73660
,1,5416,73665
,1,5417,73670
,1,5418,73675
,1,5419,73680
,1,5420,73685
,1,5421,73690
,1,5422,73695
,1,5423,73700
,1,5424,73705
,1,5425,73710
,1,5426,73715
,1,5427,73720
,1,5428,73725
,1,5429,73730
,1,5430,73735
,1,5431,73740
,1,5432,73745
,1,5433,73750
,1,5434,73755
,1,5435,73760
,1,5436,73765
,1,5437,73770
,1,5438,73775
,1,5439,73780
,1,5440,73785
,1,5441,73790
,1,5442,73795
,1,5443,73800
,1,5444,73805
,1,5445,73810
,1,5446,73815
,1,5447,73820
,1,5448,73825
,1,5449,73830
,1,5450,73835
,1,5451,73840
,1,5452,73845
,1,5453,73850
,1,5454,73855
,1,5455,73860
,1,5456,73865
,1,5457,73870
,1,5458,73875
,1,5459,73880
,1,5460,73885
,1,5461,73890
,1,5462,73895
,1,5463,73900
,1,5464,73905
,1,5465,73910
,1,5466,73915
,1,5467,73920
,1,5468,73925
,1,5469,73930
,1,5470,73935
,1,5471,73940
,1,5472,73945
,1,5473,73950
,1,5474,73955
,1,5475,73960
,1,5476,73965
,1,5477,73970
,1,5478,73975
,1,5479,73980
,1,5480,73985
,1,5481,73990
,1,5482,73995
,1,5483,74000
,1,5484,74005
,1,5485,74010
,1,5486,74015
,1,5487,74020
,1,5488,74025
,1,5489,74030
,1,5490,74035
,1,5491,74040
,1,5492,74045
,1,5493,74050
,1,5494,74055
,1,5495,74060
,1,5496,74065
,1,5497,74070
,1,5498,74075
,1,5499,74080
,1,5500,74085
,1,5501,74090
,1,5502,74095
,1,5503,74100
,1,5504,74105
,1,5505,74110
,1,5506,74115
,1,5507,74120
,1,5508,74125
,1,5509,74130
,1,5510,74135
,1,5511,74140
,1,5512,74145
,1,5513,74150
,1,5514,74155
,1,5515,74160
,1,5516,74165
,1,5517,74170
,1,5518,74175
,1,5519,74180
,1,5520,74185
,1,5521,74190
,1,5522,74195
,1,5523,74200
,1,5524,74205
,1,5525,74210
,1,5526,74215
,1,5527,74220
,1,5528,74225
,1,5529,74230
,1,5530,74235
,1,5531,74240
,1,5532,74245
,1,5533,74250
,1,5534,74255
,1,5535,74260
,1,5536,74265
,1,5537,74270
,1,5538,74275
,1,5539,74280
,1,5540,74285
,1,5541,74290
,1,5542,74295
,1,5543,74300
,1,5544,74305
,1,5545,74310
,1,5546,74315
,1,5547,74320
,1,5548,74325
,1,5549,74330
,1,5550,74335
,1,5551,74340
,1,5552,74345
,1,5553,74350
,1,5554,74355
,1,5555,74360
,1,5556,74365
,1,5557,74370
,1,5558,74375
,1,5559,74380
,1,5560,74385
,1,5561,74390
,1,5562,74395
,1,5563,74400
,1,5564,74405
,1,5565,74410
,1,5566,74415
,1,5567,74420
,1,5568,74425
,1,5569,74430
,1,5570,74435
,1,5571,74440
,1,5572,74445
,1,5573,74450
,1,5574,74455
,1,5575,74460
,1,5576,74465
,1,5577,74470
,1,5578,74475
,1,5579,74480
,1,5580,74485
,1,5581,74490
,1,5582,74495
,1,5583,74500
,1,5584,74505
,1,5585,74510
,1,5586,74515
,1,5587,74520
,1,5588,74525
,1,5589,74530
,1,5590,74535
,1,5591,74540
,1,5592,74545
,1,5593,74550
,1,5594,74555
,1,5595,74560
,1,5596,74565
,1,5597,74570
,1,5598,74575
,1,5599,74580
,1,5600,74585
,1,5601,74590
,1,5602,74595
,1,5603,74600
,1,5604,74605
,1,5605,74610
,1,5606,74615
,1,5607,74620
,1,5608,74625
,1,5609,74630
,1,5610,74635
,1,5611,74640
,1,5612,74645
,1,5613,74650
,1,5614,74655
,1,5615,74660
,1,5616,74665
,1,5617,74670
,1,5618,74675
,1,5619,74680
,1,5620,74685
,1,5621,74690
,1,5622,74695
,1,5623,74700
,1,5624,74705
,1,5625,74710
,1,5626,74715
,1,5627,74720
,1,5628,74725
,1,5629,74730
,1,5630,74735
,1,5631,74740
,1,5632,74745
,1,5633,74750
,1,5634,74755
,1,5635,74760
,1,5636,74765
,1,5637,74770
,1,5638,74775
,1,5639,74780
,1,5640,74785
,1,5641,74790
,1,5642,74795
,1,5643,74800
,1,5644,74805
,1,5645,74810
,1,5646,74815
,1,5647,74820
,1,5648,74825
,1,5649,74830
,1,5650,74835
,1,5651,74840
,1,5652,74845
,1,5653,74850
,1,5654,74855
,1,5655,74860
,1,5656,74865
,1,5657,74870
,1,5658,74875
,1,5659,74880
,1,5660,74885
,1,5661,74890
,1,5662,74895
,1,5663,74900
,1,5664,74905
,1,5665,74910
,1,5666,74915
,1,5667,74920
,1,5668,74925
,1,5669,74930
,1,5670,74935
,1,5671,74940
,1,5672,74945
,1,5673,74950
,1,5674,74955
,1,5675,74960
,1,5676,74965
,1,5677,74970
,1,5678,74975
,1,5679,74980
,1,5680,74985
,1,5681,74990
,1,5682,74995
,1,5683,75000
,1,5684,75005
,1,5685,75010
,1,5686,75015
,1,5687,75020
,1,5688,75025
,1,5689,75030
,1,5690,75035
,1,5691,75040
,1,5692,75045
,1,5693,75050
,1,5694,75055
,1,5695,75060
,1,5696,75065
,1,5697,75070
,1,5698,75075
,1,5699,75080
,1,5700,75085
,1,5701,75090
,1,5702,75095
,1,5703,75100
,1,5704,75105
,1,5705,75110
,1,5706,75115
,1,5707,75120
,1,5708,75125
,1,5709,75130
,1,5710,75135
,1,5711,75140
,1,5712,75145
,1,5713,75150
,1,5714,75155
,1,5715,75160
,1,5716,75165
,1,5717,75170
,1,5718,75175
,1,5719,75180
,1,5720,75185
,1,5721,75190
,1,5722,75195
,1,5723,75200
,1,5724,75205
,1,5725,75210
,1,5726,75215
,1,5727,75220
,1,5728,75225
,1,5729,75230
,1,5730,75235
,1,5731,75240
,1,5732,75245
,1,5733,75250
,1,5734,75255
,1,5735,75260
,1,5736,75265
,1,5737,75270
,1,5738,75275
,1,5739,75280
,1,5740,75285
,1,5741,75290
,1,5742,75295
,1,5743,75300
,1,5744,75305
,1,5745,75310
,1,5746,75315
,1,5747,75320
,1,5748,75325
,1,5749,75330
,1,5750,75335
,1,5751,75340
,1,5752,75345
,1,5753,75350
,1,5754,75355
,1,5755,75360
,1,5756,75365
,1,5757,75370
,1,5758,75375
,1,5759,75380
,1,5760,75385
,1,5761,75390
,1,5762,75395
,1,5763,75400
,1,5764,75405
,1,5765,75410
,1,5766,75415
,1,5767,75420
,1,5768,75425
,1,5769,75430
,1,5770,75435
,1,5771,75440
,1,5772,75445
,1,5773,75450
,1,5774,75455
,1,5775,75460
,1,5776,75465
,1,5777,75470
,1,5778,75475
,1,5779,75480
,1,5780,75485
,1,5781,75490
,1,5782,75495
,1,5783,75500
,1,5784,75505
,1,5785,75510
,1,5786,75515
,1,5787,75520
,1,5788,75525
,1,5789,75530
,1,5790,75535
,1,5791,75540
,1,5792,75545
,1,5793,75550
,1,5794,75555
,1,5795,75560
,1,5796,75565
,1,5797,75570
,1,5798,75575
,1,5799,75580
,1,5800,75585
,1,5801,75590
,1,5802,75595
,1,5803,75600
,1,5804,75605
,1,5805,75610
,1,5806,75615
,1,5807,75620
,1,5808,75625
,1,5809,75630
,1,5810,75635
,1,5811,75640
,1,5812,75645
,1,5813,75650
,1,5814,75655
,1,5815,75660
,1,5816,75665
,1,5817,75670
,1,5818,75675
,1,5819,75680
,1,5820,75685
,1,5821,75690
,1,5822,75695
,1,5823,75700
,1,5824,75705
,1,5825,75710
,1,5826,75715
,1,5827,75720
,1,5828,75725
,1,5829,75730
,1,5830,75735
,1,5831,75740
,1,5832,75745
,1,5833,75750
,1,5834,75755
,1,5835,75760
,1,5836,75765
,1,5837,75770
,1,5838,75775
,1,5839,75780
,1,5840,75785
,1,5841,75790
,1,5842,75795
,1,5843,75800
,1,5844,75805
,1,5845,75810
,1,5846,75815
,1,5847,75820
,1,5848,75825
,1,5849,75830
,1,5850,75835
,1,5851,75840
,1,5852,75845
,1,5853,75850
,1,5854,75855
,1,5855,75860
,1,5856,75865
,1,5857,75870
,1,5858,75875
,1,5859,75880
,1,5860,75885
,1,5861,75890
,1,5862,75895
,1,5863,75900
,1,5864,75905
,1,5865,75910
,1,5866,75915
,1,5867,75920
,1,5868,75925
,1,5869,75930
,1,5870,75935
,1,5871,75940
,1,5872,75945
,1,5873,75950
,1,5874,75955
,1,5875,75960
,1,5876,75965
,1,5877,75970
,1,5878,75975
,1,5879,75980
,1,5880,75985
,1,5881,75990
,1,5882,75995
,1,5883,76000
,1,5884,76005
,1,5885,76010
,1,5886,76015
,1,5887,76020
,1,5888,76025
,1,5889,76030
,1,5890,76035
,1,5891,76040
,1,5892,76045
,1,5893,76050
,1,5894,76055
,1,5895,76060
,1,5896,76065
,1,5897,76070
,1,5898,76075
,1,5899,76080
,1,5900,76085
,1,5901,76090
,1,5902,76095
,1,5903,76100
,1,5904,76105
,1,5905,76110
,1,5906,76115
,1,5907,76120
,1,5908,76125
,1,5909,76130
,1,5910,76135
,1,5911,76140
,1,5912,76145
,1,5913,76150
,1,5914,76155
,1,5915,76160
,1,5916,76165
,1,5917,76170
,1,5918,76175
,1,5919,76180
,1,5920,76185
,1,5921,76190
,1,5922,76195
,1,5923,76200
,1,5924,76205
,1,5925,76210
,1,5926,76215
,1,5927,76220
,1,5928,76225
,1,5929,76230
,1,5930,76235
,1,5931,76240
,1,5932,76245
,1,5933,76250
,1,5934,76255
,1,5935,76260
,1,5936,76265
,1,5937,76270
,1,5938,76275
,1,5939,76280
,1,5940,76285
,1,5941,76290
,1,5942,76295
,1,5943,76300
,1,5944,76305
,1,5945,76310
,1,5946,76315
,1,5947,76320
,1,5948,76325
,1,5949,76330
,1,5950,76335
,1,5951,76340
,1,5952,76345
,1,5953,76350
,1,5954,76355
,1,5955,76360
,1,5956,76365
,1,5957,76370
,1,5958,76375
,1,5959,76380
,1,5960,76385
,1,5961,76390
,1,5962,76395
,1,5963,76400
,1,5964,76405
,1,5965,76410
,1,5966,76415
,1,5967,76420
,1,5968,76425
,1,5969,76430
,1,5970,76435
,1,5971,76440
,1,5972,76445
,1,5973,76450
,1,5974,76455
,1,5975,76460
,1,5976,76465
,1,5977,76470
,1,5978,76475
,1,5979,76480
,1,5980,76485
,1,5981,76490
,1,5982,76495
,1,5983,76500
,1,5984,76505
,1,5985,76510
,1,5986,76515
,1,5987,76520
,1,5988,76525
,1,5989,76530
,1,5990,76535
,1,5991,76540
,1,5992,76545
,1,5993,76550
,1,5994,76555
,1,5995,76560
,1,5996,76565
,1,5997,76570
,1,5998,76575
,1,5999,76580
,1,6000,76585
,1,6001,76590
,1,6002,76595
,1,6003,76600
,1,6004,76605
,1,6005,76610
,1,6006,76615
,1,6007,76620
,1,6008,76625
,1,6009,76630
,1,6010,76635
,1,6011,76640
,1,6012,76645
,1,6013,76650
,1,6014,76655
,1,6015,76660
,1,6016,76665
,1,6017,76670
,1,6018,76675
,1,6019,76680
,1,6020,76685
,1,6021,76690
,1,6022,76695
,1,6023,76700
,1,6024,76705
,1,6025,76710
,1,6026,76715
,1,6027,76720
,1,6028,76725
,1,6029,76730
,1,6030,76735
,1,6031,76740
,1,6032,76745
,1,6033,76750
,1,6034,76755
,1,6035,76760
,1,6036,76765
,1,6037,76770
,1,6038,76775
,1,6039,76780
,1,6040,76785
,1,6041,76790
,1,6042,76795
,1,6043,76800
,1,6044,76805
,1,6045,76810
,1,6046,76815
,1,6047,76820
,1,6048,76825
,1,6049,76830
,1,6050,76835
,1,6051,76840
,1,6052,76845
,1,6053,76850
,1,6054,76855
,1,6055,76860
,1,6056,76865
,1,6057,76870
,1,6058,76875
,1,6059,76880
,1,6060,76885
,1,6061,76890
,1,6062,76895
,1,6063,76900
,1,6064,76905
,1,6065,76910
,1,6066,76915
,1,6067,76920
,1,6068,76925
,1,6069,76930
,1,6070,76935
,1,6071,76940
,1,6072,76945
,1,6073,76950
,1,6074,76955
,1,6075,76960
,1,6076,76965
,1,6077,76970
,1,6078,76975
,1,6079,76980
,1,6080,76985
,1,6081,76990
,1,6082,76995
,1,6083,77000
,1,6084,77005
,1,6085,77010
,1,6086,77015
,1,6087,77020
,1,6088,77025
,1,6089,77030
,1,6090,77035
,1,6091,77040
,1,6092,77045
,1,6093,77050
,1,6094,77055
,1,6095,77060
,1,6096,77065
,1,6097,77070
,1,6098,77075
,1,6099,77080
,1,6100,77085
,1,6101,77090
,1,6102,77095
,1,6103,77100
,1,6104,77105
,1,6105,77110
,1,6106,77115
,1,6107,77120
,1,6108,77125
,1,6109,77130
,1,6110,77135
,1,6111,77140
,1,6112,77145
,1,6113,77150
,1,6114,77155
,1,6115,77160
,1,6116,77165
,1,6117,77170
,1,6118,77175
,1,6119,77180
,1,6120,77185
,1,6121,77190
,1,6122,77195
,1,6123,77200
,1,6124,77205
,1,6125,77210
,1,6126,77215
,1,6127,77220
,1,6128,77225
,1,6129,77230
,1,6130,77235
,1,6131,77240
,1,6132,77245
,1,6133,77250
,1,6134,77255
,1,6135,77260
,1,6136,77265
,1,6137,77270
,1,6138,77275
,1,6139,77280
,1,6140,77285
,1,6141,77290
,1,6142,77295
,1,6143,77300
,1,6144,77305
,1,6145,77310
,1,6146,77315
,1,6147,77320
,1,6148,77325
,1,6149,77330
,1,6150,77335
,1,6151,77340
,1,6152,77345
,1,6153,77350
,1,6154,77355
,1,6155,77360
,1,6156,77365
,1,6157,77370
,1,6158,77375
,1,6159,77380
,1,6160,77385
,1,6161,77390
,1,6162,77395
,1,6163,77400
,1,6164,77405
,1,6165,77410
,1,6166,77415
,1,6167,77420
,1,6168,77425
,1,6169,77430
,1,6170,77435
,1,6171,77440
,1,6172,77445
,1,6173,77450
,1,6174,77455
,1,6175,77460
,1,6176,77465
,1,6177,77470
,1,6178,77475
,1,6179,77480
,1,6180,77485
,1,6181,77490
,1,6182,77495
,1,6183,77500
,1,6184,77505
,1,6185,77510
,1,6186,77515
,1,6187,77520
,1,6188,77525
,1,6189,77530
,1,6190,77535
,1,6191,77540
,1,6192,77545
,1,6193,77550
,1,6194,77555
,1,6195,77560
,1,6196,77565
,1,6197,77570
,1,6198,77575
,1,6199,77580
,1,6200,77585
,1,6201,77590
,1,6202,77595
,1,6203,77600
,1,6204,77605
,1,6205,77610
,1,6206,77615
,1,6207,77620
,1,6208,77625
,1,6209,77630
,1,6210,77635
,1,6211,77640
,1,6212,77645
,1,6213,77650
,1,6214,77655
,1,6215,77660
,1,6216,77665
,1,6217,77670
,1,6218,77675
,1,6219,77680
,1,6220,77685
,1,6221,77690
,1,6222,77695
,1,6223,77700
,1,6224,77705
,1,6225,77710
,1,6226,77715
,1,6227,77720
,1,6228,77725
,1,6229,77730
,1,6230,77735
,1,6231,77740
,1,6232,77745
,1,6233,77750
,1,6234,77755
,1,6235,77760
,1,6236,77765
,1,6237,77770
,1,6238,77775
,1,6239,77780
,1,6240,77785
,1,6241,77790
,1,6242,77795
,1,6243,77800
,1,6244,77805
,1,6245,77810
,1,6246,77815
,1,6247,77820
,1,6248,77825
,1,6249,77830
,1,6250,77835
,1,6251,77840
,1,6252,77845
,1,6253,77850
,1,6254,77855
,1,6255,77860
,1,6256,77865
,1,6257,77870
,1,6258,77875
,1,6259,77880
,1,6260,77885
,1,6261,77890
,1,6262,77895
,1,6263,77900
,1,6264,77905
,1,6265,77910
,1,6266,77915
,1,6267,77920
,1,6268,77925
,1,6269,77930
,1,6270,77935
,1,6271,77940
,1,6272,77945
,1,6273,77950
,1,6274,77955
,1,6275,77960
,1,6276,77965
,1,6277,77970
,1,6278,77975
,1,6279,77980
,1,6280,77985
,1,6281,77990
,1,6282,77995
,1,6283,78000
,1,6284,78005
,1,6285,78010
,1,6286,78015
,1,6287,78020
,1,6288,78025
,1,6289,78030
,1,6290,78035
,1,6291,78040
,1,6292,78045
,1,6293,78050
,1,6294,78055
,1,6295,78060
,1,6296,78065
,1,6297,78070
,1,6298,78075
,1,6299,78080
,1,6300,78085
,1,6301,78090
,1,6302,78095
,1,6303,78100
,1,6304,78105
,1,6305,78110
,1,6306,78115
,1,6307,78120
,1,6308,78125
,1,6309,78130
,1,6310,78135
,1,6311,78140
,1,6312,78145
,1,6313,78150
,1,6314,78155
,1,6315,78160
,1,6316,78165
,1,6317,78170
,1,6318,78175
,1,6319,78180
,1,6320,78185
,1,6321,78190
,1,6322,78195
,1,6323,78200
,1,6324,78205
,1,6325,78210
,1,6326,78215
,1,6327,78220
,1,6328,78225
,1,6329,78230
,1,6330,78235
,1,6331,78240
,1,6332,78245
,1,6333,78250
,1,6334,78255
,1,6335,78260
,1,6336,78265
,1,6337,78270
,1,6338,78275
,1,6339,78280
,1,6340,78285
,1,6341,78290
,1,6342,78295
,1,6343,78300
,1,6344,78305
,1,6345,78310
,1,6346,78315
,1,6347,78320
,1,6348,78325
,1,6349,78330
,1,6350,78335
,1,6351,78340
,1,6352,78345
,1,6353,78350
,1,6354,78355
,1,6355,78360
,1,6356,78365
,1,6357,78370
,1,6358,78375
,1,6359,78380
,1,6360,78385
,1,6361,78390
,1,6362,78395
,1,6363,78400
,1,6364,78405
,1,6365,78410
,1,6366,78415
,1,6367,78420
,1,6368,78425
,1,6369,78430
,1,6370,78435
,1,6371,78440
,1,6372,78445
,1,6373,78450
,1,6374,78455
,1,6375,78460
,1,6376,78465
,1,6377,78470
,1,6378,78475
,1,6379,78480
,1,6380,78485
,1,6381,78490
,1,6382,78495
,1,6383,78500
,1,6384,78505
,1,6385,78510
,1,6386,78515
,1,6387,78520
,1,6388,78525
,1,6389,78530
,1,6390,78535
,1,6391,78540
,1,6392,78545
,1,6393,78550
,1,6394,78555
,1,6395,78560
,1,6396,78565
,1,6397,78570
,1,6398,78575
,1,6399,78580
,1,6400,78585
,1,6401,78590
,1,6402,78595
,1,6403,78600
,1,6404,78605
,1,6405,78610
,1,6406,78615
,1,6407,78620
,1,6408,78625
,1,6409,78630
,1,6410,78635
,1,6411,78640
,1,6412,78645
,1,6413,78650
,1,6414,78655
,1,6415,78660
,1,6416,78665
,1,6417,78670
,1,6418,78675
,1,6419,78680
,1,6420,78685
,1,6421,78690
,1,6422,78695
,1,6423,78700
,1,6424,78705
,1,6425,78710
,1,6426,78715
,1,6427,78720
,1,6428,78725
,1,6429,78730
,1,6430,78735
,1,6431,78740
,1,6432,78745
,1,6433,78750
,1,6434,78755
,1,6435,78760
,1,6436,78765
,1,6437,78770
,1,6438,78775
,1,6439,78780
,1,6440,78785
,1,6441,78790
,1,6442,78795
,1,6443,78800
,1,6444,78805
,1,6445,78810
,1,6446,78815
,1,6447,78820
,1,6448,78825
,1,6449,78830
,1,6450,78835
,1,6451,78840
,1,6452,78845
,1,6453,78850
,1,6454,78855
,1,6455,78860
,1,6456,78865
,1,6457,78870
,1,6458,78875
,1,6459,78880
,1,6460,78885
,1,6461,78890
,1,6462,78895
,1,6463,78900
,1,6464,78905
,1,6465,78910
,1,6466,78915
,1,6467,78920
,1,6468,78925
,1,6469,78930
,1,6470,78935
,1,6471,78940
,1,6472,78945
,1,6473,78950
,1,6474,78955
,1,6475,78960
,1,6476,78965
,1,6477,78970
,1,6478,78975
,1,6479,78980
,1,6480,78985
,1,6481,78990
,1,6482,78995
,1,6483,79000
,1,6484,79005
,1,6485,79010
,1,6486,79015
,1,6487,79020
,1,6488,79025
,1,6489,79030
,1,6490,79035
,1,6491,79040
,1,6492,79045
,1,6493,79050
,1,6494,79055
,1,6495,79060
,1,6496,79065
,1,6497,79070
,1,6498,79075
,1,6499,79080
,1,6500,79085
,1,6501,79090
,1,6502,79095
,1,6503,79100
,1,6504,79105
,1,6505,79110
,1,6506,79115
,1,6507,79120
,1,6508,79125
,1,6509,79130
,1,6510,79135
,1,6511,79140
,1,6512,79145
,1,6513,79150
,1,6514,79155
,1,6515,79160
,1,6516,79165
,1,6517,79170
,1,6518,79175
,1,6519,79180
,1,6520,79185
,1,6521,79190
,1,6522,79195
,1,6523,79200
,1,6524,79205
,1,6525,79210
,1,6526,79215
,1,6527,79220
,1,6528,79225
,1,6529,79230
,1,6530,79235
,1,6531,79240
,1,6532,79245
,1,6533,79250
,1,6534,79255
,1,6535,79260
,1,6536,79265
,1,6537,79270
,1,6538,79275
,1,6539,79280
,1,6540,79285
,1,6541,79290
,1,6542,79295
,1,6543,79300
,1,6544,79305
,1,6545,79310
,1,6546,79315
,1,6547,79320
,1,6548,79325
,1,6549,79330
,1,6550,79335
,1,6551,79340
,1,6552,79345
,1,6553,79350
,1,6554,79355
,1,6555,79360
,1,6556,79365
,1,6557,79370
,1,6558,79375
,1,6559,79380
,1,6560,79385
,1,6561,79390
,1,6562,79395
,1,6563,79400
,1,6564,79405
,1,6565,79410
,1,6566,79415
,1,6567,79420
,1,6568,79425
,1,6569,79430
,1,6570,79435
,1,6571,79440
,1,6572,79445
,1,6573,79450
,1,6574,79455
,1,6575,79460
,1,6576,79465
,1,6577,79470
,1,6578,79475
,1,6579,79480
,1,6580,79485
,1,6581,79490
,1,6582,79495
,1,6583,79500
,1,6584,79505
,1,6585,79510
,1,6586,79515
,1,6587,79520
,1,6588,79525
,1,6589,79530
,1,6590,79535
,1,6591,79540
,1,6592,79545
,1,6593,79550
,1,6594,79555
,1,6595,79560
,1,6596,79565
,1,6597,79570
,1,6598,79575
,1,6599,79580
,1,6600,79585
,1,6601,79590
,1,6602,79595
,1,6603,79600
,1,6604,79605
,1,6605,79610
,1,6606,79615
,1,6607,79620
,1,6608,79625
,1,6609,79630
,1,6610,79635
,1,6611,79640
,1,6612,79645
,1,6613,79650
,1,6614,79655
,1,6615,79660
,1,6616,79665
,1,6617,79670
,1,6618,79675
,1,6619,79680
,1,6620,79685
,1,6621,79690
,1,6622,79695
,1,6623,79700
,1,6624,79705
,1,6625,79710
,1,6626,79715
,1,6627,79720
,1,6628,79725
,1,6629,79730
,1,6630,79735
,1,6631,79740
,1,6632,79745
,1,6633,79750
,1,6634,79755
,1,6635,79760
,1,6636,79765
,1,6637,79770
,1,6638,79775
,1,6639,79780
,1,6640,79785
,1,6641,79790
,1,6642,79795
,1,6643,79800
,1,6644,79805
,1,6645,79810
,1,6646,79815
,1,6647,79820
,1,6648,79825
,1,6649,79830
,1,6650,79835
,1,6651,79840
,1,6652,79845
,1,6653,79850
,1,6654,79855
,1,6655,79860
,1,6656,79865
,1,6657,79870
,1,6658,79875
,1,6659,79880
,1,6660,79885
,1,6661,79890
,1,6662,79895
,1,6663,79900
,1,6664,79905
,1,6665,79910
,1,6666,79915
,1,6667,79920
,1,6668,79925
,1,6669,79930
,1,6670,79935
,1,6671,79940
,1,6672,79945
,1,6673,79950
,1,6674,79955
,1,6675,79960
,1,6676,79965
,1,6677,79970
,1,6678,79975
,1,6679,79980
,1,6680,79985
,1,6681,79990
,1,6682,79995
,1,6683,80000
,1,6684,80005
,1,6685,80010
,1,6686,80015
,1,6687,80020
,1,6688,80025
,1,6689,80030
,1,6690,80035
,1,6691,80040
,1,6692,80045
,1,6693,80050
,1,6694,80055
,1,6695,80060
,1,6696,80065
,1,6697,80070
,1,6698,80075
,1,6699,80080
,1,6700,80085
,1,6701,80090
,1,6702,80095
,1,6703,80100
,1,6704,80105
,1,6705,80110
,1,6706,80115
,1,6707,80120
,1,6708,80125
,1,6709,80130
,1,6710,80135
,1,6711,80140
,1,6712,80145
,1,6713,80150
,1,6714,80155
,1,6715,80160
,1,6716,80165
,1,6717,80170
,1,6718,80175
,1,6719,80180
,1,6720,80185
,1,6721,80190
,1,6722,80195
,1,6723,80200
,1,6724,80205
,1,6725,80210
,1,6726,80215
,1,6727,80220
,1,6728,80225
,1,6729,80230
,1,6730,80235
,1,6731,80240
,1,6732,80245
,1,6733,80250
,1,6734,80255
,1,6735,80260
,1,6736,80265
,1,6737,80270
,1,6738,80275
,1,6739,80280
,1,6740,80285
,1,6741,80290
,1,6742,80295
,1,6743,80300
,1,6744,80305
,1,6745,80310
,1,6746,80315
,1,6747,80320
,1,6748,80325
,1,6749,80330
,1,6750,80335
,1,6751,80340
,1,6752,80345
,1,6753,80350
,1,6754,80355
,1,6755,80360
,1,6756,80365
,1,6757,80370
,1,6758,80375
,1,6759,80380
,1,6760,80385
,1,6761,80390
,1,6762,80395
,1,6763,80400
,1,6764,80405
,1,6765,80410
,1,6766,80415
,1,6767,80420
,1,6768,80425
,1,6769,80430
,1,6770,80435
,1,6771,80440
,1,6772,80445
,1,6773,80450
,1,6774,80455
,1,6775,80460
,1,6776,80465
,1,6777,80470
,1,6778,80475
,1,6779,80480
,1,6780,80485
,1,6781,80490
,1,6782,80495
,1,6783,80500
,1,6784,80505
,1,6785,80510
,1,6786,80515
,1,6787,80520
,1,6788,80525
,1,6789,80530
,1,6790,80535
,1,6791,80540
,1,6792,80545
,1,6793,80550
,1,6794,80555
,1,6795,80560
,1,6796,80565
,1,6797,80570
,1,6798,80575
,1,6799,80580
,1,6800,80585
,1,6801,80590
,1,6802,80595
,1,6803,80600
,1,6804,80605
,1,6805,80610
,1,6806,80615
,1,6807,80620
,1,6808,80625
,1,6809,80630
,1,6810,80635
,1,6811,80640
,1,6812,80645
,1,6813,80650
,1,6814,80655
,1,6815,80660
,1,6816,80665
,1,6817,80670
,1,6818,80675
,1,6819,80680
,1,6820,80685
,1,6821,80690
,1,6822,80695
,1,6823,80700
,1,6824,80705
,1,6825,80710
,1,6826,80715
,1,6827,80720
,1,6828,80725
,1,6829,80730
,1,6830,80735
,1,6831,80740
,1,6832,80745
,1,6833,80750
,1,6834,80755
,1,6835,80760
,1,6836,80765
,1,6837,80770
,1,6838,80775
,1,6839,80780
,1,6840,80785
,1,6841,80790
,1,6842,80795
,1,6843,80800
,1,6844,80805
,1,6845,80810
,1,6846,80815
,1,6847,80820
,1,6848,80825
,1,6849,80830
,1,6850,80835
,1,6851,80840
,1,6852,80845
,1,6853,80850
,1,6854,80855
,1,6855,80860
,1,6856,80865
,1,6857,80870
,1,6858,80875
,1,6859,80880
,1,6860,80885
,1,6861,80890
,1,6862,80895
,1,6863,80900
,1,6864,80905
,1,6865,80910
,1,6866,80915
,1,6867,80920
,1,6868,80925
,1,6869,80930
,1,6870,80935
,1,6871,80940
,1,6872,80945
,1,6873,80950
,1,6874,80955
,1,6875,80960
,1,6876,80965
,1,6877,80970
,1,6878,80975
,1,6879,80980
,1,6880,80985
,1,6881,80990
,1,6882,80995
,1,6883,81000
,1,6884,81005
,1,6885,81010
,1,6886,81015
,1,6887,81020
,1,6888,81025
,1,6889,81030
,1,6890,81035
,1,6891,81040
,1,6892,81045
,1,6893,81050
,1,6894,81055
,1,6895,81060
,1,6896,81065
,1,6897,81070
,1,6898,81075
,1,6899,81080
,1,6900,81085
,1,6901,81090
,1,6902,81095
,1,6903,81100
,1,6904,81105
,1,6905,81110
,1,6906,81115
,1,6907,81120
,1,6908,81125
,1,6909,81130
,1,6910,81135
,1,6911,81140
,1,6912,81145
,1,6913,81150
,1,6914,81155
,1,6915,81160
,1,6916,81165
,1,6917,81170
,1,6918,81175
,1,6919,81180
,1,6920,81185
,1,6921,81190
,1,6922,81195
,1,6923,81200
,1,6924,81205
,1,6925,81210
,1,6926,81215
,1,6927,81220
,1,6928,81225
,1,6929,81230
,1,6930,81235
,1,6931,81240
,1,6932,81245
,1,6933,81250
,1,6934,81255
,1,6935,81260
,1,6936,81265
,1,6937,81270
,1,6938,81275
,1,6939,81280
,1,6940,81285
,1,6941,81290
,1,6942,81295
,1,6943,81300
,1,6944,81305
,1,6945,81310
,1,6946,81315
,1,6947,81320
,1,6948,81325
,1,6949,81330
,1,6950,81335
,1,6951,81340
,1,6952,81345
,1,6953,81350
,1,6954,81355
,1,6955,81360
,1,6956,81365
,1,6957,81370
,1,6958,81375
,1,6959,81380
,1,6960,81385
,1,6961,81390
,1,6962,81395
,1,6963,81400
,1,6964,81405
,1,6965,81410
,1,6966,81415
,1,6967,81420
,1,6968,81425
,1,6969,81430
,1,6970,81435
,1,6971,81440
,1,6972,81445
,1,6973,81450
,1,6974,81455
,1,6975,81460
,1,6976,81465
,1,6977,81470
,1,6978,81475
,1,6979,81480
,1,6980,81485
,1,6981,81490
,1,6982,81495
,1,6983,81500
,1,6984,81505
,1,6985,81510
,1,6986,81515
,1,6987,81520
,1,6988,81525
,1,6989,81530
,1,6990,81535
,1,6991,81540
,1,6992,81545
,1,6993,81550
,1,6994,81555
,1,6995,81560
,1,6996,81565
,1,6997,81570
,1,6998,81575
,1,6999,81580
,1,7000,81585
,1,7001,81590
,1,7002,81595
,1,7003,81600
,1,7004,81605
,1,7005,81610
,1,7006,81615
,1,7007,81620
,1,7008,81625
,1,7009,81630
,1,7010,81635
,1,7011,81640
,1,7012,81645
,1,7013,81650
,1,7014,81655
,1,7015,81660
,1,7016,81665
,1,7017,81670
,1,7018,81675
,1,7019,81680
,1,7020,81685
,1,7021,81690
,1,7022,81695
,1,7023,81700
,1,7024,81705
,1,7025,81710
,1,7026,81715
,1,7027,81720
,1,7028,81725
,1,7029,81730
,1,7030,81735
,1,7031,81740
,1,7032,81745
,1,7033,81750
,1,7034,81755
,1,7035,81760
,1,7036,81765
,1,7037,81770
,1,7038,81775
,1,7039,81780
,1,7040,81785
,1,7041,81790
,1,7042,81795
,1,7043,81800
,1,7044,81805
,1,7045,81810
,1,7046,81815
,1,7047,81820
,1,7048,81825
,1,7049,81830
,1,7050,81835
,1,7051,81840
,1,7052,81845
,1,7053,81850
,1,7054,81855
,1,7055,81860
,1,7056,81865
,1,7057,81870
,1,7058,81875
,1,7059,81880
,1,7060,81885
,1,7061,81890
,1,7062,81895
,1,7063,81900
,1,7064,81905
,1,7065,81910
,1,7066,81915
,1,7067,81920
,1,7068,81925
,1,7069,81930
,1,7070,81935
,1,7071,81940
,1,7072,81945
,1,7073,81950
,1,7074,81955
,1,7075,81960
,1,7076,81965
,1,7077,81970
,1,7078,81975
,1,7079,81980
,1,7080,81985
,1,7081,81990
,1,7082,81995
,1,7083,82000
,1,7084,82005
,1,7085,82010
,1,7086,82015
,1,7087,82020
,1,7088,82025
,1,7089,82030
,1,7090,82035
,1,7091,82040
,1,7092,82045
,1,7093,82050
,1,7094,82055
,1,7095,82060
,1,7096,82065
,1,7097,82070
,1,7098,82075
,1,7099,82080
,1,7100,82085
,1,7101,82090
,1,7102,82095
,1,7103,82100
,1,7104,82105
,1,7105,82110
,1,7106,82115
,1,7107,82120
,1,7108,82125
,1,7109,82130
,1,7110,82135
,1,7111,82140
,1,7112,82145
,1,7113,82150
,1,7114,82155
,1,7115,82160
,1,7116,82165
,1,7117,82170
,1,7118,82175
,1,7119,82180
,1,7120,82185
,1,7121,82190
,1,7122,82195
,1,7123,82200
,1,7124,82205
,1,7125,82210
,1,7126,82215
,1,7127,82220
,1,7128,82225
,1,7129,82230
,1,7130,82235
,1,7131,82240
,1,7132,82245
,1,7133,82250
,1,7134,82255
,1,7135,82260
,1,7136,82265
,1,7137,82270
,1,7138,82275
,1,7139,82280
,1,7140,82285
,1,7141,82290
,1,7142,82295
,1,7143,82300
,1,7144,82305
,1,7145,82310
,1,7146,82315
,1,7147,82320
,1,7148,82325
,1,7149,82330
,1,7150,82335
,1,7151,82340
,1,7152,82345
,1,7153,82350
,1,7154,82355
,1,7155,82360
,1,7156,82365
,1,7157,82370
,1,7158,82375
,1,7159,82380
,1,7160,82385
,1,7161,82390
,1,7162,82395
,1,7163,82400
,1,7164,82405
,1,7165,82410
,1,7166,82415
,1,7167,82420
,1,7168,82425
,1,7169,82430
,1,7170,82435
,1,7171,82440
,1,7172,82445
,1,7173,82450
,1,7174,82455
,1,7175,82460
,1,7176,82465
,1,7177,82470
,1,7178,82475
,1,7179,82480
,1,7180,82485
,1,7181,82490
,1,7182,82495
,1,7183,82500
,1,7184,82505
,1,7185,82510
,1,7186,82515
,1,7187,82520
,1,7188,82525
,1,7189,82530
,1,7190,82535
,1,7191,82540
,1,7192,82545
,1,7193,82550
,1,7194,82555
,1,7195,82560
,1,7196,82565
,1,7197,82570
,1,7198,82575
,1,7199,82580
,1,7200,82585
,1,7201,82590
,1,7202,82595
,1,7203,82600
,1,7204,82605
,1,7205,82610
,1,7206,82615
,1,7207,82620
,1,7208,82625
,1,7209,82630
,1,7210,82635
,1,7211,82640
,1,7212,82645
,1,7213,82650
,1,7214,82655
,1,7215,82660
,1,7216,82665
,1,7217,82670
,1,7218,82675
,1,7219,82680
,1,7220,82685
,1,7221,82690
,1,7222,82695
,1,7223,82700
,1,7224,82705
,1,7225,82710
,1,7226,82715
,1,7227,82720
,1,7228,82725
,1,7229,82730
,1,7230,82735
,1,7231,82740
,1,7232,82745
,1,7233,82750
,1,7234,82755
,1,7235,82760
,1,7236,82765
,1,7237,82770
,1,7238,82775
,1,7239,82780
,1,7240,82785
,1,7241,82790
,1,7242,82795
,1,7243,82800
,1,7244,82805
,1,7245,82810
,1,7246,82815
,1,7247,82820
,1,7248,82825
,1,7249,82830
,1,7250,82835
,1,7251,82840
,1,7252,82845
,1,7253,82850
,1,7254,82855
,1,7255,82860
,1,7256,82865
,1,7257,82870
,1,7258,82875
,1,7259,82880
,1,7260,82885
,1,7261,82890
,1,7262,82895
,1,7263,82900
,1,7264,82905
,1,7265,82910
,1,7266,82915
,1,7267,82920
,1,7268,82925
,1,7269,82930
,1,7270,82935
,1,7271,82940
,1,7272,82945
,1,7273,82950
,1,7274,82955
,1,7275,82960
,1,7276,82965
,1,7277,82970
,1,7278,82975
,1,7279,82980
,1,7280,82985
,1,7281,82990
,1,7282,82995
,1,7283,83000
,1,7284,83005
,1,7285,83010
,1,7286,83015
,1,7287,83020
,1,7288,83025
,1,7289,83030
,1,7290,83035
,1,7291,83040
,1,7292,83045
,1,7293,83050
,1,7294,83055
,1,7295,83060
,1,7296,83065
,1,7297,83070
,1,7298,83075
,1,7299,83080
,1,7300,83085
,1,7301,83090
,1,7302,83095
,1,7303,83100
,1,7304,83105
,1,7305,83110
,1,7306,83115
,1,7307,83120
,1,7308,83125
,1,7309,83130
,1,7310,83135
,1,7311,83140
,1,7312,83145
,1,7313,83150
,1,7314,83155
,1,7315,83160
,1,7316,83165
,1,7317,83170
,1,7318,83175
,1,7319,83180
,1,7320,83185
,1,7321,83190
,1,7322,83195
,1,7323,83200
,1,7324,83205
,1,7325,83210
,1,7326,83215
,1,7327,83220
,1,7328,83225
,1,7329,83230
,1,7330,83235
,1,7331,83240
,1,7332,83245
,1,7333,83250
,1,7334,83255
,1,7335,83260
,1,7336,83265
,1,7337,83270
,1,7338,83275
,1,7339,83280
,1,7340,83285
,1,7341,83290
,1,7342,83295
,1,7343,83300
,1,7344,83305
,1,7345,83310
,1,7346,83315
,1,7347,83320
,1,7348,83325
,1,7349,83330
,1,7350,83335
,1,7351,83340
,1,7352,83345
,1,7353,83350
,1,7354,83355
,1,7355,83360
,1,7356,83365
,1,7357,83370
,1,7358,83375
,1,7359,83380
,1,7360,83385
,1,7361,83390
,1,7362,83395
,1,7363,83400
,1,7364,83405
,1,7365,83410
,1,7366,83415
,1,7367,83420
,1,7368,83425
,1,7369,83430
,1,7370,83435
,1,7371,83440
,1,7372,83445
,1,7373,83450
,1,7374,83455
,1,7375,83460
,1,7376,83465
,1,7377,83470
,1,7378,83475
,1,7379,83480
,1,7380,83485
,1,7381,83490
,1,7382,83495
,1,7383,83500
,1,7384,83505
,1,7385,83510
,1,7386,83515
,1,7387,83520
,1,7388,83525
,1,7389,83530
,1,7390,83535
,1,7391,83540
,1,7392,83545
,1,7393,83550
,1,7394,83555
,1,7395,83560
,1,7396,83565
,1,7397,83570
,1,7398,83575
,1,7399,83580
,1,7400,83585
,1,7401,83590
,1,7402,83595
,1,7403,83600
,1,7404,83605
,1,7405,83610
,1,7406,83615
,1,7407,83620
,1,7408,83625
,1,7409,83630
,1,7410,83635
,1,7411,83640
,1,7412,83645
,1,7413,83650
,1,7414,83655
,1,7415,83660
,1,7416,83665
,1,7417,83670
,1,7418,83675
,1,7419,83680
,1,7420,83685
,1,7421,83690
,1,7422,83695
,1,7423,83700
,1,7424,83705
,1,7425,83710
,1,7426,83715
,1,7427,83720
,1,7428,83725
,1,7429,83730
,1,7430,83735
,1,7431,83740
,1,7432,83745
,1,7433,83750
,1,7434,83755
,1,7435,83760
,1,7436,83765
,1,7437,83770
,1,7438,83775
,1,7439,83780
,1,7440,83785
,1,7441,83790
,1,7442,83795
,1,7443,83800
,1,7444,83805
,1,7445,83810
,1,7446,83815
,1,7447,83820
,1,7448,83825
,1,7449,83830
,1,7450,83835
,1,7451,83840
,1,7452,83845
,1,7453,83850
,1,7454,83855
,1,7455,83860
,1,7456,83865
,1,7457,83870
,1,7458,83875
,1,7459,83880
,1,7460,83885
,1,7461,83890
,1,7462,83895
,1,7463,83900
,1,7464,83905
,1,7465,83910
,1,7466,83915
,1,7467,83920
,1,7468,83925
,1,7469,83930
,1,7470,83935
,1,7471,83940
,1,7472,83945
,1,7473,83950
,1,7474,83955
,1,7475,83960
,1,7476,83965
,1,7477,83970
,1,7478,83975
,1,7479,83980
,1,7480,83985
,1,7481,83990
,1,7482,83995
,1,7483,84000
,1,7484,84005
,1,7485,84010
,1,7486,84015
,1,7487,84020
,1,7488,84025
,1,7489,84030
,1,7490,84035
,1,7491,84040
,1,7492,84045
,1,7493,84050
,1,7494,84055
,1,7495,84060
,1,7496,84065
,1,7497,84070
,1,7498,84075
,1,7499,84080
,1,7500,84085
,1,7501,84090
,1,7502,84095
,1,7503,84100
,1,7504,84105
,1,7505,84110
,1,7506,84115
,1,7507,84120
,1,7508,84125
,1,7509,84130
,1,7510,84135
,1,7511,84140
,1,7512,84145
,1,7513,84150
,1,7514,84155
,1,7515,84160
,1,7516,84165
,1,7517,84170
,1,7518,84175
,1,7519,84180
,1,7520,84185
,1,7521,84190
,1,7522,84195
,1,7523,84200
,1,7524,84205
,1,7525,84210
,1,7526,84215
,1,7527,84220
,1,7528,84225
,1,7529,84230
,1,7530,84235
,1,7531,84240
,1,7532,84245
,1,7533,84250
,1,7534,84255
,1,7535,84260
,1,7536,84265
,1,7537,84270
,1,7538,84275
,1,7539,84280
,1,7540,84285
,1,7541,84290
,1,7542,84295
,1,7543,84300
,1,7544,84305
,1,7545,84310
,1,7546,84315
,1,7547,84320
,1,7548,84325
,1,7549,84330
,1,7550,84335
,1,7551,84340
,1,7552,84345
,1,7553,84350
,1,7554,84355
,1,7555,84360
,1,7556,84365
,1,7557,84370
,1,7558,84375
,1,7559,84380
,1,7560,84385
,1,7561,84390
,1,7562,84395
,1,7563,84400
,1,7564,84405
,1,7565,84410
,1,7566,84415
,1,7567,84420
,1,7568,84425
,1,7569,84430
,1,7570,84435
,1,7571,84440
,1,7572,84445
,1,7573,84450
,1,7574,84455
,1,7575,84460
,1,7576,84465
,1,7577,84470
,1,7578,84475
,1,7579,84480
,1,7580,84485
,1,7581,84490
,1,7582,84495
,1,7583,84500
,1,7584,84505
,1,7585,84510
,1,7586,84515
,1,7587,84520
,1,7588,84525
,1,7589,84530
,1,7590,84535
,1,7591,84540
,1,7592,84545
,1,7593,84550
,1,7594,84555
,1,7595,84560
,1,7596,84565
,1,7597,84570
,1,7598,84575
,1,7599,84580
,1,7600,84585
,1,7601,84590
,1,7602,84595
,1,7603,84600
,1,7604,84605
,1,7605,84610
,1,7606,84615
,1,7607,84620
,1,7608,84625
,1,7609,84630
,1,7610,84635
,1,7611,84640
,1,7612,84645
,1,7613,84650
,1,7614,84655
,1,7615,84660
,1,7616,84665
,1,7617,84670
,1,7618,84675
,1,7619,84680
,1,7620,84685
,1,7621,84690
,1,7622,84695
,1,7623,84700
,1,7624,84705
,1,7625,84710
,1,7626,84715
,1,7627,84720
,1,7628,84725
,1,7629,84730
,1,7630,84735
,1,7631,84740
,1,7632,84745
,1,7633,84750
,1,7634,84755
,1,7635,84760
,1,7636,84765
,1,7637,84770
,1,7638,84775
,1,7639,84780
,1,7640,84785
,1,7641,84790
,1,7642,84795
,1,7643,84800
,1,7644,84805
,1,7645,84810
,1,7646,84815
,1,7647,84820
,1,7648,84825
,1,7649,84830
,1,7650,84835
,1,7651,84840
,1,7652,84845
,1,7653,84850
,1,7654,84855
,1,7655,84860
,1,7656,84865
,1,7657,84870
,1,7658,84875
,1,7659,84880
,1,7660,84885
,1,7661,84890
,1,7662,84895
,1,7663,84900
,1,7664,84905
,1,7665,84910
,1,7666,84915
,1,7667,84920
,1,7668,84925
,1,7669,84930
,1,7670,84935
,1,7671,84940
,1,7672,84945
,1,7673,84950
,1,7674,84955
,1,7675,84960
,1,7676,84965
,1,7677,84970
,1,7678,84975
,1,7679,84980
,1,7680,84985
,1,7681,84990
,1,7682,84995
,1,7683,85000
,1,7684,85005
,1,7685,85010
,1,7686,85015
,1,7687,85020
,1,7688,85025
,1,7689,85030
,1,7690,85035
,1,7691,85040
,1,7692,85045
,1,7693,85050
,1,7694,85055
,1,7695,85060
,1,7696,85065
,1,7697,85070
,1,7698,85075
,1,7699,85080
,1,7700,85085
,1,7701,85090
,1,7702,85095
,1,7703,85100
,1,7704,85105
,1,7705,85110
,1,7706,85115
,1,7707,85120
,1,7708,85125
,1,7709,85130
,1,7710,85135
,1,7711,85140
,1,7712,85145
,1,7713,85150
,1,7714,85155
,1,7715,85160
,1,7716,85165
,1,7717,85170
,1,7718,85175
,1,7719,85180
,1,7720,85185
,1,7721,85190
,1,7722,85195
,1,7723,85200
,1,7724,85205
,1,7725,85210
,1,7726,85215
,1,7727,85220
,1,7728,85225
,1,7729,85230
,1,7730,85235
,1,7731,85240
,1,7732,85245
,1,7733,85250
,1,7734,85255
,1,7735,85260
,1,7736,85265
,1,7737,85270
,1,7738,85275
,1,7739,85280
,1,7740,85285
,1,7741,85290
,1,7742,85295
,1,7743,85300
,1,7744,85305
,1,7745,85310
,1,7746,85315
,1,7747,85320
,1,7748,85325
,1,7749,85330
,1,7750,85335
,1,7751,85340
,1,7752,85345
,1,7753,85350
,1,7754,85355
,1,7755,85360
,1,7756,85365
,1,7757,85370
,1,7758,85375
,1,7759,85380
,1,7760,85385
,1,7761,85390
,1,7762,85395
,1,7763,85400
,1,7764,85405
,1,7765,85410
,1,7766,85415
,1,7767,85420
,1,7768,85425
,1,7769,85430
,1,7770,85435
,1,7771,85440
,1,7772,85445
,1,7773,85450
,1,7774,85455
,1,7775,85460
,1,7776,85465
,1,7777,85470
,1,7778,85475
,1,7779,85480
,1,7780,85485
,1,7781,85490
,1,7782,85495
,1,7783,85500
,1,7784,85505
,1,7785,85510
,1,7786,85515
,1,7787,85520
,1,7788,85525
,1,7789,85530
,1,7790,85535
,1,7791,85540
,1,7792,85545
,1,7793,85550
,1,7794,85555
,1,7795,85560
,1,7796,85565
,1,7797,85570
,1,7798,85575
,1,7799,85580
,1,7800,85585
,1,7801,85590
,1,7802,85595
,1,7803,85600
,1,7804,85605
,1,7805,85610
,1,7806,85615
,1,7807,85620
,1,7808,85625
,1,7809,85630
,1,7810,85635
,1,7811,85640
,1,7812,85645
,1,7813,85650
,1,7814,85655
,1,7815,85660
,1,7816,85665
,1,7817,85670
,1,7818,85675
,1,7819,85680
,1,7820,85685
,1,7821,85690
,1,7822,85695
,1,7823,85700
,1,7824,85705
,1,7825,85710
,1,7826,85715
,1,7827,85720
,1,7828,85725
,1,7829,85730
,1,7830,85735
,1,7831,85740
,1,7832,85745
,1,7833,85750
,1,7834,85755
,1,7835,85760
,1,7836,85765
,1,7837,85770
,1,7838,85775
,1,7839,85780
,1,7840,85785
,1,7841,85790
,1,7842,85795
,1,7843,85800
,1,7844,85805
,1,7845,85810
,1,7846,85815
,1,7847,85820
,1,7848,85825
,1,7849,85830
,1,7850,85835
,1,7851,85840
,1,7852,85845
,1,7853,85850
,1,7854,85855
,1,7855,85860
,1,7856,85865
,1,7857,85870
,1,7858,85875
,1,7859,85880
,1,7860,85885
,1,7861,85890
,1,7862,85895
,1,7863,85900
,1,7864,85905
,1,7865,85910
,1,7866,85915
,1,7867,85920
,1,7868,85925
,1,7869,85930
,1,7870,85935
,1,7871,85940
,1,7872,85945
,1,7873,85950
,1,7874,85955
,1,7875,85960
,1,7876,85965
,1,7877,85970
,1,7878,85975
,1,7879,85980
,1,7880,85985
,1,7881,85990
,1,7882,85995
,1,7883,86000
,1,7884,86005
,1,7885,86010
,1,7886,86015
,1,7887,86020
,1,7888,86025
,1,7889,86030
,1,7890,86035
,1,7891,86040
,1,7892,86045
,1,7893,86050
,1,7894,86055
,1,7895,86060
,1,7896,86065
,1,7897,86070
,1,7898,86075
,1,7899,86080
,1,7900,86085
,1,7901,86090
,1,7902,86095
,1,7903,86100
,1,7904,86105
,1,7905,86110
,1,7906,86115
,1,7907,86120
,1,7908,86125
,1,7909,86130
,1,7910,86135
,1,7911,86140
,1,7912,86145
,1,7913,86150
,1,7914,86155
,1,7915,86160
,1,7916,86165
,1,7917,86170
,1,7918,86175
,1,7919,86180
,1,7920,86185
,1,7921,86190
,1,7922,86195
,1,7923,86200
,1,7924,86205
,1,7925,86210
,1,7926,86215
,1,7927,86220
,1,7928,86225
,1,7929,86230
,1,7930,86235
,1,7931,86240
,1,7932,86245
,1,7933,86250
,1,7934,86255
,1,7935,86260
,1,7936,86265
,1,7937,86270
,1,7938,86275
,1,7939,86280
,1,7940,86285
,1,7941,86290
,1,7942,86295
,1,7943,86300
,1,7944,86305
,1,7945,86310
,1,7946,86315
,1,7947,86320
,1,7948,86325
,1,7949,86330
,1,7950,86335
,1,7951,86340
,1,7952,86345
,1,7953,86350
,1,7954,86355
,1,7955,86360
,1,7956,86365
,1,7957,86370
,1,7958,86375
,1,7959,86380
,1,7960,86385
,1,7961,86390
,1,7962,86395
,1,7963,86400
,1,7964,86405
,1,7965,86410
,1,7966,86415
,1,7967,86420
,1,7968,86425
,1,7969,86430
,1,7970,86435
,1,7971,86440
,1,7972,86445
,1,7973,86450
,1,7974,86455
,1,7975,86460
,1,7976,86465
,1,7977,86470
,1,7978,86475
,1,7979,86480
,1,7980,86485
,1,7981,86490
,1,7982,86495
,1,7983,86500
,1,7984,86505
,1,7985,86510
,1,7986,86515
,1,7987,86520
,1,7988,86525
,1,7989,86530
,1,7990,86535
,1,7991,86540
,1,7992,86545
,1,7993,86550
,1,7994,86555
,1,7995,86560
,1,7996,86565
,1,7997,86570
,1,7998,86575
,1,7999,86580
,1,8000,86585
,1,8001,86590
,1,8002,86595
,1,8003,86600
,1,8004,86605
,1,8005,86610
,1,8006,86615
,1,8007,86620
,1,8008,86625
,1,8009,86630
,1,8010,86635
,1,8011,86640
,1,8012,86645
,1,8013,86650
,1,8014,86655
,1,8015,86660
,1,8016,86665
,1,8017,86670
,1,8018,86675
,1,8019,86680
,1,8020,86685
,1,8021,86690
,1,8022,86695
,1,8023,86700
,1,8024,86705
,1,8025,86710
,1,8026,86715
,1,8027,86720
,1,8028,86725
,1,8029,86730
,1,8030,86735
,1,8031,86740
,1,8032,86745
,1,8033,86750
,1,8034,86755
,1,8035,86760
,1,8036,86765
,1,8037,86770
,1,8038,86775
,1,8039,86780
,1,8040,86785
,1,8041,86790
,1,8042,86795
,1,8043,86800
,1,8044,86805
,1,8045,86810
,1,8046,86815
,1,8047,86820
,1,8048,86825
,1,8049,86830
,1,8050,86835
,1,8051,86840
,1,8052,86845
,1,8053,86850
,1,8054,86855
,1,8055,86860
,1,8056,86865
,1,8057,86870
,1,8058,86875
,1,8059,86880
,1,8060,86885
,1,8061,86890
,1,8062,86895
,1,8063,86900
,1,8064,86905
,1,8065,86910
,1,8066,86915
,1,8067,86920
,1,8068,86925
,1,8069,86930
,1,8070,86935
,1,8071,86940
,1,8072,86945
,1,8073,86950
,1,8074,86955
,1,8075,86960
,1,8076,86965
,1,8077,86970
,1,8078,86975
,1,8079,86980
,1,8080,86985
,1,8081,86990
,1,8082,86995
,1,8083,87000
,1,8084,87005
,1,8085,87010
,1,8086,87015
,1,8087,87020
,1,8088,87025
,1,8089,87030
,1,8090,87035
,1,8091,87040
,1,8092,87045
,1,8093,87050
,1,8094,87055
,1,8095,87060
,1,8096,87065
,1,8097,87070
,1,8098,87075
,1,8099,87080
,1,8100,87085
,1,8101,87090
,1,8102,87095
,1,8103,87100
,1,8104,87105
,1,8105,87110
,1,8106,87115
,1,8107,87120
,1,8108,87125
,1,8109,87130
,1,8110,87135
,1,8111,87140
,1,8112,87145
,1,8113,87150
,1,8114,87155
,1,8115,87160
,1,8116,87165
,1,8117,87170
,1,8118,87175
,1,8119,87180
,1,8120,87185
,1,8121,87190
,1,8122,87195
,1,8123,87200
,1,8124,87205
,1,8125,87210
,1,8126,87215
,1,8127,87220
,1,8128,87225
,1,8129,87230
,1,8130,87235
,1,8131,87240
,1,8132,87245
,1,8133,87250
,1,8134,87255
,1,8135,87260
,1,8136,87265
,1,8137,87270
,1,8138,87275
,1,8139,87280
,1,8140,87285
,1,8141,87290
,1,8142,87295
,1,8143,87300
,1,8144,87305
,1,8145,87310
,1,8146,87315
,1,8147,87320
,1,8148,87325
,1,8149,87330
,1,8150,87335
,1,8151,87340
,1,8152,87345
,1,8153,87350
,1,8154,87355
,1,8155,87360
,1,8156,87365
,1,8157,87370
,1,8158,87375
,1,8159,87380
,1,8160,87385
,1,8161,87390
,1,8162,87395
,1,8163,87400
,1,8164,87405
,1,8165,87410
,1,8166,87415
,1,8167,87420
,1,8168,87425
,1,8169,87430
,1,8170,87435
,1,8171,87440
,1,8172,87445
,1,8173,87450
,1,8174,87455
,1,8175,87460
,1,8176,87465
,1,8177,87470
,1,8178,87475
,1,8179,87480
,1,8180,87485
,1,8181,87490
,1,8182,87495
,1,8183,87500
,1,8184,87505
,1,8185,87510
,1,8186,87515
,1,8187,87520
,1,8188,87525
,1,8189,87530
,1,8190,87535
,1,8191,87540
,1,8192,87545
,1,8193,87550
,1,8194,87555
,1,8195,87560
,1,8196,87565
,1,8197,87570
,1,8198,87575
,1,8199,87580
,1,8200,87585
,1,8201,87590
,1,8202,87595
,1,8203,87600
,1,8204,87605
,1,8205,87610
,1,8206,87615
,1,8207,87620
,1,8208,87625
,1,8209,87630
,1,8210,87635
,1,8211,87640
,1,8212,87645
,1,8213,87650
,1,8214,87655
,1,8215,87660
,1,8216,87665
,1,8217,87670
,1,8218,87675
,1,8219,87680
,1,8220,87685
,1,8221,87690
,1,8222,87695
,1,8223,87700
,1,8224,87705
,1,8225,87710
,1,8226,87715
,1,8227,87720
,1,8228,87725
,1,8229,87730
,1,8230,87735
,1,8231,87740
,1,8232,87745
,1,8233,87750
,1,8234,87755
,1,8235,87760
,1,8236,87765
,1,8237,87770
,1,8238,87775
,1,8239,87780
,1,8240,87785
,1,8241,87790
,1,8242,87795
,1,8243,87800
,1,8244,87805
,1,8245,87810
,1,8246,87815
,1,8247,87820
,1,8248,87825
,1,8249,87830
,1,8250,87835
,1,8251,87840
,1,8252,87845
,1,8253,87850
,1,8254,87855
,1,8255,87860
,1,8256,87865
,1,8257,87870
,1,8258,87875
,1,8259,87880
,1,8260,87885
,1,8261,87890
,1,8262,87895
,1,8263,87900
,1,8264,87905
,1,8265,87910
,1,8266,87915
,1,8267,87920
,1,8268,87925
,1,8269,87930
,1,8270,87935
,1,8271,87940
,1,8272,87945
,1,8273,87950
,1,8274,87955
,1,8275,87960
,1,8276,87965
,1,8277,87970
,1,8278,87975
,1,8279,87980
,1,8280,87985
,1,8281,87990
,1,8282,87995
,1,8283,88000
,1,8284,88005
,1,8285,88010
,1,8286,88015
,1,8287,88020
,1,8288,88025
,1,8289,88030
,1,8290,88035
,1,8291,88040
,1,8292,88045
,1,8293,88050
,1,8294,88055
,1,8295,88060
,1,8296,88065
,1,8297,88070
,1,8298,88075
,1,8299,88080
,1,8300,88085
,1,8301,88090
,1,8302,88095
,1,8303,88100
,1,8304,88105
,1,8305,88110
,1,8306,88115
,1,8307,88120
,1,8308,88125
,1,8309,88130
,1,8310,88135
,1,8311,88140
,1,8312,88145
,1,8313,88150
,1,8314,88155
,1,8315,88160
,1,8316,88165
,1,8317,88170
,1,8318,88175
,1,8319,88180
,1,8320,88185
,1,8321,88190
,1,8322,88195
,1,8323,88200
,1,8324,88205
,1,8325,88210
,1,8326,88215
,1,8327,88220
,1,8328,88225
,1,8329,88230
,1,8330,88235
,1,8331,88240
,1,8332,88245
,1,8333,88250
,1,8334,88255
,1,8335,88260
,1,8336,88265
,1,8337,88270
,1,8338,88275
,1,8339,88280
,1,8340,88285
,1,8341,88290
,1,8342,88295
,1,8343,88300
,1,8344,88305
,1,8345,88310
,1,8346,88315
,1,8347,88320
,1,8348,88325
,1,8349,88330
,1,8350,88335
,1,8351,88340
,1,8352,88345
,1,8353,88350
,1,8354,88355
,1,8355,88360
,1,8356,88365
,1,8357,88370
,1,8358,88375
,1,8359,88380
,1,8360,88385
,1,8361,88390
,1,8362,88395
,1,8363,88400
,1,8364,88405
,1,8365,88410
,1,8366,88415
,1,8367,88420
,1,8368,88425
,1,8369,88430
,1,8370,88435
,1,8371,88440
,1,8372,88445
,1,8373,88450
,1,8374,88455
,1,8375,88460
,1,8376,88465
,1,8377,88470
,1,8378,88475
,1,8379,88480
,1,8380,88485
,1,8381,88490
,1,8382,88495
,1,8383,88500
,1,8384,88505
,1,8385,88510
,1,8386,88515
,1,8387,88520
,1,8388,88525
,1,8389,88530
,1,8390,88535
,1,8391,88540
,1,8392,88545
,1,8393,88550
,1,8394,88555
,1,8395,88560
,1,8396,88565
,1,8397,88570
,1,8398,88575
,1,8399,88580
,1,8400,88585
,1,8401,88590
,1,8402,88595
,1,8403,88600
,1,8404,88605
,1,8405,88610
,1,8406,88615
,1,8407,88620
,1,8408,88625
,1,8409,88630
,1,8410,88635
,1,8411,88640
,1,8412,88645
,1,8413,88650
,1,8414,88655
,1,8415,88660
,1,8416,88665
,1,8417,88670
,1,8418,88675
,1,8419,88680
,1,8420,88685
,1,8421,88690
,1,8422,88695
,1,8423,88700
,1,8424,88705
,1,8425,88710
,1,8426,88715
,1,8427,88720
,1,8428,88725
,1,8429,88730
,1,8430,88735
,1,8431,88740
,1,8432,88745
,1,8433,88750
,1,8434,88755
,1,8435,88760
,1,8436,88765
,1,8437,88770
,1,8438,88775
,1,8439,88780
,1,8440,88785
,1,8441,88790
,1,8442,88795
,1,8443,88800
,1,8444,88805
,1,8445,88810
,1,8446,88815
,1,8447,88820
,1,8448,88825
,1,8449,88830
,1,8450,88835
,1,8451,88840
,1,8452,88845
,1,8453,88850
,1,8454,88855
,1,8455,88860
,1,8456,88865
,1,8457,88870
,1,8458,88875
,1,8459,88880
,1,8460,88885
,1,8461,88890
,1,8462,88895
,1,8463,88900
,1,8464,88905
,1,8465,88910
,1,8466,88915
,1,8467,88920
,1,8468,88925
,1,8469,88930
,1,8470,88935
,1,8471,88940
,1,8472,88945
,1,8473,88950
,1,8474,88955
,1,8475,88960
,1,8476,88965
,1,8477,88970
,1,8478,88975
,1,8479,88980
,1,8480,88985
,1,8481,88990
,1,8482,88995
,1,8483,89000
,1,8484,89005
,1,8485,89010
,1,8486,89015
,1,8487,89020
,1,8488,89025
,1,8489,89030
,1,8490,89035
,1,8491,89040
,1,8492,89045
,1,8493,89050
,1,8494,89055
,1,8495,89060
,1,8496,89065
,1,8497,89070
,1,8498,89075
,1,8499,89080
,1,8500,89085
,1,8501,89090
,1,8502,89095
,1,8503,89100
,1,8504,89105
,1,8505,89110
,1,8506,89115
,1,8507,89120
,1,8508,89125
,1,8509,89130
,1,8510,89135
,1,8511,89140
,1,8512,89145
,1,8513,89150
,1,8514,89155
,1,8515,89160
,1,8516,89165
,1,8517,89170
,1,8518,89175
,1,8519,89180
,1,8520,89185
,1,8521,89190
,1,8522,89195
,1,8523,89200
,1,8524,89205
,1,8525,89210
,1,8526,89215
,1,8527,89220
,1,8528,89225
,1,8529,89230
,1,8530,89235
,1,8531,89240
,1,8532,89245
,1,8533,89250
,1,8534,89255
,1,8535,89260
,1,8536,89265
,1,8537,89270
,1,8538,89275
,1,8539,89280
,1,8540,89285
,1,8541,89290
,1,8542,89295
,1,8543,89300
,1,8544,89305
,1,8545,89310
,1,8546,89315
,1,8547,89320
,1,8548,89325
,1,8549,89330
,1,8550,89335
,1,8551,89340
,1,8552,89345
,1,8553,89350
,1,8554,89355
,1,8555,89360
,1,8556,89365
,1,8557,89370
,1,8558,89375
,1,8559,89380
,1,8560,89385
,1,8561,89390
,1,8562,89395
,1,8563,89400
,1,8564,89405
,1,8565,89410
,1,8566,89415
,1,8567,89420
,1,8568,89425
,1,8569,89430
,1,8570,89435
,1,8571,89440
,1,8572,89445
,1,8573,89450
,1,8574,89455
,1,8575,89460
,1,8576,89465
,1,8577,89470
,1,8578,89475
,1,8579,89480
,1,8580,89485
,1,8581,89490
,1,8582,89495
,1,8583,89500
,1,8584,89505
,1,8585,89510
,1,8586,89515
,1,8587,89520
,1,8588,89525
,1,8589,89530
,1,8590,89535
,1,8591,89540
,1,8592,89545
,1,8593,89550
,1,8594,89555
,1,8595,89560
,1,8596,89565
,1,8597,89570
,1,8598,89575
,1,8599,89580
,1,8600,89585
,1,8601,89590
,1,8602,89595
,1,8603,89600
,1,8604,89605
,1,8605,89610
,1,8606,89615
,1,8607,89620
,1,8608,89625
,1,8609,89630
,1,8610,89635
,1,8611,89640
,1,8612,89645
,1,8613,89650
,1,8614,89655
,1,8615,89660
,1,8616,89665
,1,8617,89670
,1,8618,89675
,1,8619,89680
,1,8620,89685
,1,8621,89690
,1,8622,89695
,1,8623,89700
,1,8624,89705
,1,8625,89710
,1,8626,89715
,1,8627,89720
,1,8628,89725
,1,8629,89730
,1,8630,89735
,1,8631,89740
,1,8632,89745
,1,8633,89750
,1,8634,89755
,1,8635,89760
,1,8636,89765
,1,8637,89770
,1,8638,89775
,1,8639,89780
,1,8640,89785
,1,8641,89790
,1,8642,89795
,1,8643,89800
,1,8644,89805
,1,8645,89810
,1,8646,89815
,1,8647,89820
,1,8648,89825
,1,8649,89830
,1,8650,89835
,1,8651,89840
,1,8652,89845
,1,8653,89850
,1,8654,89855
,1,8655,89860
,1,8656,89865
,1,8657,89870
,1,8658,89875
,1,8659,89880
,1,8660,89885
,1,8661,89890
,1,8662,89895
,1,8663,89900
,1,8664,89905
,1,8665,89910
,1,8666,89915
,1,8667,89920
,1,8668,89925
,1,8669,89930
,1,8670,89935
,1,8671,89940
,1,8672,89945
,1,8673,89950
,1,8674,89955
,1,8675,89960
,1,8676,89965
,1,8677,89970
,1,8678,89975
,1,8679,89980
,1,8680,89985
,1,8681,89990
,1,8682,89995
,1,8683,90000
,1,8684,90005
,1,8685,90010
,1,8686,90015
,1,8687,90020
,1,8688,90025
,1,8689,90030
,1,8690,90035
,1,8691,90040
,1,8692,90045
,1,8693,90050
,1,8694,90055
,1,8695,90060
,1,8696,90065
,1,8697,90070
,1,8698,90075
,1,8699,90080
,1,8700,90085
,1,8701,90090
,1,8702,90095
,1,8703,90100
,1,8704,90105
,1,8705,90110
,1,8706,90115
,1,8707,90120
,1,8708,90125
,1,8709,90130
,1,8710,90135
,1,8711,90140
,1,8712,90145
,1,8713,90150
,1,8714,90155
,1,8715,90160
,1,8716,90165
,1,8717,90170
,1,8718,90175
,1,8719,90180
,1,8720,90185
,1,8721,90190
,1,8722,90195
,1,8723,90200
,1,8724,90205
,1,8725,90210
,1,8726,90215
,1,8727,90220
,1,8728,90225
,1,8729,90230
,1,8730,90235
,1,8731,90240
,1,8732,90245
,1,8733,90250
,1,8734,90255
,1,8735,90260
,1,8736,90265
,1,8737,90270
,1,8738,90275
,1,8739,90280
,1,8740,90285
,1,8741,90290
,1,8742,90295
,1,8743,90300
,1,8744,90305
,1,8745,90310
,1,8746,90315
,1,8747,90320
,1,8748,90325
,1,8749,90330
,1,8750,90335
,1,8751,90340
,1,8752,90345
,1,8753,90350
,1,8754,90355
,1,8755,90360
,1,8756,90365
,1,8757,90370
,1,8758,90375
,1,8759,90380
,1,8760,90385
,1,8761,90390
,1,8762,90395
,1,8763,90400
,1,8764,90405
,1,8765,90410
,1,8766,90415
,1,8767,90420
,1,8768,90425
,1,8769,90430
,1,8770,90435
,1,8771,90440
,1,8772,90445
,1,8773,90450
,1,8774,90455
,1,8775,90460
,1,8776,90465
,1,8777,90470
,1,8778,90475
,1,8779,90480
,1,8780,90485
,1,8781,90490
,1,8782,90495
,1,8783,90500
,1,8784,90505
,1,8785,90510
,1,8786,90515
,1,8787,90520
,1,8788,90525
,1,8789,90530
,1,8790,90535
,1,8791,90540
,1,8792,90545
,1,8793,90550
,1,8794,90555
,1,8795,90560
,1,8796,90565
,1,8797,90570
,1,8798,90575
,1,8799,90580
,1,8800,90585
,1,8801,90590
,1,8802,90595
,1,8803,90600
,1,8804,90605
,1,8805,90610
,1,8806,90615
,1,8807,90620
,1,8808,90625
,1,8809,90630
,1,8810,90635
,1,8811,90640
,1,8812,90645
,1,8813,90650
,1,8814,90655
,1,8815,90660
,1,8816,90665
,1,8817,90670
,1,8818,90675
,1,8819,90680
,1,8820,90685
,1,8821,90690
,1,8822,90695
,1,8823,90700
,1,8824,90705
,1,8825,90710
,1,8826,90715
,1,8827,90720
,1,8828,90725
,1,8829,90730
,1,8830,90735
,1,8831,90740
,1,8832,90745
,1,8833,90750
,1,8834,90755
,1,8835,90760
,1,8836,90765
,1,8837,90770
,1,8838,90775
,1,8839,90780
,1,8840,90785
,1,8841,90790
,1,8842,90795
,1,8843,90800
,1,8844,90805
,1,8845,90810
,1,8846,90815
,1,8847,90820
,1,8848,90825
,1,8849,90830
,1,8850,90835
,1,8851,90840
,1,8852,90845
,1,8853,90850
,1,8854,90855
,1,8855,90860
,1,8856,90865
,1,8857,90870
,1,8858,90875
,1,8859,90880
,1,8860,90885
,1,8861,90890
,1,8862,90895
,1,8863,90900
,1,8864,90905
,1,8865,90910
,1,8866,90915
,1,8867,90920
,1,8868,90925
,1,8869,90930
,1,8870,90935
,1,8871,90940
,1,8872,90945
,1,8873,90950
,1,8874,90955
,1,8875,90960
,1,8876,90965
,1,8877,90970
,1,8878,90975
,1,8879,90980
,1,8880,90985
,1,8881,90990
,1,8882,90995
,1,8883,91000
,1,8884,91005
,1,8885,91010
,1,8886,91015
,1,8887,91020
,1,8888,91025
,1,8889,91030
,1,8890,91035
,1,8891,91040
,1,8892,91045
,1,8893,91050
,1,8894,91055
,1,8895,91060
,1,8896,91065
,1,8897,91070
,1,8898,91075
,1,8899,91080
,1,8900,91085
,1,8901,91090
,1,8902,91095
,1,8903,91100
,1,8904,91105
,1,8905,91110
,1,8906,91115
,1,8907,91120
,1,8908,91125
,1,8909,91130
,1,8910,91135
,1,8911,91140
,1,8912,91145
,1,8913,91150
,1,8914,91155
,1,8915,91160
,1,8916,91165
,1,8917,91170
,1,8918,91175
,1,8919,91180
,1,8920,91185
,1,8921,91190
,1,8922,91195
,1,8923,91200
,1,8924,91205
,1,8925,91210
,1,8926,91215
,1,8927,91220
,1,8928,91225
,1,8929,91230
,1,8930,91235
,1,8931,91240
,1,8932,91245
,1,8933,91250
,1,8934,91255
,1,8935,91260
,1,8936,91265
,1,8937,91270
,1,8938,91275
,1,8939,91280
,1,8940,91285
,1,8941,91290
,1,8942,91295
,1,8943,91300
,1,8944,91305
,1,8945,91310
,1,8946,91315
,1,8947,91320
,1,8948,91325
,1,8949,91330
,1,8950,91335
,1,8951,91340
,1,8952,91345
,1,8953,91350
,1,8954,91355
,1,8955,91360
,1,8956,91365
,1,8957,91370
,1,8958,91375
,1,8959,91380
,1,8960,91385
,1,8961,91390
,1,8962,91395
,1,8963,91400
,1,8964,91405
,1,8965,91410
,1,8966,91415
,1,8967,91420
,1,8968,91425
,1,8969,91430
,1,8970,91435
,1,8971,91440
,1,8972,91445
,1,8973,91450
,1,8974,91455
,1,8975,91460
,1,8976,91465
,1,8977,91470
,1,8978,91475
,1,8979,91480
,1,8980,91485
,1,8981,91490
,1,8982,91495
,1,8983,91500
,1,8984,91505
,1,8985,91510
,1,8986,91515
,1,8987,91520
,1,8988,91525
,1,8989,91530
,1,8990,91535
,1,8991,91540
,1,8992,91545
,1,8993,91550
,1,8994,91555
,1,8995,91560
,1,8996,91565
,1,8997,91570
,1,8998,91575
,1,8999,91580
,1,9000,91585
,1,9001,91590
,1,9002,91595
,1,9003,91600
,1,9004,91605
,1,9005,91610
,1,9006,91615
,1,9007,91620
,1,9008,91625
,1,9009,91630
,1,9010,91635
,1,9011,91640
,1,9012,91645
,1,9013,91650
,1,9014,91655
,1,9015,91660
,1,9016,91665
,1,9017,91670
,1,9018,91675
,1,9019,91680
,1,9020,91685
,1,9021,91690
,1,9022,91695
,1,9023,91700
,1,9024,91705
,1,9025,91710
,1,9026,91715
,1,9027,91720
,1,9028,91725
,1,9029,91730
,1,9030,91735
,1,9031,91740
,1,9032,91745
,1,9033,91750
,1,9034,91755
,1,9035,91760
,1,9036,91765
,1,9037,91770
,1,9038,91775
,1,9039,91780
,1,9040,91785
,1,9041,91790
,1,9042,91795
,1,9043,91800
,1,9044,91805
,1,9045,91810
,1,9046,91815
,1,9047,91820
,1,9048,91825
,1,9049,91830
,1,9050,91835
,1,9051,91840
,1,9052,91845
,1,9053,91850
,1,9054,91855
,1,9055,91860
,1,9056,91865
,1,9057,91870
,1,9058,91875
,1,9059,91880
,1,9060,91885
,1,9061,91890
,1,9062,91895
,1,9063,91900
,1,9064,91905
,1,9065,91910
,1,9066,91915
,1,9067,91920
,1,9068,91925
,1,9069,91930
,1,9070,91935
,1,9071,91940
,1,9072,91945
,1,9073,91950
,1,9074,91955
,1,9075,91960
,1,9076,91965
,1,9077,91970
,1,9078,91975
,1,9079,91980
,1,9080,91985
,1,9081,91990
,1,9082,91995
,1,9083,92000
,1,9084,92005
,1,9085,92010
,1,9086,92015
,1,9087,92020
,1,9088,92025
,1,9089,92030
,1,9090,92035
,1,9091,92040
,1,9092,92045
,1,9093,92050
,1,9094,92055
,1,9095,92060
,1,9096,92065
,1,9097,92070
,1,9098,92075
,1,9099,92080
,1,9100,92085
,1,9101,92090
,1,9102,92095
,1,9103,92100
,1,9104,92105
,1,9105,92110
,1,9106,92115
,1,9107,92120
,1,9108,92125
,1,9109,92130
,1,9110,92135
,1,9111,92140
,1,9112,92145
,1,9113,92150
,1,9114,92155
,1,9115,92160
,1,9116,92165
,1,9117,92170
,1,9118,92175
,1,9119,92180
,1,9120,92185
,1,9121,92190
,1,9122,92195
,1,9123,92200
,1,9124,92205
,1,9125,92210
,1,9126,92215
,1,9127,92220
,1,9128,92225
,1,9129,92230
,1,9130,92235
,1,9131,92240
,1,9132,92245
,1,9133,92250
,1,9134,92255
,1,9135,92260
,1,9136,92265
,1,9137,92270
,1,9138,92275
,1,9139,92280
,1,9140,92285
,1,9141,92290
,1,9142,92295
,1,9143,92300
,1,9144,92305
,1,9145,92310
,1,9146,92315
,1,9147,92320
,1,9148,92325
,1,9149,92330
,1,9150,92335
,1,9151,92340
,1,9152,92345
,1,9153,92350
,1,9154,92355
,1,9155,92360
,1,9156,92365
,1,9157,92370
,1,9158,92375
,1,9159,92380
,1,9160,92385
,1,9161,92390
,1,9162,92395
,1,9163,92400
,1,9164,92405
,1,9165,92410
,1,9166,92415
,1,9167,92420
,1,9168,92425
,1,9169,92430
,1,9170,92435
,1,9171,92440
,1,9172,92445
,1,9173,92450
,1,9174,92455
,1,9175,92460
,1,9176,92465
,1,9177,92470
,1,9178,92475
,1,9179,92480
,1,9180,92485
,1,9181,92490
,1,9182,92495
,1,9183,92500
,1,9184,92505
,1,9185,92510
,1,9186,92515
,1,9187,92520
,1,9188,92525
,1,9189,92530
,1,9190,92535
,1,9191,92540
,1,9192,92545
,1,9193,92550
,1,9194,92555
,1,9195,92560
,1,9196,92565
,1,9197,92570
,1,9198,92575
,1,9199,92580
,1,9200,92585
,1,9201,92590
,1,9202,92595
,1,9203,92600
,1,9204,92605
,1,9205,92610
,1,9206,92615
,1,9207,92620
,1,9208,92625
,1,9209,92630
,1,9210,92635
,1,9211,92640
,1,9212,92645
,1,9213,92650
,1,9214,92655
,1,9215,92660
,1,9216,92665
,1,9217,92670
,1,9218,92675
,1,9219,92680
,1,9220,92685
,1,9221,92690
,1,9222,92695
,1,9223,92700
,1,9224,92705
,1,9225,92710
,1,9226,92715
,1,9227,92720
,1,9228,92725
,1,9229,92730
,1,9230,92735
,1,9231,92740
,1,9232,92745
,1,9233,92750
,1,9234,92755
,1,9235,92760
,1,9236,92765
,1,9237,92770
,1,9238,92775
,1,9239,92780
,1,9240,92785
,1,9241,92790
,1,9242,92795
,1,9243,92800
,1,9244,92805
,1,9245,92810
,1,9246,92815
,1,9247,92820
,1,9248,92825
,1,9249,92830
,1,9250,92835
,1,9251,92840
,1,9252,92845
,1,9253,92850
,1,9254,92855
,1,9255,92860
,1,9256,92865
,1,9257,92870
,1,9258,92875
,1,9259,92880
,1,9260,92885
,1,9261,92890
,1,9262,92895
,1,9263,92900
,1,9264,92905
,1,9265,92910
,1,9266,92915
,1,9267,92920
,1,9268,92925
,1,9269,92930
,1,9270,92935
,1,9271,92940
,1,9272,92945
,1,9273,92950
,1,9274,92955
,1,9275,92960
,1,9276,92965
,1,9277,92970
,1,9278,92975
,1,9279,92980
,1,9280,92985
,1,9281,92990
,1,9282,92995
,1,9283,93000
,1,9284,93005
,1,9285,93010
,1,9286,93015
,1,9287,93020
,1,9288,93025
,1,9289,93030
,1,9290,93035
,1,9291,93040
,1,9292,93045
,1,9293,93050
,1,9294,93055
,1,9295,93060
,1,9296,93065
,1,9297,93070
,1,9298,93075
,1,9299,93080
,1,9300,93085
,1,9301,93090
,1,9302,93095
,1,9303,93100
,1,9304,93105
,1,9305,93110
,1,9306,93115
,1,9307,93120
,1,9308,93125
,1,9309,93130
,1,9310,93135
,1,9311,93140
,1,9312,93145
,1,9313,93150
,1,9314,93155
,1,9315,93160
,1,9316,93165
,1,9317,93170
,1,9318,93175
,1,9319,93180
,1,9320,93185
,1,9321,93190
,1,9322,93195
,1,9323,93200
,1,9324,93205
,1,9325,93210
,1,9326,93215
,1,9327,93220
,1,9328,93225
,1,9329,93230
,1,9330,93235
,1,9331,93240
,1,9332,93245
,1,9333,93250
,1,9334,93255
,1,9335,93260
,1,9336,93265
,1,9337,93270
,1,9338,93275
,1,9339,93280
,1,9340,93285
,1,9341,93290
,1,9342,93295
,1,9343,93300
,1,9344,93305
,1,9345,93310
,1,9346,93315
,1,9347,93320
,1,9348,93325
,1,9349,93330
,1,9350,93335
,1,9351,93340
,1,9352,93345
,1,9353,93350
,1,9354,93355
,1,9355,93360
,1,9356,93365
,1,9357,93370
,1,9358,93375
,1,9359,93380
,1,9360,93385
,1,9361,93390
,1,9362,93395
,1,9363,93400
,1,9364,93405
,1,9365,93410
,1,9366,93415
,1,9367,93420
,1,9368,93425
,1,9369,93430
,1,9370,93435
,1,9371,93440
,1,9372,93445
,1,9373,93450
,1,9374,93455
,1,9375,93460
,1,9376,93465
,1,9377,93470
,1,9378,93475
,1,9379,93480
,1,9380,93485
,1,9381,93490
,1,9382,93495
,1,9383,93500
,1,9384,93505
,1,9385,93510
,1,9386,93515
,1,9387,93520
,1,9388,93525
,1,9389,93530
,1,9390,93535
,1,9391,93540
,1,9392,93545
,1,9393,93550
,1,9394,93555
,1,9395,93560
,1,9396,93565
,1,9397,93570
,1,9398,93575
,1,9399,93580
,1,9400,93585
,1,9401,93590
,1,9402,93595
,1,9403,93600
,1,9404,93605
,1,9405,93610
,1,9406,93615
,1,9407,93620
,1,9408,93625
,1,9409,93630
,1,9410,93635
,1,9411,93640
,1,9412,93645
,1,9413,93650
,1,9414,93655
,1,9415,93660
,1,9416,93665
,1,9417,93670
,1,9418,93675
,1,9419,93680
,1,9420,93685
,1,9421,93690
,1,9422,93695
,1,9423,93700
,1,9424,93705
,1,9425,93710
,1,9426,93715
,1,9427,93720
,1,9428,93725
,1,9429,93730
,1,9430,93735
,1,9431,93740
,1,9432,93745
,1,9433,93750
,1,9434,93755
,1,9435,93760
,1,9436,93765
,1,9437,93770
,1,9438,93775
,1,9439,93780
,1,9440,93785
,1,9441,93790
,1,9442,93795
,1,9443,93800
,1,9444,93805
,1,9445,93810
,1,9446,93815
,1,9447,93820
,1,9448,93825
,1,9449,93830
,1,9450,93835
,1,9451,93840
,1,9452,93845
,1,9453,93850
,1,9454,93855
,1,9455,93860
,1,9456,93865
,1,9457,93870
,1,9458,93875
,1,9459,93880
,1,9460,93885
,1,9461,93890
,1,9462,93895
,1,9463,93900
,1,9464,93905
,1,9465,93910
,1,9466,93915
,1,9467,93920
,1,9468,93925
,1,9469,93930
,1,9470,93935
,1,9471,93940
,1,9472,93945
,1,9473,93950
,1,9474,93955
,1,9475,93960
,1,9476,93965
,1,9477,93970
,1,9478,93975
,1,9479,93980
,1,9480,93985
,1,9481,93990
,1,9482,93995
,1,9483,94000
,1,9484,94005
,1,9485,94010
,1,9486,94015
,1,9487,94020
,1,9488,94025
,1,9489,94030
,1,9490,94035
,1,9491,94040
,1,9492,94045
,1,9493,94050
,1,9494,94055
,1,9495,94060
,1,9496,94065
,1,9497,94070
,1,9498,94075
,1,9499,94080
,1,9500,94085
,1,9501,94090
,1,9502,94095
,1,9503,94100
,1,9504,94105
,1,9505,94110
,1,9506,94115
,1,9507,94120
,1,9508,94125
,1,9509,94130
,1,9510,94135
,1,9511,94140
,1,9512,94145
,1,9513,94150
,1,9514,94155
,1,9515,94160
,1,9516,94165
,1,9517,94170
,1,9518,94175
,1,9519,94180
,1,9520,94185
,1,9521,94190
,1,9522,94195
,1,9523,94200
,1,9524,94205
,1,9525,94210
,1,9526,94215
,1,9527,94220
,1,9528,94225
,1,9529,94230
,1,9530,94235
,1,9531,94240
,1,9532,94245
,1,9533,94250
,1,9534,94255
,1,9535,94260
,1,9536,94265
,1,9537,94270
,1,9538,94275
,1,9539,94280
,1,9540,94285
,1,9541,94290
,1,9542,94295
,1,9543,94300
,1,9544,94305
,1,9545,94310
,1,9546,94315
,1,9547,94320
,1,9548,94325
,1,9549,94330
,1,9550,94335
,1,9551,94340
,1,9552,94345
,1,9553,94350
,1,9554,94355
,1,9555,94360
,1,9556,94365
,1,9557,94370
,1,9558,94375
,1,9559,94380
,1,9560,94385
,1,9561,94390
,1,9562,94395
,1,9563,94400
,1,9564,94405
,1,9565,94410
,1,9566,94415
,1,9567,94420
,1,9568,94425
,1,9569,94430
,1,9570,94435
,1,9571,94440
,1,9572,94445
,1,9573,94450
,1,9574,94455
,1,9575,94460
,1,9576,94465
,1,9577,94470
,1,9578,94475
,1,9579,94480
,1,9580,94485
,1,9581,94490
,1,9582,94495
,1,9583,94500
,1,9584,94505
,1,9585,94510
,1,9586,94515
,1,9587,94520
,1,9588,94525
,1,9589,94530
,1,9590,94535
,1,9591,94540
,1,9592,94545
,1,9593,94550
,1,9594,94555
,1,9595,94560
,1,9596,94565
,1,9597,94570
,1,9598,94575
,1,9599,94580
,1,9600,94585
,1,9601,94590
,1,9602,94595
,1,9603,94600
,1,9604,94605
,1,9605,94610
,1,9606,94615
,1,9607,94620
,1,9608,94625
,1,9609,94630
,1,9610,94635
,1,9611,94640
,1,9612,94645
,1,9613,94650
,1,9614,94655
,1,9615,94660
,1,9616,94665
,1,9617,94670
,1,9618,94675
,1,9619,94680
,1,9620,94685
,1,9621,94690
,1,9622,94695
,1,9623,94700
,1,9624,94705
,1,9625,94710
,1,9626,94715
,1,9627,94720
,1,9628,94725
,1,9629,94730
,1,9630,94735
,1,9631,94740
,1,9632,94745
,1,9633,94750
,1,9634,94755
,1,9635,94760
,1,9636,94765
,1,9637,94770
,1,9638,94775
,1,9639,94780
,1,9640,94785
,1,9641,94790
,1,9642,94795
,1,9643,94800
,1,9644,94805
,1,9645,94810
,1,9646,94815
,1,9647,94820
,1,9648,94825
,1,9649,94830
,1,9650,94835
,1,9651,94840
,1,9652,94845
,1,9653,94850
,1,9654,94855
,1,9655,94860
,1,9656,94865
,1,9657,94870
,1,9658,94875
,1,9659,94880
,1,9660,94885
,1,9661,94890
,1,9662,94895
,1,9663,94900
,1,9664,94905
,1,9665,94910
,1,9666,94915
,1,9667,94920
,1,9668,94925
,1,9669,94930
,1,9670,94935
,1,9671,94940
,1,9672,94945
,1,9673,94950
,1,9674,94955
,1,9675,94960
,1,9676,94965
,1,9677,94970
,1,9678,94975
,1,9679,94980
,1,9680,94985
,1,9681,94990
,1,9682,94995
,1,9683,95000
,1,9684,95005
,1,9685,95010
,1,9686,95015
,1,9687,95020
,1,9688,95025
,1,9689,95030
,1,9690,95035
,1,9691,95040
,1,9692,95045
,1,9693,95050
,1,9694,95055
,1,9695,95060
,1,9696,95065
,1,9697,95070
,1,9698,95075
,1,9699,95080
,1,9700,95085
,1,9701,95090
,1,9702,95095
,1,9703,95100
,1,9704,95105
,1,9705,95110
,1,9706,95115
,1,9707,95120
,1,9708,95125
,1,9709,95130
,1,9710,95135
,1,9711,95140
,1,9712,95145
,1,9713,95150
,1,9714,95155
,1,9715,95160
,1,9716,95165
,1,9717,95170
,1,9718,95175
,1,9719,95180
,1,9720,95185
,1,9721,95190
,1,9722,95195
,1,9723,95200
,1,9724,95205
,1,9725,95210
,1,9726,95215
,1,9727,95220
,1,9728,95225
,1,9729,95230
,1,9730,95235
,1,9731,95240
,1,9732,95245
,1,9733,95250
,1,9734,95255
,1,9735,95260
,1,9736,95265
,1,9737,95270
,1,9738,95275
,1,9739,95280
,1,9740,95285
,1,9741,95290
,1,9742,95295
,1,9743,95300
,1,9744,95305
,1,9745,95310
,1,9746,95315
,1,9747,95320
,1,9748,95325
,1,9749,95330
,1,9750,95335
,1,9751,95340
,1,9752,95345
,1,9753,95350
,1,9754,95355
,1,9755,95360
,1,9756,95365
,1,9757,95370
,1,9758,95375
,1,9759,95380
,1,9760,95385
,1,9761,95390
,1,9762,95395
,1,9763,95400
,1,9764,95405
,1,9765,95410
,1,9766,95415
,1,9767,95420
,1,9768,95425
,1,9769,95430
,1,9770,95435
,1,9771,95440
,1,9772,95445
,1,9773,95450
,1,9774,95455
,1,9775,95460
,1,9776,95465
,1,9777,95470
,1,9778,95475
,1,9779,95480
,1,9780,95485
,1,9781,95490
,1,9782,95495
,1,9783,95500
,1,9784,95505
,1,9785,95510
,1,9786,95515
,1,9787,95520
,1,9788,95525
,1,9789,95530
,1,9790,95535
,1,9791,95540
,1,9792,95545
,1,9793,95550
,1,9794,95555
,1,9795,95560
,1,9796,95565
,1,9797,95570
,1,9798,95575
,1,9799,95580
,1,9800,95585
,1,9801,95590
,1,9802,95595
,1,9803,95600
,1,9804,95605
,1,9805,95610
,1,9806,95615
,1,9807,95620
,1,9808,95625
,1,9809,95630
,1,9810,95635
,1,9811,95640
,1,9812,95645
,1,9813,95650
,1,9814,95655
,1,9815,95660
,1,9816,95665
,1,9817,95670
,1,9818,95675
,1,9819,95680
,1,9820,95685
,1,9821,95690
,1,9822,95695
,1,9823,95700
,1,9824,95705
,1,9825,95710
,1,9826,95715
,1,9827,95720
,1,9828,95725
,1,9829,95730
,1,9830,95735
,1,9831,95740
,1,9832,95745
,1,9833,95750
,1,9834,95755
,1,9835,95760
,1,9836,95765
,1,9837,95770
,1,9838,95775
,1,9839,95780
,1,9840,95785
,1,9841,95790
,1,9842,95795
,1,9843,95800
,1,9844,95805
,1,9845,95810
,1,9846,95815
,1,9847,95820
,1,9848,95825
,1,9849,95830
,1,9850,95835
,1,9851,95840
,1,9852,95845
,1,9853,95850
,1,9854,95855
,1,9855,95860
,1,9856,95865
,1,9857,95870
,1,9858,95875
,1,9859,95880
,1,9860,95885
,1,9861,95890
,1,9862,95895
,1,9863,95900
,1,9864,95905
,1,9865,95910
,1,9866,95915
,1,9867,95920
,1,9868,95925
,1,9869,95930
,1,9870,95935
,1,9871,95940
,1,9872,95945
,1,9873,95950
,1,9874,95955
,1,9875,95960
,1,9876,95965
,1,9877,95970
,1,9878,95975
,1,9879,95980
,1,9880,95985
,1,9881,95990
,1,9882,95995
,1,9883,96000
,1,9884,96005
,1,9885,96010
,1,9886,96015
,1,9887,96020
,1,9888,96025
,1,9889,96030
,1,9890,96035
,1,9891,96040
,1,9892,96045
,1,9893,96050
,1,9894,96055
,1,9895,96060
,1,9896,96065
,1,9897,96070
,1,9898,96075
,1,9899,96080
,1,9900,96085
,1,9901,96090
,1,9902,96095
,1,9903,96100
,1,9904,96105
,1,9905,96110
,1,9906,96115
,1,9907,96120
,1,9908,96125
,1,9909,96130
,1,9910,96135
,1,9911,96140
,1,9912,96145
,1,9913,96150
,1,9914,96155
,1,9915,96160
,1,9916,96165
,1,9917,96170
,1,9918,96175
,1,9919,96180
,1,9920,96185
,1,9921,96190
,1,9922,96195
,1,9923,96200
,1,9924,96205
,1,9925,96210
,1,9926,96215
,1,9927,96220
,1,9928,96225
,1,9929,96230
,1,9930,96235
,1,9931,96240
,1,9932,96245
,1,9933,96250
,1,9934,96255
,1,9935,96260
,1,9936,96265
,1,9937,96270
,1,9938,96275
,1,9939,96280
,1,9940,96285
,1,9941,96290
,1,9942,96295
,1,9943,96300
,1,9944,96305
,1,9945,96310
,1,9946,96315
,1,9947,96320
,1,9948,96325
,1,9949,96330
,1,9950,96335
,1,9951,96340
,1,9952,96345
,1,9953,96350
,1,9954,96355
,1,9955,96360
,1,9956,96365
,1,9957,96370
,1,9958,96375
,1,9959,96380
,1,9960,96385
,1,9961,96390
,1,9962,96395
,1,9963,96400
,1,9964,96405
,1,9965,96410
,1,9966,96415
,1,9967,96420
,1,9968,96425
,1,9969,96430
,1,9970,96435
,1,9971,96440
,1,9972,96445
,1,9973,96450
,1,9974,96455
,1,9975,96460
,1,9976,96465
,1,9977,96470
,1,9978,96475
,1,9979,96480
,1,9980,96485
,1,9981,96490
,1,9982,96495
,1,9983,96500
,1,9984,96505
,1,9985,96510
,1,9986,96515
,1,9987,96520
,1,9988,96525
,1,9989,96530
,1,9990,96535
,1,9991,96540
,1,9992,96545
,1,9993,96550
,1,9994,96555
,1,9995,96560
,1,9996,96565
,1,9997,96570
,1,9998,96575
,1,9999,96580
,1,10000,96585
,1,10001,96590
,1,10002,96595
,1,10003,96600
,1,10004,96605
,1,10005,96610
,1,10006,96615
,1,10007,96620
,1,10008,96625
,1,10009,96630
,1,10010,96635
,1,10011,96640
,1,10012,96645
,1,10013,96650
,1,10014,96655
,1,10015,96660
,1,10016,96665
,1,10017,96670
,1,10018,96675
,1,10019,96680
,1,10020,96685
,1,10021,96690
,1,10022,96695
,1,10023,96700
,1,10024,96705
,1,10025,96710
,1,10026,96715
,1,10027,96720
,1,10028,96725
,1,10029,96730
,1,10030,96735
,1,10031,96740
,1,10032,96745
,1,10033,96750
,1,10034,96755
,1,10035,96760
,1,10036,96765
,1,10037,96770
,1,10038,96775
,1,10039,96780
,1,10040,96785
,1,10041,96790
,1,10042,96795
,1,10043,96800
,1,10044,96805
,1,10045,96810
,1,10046,96815
,1,10047,96820
,1,10048,96825
,1,10049,96830
,1,10050,96835
,1,10051,96840
,1,10052,96845
,1,10053,96850
,1,10054,96855
,1,10055,96860
,1,10056,96865
,1,10057,96870
,1,10058,96875
,1,10059,96880
,1,10060,96885
,1,10061,96890
,1,10062,96895
,1,10063,96900
,1,10064,96905
,1,10065,96910
,1,10066,96915
,1,10067,96920
,1,10068,96925
,1,10069,96930
,1,10070,96935
,1,10071,96940
,1,10072,96945
,1,10073,96950
,1,10074,96955
,1,10075,96960
,1,10076,96965
,1,10077,96970
,1,10078,96975
,1,10079,96980
,1,10080,96985
,1,10081,96990
,1,10082,96995
,1,10083,97000
,1,10084,97005
,1,10085,97010
,1,10086,97015
,1,10087,97020
,1,10088,97025
,1,10089,97030
,1,10090,97035
,1,10091,97040
,1,10092,97045
,1,10093,97050
,1,10094,97055
,1,10095,97060
,1,10096,97065
,1,10097,97070
,1,10098,97075
,1,10099,97080
,1,10100,97085
,1,10101,97090
,1,10102,97095
,1,10103,97100
,1,10104,97105
,1,10105,97110
,1,10106,97115
,1,10107,97120
,1,10108,97125
,1,10109,97130
,1,10110,97135
,1,10111,97140
,1,10112,97145
,1,10113,97150
,1,10114,97155
,1,10115,97160
,1,10116,97165
,1,10117,97170
,1,10118,97175
,1,10119,97180
,1,10120,97185
,1,10121,97190
,1,10122,97195
,1,10123,97200
,1,10124,97205
,1,10125,97210
,1,10126,97215
,1,10127,97220
,1,10128,97225
,1,10129,97230
,1,10130,97235
,1,10131,97240
,1,10132,97245
,1,10133,97250
,1,10134,97255
,1,10135,97260
,1,10136,97265
,1,10137,97270
,1,10138,97275
,1,10139,97280
,1,10140,97285
,1,10141,97290
,1,10142,97295
,1,10143,97300
,1,10144,97305
,1,10145,97310
,1,10146,97315
,1,10147,97320
,1,10148,97325
,1,10149,97330
,1,10150,97335
,1,10151,97340
,1,10152,97345
,1,10153,97350
,1,10154,97355
,1,10155,97360
,1,10156,97365
,1,10157,97370
,1,10158,97375
,1,10159,97380
,1,10160,97385
,1,10161,97390
,1,10162,97395
,1,10163,97400
,1,10164,97405
,1,10165,97410
,1,10166,97415
,1,10167,97420
,1,10168,97425
,1,10169,97430
,1,10170,97435
,1,10171,97440
,1,10172,97445
,1,10173,97450
,1,10174,97455
,1,10175,97460
,1,10176,97465
,1,10177,97470
,1,10178,97475
,1,10179,97480
,1,10180,97485
,1,10181,97490
,1,10182,97495
,1,10183,97500
,1,10184,97505
,1,10185,97510
,1,10186,97515
,1,10187,97520
,1,10188,97525
,1,10189,97530
,1,10190,97535
,1,10191,97540
,1,10192,97545
,1,10193,97550
,1,10194,97555
,1,10195,97560
,1,10196,97565
,1,10197,97570
,1,10198,97575
,1,10199,97580
,1,10200,97585
,1,10201,97590
,1,10202,97595
,1,10203,97600
,1,10204,97605
,1,10205,97610
,1,10206,97615
,1,10207,97620
,1,10208,97625
,1,10209,97630
,1,10210,97635
,1,10211,97640
,1,10212,97645
,1,10213,97650
,1,10214,97655
,1,10215,97660
,1,10216,97665
,1,10217,97670
,1,10218,97675
,1,10219,97680
,1,10220,97685
,1,10221,97690
,1,10222,97695
,1,10223,97700
,1,10224,97705
,1,10225,97710
,1,10226,97715
,1,10227,97720
,1,10228,97725
,1,10229,97730
,1,10230,97735
,1,10231,97740
,1,10232,97745
,1,10233,97750
,1,10234,97755
,1,10235,97760
,1,10236,97765
,1,10237,97770
,1,10238,97775
,1,10239,97780
,1,10240,97785
,1,10241,97790
,1,10242,97795
,1,10243,97800
,1,10244,97805
,1,10245,97810
,1,10246,97815
,1,10247,97820
,1,10248,97825
,1,10249,97830
,1,10250,97835
,1,10251,97840
,1,10252,97845
,1,10253,97850
,1,10254,97855
,1,10255,97860
,1,10256,97865
,1,10257,97870
,1,10258,97875
,1,10259,97880
,1,10260,97885
,1,10261,97890
,1,10262,97895
,1,10263,97900
,1,10264,97905
,1,10265,97910
,1,10266,97915
,1,10267,97920
,1,10268,97925
,1,10269,97930
,1,10270,97935
,1,10271,97940
,1,10272,97945
,1,10273,97950
,1,10274,97955
,1,10275,97960
,1,10276,97965
,1,10277,97970
,1,10278,97975
,1,10279,97980
,1,10280,97985
,1,10281,97990
,1,10282,97995
,1,10283,98000
,1,10284,98005
,1,10285,98010
,1,10286,98015
,1,10287,98020
,1,10288,98025
,1,10289,98030
,1,10290,98035
,1,10291,98040
,1,10292,98045
,1,10293,98050
,1,10294,98055
,1,10295,98060
,1,10296,98065
,1,10297,98070
,1,10298,98075
,1,10299,98080
,1,10300,98085
,1,10301,98090
,1,10302,98095
,1,10303,98100
,1,10304,98105
,1,10305,98110
,1,10306,98115
,1,10307,98120
,1,10308,98125
,1,10309,98130
,1,10310,98135
,1,10311,98140
,1,10312,98145
,1,10313,98150
,1,10314,98155
,1,10315,98160
,1,10316,98165
,1,10317,98170
,1,10318,98175
,1,10319,98180
,1,10320,98185
,1,10321,98190
,1,10322,98195
,1,10323,98200
,1,10324,98205
,1,10325,98210
,1,10326,98215
,1,10327,98220
,1,10328,98225
,1,10329,98230
,1,10330,98235
,1,10331,98240
,1,10332,98245
,1,10333,98250
,1,10334,98255
,1,10335,98260
,1,10336,98265
,1,10337,98270
,1,10338,98275
,1,10339,98280
,1,10340,98285
,1,10341,98290
,1,10342,98295
,1,10343,98300
,1,10344,98305
,1,10345,98310
,1,10346,98315
,1,10347,98320
,1,10348,98325
,1,10349,98330
,1,10350,98335
,1,10351,98340
,1,10352,98345
,1,10353,98350
,1,10354,98355
,1,10355,98360
,1,10356,98365
,1,10357,98370
,1,10358,98375
,1,10359,98380
,1,10360,98385
,1,10361,98390
,1,10362,98395
,1,10363,98400
,1,10364,98405
,1,10365,98410
,1,10366,98415
,1,10367,98420
,1,10368,98425
,1,10369,98430
,1,10370,98435
,1,10371,98440
,1,10372,98445
,1,10373,98450
,1,10374,98455
,1,10375,98460
,1,10376,98465
,1,10377,98470
,1,10378,98475
,1,10379,98480
,1,10380,98485
,1,10381,98490
,1,10382,98495
,1,10383,98500
,1,10384,98505
,1,10385,98510
,1,10386,98515
,1,10387,98520
,1,10388,98525
,1,10389,98530
,1,10390,98535
,1,10391,98540
,1,10392,98545
,1,10393,98550
,1,10394,98555
,1,10395,98560
,1,10396,98565
,1,10397,98570
,1,10398,98575
,1,10399,98580
,1,10400,98585
,1,10401,98590
,1,10402,98595
,1,10403,98600
,1,10404,98605
,1,10405,98610
,1,10406,98615
,1,10407,98620
,1,10408,98625
,1,10409,98630
,1,10410,98635
,1,10411,98640
,1,10412,98645
,1,10413,98650
,1,10414,98655
,1,10415,98660
,1,10416,98665
,1,10417,98670
,1,10418,98675
,1,10419,98680
,1,10420,98685
,1,10421,98690
,1,10422,98695
,1,10423,98700
,1,10424,98705
,1,10425,98710
,1,10426,98715
,1,10427,98720
,1,10428,98725
,1,10429,98730
,1,10430,98735
,1,10431,98740
,1,10432,98745
,1,10433,98750
,1,10434,98755
,1,10435,98760
,1,10436,98765
,1,10437,98770
,1,10438,98775
,1,10439,98780
,1,10440,98785
,1,10441,98790
,1,10442,98795
,1,10443,98800
,1,10444,98805
,1,10445,98810
,1,10446,98815
,1,10447,98820
,1,10448,98825
,1,10449,98830
,1,10450,98835
,1,10451,98840
,1,10452,98845
,1,10453,98850
,1,10454,98855
,1,10455,98860
,1,10456,98865
,1,10457,98870
,1,10458,98875
,1,10459,98880
,1,10460,98885
,1,10461,98890
,1,10462,98895
,1,10463,98900
,1,10464,98905
,1,10465,98910
,1,10466,98915
,1,10467,98920
,1,10468,98925
,1,10469,98930
,1,10470,98935
,1,10471,98940
,1,10472,98945
,1,10473,98950
,1,10474,98955
,1,10475,98960
,1,10476,98965
,1,10477,98970
,1,10478,98975
,1,10479,98980
,1,10480,98985
,1,10481,98990
,1,10482,98995
,1,10483,99000
,1,10484,99005
,1,10485,99010
,1,10486,99015
,1,10487,99020
,1,10488,99025
,1,10489,99030
,1,10490,99035
,1,10491,99040
,1,10492,99045
,1,10493,99050
,1,10494,99055
,1,10495,99060
,1,10496,99065
,1,10497,99070
,1,10498,99075
,1,10499,99080
,1,10500,99085
,1,10501,99090
,1,10502,99095
,1,10503,99100
,1,10504,99105
,1,10505,99110
,1,10506,99115
,1,10507,99120
,1,10508,99125
,1,10509,99130
,1,10510,99135
,1,10511,99140
,1,10512,99145
,1,10513,99150
,1,10514,99155
,1,10515,99160
,1,10516,99165
,1,10517,99170
,1,10518,99175
,1,10519,99180
,1,10520,99185
,1,10521,99190
,1,10522,99195
,1,10523,99200
,1,10524,99205
,1,10525,99210
,1,10526,99215
,1,10527,99220
,1,10528,99225
,1,10529,99230
,1,10530,99235
,1,10531,99240
,1,10532,99245
,1,10533,99250
,1,10534,99255
,1,10535,99260
,1,10536,99265
,1,10537,99270
,1,10538,99275
,1,10539,99280
,1,10540,99285
,1,10541,99290
,1,10542,99295
,1,10543,99300
,1,10544,99305
,1,10545,99310
,1,10546,99315
,1,10547,99320
,1,10548,99325
,1,10549,99330
,1,10550,99335
,1,10551,99340
,1,10552,99345
,1,10553,99350
,1,10554,99355
,1,10555,99360
,1,10556,99365
,1,10557,99370
,1,10558,99375
,1,10559,99380
,1,10560,99385
,1,10561,99390
,1,10562,99395
,1,10563,99400
,1,10564,99405
,1,10565,99410
,1,10566,99415
,1,10567,99420
,1,10568,99425
,1,10569,99430
,1,10570,99435
,1,10571,99440
,1,10572,99445
,1,10573,99450
,1,10574,99455
,1,10575,99460
,1,10576,99465
,1,10577,99470
,1,10578,99475
,1,10579,99480
,1,10580,99485
,1,10581,99490
,1,10582,99495
,1,10583,99500
,1,10584,99505
,1,10585,99510
,1,10586,99515
,1,10587,99520
,1,10588,99525
,1,10589,99530
,1,10590,99535
,1,10591,99540
,1,10592,99545
,1,10593,99550
,1,10594,99555
,1,10595,99560
,1,10596,99565
,1,10597,99570
,1,10598,99575
,1,10599,99580
,1,10600,99585
,1,10601,99590
,1,10602,99595
,1,10603,99600
,1,10604,99605
,1,10605,99610
,1,10606,99615
,1,10607,99620
,1,10608,99625
,1,10609,99630
,1,10610,99635
,1,10611,99640
,1,10612,99645
,1,10613,99650
,1,10614,99655
,1,10615,99660
,1,10616,99665
,1,10617,99670
,1,10618,99675
,1,10619,99680
,1,10620,99685
,1,10621,99690
,1,10622,99695
,1,10623,99700
,1,10624,99705
,1,10625,99710
,1,10626,99715
,1,10627,99720
,1,10628,99725
,1,10629,99730
,1,10630,99735
,1,10631,99740
,1,10632,99745
,1,10633,99750
,1,10634,99755
,1,10635,99760
,1,10636,99765
,1,10637,99770
,1,10638,99775
,1,10639,99780
,1,10640,99785
,1,10641,99790
,1,10642,99795
,1,10643,99800
,1,10644,99805
,1,10645,99810
,1,10646,99815
,1,10647,99820
,1,10648,99825
,1,10649,99830
,1,10650,99835
,1,10651,99840
,1,10652,99845
,1,10653,99850
,1,10654,99855
,1,10655,99860
,1,10656,99865
,1,10657,99870
,1,10658,99875
,1,10659,99880
,1,10660,99885
,1,10661,99890
,1,10662,99895
,1,10663,99900
,1,10664,99905
,1,10665,99910
,1,10666,99915
,1,10667,99920
,1,10668,99925
,1,10669,99930
,1,10670,99935
,1,10671,99940
,1,10672,99945
,1,10673,99950
,1,10674,99955
,1,10675,99960
,1,10676,99965
,1,10677,99970
,1,10678,99975
,1,10679,99980
,1,10680,99985
,1,10681,99990
,1,10682,99995
,1,10683,100000
,1,10684,100005
,1,10685,100010
,1,10686,100015
,1,10687,100020
,1,10688,100025
,1,10689,100030
,1,10690,100035
,1,10691,100040
,1,10692,100045
,1,10693,100050
,1,10694,100055
,1,10695,100060
,1,10696,100065
,1,10697,100070
,1,10698,100075
,1,10699,100080
,1,10700,100085
,1,10701,100090
,1,10702,100095
,1,10703,100100
,1,10704,100105
,1,10705,100110
,1,10706,100115
,1,10707,100120
,1,10708,100125
,1,10709,100130
,1,10710,100135
,1,10711,100140
,1,10712,100145
,1,10713,100150
,1,10714,100155
,1,10715,100160
,1,10716,100165
,1,10717,100170
,1,10718,100175
,1,10719,100180
,1,10720,100185
,1,10721,100190
,1,10722,100195
,1,10723,100200
,1,10724,100205
,1,10725,100210
,1,10726,100215
,1,10727,100220
,1,10728,100225
,1,10729,100230
,1,10730,100235
,1,10731,100240
,1,10732,100245
,1,10733,100250
,1,10734,100255
,1,10735,100260
,1,10736,100265
,1,10737,100270
,1,10738,100275
,1,10739,100280
,1,10740,100285
,1,10741,100290
,1,10742,100295
,1,10743,100300
,1,10744,100305
,1,10745,100310
,1,10746,100315
,1,10747,100320
,1,10748,100325
,1,10749,100330
,1,10750,100335
,1,10751,100340
,1,10752,100345
,1,10753,100350
,1,10754,100355
,1,10755,100360
,1,10756,100365
,1,10757,100370
,1,10758,100375
,1,10759,100380
,1,10760,100385
,1,10761,100390
,1,10762,100395
,1,10763,100400
,1,10764,100405
,1,10765,100410
,1,10766,100415
,1,10767,100420
,1,10768,100425
,1,10769,100430
,1,10770,100435
,1,10771,100440
,1,10772,100445
,1,10773,100450
,1,10774,100455
,1,10775,100460
,1,10776,100465
,1,10777,100470
,1,10778,100475
,1,10779,100480
,1,10780,100485
,1,10781,100490
,1,10782,100495
,1,10783,100500
,1,10784,100505
,1,10785,100510
,1,10786,100515
,1,10787,100520
,1,10788,100525
,1,10789,100530
,1,10790,100535
,1,10791,100540
,1,10792,100545
,1,10793,100550
,1,10794,100555
,1,10795,100560
,1,10796,100565
,1,10797,100570
,1,10798,100575
,1,10799,100580
,1,10800,100585
,1,10801,100590
,1,10802,100595
,1,10803,100600
,1,10804,100605
,1,10805,100610
,1,10806,100615
,1,10807,100620
,1,10808,100625
,1,10809,100630
,1,10810,100635
,1,10811,100640
,1,10812,100645
,1,10813,100650
,1,10814,100655
,1,10815,100660
,1,10816,100665
,1,10817,100670
,1,10818,100675
,1,10819,100680
,1,10820,100685
,1,10821,100690
,1,10822,100695
,1,10823,100700
,1,10824,100705
,1,10825,100710
,1,10826,100715
,1,10827,100720
,1,10828,100725
,1,10829,100730
,1,10830,100735
,1,10831,100740
,1,10832,100745
,1,10833,100750
,1,10834,100755
,1,10835,100760
,1,10836,100765
,1,10837,100770
,1,10838,100775
,1,10839,100780
,1,10840,100785
,1,10841,100790
,1,10842,100795
,1,10843,100800
,1,10844,100805
,1,10845,100810
,1,10846,100815
,1,10847,100820
,1,10848,100825
,1,10849,100830
,1,10850,100835
,1,10851,100840
,1,10852,100845
,1,10853,100850
,1,10854,100855
,1,10855,100860
,1,10856,100865
,1,10857,100870
,1,10858,100875
,1,10859,100880
,1,10860,100885
,1,10861,100890
,1,10862,100895
,1,10863,100900
,1,10864,100905
,1,10865,100910
,1,10866,100915
,1,10867,100920
,1,10868,100925
,1,10869,100930
,1,10870,100935
,1,10871,100940
,1,10872,100945
,1,10873,100950
,1,10874,100955
,1,10875,100960
,1,10876,100965
,1,10877,100970
,1,10878,100975
,1,10879,100980
,1,10880,100985
,1,10881,100990
,1,10882,100995
,1,10883,101000
,1,10884,101005
,1,10885,101010
,1,10886,101015
,1,10887,101020
,1,10888,101025
,1,10889,101030
,1,10890,101035
,1,10891,101040
,1,10892,101045
,1,10893,101050
,1,10894,101055
,1,10895,101060
,1,10896,101065
,1,10897,101070
,1,10898,101075
,1,10899,101080
,1,10900,101085
,1,10901,101090
,1,10902,101095
,1,10903,101100
,1,10904,101105
,1,10905,101110
,1,10906,101115
,1,10907,101120
,1,10908,101125
,1,10909,101130
,1,10910,101135
,1,10911,101140
,1,10912,101145
,1,10913,101150
,1,10914,101155
,1,10915,101160
,1,10916,101165
,1,10917,101170
,1,10918,101175
,1,10919,101180
,1,10920,101185
,1,10921,101190
,1,10922,101195
,1,10923,101200
,1,10924,101205
,1,10925,101210
,1,10926,101215
,1,10927,101220
,1,10928,101225
,1,10929,101230
,1,10930,101235
,1,10931,101240
,1,10932,101245
,1,10933,101250
,1,10934,101255
,1,10935,101260
,1,10936,101265
,1,10937,101270
,1,10938,101275
,1,10939,101280
,1,10940,101285
,1,10941,101290
,1,10942,101295
,1,10943,101300
,1,10944,101305
,1,10945,101310
,1,10946,101315
,1,10947,101320
,1,10948,101325
,1,10949,101330
,1,10950,101335
,1,10951,101340
,1,10952,101345
,1,10953,101350
,1,10954,101355
,1,10955,101360
,1,10956,101365
,1,10957,101370
,1,10958,101375
,1,10959,101380
,1,10960,101385
,1,10961,101390
,1,10962,101395
,1,10963,101400
,1,10964,101405
,1,10965,101410
,1,10966,101415
,1,10967,101420
,1,10968,101425
,1,10969,101430
,1,10970,101435
,1,10971,101440
,1,10972,101445
,1,10973,101450
,1,10974,101455
,1,10975,101460
,1,10976,101465
,1,10977,101470
,1,10978,101475
,1,10979,101480
,1,10980,101485
,1,10981,101490
,1,10982,101495
,1,10983,101500
,1,10984,101505
,1,10985,101510
,1,10986,101515
,1,10987,101520
,1,10988,101525
,1,10989,101530
,1,10990,101535
,1,10991,101540
,1,10992,101545
,1,10993,101550
,1,10994,101555
,1,10995,101560
,1,10996,101565
,1,10997,101570
,1,10998,101575
,1,10999,101580
,1,11000,101585
,1,11001,101590
,1,11002,101595
,1,11003,101600
,1,11004,101605
,1,11005,101610
,1,11006,101615
,1,11007,101620
,1,11008,101625
,1,11009,101630
,1,11010,101635
,1,11011,101640
,1,11012,101645
,1,11013,101650
,1,11014,101655
,1,11015,101660
,1,11016,101665
,1,11017,101670
,1,11018,101675
,1,11019,101680
,1,11020,101685
,1,11021,101690
,1,11022,101695
,1,11023,101700
,1,11024,101705
,1,11025,101710
,1,11026,101715
,1,11027,101720
,1,11028,101725
,1,11029,101730
,1,11030,101735
,1,11031,101740
,1,11032,101745
,1,11033,101750
,1,11034,101755
,1,11035,101760
,1,11036,101765
,1,11037,101770
,1,11038,101775
,1,11039,101780
,1,11040,101785
,1,11041,101790
,1,11042,101795
,1,11043,101800
,1,11044,101805
,1,11045,101810
,1,11046,101815
,1,11047,101820
,1,11048,101825
,1,11049,101830
,1,11050,101835
,1,11051,101840
,1,11052,101845
,1,11053,101850
,1,11054,101855
,1,11055,101860
,1,11056,101865
,1,11057,101870
,1,11058,101875
,1,11059,101880
,1,11060,101885
,1,11061,101890
,1,11062,101895
,1,11063,101900
,1,11064,101905
,1,11065,101910
,1,11066,101915
,1,11067,101920
,1,11068,101925
,1,11069,101930
,1,11070,101935
,1,11071,101940
,1,11072,101945
,1,11073,101950
,1,11074,101955
,1,11075,101960
,1,11076,101965
,1,11077,101970
,1,11078,101975
,1,11079,101980
,1,11080,101985
,1,11081,101990
,1,11082,101995
,1,11083,102000
,1,11084,102005
,1,11085,102010
,1,11086,102015
,1,11087,102020
,1,11088,102025
,1,11089,102030
,1,11090,102035
,1,11091,102040
,1,11092,102045
,1,11093,102050
,1,11094,102055
,1,11095,102060
,1,11096,102065
,1,11097,102070
,1,11098,102075
,1,11099,102080
,1,11100,102085
,1,11101,102090
,1,11102,102095
,1,11103,102100
,1,11104,102105
,1,11105,102110
,1,11106,102115
,1,11107,102120
,1,11108,102125
,1,11109,102130
,1,11110,102135
,1,11111,102140
,1,11112,102145
,1,11113,102150
,1,11114,102155
,1,11115,102160
,1,11116,102165
,1,11117,102170
,1,11118,102175
,1,11119,102180
,1,11120,102185
,1,11121,102190
,1,11122,102195
,1,11123,102200
,1,11124,102205
,1,11125,102210
,1,11126,102215
,1,11127,102220
,1,11128,102225
,1,11129,102230
,1,11130,102235
,1,11131,102240
,1,11132,102245
,1,11133,102250
,1,11134,102255
,1,11135,102260
,1,11136,102265
,1,11137,102270
,1,11138,102275
,1,11139,102280
,1,11140,102285
,1,11141,102290
,1,11142,102295
,1,11143,102300
,1,11144,102305
,1,11145,102310
,1,11146,102315
,1,11147,102320
,1,11148,102325
,1,11149,102330
,1,11150,102335
,1,11151,102340
,1,11152,102345
,1,11153,102350
,1,11154,102355
,1,11155,102360
,1,11156,102365
,1,11157,102370
,1,11158,102375
,1,11159,102380
,1,11160,102385
,1,11161,102390
,1,11162,102395
,1,11163,102400
,1,11164,102405
,1,11165,102410
,1,11166,102415
,1,11167,102420
,1,11168,102425
,1,11169,102430
,1,11170,102435
,1,11171,102440
,1,11172,102445
,1,11173,102450
,1,11174,102455
,1,11175,102460
,1,11176,102465
,1,11177,102470
,1,11178,102475
,1,11179,102480
,1,11180,102485
,1,11181,102490
,1,11182,102495
,1,11183,102500
,1,11184,102505
,1,11185,102510
,1,11186,102515
,1,11187,102520
,1,11188,102525
,1,11189,102530
,1,11190,102535
,1,11191,102540
,1,11192,102545
,1,11193,102550
,1,11194,102555
,1,11195,102560
,1,11196,102565
,1,11197,102570
,1,11198,102575
,1,11199,102580
,1,11200,102585
,1,11201,102590
,1,11202,102595
,1,11203,102600
,1,11204,102605
,1,11205,102610
,1,11206,102615
,1,11207,102620
,1,11208,102625
,1,11209,102630
,1,11210,102635
,1,11211,102640
,1,11212,102645
,1,11213,102650
,1,11214,102655
,1,11215,102660
,1,11216,102665
,1,11217,102670
,1,11218,102675
,1,11219,102680
,1,11220,102685
,1,11221,102690
,1,11222,102695
,1,11223,102700
,1,11224,102705
,1,11225,102710
,1,11226,102715
,1,11227,102720
,1,11228,102725
,1,11229,102730
,1,11230,102735
,1,11231,102740
,1,11232,102745
,1,11233,102750
,1,11234,102755
,1,11235,102760
,1,11236,102765
,1,11237,102770
,1,11238,102775
,1,11239,102780
,1,11240,102785
,1,11241,102790
,1,11242,102795
,1,11243,102800
,1,11244,102805
,1,11245,102810
,1,11246,102815
,1,11247,102820
,1,11248,102825
,1,11249,102830
,1,11250,102835
,1,11251,102840
,1,11252,102845
,1,11253,102850
,1,11254,102855
,1,11255,102860
,1,11256,102865
,1,11257,102870
,1,11258,102875
,1,11259,102880
,1,11260,102885
,1,11261,102890
,1,11262,102895
,1,11263,102900
,1,11264,102905
,1,11265,102910
,1,11266,102915
,1,11267,102920
,1,11268,102925
,1,11269,102930
,1,11270,102935
,1,11271,102940
,1,11272,102945
,1,11273,102950
,1,11274,102955
,1,11275,102960
,1,11276,102965
,1,11277,102970
,1,11278,102975
,1,11279,102980
,1,11280,102985
,1,11281,102990
,1,11282,102995
,1,11283,103000
,1,11284,103005
,1,11285,103010
,1,11286,103015
,1,11287,103020
,1,11288,103025
,1,11289,103030
,1,11290,103035
,1,11291,103040
,1,11292,103045
,1,11293,103050
,1,11294,103055
,1,11295,103060
,1,11296,103065
,1,11297,103070
,1,11298,103075
,1,11299,103080
,1,11300,103085
,1,11301,103090
,1,11302,103095
,1,11303,103100
,1,11304,103105
,1,11305,103110
,1,11306,103115
,1,11307,103120
,1,11308,103125
,1,11309,103130
,1,11310,103135
,1,11311,103140
,1,11312,103145
,1,11313,103150
,1,11314,103155
,1,11315,103160
,1,11316,103165
,1,11317,103170
,1,11318,103175
,1,11319,103180
,1,11320,103185
,1,11321,103190
,1,11322,103195
,1,11323,103200
,1,11324,103205
,1,11325,103210
,1,11326,103215
,1,11327,103220
,1,11328,103225
,1,11329,103230
,1,11330,103235
,1,11331,103240
,1,11332,103245
,1,11333,103250
,1,11334,103255
,1,11335,103260
,1,11336,103265
,1,11337,103270
,1,11338,103275
,1,11339,103280
,1,11340,103285
,1,11341,103290
,1,11342,103295
,1,11343,103300
,1,11344,103305
,1,11345,103310
,1,11346,103315
,1,11347,103320
,1,11348,103325
,1,11349,103330
,1,11350,103335
,1,11351,103340
,1,11352,103345
,1,11353,103350
,1,11354,103355
,1,11355,103360
,1,11356,103365
,1,11357,103370
,1,11358,103375
,1,11359,103380
,1,11360,103385
,1,11361,103390
,1,11362,103395
,1,11363,103400
,1,11364,103405
,1,11365,103410
,1,11366,103415
,1,11367,103420
,1,11368,103425
,1,11369,103430
,1,11370,103435
,1,11371,103440
,1,11372,103445
,1,11373,103450
,1,11374,103455
,1,11375,103460
,1,11376,103465
,1,11377,103470
,1,11378,103475
,1,11379,103480
,1,11380,103485
,1,11381,103490
,1,11382,103495
,1,11383,103500
,1,11384,103505
,1,11385,103510
,1,11386,103515
,1,11387,103520
,1,11388,103525
,1,11389,103530
,1,11390,103535
,1,11391,103540
,1,11392,103545
,1,11393,103550
,1,11394,103555
,1,11395,103560
,1,11396,103565
,1,11397,103570
,1,11398,103575
,1,11399,103580
,1,11400,103585
,1,11401,103590
,1,11402,103595
,1,11403,103600
,1,11404,103605
,1,11405,103610
,1,11406,103615
,1,11407,103620
,1,11408,103625
,1,11409,103630
,1,11410,103635
,1,11411,103640
,1,11412,103645
,1,11413,103650
,1,11414,103655
,1,11415,103660
,1,11416,103665
,1,11417,103670
,1,11418,103675
,1,11419,103680
,1,11420,103685
,1,11421,103690
,1,11422,103695
,1,11423,103700
,1,11424,103705
,1,11425,103710
,1,11426,103715
,1,11427,103720
,1,11428,103725
,1,11429,103730
,1,11430,103735
,1,11431,103740
,1,11432,103745
,1,11433,103750
,1,11434,103755
,1,11435,103760
,1,11436,103765
,1,11437,103770
,1,11438,103775
,1,11439,103780
,1,11440,103785
,1,11441,103790
,1,11442,103795
,1,11443,103800
,1,11444,103805
,1,11445,103810
,1,11446,103815
,1,11447,103820
,1,11448,103825
,1,11449,103830
,1,11450,103835
,1,11451,103840
,1,11452,103845
,1,11453,103850
,1,11454,103855
,1,11455,103860
,1,11456,103865
,1,11457,103870
,1,11458,103875
,1,11459,103880
,1,11460,103885
,1,11461,103890
,1,11462,103895
,1,11463,103900
,1,11464,103905
,1,11465,103910
,1,11466,103915
,1,11467,103920
,1,11468,103925
,1,11469,103930
,1,11470,103935
,1,11471,103940
,1,11472,103945
,1,11473,103950
,1,11474,103955
,1,11475,103960
,1,11476,103965
,1,11477,103970
,1,11478,103975
,1,11479,103980
,1,11480,103985
,1,11481,103990
,1,11482,103995
,1,11483,104000
,1,11484,104005
,1,11485,104010
,1,11486,104015
,1,11487,104020
,1,11488,104025
,1,11489,104030
,1,11490,104035
,1,11491,104040
,1,11492,104045
,1,11493,104050
,1,11494,104055
,1,11495,104060
,1,11496,104065
,1,11497,104070
,1,11498,104075
,1,11499,104080
,1,11500,104085
,1,11501,104090
,1,11502,104095
,1,11503,104100
,1,11504,104105
,1,11505,104110
,1,11506,104115
,1,11507,104120
,1,11508,104125
,1,11509,104130
,1,11510,104135
,1,11511,104140
,1,11512,104145
,1,11513,104150
,1,11514,104155
,1,11515,104160
,1,11516,104165
,1,11517,104170
,1,11518,104175
,1,11519,104180
,1,11520,104185
,1,11521,104190
,1,11522,104195
,1,11523,104200
,1,11524,104205
,1,11525,104210
,1,11526,104215
,1,11527,104220
,1,11528,104225
,1,11529,104230
,1,11530,104235
,1,11531,104240
,1,11532,104245
,1,11533,104250
,1,11534,104255
,1,11535,104260
,1,11536,104265
,1,11537,104270
,1,11538,104275
,1,11539,104280
,1,11540,104285
,1,11541,104290
,1,11542,104295
,1,11543,104300
,1,11544,104305
,1,11545,104310
,1,11546,104315
,1,11547,104320
,1,11548,104325
,1,11549,104330
,1,11550,104335
,1,11551,104340
,1,11552,104345
,1,11553,104350
,1,11554,104355
,1,11555,104360
,1,11556,104365
,1,11557,104370
,1,11558,104375
,1,11559,104380
,1,11560,104385
,1,11561,104390
,1,11562,104395
,1,11563,104400
,1,11564,104405
,1,11565,104410
,1,11566,104415
,1,11567,104420
,1,11568,104425
,1,11569,104430
,1,11570,104435
,1,11571,104440
,1,11572,104445
,1,11573,104450
,1,11574,104455
,1,11575,104460
,1,11576,104465
,1,11577,104470
,1,11578,104475
,1,11579,104480
,1,11580,104485
,1,11581,104490
,1,11582,104495
,1,11583,104500
,1,11584,104505
,1,11585,104510
,1,11586,104515
,1,11587,104520
,1,11588,104525
,1,11589,104530
,1,11590,104535
,1,11591,104540
,1,11592,104545
,1,11593,104550
,1,11594,104555
,1,11595,104560
,1,11596,104565
,1,11597,104570
,1,11598,104575
,1,11599,104580
,1,11600,104585
,1,11601,104590
,1,11602,104595
,1,11603,104600
,1,11604,104605
,1,11605,104610
,1,11606,104615
,1,11607,104620
,1,11608,104625
,1,11609,104630
,1,11610,104635
,1,11611,104640
,1,11612,104645
,1,11613,104650
,1,11614,104655
,1,11615,104660
,1,11616,104665
,1,11617,104670
,1,11618,104675
,1,11619,104680
,1,11620,104685
,1,11621,104690
,1,11622,104695
,1,11623,104700
,1,11624,104705
,1,11625,104710
,1,11626,104715
,1,11627,104720
,1,11628,104725
,1,11629,104730
,1,11630,104735
,1,11631,104740
,1,11632,104745
,1,11633,104750
,1,11634,104755
,1,11635,104760
,1,11636,104765
,1,11637,104770
,1,11638,104775
,1,11639,104780
,1,11640,104785
,1,11641,104790
,1,11642,104795
,1,11643,104800
,1,11644,104805
,1,11645,104810
,1,11646,104815
,1,11647,104820
,1,11648,104825
,1,11649,104830
,1,11650,104835
,1,11651,104840
,1,11652,104845
,1,11653,104850
,1,11654,104855
,1,11655,104860
,1,11656,104865
,1,11657,104870
,1,11658,104875
,1,11659,104880
,1,11660,104885
,1,11661,104890
,1,11662,104895
,1,11663,104900
,1,11664,104905
,1,11665,104910
,1,11666,104915
,1,11667,104920
,1,11668,104925
,1,11669,104930
,1,11670,104935
,1,11671,104940
,1,11672,104945
,1,11673,104950
,1,11674,104955
,1,11675,104960
,1,11676,104965
,1,11677,104970
,1,11678,104975
,1,11679,104980
,1,11680,104985
,1,11681,104990
,1,11682,104995
,1,11683,105000
,1,11684,105005
,1,11685,105010
,1,11686,105015
,1,11687,105020
,1,11688,105025
,1,11689,105030
,1,11690,105035
,1,11691,105040
,1,11692,105045
,1,11693,105050
,1,11694,105055
,1,11695,105060
,1,11696,105065
,1,11697,105070
,1,11698,105075
,1,11699,105080
,1,11700,105085
,1,11701,105090
,1,11702,105095
,1,11703,105100
,1,11704,105105
,1,11705,105110
,1,11706,105115
,1,11707,105120
,1,11708,105125
,1,11709,105130
,1,11710,105135
,1,11711,105140
,1,11712,105145
,1,11713,105150
,1,11714,105155
,1,11715,105160
,1,11716,105165
,1,11717,105170
,1,11718,105175
,1,11719,105180
,1,11720,105185
,1,11721,105190
,1,11722,105195
,1,11723,105200
,1,11724,105205
,1,11725,105210
,1,11726,105215
,1,11727,105220
,1,11728,105225
,1,11729,105230
,1,11730,105235
,1,11731,105240
,1,11732,105245
,1,11733,105250
,1,11734,105255
,1,11735,105260
,1,11736,105265
,1,11737,105270
,1,11738,105275
,1,11739,105280
,1,11740,105285
,1,11741,105290
,1,11742,105295
,1,11743,105300
,1,11744,105305
,1,11745,105310
,1,11746,105315
,1,11747,105320
,1,11748,105325
,1,11749,105330
,1,11750,105335
,1,11751,105340
,1,11752,105345
,1,11753,105350
,1,11754,105355
,1,11755,105360
,1,11756,105365
,1,11757,105370
,1,11758,105375
,1,11759,105380
,1,11760,105385
,1,11761,105390
,1,11762,105395
,1,11763,105400
,1,11764,105405
,1,11765,105410
,1,11766,105415
,1,11767,105420
,1,11768,105425
,1,11769,105430
,1,11770,105435
,1,11771,105440
,1,11772,105445
,1,11773,105450
,1,11774,105455
,1,11775,105460
,1,11776,105465
,1,11777,105470
,1,11778,105475
,1,11779,105480
,1,11780,105485
,1,11781,105490
,1,11782,105495
,1,11783,105500
,1,11784,105505
,1,11785,105510
,1,11786,105515
,1,11787,105520
,1,11788,105525
,1,11789,105530
,1,11790,105535
,1,11791,105540
,1,11792,105545
,1,11793,105550
,1,11794,105555
,1,11795,105560
,1,11796,105565
,1,11797,105570
,1,11798,105575
,1,11799,105580
,1,11800,105585
,1,11801,105590
,1,11802,105595
,1,11803,105600
,1,11804,105605
,1,11805,105610
,1,11806,105615
,1,11807,105620
,1,11808,105625
,1,11809,105630
,1,11810,105635
,1,11811,105640
,1,11812,105645
,1,11813,105650
,1,11814,105655
,1,11815,105660
,1,11816,105665
,1,11817,105670
,1,11818,105675
,1,11819,105680
,1,11820,105685
,1,11821,105690
,1,11822,105695
,1,11823,105700
,1,11824,105705
,1,11825,105710
,1,11826,105715
,1,11827,105720
,1,11828,105725
,1,11829,105730
,1,11830,105735
,1,11831,105740
,1,11832,105745
,1,11833,105750
,1,11834,105755
,1,11835,105760
,1,11836,105765
,1,11837,105770
,1,11838,105775
,1,11839,105780
,1,11840,105785
,1,11841,105790
,1,11842,105795
,1,11843,105800
,1,11844,105805
,1,11845,105810
,1,11846,105815
,1,11847,105820
,1,11848,105825
,1,11849,105830
,1,11850,105835
,1,11851,105840
,1,11852,105845
,1,11853,105850
,1,11854,105855
,1,11855,105860
,1,11856,105865
,1,11857,105870
,1,11858,105875
,1,11859,105880
,1,11860,105885
,1,11861,105890
,1,11862,105895
,1,11863,105900
,1,11864,105905
,1,11865,105910
,1,11866,105915
,1,11867,105920
,1,11868,105925
,1,11869,105930
,1,11870,105935
,1,11871,105940
,1,11872,105945
,1,11873,105950
,1,11874,105955
,1,11875,105960
,1,11876,105965
,1,11877,105970
,1,11878,105975
,1,11879,105980
,1,11880,105985
,1,11881,105990
,1,11882,105995
,1,11883,106000
,1,11884,106005
,1,11885,106010
,1,11886,106015
,1,11887,106020
,1,11888,106025
,1,11889,106030
,1,11890,106035
,1,11891,106040
,1,11892,106045
,1,11893,106050
,1,11894,106055
,1,11895,106060
,1,11896,106065
,1,11897,106070
,1,11898,106075
,1,11899,106080
,1,11900,106085
,1,11901,106090
,1,11902,106095
,1,11903,106100
,1,11904,106105
,1,11905,106110
,1,11906,106115
,1,11907,106120
,1,11908,106125
,1,11909,106130
,1,11910,106135
,1,11911,106140
,1,11912,106145
,1,11913,106150
,1,11914,106155
,1,11915,106160
,1,11916,106165
,1,11917,106170
,1,11918,106175
,1,11919,106180
,1,11920,106185
,1,11921,106190
,1,11922,106195
,1,11923,106200
,1,11924,106205
,1,11925,106210
,1,11926,106215
,1,11927,106220
,1,11928,106225
,1,11929,106230
,1,11930,106235
,1,11931,106240
,1,11932,106245
,1,11933,106250
,1,11934,106255
,1,11935,106260
,1,11936,106265
,1,11937,106270
,1,11938,106275
,1,11939,106280
,1,11940,106285
,1,11941,106290
,1,11942,106295
,1,11943,106300
,1,11944,106305
,1,11945,106310
,1,11946,106315
,1,11947,106320
,1,11948,106325
,1,11949,106330
,1,11950,106335
,1,11951,106340
,1,11952,106345
,1,11953,106350
,1,11954,106355
,1,11955,106360
,1,11956,106365
,1,11957,106370
,1,11958,106375
,1,11959,106380
,1,11960,106385
,1,11961,106390
,1,11962,106395
,1,11963,106400
,1,11964,106405
,1,11965,106410
,1,11966,106415
,1,11967,106420
,1,11968,106425
,1,11969,106430
,1,11970,106435
,1,11971,106440
,1,11972,106445
,1,11973,106450
,1,11974,106455
,1,11975,106460
,1,11976,106465
,1,11977,106470
,1,11978,106475
,1,11979,106480
,1,11980,106485
,1,11981,106490
,1,11982,106495
,1,11983,106500
,1,11984,106505
,1,11985,106510
,1,11986,106515
,1,11987,106520
,1,11988,106525
,1,11989,106530
,1,11990,106535
,1,11991,106540
,1,11992,106545
,1,11993,106550
,1,11994,106555
,1,11995,106560
,1,11996,106565
,1,11997,106570
,1,11998,106575
,1,11999,106580
,1,12000,106585
,1,12001,106590
,1,12002,106595
,1,12003,106600
,1,12004,106605
,1,12005,106610
,1,12006,106615
,1,12007,106620
,1,12008,106625
,1,12009,106630
,1,12010,106635
,1,12011,106640
,1,12012,106645
,1,12013,106650
,1,12014,106655
,1,12015,106660
,1,12016,106665
,1,12017,106670
,1,12018,106675
,1,12019,106680
,1,12020,106685
,1,12021,106690
,1,12022,106695
,1,12023,106700
,1,12024,106705
,1,12025,106710
,1,12026,106715
,1,12027,106720
,1,12028,106725
,1,12029,106730
,1,12030,106735
,1,12031,106740
,1,12032,106745
,1,12033,106750
,1,12034,106755
,1,12035,106760
,1,12036,106765
,1,12037,106770
,1,12038,106775
,1,12039,106780
,1,12040,106785
,1,12041,106790
,1,12042,106795
,1,12043,106800
,1,12044,106805
,1,12045,106810
,1,12046,106815
,1,12047,106820
,1,12048,106825
,1,12049,106830
,1,12050,106835
,1,12051,106840
,1,12052,106845
,1,12053,106850
,1,12054,106855
,1,12055,106860
,1,12056,106865
,1,12057,106870
,1,12058,106875
,1,12059,106880
,1,12060,106885
,1,12061,106890
,1,12062,106895
,1,12063,106900
,1,12064,106905
,1,12065,106910
,1,12066,106915
,1,12067,106920
,1,12068,106925
,1,12069,106930
,1,12070,106935
,1,12071,106940
,1,12072,106945
,1,12073,106950
,1,12074,106955
,1,12075,106960
,1,12076,106965
,1,12077,106970
,1,12078,106975
,1,12079,106980
,1,12080,106985
,1,12081,106990
,1,12082,106995
,1,12083,107000
,1,12084,107005
,1,12085,107010
,1,12086,107015
,1,12087,107020
,1,12088,107025
,1,12089,107030
,1,12090,107035
,1,12091,107040
,1,12092,107045
,1,12093,107050
,1,12094,107055
,1,12095,107060
,1,12096,107065
,1,12097,107070
,1,12098,107075
,1,12099,107080
,1,12100,107085
,1,12101,107090
,1,12102,107095
,1,12103,107100
,1,12104,107105
,1,12105,107110
,1,12106,107115
,1,12107,107120
,1,12108,107125
,1,12109,107130
,1,12110,107135
,1,12111,107140
,1,12112,107145
,1,12113,107150
,1,12114,107155
,1,12115,107160
,1,12116,107165
,1,12117,107170
,1,12118,107175
,1,12119,107180
,1,12120,107185
,1,12121,107190
,1,12122,107195
,1,12123,107200
,1,12124,107205
,1,12125,107210
,1,12126,107215
,1,12127,107220
,1,12128,107225
,1,12129,107230
,1,12130,107235
,1,12131,107240
,1,12132,107245
,1,12133,107250
,1,12134,107255
,1,12135,107260
,1,12136,107265
,1,12137,107270
,1,12138,107275
,1,12139,107280
,1,12140,107285
,1,12141,107290
,1,12142,107295
,1,12143,107300
,1,12144,107305
,1,12145,107310
,1,12146,107315
,1,12147,107320
,1,12148,107325
,1,12149,107330
,1,12150,107335
,1,12151,107340
,1,12152,107345
,1,12153,107350
,1,12154,107355
,1,12155,107360
,1,12156,107365
,1,12157,107370
,1,12158,107375
,1,12159,107380
,1,12160,107385
,1,12161,107390
,1,12162,107395
,1,12163,107400
,1,12164,107405
,1,12165,107410
,1,12166,107415
,1,12167,107420
,1,12168,107425
,1,12169,107430
,1,12170,107435
,1,12171,107440
,1,12172,107445
,1,12173,107450
,1,12174,107455
,1,12175,107460
,1,12176,107465
,1,12177,107470
,1,12178,107475
,1,12179,107480
,1,12180,107485
,1,12181,107490
,1,12182,107495
,1,12183,107500
,1,12184,107505
,1,12185,107510
,1,12186,107515
,1,12187,107520
,1,12188,107525
,1,12189,107530
,1,12190,107535
,1,12191,107540
,1,12192,107545
,1,12193,107550
,1,12194,107555
,1,12195,107560
,1,12196,107565
,1,12197,107570
,1,12198,107575
,1,12199,107580
,1,12200,107585
,1,12201,107590
,1,12202,107595
,1,12203,107600
,1,12204,107605
,1,12205,107610
,1,12206,107615
,1,12207,107620
,1,12208,107625
,1,12209,107630
,1,12210,107635
,1,12211,107640
,1,12212,107645
,1,12213,107650
,1,12214,107655
,1,12215,107660
,1,12216,107665
,1,12217,107670
,1,12218,107675
,1,12219,107680
,1,12220,107685
,1,12221,107690
,1,12222,107695
,1,12223,107700
,1,12224,107705
,1,12225,107710
,1,12226,107715
,1,12227,107720
,1,12228,107725
,1,12229,107730
,1,12230,107735
,1,12231,107740
,1,12232,107745
,1,12233,107750
,1,12234,107755
,1,12235,107760
,1,12236,107765
,1,12237,107770
,1,12238,107775
,1,12239,107780
,1,12240,107785
,1,12241,107790
,1,12242,107795
,1,12243,107800
,1,12244,107805
,1,12245,107810
,1,12246,107815
,1,12247,107820
,1,12248,107825
,1,12249,107830
,1,12250,107835
,1,12251,107840
,1,12252,107845
,1,12253,107850
,1,12254,107855
,1,12255,107860
,1,12256,107865
,1,12257,107870
,1,12258,107875
,1,12259,107880
,1,12260,107885
,1,12261,107890
,1,12262,107895
,1,12263,107900
,1,12264,107905
,1,12265,107910
,1,12266,107915
,1,12267,107920
,1,12268,107925
,1,12269,107930
,1,12270,107935
,1,12271,107940
,1,12272,107945
,1,12273,107950
,1,12274,107955
,1,12275,107960
,1,12276,107965
,1,12277,107970
,1,12278,107975
,1,12279,107980
,1,12280,107985
,1,12281,107990
,1,12282,107995
,1,12283,108000
,1,12284,108005
,1,12285,108010
,1,12286,108015
,1,12287,108020
,1,12288,108025
,1,12289,108030
,1,12290,108035
,1,12291,108040
,1,12292,108045
,1,12293,108050
,1,12294,108055
,1,12295,108060
,1,12296,108065
,1,12297,108070
,1,12298,108075
,1,12299,108080
,1,12300,108085
,1,12301,108090
,1,12302,108095
,1,12303,108100
,1,12304,108105
,1,12305,108110
,1,12306,108115
,1,12307,108120
,1,12308,108125
,1,12309,108130
,1,12310,108135
,1,12311,108140
,1,12312,108145
,1,12313,108150
,1,12314,108155
,1,12315,108160
,1,12316,108165
,1,12317,108170
,1,12318,108175
,1,12319,108180
,1,12320,108185
,1,12321,108190
,1,12322,108195
,1,12323,108200
,1,12324,108205
,1,12325,108210
,1,12326,108215
,1,12327,108220
,1,12328,108225
,1,12329,108230
,1,12330,108235
,1,12331,108240
,1,12332,108245
,1,12333,108250
,1,12334,108255
,1,12335,108260
,1,12336,108265
,1,12337,108270
,1,12338,108275
,1,12339,108280
,1,12340,108285
,1,12341,108290
,1,12342,108295
,1,12343,108300
,1,12344,108305
,1,12345,108310
,1,12346,108315
,1,12347,108320
,1,12348,108325
,1,12349,108330
,1,12350,108335
,1,12351,108340
,1,12352,108345
,1,12353,108350
,1,12354,108355
,1,12355,108360
,1,12356,108365
,1,12357,108370
,1,12358,108375
,1,12359,108380
,1,12360,108385
,1,12361,108390
,1,12362,108395
,1,12363,108400
,1,12364,108405
,1,12365,108410
,1,12366,108415
,1,12367,108420
,1,12368,108425
,1,12369,108430
,1,12370,108435
,1,12371,108440
,1,12372,108445
,1,12373,108450
,1,12374,108455
,1,12375,108460
,1,12376,108465
,1,12377,108470
,1,12378,108475
,1,12379,108480
,1,12380,108485
,1,12381,108490
,1,12382,108495
,1,12383,108500
,1,12384,108505
,1,12385,108510
,1,12386,108515
,1,12387,108520
,1,12388,108525
,1,12389,108530
,1,12390,108535
,1,12391,108540
,1,12392,108545
,1,12393,108550
,1,12394,108555
,1,12395,108560
,1,12396,108565
,1,12397,108570
,1,12398,108575
,1,12399,108580
,1,12400,108585
,1,12401,108590
,1,12402,108595
,1,12403,108600
,1,12404,108605
,1,12405,108610
,1,12406,108615
,1,12407,108620
,1,12408,108625
,1,12409,108630
,1,12410,108635
,1,12411,108640
,1,12412,108645
,1,12413,108650
,1,12414,108655
,1,12415,108660
,1,12416,108665
,1,12417,108670
,1,12418,108675
,1,12419,108680
,1,12420,108685
,1,12421,108690
,1,12422,108695
,1,12423,108700
,1,12424,108705
,1,12425,108710
,1,12426,108715
,1,12427,108720
,1,12428,108725
,1,12429,108730
,1,12430,108735
,1,12431,108740
,1,12432,108745
,1,12433,108750
,1,12434,108755
,1,12435,108760
,1,12436,108765
,1,12437,108770
,1,12438,108775
,1,12439,108780
,1,12440,108785
,1,12441,108790
,1,12442,108795
,1,12443,108800
,1,12444,108805
,1,12445,108810
,1,12446,108815
,1,12447,108820
,1,12448,108825
,1,12449,108830
,1,12450,108835
,1,12451,108840
,1,12452,108845
,1,12453,108850
,1,12454,108855
,1,12455,108860
,1,12456,108865
,1,12457,108870
,1,12458,108875
,1,12459,108880
,1,12460,108885
,1,12461,108890
,1,12462,108895
,1,12463,108900
,1,12464,108905
,1,12465,108910
,1,12466,108915
,1,12467,108920
,1,12468,108925
,1,12469,108930
,1,12470,108935
,1,12471,108940
,1,12472,108945
,1,12473,108950
,1,12474,108955
,1,12475,108960
,1,12476,108965
,1,12477,108970
,1,12478,108975
,1,12479,108980
,1,12480,108985
,1,12481,108990
,1,12482,108995
,1,12483,109000
,1,12484,109005
,1,12485,109010
,1,12486,109015
,1,12487,109020
,1,12488,109025
,1,12489,109030
,1,12490,109035
,1,12491,109040
,1,12492,109045
,1,12493,109050
,1,12494,109055
,1,12495,109060
,1,12496,109065
,1,12497,109070
,1,12498,109075
,1,12499,109080
,1,12500,109085
,1,12501,109090
,1,12502,109095
,1,12503,109100
,1,12504,109105
,1,12505,109110
,1,12506,109115
,1,12507,109120
,1,12508,109125
,1,12509,109130
,1,12510,109135
,1,12511,109140
,1,12512,109145
,1,12513,109150
,1,12514,109155
,1,12515,109160
,1,12516,109165
,1,12517,109170
,1,12518,109175
,1,12519,109180
,1,12520,109185
,1,12521,109190
,1,12522,109195
,1,12523,109200
,1,12524,109205
,1,12525,109210
,1,12526,109215
,1,12527,109220
,1,12528,109225
,1,12529,109230
,1,12530,109235
,1,12531,109240
,1,12532,109245
,1,12533,109250
,1,12534,109255
,1,12535,109260
,1,12536,109265
,1,12537,109270
,1,12538,109275
,1,12539,109280
,1,12540,109285
,1,12541,109290
,1,12542,109295
,1,12543,109300
,1,12544,109305
,1,12545,109310
,1,12546,109315
,1,12547,109320
,1,12548,109325
,1,12549,109330
,1,12550,109335
,1,12551,109340
,1,12552,109345
,1,12553,109350
,1,12554,109355
,1,12555,109360
,1,12556,109365
,1,12557,109370
,1,12558,109375
,1,12559,109380
,1,12560,109385
,1,12561,109390
,1,12562,109395
,1,12563,109400
,1,12564,109405
,1,12565,109410
,1,12566,109415
,1,12567,109420
,1,12568,109425
,1,12569,109430
,1,12570,109435
,1,12571,109440
,1,12572,109445
,1,12573,109450
,1,12574,109455
,1,12575,109460
,1,12576,109465
,1,12577,109470
,1,12578,109475
,1,12579,109480
,1,12580,109485
,1,12581,109490
,1,12582,109495
,1,12583,109500
,1,12584,109505
,1,12585,109510
,1,12586,109515
,1,12587,109520
,1,12588,109525
,1,12589,109530
,1,12590,109535
,1,12591,109540
,1,12592,109545
,1,12593,109550
,1,12594,109555
,1,12595,109560
,1,12596,109565
,1,12597,109570
,1,12598,109575
,1,12599,109580
,1,12600,109585
,1,12601,109590
,1,12602,109595
,1,12603,109600
,1,12604,109605
,1,12605,109610
,1,12606,109615
,1,12607,109620
,1,12608,109625
,1,12609,109630
,1,12610,109635
,1,12611,109640
,1,12612,109645
,1,12613,109650
,1,12614,109655
,1,12615,109660
,1,12616,109665
,1,12617,109670
,1,12618,109675
,1,12619,109680
,1,12620,109685
,1,12621,109690
,1,12622,109695
,1,12623,109700
,1,12624,109705
,1,12625,109710
,1,12626,109715
,1,12627,109720
,1,12628,109725
,1,12629,109730
,1,12630,109735
,1,12631,109740
,1,12632,109745
,1,12633,109750
,1,12634,109755
,1,12635,109760
,1,12636,109765
,1,12637,109770
,1,12638,109775
,1,12639,109780
,1,12640,109785
,1,12641,109790
,1,12642,109795
,1,12643,109800
,1,12644,109805
,1,12645,109810
,1,12646,109815
,1,12647,109820
,1,12648,109825
,1,12649,109830
,1,12650,109835
,1,12651,109840
,1,12652,109845
,1,12653,109850
,1,12654,109855
,1,12655,109860
,1,12656,109865
,1,12657,109870
,1,12658,109875
,1,12659,109880
,1,12660,109885
,1,12661,109890
,1,12662,109895
,1,12663,109900
,1,12664,109905
,1,12665,109910
,1,12666,109915
,1,12667,109920
,1,12668,109925
,1,12669,109930
,1,12670,109935
,1,12671,109940
,1,12672,109945
,1,12673,109950
,1,12674,109955
,1,12675,109960
,1,12676,109965
,1,12677,109970
,1,12678,109975
,1,12679,109980
,1,12680,109985
,1,12681,109990
,1,12682,109995
,1,12683,110000
,1,12684,110005
,1,12685,110010
,1,12686,110015
,1,12687,110020
,1,12688,110025
,1,12689,110030
,1,12690,110035
,1,12691,110040
,1,12692,110045
,1,12693,110050
,1,12694,110055
,1,12695,110060
,1,12696,110065
,1,12697,110070
,1,12698,110075
,1,12699,110080
,1,12700,110085
,1,12701,110090
,1,12702,110095
,1,12703,110100
,1,12704,110105
,1,12705,110110
,1,12706,110115
,1,12707,110120
,1,12708,110125
,1,12709,110130
,1,12710,110135
,1,12711,110140
,1,12712,110145
,1,12713,110150
,1,12714,110155
,1,12715,110160
,1,12716,110165
,1,12717,110170
,1,12718,110175
,1,12719,110180
,1,12720,110185
,1,12721,110190
,1,12722,110195
,1,12723,110200
,1,12724,110205
,1,12725,110210
,1,12726,110215
,1,12727,110220
,1,12728,110225
,1,12729,110230
,1,12730,110235
,1,12731,110240
,1,12732,110245
,1,12733,110250
,1,12734,110255
,1,12735,110260
,1,12736,110265
,1,12737,110270
,1,12738,110275
,1,12739,110280
,1,12740,110285
,1,12741,110290
,1,12742,110295
,1,12743,110300
,1,12744,110305
,1,12745,110310
,1,12746,110315
,1,12747,110320
,1,12748,110325
,1,12749,110330
,1,12750,110335
,1,12751,110340
,1,12752,110345
,1,12753,110350
,1,12754,110355
,1,12755,110360
,1,12756,110365
,1,12757,110370
,1,12758,110375
,1,12759,110380
,1,12760,110385
,1,12761,110390
,1,12762,110395
,1,12763,110400
,1,12764,110405
,1,12765,110410
,1,12766,110415
,1,12767,110420
,1,12768,110425
,1,12769,110430
,1,12770,110435
,1,12771,110440
,1,12772,110445
,1,12773,110450
,1,12774,110455
,1,12775,110460
,1,12776,110465
,1,12777,110470
,1,12778,110475
,1,12779,110480
,1,12780,110485
,1,12781,110490
,1,12782,110495
,1,12783,110500
,1,12784,110505
,1,12785,110510
,1,12786,110515
,1,12787,110520
,1,12788,110525
,1,12789,110530
,1,12790,110535
,1,12791,110540
,1,12792,110545
,1,12793,110550
,1,12794,110555
,1,12795,110560
,1,12796,110565
,1,12797,110570
,1,12798,110575
,1,12799,110580
,1,12800,110585
,1,12801,110590
,1,12802,110595
,1,12803,110600
,1,12804,110605
,1,12805,110610
,1,12806,110615
,1,12807,110620
,1,12808,110625
,1,12809,110630
,1,12810,110635
,1,12811,110640
,1,12812,110645
,1,12813,110650
,1,12814,110655
,1,12815,110660
,1,12816,110665
,1,12817,110670
,1,12818,110675
,1,12819,110680
,1,12820,110685
,1,12821,110690
,1,12822,110695
,1,12823,110700
,1,12824,110705
,1,12825,110710
,1,12826,110715
,1,12827,110720
,1,12828,110725
,1,12829,110730
,1,12830,110735
,1,12831,110740
,1,12832,110745
,1,12833,110750
,1,12834,110755
,1,12835,110760
,1,12836,110765
,1,12837,110770
,1,12838,110775
,1,12839,110780
,1,12840,110785
,1,12841,110790
,1,12842,110795
,1,12843,110800
,1,12844,110805
,1,12845,110810
,1,12846,110815
,1,12847,110820
,1,12848,110825
,1,12849,110830
,1,12850,110835
,1,12851,110840
,1,12852,110845
,1,12853,110850
,1,12854,110855
,1,12855,110860
,1,12856,110865
,1,12857,110870
,1,12858,110875
,1,12859,110880
,1,12860,110885
,1,12861,110890
,1,12862,110895
,1,12863,110900
,1,12864,110905
,1,12865,110910
,1,12866,110915
,1,12867,110920
,1,12868,110925
,1,12869,110930
,1,12870,110935
,1,12871,110940
,1,12872,110945
,1,12873,110950
,1,12874,110955
,1,12875,110960
,1,12876,110965
,1,12877,110970
,1,12878,110975
,1,12879,110980
,1,12880,110985
,1,12881,110990
,1,12882,110995
,1,12883,111000
,1,12884,111005
,1,12885,111010
,1,12886,111015
,1,12887,111020
,1,12888,111025
,1,12889,111030
,1,12890,111035
,1,12891,111040
,1,12892,111045
,1,12893,111050
,1,12894,111055
,1,12895,111060
,1,12896,111065
,1,12897,111070
,1,12898,111075
,1,12899,111080
,1,12900,111085
,1,12901,111090
,1,12902,111095
,1,12903,111100
,1,12904,111105
,1,12905,111110
,1,12906,111115
,1,12907,111120
,1,12908,111125
,1,12909,111130
,1,12910,111135
,1,12911,111140
,1,12912,111145
,1,12913,111150
,1,12914,111155
,1,12915,111160
,1,12916,111165
,1,12917,111170
,1,12918,111175
,1,12919,111180
,1,12920,111185
,1,12921,111190
,1,12922,111195
,1,12923,111200
,1,12924,111205
,1,12925,111210
,1,12926,111215
,1,12927,111220
,1,12928,111225
,1,12929,111230
,1,12930,111235
,1,12931,111240
,1,12932,111245
,1,12933,111250
,1,12934,111255
,1,12935,111260
,1,12936,111265
,1,12937,111270
,1,12938,111275
,1,12939,111280
,1,12940,111285
,1,12941,111290
,1,12942,111295
,1,12943,111300
,1,12944,111305
,1,12945,111310
,1,12946,111315
,1,12947,111320
,1,12948,111325
,1,12949,111330
,1,12950,111335
,1,12951,111340
,1,12952,111345
,1,12953,111350
,1,12954,111355
,1,12955,111360
,1,12956,111365
,1,12957,111370
,1,12958,111375
,1,12959,111380
,1,12960,111385
,1,12961,111390
,1,12962,111395
,1,12963,111400
,1,12964,111405
,1,12965,111410
,1,12966,111415
,1,12967,111420
,1,12968,111425
,1,12969,111430
,1,12970,111435
,1,12971,111440
,1,12972,111445
,1,12973,111450
,1,12974,111455
,1,12975,111460
,1,12976,111465
,1,12977,111470
,1,12978,111475
,1,12979,111480
,1,12980,111485
,1,12981,111490
,1,12982,111495
,1,12983,111500
,1,12984,111505
,1,12985,111510
,1,12986,111515
,1,12987,111520
,1,12988,111525
,1,12989,111530
,1,12990,111535
,1,12991,111540
,1,12992,111545
,1,12993,111550
,1,12994,111555
,1,12995,111560
,1,12996,111565
,1,12997,111570
,1,12998,111575
,1,12999,111580
,1,13000,111585
,1,13001,111590
,1,13002,111595
,1,13003,111600
,1,13004,111605
,1,13005,111610
,1,13006,111615
,1,13007,111620
,1,13008,111625
,1,13009,111630
,1,13010,111635
,1,13011,111640
,1,13012,111645
,1,13013,111650
,1,13014,111655
,1,13015,111660
,1,13016,111665
,1,13017,111670
,1,13018,111675
,1,13019,111680
,1,13020,111685
,1,13021,111690
,1,13022,111695
,1,13023,111700
,1,13024,111705
,1,13025,111710
,1,13026,111715
,1,13027,111720
,1,13028,111725
,1,13029,111730
,1,13030,111735
,1,13031,111740
,1,13032,111745
,1,13033,111750
,1,13034,111755
,1,13035,111760
,1,13036,111765
,1,13037,111770
,1,13038,111775
,1,13039,111780
,1,13040,111785
,1,13041,111790
,1,13042,111795
,1,13043,111800
,1,13044,111805
,1,13045,111810
,1,13046,111815
,1,13047,111820
,1,13048,111825
,1,13049,111830
,1,13050,111835
,1,13051,111840
,1,13052,111845
,1,13053,111850
,1,13054,111855
,1,13055,111860
,1,13056,111865
,1,13057,111870
,1,13058,111875
,1,13059,111880
,1,13060,111885
,1,13061,111890
,1,13062,111895
,1,13063,111900
,1,13064,111905
,1,13065,111910
,1,13066,111915
,1,13067,111920
,1,13068,111925
,1,13069,111930
,1,13070,111935
,1,13071,111940
,1,13072,111945
,1,13073,111950
,1,13074,111955
,1,13075,111960
,1,13076,111965
,1,13077,111970
,1,13078,111975
,1,13079,111980
,1,13080,111985
,1,13081,111990
,1,13082,111995
,1,13083,112000
,1,13084,112005
,1,13085,112010
,1,13086,112015
,1,13087,112020
,1,13088,112025
,1,13089,112030
,1,13090,112035
,1,13091,112040
,1,13092,112045
,1,13093,112050
,1,13094,112055
,1,13095,112060
,1,13096,112065
,1,13097,112070
,1,13098,112075
,1,13099,112080
,1,13100,112085
,1,13101,112090
,1,13102,112095
,1,13103,112100
,1,13104,112105
,1,13105,112110
,1,13106,112115
,1,13107,112120
,1,13108,112125
,1,13109,112130
,1,13110,112135
,1,13111,112140
,1,13112,112145
,1,13113,112150
,1,13114,112155
,1,13115,112160
,1,13116,112165
,1,13117,112170
,1,13118,112175
,1,13119,112180
,1,13120,112185
,1,13121,112190
,1,13122,112195
,1,13123,112200
,1,13124,112205
,1,13125,112210
,1,13126,112215
,1,13127,112220
,1,13128,112225
,1,13129,112230
,1,13130,112235
,1,13131,112240
,1,13132,112245
,1,13133,112250
,1,13134,112255
,1,13135,112260
,1,13136,112265
,1,13137,112270
,1,13138,112275
,1,13139,112280
,1,13140,112285
,1,13141,112290
,1,13142,112295
,1,13143,112300
,1,13144,112305
,1,13145,112310
,1,13146,112315
,1,13147,112320
,1,13148,112325
,1,13149,112330
,1,13150,112335
,1,13151,112340
,1,13152,112345
,1,13153,112350
,1,13154,112355
,1,13155,112360
,1,13156,112365
,1,13157,112370
,1,13158,112375
,1,13159,112380
,1,13160,112385
,1,13161,112390
,1,13162,112395
,1,13163,112400
,1,13164,112405
,1,13165,112410
,1,13166,112415
,1,13167,112420
,1,13168,112425
,1,13169,112430
,1,13170,112435
,1,13171,112440
,1,13172,112445
,1,13173,112450
,1,13174,112455
,1,13175,112460
,1,13176,112465
,1,13177,112470
,1,13178,112475
,1,13179,112480
,1,13180,112485
,1,13181,112490
,1,13182,112495
,1,13183,112500
,1,13184,112505
,1,13185,112510
,1,13186,112515
,1,13187,112520
,1,13188,112525
,1,13189,112530
,1,13190,112535
,1,13191,112540
,1,13192,112545
,1,13193,112550
,1,13194,112555
,1,13195,112560
,1,13196,112565
,1,13197,112570
,1,13198,112575
,1,13199,112580
,1,13200,112585
,1,13201,112590
,1,13202,112595
,1,13203,112600
,1,13204,112605
,1,13205,112610
,1,13206,112615
,1,13207,112620
,1,13208,112625
,1,13209,112630
,1,13210,112635
,1,13211,112640
,1,13212,112645
,1,13213,112650
,1,13214,112655
,1,13215,112660
,1,13216,112665
,1,13217,112670
,1,13218,112675
,1,13219,112680
,1,13220,112685
,1,13221,112690
,1,13222,112695
,1,13223,112700
,1,13224,112705
,1,13225,112710
,1,13226,112715
,1,13227,112720
,1,13228,112725
,1,13229,112730
,1,13230,112735
,1,13231,112740
,1,13232,112745
,1,13233,112750
,1,13234,112755
,1,13235,112760
,1,13236,112765
,1,13237,112770
,1,13238,112775
,1,13239,112780
,1,13240,112785
,1,13241,112790
,1,13242,112795
,1,13243,112800
,1,13244,112805
,1,13245,112810
,1,13246,112815
,1,13247,112820
,1,13248,112825
,1,13249,112830
,1,13250,112835
,1,13251,112840
,1,13252,112845
,1,13253,112850
,1,13254,112855
,1,13255,112860
,1,13256,112865
,1,13257,112870
,1,13258,112875
,1,13259,112880
,1,13260,112885
,1,13261,112890
,1,13262,112895
,1,13263,112900
,1,13264,112905
,1,13265,112910
,1,13266,112915
,1,13267,112920
,1,13268,112925
,1,13269,112930
,1,13270,112935
,1,13271,112940
,1,13272,112945
,1,13273,112950
,1,13274,112955
,1,13275,112960
,1,13276,112965
,1,13277,112970
,1,13278,112975
,1,13279,112980
,1,13280,112985
,1,13281,112990
,1,13282,112995
,1,13283,113000
,1,13284,113005
,1,13285,113010
,1,13286,113015
,1,13287,113020
,1,13288,113025
,1,13289,113030
,1,13290,113035
,1,13291,113040
,1,13292,113045
,1,13293,113050
,1,13294,113055
,1,13295,113060
,1,13296,113065
,1,13297,113070
,1,13298,113075
,1,13299,113080
,1,13300,113085
,1,13301,113090
,1,13302,113095
,1,13303,113100
,1,13304,113105
,1,13305,113110
,1,13306,113115
,1,13307,113120
,1,13308,113125
,1,13309,113130
,1,13310,113135
,1,13311,113140
,1,13312,113145
,1,13313,113150
,1,13314,113155
,1,13315,113160
,1,13316,113165
,1,13317,113170
,1,13318,113175
,1,13319,113180
,1,13320,113185
,1,13321,113190
,1,13322,113195
,1,13323,113200
,1,13324,113205
,1,13325,113210
,1,13326,113215
,1,13327,113220
,1,13328,113225
,1,13329,113230
,1,13330,113235
,1,13331,113240
,1,13332,113245
,1,13333,113250
,1,13334,113255
,1,13335,113260
,1,13336,113265
,1,13337,113270
,1,13338,113275
,1,13339,113280
,1,13340,113285
,1,13341,113290
,1,13342,113295
,1,13343,113300
,1,13344,113305
,1,13345,113310
,1,13346,113315
,1,13347,113320
,1,13348,113325
,1,13349,113330
,1,13350,113335
,1,13351,113340
,1,13352,113345
,1,13353,113350
,1,13354,113355
,1,13355,113360
,1,13356,113365
,1,13357,113370
,1,13358,113375
,1,13359,113380
,1,13360,113385
,1,13361,113390
,1,13362,113395
,1,13363,113400
,1,13364,113405
,1,13365,113410
,1,13366,113415
,1,13367,113420
,1,13368,113425
,1,13369,113430
,1,13370,113435
,1,13371,113440
,1,13372,113445
,1,13373,113450
,1,13374,113455
,1,13375,113460
,1,13376,113465
,1,13377,113470
,1,13378,113475
,1,13379,113480
,1,13380,113485
,1,13381,113490
,1,13382,113495
,1,13383,113500
,1,13384,113505
,1,13385,113510
,1,13386,113515
,1,13387,113520
,1,13388,113525
,1,13389,113530
,1,13390,113535
,1,13391,113540
,1,13392,113545
,1,13393,113550
,1,13394,113555
,1,13395,113560
,1,13396,113565
,1,13397,113570
,1,13398,113575
,1,13399,113580
,1,13400,113585
,1,13401,113590
,1,13402,113595
,1,13403,113600
,1,13404,113605
,1,13405,113610
,1,13406,113615
,1,13407,113620
,1,13408,113625
,1,13409,113630
,1,13410,113635
,1,13411,113640
,1,13412,113645
,1,13413,113650
,1,13414,113655
,1,13415,113660
,1,13416,113665
,1,13417,113670
,1,13418,113675
,1,13419,113680
,1,13420,113685
,1,13421,113690
,1,13422,113695
,1,13423,113700
,1,13424,113705
,1,13425,113710
,1,13426,113715
,1,13427,113720
,1,13428,113725
,1,13429,113730
,1,13430,113735
,1,13431,113740
,1,13432,113745
,1,13433,113750
,1,13434,113755
,1,13435,113760
,1,13436,113765
,1,13437,113770
,1,13438,113775
,1,13439,113780
,1,13440,113785
,1,13441,113790
,1,13442,113795
,1,13443,113800
,1,13444,113805
,1,13445,113810
,1,13446,113815
,1,13447,113820
,1,13448,113825
,1,13449,113830
,1,13450,113835
,1,13451,113840
,1,13452,113845
,1,13453,113850
,1,13454,113855
,1,13455,113860
,1,13456,113865
,1,13457,113870
,1,13458,113875
,1,13459,113880
,1,13460,113885
,1,13461,113890
,1,13462,113895
,1,13463,113900
,1,13464,113905
,1,13465,113910
,1,13466,113915
,1,13467,113920
,1,13468,113925
,1,13469,113930
,1,13470,113935
,1,13471,113940
,1,13472,113945
,1,13473,113950
,1,13474,113955
,1,13475,113960
,1,13476,113965
,1,13477,113970
,1,13478,113975
,1,13479,113980
,1,13480,113985
,1,13481,113990
,1,13482,113995
,1,13483,114000
,1,13484,114005
,1,13485,114010
,1,13486,114015
,1,13487,114020
,1,13488,114025
,1,13489,114030
,1,13490,114035
,1,13491,114040
,1,13492,114045
,1,13493,114050
,1,13494,114055
,1,13495,114060
,1,13496,114065
,1,13497,114070
,1,13498,114075
,1,13499,114080
,1,13500,114085
,1,13501,114090
,1,13502,114095
,1,13503,114100
,1,13504,114105
,1,13505,114110
,1,13506,114115
,1,13507,114120
,1,13508,114125
,1,13509,114130
,1,13510,114135
,1,13511,114140
,1,13512,114145
,1,13513,114150
,1,13514,114155
,1,13515,114160
,1,13516,114165
,1,13517,114170
,1,13518,114175
,1,13519,114180
,1,13520,114185
,1,13521,114190
,1,13522,114195
,1,13523,114200
,1,13524,114205
,1,13525,114210
,1,13526,114215
,1,13527,114220
,1,13528,114225
,1,13529,114230
,1,13530,114235
,1,13531,114240
,1,13532,114245
,1,13533,114250
,1,13534,114255
,1,13535,114260
,1,13536,114265
,1,13537,114270
,1,13538,114275
,1,13539,114280
,1,13540,114285
,1,13541,114290
,1,13542,114295
,1,13543,114300
,1,13544,114305
,1,13545,114310
,1,13546,114315
,1,13547,114320
,1,13548,114325
,1,13549,114330
,1,13550,114335
,1,13551,114340
,1,13552,114345
,1,13553,114350
,1,13554,114355
,1,13555,114360
,1,13556,114365
,1,13557,114370
,1,13558,114375
,1,13559,114380
,1,13560,114385
,1,13561,114390
,1,13562,114395
,1,13563,114400
,1,13564,114405
,1,13565,114410
,1,13566,114415
,1,13567,114420
,1,13568,114425
,1,13569,114430
,1,13570,114435
,1,13571,114440
,1,13572,114445
,1,13573,114450
,1,13574,114455
,1,13575,114460
,1,13576,114465
,1,13577,114470
,1,13578,114475
,1,13579,114480
,1,13580,114485
,1,13581,114490
,1,13582,114495
,1,13583,114500
,1,13584,114505
,1,13585,114510
,1,13586,114515
,1,13587,114520
,1,13588,114525
,1,13589,114530
,1,13590,114535
,1,13591,114540
,1,13592,114545
,1,13593,114550
,1,13594,114555
,1,13595,114560
,1,13596,114565
,1,13597,114570
,1,13598,114575
,1,13599,114580
,1,13600,114585
,1,13601,114590
,1,13602,114595
,1,13603,114600
,1,13604,114605
,1,13605,114610
,1,13606,114615
,1,13607,114620
,1,13608,114625
,1,13609,114630
,1,13610,114635
,1,13611,114640
,1,13612,114645
,1,13613,114650
,1,13614,114655
,1,13615,114660
,1,13616,114665
,1,13617,114670
,1,13618,114675
,1,13619,114680
,1,13620,114685
,1,13621,114690
,1,13622,114695
,1,13623,114700
,1,13624,114705
,1,13625,114710
,1,13626,114715
,1,13627,114720
,1,13628,114725
,1,13629,114730
,1,13630,114735
,1,13631,114740
,1,13632,114745
,1,13633,114750
,1,13634,114755
,1,13635,114760
,1,13636,114765
,1,13637,114770
,1,13638,114775
,1,13639,114780
,1,13640,114785
,1,13641,114790
,1,13642,114795
,1,13643,114800
,1,13644,114805
,1,13645,114810
,1,13646,114815
,1,13647,114820
,1,13648,114825
,1,13649,114830
,1,13650,114835
,1,13651,114840
,1,13652,114845
,1,13653,114850
,1,13654,114855
,1,13655,114860
,1,13656,114865
,1,13657,114870
,1,13658,114875
,1,13659,114880
,1,13660,114885
,1,13661,114890
,1,13662,114895
,1,13663,114900
,1,13664,114905
,1,13665,114910
,1,13666,114915
,1,13667,114920
,1,13668,114925
,1,13669,114930
,1,13670,114935
,1,13671,114940
,1,13672,114945
,1,13673,114950
,1,13674,114955
,1,13675,114960
,1,13676,114965
,1,13677,114970
,1,13678,114975
,1,13679,114980
,1,13680,114985
,1,13681,114990
,1,13682,114995
,1,13683,115000
,1,13684,115005
,1,13685,115010
,1,13686,115015
,1,13687,115020
,1,13688,115025
,1,13689,115030
,1,13690,115035
,1,13691,115040
,1,13692,115045
,1,13693,115050
,1,13694,115055
,1,13695,115060
,1,13696,115065
,1,13697,115070
,1,13698,115075
,1,13699,115080
,1,13700,115085
,1,13701,115090
,1,13702,115095
,1,13703,115100
,1,13704,115105
,1,13705,115110
,1,13706,115115
,1,13707,115120
,1,13708,115125
,1,13709,115130
,1,13710,115135
,1,13711,115140
,1,13712,115145
,1,13713,115150
,1,13714,115155
,1,13715,115160
,1,13716,115165
,1,13717,115170
,1,13718,115175
,1,13719,115180
,1,13720,115185
,1,13721,115190
,1,13722,115195
,1,13723,115200
,1,13724,115205
,1,13725,115210
,1,13726,115215
,1,13727,115220
,1,13728,115225
,1,13729,115230
,1,13730,115235
,1,13731,115240
,1,13732,115245
,1,13733,115250
,1,13734,115255
,1,13735,115260
,1,13736,115265
,1,13737,115270
,1,13738,115275
,1,13739,115280
,1,13740,115285
,1,13741,115290
,1,13742,115295
,1,13743,115300
,1,13744,115305
,1,13745,115310
,1,13746,115315
,1,13747,115320
,1,13748,115325
,1,13749,115330
,1,13750,115335
,1,13751,115340
,1,13752,115345
,1,13753,115350
,1,13754,115355
,1,13755,115360
,1,13756,115365
,1,13757,115370
,1,13758,115375
,1,13759,115380
,1,13760,115385
,1,13761,115390
,1,13762,115395
,1,13763,115400
,1,13764,115405
,1,13765,115410
,1,13766,115415
,1,13767,115420
,1,13768,115425
,1,13769,115430
,1,13770,115435
,1,13771,115440
,1,13772,115445
,1,13773,115450
,1,13774,115455
,1,13775,115460
,1,13776,115465
,1,13777,115470
,1,13778,115475
,1,13779,115480
,1,13780,115485
,1,13781,115490
,1,13782,115495
,1,13783,115500
,1,13784,115505
,1,13785,115510
,1,13786,115515
,1,13787,115520
,1,13788,115525
,1,13789,115530
,1,13790,115535
,1,13791,115540
,1,13792,115545
,1,13793,115550
,1,13794,115555
,1,13795,115560
,1,13796,115565
,1,13797,115570
,1,13798,115575
,1,13799,115580
,1,13800,115585
,1,13801,115590
,1,13802,115595
,1,13803,115600
,1,13804,115605
,1,13805,115610
,1,13806,115615
,1,13807,115620
,1,13808,115625
,1,13809,115630
,1,13810,115635
,1,13811,115640
,1,13812,115645
,1,13813,115650
,1,13814,115655
,1,13815,115660
,1,13816,115665
,1,13817,115670
,1,13818,115675
,1,13819,115680
,1,13820,115685
,1,13821,115690
,1,13822,115695
,1,13823,115700
,1,13824,115705
,1,13825,115710
,1,13826,115715
,1,13827,115720
,1,13828,115725
,1,13829,115730
,1,13830,115735
,1,13831,115740
,1,13832,115745
,1,13833,115750
,1,13834,115755
,1,13835,115760
,1,13836,115765
,1,13837,115770
,1,13838,115775
,1,13839,115780
,1,13840,115785
,1,13841,115790
,1,13842,115795
,1,13843,115800
,1,13844,115805
,1,13845,115810
,1,13846,115815
,1,13847,115820
,1,13848,115825
,1,13849,115830
,1,13850,115835
,1,13851,115840
,1,13852,115845
,1,13853,115850
,1,13854,115855
,1,13855,115860
,1,13856,115865
,1,13857,115870
,1,13858,115875
,1,13859,115880
,1,13860,115885
,1,13861,115890
,1,13862,115895
,1,13863,115900
,1,13864,115905
,1,13865,115910
,1,13866,115915
,1,13867,115920
,1,13868,115925
,1,13869,115930
,1,13870,115935
,1,13871,115940
,1,13872,115945
,1,13873,115950
,1,13874,115955
,1,13875,115960
,1,13876,115965
,1,13877,115970
,1,13878,115975
,1,13879,115980
,1,13880,115985
,1,13881,115990
,1,13882,115995
,1,13883,116000
,1,13884,116005
,1,13885,116010
,1,13886,116015
,1,13887,116020
,1,13888,116025
,1,13889,116030
,1,13890,116035
,1,13891,116040
,1,13892,116045
,1,13893,116050
,1,13894,116055
,1,13895,116060
,1,13896,116065
,1,13897,116070
,1,13898,116075
,1,13899,116080
,1,13900,116085
,1,13901,116090
,1,13902,116095
,1,13903,116100
,1,13904,116105
,1,13905,116110
,1,13906,116115
,1,13907,116120
,1,13908,116125
,1,13909,116130
,1,13910,116135
,1,13911,116140
,1,13912,116145
,1,13913,116150
,1,13914,116155
,1,13915,116160
,1,13916,116165
,1,13917,116170
,1,13918,116175
,1,13919,116180
,1,13920,116185
,1,13921,116190
,1,13922,116195
,1,13923,116200
,1,13924,116205
,1,13925,116210
,1,13926,116215
,1,13927,116220
,1,13928,116225
,1,13929,116230
,1,13930,116235
,1,13931,116240
,1,13932,116245
,1,13933,116250
,1,13934,116255
,1,13935,116260
,1,13936,116265
,1,13937,116270
,1,13938,116275
,1,13939,116280
,1,13940,116285
,1,13941,116290
,1,13942,116295
,1,13943,116300
,1,13944,116305
,1,13945,116310
,1,13946,116315
,1,13947,116320
,1,13948,116325
,1,13949,116330
,1,13950,116335
,1,13951,116340
,1,13952,116345
,1,13953,116350
,1,13954,116355
,1,13955,116360
,1,13956,116365
,1,13957,116370
,1,13958,116375
,1,13959,116380
,1,13960,116385
,1,13961,116390
,1,13962,116395
,1,13963,116400
,1,13964,116405
,1,13965,116410
,1,13966,116415
,1,13967,116420
,1,13968,116425
,1,13969,116430
,1,13970,116435
,1,13971,116440
,1,13972,116445
,1,13973,116450
,1,13974,116455
,1,13975,116460
,1,13976,116465
,1,13977,116470
,1,13978,116475
,1,13979,116480
,1,13980,116485
,1,13981,116490
,1,13982,116495
,1,13983,116500
,1,13984,116505
,1,13985,116510
,1,13986,116515
,1,13987,116520
,1,13988,116525
,1,13989,116530
,1,13990,116535
,1,13991,116540
,1,13992,116545
,1,13993,116550
,1,13994,116555
,1,13995,116560
,1,13996,116565
,1,13997,116570
,1,13998,116575
,1,13999,116580
,1,14000,116585
,1,14001,116590
,1,14002,116595
,1,14003,116600
,1,14004,116605
,1,14005,116610
,1,14006,116615
,1,14007,116620
,1,14008,116625
,1,14009,116630
,1,14010,116635
,1,14011,116640
,1,14012,116645
,1,14013,116650
,1,14014,116655
,1,14015,116660
,1,14016,116665
,1,14017,116670
,1,14018,116675
,1,14019,116680
,1,14020,116685
,1,14021,116690
,1,14022,116695
,1,14023,116700
,1,14024,116705
,1,14025,116710
,1,14026,116715
,1,14027,116720
,1,14028,116725
,1,14029,116730
,1,14030,116735
,1,14031,116740
,1,14032,116745
,1,14033,116750
,1,14034,116755
,1,14035,116760
,1,14036,116765
,1,14037,116770
,1,14038,116775
,1,14039,116780
,1,14040,116785
,1,14041,116790
,1,14042,116795
,1,14043,116800
,1,14044,116805
,1,14045,116810
,1,14046,116815
,1,14047,116820
,1,14048,116825
,1,14049,116830
,1,14050,116835
,1,14051,116840
,1,14052,116845
,1,14053,116850
,1,14054,116855
,1,14055,116860
,1,14056,116865
,1,14057,116870
,1,14058,116875
,1,14059,116880
,1,14060,116885
,1,14061,116890
,1,14062,116895
,1,14063,116900
,1,14064,116905
,1,14065,116910
,1,14066,116915
,1,14067,116920
,1,14068,116925
,1,14069,116930
,1,14070,116935
,1,14071,116940
,1,14072,116945
,1,14073,116950
,1,14074,116955
,1,14075,116960
,1,14076,116965
,1,14077,116970
,1,14078,116975
,1,14079,116980
,1,14080,116985
,1,14081,116990
,1,14082,116995
,1,14083,117000
,1,14084,117005
,1,14085,117010
,1,14086,117015
,1,14087,117020
,1,14088,117025
,1,14089,117030
,1,14090,117035
,1,14091,117040
,1,14092,117045
,1,14093,117050
,1,14094,117055
,1,14095,117060
,1,14096,117065
,1,14097,117070
,1,14098,117075
,1,14099,117080
,1,14100,117085
,1,14101,117090
,1,14102,117095
,1,14103,117100
,1,14104,117105
,1,14105,117110
,1,14106,117115
,1,14107,117120
,1,14108,117125
,1,14109,117130
,1,14110,117135
,1,14111,117140
,1,14112,117145
,1,14113,117150
,1,14114,117155
,1,14115,117160
,1,14116,117165
,1,14117,117170
,1,14118,117175
,1,14119,117180
,1,14120,117185
,1,14121,117190
,1,14122,117195
,1,14123,117200
,1,14124,117205
,1,14125,117210
,1,14126,117215
,1,14127,117220
,1,14128,117225
,1,14129,117230
,1,14130,117235
,1,14131,117240
,1,14132,117245
,1,14133,117250
,1,14134,117255
,1,14135,117260
,1,14136,117265
,1,14137,117270
,1,14138,117275
,1,14139,117280
,1,14140,117285
,1,14141,117290
,1,14142,117295
,1,14143,117300
,1,14144,117305
,1,14145,117310
,1,14146,117315
,1,14147,117320
,1,14148,117325
,1,14149,117330
,1,14150,117335
,1,14151,117340
,1,14152,117345
,1,14153,117350
,1,14154,117355
,1,14155,117360
,1,14156,117365
,1,14157,117370
,1,14158,117375
,1,14159,117380
,1,14160,117385
,1,14161,117390
,1,14162,117395
,1,14163,117400
,1,14164,117405
,1,14165,117410
,1,14166,117415
,1,14167,117420
,1,14168,117425
,1,14169,117430
,1,14170,117435
,1,14171,117440
,1,14172,117445
,1,14173,117450
,1,14174,117455
,1,14175,117460
,1,14176,117465
,1,14177,117470
,1,14178,117475
,1,14179,117480
,1,14180,117485
,1,14181,117490
,1,14182,117495
,1,14183,117500
,1,14184,117505
,1,14185,117510
,1,14186,117515
,1,14187,117520
,1,14188,117525
,1,14189,117530
,1,14190,117535
,1,14191,117540
,1,14192,117545
,1,14193,117550
,1,14194,117555
,1,14195,117560
,1,14196,117565
,1,14197,117570
,1,14198,117575
,1,14199,117580
,1,14200,117585
,1,14201,117590
,1,14202,117595
,1,14203,117600
,1,14204,117605
,1,14205,117610
,1,14206,117615
,1,14207,117620
,1,14208,117625
,1,14209,117630
,1,14210,117635
,1,14211,117640
,1,14212,117645
,1,14213,117650
,1,14214,117655
,1,14215,117660
,1,14216,117665
,1,14217,117670
,1,14218,117675
,1,14219,117680
,1,14220,117685
,1,14221,117690
,1,14222,117695
,1,14223,117700
,1,14224,117705
,1,14225,117710
,1,14226,117715
,1,14227,117720
,1,14228,117725
,1,14229,117730
,1,14230,117735
,1,14231,117740
,1,14232,117745
,1,14233,117750
,1,14234,117755
,1,14235,117760
,1,14236,117765
,1,14237,117770
,1,14238,117775
,1,14239,117780
,1,14240,117785
,1,14241,117790
,1,14242,117795
,1,14243,117800
,1,14244,117805
,1,14245,117810
,1,14246,117815
,1,14247,117820
,1,14248,117825
,1,14249,117830
,1,14250,117835
,1,14251,117840
,1,14252,117845
,1,14253,117850
,1,14254,117855
,1,14255,117860
,1,14256,117865
,1,14257,117870
,1,14258,117875
,1,14259,117880
,1,14260,117885
,1,14261,117890
,1,14262,117895
,1,14263,117900
,1,14264,117905
,1,14265,117910
,1,14266,117915
,1,14267,117920
,1,14268,117925
,1,14269,117930
,1,14270,117935
,1,14271,117940
,1,14272,117945
,1,14273,117950
,1,14274,117955
,1,14275,117960
,1,14276,117965
,1,14277,117970
,1,14278,117975
,1,14279,117980
,1,14280,117985
,1,14281,117990
,1,14282,117995
,1,14283,118000
,1,14284,118005
,1,14285,118010
,1,14286,118015
,1,14287,118020
,1,14288,118025
,1,14289,118030
,1,14290,118035
,1,14291,118040
,1,14292,118045
,1,14293,118050
,1,14294,118055
,1,14295,118060
,1,14296,118065
,1,14297,118070
,1,14298,118075
,1,14299,118080
,1,14300,118085
,1,14301,118090
,1,14302,118095
,1,14303,118100
,1,14304,118105
,1,14305,118110
,1,14306,118115
,1,14307,118120
,1,14308,118125
,1,14309,118130
,1,14310,118135
,1,14311,118140
,1,14312,118145
,1,14313,118150
,1,14314,118155
,1,14315,118160
,1,14316,118165
,1,14317,118170
,1,14318,118175
,1,14319,118180
,1,14320,118185
,1,14321,118190
,1,14322,118195
,1,14323,118200
,1,14324,118205
,1,14325,118210
,1,14326,118215
,1,14327,118220
,1,14328,118225
,1,14329,118230
,1,14330,118235
,1,14331,118240
,1,14332,118245
,1,14333,118250
,1,14334,118255
,1,14335,118260
,1,14336,118265
,1,14337,118270
,1,14338,118275
,1,14339,118280
,1,14340,118285
,1,14341,118290
,1,14342,118295
,1,14343,118300
,1,14344,118305
,1,14345,118310
,1,14346,118315
,1,14347,118320
,1,14348,118325
,1,14349,118330
,1,14350,118335
,1,14351,118340
,1,14352,118345
,1,14353,118350
,1,14354,118355
,1,14355,118360
,1,14356,118365
,1,14357,118370
,1,14358,118375
,1,14359,118380
,1,14360,118385
,1,14361,118390
,1,14362,118395
,1,14363,118400
,1,14364,118405
,1,14365,118410
,1,14366,118415
,1,14367,118420
,1,14368,118425
,1,14369,118430
,1,14370,118435
,1,14371,118440
,1,14372,118445
,1,14373,118450
,1,14374,118455
,1,14375,118460
,1,14376,118465
,1,14377,118470
,1,14378,118475
,1,14379,118480
,1,14380,118485
,1,14381,118490
,1,14382,118495
,1,14383,118500
,1,14384,118505
,1,14385,118510
,1,14386,118515
,1,14387,118520
,1,14388,118525
,1,14389,118530
,1,14390,118535
,1,14391,118540
,1,14392,118545
,1,14393,118550
,1,14394,118555
,1,14395,118560
,1,14396,118565
,1,14397,118570
,1,14398,118575
,1,14399,118580
,1,14400,118585
,1,14401,118590
,1,14402,118595
,1,14403,118600
,1,14404,118605
,1,14405,118610
,1,14406,118615
,1,14407,118620
,1,14408,118625
,1,14409,118630
,1,14410,118635
,1,14411,118640
,1,14412,118645
,1,14413,118650
,1,14414,118655
,1,14415,118660
,1,14416,118665
,1,14417,118670
,1,14418,118675
,1,14419,118680
,1,14420,118685
,1,14421,118690
,1,14422,118695
,1,14423,118700
,1,14424,118705
,1,14425,118710
,1,14426,118715
,1,14427,118720
,1,14428,118725
,1,14429,118730
,1,14430,118735
,1,14431,118740
,1,14432,118745
,1,14433,118750
,1,14434,118755
,1,14435,118760
,1,14436,118765
,1,14437,118770
,1,14438,118775
,1,14439,118780
,1,14440,118785
,1,14441,118790
,1,14442,118795
,1,14443,118800
,1,14444,118805
,1,14445,118810
,1,14446,118815
,1,14447,118820
,1,14448,118825
,1,14449,118830
,1,14450,118835
,1,14451,118840
,1,14452,118845
,1,14453,118850
,1,14454,118855
,1,14455,118860
,1,14456,118865
,1,14457,118870
,1,14458,118875
,1,14459,118880
,1,14460,118885
,1,14461,118890
,1,14462,118895
,1,14463,118900
,1,14464,118905
,1,14465,118910
,1,14466,118915
,1,14467,118920
,1,14468,118925
,1,14469,118930
,1,14470,118935
,1,14471,118940
,1,14472,118945
,1,14473,118950
,1,14474,118955
,1,14475,118960
,1,14476,118965
,1,14477,118970
,1,14478,118975
,1,14479,118980
,1,14480,118985
,1,14481,118990
,1,14482,118995
,1,14483,119000
,1,14484,119005
,1,14485,119010
,1,14486,119015
,1,14487,119020
,1,14488,119025
,1,14489,119030
,1,14490,119035
,1,14491,119040
,1,14492,119045
,1,14493,119050
,1,14494,119055
,1,14495,119060
,1,14496,119065
,1,14497,119070
,1,14498,119075
,1,14499,119080
,1,14500,119085
,1,14501,119090
,1,14502,119095
,1,14503,119100
,1,14504,119105
,1,14505,119110
,1,14506,119115
,1,14507,119120
,1,14508,119125
,1,14509,119130
,1,14510,119135
,1,14511,119140
,1,14512,119145
,1,14513,119150
,1,14514,119155
,1,14515,119160
,1,14516,119165
,1,14517,119170
,1,14518,119175
,1,14519,119180
,1,14520,119185
,1,14521,119190
,1,14522,119195
,1,14523,119200
,1,14524,119205
,1,14525,119210
,1,14526,119215
,1,14527,119220
,1,14528,119225
,1,14529,119230
,1,14530,119235
,1,14531,119240
,1,14532,119245
,1,14533,119250
,1,14534,119255
,1,14535,119260
,1,14536,119265
,1,14537,119270
,1,14538,119275
,1,14539,119280
,1,14540,119285
,1,14541,119290
,1,14542,119295
,1,14543,119300
,1,14544,119305
,1,14545,119310
,1,14546,119315
,1,14547,119320
,1,14548,119325
,1,14549,119330
,1,14550,119335
,1,14551,119340
,1,14552,119345
,1,14553,119350
,1,14554,119355
,1,14555,119360
,1,14556,119365
,1,14557,119370
,1,14558,119375
,1,14559,119380
,1,14560,119385
,1,14561,119390
,1,14562,119395
,1,14563,119400
,1,14564,119405
,1,14565,119410
,1,14566,119415
,1,14567,119420
,1,14568,119425
,1,14569,119430
,1,14570,119435
,1,14571,119440
,1,14572,119445
,1,14573,119450
,1,14574,119455
,1,14575,119460
,1,14576,119465
,1,14577,119470
,1,14578,119475
,1,14579,119480
,1,14580,119485
,1,14581,119490
,1,14582,119495
,1,14583,119500
,1,14584,119505
,1,14585,119510
,1,14586,119515
,1,14587,119520
,1,14588,119525
,1,14589,119530
,1,14590,119535
,1,14591,119540
,1,14592,119545
,1,14593,119550
,1,14594,119555
,1,14595,119560
,1,14596,119565
,1,14597,119570
,1,14598,119575
,1,14599,119580
,1,14600,119585
,1,14601,119590
,1,14602,119595
,1,14603,119600
,1,14604,119605
,1,14605,119610
,1,14606,119615
,1,14607,119620
,1,14608,119625
,1,14609,119630
,1,14610,119635
,1,14611,119640
,1,14612,119645
,1,14613,119650
,1,14614,119655
,1,14615,119660
,1,14616,119665
,1,14617,119670
,1,14618,119675
,1,14619,119680
,1,14620,119685
,1,14621,119690
,1,14622,119695
,1,14623,119700
,1,14624,119705
,1,14625,119710
,1,14626,119715
,1,14627,119720
,1,14628,119725
,1,14629,119730
,1,14630,119735
,1,14631,119740
,1,14632,119745
,1,14633,119750
,1,14634,119755
,1,14635,119760
,1,14636,119765
,1,14637,119770
,1,14638,119775
,1,14639,119780
,1,14640,119785
,1,14641,119790
,1,14642,119795
,1,14643,119800
,1,14644,119805
,1,14645,119810
,1,14646,119815
,1,14647,119820
,1,14648,119825
,1,14649,119830
,1,14650,119835
,1,14651,119840
,1,14652,119845
,1,14653,119850
,1,14654,119855
,1,14655,119860
,1,14656,119865
,1,14657,119870
,1,14658,119875
,1,14659,119880
,1,14660,119885
,1,14661,119890
,1,14662,119895
,1,14663,119900
,1,14664,119905
,1,14665,119910
,1,14666,119915
,1,14667,119920
,1,14668,119925
,1,14669,119930
,1,14670,119935
,1,14671,119940
,1,14672,119945
,1,14673,119950
,1,14674,119955
,1,14675,119960
,1,14676,119965
,1,14677,119970
,1,14678,119975
,1,14679,119980
,1,14680,119985
,1,14681,119990
,1,14682,119995
,1,14683,120000
,1,14684,120005
,1,14685,120010
,1,14686,120015
,1,14687,120020
,1,14688,120025
,1,14689,120030
,1,14690,120035
,1,14691,120040
,1,14692,120045
,1,14693,120050
,1,14694,120055
,1,14695,120060
,1,14696,120065
,1,14697,120070
,1,14698,120075
,1,14699,120080
,1,14700,120085
,1,14701,120090
,1,14702,120095
,1,14703,120100
,1,14704,120105
,1,14705,120110
,1,14706,120115
,1,14707,120120
,1,14708,120125
,1,14709,120130
,1,14710,120135
,1,14711,120140
,1,14712,120145
,1,14713,120150
,1,14714,120155
,1,14715,120160
,1,14716,120165
,1,14717,120170
,1,14718,120175
,1,14719,120180
,1,14720,120185
,1,14721,120190
,1,14722,120195
,1,14723,120200
,1,14724,120205
,1,14725,120210
,1,14726,120215
,1,14727,120220
,1,14728,120225
,1,14729,120230
,1,14730,120235
,1,14731,120240
,1,14732,120245
,1,14733,120250
,1,14734,120255
,1,14735,120260
,1,14736,120265
,1,14737,120270
,1,14738,120275
,1,14739,120280
,1,14740,120285
,1,14741,120290
,1,14742,120295
,1,14743,120300
,1,14744,120305
,1,14745,120310
,1,14746,120315
,1,14747,120320
,1,14748,120325
,1,14749,120330
,1,14750,120335
,1,14751,120340
,1,14752,120345
,1,14753,120350
,1,14754,120355
,1,14755,120360
,1,14756,120365
,1,14757,120370
,1,14758,120375
,1,14759,120380
,1,14760,120385
,1,14761,120390
,1,14762,120395
,1,14763,120400
,1,14764,120405
,1,14765,120410
,1,14766,120415
,1,14767,120420
,1,14768,120425
,1,14769,120430
,1,14770,120435
,1,14771,120440
,1,14772,120445
,1,14773,120450
,1,14774,120455
,1,14775,120460
,1,14776,120465
,1,14777,120470
,1,14778,120475
,1,14779,120480
,1,14780,120485
,1,14781,120490
,1,14782,120495
,1,14783,120500
,1,14784,120505
,1,14785,120510
,1,14786,120515
,1,14787,120520
,1,14788,120525
,1,14789,120530
,1,14790,120535
,1,14791,120540
,1,14792,120545
,1,14793,120550
,1,14794,120555
,1,14795,120560
,1,14796,120565
,1,14797,120570
,1,14798,120575
,1,14799,120580
,1,14800,120585
,1,14801,120590
,1,14802,120595
,1,14803,120600
,1,14804,120605
,1,14805,120610
,1,14806,120615
,1,14807,120620
,1,14808,120625
,1,14809,120630
,1,14810,120635
,1,14811,120640
,1,14812,120645
,1,14813,120650
,1,14814,120655
,1,14815,120660
,1,14816,120665
,1,14817,120670
,1,14818,120675
,1,14819,120680
,1,14820,120685
,1,14821,120690
,1,14822,120695
,1,14823,120700
,1,14824,120705
,1,14825,120710
,1,14826,120715
,1,14827,120720
,1,14828,120725
,1,14829,120730
,1,14830,120735
,1,14831,120740
,1,14832,120745
,1,14833,120750
,1,14834,120755
,1,14835,120760
,1,14836,120765
,1,14837,120770
,1,14838,120775
,1,14839,120780
,1,14840,120785
,1,14841,120790
,1,14842,120795
,1,14843,120800
,1,14844,120805
,1,14845,120810
,1,14846,120815
,1,14847,120820
,1,14848,120825
,1,14849,120830
,1,14850,120835
,1,14851,120840
,1,14852,120845
,1,14853,120850
,1,14854,120855
,1,14855,120860
,1,14856,120865
,1,14857,120870
,1,14858,120875
,1,14859,120880
,1,14860,120885
,1,14861,120890
,1,14862,120895
,1,14863,120900
,1,14864,120905
,1,14865,120910
,1,14866,120915
,1,14867,120920
,1,14868,120925
,1,14869,120930
,1,14870,120935
,1,14871,120940
,1,14872,120945
,1,14873,120950
,1,14874,120955
,1,14875,120960
,1,14876,120965
,1,14877,120970
,1,14878,120975
,1,14879,120980
,1,14880,120985
,1,14881,120990
,1,14882,120995
,1,14883,121000
,1,14884,121005
,1,14885,121010
,1,14886,121015
,1,14887,121020
,1,14888,121025
,1,14889,121030
,1,14890,121035
,1,14891,121040
,1,14892,121045
,1,14893,121050
,1,14894,121055
,1,14895,121060
,1,14896,121065
,1,14897,121070
,1,14898,121075
,1,14899,121080
,1,14900,121085
,1,14901,121090
,1,14902,121095
,1,14903,121100
,1,14904,121105
,1,14905,121110
,1,14906,121115
,1,14907,121120
,1,14908,121125
,1,14909,121130
,1,14910,121135
,1,14911,121140
,1,14912,121145
,1,14913,121150
,1,14914,121155
,1,14915,121160
,1,14916,121165
,1,14917,121170
,1,14918,121175
,1,14919,121180
,1,14920,121185
,1,14921,121190
,1,14922,121195
,1,14923,121200
,1,14924,121205
,1,14925,121210
,1,14926,121215
,1,14927,121220
,1,14928,121225
,1,14929,121230
,1,14930,121235
,1,14931,121240
,1,14932,121245
,1,14933,121250
,1,14934,121255
,1,14935,121260
,1,14936,121265
,1,14937,121270
,1,14938,121275
,1,14939,121280
,1,14940,121285
,1,14941,121290
,1,14942,121295
,1,14943,121300
,1,14944,121305
,1,14945,121310
,1,14946,121315
,1,14947,121320
,1,14948,121325
,1,14949,121330
,1,14950,121335
,1,14951,121340
,1,14952,121345
,1,14953,121350
,1,14954,121355
,1,14955,121360
,1,14956,121365
,1,14957,121370
,1,14958,121375
,1,14959,121380
,1,14960,121385
,1,14961,121390
,1,14962,121395
,1,14963,121400
,1,14964,121405
,1,14965,121410
,1,14966,121415
,1,14967,121420
,1,14968,121425
,1,14969,121430
,1,14970,121435
,1,14971,121440
,1,14972,121445
,1,14973,121450
,1,14974,121455
,1,14975,121460
,1,14976,121465
,1,14977,121470
,1,14978,121475
,1,14979,121480
,1,14980,121485
,1,14981,121490
,1,14982,121495
,1,14983,121500
,1,14984,121505
,1,14985,121510
,1,14986,121515
,1,14987,121520
,1,14988,121525
,1,14989,121530
,1,14990,121535
,1,14991,121540
,1,14992,121545
,1,14993,121550
,1,14994,121555
,1,14995,121560
,1,14996,121565
,1,14997,121570
,1,14998,121575
,1,14999,121580
,1,15000,121585
,1,15001,121590
,1,15002,121595
,1,15003,121600
,1,15004,121605
,1,15005,121610
,1,15006,121615
,1,15007,121620
,1,15008,121625
,1,15009,121630
,1,15010,121635
,1,15011,121640
,1,15012,121645
,1,15013,121650
,1,15014,121655
,1,15015,121660
,1,15016,121665
,1,15017,121670
,1,15018,121675
,1,15019,121680
,1,15020,121685
,1,15021,121690
,1,15022,121695
,1,15023,121700
,1,15024,121705
,1,15025,121710
,1,15026,121715
,1,15027,121720
,1,15028,121725
,1,15029,121730
,1,15030,121735
,1,15031,121740
,1,15032,121745
,1,15033,121750
,1,15034,121755
,1,15035,121760
,1,15036,121765
,1,15037,121770
,1,15038,121775
,1,15039,121780
,1,15040,121785
,1,15041,121790
,1,15042,121795
,1,15043,121800
,1,15044,121805
,1,15045,121810
,1,15046,121815
,1,15047,121820
,1,15048,121825
,1,15049,121830
,1,15050,121835
,1,15051,121840
,1,15052,121845
,1,15053,121850
,1,15054,121855
,1,15055,121860
,1,15056,121865
,1,15057,121870
,1,15058,121875
,1,15059,121880
,1,15060,121885
,1,15061,121890
,1,15062,121895
,1,15063,121900
,1,15064,121905
,1,15065,121910
,1,15066,121915
,1,15067,121920
,1,15068,121925
,1,15069,121930
,1,15070,121935
,1,15071,121940
,1,15072,121945
,1,15073,121950
,1,15074,121955
,1,15075,121960
,1,15076,121965
,1,15077,121970
,1,15078,121975
,1,15079,121980
,1,15080,121985
,1,15081,121990
,1,15082,121995
,1,15083,122000
,1,15084,122005
,1,15085,122010
,1,15086,122015
,1,15087,122020
,1,15088,122025
,1,15089,122030
,1,15090,122035
,1,15091,122040
,1,15092,122045
,1,15093,122050
,1,15094,122055
,1,15095,122060
,1,15096,122065
,1,15097,122070
,1,15098,122075
,1,15099,122080
,1,15100,122085
,1,15101,122090
,1,15102,122095
,1,15103,122100
,1,15104,122105
,1,15105,122110
,1,15106,122115
,1,15107,122120
,1,15108,122125
,1,15109,122130
,1,15110,122135
,1,15111,122140
,1,15112,122145
,1,15113,122150
,1,15114,122155
,1,15115,122160
,1,15116,122165
,1,15117,122170
,1,15118,122175
,1,15119,122180
,1,15120,122185
,1,15121,122190
,1,15122,122195
,1,15123,122200
,1,15124,122205
,1,15125,122210
,1,15126,122215
,1,15127,122220
,1,15128,122225
,1,15129,122230
,1,15130,122235
,1,15131,122240
,1,15132,122245
,1,15133,122250
,1,15134,122255
,1,15135,122260
,1,15136,122265
,1,15137,122270
,1,15138,122275
,1,15139,122280
,1,15140,122285
,1,15141,122290
,1,15142,122295
,1,15143,122300
,1,15144,122305
,1,15145,122310
,1,15146,122315
,1,15147,122320
,1,15148,122325
,1,15149,122330
,1,15150,122335
,1,15151,122340
,1,15152,122345
,1,15153,122350
,1,15154,122355
,1,15155,122360
,1,15156,122365
,1,15157,122370
,1,15158,122375
,1,15159,122380
,1,15160,122385
,1,15161,122390
,1,15162,122395
,1,15163,122400
,1,15164,122405
,1,15165,122410
,1,15166,122415
,1,15167,122420
,1,15168,122425
,1,15169,122430
,1,15170,122435
,1,15171,122440
,1,15172,122445
,1,15173,122450
,1,15174,122455
,1,15175,122460
,1,15176,122465
,1,15177,122470
,1,15178,122475
,1,15179,122480
,1,15180,122485
,1,15181,122490
,1,15182,122495
,1,15183,122500
,1,15184,122505
,1,15185,122510
,1,15186,122515
,1,15187,122520
,1,15188,122525
,1,15189,122530
,1,15190,122535
,1,15191,122540
,1,15192,122545
,1,15193,122550
,1,15194,122555
,1,15195,122560
,1,15196,122565
,1,15197,122570
,1,15198,122575
,1,15199,122580
,1,15200,122585
,1,15201,122590
,1,15202,122595
,1,15203,122600
,1,15204,122605
,1,15205,122610
,1,15206,122615
,1,15207,122620
,1,15208,122625
,1,15209,122630
,1,15210,122635
,1,15211,122640
,1,15212,122645
,1,15213,122650
,1,15214,122655
,1,15215,122660
,1,15216,122665
,1,15217,122670
,1,15218,122675
,1,15219,122680
,1,15220,122685
,1,15221,122690
,1,15222,122695
,1,15223,122700
,1,15224,122705
,1,15225,122710
,1,15226,122715
,1,15227,122720
,1,15228,122725
,1,15229,122730
,1,15230,122735
,1,15231,122740
,1,15232,122745
,1,15233,122750
,1,15234,122755
,1,15235,122760
,1,15236,122765
,1,15237,122770
,1,15238,122775
,1,15239,122780
,1,15240,122785
,1,15241,122790
,1,15242,122795
,1,15243,122800
,1,15244,122805
,1,15245,122810
,1,15246,122815
,1,15247,122820
,1,15248,122825
,1,15249,122830
,1,15250,122835
,1,15251,122840
,1,15252,122845
,1,15253,122850
,1,15254,122855
,1,15255,122860
,1,15256,122865
,1,15257,122870
,1,15258,122875
,1,15259,122880
,1,15260,122885
,1,15261,122890
,1,15262,122895
,1,15263,122900
,1,15264,122905
,1,15265,122910
,1,15266,122915
,1,15267,122920
,1,15268,122925
,1,15269,122930
,1,15270,122935
,1,15271,122940
,1,15272,122945
,1,15273,122950
,1,15274,122955
,1,15275,122960
,1,15276,122965
,1,15277,122970
,1,15278,122975
,1,15279,122980
,1,15280,122985
,1,15281,122990
,1,15282,122995
,1,15283,123000
,1,15284,123005
,1,15285,123010
,1,15286,123015
,1,15287,123020
,1,15288,123025
,1,15289,123030
,1,15290,123035
,1,15291,123040
,1,15292,123045
,1,15293,123050
,1,15294,123055
,1,15295,123060
,1,15296,123065
,1,15297,123070
,1,15298,123075
,1,15299,123080
,1,15300,123085
,1,15301,123090
,1,15302,123095
,1,15303,123100
,1,15304,123105
,1,15305,123110
,1,15306,123115
,1,15307,123120
,1,15308,123125
,1,15309,123130
,1,15310,123135
,1,15311,123140
,1,15312,123145
,1,15313,123150
,1,15314,123155
,1,15315,123160
,1,15316,123165
,1,15317,123170
,1,15318,123175
,1,15319,123180
,1,15320,123185
,1,15321,123190
,1,15322,123195
,1,15323,123200
,1,15324,123205
,1,15325,123210
,1,15326,123215
,1,15327,123220
,1,15328,123225
,1,15329,123230
,1,15330,123235
,1,15331,123240
,1,15332,123245
,1,15333,123250
,1,15334,123255
,1,15335,123260
,1,15336,123265
,1,15337,123270
,1,15338,123275
,1,15339,123280
,1,15340,123285
,1,15341,123290
,1,15342,123295
,1,15343,123300
,1,15344,123305
,1,15345,123310
,1,15346,123315
,1,15347,123320
,1,15348,123325
,1,15349,123330
,1,15350,123335
,1,15351,123340
,1,15352,123345
,1,15353,123350
,1,15354,123355
,1,15355,123360
,1,15356,123365
,1,15357,123370
,1,15358,123375
,1,15359,123380
,1,15360,123385
,1,15361,123390
,1,15362,123395
,1,15363,123400
,1,15364,123405
,1,15365,123410
,1,15366,123415
,1,15367,123420
,1,15368,123425
,1,15369,123430
,1,15370,123435
,1,15371,123440
,1,15372,123445
,1,15373,123450
,1,15374,123455
,1,15375,123460
,1,15376,123465
,1,15377,123470
,1,15378,123475
,1,15379,123480
,1,15380,123485
,1,15381,123490
,1,15382,123495
,1,15383,123500
,1,15384,123505
,1,15385,123510
,1,15386,123515
,1,15387,123520
,1,15388,123525
,1,15389,123530
,1,15390,123535
,1,15391,123540
,1,15392,123545
,1,15393,123550
,1,15394,123555
,1,15395,123560
,1,15396,123565
,1,15397,123570
,1,15398,123575
,1,15399,123580
,1,15400,123585
,1,15401,123590
,1,15402,123595
,1,15403,123600
,1,15404,123605
,1,15405,123610
,1,15406,123615
,1,15407,123620
,1,15408,123625
,1,15409,123630
,1,15410,123635
,1,15411,123640
,1,15412,123645
,1,15413,123650
,1,15414,123655
,1,15415,123660
,1,15416,123665
,1,15417,123670
,1,15418,123675
,1,15419,123680
,1,15420,123685
,1,15421,123690
,1,15422,123695
,1,15423,123700
,1,15424,123705
,1,15425,123710
,1,15426,123715
,1,15427,123720
,1,15428,123725
,1,15429,123730
,1,15430,123735
,1,15431,123740
,1,15432,123745
,1,15433,123750
,1,15434,123755
,1,15435,123760
,1,15436,123765
,1,15437,123770
,1,15438,123775
,1,15439,123780
,1,15440,123785
,1,15441,123790
,1,15442,123795
,1,15443,123800
,1,15444,123805
,1,15445,123810
,1,15446,123815
,1,15447,123820
,1,15448,123825
,1,15449,123830
,1,15450,123835
,1,15451,123840
,1,15452,123845
,1,15453,123850
,1,15454,123855
,1,15455,123860
,1,15456,123865
,1,15457,123870
,1,15458,123875
,1,15459,123880
,1,15460,123885
,1,15461,123890
,1,15462,123895
,1,15463,123900
,1,15464,123905
,1,15465,123910
,1,15466,123915
,1,15467,123920
,1,15468,123925
,1,15469,123930
,1,15470,123935
,1,15471,123940
,1,15472,123945
,1,15473,123950
,1,15474,123955
,1,15475,123960
,1,15476,123965
,1,15477,123970
,1,15478,123975
,1,15479,123980
,1,15480,123985
,1,15481,123990
,1,15482,123995
,1,15483,124000
,1,15484,124005
,1,15485,124010
,1,15486,124015
,1,15487,124020
,1,15488,124025
,1,15489,124030
,1,15490,124035
,1,15491,124040
,1,15492,124045
,1,15493,124050
,1,15494,124055
,1,15495,124060
,1,15496,124065
,1,15497,124070
,1,15498,124075
,1,15499,124080
,1,15500,124085
,1,15501,124090
,1,15502,124095
,1,15503,124100
,1,15504,124105
,1,15505,124110
,1,15506,124115
,1,15507,124120
,1,15508,124125
,1,15509,124130
,1,15510,124135
,1,15511,124140
,1,15512,124145
,1,15513,124150
,1,15514,124155
,1,15515,124160
,1,15516,124165
,1,15517,124170
,1,15518,124175
,1,15519,124180
,1,15520,124185
,1,15521,124190
,1,15522,124195
,1,15523,124200
,1,15524,124205
,1,15525,124210
,1,15526,124215
,1,15527,124220
,1,15528,124225
,1,15529,124230
,1,15530,124235
,1,15531,124240
,1,15532,124245
,1,15533,124250
,1,15534,124255
,1,15535,124260
,1,15536,124265
,1,15537,124270
,1,15538,124275
,1,15539,124280
,1,15540,124285
,1,15541,124290
,1,15542,124295
,1,15543,124300
,1,15544,124305
,1,15545,124310
,1,15546,124315
,1,15547,124320
,1,15548,124325
,1,15549,124330
,1,15550,124335
,1,15551,124340
,1,15552,124345
,1,15553,124350
,1,15554,124355
,1,15555,124360
,1,15556,124365
,1,15557,124370
,1,15558,124375
,1,15559,124380
,1,15560,124385
,1,15561,124390
,1,15562,124395
,1,15563,124400
,1,15564,124405
,1,15565,124410
,1,15566,124415
,1,15567,124420
,1,15568,124425
,1,15569,124430
,1,15570,124435
,1,15571,124440
,1,15572,124445
,1,15573,124450
,1,15574,124455
,1,15575,124460
,1,15576,124465
,1,15577,124470
,1,15578,124475
,1,15579,124480
,1,15580,124485
,1,15581,124490
,1,15582,124495
,1,15583,124500
,1,15584,124505
,1,15585,124510
,1,15586,124515
,1,15587,124520
,1,15588,124525
,1,15589,124530
,1,15590,124535
,1,15591,124540
,1,15592,124545
,1,15593,124550
,1,15594,124555
,1,15595,124560
,1,15596,124565
,1,15597,124570
,1,15598,124575
,1,15599,124580
,1,15600,124585
,1,15601,124590
,1,15602,124595
,1,15603,124600
,1,15604,124605
,1,15605,124610
,1,15606,124615
,1,15607,124620
,1,15608,124625
,1,15609,124630
,1,15610,124635
,1,15611,124640
,1,15612,124645
,1,15613,124650
,1,15614,124655
,1,15615,124660
,1,15616,124665
,1,15617,124670
,1,15618,124675
,1,15619,124680
,1,15620,124685
,1,15621,124690
,1,15622,124695
,1,15623,124700
,1,15624,124705
,1,15625,124710
,1,15626,124715
,1,15627,124720
,1,15628,124725
,1,15629,124730
,1,15630,124735
,1,15631,124740
,1,15632,124745
,1,15633,124750
,1,15634,124755
,1,15635,124760
,1,15636,124765
,1,15637,124770
,1,15638,124775
,1,15639,124780
,1,15640,124785
,1,15641,124790
,1,15642,124795
,1,15643,124800
,1,15644,124805
,1,15645,124810
,1,15646,124815
,1,15647,124820
,1,15648,124825
,1,15649,124830
,1,15650,124835
,1,15651,124840
,1,15652,124845
,1,15653,124850
,1,15654,124855
,1,15655,124860
,1,15656,124865
,1,15657,124870
,1,15658,124875
,1,15659,124880
,1,15660,124885
,1,15661,124890
,1,15662,124895
,1,15663,124900
,1,15664,124905
,1,15665,124910
,1,15666,124915
,1,15667,124920
,1,15668,124925
,1,15669,124930
,1,15670,124935
,1,15671,124940
,1,15672,124945
,1,15673,124950
,1,15674,124955
,1,15675,124960
,1,15676,124965
,1,15677,124970
,1,15678,124975
,1,15679,124980
,1,15680,124985
,1,15681,124990
,1,15682,124995
,1,15683,125000
,1,15684,125005
,1,15685,125010
,1,15686,125015
,1,15687,125020
,1,15688,125025
,1,15689,125030
,1,15690,125035
,1,15691,125040
,1,15692,125045
,1,15693,125050
,1,15694,125055
,1,15695,125060
,1,15696,125065
,1,15697,125070
,1,15698,125075
,1,15699,125080
,1,15700,125085
,1,15701,125090
,1,15702,125095
,1,15703,125100
,1,15704,125105
,1,15705,125110
,1,15706,125115
,1,15707,125120
,1,15708,125125
,1,15709,125130
,1,15710,125135
,1,15711,125140
,1,15712,125145
,1,15713,125150
,1,15714,125155
,1,15715,125160
,1,15716,125165
,1,15717,125170
,1,15718,125175
,1,15719,125180
,1,15720,125185
,1,15721,125190
,1,15722,125195
,1,15723,125200
,1,15724,125205
,1,15725,125210
,1,15726,125215
,1,15727,125220
,1,15728,125225
,1,15729,125230
,1,15730,125235
,1,15731,125240
,1,15732,125245
,1,15733,125250
,1,15734,125255
,1,15735,125260
,1,15736,125265
,1,15737,125270
,1,15738,125275
,1,15739,125280
,1,15740,125285
,1,15741,125290
,1,15742,125295
,1,15743,125300
,1,15744,125305
,1,15745,125310
,1,15746,125315
,1,15747,125320
,1,15748,125325
,1,15749,125330
,1,15750,125335
,1,15751,125340
,1,15752,125345
,1,15753,125350
,1,15754,125355
,1,15755,125360
,1,15756,125365
,1,15757,125370
,1,15758,125375
,1,15759,125380
,1,15760,125385
,1,15761,125390
,1,15762,125395
,1,15763,125400
,1,15764,125405
,1,15765,125410
,1,15766,125415
,1,15767,125420
,1,15768,125425
,1,15769,125430
,1,15770,125435
,1,15771,125440
,1,15772,125445
,1,15773,125450
,1,15774,125455
,1,15775,125460
,1,15776,125465
,1,15777,125470
,1,15778,125475
,1,15779,125480
,1,15780,125485
,1,15781,125490
,1,15782,125495
,1,15783,125500
,1,15784,125505
,1,15785,125510
,1,15786,125515
,1,15787,125520
,1,15788,125525
,1,15789,125530
,1,15790,125535
,1,15791,125540
,1,15792,125545
,1,15793,125550
,1,15794,125555
,1,15795,125560
,1,15796,125565
,1,15797,125570
,1,15798,125575
,1,15799,125580
,1,15800,125585
,1,15801,125590
,1,15802,125595
,1,15803,125600
,1,15804,125605
,1,15805,125610
,1,15806,125615
,1,15807,125620
,1,15808,125625
,1,15809,125630
,1,15810,125635
,1,15811,125640
,1,15812,125645
,1,15813,125650
,1,15814,125655
,1,15815,125660
,1,15816,125665
,1,15817,125670
,1,15818,125675
,1,15819,125680
,1,15820,125685
,1,15821,125690
,1,15822,125695
,1,15823,125700
,1,15824,125705
,1,15825,125710
,1,15826,125715
,1,15827,125720
,1,15828,125725
,1,15829,125730
,1,15830,125735
,1,15831,125740
,1,15832,125745
,1,15833,125750
,1,15834,125755
,1,15835,125760
,1,15836,125765
,1,15837,125770
,1,15838,125775
,1,15839,125780
,1,15840,125785
,1,15841,125790
,1,15842,125795
,1,15843,125800
,1,15844,125805
,1,15845,125810
,1,15846,125815
,1,15847,125820
,1,15848,125825
,1,15849,125830
,1,15850,125835
,1,15851,125840
,1,15852,125845
,1,15853,125850
,1,15854,125855
,1,15855,125860
,1,15856,125865
,1,15857,125870
,1,15858,125875
,1,15859,125880
,1,15860,125885
,1,15861,125890
,1,15862,125895
,1,15863,125900
,1,15864,125905
,1,15865,125910
,1,15866,125915
,1,15867,125920
,1,15868,125925
,1,15869,125930
,1,15870,125935
,1,15871,125940
,1,15872,125945
,1,15873,125950
,1,15874,125955
,1,15875,125960
,1,15876,125965
,1,15877,125970
,1,15878,125975
,1,15879,125980
,1,15880,125985
,1,15881,125990
,1,15882,125995
,1,15883,126000
,1,15884,126005
,1,15885,126010
,1,15886,126015
,1,15887,126020
,1,15888,126025
,1,15889,126030
,1,15890,126035
,1,15891,126040
,1,15892,126045
,1,15893,126050
,1,15894,126055
,1,15895,126060
,1,15896,126065
,1,15897,126070
,1,15898,126075
,1,15899,126080
,1,15900,126085
,1,15901,126090
,1,15902,126095
,1,15903,126100
,1,15904,126105
,1,15905,126110
,1,15906,126115
,1,15907,126120
,1,15908,126125
,1,15909,126130
,1,15910,126135
,1,15911,126140
,1,15912,126145
,1,15913,126150
,1,15914,126155
,1,15915,126160
,1,15916,126165
,1,15917,126170
,1,15918,126175
,1,15919,126180
,1,15920,126185
,1,15921,126190
,1,15922,126195
,1,15923,126200
,1,15924,126205
,1,15925,126210
,1,15926,126215
,1,15927,126220
,1,15928,126225
,1,15929,126230
,1,15930,126235
,1,15931,126240
,1,15932,126245
,1,15933,126250
,1,15934,126255
,1,15935,126260
,1,15936,126265
,1,15937,126270
,1,15938,126275
,1,15939,126280
,1,15940,126285
,1,15941,126290
,1,15942,126295
,1,15943,126300
,1,15944,126305
,1,15945,126310
,1,15946,126315
,1,15947,126320
,1,15948,126325
,1,15949,126330
,1,15950,126335
,1,15951,126340
,1,15952,126345
,1,15953,126350
,1,15954,126355
,1,15955,126360
,1,15956,126365
,1,15957,126370
,1,15958,126375
,1,15959,126380
,1,15960,126385
,1,15961,126390
,1,15962,126395
,1,15963,126400
,1,15964,126405
,1,15965,126410
,1,15966,126415
,1,15967,126420
,1,15968,126425
,1,15969,126430
,1,15970,126435
,1,15971,126440
,1,15972,126445
,1,15973,126450
,1,15974,126455
,1,15975,126460
,1,15976,126465
,1,15977,126470
,1,15978,126475
,1,15979,126480
,1,15980,126485
,1,15981,126490
,1,15982,126495
,1,15983,126500
,1,15984,126505
,1,15985,126510
,1,15986,126515
,1,15987,126520
,1,15988,126525
,1,15989,126530
,1,15990,126535
,1,15991,126540
,1,15992,126545
,1,15993,126550
,1,15994,126555
,1,15995,126560
,1,15996,126565
,1,15997,126570
,1,15998,126575
,1,15999,126580
,1,16000,126585
,1,16001,126590
,1,16002,126595
,1,16003,126600
,1,16004,126605
,1,16005,126610
,1,16006,126615
,1,16007,126620
,1,16008,126625
,1,16009,126630
,1,16010,126635
,1,16011,126640
,1,16012,126645
,1,16013,126650
,1,16014,126655
,1,16015,126660
,1,16016,126665
,1,16017,126670
,1,16018,126675
,1,16019,126680
,1,16020,126685
,1,16021,126690
,1,16022,126695
,1,16023,126700
,1,16024,126705
,1,16025,126710
,1,16026,126715
,1,16027,126720
,1,16028,126725
,1,16029,126730
,1,16030,126735
,1,16031,126740
,1,16032,126745
,1,16033,126750
,1,16034,126755
,1,16035,126760
,1,16036,126765
,1,16037,126770
,1,16038,126775
,1,16039,126780
,1,16040,126785
,1,16041,126790
,1,16042,126795
,1,16043,126800
,1,16044,126805
,1,16045,126810
,1,16046,126815
,1,16047,126820
,1,16048,126825
,1,16049,126830
,1,16050,126835
,1,16051,126840
,1,16052,126845
,1,16053,126850
,1,16054,126855
,1,16055,126860
,1,16056,126865
,1,16057,126870
,1,16058,126875
,1,16059,126880
,1,16060,126885
,1,16061,126890
,1,16062,126895
,1,16063,126900
,1,16064,126905
,1,16065,126910
,1,16066,126915
,1,16067,126920
,1,16068,126925
,1,16069,126930
,1,16070,126935
,1,16071,126940
,1,16072,126945
,1,16073,126950
,1,16074,126955
,1,16075,126960
,1,16076,126965
,1,16077,126970
,1,16078,126975
,1,16079,126980
,1,16080,126985
,1,16081,126990
,1,16082,126995
,1,16083,127000
,1,16084,127005
,1,16085,127010
,1,16086,127015
,1,16087,127020
,1,16088,127025
,1,16089,127030
,1,16090,127035
,1,16091,127040
,1,16092,127045
,1,16093,127050
,1,16094,127055
,1,16095,127060
,1,16096,127065
,1,16097,127070
,1,16098,127075
,1,16099,127080
,1,16100,127085
,1,16101,127090
,1,16102,127095
,1,16103,127100
,1,16104,127105
,1,16105,127110
,1,16106,127115
,1,16107,127120
,1,16108,127125
,1,16109,127130
,1,16110,127135
,1,16111,127140
,1,16112,127145
,1,16113,127150
,1,16114,127155
,1,16115,127160
,1,16116,127165
,1,16117,127170
,1,16118,127175
,1,16119,127180
,1,16120,127185
,1,16121,127190
,1,16122,127195
,1,16123,127200
,1,16124,127205
,1,16125,127210
,1,16126,127215
,1,16127,127220
,1,16128,127225
,1,16129,127230
,1,16130,127235
,1,16131,127240
,1,16132,127245
,1,16133,127250
,1,16134,127255
,1,16135,127260
,1,16136,127265
,1,16137,127270
,1,16138,127275
,1,16139,127280
,1,16140,127285
,1,16141,127290
,1,16142,127295
,1,16143,127300
,1,16144,127305
,1,16145,127310
,1,16146,127315
,1,16147,127320
,1,16148,127325
,1,16149,127330
,1,16150,127335
,1,16151,127340
,1,16152,127345
,1,16153,127350
,1,16154,127355
,1,16155,127360
,1,16156,127365
,1,16157,127370
,1,16158,127375
,1,16159,127380
,1,16160,127385
,1,16161,127390
,1,16162,127395
,1,16163,127400
,1,16164,127405
,1,16165,127410
,1,16166,127415
,1,16167,127420
,1,16168,127425
,1,16169,127430
,1,16170,127435
,1,16171,127440
,1,16172,127445
,1,16173,127450
,1,16174,127455
,1,16175,127460
,1,16176,127465
,1,16177,127470
,1,16178,127475
,1,16179,127480
,1,16180,127485
,1,16181,127490
,1,16182,127495
,1,16183,127500
,1,16184,127505
,1,16185,127510
,1,16186,127515
,1,16187,127520
,1,16188,127525
,1,16189,127530
,1,16190,127535
,1,16191,127540
,1,16192,127545
,1,16193,127550
,1,16194,127555
,1,16195,127560
,1,16196,127565
,1,16197,127570
,1,16198,127575
,1,16199,127580
,1,16200,127585
,1,16201,127590
,1,16202,127595
,1,16203,127600
,1,16204,127605
,1,16205,127610
,1,16206,127615
,1,16207,127620
,1,16208,127625
,1,16209,127630
,1,16210,127635
,1,16211,127640
,1,16212,127645
,1,16213,127650
,1,16214,127655
,1,16215,127660
,1,16216,127665
,1,16217,127670
,1,16218,127675
,1,16219,127680
,1,16220,127685
,1,16221,127690
,1,16222,127695
,1,16223,127700
,1,16224,127705
,1,16225,127710
,1,16226,127715
,1,16227,127720
,1,16228,127725
,1,16229,127730
,1,16230,127735
,1,16231,127740
,1,16232,127745
,1,16233,127750
,1,16234,127755
,1,16235,127760
,1,16236,127765
,1,16237,127770
,1,16238,127775
,1,16239,127780
,1,16240,127785
,1,16241,127790
,1,16242,127795
,1,16243,127800
,1,16244,127805
,1,16245,127810
,1,16246,127815
,1,16247,127820
,1,16248,127825
,1,16249,127830
,1,16250,127835
,1,16251,127840
,1,16252,127845
,1,16253,127850
,1,16254,127855
,1,16255,127860
,1,16256,127865
,1,16257,127870
,1,16258,127875
,1,16259,127880
,1,16260,127885
,1,16261,127890
,1,16262,127895
,1,16263,127900
,1,16264,127905
,1,16265,127910
,1,16266,127915
,1,16267,127920
,1,16268,127925
,1,16269,127930
,1,16270,127935
,1,16271,127940
,1,16272,127945
,1,16273,127950
,1,16274,127955
,1,16275,127960
,1,16276,127965
,1,16277,127970
,1,16278,127975
,1,16279,127980
,1,16280,127985
,1,16281,127990
,1,16282,127995
,1,16283,128000
,1,16284,128005
,1,16285,128010
,1,16286,128015
,1,16287,128020
,1,16288,128025
,1,16289,128030
,1,16290,128035
,1,16291,128040
,1,16292,128045
,1,16293,128050
,1,16294,128055
,1,16295,128060
,1,16296,128065
,1,16297,128070
,1,16298,128075
,1,16299,128080
,1,16300,128085
,1,16301,128090
,1,16302,128095
,1,16303,128100
,1,16304,128105
,1,16305,128110
,1,16306,128115
,1,16307,128120
,1,16308,128125
,1,16309,128130
,1,16310,128135
,1,16311,128140
,1,16312,128145
,1,16313,128150
,1,16314,128155
,1,16315,128160
,1,16316,128165
,1,16317,128170
,1,16318,128175
,1,16319,128180
,1,16320,128185
,1,16321,128190
,1,16322,128195
,1,16323,128200
,1,16324,128205
,1,16325,128210
,1,16326,128215
,1,16327,128220
,1,16328,128225
,1,16329,128230
,1,16330,128235
,1,16331,128240
,1,16332,128245
,1,16333,128250
,1,16334,128255
,1,16335,128260
,1,16336,128265
,1,16337,128270
,1,16338,128275
,1,16339,128280
,1,16340,128285
,1,16341,128290
,1,16342,128295
,1,16343,128300
,1,16344,128305
,1,16345,128310
,1,16346,128315
,1,16347,128320
,1,16348,128325
,1,16349,128330
,1,16350,128335
,1,16351,128340
,1,16352,128345
,1,16353,128350
,1,16354,128355
,1,16355,128360
,1,16356,128365
,1,16357,128370
,1,16358,128375
,1,16359,128380
,1,16360,128385
,1,16361,128390
,1,16362,128395
,1,16363,128400
,1,16364,128405
,1,16365,128410
,1,16366,128415
,1,16367,128420
,1,16368,128425
,1,16369,128430
,1,16370,128435
,1,16371,128440
,1,16372,128445
,1,16373,128450
,1,16374,128455
,1,16375,128460
,1,16376,128465
,1,16377,128470
,1,16378,128475
,1,16379,128480
,1,16380,128485
,1,16381,128490
,1,16382,128495
,1,16383,128500
,1,16384,128505
,1,16385,128510
,1,16386,128515
,1,16387,128520
,1,16388,128525
,1,16389,128530
,1,16390,128535
,1,16391,128540
,1,16392,128545
,1,16393,128550
,1,16394,128555
,1,16395,128560
,1,16396,128565
,1,16397,128570
,1,16398,128575
,1,16399,128580
,1,16400,128585
,1,16401,128590
,1,16402,128595
,1,16403,128600
,2,19076,1070
,3,19599,128605
,3,19529,34480
,3,19541,39705
,3,19542,560
,3,19543,685
,3,19529,30810
,4,2,39715
,4,3,43560
,4,4,43565
,4,1,43575
,4,2,43580
,4,3,43585
,4,4,43590
,4,5,43595
,4,6,43600
,4,7,43605
,4,8,43610
,4,9,43615
,4,10,43620
,4,11,43625
,4,12,43630
,1,1,85
,2,19076,70
,3,19599,39695
,3,19529,31085
,3,19529,39795
,4,11,43655
,4,14,43660
,4,20,43665
,4,23,43670
,4,26,43675
,4,29,43680
,4,35,43685
,4,38,43690
,4,41,43695
,4,44,43700
,4,47,43705
,4,50,43710
,4,53,43715
,4,56,43720
,4,65,43725
,4,71,43730
,4,77,43735
,4,83,43740
,4,86,43745
,4,89,43750
,4,95,43755
,4,107,43760
,4,110,43765
,4,113,43770
,4,134,43775
,4,137,43780
,4,143,43785
,4,149,43790
,4,152,43795
,4,155,43800
,4,158,43805
,4,164,43810
,4,167,43815
,4,170,43820
,4,173,43825
,4,176,43830
,4,179,43835
,4,182,43840
,4,185,43845
,4,191,43850
,4,194,43855
,4,200,43860
,4,209,43865
,4,215,43870
,4,218,43875
,4,221,43880
,4,224,43885
,4,227,43890
,4,230,43895
,4,233,43900
,4,239,43905
,4,242,43910
,4,245,43915
,4,254,43920
,4,257,43925
,4,260,43930
,4,263,43935
,4,266,43940
,4,278,43945
,4,281,43950
,4,284,43955
,4,287,43960
,4,290,43965
,4,296,43970
,4,302,43975
,4,311,43980
,4,320,43985
,4,323,43990
,4,326,43995
,4,329,44000
,4,335,44005
,4,338,44010
,4,344,44015
,4,347,44020
,4,350,44025
,4,368,44030
,4,374,44035
,4,377,44040
,4,380,44045
,4,383,44050
,4,386,44055
,4,398,44060
,4,401,44065
,4,407,44070
,4,410,44075
,4,413,44080
,4,416,44085
,4,419,44090
,4,422,44095
,4,425,44100
,4,428,44105
,4,431,44110
,4,434,44115
,4,443,44120
,4,446,44125
,4,455,44130
,4,458,44135
,4,461,44140
,4,467,44145
,4,470,44150
,4,473,44155
,4,479,44160
,4,482,44165
,4,485,44170
,4,491,44175
,4,494,44180
,4,500,44185
,4,506,44190
,4,509,44195
,4,512,44200
,4,515,44205
,4,518,44210
,4,521,44215
,4,524,44220
,4,527,44225
,4,530,44230
,4,533,44235
,4,536,44240
,4,539,44245
,4,542,44250
,4,545,44255
,4,548,44260
,4,554,44265
,4,560,44270
,4,563,44275
,4,566,44280
,4,584,44285
,4,590,44290
,4,593,44295
,4,596,44300
,4,599,44305
,4,605,44310
,4,608,44315
,4,623,44320
,4,629,44325
,4,635,44330
,4,647,44335
,4,668,44340
,4,674,44345
,4,677,44350
,4,701,44355
,4,707,44360
,4,710,44365
,4,713,44370
,4,716,44375
,4,719,44380
,4,722,44385
,4,734,44390
,4,737,44395
,4,740,44400
,4,743,44405
,4,746,44410
,4,752,44415
,4,755,44420
,4,758,44425
,4,761,44430
,4,764,44435
,4,770,44440
,3,19536,138270
,3,19529,139175
,4,1,44020
,3,19536,138020
,3,19529,139175
,4,1,44020
,3,19536,137695
,3,19529,139175
,4,1,44020
,3,19536,135400
,3,19529,139175
,4,1,43670
,4,2,44020
,3,19536,136530
,3,19529,139175
,4,1,44020
,3,19536,138950
,3,19529,139175
,4,1,43815
,4,2,44225
,4,3,44020
,3,19536,134510
,3,19529,139175
,3,19536,134530
,3,19529,139175
,3,19536,135305
,3,19529,139175
,4,1,43695
,4,2,44020
,3,19536,135310
,3,19529,139175
,4,1,44020
,3,19536,136955
,3,19529,139175
,4,1,44020
,3,19536,138105
,3,19529,139175
,4,1,7520
,4,3,44020
,3,19536,139100
,3,19529,139175
,4,1,43885
,4,2,43885
,4,3,43885
,4,4,43885
,4,5,43885
,4,6,43885
,4,7,43885
,3,19536,139050
,3,19529,139175
,4,1,139195
,4,2,139195
,4,3,139195
,3,19536,135795
,3,19529,139175
,4,1,43725
,4,2,44020
,3,19536,134570
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,136370
,3,19529,139175
,3,19536,136040
,3,19529,139175
,4,1,134475
,4,2,43895
,4,3,139265
,4,4,139260
,4,6,43820
,4,7,139270
,3,19536,135830
,3,19529,139175
,4,1,44020
,3,19536,135460
,3,19529,139175
,3,19536,135215
,3,19529,139175
,4,1,44020
,3,19536,136145
,3,19529,139175
,4,1,44020
,3,19536,138530
,3,19529,139175
,4,1,44020
,3,19536,136570
,3,19529,139175
,4,1,43770
,4,2,44020
,3,19536,136050
,3,19529,139175
,4,1,134475
,4,2,43895
,4,3,139265
,4,4,139260
,3,19536,134540
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,138995
,3,19529,139175
,4,1,139250
,4,2,139245
,3,19536,135280
,3,19529,139175
,4,1,134475
,4,2,44020
,3,19536,134790
,3,19529,139175
,3,19536,135390
,3,19529,139175
,4,1,43800
,4,2,44020
,3,19536,137255
,3,19529,139175
,4,1,134475
,3,19536,135380
,3,19529,139175
,4,1,44020
,3,19536,135970
,3,19529,139175
,4,1,134475
,4,2,44020
,3,19536,134555
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,135395
,3,19529,139175
,4,1,44020
,3,19536,136140
,3,19529,139175
,4,1,44020
,3,19536,138055
,3,19529,139175
,4,1,44020
,3,19536,136545
,3,19529,139175
,4,1,44020
,3,19536,136060
,3,19529,139175
,4,1,44020
,3,19536,136315
,3,19529,139175
,4,1,44020
,3,19536,138895
,3,19529,139175
,4,1,134475
,4,2,139250
,4,3,139245
,3,19536,135865
,3,19529,139175
,4,1,44020
,3,19536,137960
,3,19529,139175
,3,19536,136065
,3,19529,139175
,4,1,44020
,3,19536,136415
,3,19529,139175
,3,19536,135295
,3,19529,139175
,4,1,43880
,4,2,44020
,3,19536,134515
,3,19529,139175
,3,19536,136990
,3,19529,139175
,4,1,43890
,4,2,44020
,3,19536,134550
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,138640
,3,19529,139175
,4,1,44020
,3,19536,138110
,3,19529,139175
,4,1,44020
,4,2,44355
,4,3,134475
,3,19536,139160
,3,19529,139175
,4,1,139195
,4,2,139195
,4,3,139195
,3,19536,138975
,3,19529,139175
,4,1,134475
,3,19536,135785
,3,19529,139175
,4,1,44020
,3,19536,136185
,3,19529,139175
,4,4,139195
,4,6,139195
,4,7,139195
,3,19536,136585
,3,19529,139175
,4,1,44020
,3,19536,137120
,3,19529,139175
,4,1,44020
,4,2,43935
,4,3,44020
,3,19536,138630
,3,19529,139175
,4,1,44020
,3,19536,137130
,3,19529,139175
,4,1,44020
,4,2,43945
,4,3,44020
,3,19536,135300
,3,19529,139175
,4,1,43950
,4,2,44020
,3,19536,138165
,3,19529,139175
,4,1,44020
,3,19536,134545
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,135585
,3,19529,139175
,4,4,139195
,4,6,139195
,4,7,139195
,3,19536,136025
,3,19529,139175
,4,1,43970
,4,2,44020
,3,19536,137420
,3,19529,139175
,4,1,43975
,4,2,44020
,3,19536,136075
,3,19529,139175
,4,1,134475
,4,2,139245
,3,19536,135570
,3,19529,139175
,4,1,44020
,3,19536,135205
,3,19529,139175
,4,1,43990
,4,2,44020
,3,19536,136435
,3,19529,139175
,3,19536,136975
,3,19529,139175
,4,1,44020
,3,19536,138980
,3,19529,139175
,4,1,43915
,4,4,44005
,4,5,44020
,3,19536,137260
,3,19529,139175
,4,1,43805
,4,4,44010
,4,5,44020
,3,19536,139085
,3,19529,139175
,3,19536,134500
,3,19529,139175
,4,1,44020
,3,19536,137615
,3,19529,139175
,4,1,44020
,3,19536,136965
,3,19529,139175
,4,1,44155
,4,2,44030
,4,3,44020
,3,19536,137860
,3,19529,139175
,4,4,139195
,4,6,139195
,4,7,139195
,3,19536,135075
,3,19529,139175
,4,1,44020
,3,19536,135230
,3,19529,139175
,4,3,44020
,3,19536,134840
,3,19529,139175
,3,19536,138035
,3,19529,139175
,4,1,44020
,3,19536,134995
,3,19529,139175
,4,1,44020
,3,19536,135195
,3,19529,139175
,4,1,44020
,3,19536,135110
,3,19529,139175
,4,1,44070
,4,2,44020
,3,19536,135580
,3,19529,139175
,4,4,139195
,4,6,139195
,4,7,139195
,3,19536,135890
,3,19529,139175
,4,1,44020
,3,19536,135470
,3,19529,139175
,4,1,44020
,3,19536,136100
,3,19529,139175
,4,1,44020
,3,19536,137710
,3,19529,139175
,4,1,44095
,4,2,44230
,4,3,44230
,4,4,44020
,3,19536,136420
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,135415
,3,19529,139175
,4,1,44020
,3,19536,138160
,3,19529,139175
,4,1,44020
,3,19536,135070
,3,19529,139175
,4,4,139195
,3,19536,139105
,3,19529,139175
,4,1,43885
,4,2,43885
,4,3,43885
,4,4,43885
,4,5,43885
,4,6,43885
,4,7,43885
,3,19536,136120
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,134505
,3,19529,139175
,4,1,44130
,3,19536,134575
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,135625
,3,19529,139175
,4,1,44020
,3,19536,135535
,3,19529,139175
,4,1,44145
,4,2,44020
,3,19536,135650
,3,19529,139175
,4,1,44020
,3,19536,135820
,3,19529,139175
,4,1,134475
,4,2,134475
,3,19536,136210
,3,19529,139175
,4,1,44020
,3,19536,134525
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,134535
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,137600
,3,19529,139175
,4,1,44020
,3,19536,137730
,3,19529,139175
,4,1,44020
,3,19536,137055
,3,19529,139175
,4,1,44020
,3,19536,135765
,3,19529,139175
,4,4,139195
,4,6,139195
,4,7,139195
,3,19536,134565
,3,19529,139175
,3,19536,138275
,3,19529,139175
,4,1,44020
,3,19536,135910
,3,19529,139175
,4,1,44205
,4,2,44020
,3,19536,135210
,3,19529,139175
,4,1,44020
,3,19536,135480
,3,19529,139175
,4,1,44020
,3,19536,135980
,3,19529,139175
,4,1,43815
,4,2,44225
,4,3,44020
,3,19536,135975
,3,19529,139175
,4,1,134475
,4,2,44020
,3,19536,134520
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,136030
,3,19529,139175
,4,1,44020
,3,19536,136125
,3,19529,139175
,4,4,139195
,4,6,139195
,4,7,139195
,3,19536,137000
,3,19529,139175
,4,1,44020
,3,19536,137560
,3,19529,139175
,4,1,44020
,3,19536,136115
,3,19529,139175
,4,1,44020
,3,19536,138695
,3,19529,139175
,4,1,134475
,4,2,43895
,4,3,139265
,4,4,139260
,3,19536,138735
,3,19529,139175
,4,1,44265
,4,2,44020
,3,19536,135105
,3,19529,139175
,4,1,44020
,3,19536,137135
,3,19529,139175
,4,1,44020
,3,19536,134560
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,134585
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,135120
,3,19529,139175
,4,1,44020
,3,19536,135375
,3,19529,139175
,4,1,44020
,3,19536,139115
,3,19529,139175
,4,1,43885
,4,2,43885
,4,3,43885
,4,4,43885
,4,5,43885
,4,6,43885
,4,7,43885
,3,19536,138935
,3,19529,139175
,4,1,44305
,4,2,44020
,3,19536,135455
,3,19529,139175
,4,1,44020
,3,19536,136500
,3,19529,139175
,4,1,44020
,3,19536,136425
,3,19529,139175
,3,19536,139110
,3,19529,139175
,4,1,43885
,4,2,43885
,4,3,43885
,4,4,43885
,4,5,43885
,4,6,43885
,4,7,43885
,3,19536,135245
,3,19529,139175
,4,1,44020
,3,19536,135575
,3,19529,139175
,4,1,44285
,4,2,44020
,3,19536,137485
,3,19529,139175
,4,1,44020
,3,19536,134875
,3,19529,139175
,3,19536,135775
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,134580
,3,19529,139175
,4,1,43685
,4,2,43685
,4,3,43685
,4,4,43685
,4,5,43685
,4,6,43685
,4,7,43685
,3,19536,134490
,3,19660,170
,3,19529,139175
,4,1,44360
,3,19536,134495
,3,19660,180
,3,19529,139175
,4,1,44365
,3,19536,134970
,3,19529,139175
,3,19536,136335
,3,19529,139175
,4,1,44020
,3,19536,139090
,3,19529,139175
,4,1,43885
,4,2,43885
,4,3,43885
,4,4,43885
,4,5,43885
,4,6,43885
,4,7,43885
,3,19536,139080
,3,19529,139175
,4,1,43885
,4,2,43885
,4,3,43885
,4,4,43885
,4,5,43885
,4,6,43885
,4,7,43885
,3,19536,135405
,3,19529,139175
,4,1,134475
,4,2,139245
,3,19536,135475
,3,19529,139175
,4,1,44020
,3,19536,137345
,3,19529,139175
,4,1,44020
,3,19536,134700
,3,19529,139175
,4,1,139195
,3,19536,135250
,3,19529,139175
,4,1,44020
,3,19536,135790
,3,19529,139175
,4,1,43920
,4,2,44020
,3,19536,136205
,3,19529,139175
,4,1,43920
,4,2,44020
,3,19536,138015
,3,19529,139175
,4,1,44020
,3,19536,138905
,3,19529,139175
,4,1,134475
,4,2,139270
,4,3,139265
,3,19536,137370
,3,19529,139175
,4,1,44020
,3,19536,138940
,3,19529,139175
,4,1,44020
,3,19529,39795
,4,5,44450
,4,8,44455
,4,11,44460
,4,14,44465
,4,35,44470
,4,38,44475
,4,41,44480
,4,59,44485
,4,71,44490
,4,77,44495
,4,83,44500
,4,86,44505
,4,89,44510
,4,92,44515
,4,95,44520
,4,101,44525
,4,104,44530
,4,107,44535
,4,110,44540
,4,113,44545
,4,116,44550
,4,119,44555
,4,122,44560
,4,125,44565
,4,128,44570
,4,131,44575
,4,134,44580
,4,137,44585
,4,140,44590
,4,143,44595
,4,146,44600
,4,155,44605
,4,158,44610
,4,167,44615
,4,188,44620
,4,191,44625
,4,194,44630
,4,200,44635
,4,206,44640
,4,212,44645
,4,227,44650
,4,230,44655
,4,239,44660
,4,242,44665
,4,245,44670
,4,254,44675
,4,257,44680
,4,263,44685
,4,266,44690
,4,269,44695
,4,278,44700
,4,302,44705
,4,305,44710
,4,311,44715
,4,314,44720
,4,332,44725
,4,335,44730
,4,338,44735
,4,341,44740
,4,344,44745
,4,353,44750
,4,362,44755
,4,371,44760
,4,380,44765
,4,383,44770
,3,19536,135845
,3,19529,139175
,4,1,44450
,4,2,44020
,4,3,139195
,3,19536,135355
,3,19529,139175
,4,1,44455
,4,2,44020
,4,3,139195
,3,19536,138065
,3,19529,139175
,4,1,44460
,4,2,44020
,4,3,139195
,3,19536,137325
,3,19529,139175
,4,1,44465
,4,2,44020
,4,3,139195
,3,19536,135505
,3,19529,139175
,4,1,44470
,4,2,44020
,4,3,139195
,3,19536,135510
,3,19529,139175
,4,1,44475
,4,2,44020
,4,3,139195
,3,19536,135450
,3,19529,139175
,4,1,44480
,4,2,44020
,4,3,139195
,3,19536,135725
,3,19529,139175
,4,1,44485
,4,2,44020
,4,3,139195
,3,19536,135340
,3,19529,139175
,4,1,44490
,4,2,44020
,4,3,139195
,3,19536,138410
,3,19529,139175
,4,1,44495
,4,2,44020
,4,3,139195
,3,19536,135745
,3,19529,139175
,4,1,44500
,4,2,44020
,4,3,139195
,3,19536,135720
,3,19529,139175
,4,1,44505
,4,2,44020
,4,3,139195
,3,19536,137975
,3,19529,139175
,4,1,44510
,4,2,44020
,4,3,139195
,3,19536,135430
,3,19529,139175
,4,1,44515
,4,2,44020
,4,3,139195
,3,19536,135525
,3,19529,139175
,4,1,44520
,4,2,44020
,4,3,139195
,3,19536,135755
,3,19529,139175
,4,1,44525
,4,2,44020
,4,3,139195
,3,19536,135760
,3,19529,139175
,4,1,44530
,4,2,44020
,4,3,139195
,3,19536,136460
,3,19529,139175
,4,1,44535
,4,2,44020
,4,3,139195
,3,19536,135085
,3,19529,139175
,4,1,44540
,4,2,44020
,4,3,139195
,3,19536,137275
,3,19529,139175
,4,1,44545
,4,2,44020
,4,3,139195
,3,19536,135365
,3,19529,139175
,4,1,44550
,4,2,44020
,4,3,139195
,3,19536,135350
,3,19529,139175
,4,1,44555
,4,2,44020
,4,3,139195
,3,19536,135920
,3,19529,139175
,4,1,44560
,4,2,44020
,4,3,139195
,3,19536,135550
,3,19529,139175
,4,1,44565
,4,2,44020
,4,3,139195
,3,19536,135445
,3,19529,139175
,4,1,44570
,4,2,44020
,4,3,139195
,3,19536,135495
,3,19529,139175
,4,1,44575
,4,2,44020
,4,3,139195
,3,19536,138430
,3,19529,139175
,4,1,44580
,4,2,44020
,4,3,139195
,3,19536,135965
,3,19529,139175
,4,1,44585
,4,2,44020
,4,3,139195
,3,19536,135605
,3,19529,139175
,4,1,44590
,4,2,44020
,4,3,139195
,3,19536,135420
,3,19529,139175
,4,1,44595
,4,2,44020
,4,3,139195
,3,19536,136785
,3,19529,139175
,4,1,44600
,4,2,44020
,4,3,139195
,3,19536,135715
,3,19529,139175
,4,1,44605
,4,2,44020
,4,3,139195
,3,19536,135750
,3,19529,139175
,4,1,44610
,4,2,44020
,4,3,139195
,3,19536,138800
,3,19529,139175
,4,1,44615
,4,2,44020
,4,3,139195
,3,19536,135665
,3,19529,139175
,4,1,44620
,4,2,44020
,4,3,139195
,3,19536,135515
,3,19529,139175
,4,1,44625
,4,2,44020
,4,3,139195
,3,19536,137305
,3,19529,139175
,4,1,44630
,4,2,44020
,4,3,139195
,3,19536,138325
,3,19529,139175
,4,1,44635
,4,2,44020
,4,3,139195
,3,19536,135490
,3,19529,139175
,4,1,44640
,4,2,44020
,4,3,139195
,3,19536,135590
,3,19529,139175
,4,1,44645
,4,2,44020
,4,3,139195
,3,19536,135370
,3,19529,139175
,4,1,44650
,4,2,44020
,4,3,139195
,3,19536,135730
,3,19529,139175
,4,1,44655
,4,2,44020
,4,3,139195
,3,19536,135640
,3,19529,139175
,4,1,44660
,4,2,44020
,4,3,139195
,3,19536,135335
,3,19529,139175
,4,1,44665
,4,2,44020
,4,3,139195
,3,19536,135905
,3,19529,139175
,4,1,44670
,4,2,44020
,4,3,139195
,3,19536,135645
,3,19529,139175
,4,1,44675
,4,2,44020
,4,3,139195
,3,19536,136175
,3,19529,139175
,4,1,44680
,4,2,44020
,4,3,139195
,3,19536,137965
,3,19529,139175
,4,1,139195
,4,2,44685
,4,3,44020
,4,4,43865
,4,5,44685
,4,6,44020
,4,7,139195
,3,19536,135930
,3,19529,139175
,4,1,44690
,4,2,44020
,4,3,139195
,3,19536,136010
,3,19529,139175
,4,1,44695
,4,2,44020
,4,3,139195
,3,19536,135675
,3,19529,139175
,4,1,44700
,4,2,44020
,4,3,139195
,3,19536,135630
,3,19529,139175
,4,1,44705
,4,2,44020
,4,3,139195
,3,19536,135090
,3,19529,139175
,4,1,44710
,4,2,44020
,4,3,139195
,3,19536,135950
,3,19529,139175
,4,1,44715
,4,2,44020
,4,3,139195
,3,19536,135985
,3,19529,139175
,4,1,44720
,4,2,44020
,4,3,139195
,3,19536,135710
,3,19529,139175
,4,1,44725
,4,2,44020
,4,3,139195
,3,19536,137850
,3,19529,139175
,4,1,44730
,4,2,44020
,4,3,139195
,3,19536,135700
,3,19529,139175
,4,1,44735
,4,2,44020
,4,3,139195
,3,19536,135615
,3,19529,139175
,4,1,44740
,4,2,44020
,4,3,139195
,3,19536,135330
,3,19529,139175
,4,1,44745
,4,2,44020
,4,3,139195
,3,19536,137335
,3,19529,139175
,4,1,44750
,4,2,44020
,4,3,139195
,3,19536,135325
,3,19529,139175
,4,1,44755
,4,2,44020
,4,3,139195
,3,19536,135595
,3,19529,139175
,4,1,44760
,4,2,44020
,4,3,139195
,3,19536,137010
,3,19529,139175
,4,1,44765
,4,2,44020
,4,3,139195
,3,19536,137265
,3,19529,139175
,4,1,44770
,4,2,44020
,4,3,139195
,4,4,3670
,4,5,4760
,4,6,6530
,4,7,7500
,4,8,8480
,4,9,8780
,4,10,9195
,4,11,10285
,4,12,10450
,4,13,11775
,4,14,12020
,3,19529,39795
,4,6,44785
,4,9,44790
,4,18,44795
,4,30,44800
,4,33,44805
,4,51,44810
,4,54,8110
,4,60,44815
,4,66,44820
,4,69,44825
,4,93,44830
,4,117,44835
,4,123,44840
,4,141,44845
,4,147,44850
,4,150,44855
,4,153,44860
,4,156,44865
,4,177,44870
,4,180,44875
,4,210,44880
,4,213,44885
,4,219,44890
,4,222,44895
,4,225,44900
,4,228,44905
,4,231,44910
,4,246,44915
,4,270,8730
,4,288,44920
,4,312,44925
,4,315,44930
,4,324,44935
,4,327,44940
,4,330,44945
,4,333,44950
,4,336,44955
,4,342,44960
,4,345,44965
,4,357,44970
,4,360,44975
,4,363,44980
,4,375,44985
,4,378,44990
,4,384,44995
,4,387,45000
,4,390,45005
,4,396,45010
,4,405,45015
,4,408,45020
,4,411,45025
,4,414,45030
,4,417,45035
,4,420,45040
,4,435,45045
,4,438,45050
,4,441,45055
,4,456,45060
,4,465,45065
,4,480,45070
,4,483,45075
,4,504,45080
,4,507,45085
,4,534,45090
,4,540,45095
,4,543,45100
,4,561,45105
,4,567,45110
,4,570,8160
,4,573,45115
,4,588,45120
,4,606,45125
,4,612,45130
,4,618,45135
,4,624,45140
,4,630,45145
,4,633,45150
,4,642,45155
,4,645,45160
,4,651,45165
,4,672,45170
,4,681,45175
,4,699,45180
,4,702,45185
,4,708,45190
,4,717,45195
,4,720,45200
,4,723,45205
,4,726,45210
,4,732,45215
,4,735,45220
,4,741,45225
,4,747,45230
,4,753,45235
,4,780,45240
,4,783,45245
,4,789,45250
,4,792,45255
,4,810,45260
,4,813,8735
,4,816,45265
,4,822,45270
,4,840,45275
,4,846,45280
,4,852,45285
,4,864,45290
,4,867,45295
,4,870,45300
,4,933,45305
,4,936,45310
,4,939,45315
,4,963,45320
,4,969,45325
,4,972,45330
,4,975,45335
,4,987,45340
,4,993,45345
,4,996,5885
,4,999,45350
,4,1002,45355
,4,1005,45360
,4,1014,45365
,4,1020,45370
,4,1026,45375
,4,1062,45380
,4,1071,45385
,4,1095,45390
,4,1098,45395
,4,1107,45400
,4,1110,45405
,4,1122,45410
,4,1125,45415
,4,1128,45420
,4,1149,45425
,4,1155,45430
,4,1164,45435
,4,1170,45440
,4,1176,45445
,4,1179,45450
,4,1185,45455
,4,1188,45460
,4,1191,45465
,4,1218,45470
,4,1230,45475
,4,1233,45480
,4,1236,45485
,4,1239,45490
,4,1242,45495
,4,1284,45500
,4,1287,45505
,4,1296,45510
,4,1299,45515
,4,1302,45520
,4,1305,8100
,4,1311,45525
,4,1314,45530
,4,1317,45535
,4,1320,45540
,4,1326,45545
,4,1329,45550
,4,1335,45555
,4,1338,45560
,4,1341,45565
,4,1347,45570
,4,1353,45575
,4,1356,12260
,4,1374,45580
,4,1386,45585
,4,1395,45590
,4,1401,45595
,4,1404,45600
,4,1422,45605
,4,1434,45610
,4,1437,45615
,4,1443,45620
,4,1446,45625
,4,1458,45630
,4,1461,45635
,4,1464,45640
,4,1467,45645
,4,1470,45650
,4,1476,45655
,4,1491,45660
,4,1497,8115
,4,1509,45665
,4,1512,45670
,4,1545,45675
,4,1548,45680
,4,1551,45685
,4,1569,45690
,4,1572,45695
,4,1578,45700
,4,1605,45705
,4,1608,45710
,4,1611,45715
,4,1617,45720
,4,1620,45725
,4,1644,45730
,4,1647,45735
,4,1650,45740
,4,1653,45745
,4,1671,8170
,4,1674,45750
,4,1677,45755
,4,1680,45760
,4,1683,45765
,4,1686,45770
,4,1692,45775
,4,1701,45780
,4,1743,45785
,4,1746,45790
,4,1755,45795
,4,1758,45800
,4,1776,45805
,4,1779,45810
,4,1782,45815
,4,1797,45820
,4,1824,45825
,4,1836,45830
,4,1848,45835
,4,1851,45840
,4,1854,45845
,4,1860,45850
,4,1878,45855
,4,1884,45860
,4,1887,45865
,4,1890,45870
,4,1911,5890
,4,1914,45875
,4,1917,45880
,4,1923,45885
,4,1929,45890
,4,1947,45895
,4,1959,5865
,4,1965,45900
,4,1980,45905
,4,1989,45910
,4,1992,45915
,4,2007,45920
,4,2016,45925
,4,2022,45930
,4,2028,45935
,4,2043,45940
,4,2052,45945
,4,2073,45950
,4,2097,45955
,4,2100,45960
,4,2106,45965
,4,2109,45970
,4,2115,45975
,4,2118,45980
,4,2121,45985
,4,2133,45990
,4,2145,45995
,4,2166,46000
,4,2169,8145
,4,2172,46005
,4,2181,46010
,4,2187,46015
,4,2202,46020
,4,2205,46025
,4,2208,46030
,4,2226,46035
,4,2235,46040
,4,2238,46045
,4,2241,46050
,4,2244,46055
,4,2253,46060
,4,2256,46065
,4,2259,46070
,4,2274,46075
,4,2286,46080
,4,2289,6560
,4,2292,46085
,4,2298,46090
,4,2343,46095
,4,2352,46100
,4,2358,46105
,4,2367,46110
,4,2370,46115
,4,2394,46120
,4,2397,46125
,4,2400,46130
,4,2412,46135
,4,2418,46140
,4,2421,46145
,4,2430,46150
,4,2433,46155
,4,2436,46160
,4,2439,46165
,4,2442,46170
,4,2445,46175
,4,2448,46180
,4,2451,46185
,4,2457,46190
,4,2460,46195
,4,2463,46200
,4,2466,46205
,4,2469,46210
,4,2475,46215
,4,2484,46220
,4,2487,46225
,4,2490,46230
,4,2502,46235
,4,2514,46240
,4,2520,5240
,4,2523,46245
,4,2529,46250
,4,2532,46255
,4,2535,46260
,4,2550,46265
,4,2559,46270
,4,2568,46275
,4,2586,46280
,4,2595,46285
,4,2607,46290
,4,2613,46295
,4,2619,46300
,4,2658,46305
,4,2661,46310
,4,2667,46315
,4,2676,46320
,4,2679,46325
,4,2682,46330
,4,2691,46335
,4,2718,8105
,4,2721,46340
,4,2727,46345
,4,2748,46350
,4,2751,46355
,4,2757,46360
,4,2760,46365
,4,2763,46370
,4,2766,46375
,4,2775,46380
,4,2778,46385
,4,2781,46390
,4,2808,46395
,4,2817,46400
,4,2820,46405
,4,2823,46410
,4,2826,46415
,4,2832,46420
,4,2835,46425
,4,2847,46430
,4,2850,46435
,4,2856,46440
,4,2859,46445
,4,2862,46450
,4,2868,46455
,4,2871,46460
,4,2877,46465
,4,2880,5880
,4,2889,6740
,4,2901,8090
,4,2919,46470
,4,2925,12265
,4,2931,46475
,4,2940,46480
,4,2943,46485
,4,2949,46490
,4,2958,46495
,4,2964,46500
,4,2967,46505
,4,2970,46510
,4,2973,46515
,4,2976,8180
,4,2982,46520
,4,2985,46525
,4,2988,7630
,4,2994,46530
,4,3000,46535
,4,3003,46540
,4,3009,46545
,4,3018,46550
,4,3021,46555
,4,3051,46560
,4,3063,46565
,4,3066,46570
,4,3069,46575
,4,3075,46580
,4,1,46585
,4,2,46590
,4,3,46595
,4,4,46600
,4,5,46605
,4,6,46610
,4,7,46615
,4,8,46620
,4,9,46625
,4,10,46630
,4,11,46635
,4,12,46640
,4,13,46645
,4,14,46650
,4,15,46655
,4,16,46660
,4,17,46665
,4,18,46670
,4,19,46675
,4,20,46680
,4,21,46685
,4,22,46690
,4,23,46695
,4,24,46700
,4,25,46705
,4,26,46710
,4,27,46715
,4,28,46720
,4,29,46725
,4,30,46730
,4,31,46735
,4,32,46740
,4,33,46745
,4,34,46750
,4,35,46755
,4,36,46760
,4,37,46765
,4,38,46770
,4,39,46775
,4,40,46780
,4,41,46785
,4,42,46790
,4,43,46795
,4,44,46800
,4,45,46805
,4,46,46810
,4,47,46815
,4,48,46820
,4,49,46825
,4,50,46830
,4,51,46835
,4,52,46840
,4,53,46845
,4,54,46850
,4,55,46855
,4,56,46860
,4,57,46865
,4,58,46870
,4,59,46875
,4,60,46880
,4,61,46885
,4,62,46890
,4,63,46895
,4,64,46900
,4,65,46905
,4,66,46910
,4,67,46915
,4,68,46920
,4,69,46925
,4,70,46930
,4,71,46935
,4,72,46940
,4,73,46945
,4,74,46950
,4,75,46955
,4,76,46960
,4,77,46965
,4,78,46970
,4,79,46975
,4,80,46980
,4,81,46985
,4,82,46990
,4,83,46995
,4,84,47000
,4,85,47005
,4,86,47010
,4,87,47015
,4,88,47020
,4,89,47025
,4,90,47030
,4,91,47035
,4,92,47040
,4,93,47045
,4,94,47050
,4,95,47055
,4,96,47060
,4,97,47065
,4,98,47070
,4,99,47075
,4,100,47080
,4,101,47085
,4,102,47090
,4,103,47095
,4,104,47100
,4,105,47105
,4,106,47110
,4,107,47115
,4,108,47120
,4,109,47125
,4,110,47130
,4,111,47135
,4,112,47140
,4,113,47145
,4,114,47150
,4,115,47155
,4,116,47160
,4,117,47165
,4,118,47170
,4,119,47175
,4,120,47180
,4,121,47185
,4,122,47190
,4,123,47195
,4,124,47200
,4,125,47205
,4,126,47210
,4,127,47215
,4,128,47220
,4,129,47225
,4,130,47230
,4,131,47235
,4,132,47240
,4,133,47245
,4,134,47250
,4,135,47255
,4,136,47260
,4,137,47265
,4,138,47270
,4,139,47275
,4,140,47280
,4,141,47285
,4,142,47290
,4,143,47295
,4,144,47300
,4,145,47305
,4,146,47310
,4,147,47315
,4,148,47320
,4,149,47325
,4,150,47330
,4,151,47335
,4,152,47340
,4,153,47345
,4,154,47350
,4,155,47355
,4,156,47360
,4,157,47365
,4,158,47370
,4,159,47375
,4,160,47380
,4,161,47385
,4,162,47390
,4,163,47395
,4,164,47400
,4,165,47405
,4,166,47410
,4,167,47415
,4,168,47420
,4,169,47425
,4,170,47430
,4,171,47435
,4,172,47440
,4,173,47445
,4,174,47450
,4,175,47455
,4,176,47460
,4,177,47465
,4,178,47470
,4,179,47475
,4,180,47480
,4,181,47485
,4,182,47490
,4,183,47495
,4,184,47500
,4,185,47505
,4,186,47510
,4,187,47515
,4,188,47520
,4,189,47525
,4,190,47530
,4,191,47535
,4,192,47540
,4,193,47545
,4,194,47550
,4,195,47555
,4,196,47560
,4,197,47565
,4,198,47570
,4,199,47575
,4,200,47580
,4,201,47585
,4,202,47590
,4,203,47595
,4,204,47600
,4,205,47605
,4,206,47610
,4,207,47615
,4,208,47620
,4,209,47625
,4,210,47630
,4,211,47635
,4,212,47640
,4,213,47645
,4,214,47650
,4,215,47655
,4,216,47660
,4,217,47665
,4,218,47670
,4,219,47675
,4,220,47680
,4,221,47685
,4,222,47690
,4,223,47695
,4,224,47700
,4,225,47705
,4,226,47710
,4,227,47715
,4,228,47720
,4,229,47725
,4,230,47730
,4,231,47735
,4,232,47740
,4,233,47745
,4,234,47750
,4,235,47755
,4,236,47760
,4,237,47765
,4,238,47770
,4,239,47775
,4,240,47780
,4,241,47785
,4,242,47790
,4,243,47795
,4,244,47800
,4,245,47805
,4,246,47810
,4,247,47815
,4,248,47820
,4,249,47825
,4,250,47830
,4,251,47835
,4,252,47840
,4,253,47845
,4,254,47850
,4,255,47855
,4,256,47860
,4,257,47865
,4,258,47870
,4,259,47875
,4,260,47880
,4,261,47885
,4,262,47890
,4,263,47895
,4,264,47900
,4,265,47905
,4,266,47910
,4,267,47915
,4,268,47920
,4,269,47925
,4,270,47930
,4,271,47935
,4,272,47940
,4,273,47945
,4,274,47950
,4,275,47955
,4,276,47960
,4,277,47965
,4,278,47970
,4,279,47975
,4,280,47980
,4,281,47985
,4,282,47990
,4,283,47995
,4,284,48000
,4,285,48005
,4,286,48010
,4,287,48015
,4,288,48020
,4,289,48025
,4,290,48030
,4,291,48035
,4,292,48040
,4,293,48045
,4,294,48050
,4,295,48055
,4,296,48060
,4,297,48065
,4,298,48070
,4,299,48075
,4,300,48080
,4,301,48085
,4,302,48090
,4,303,48095
,4,304,48100
,4,305,48105
,4,306,48110
,4,307,48115
,4,308,48120
,4,309,48125
,4,310,48130
,4,311,48135
,4,312,48140
,4,313,48145
,4,314,48150
,4,315,48155
,4,316,48160
,4,317,48165
,4,318,48170
,4,319,48175
,4,320,48180
,4,321,48185
,4,322,48190
,4,323,48195
,4,324,48200
,4,325,48205
,4,326,48210
,4,327,48215
,4,328,48220
,4,329,48225
,4,330,48230
,4,331,48235
,4,332,48240
,4,333,48245
,4,334,48250
,4,335,48255
,4,336,48260
,4,337,48265
,4,338,48270
,4,339,48275
,4,340,48280
,4,341,48285
,4,342,48290
,4,343,48295
,4,344,48300
,4,345,48305
,4,346,48310
,4,347,48315
,4,348,48320
,4,349,48325
,4,350,48330
,4,351,48335
,4,352,48340
,4,353,48345
,4,354,48350
,4,355,48355
,4,356,48360
,4,357,48365
,4,358,48370
,4,359,48375
,4,360,48380
,4,361,48385
,4,362,48390
,4,363,48395
,4,364,48400
,4,365,48405
,4,366,48410
,4,367,48415
,4,368,48420
,4,369,48425
,4,370,48430
,4,371,48435
,4,372,48440
,4,373,48445
,4,374,48450
,4,375,48455
,4,376,48460
,4,377,48465
,4,378,48470
,4,379,48475
,4,380,48480
,4,381,48485
,4,382,48490
,4,383,48495
,4,384,48500
,4,385,48505
,4,386,48510
,4,387,48515
,4,388,48520
,4,389,48525
,4,390,48530
,4,391,48535
,4,392,48540
,4,393,48545
,4,394,48550
,4,395,48555
,4,396,48560
,4,397,48565
,4,398,48570
,4,399,48575
,4,400,48580
,4,401,48585
,4,402,48590
,4,403,48595
,4,404,48600
,4,405,48605
,4,406,48610
,4,407,48615
,4,408,48620
,4,409,48625
,4,410,48630
,4,411,48635
,4,412,48640
,4,413,48645
,4,414,48650
,4,415,48655
,4,416,48660
,4,417,48665
,4,418,48670
,4,419,48675
,4,420,48680
,4,421,48685
,4,422,48690
,4,423,48695
,4,424,48700
,4,425,48705
,4,426,48710
,4,427,48715
,4,428,48720
,4,429,48725
,4,430,48730
,4,431,48735
,4,432,48740
,4,433,48745
,4,434,48750
,4,435,48755
,4,436,48760
,4,437,48765
,4,438,48770
,4,439,48775
,4,440,48780
,4,441,48785
,4,442,48790
,4,443,48795
,4,444,48800
,4,445,48805
,4,446,48810
,4,447,48815
,4,448,48820
,4,449,48825
,4,450,48830
,4,451,48835
,4,452,48840
,4,453,48845
,4,454,48850
,4,455,48855
,4,456,48860
,4,457,48865
,4,458,48870
,4,459,48875
,4,460,48880
,4,461,48885
,4,462,48890
,4,463,48895
,4,464,48900
,4,465,48905
,4,466,48910
,4,467,48915
,4,468,48920
,4,469,48925
,4,470,48930
,4,471,48935
,4,472,48940
,4,473,48945
,4,474,48950
,4,475,48955
,4,476,48960
,4,477,48965
,4,478,48970
,4,479,48975
,4,480,48980
,4,481,48985
,4,482,48990
,4,483,48995
,4,484,49000
,4,485,49005
,4,486,49010
,4,487,49015
,4,488,49020
,4,489,49025
,4,490,49030
,4,491,49035
,4,492,49040
,4,493,49045
,4,494,49050
,4,495,49055
,4,496,49060
,4,497,49065
,4,498,49070
,4,499,49075
,4,500,49080
,4,501,49085
,4,502,49090
,4,503,49095
,4,504,49100
,4,505,49105
,4,506,49110
,4,507,49115
,4,508,49120
,4,509,49125
,4,510,49130
,4,511,49135
,4,512,49140
,4,513,49145
,4,514,49150
,4,515,49155
,4,516,49160
,4,517,49165
,4,518,49170
,4,519,49175
,4,520,49180
,4,521,49185
,4,522,49190
,4,523,49195
,4,524,49200
,4,525,49205
,4,526,49210
,4,527,49215
,4,528,49220
,4,529,49225
,4,530,49230
,4,531,49235
,4,532,49240
,4,533,49245
,4,534,49250
,4,535,49255
,4,536,49260
,4,537,49265
,4,538,49270
,4,539,49275
,4,540,49280
,4,541,49285
,4,542,49290
,4,543,49295
,4,544,49300
,4,545,49305
,4,546,49310
,4,547,49315
,4,548,49320
,4,549,49325
,4,550,49330
,4,551,49335
,4,552,49340
,4,553,49345
,4,554,49350
,4,555,49355
,4,556,49360
,4,557,49365
,4,558,49370
,4,559,49375
,4,560,49380
,4,561,49385
,4,562,49390
,4,563,49395
,4,564,49400
,4,565,49405
,4,566,49410
,4,567,49415
,4,568,49420
,4,569,49425
,4,570,49430
,4,571,49435
,4,572,49440
,4,573,49445
,4,574,49450
,4,575,49455
,4,576,49460
,4,577,49465
,4,578,49470
,4,579,49475
,4,580,49480
,4,581,49485
,4,582,49490
,4,583,49495
,4,584,49500
,4,585,49505
,4,586,49510
,4,587,49515
,4,588,49520
,4,589,49525
,4,590,49530
,4,591,49535
,4,592,49540
,4,593,49545
,4,594,49550
,4,595,49555
,4,596,49560
,4,597,49565
,4,598,49570
,4,599,49575
,4,600,49580
,4,601,49585
,4,602,49590
,4,603,49595
,4,604,49600
,4,605,49605
,4,606,49610
,4,607,49615
,4,608,49620
,4,609,49625
,4,610,49630
,4,611,49635
,4,612,49640
,4,613,49645
,4,614,49650
,4,615,49655
,4,616,49660
,4,617,49665
,4,618,49670
,4,619,49675
,4,620,49680
,4,621,49685
,4,622,49690
,4,623,49695
,4,624,49700
,4,625,49705
,4,626,49710
,4,627,49715
,4,628,49720
,4,629,49725
,4,630,49730
,4,631,49735
,4,632,49740
,4,633,49745
,4,634,49750
,4,635,49755
,4,636,49760
,4,637,49765
,4,638,49770
,4,639,49775
,4,640,49780
,4,641,49785
,4,642,49790
,4,643,49795
,4,644,49800
,4,645,49805
,4,646,49810
,4,647,49815
,4,648,49820
,4,649,49825
,4,650,49830
,4,651,49835
,4,652,49840
,4,653,49845
,4,654,49850
,4,655,49855
,4,656,49860
,4,657,49865
,4,658,49870
,4,659,49875
,4,660,49880
,4,661,49885
,4,662,49890
,4,663,49895
,4,664,49900
,4,665,49905
,4,666,49910
,4,667,49915
,4,668,49920
,4,669,49925
,4,670,49930
,4,671,49935
,4,672,49940
,4,673,49945
,4,674,49950
,4,675,49955
,4,676,49960
,4,677,49965
,4,678,49970
,4,679,49975
,4,680,49980
,4,681,49985
,4,682,49990
,4,683,49995
,4,684,50000
,4,685,50005
,4,686,50010
,4,687,50015
,4,688,50020
,4,689,50025
,4,690,50030
,4,691,50035
,4,692,50040
,4,693,50045
,4,694,50050
,4,695,50055
,4,696,50060
,4,697,50065
,4,698,50070
,4,699,50075
,4,700,50080
,4,701,50085
,4,702,50090
,4,703,50095
,4,704,50100
,4,705,50105
,4,706,50110
,4,707,50115
,4,708,50120
,4,709,50125
,4,710,50130
,4,711,50135
,4,712,50140
,4,713,50145
,4,714,50150
,4,715,50155
,4,716,50160
,4,717,50165
,4,718,50170
,4,719,50175
,4,720,50180
,4,721,50185
,4,722,50190
,4,723,50195
,4,724,50200
,4,725,50205
,4,726,50210
,4,727,50215
,4,728,50220
,4,729,50225
,4,730,50230
,4,731,50235
,4,732,50240
,4,733,50245
,4,734,50250
,4,735,50255
,4,736,50260
,4,737,50265
,4,738,50270
,4,739,50275
,4,740,50280
,4,741,50285
,4,742,50290
,4,743,50295
,4,744,50300
,4,745,50305
,4,746,50310
,4,747,50315
,4,748,50320
,4,749,50325
,4,750,50330
,4,751,50335
,4,752,50340
,4,753,50345
,4,754,50350
,4,755,50355
,4,756,50360
,4,757,50365
,4,758,50370
,4,759,50375
,4,760,50380
,4,761,50385
,4,762,50390
,4,763,50395
,4,764,50400
,4,765,50405
,4,766,50410
,4,767,50415
,4,768,50420
,4,769,50425
,4,770,50430
,4,771,50435
,4,772,50440
,4,773,50445
,4,774,50450
,4,775,50455
,4,776,50460
,4,777,50465
,4,778,50470
,4,779,50475
,4,780,50480
,4,781,50485
,4,782,50490
,4,783,50495
,4,784,50500
,4,785,50505
,4,786,50510
,4,787,50515
,4,788,50520
,4,789,50525
,4,790,50530
,4,791,50535
,4,792,50540
,4,793,50545
,4,794,50550
,4,795,50555
,4,796,50560
,4,797,50565
,4,798,50570
,4,799,50575
,4,800,50580
,4,801,50585
,4,802,50590
,4,803,50595
,4,804,50600
,4,805,50605
,4,806,50610
,4,807,50615
,4,808,50620
,4,809,50625
,4,810,50630
,4,811,50635
,4,812,50640
,4,813,50645
,4,814,50650
,4,815,50655
,4,816,50660
,4,817,50665
,4,818,50670
,4,819,50675
,4,820,50680
,4,821,50685
,4,822,50690
,4,823,50695
,4,824,50700
,4,825,50705
,4,826,50710
,4,827,50715
,4,828,50720
,4,829,50725
,4,830,50730
,4,831,50735
,4,832,50740
,4,833,50745
,4,834,50750
,4,835,50755
,4,836,50760
,4,837,50765
,4,838,50770
,4,839,50775
,4,840,50780
,4,841,50785
,4,842,50790
,4,843,50795
,4,844,50800
,4,845,50805
,4,846,50810
,4,847,50815
,4,848,50820
,4,849,50825
,4,850,50830
,4,851,50835
,4,852,50840
,4,853,50845
,4,854,50850
,4,855,50855
,4,856,50860
,4,857,50865
,4,858,50870
,4,859,50875
,4,860,50880
,4,861,50885
,4,862,50890
,4,863,50895
,4,864,50900
,4,865,50905
,4,866,50910
,4,867,50915
,4,868,50920
,4,869,50925
,4,870,50930
,4,871,50935
,4,872,50940
,4,873,50945
,4,874,50950
,4,875,50955
,4,876,50960
,4,877,50965
,4,878,50970
,4,879,50975
,4,880,50980
,4,881,50985
,4,882,50990
,4,883,50995
,4,884,51000
,4,885,51005
,4,886,51010
,4,887,51015
,4,888,51020
,4,889,51025
,4,890,51030
,4,891,51035
,4,892,51040
,4,893,51045
,4,894,51050
,4,895,51055
,4,896,51060
,4,897,51065
,4,898,51070
,4,899,51075
,4,900,51080
,4,901,51085
,4,902,51090
,4,903,51095
,4,904,51100
,4,905,51105
,4,906,51110
,4,907,51115
,4,908,51120
,4,909,51125
,4,910,51130
,4,911,51135
,4,912,51140
,4,913,51145
,4,914,51150
,4,915,51155
,4,916,51160
,4,917,51165
,4,918,51170
,4,919,51175
,4,920,51180
,4,921,51185
,4,922,51190
,4,923,51195
,4,924,51200
,4,925,51205
,4,926,51210
,4,927,51215
,4,928,51220
,4,929,51225
,4,930,51230
,4,931,51235
,4,932,51240
,4,933,51245
,4,934,51250
,4,935,51255
,4,936,51260
,4,937,51265
,4,938,51270
,4,939,51275
,4,940,51280
,4,941,51285
,4,942,51290
,4,943,51295
,4,944,51300
,4,945,51305
,4,946,51310
,4,947,51315
,4,948,51320
,4,949,51325
,4,950,51330
,4,951,51335
,4,952,51340
,4,953,51345
,4,954,51350
,4,955,51355
,4,956,51360
,4,957,51365
,4,958,51370
,4,959,51375
,4,960,51380
,4,961,51385
,4,962,51390
,4,963,51395
,4,964,51400
,4,965,51405
,4,966,51410
,4,967,51415
,4,968,51420
,4,969,51425
,4,970,51430
,4,971,51435
,4,972,51440
,4,973,51445
,4,974,51450
,4,975,51455
,4,976,51460
,4,977,51465
,4,978,51470
,4,979,51475
,4,980,51480
,4,981,51485
,4,982,51490
,4,983,51495
,4,984,51500
,4,985,51505
,4,986,51510
,4,987,51515
,4,988,51520
,4,989,51525
,4,990,51530
,4,991,51535
,4,992,51540
,4,993,51545
,4,994,51550
,4,995,51555
,4,996,51560
,4,997,51565
,4,998,51570
,4,999,51575
,4,1000,51580
,4,1001,51585
,4,1002,51590
,4,1003,51595
,4,1004,51600
,4,1005,51605
,4,1006,51610
,4,1007,51615
,4,1008,51620
,4,1009,51625
,4,1010,51630
,4,1011,51635
,4,1012,51640
,4,1013,51645
,4,1014,51650
,4,1015,51655
,4,1016,51660
,4,1017,51665
,4,1018,51670
,4,1019,51675
,4,1020,51680
,4,1021,51685
,4,1022,51690
,4,1023,51695
,4,1024,51700
,4,1025,51705
,4,1026,51710
,4,1027,51715
,4,1028,51720
,4,1029,51725
,4,1030,51730
,4,1031,51735
,4,1032,51740
,4,1033,51745
,4,1034,51750
,4,1035,51755
,4,1036,51760
,4,1037,51765
,4,1038,51770
,4,1039,51775
,4,1040,51780
,4,1041,51785
,4,1042,51790
,4,1043,51795
,4,1044,51800
,4,1045,51805
,4,1046,51810
,4,1047,51815
,4,1048,51820
,4,1049,51825
,4,1050,51830
,4,1051,51835
,4,1052,51840
,4,1053,51845
,4,1054,51850
,4,1055,51855
,4,1056,51860
,4,1057,51865
,4,1058,51870
,4,1059,51875
,4,1060,51880
,4,1061,51885
,4,1062,51890
,4,1063,51895
,4,1064,51900
,4,1065,51905
,4,1066,51910
,4,1067,51915
,4,1068,51920
,4,1069,51925
,4,1070,51930
,4,1071,51935
,4,1072,51940
,4,1073,51945
,4,1074,51950
,4,1075,51955
,4,1076,51960
,4,1077,51965
,4,1078,51970
,4,1079,51975
,4,1080,51980
,4,1081,51985
,4,1082,51990
,4,1083,51995
,4,1084,52000
,4,1085,52005
,4,1086,52010
,4,1087,52015
,4,1088,52020
,4,1089,52025
,4,1090,52030
,4,1091,52035
,4,1092,52040
,4,1093,52045
,4,1094,52050
,4,1095,52055
,4,1096,52060
,4,1097,52065
,4,1098,52070
,4,1099,52075
,4,1100,52080
,4,1101,52085
,4,1102,52090
,4,1103,52095
,4,1104,52100
,4,1105,52105
,4,1106,52110
,4,1107,52115
,4,1108,52120
,4,1109,52125
,4,1110,52130
,4,1111,52135
,4,1112,52140
,4,1113,52145
,4,1114,52150
,4,1115,52155
,4,1116,52160
,4,1117,52165
,4,1118,52170
,4,1119,52175
,4,1120,52180
,4,1121,52185
,4,1122,52190
,4,1123,52195
,4,1124,52200
,4,1125,52205
,4,1126,52210
,4,1127,52215
,4,1128,52220
,4,1129,52225
,4,1130,52230
,4,1131,52235
,4,1132,52240
,4,1133,52245
,4,1134,52250
,4,1135,52255
,4,1136,52260
,4,1137,52265
,4,1138,52270
,4,1139,52275
,4,1140,52280
,4,1141,52285
,4,1142,52290
,4,1143,52295
,4,1144,52300
,4,1145,52305
,4,1146,52310
,4,1147,52315
,4,1148,52320
,4,1149,52325
,4,1150,52330
,4,1151,52335
,4,1152,52340
,4,1153,52345
,4,1154,52350
,4,1155,52355
,4,1156,52360
,4,1157,52365
,4,1158,52370
,4,1159,52375
,4,1160,52380
,4,1161,52385
,4,1162,52390
,4,1163,52395
,4,1164,52400
,4,1165,52405
,4,1166,52410
,4,1167,52415
,4,1168,52420
,4,1169,52425
,4,1170,52430
,4,1171,52435
,4,1172,52440
,4,1173,52445
,4,1174,52450
,4,1175,52455
,4,1176,52460
,4,1177,52465
,4,1178,52470
,4,1179,52475
,4,1180,52480
,4,1181,52485
,4,1182,52490
,4,1183,52495
,4,1184,52500
,4,1185,52505
,4,1186,52510
,4,1187,52515
,4,1188,52520
,4,1189,52525
,4,1190,52530
,4,1191,52535
,4,1192,52540
,4,1193,52545
,4,1194,52550
,4,1195,52555
,4,1196,52560
,4,1197,52565
,4,1198,52570
,4,1199,52575
,4,1200,52580
,4,1201,52585
,4,1202,52590
,4,1203,52595
,4,1204,52600
,4,1205,52605
,4,1206,52610
,4,1207,52615
,4,1208,52620
,4,1209,52625
,4,1210,52630
,4,1211,52635
,4,1212,52640
,4,1213,52645
,4,1214,52650
,4,1215,52655
,4,1216,52660
,4,1217,52665
,4,1218,52670
,4,1219,52675
,4,1220,52680
,4,1221,52685
,4,1222,52690
,4,1223,52695
,4,1224,52700
,4,1225,52705
,4,1226,52710
,4,1227,52715
,4,1228,52720
,4,1229,52725
,4,1230,52730
,4,1231,52735
,4,1232,52740
,4,1233,52745
,4,1234,52750
,4,1235,52755
,4,1236,52760
,4,1237,52765
,4,1238,52770
,4,1239,52775
,4,1240,52780
,4,1241,52785
,4,1242,52790
,4,1243,52795
,4,1244,52800
,4,1245,52805
,4,1246,52810
,4,1247,52815
,4,1248,52820
,4,1249,52825
,4,1250,52830
,4,1251,52835
,4,1252,52840
,4,1253,52845
,4,1254,52850
,4,1255,52855
,4,1256,52860
,4,1257,52865
,4,1258,52870
,4,1259,52875
,4,1260,52880
,4,1261,52885
,4,1262,52890
,4,1263,52895
,4,1264,52900
,4,1265,52905
,4,1266,52910
,4,1267,52915
,4,1268,52920
,4,1269,52925
,4,1270,52930
,4,1271,52935
,4,1272,52940
,4,1273,52945
,4,1274,52950
,4,1275,52955
,4,1276,52960
,4,1277,52965
,4,1278,52970
,4,1279,52975
,4,1280,52980
,4,1281,52985
,4,1282,52990
,4,1283,52995
,4,1284,53000
,4,1285,53005
,4,1286,53010
,4,1287,53015
,4,1288,53020
,4,1289,53025
,4,1290,53030
,4,1291,53035
,4,1292,53040
,4,1293,53045
,4,1294,53050
,4,1295,53055
,4,1296,53060
,4,1297,53065
,4,1298,53070
,4,1299,53075
,4,1300,53080
,4,1301,53085
,4,1302,53090
,4,1303,53095
,4,1304,53100
,4,1305,53105
,4,1306,53110
,4,1307,53115
,4,1308,53120
,4,1309,53125
,4,1310,53130
,4,1311,53135
,4,1312,53140
,4,1313,53145
,4,1314,53150
,4,1315,53155
,4,1316,53160
,4,1317,53165
,4,1318,53170
,4,1319,53175
,4,1320,53180
,4,1321,53185
,4,1322,53190
,4,1323,53195
,4,1324,53200
,4,1325,53205
,4,1326,53210
,4,1327,53215
,4,1328,53220
,4,1329,53225
,4,1330,53230
,4,1331,53235
,4,1332,53240
,4,1333,53245
,4,1334,53250
,4,1335,53255
,4,1336,53260
,4,1337,53265
,4,1338,53270
,4,1339,53275
,4,1340,53280
,4,1341,53285
,4,1342,53290
,4,1343,53295
,4,1344,53300
,4,1345,53305
,4,1346,53310
,4,1347,53315
,4,1348,53320
,4,1349,53325
,4,1350,53330
,4,1351,53335
,4,1352,53340
,4,1353,53345
,4,1354,53350
,4,1355,53355
,4,1356,53360
,4,1357,53365
,4,1358,53370
,4,1359,53375
,4,1360,53380
,4,1361,53385
,4,1362,53390
,4,1363,53395
,4,1364,53400
,4,1365,53405
,4,1366,53410
,4,1367,53415
,4,1368,53420
,4,1369,53425
,4,1370,53430
,4,1371,53435
,4,1372,53440
,4,1373,53445
,4,1374,53450
,4,1375,53455
,4,1376,53460
,4,1377,53465
,4,1378,53470
,4,1379,53475
,4,1380,53480
,4,1381,53485
,4,1382,53490
,4,1383,53495
,4,1384,53500
,4,1385,53505
,4,1386,53510
,4,1387,53515
,4,1388,53520
,4,1389,53525
,4,1390,53530
,4,1391,53535
,4,1392,53540
,4,1393,53545
,4,1394,53550
,4,1395,53555
,4,1396,53560
,4,1397,53565
,4,1398,53570
,4,1399,53575
,4,1400,53580
,4,1401,53585
,4,1402,53590
,4,1403,53595
,4,1404,53600
,4,1405,53605
,4,1406,53610
,4,1407,53615
,4,1408,53620
,4,1409,53625
,4,1410,53630
,4,1411,53635
,4,1412,53640
,4,1413,53645
,4,1414,53650
,4,1415,53655
,4,1416,53660
,4,1417,53665
,4,1418,53670
,4,1419,53675
,4,1420,53680
,4,1421,53685
,4,1422,53690
,4,1423,53695
,4,1424,53700
,4,1425,53705
,4,1426,53710
,4,1427,53715
,4,1428,53720
,4,1429,53725
,4,1430,53730
,4,1431,53735
,4,1432,53740
,4,1433,53745
,4,1434,53750
,4,1435,53755
,4,1436,53760
,4,1437,53765
,4,1438,53770
,4,1439,53775
,4,1440,53780
,4,1441,53785
,4,1442,53790
,4,1443,53795
,4,1444,53800
,4,1445,53805
,4,1446,53810
,4,1447,53815
,4,1448,53820
,4,1449,53825
,4,1450,53830
,4,1451,53835
,4,1452,53840
,4,1453,53845
,4,1454,53850
,4,1455,53855
,4,1456,53860
,4,1457,53865
,4,1458,53870
,4,1459,53875
,4,1460,53880
,4,1461,53885
,4,1462,53890
,4,1463,53895
,4,1464,53900
,4,1465,53905
,4,1466,53910
,4,1467,53915
,4,1468,53920
,4,1469,53925
,4,1470,53930
,4,1471,53935
,4,1472,53940
,4,1473,53945
,4,1474,53950
,4,1475,53955
,4,1476,53960
,4,1477,53965
,4,1478,53970
,4,1479,53975
,4,1480,53980
,4,1481,53985
,4,1482,53990
,4,1483,53995
,4,1484,54000
,4,1485,54005
,4,1486,54010
,4,1487,54015
,4,1488,54020
,4,1489,54025
,4,1490,54030
,4,1491,54035
,4,1492,54040
,4,1493,54045
,4,1494,54050
,4,1495,54055
,4,1496,54060
,4,1497,54065
,4,1498,54070
,4,1499,54075
,4,1500,54080
,4,1501,54085
,4,1502,54090
,4,1503,54095
,4,1504,54100
,4,1505,54105
,4,1506,54110
,4,1507,54115
,4,1508,54120
,4,1509,54125
,4,1510,54130
,4,1511,54135
,4,1512,54140
,4,1513,54145
,4,1514,54150
,4,1515,54155
,4,1516,54160
,4,1517,54165
,4,1518,54170
,4,1519,54175
,4,1520,54180
,4,1521,54185
,4,1522,54190
,4,1523,54195
,4,1524,54200
,4,1525,54205
,4,1526,54210
,4,1527,54215
,4,1528,54220
,4,1529,54225
,4,1530,54230
,4,1531,54235
,4,1532,54240
,4,1533,54245
,4,1534,54250
,4,1535,54255
,4,1536,54260
,4,1537,54265
,4,1538,54270
,4,1539,54275
,4,1540,54280
,4,1541,54285
,4,1542,54290
,4,1543,54295
,4,1544,54300
,4,1545,54305
,4,1546,54310
,4,1547,54315
,4,1548,54320
,4,1549,54325
,4,1550,54330
,4,1551,54335
,4,1552,54340
,4,1553,54345
,4,1554,54350
,4,1555,54355
,4,1556,54360
,4,1557,54365
,4,1558,54370
,4,1559,54375
,4,1560,54380
,4,1561,54385
,4,1562,54390
,4,1563,54395
,4,1564,54400
,4,1565,54405
,4,1566,54410
,4,1567,54415
,4,1568,54420
,4,1569,54425
,4,1570,54430
,4,1571,54435
,4,1572,54440
,4,1573,54445
,4,1574,54450
,4,1575,54455
,4,1576,54460
,4,1577,54465
,4,1578,54470
,4,1579,54475
,4,1580,54480
,4,1581,54485
,4,1582,54490
,4,1583,54495
,4,1584,54500
,4,1585,54505
,4,1586,54510
,4,1587,54515
,4,1588,54520
,4,1589,54525
,4,1590,54530
,4,1591,54535
,4,1592,54540
,4,1593,54545
,4,1594,54550
,4,1595,54555
,4,1596,54560
,4,1597,54565
,4,1598,54570
,4,1599,54575
,4,1600,54580
,4,1601,54585
,4,1602,54590
,4,1603,54595
,4,1604,54600
,4,1605,54605
,4,1606,54610
,4,1607,54615
,4,1608,54620
,4,1609,54625
,4,1610,54630
,4,1611,54635
,4,1612,54640
,4,1613,54645
,4,1614,54650
,4,1615,54655
,4,1616,54660
,4,1617,54665
,4,1618,54670
,4,1619,54675
,4,1620,54680
,4,1621,54685
,4,1622,54690
,4,1623,54695
,4,1624,54700
,4,1625,54705
,4,1626,54710
,4,1627,54715
,4,1628,54720
,4,1629,54725
,4,1630,54730
,4,1631,54735
,4,1632,54740
,4,1633,54745
,4,1634,54750
,4,1635,54755
,4,1636,54760
,4,1637,54765
,4,1638,54770
,4,1639,54775
,4,1640,54780
,4,1641,54785
,4,1642,54790
,4,1643,54795
,4,1644,54800
,4,1645,54805
,4,1646,54810
,4,1647,54815
,4,1648,54820
,4,1649,54825
,4,1650,54830
,4,1651,54835
,4,1652,54840
,4,1653,54845
,4,1654,54850
,4,1655,54855
,4,1656,54860
,4,1657,54865
,4,1658,54870
,4,1659,54875
,4,1660,54880
,4,1661,54885
,4,1662,54890
,4,1663,54895
,4,1664,54900
,4,1665,54905
,4,1666,54910
,4,1667,54915
,4,1668,54920
,4,1669,54925
,4,1670,54930
,4,1671,54935
,4,1672,54940
,4,1673,54945
,4,1674,54950
,4,1675,54955
,4,1676,54960
,4,1677,54965
,4,1678,54970
,4,1679,54975
,4,1680,54980
,4,1681,54985
,4,1682,54990
,4,1683,54995
,4,1684,55000
,4,1685,55005
,4,1686,55010
,4,1687,55015
,4,1688,55020
,4,1689,55025
,4,1690,55030
,4,1691,55035
,4,1692,55040
,4,1693,55045
,4,1694,55050
,4,1695,55055
,4,1696,55060
,4,1697,55065
,4,1698,55070
,4,1699,55075
,4,1700,55080
,4,1701,55085
,4,1702,55090
,4,1703,55095
,4,1704,55100
,4,1705,55105
,4,1706,55110
,4,1707,55115
,4,1708,55120
,4,1709,55125
,4,1710,55130
,4,1711,55135
,4,1712,55140
,4,1713,55145
,4,1714,55150
,4,1715,55155
,4,1716,55160
,4,1717,55165
,4,1718,55170
,4,1719,55175
,4,1720,55180
,4,1721,55185
,4,1722,55190
,4,1723,55195
,4,1724,55200
,4,1725,55205
,4,1726,55210
,4,1727,55215
,4,1728,55220
,4,1729,55225
,4,1730,55230
,4,1731,55235
,4,1732,55240
,4,1733,55245
,4,1734,55250
,4,1735,55255
,4,1736,55260
,4,1737,55265
,4,1738,55270
,4,1739,55275
,4,1740,55280
,4,1741,55285
,4,1742,55290
,4,1743,55295
,4,1744,55300
,4,1745,55305
,4,1746,55310
,4,1747,55315
,4,1748,55320
,4,1749,55325
,4,1750,55330
,4,1751,55335
,4,1752,55340
,4,1753,55345
,4,1754,55350
,4,1755,55355
,4,1756,55360
,4,1757,55365
,4,1758,55370
,4,1759,55375
,4,1760,55380
,4,1761,55385
,4,1762,55390
,4,1763,55395
,4,1764,55400
,4,1765,55405
,4,1766,55410
,4,1767,55415
,4,1768,55420
,4,1769,55425
,4,1770,55430
,4,1771,55435
,4,1772,55440
,4,1773,55445
,4,1774,55450
,4,1775,55455
,4,1776,55460
,4,1777,55465
,4,1778,55470
,4,1779,55475
,4,1780,55480
,4,1781,55485
,4,1782,55490
,4,1783,55495
,4,1784,55500
,4,1785,55505
,4,1786,55510
,4,1787,55515
,4,1788,55520
,4,1789,55525
,4,1790,55530
,4,1791,55535
,4,1792,55540
,4,1793,55545
,4,1794,55550
,4,1795,55555
,4,1796,55560
,4,1797,55565
,4,1798,55570
,4,1799,55575
,4,1800,55580
,4,1801,55585
,4,1802,55590
,4,1803,55595
,4,1804,55600
,4,1805,55605
,4,1806,55610
,4,1807,55615
,4,1808,55620
,4,1809,55625
,4,1810,55630
,4,1811,55635
,4,1812,55640
,4,1813,55645
,4,1814,55650
,4,1815,55655
,4,1816,55660
,4,1817,55665
,4,1818,55670
,4,1819,55675
,4,1820,55680
,4,1821,55685
,4,1822,55690
,4,1823,55695
,4,1824,55700
,4,1825,55705
,4,1826,55710
,4,1827,55715
,4,1828,55720
,4,1829,55725
,4,1830,55730
,4,1831,55735
,4,1832,55740
,4,1833,55745
,4,1834,55750
,4,1835,55755
,4,1836,55760
,4,1837,55765
,4,1838,55770
,4,1839,55775
,4,1840,55780
,4,1841,55785
,4,1842,55790
,4,1843,55795
,4,1844,55800
,4,1845,55805
,4,1846,55810
,4,1847,55815
,4,1848,55820
,4,1849,55825
,4,1850,55830
,4,1851,55835
,4,1852,55840
,4,1853,55845
,4,1854,55850
,4,1855,55855
,4,1856,55860
,4,1857,55865
,4,1858,55870
,4,1859,55875
,4,1860,55880
,4,1861,55885
,4,1862,55890
,4,1863,55895
,4,1864,55900
,4,1865,55905
,4,1866,55910
,4,1867,55915
,4,1868,55920
,4,1869,55925
,4,1870,55930
,4,1871,55935
,4,1872,55940
,4,1873,55945
,4,1874,55950
,4,1875,55955
,4,1876,55960
,4,1877,55965
,4,1878,55970
,4,1879,55975
,4,1880,55980
,4,1881,55985
,4,1882,55990
,4,1883,55995
,4,1884,56000
,4,1885,56005
,4,1886,56010
,4,1887,56015
,4,1888,56020
,4,1889,56025
,4,1890,56030
,4,1891,56035
,4,1892,56040
,4,1893,56045
,4,1894,56050
,4,1895,56055
,4,1896,56060
,4,1897,56065
,4,1898,56070
,4,1899,56075
,4,1900,56080
,4,1901,56085
,4,1902,56090
,4,1903,56095
,4,1904,56100
,4,1905,56105
,4,1906,56110
,4,1907,56115
,4,1908,56120
,4,1909,56125
,4,1910,56130
,4,1911,56135
,4,1912,56140
,4,1913,56145
,4,1914,56150
,4,1915,56155
,4,1916,56160
,4,1917,56165
,4,1918,56170
,4,1919,56175
,4,1920,56180
,4,1921,56185
,4,1922,56190
,4,1923,56195
,4,1924,56200
,4,1925,56205
,4,1926,56210
,4,1927,56215
,4,1928,56220
,4,1929,56225
,4,1930,56230
,4,1931,56235
,4,1932,56240
,4,1933,56245
,4,1934,56250
,4,1935,56255
,4,1936,56260
,4,1937,56265
,4,1938,56270
,4,1939,56275
,4,1940,56280
,4,1941,56285
,4,1942,56290
,4,1943,56295
,4,1944,56300
,4,1945,56305
,4,1946,56310
,4,1947,56315
,4,1948,56320
,4,1949,56325
,4,1950,56330
,4,1951,56335
,4,1952,56340
,4,1953,56345
,4,1954,56350
,4,1955,56355
,4,1956,56360
,4,1957,56365
,4,1958,56370
,4,1959,56375
,4,1960,56380
,4,1961,56385
,4,1962,56390
,4,1963,56395
,4,1964,56400
,4,1965,56405
,4,1966,56410
,4,1967,56415
,4,1968,56420
,4,1969,56425
,4,1970,56430
,4,1971,56435
,4,1972,56440
,4,1973,56445
,4,1974,56450
,4,1975,56455
,4,1976,56460
,4,1977,56465
,4,1978,56470
,4,1979,56475
,4,1980,56480
,4,1981,56485
,4,1982,56490
,4,1983,56495
,4,1984,56500
,4,1985,56505
,4,1986,56510
,4,1987,56515
,4,1988,56520
,4,1989,56525
,4,1990,56530
,4,1991,56535
,4,1992,56540
,4,1993,56545
,4,1994,56550
,4,1995,56555
,4,1996,56560
,4,1997,56565
,4,1998,56570
,4,1999,56575
,4,2000,56580
,4,2001,56585
,4,2002,56590
,4,2003,56595
,4,2004,56600
,4,2005,56605
,4,2006,56610
,4,2007,56615
,4,2008,56620
,4,2009,56625
,4,2010,56630
,4,2011,56635
,4,2012,56640
,4,2013,56645
,4,2014,56650
,4,2015,56655
,4,2016,56660
,4,2017,56665
,4,2018,56670
,4,2019,56675
,4,2020,56680
,4,2021,56685
,4,2022,56690
,4,2023,56695
,4,2024,56700
,4,2025,56705
,4,2026,56710
,4,2027,56715
,4,2028,56720
,4,2029,56725
,4,2030,56730
,4,2031,56735
,4,2032,56740
,4,2033,56745
,4,2034,56750
,4,2035,56755
,4,2036,56760
,4,2037,56765
,4,2038,56770
,4,2039,56775
,4,2040,56780
,4,2041,56785
,4,2042,56790
,4,2043,56795
,4,2044,56800
,4,2045,56805
,4,2046,56810
,4,2047,56815
,4,2048,56820
,4,2049,56825
,4,2050,56830
,4,2051,56835
,4,2052,56840
,4,2053,56845
,4,2054,56850
,4,2055,56855
,4,2056,56860
,4,2057,56865
,4,2058,56870
,4,2059,56875
,4,2060,56880
,4,2061,56885
,4,2062,56890
,4,2063,56895
,4,2064,56900
,4,2065,56905
,4,2066,56910
,4,2067,56915
,4,2068,56920
,4,2069,56925
,4,2070,56930
,4,2071,56935
,4,2072,56940
,4,2073,56945
,4,2074,56950
,4,2075,56955
,4,2076,56960
,4,2077,56965
,4,2078,56970
,4,2079,56975
,4,2080,56980
,4,2081,56985
,4,2082,56990
,4,2083,56995
,4,2084,57000
,4,2085,57005
,4,2086,57010
,4,2087,57015
,4,2088,57020
,4,2089,57025
,4,2090,57030
,4,2091,57035
,4,2092,57040
,4,2093,57045
,4,2094,57050
,4,2095,57055
,4,2096,57060
,4,2097,57065
,4,2098,57070
,4,2099,57075
,4,2100,57080
,4,2101,57085
,4,2102,57090
,4,2103,57095
,4,2104,57100
,4,2105,57105
,4,2106,57110
,4,2107,57115
,4,2108,57120
,4,2109,57125
,4,2110,57130
,4,2111,57135
,4,2112,57140
,4,2113,57145
,4,2114,57150
,4,2115,57155
,4,2116,57160
,4,2117,57165
,4,2118,57170
,4,2119,57175
,4,2120,57180
,4,2121,57185
,4,2122,57190
,4,2123,57195
,4,2124,57200
,4,2125,57205
,4,2126,57210
,4,2127,57215
,4,2128,57220
,4,2129,57225
,4,2130,57230
,4,2131,57235
,4,2132,57240
,4,2133,57245
,4,2134,57250
,4,2135,57255
,4,2136,57260
,4,2137,57265
,4,2138,57270
,4,2139,57275
,4,2140,57280
,4,2141,57285
,4,2142,57290
,4,2143,57295
,4,2144,57300
,4,2145,57305
,4,2146,57310
,4,2147,57315
,4,2148,57320
,4,2149,57325
,4,2150,57330
,4,2151,57335
,4,2152,57340
,4,2153,57345
,4,2154,57350
,4,2155,57355
,4,2156,57360
,4,2157,57365
,4,2158,57370
,4,2159,57375
,4,2160,57380
,4,2161,57385
,4,2162,57390
,4,2163,57395
,4,2164,57400
,4,2165,57405
,4,2166,57410
,4,2167,57415
,4,2168,57420
,4,2169,57425
,4,2170,57430
,4,2171,57435
,4,2172,57440
,4,2173,57445
,4,2174,57450
,4,2175,57455
,4,2176,57460
,4,2177,57465
,4,2178,57470
,4,2179,57475
,4,2180,57480
,4,2181,57485
,4,2182,57490
,4,2183,57495
,4,2184,57500
,4,2185,57505
,4,2186,57510
,4,2187,57515
,4,2188,57520
,4,2189,57525
,4,2190,57530
,4,2191,57535
,4,2192,57540
,4,2193,57545
,4,2194,57550
,4,2195,57555
,4,2196,57560
,4,2197,57565
,4,2198,57570
,4,2199,57575
,4,2200,57580
,4,2201,57585
,4,2202,57590
,4,2203,57595
,4,2204,57600
,4,2205,57605
,4,2206,57610
,4,2207,57615
,4,2208,57620
,4,2209,57625
,4,2210,57630
,4,2211,57635
,4,2212,57640
,4,2213,57645
,4,2214,57650
,4,2215,57655
,4,2216,57660
,4,2217,57665
,4,2218,57670
,4,2219,57675
,4,2220,57680
,4,2221,57685
,4,2222,57690
,4,2223,57695
,4,2224,57700
,4,2225,57705
,4,2226,57710
,4,2227,57715
,4,2228,57720
,4,2229,57725
,4,2230,57730
,4,2231,57735
,4,2232,57740
,4,2233,57745
,4,2234,57750
,4,2235,57755
,4,2236,57760
,4,2237,57765
,4,2238,57770
,4,2239,57775
,4,2240,57780
,4,2241,57785
,4,2242,57790
,4,2243,57795
,4,2244,57800
,4,2245,57805
,4,2246,57810
,4,2247,57815
,4,2248,57820
,4,2249,57825
,4,2250,57830
,4,2251,57835
,4,2252,57840
,4,2253,57845
,4,2254,57850
,4,2255,57855
,4,2256,57860
,4,2257,57865
,4,2258,57870
,4,2259,57875
,4,2260,57880
,4,2261,57885
,4,2262,57890
,4,2263,57895
,4,2264,57900
,4,2265,57905
,4,2266,57910
,4,2267,57915
,4,2268,57920
,4,2269,57925
,4,2270,57930
,4,2271,57935
,4,2272,57940
,4,2273,57945
,4,2274,57950
,4,2275,57955
,4,2276,57960
,4,2277,57965
,4,2278,57970
,4,2279,57975
,4,2280,57980
,4,2281,57985
,4,2282,57990
,4,2283,57995
,4,2284,58000
,4,2285,58005
,4,2286,58010
,4,2287,58015
,4,2288,58020
,4,2289,58025
,4,2290,58030
,4,2291,58035
,4,2292,58040
,4,2293,58045
,4,2294,58050
,4,2295,58055
,4,2296,58060
,4,2297,58065
,4,2298,58070
,4,2299,58075
,4,2300,58080
,4,2301,58085
,4,2302,58090
,4,2303,58095
,4,2304,58100
,4,2305,58105
,4,2306,58110
,4,2307,58115
,4,2308,58120
,4,2309,58125
,4,2310,58130
,4,2311,58135
,4,2312,58140
,4,2313,58145
,4,2314,58150
,4,2315,58155
,4,2316,58160
,4,2317,58165
,4,2318,58170
,4,2319,58175
,4,2320,58180
,4,2321,58185
,4,2322,58190
,4,2323,58195
,4,2324,58200
,4,2325,58205
,4,2326,58210
,4,2327,58215
,4,2328,58220
,4,2329,58225
,4,2330,58230
,4,2331,58235
,4,2332,58240
,4,2333,58245
,4,2334,58250
,4,2335,58255
,4,2336,58260
,4,2337,58265
,4,2338,58270
,4,2339,58275
,4,2340,58280
,4,2341,58285
,4,2342,58290
,4,2343,58295
,4,2344,58300
,4,2345,58305
,4,2346,58310
,4,2347,58315
,4,2348,58320
,4,2349,58325
,4,2350,58330
,4,2351,58335
,4,2352,58340
,4,2353,58345
,4,2354,58350
,4,2355,58355
,4,2356,58360
,4,2357,58365
,4,2358,58370
,4,2359,58375
,4,2360,58380
,4,2361,58385
,4,2362,58390
,4,2363,58395
,4,2364,58400
,4,2365,58405
,4,2366,58410
,4,2367,58415
,4,2368,58420
,4,2369,58425
,4,2370,58430
,4,2371,58435
,4,2372,58440
,4,2373,58445
,4,2374,58450
,4,2375,58455
,4,2376,58460
,4,2377,58465
,4,2378,58470
,4,2379,58475
,4,2380,58480
,4,2381,58485
,4,2382,58490
,4,2383,58495
,4,2384,58500
,4,2385,58505
,4,2386,58510
,4,2387,58515
,4,2388,58520
,4,2389,58525
,4,2390,58530
,4,2391,58535
,4,2392,58540
,4,2393,58545
,4,2394,58550
,4,2395,58555
,4,2396,58560
,4,2397,58565
,4,2398,58570
,4,2399,58575
,4,2400,58580
,4,2401,58585
,4,2402,58590
,4,2403,58595
,4,2404,58600
,4,2405,58605
,4,2406,58610
,4,2407,58615
,4,2408,58620
,4,2409,58625
,4,2410,58630
,4,2411,58635
,4,2412,58640
,4,2413,58645
,4,2414,58650
,4,2415,58655
,4,2416,58660
,4,2417,58665
,4,2418,58670
,4,2419,58675
,4,2420,58680
,4,2421,58685
,4,2422,58690
,4,2423,58695
,4,2424,58700
,4,2425,58705
,4,2426,58710
,4,2427,58715
,4,2428,58720
,4,2429,58725
,4,2430,58730
,4,2431,58735
,4,2432,58740
,4,2433,58745
,4,2434,58750
,4,2435,58755
,4,2436,58760
,4,2437,58765
,4,2438,58770
,4,2439,58775
,4,2440,58780
,4,2441,58785
,4,2442,58790
,4,2443,58795
,4,2444,58800
,4,2445,58805
,4,2446,58810
,4,2447,58815
,4,2448,58820
,4,2449,58825
,4,2450,58830
,4,2451,58835
,4,2452,58840
,4,2453,58845
,4,2454,58850
,4,2455,58855
,4,2456,58860
,4,2457,58865
,4,2458,58870
,4,2459,58875
,4,2460,58880
,4,2461,58885
,4,2462,58890
,4,2463,58895
,4,2464,58900
,4,2465,58905
,4,2466,58910
,4,2467,58915
,4,2468,58920
,4,2469,58925
,4,2470,58930
,4,2471,58935
,4,2472,58940
,4,2473,58945
,4,2474,58950
,4,2475,58955
,4,2476,58960
,4,2477,58965
,4,2478,58970
,4,2479,58975
,4,2480,58980
,4,2481,58985
,4,2482,58990
,4,2483,58995
,4,2484,59000
,4,2485,59005
,4,2486,59010
,4,2487,59015
,4,2488,59020
,4,2489,59025
,4,2490,59030
,4,2491,59035
,4,2492,59040
,4,2493,59045
,4,2494,59050
,4,2495,59055
,4,2496,59060
,4,2497,59065
,4,2498,59070
,4,2499,59075
,4,2500,59080
,4,2501,59085
,4,2502,59090
,4,2503,59095
,4,2504,59100
,4,2505,59105
,4,2506,59110
,4,2507,59115
,4,2508,59120
,4,2509,59125
,4,2510,59130
,4,2511,59135
,4,2512,59140
,4,2513,59145
,4,2514,59150
,4,2515,59155
,4,2516,59160
,4,2517,59165
,4,2518,59170
,4,2519,59175
,4,2520,59180
,4,2521,59185
,4,2522,59190
,4,2523,59195
,4,2524,59200
,4,2525,59205
,4,2526,59210
,4,2527,59215
,4,2528,59220
,4,2529,59225
,4,2530,59230
,4,2531,59235
,4,2532,59240
,4,2533,59245
,4,2534,59250
,4,2535,59255
,4,2536,59260
,4,2537,59265
,4,2538,59270
,4,2539,59275
,4,2540,59280
,4,2541,59285
,4,2542,59290
,4,2543,59295
,4,2544,59300
,4,2545,59305
,4,2546,59310
,4,2547,59315
,4,2548,59320
,4,2549,59325
,4,2550,59330
,4,2551,59335
,4,2552,59340
,4,2553,59345
,4,2554,59350
,4,2555,59355
,4,2556,59360
,4,2557,59365
,4,2558,59370
,4,2559,59375
,4,2560,59380
,4,2561,59385
,4,2562,59390
,4,2563,59395
,4,2564,59400
,4,2565,59405
,4,2566,59410
,4,2567,59415
,4,2568,59420
,4,2569,59425
,4,2570,59430
,4,2571,59435
,4,2572,59440
,4,2573,59445
,4,2574,59450
,4,2575,59455
,4,2576,59460
,4,2577,59465
,4,2578,59470
,4,2579,59475
,4,2580,59480
,4,2581,59485
,4,2582,59490
,4,2583,59495
,4,2584,59500
,4,2585,59505
,4,2586,59510
,4,2587,59515
,4,2588,59520
,4,2589,59525
,4,2590,59530
,4,2591,59535
,4,2592,59540
,4,2593,59545
,4,2594,59550
,4,2595,59555
,4,2596,59560
,4,2597,59565
,4,2598,59570
,4,2599,59575
,4,2600,59580
,4,2601,59585
,4,2602,59590
,4,2603,59595
,4,2604,59600
,4,2605,59605
,4,2606,59610
,4,2607,59615
,4,2608,59620
,4,2609,59625
,4,2610,59630
,4,2611,59635
,4,2612,59640
,4,2613,59645
,4,2614,59650
,4,2615,59655
,4,2616,59660
,4,2617,59665
,4,2618,59670
,4,2619,59675
,4,2620,59680
,4,2621,59685
,4,2622,59690
,4,2623,59695
,4,2624,59700
,4,2625,59705
,4,2626,59710
,4,2627,59715
,4,2628,59720
,4,2629,59725
,4,2630,59730
,4,2631,59735
,4,2632,59740
,4,2633,59745
,4,2634,59750
,4,2635,59755
,4,2636,59760
,4,2637,59765
,4,2638,59770
,4,2639,59775
,4,2640,59780
,4,2641,59785
,4,2642,59790
,4,2643,59795
,4,2644,59800
,4,2645,59805
,4,2646,59810
,4,2647,59815
,4,2648,59820
,4,2649,59825
,4,2650,59830
,4,2651,59835
,4,2652,59840
,4,2653,59845
,4,2654,59850
,4,2655,59855
,4,2656,59860
,4,2657,59865
,4,2658,59870
,4,2659,59875
,4,2660,59880
,4,2661,59885
,4,2662,59890
,4,2663,59895
,4,2664,59900
,4,2665,59905
,4,2666,59910
,4,2667,59915
,4,2668,59920
,4,2669,59925
,4,2670,59930
,4,2671,59935
,4,2672,59940
,4,2673,59945
,4,2674,59950
,4,2675,59955
,4,2676,59960
,4,2677,59965
,4,2678,59970
,4,2679,59975
,4,2680,59980
,4,2681,59985
,4,2682,59990
,4,2683,59995
,4,2684,60000
,4,2685,60005
,4,2686,60010
,4,2687,60015
,4,2688,60020
,4,2689,60025
,4,2690,60030
,4,2691,60035
,4,2692,60040
,4,2693,60045
,4,2694,60050
,4,2695,60055
,4,2696,60060
,4,2697,60065
,4,2698,60070
,4,2699,60075
,4,2700,60080
,4,2701,60085
,4,2702,60090
,4,2703,60095
,4,2704,60100
,4,2705,60105
,4,2706,60110
,4,2707,60115
,4,2708,60120
,4,2709,60125
,4,2710,60130
,4,2711,60135
,4,2712,60140
,4,2713,60145
,4,2714,60150
,4,2715,60155
,4,2716,60160
,4,2717,60165
,4,2718,60170
,4,2719,60175
,4,2720,60180
,4,2721,60185
,4,2722,60190
,4,2723,60195
,4,2724,60200
,4,2725,60205
,4,2726,60210
,4,2727,60215
,4,2728,60220
,4,2729,60225
,4,2730,60230
,4,2731,60235
,4,2732,60240
,4,2733,60245
,4,2734,60250
,4,2735,60255
,4,2736,60260
,4,2737,60265
,4,2738,60270
,4,2739,60275
,4,2740,60280
,4,2741,60285
,4,2742,60290
,4,2743,60295
,4,2744,60300
,4,2745,60305
,4,2746,60310
,4,2747,60315
,4,2748,60320
,4,2749,60325
,4,2750,60330
,4,2751,60335
,4,2752,60340
,4,2753,60345
,4,2754,60350
,4,2755,60355
,4,2756,60360
,4,2757,60365
,4,2758,60370
,4,2759,60375
,4,2760,60380
,4,2761,60385
,4,2762,60390
,4,2763,60395
,4,2764,60400
,4,2765,60405
,4,2766,60410
,4,2767,60415
,4,2768,60420
,4,2769,60425
,4,2770,60430
,4,2771,60435
,4,2772,60440
,4,2773,60445
,4,2774,60450
,4,2775,60455
,4,2776,60460
,4,2777,60465
,4,2778,60470
,4,2779,60475
,4,2780,60480
,4,2781,60485
,4,2782,60490
,4,2783,60495
,4,2784,60500
,4,2785,60505
,4,2786,60510
,4,2787,60515
,4,2788,60520
,4,2789,60525
,4,2790,60530
,4,2791,60535
,4,2792,60540
,4,2793,60545
,4,2794,60550
,4,2795,60555
,4,2796,60560
,4,2797,60565
,4,2798,60570
,4,2799,60575
,4,2800,60580
,4,2801,60585
,4,2802,60590
,4,2803,60595
,4,2804,60600
,4,2805,60605
,4,2806,60610
,4,2807,60615
,4,2808,60620
,4,2809,60625
,4,2810,60630
,4,2811,60635
,4,2812,60640
,4,2813,60645
,4,2814,60650
,4,2815,60655
,4,2816,60660
,4,2817,60665
,4,2818,60670
,4,2819,60675
,4,2820,60680
,4,2821,60685
,4,2822,60690
,4,2823,60695
,4,2824,60700
,4,2825,60705
,4,2826,60710
,4,2827,60715
,4,2828,60720
,4,2829,60725
,4,2830,60730
,4,2831,60735
,4,2832,60740
,4,2833,60745
,4,2834,60750
,4,2835,60755
,4,2836,60760
,4,2837,60765
,4,2838,60770
,4,2839,60775
,4,2840,60780
,4,2841,60785
,4,2842,60790
,4,2843,60795
,4,2844,60800
,4,2845,60805
,4,2846,60810
,4,2847,60815
,4,2848,60820
,4,2849,60825
,4,2850,60830
,4,2851,60835
,4,2852,60840
,4,2853,60845
,4,2854,60850
,4,2855,60855
,4,2856,60860
,4,2857,60865
,4,2858,60870
,4,2859,60875
,4,2860,60880
,4,2861,60885
,4,2862,60890
,4,2863,60895
,4,2864,60900
,4,2865,60905
,4,2866,60910
,4,2867,60915
,4,2868,60920
,4,2869,60925
,4,2870,60930
,4,2871,60935
,4,2872,60940
,4,2873,60945
,4,2874,60950
,4,2875,60955
,4,2876,60960
,4,2877,60965
,4,2878,60970
,4,2879,60975
,4,2880,60980
,4,2881,60985
,4,2882,60990
,4,2883,60995
,4,2884,61000
,4,2885,61005
,4,2886,61010
,4,2887,61015
,4,2888,61020
,4,2889,61025
,4,2890,61030
,4,2891,61035
,4,2892,61040
,4,2893,61045
,4,2894,61050
,4,2895,61055
,4,2896,61060
,4,2897,61065
,4,2898,61070
,4,2899,61075
,4,2900,61080
,4,2901,61085
,4,2902,61090
,4,2903,61095
,4,2904,61100
,4,2905,61105
,4,2906,61110
,4,2907,61115
,4,2908,61120
,4,2909,61125
,4,2910,61130
,4,2911,61135
,4,2912,61140
,4,2913,61145
,4,2914,61150
,4,2915,61155
,4,2916,61160
,4,2917,61165
,4,2918,61170
,4,2919,61175
,4,2920,61180
,4,2921,61185
,4,2922,61190
,4,2923,61195
,4,2924,61200
,4,2925,61205
,4,2926,61210
,4,2927,61215
,4,2928,61220
,4,2929,61225
,4,2930,61230
,4,2931,61235
,4,2932,61240
,4,2933,61245
,4,2934,61250
,4,2935,61255
,4,2936,61260
,4,2937,61265
,4,2938,61270
,4,2939,61275
,4,2940,61280
,4,2941,61285
,4,2942,61290
,4,2943,61295
,4,2944,61300
,4,2945,61305
,4,2946,61310
,4,2947,61315
,4,2948,61320
,4,2949,61325
,4,2950,61330
,4,2951,61335
,4,2952,61340
,4,2953,61345
,4,2954,61350
,4,2955,61355
,4,2956,61360
,4,2957,61365
,4,2958,61370
,4,2959,61375
,4,2960,61380
,4,2961,61385
,4,2962,61390
,4,2963,61395
,4,2964,61400
,4,2965,61405
,4,2966,61410
,4,2967,61415
,4,2968,61420
,4,2969,61425
,4,2970,61430
,4,2971,61435
,4,2972,61440
,4,2973,61445
,4,2974,61450
,4,2975,61455
,4,2976,61460
,4,2977,61465
,4,2978,61470
,4,2979,61475
,4,2980,61480
,4,2981,61485
,4,2982,61490
,4,2983,61495
,4,2984,61500
,4,2985,61505
,4,2986,61510
,4,2987,61515
,4,2988,61520
,4,2989,61525
,4,2990,61530
,4,2991,61535
,4,2992,61540
,4,2993,61545
,4,2994,61550
,4,2995,61555
,4,2996,61560
,4,2997,61565
,4,2998,61570
,4,2999,61575
,4,3000,61580
,4,3001,61585
,4,3002,61590
,4,3003,61595
,4,3004,61600
,4,3005,61605
,4,3006,61610
,4,3007,61615
,4,3008,61620
,4,3009,61625
,4,3010,61630
,4,3011,61635
,4,3012,61640
,4,3013,61645
,4,3014,61650
,4,3015,61655
,4,3016,61660
,4,3017,61665
,4,3018,61670
,4,3019,61675
,4,3020,61680
,4,3021,61685
,4,3022,61690
,4,3023,61695
,4,3024,61700
,4,3025,61705
,4,3026,61710
,4,3027,61715
,4,3028,61720
,4,3029,61725
,4,3030,61730
,4,3031,61735
,4,3032,61740
,4,3033,61745
,4,3034,61750
,4,3035,61755
,4,3036,61760
,4,3037,61765
,4,3038,61770
,4,3039,61775
,4,3040,61780
,4,3041,61785
,4,3042,61790
,4,3043,61795
,4,3044,61800
,4,3045,61805
,4,3046,61810
,4,3047,61815
,4,3048,61820
,4,3049,61825
,4,3050,61830
,4,3051,61835
,4,3052,61840
,4,3053,61845
,4,3054,61850
,4,3055,61855
,4,3056,61860
,4,3057,61865
,4,3058,61870
,4,3059,61875
,4,3060,61880
,4,3061,61885
,4,3062,61890
,4,3063,61895
,4,3064,61900
,4,3065,61905
,4,3066,61910
,4,3067,61915
,4,3068,61920
,4,3069,61925
,4,3070,61930
,4,3071,61935
,4,3072,61940
,4,3073,61945
,4,3074,61950
,4,3075,61955
,4,3076,61960
,4,3077,61965
,4,3078,61970
,4,3079,61975
,4,3080,61980
,4,3081,61985
,4,3082,61990
,4,3083,61995
,4,3084,62000
,4,3085,62005
,4,3086,62010
,4,3087,62015
,4,3088,62020
,4,3089,62025
,4,3090,62030
,4,3091,62035
,4,3092,62040
,4,3093,62045
,4,3094,62050
,4,3095,62055
,4,3096,62060
,4,3097,62065
,4,3098,62070
,4,3099,62075
,4,3100,62080
,4,3101,62085
,4,3102,62090
,4,3103,62095
,4,3104,62100
,4,3105,62105
,4,3106,62110
,4,3107,62115
,4,3108,62120
,4,3109,62125
,4,3110,62130
,4,3111,62135
,4,3112,62140
,4,3113,62145
,4,3114,62150
,4,3115,62155
,4,3116,62160
,4,3117,62165
,4,3118,62170
,4,3119,62175
,4,3120,62180
,4,3121,62185
,4,3122,62190
,4,3123,62195
,4,3124,62200
,4,3125,62205
,4,3126,62210
,4,3127,62215
,4,3128,62220
,4,3129,62225
,4,3130,62230
,4,3131,62235
,4,3132,62240
,4,3133,62245
,4,3134,62250
,4,3135,62255
,4,3136,62260
,4,3137,62265
,4,3138,62270
,4,3139,62275
,4,3140,62280
,4,3141,62285
,4,3142,62290
,4,3143,62295
,4,3144,62300
,4,3145,62305
,4,3146,62310
,4,3147,62315
,4,3148,62320
,4,3149,62325
,4,3150,62330
,4,3151,62335
,4,3152,62340
,4,3153,62345
,4,3154,62350
,4,3155,62355
,4,3156,62360
,4,3157,62365
,4,3158,62370
,4,3159,62375
,4,3160,62380
,4,3161,62385
,4,3162,62390
,4,3163,62395
,4,3164,62400
,4,3165,62405
,4,3166,62410
,4,3167,62415
,4,3168,62420
,4,3169,62425
,4,3170,62430
,4,3171,62435
,4,3172,62440
,4,3173,62445
,4,3174,62450
,4,3175,62455
,4,3176,62460
,4,3177,62465
,4,3178,62470
,4,3179,62475
,4,3180,62480
,4,3181,62485
,4,3182,62490
,4,3183,62495
,4,3184,62500
,4,3185,62505
,4,3186,62510
,4,3187,62515
,4,3188,62520
,4,3189,62525
,4,3190,62530
,4,3191,62535
,4,3192,62540
,4,3193,62545
,4,3194,62550
,4,3195,62555
,4,3196,62560
,4,3197,62565
,4,3198,62570
,4,3199,62575
,4,3200,62580
,4,3201,62585
,4,3202,62590
,4,3203,62595
,4,3204,62600
,4,3205,62605
,4,3206,62610
,4,3207,62615
,4,3208,62620
,4,3209,62625
,4,3210,62630
,4,3211,62635
,4,3212,62640
,4,3213,62645
,4,3214,62650
,4,3215,62655
,4,3216,62660
,4,3217,62665
,4,3218,62670
,4,3219,62675
,4,3220,62680
,4,3221,62685
,4,3222,62690
,4,3223,62695
,4,3224,62700
,4,3225,62705
,4,3226,62710
,4,3227,62715
,4,3228,62720
,4,3229,62725
,4,3230,62730
,4,3231,62735
,4,3232,62740
,4,3233,62745
,4,3234,62750
,4,3235,62755
,4,3236,62760
,4,3237,62765
,4,3238,62770
,4,3239,62775
,4,3240,62780
,4,3241,62785
,4,3242,62790
,4,3243,62795
,4,3244,62800
,4,3245,62805
,4,3246,62810
,4,3247,62815
,4,3248,62820
,4,3249,62825
,4,3250,62830
,4,3251,62835
,4,3252,62840
,4,3253,62845
,4,3254,62850
,4,3255,62855
,4,3256,62860
,4,3257,62865
,4,3258,62870
,4,3259,62875
,4,3260,62880
,4,3261,62885
,4,3262,62890
,4,3263,62895
,4,3264,62900
,4,3265,62905
,4,3266,62910
,4,3267,62915
,4,3268,62920
,4,3269,62925
,4,3270,62930
,4,3271,62935
,4,3272,62940
,4,3273,62945
,4,3274,62950
,4,3275,62955
,4,3276,62960
,4,3277,62965
,4,3278,62970
,4,3279,62975
,4,3280,62980
,4,3281,62985
,4,3282,62990
,4,3283,62995
,4,3284,63000
,4,3285,63005
,4,3286,63010
,4,3287,63015
,4,3288,63020
,4,3289,63025
,4,3290,63030
,4,3291,63035
,4,3292,63040
,4,3293,63045
,4,3294,63050
,4,3295,63055
,4,3296,63060
,4,3297,63065
,4,3298,63070
,4,3299,63075
,4,3300,63080
,4,3301,63085
,4,3302,63090
,4,3303,63095
,4,3304,63100
,4,3305,63105
,4,3306,63110
,4,3307,63115
,4,3308,63120
,4,3309,63125
,4,3310,63130
,4,3311,63135
,4,3312,63140
,4,3313,63145
,4,3314,63150
,4,3315,63155
,4,3316,63160
,4,3317,63165
,4,3318,63170
,4,3319,63175
,4,3320,63180
,4,3321,63185
,4,3322,63190
,4,3323,63195
,4,3324,63200
,4,3325,63205
,4,3326,63210
,4,3327,63215
,4,3328,63220
,4,3329,63225
,4,3330,63230
,4,3331,63235
,4,3332,63240
,4,3333,63245
,4,3334,63250
,4,3335,63255
,4,3336,63260
,4,3337,63265
,4,3338,63270
,4,3339,63275
,4,3340,63280
,4,3341,63285
,4,3342,63290
,4,3343,63295
,4,3344,63300
,4,3345,63305
,4,3346,63310
,4,3347,63315
,4,3348,63320
,4,3349,63325
,4,3350,63330
,4,3351,63335
,4,3352,63340
,4,3353,63345
,4,3354,63350
,4,3355,63355
,4,3356,63360
,4,3357,63365
,4,3358,63370
,4,3359,63375
,4,3360,63380
,4,3361,63385
,4,3362,63390
,4,3363,63395
,4,3364,63400
,4,3365,63405
,4,3366,63410
,4,3367,63415
,4,3368,63420
,4,3369,63425
,4,3370,63430
,4,3371,63435
,4,3372,63440
,4,3373,63445
,4,3374,63450
,4,3375,63455
,4,3376,63460
,4,3377,63465
,4,3378,63470
,4,3379,63475
,4,3380,63480
,4,3381,63485
,4,3382,63490
,4,3383,63495
,4,3384,63500
,4,3385,63505
,4,3386,63510
,4,3387,63515
,4,3388,63520
,4,3389,63525
,4,3390,63530
,4,3391,63535
,4,3392,63540
,4,3393,63545
,4,3394,63550
,4,3395,63555
,4,3396,63560
,4,3397,63565
,4,3398,63570
,4,3399,63575
,4,3400,63580
,4,3401,63585
,4,3402,63590
,4,3403,63595
,4,3404,63600
,4,3405,63605
,4,3406,63610
,4,3407,63615
,4,3408,63620
,4,3409,63625
,4,3410,63630
,4,3411,63635
,4,3412,63640
,4,3413,63645
,4,3414,63650
,4,3415,63655
,4,3416,63660
,4,3417,63665
,4,3418,63670
,4,3419,63675
,4,3420,63680
,4,3421,63685
,4,3422,63690
,4,3423,63695
,4,3424,63700
,4,3425,63705
,4,3426,63710
,4,3427,63715
,4,3428,63720
,4,3429,63725
,4,3430,63730
,4,3431,63735
,4,3432,63740
,4,3433,63745
,4,3434,63750
,4,3435,63755
,4,3436,63760
,4,3437,63765
,4,3438,63770
,4,3439,63775
,4,3440,63780
,4,3441,63785
,4,3442,63790
,4,3443,63795
,4,3444,63800
,4,3445,63805
,4,3446,63810
,4,3447,63815
,4,3448,63820
,4,3449,63825
,4,3450,63830
,4,3451,63835
,4,3452,63840
,4,3453,63845
,4,3454,63850
,4,3455,63855
,4,3456,63860
,4,3457,63865
,4,3458,63870
,4,3459,63875
,4,3460,63880
,4,3461,63885
,4,3462,63890
,4,3463,63895
,4,3464,63900
,4,3465,63905
,4,3466,63910
,4,3467,63915
,4,3468,63920
,4,3469,63925
,4,3470,63930
,4,3471,63935
,4,3472,63940
,4,3473,63945
,4,3474,63950
,4,3475,63955
,4,3476,63960
,4,3477,63965
,4,3478,63970
,4,3479,63975
,4,3480,63980
,4,3481,63985
,4,3482,63990
,4,3483,63995
,4,3484,64000
,4,3485,64005
,4,3486,64010
,4,3487,64015
,4,3488,64020
,4,3489,64025
,4,3490,64030
,4,3491,64035
,4,3492,64040
,4,3493,64045
,4,3494,64050
,4,3495,64055
,4,3496,64060
,4,3497,64065
,4,3498,64070
,4,3499,64075
,4,3500,64080
,4,3501,64085
,4,3502,64090
,4,3503,64095
,4,3504,64100
,4,3505,64105
,4,3506,64110
,4,3507,64115
,4,3508,64120
,4,3509,64125
,4,3510,64130
,4,3511,64135
,4,3512,64140
,4,3513,64145
,4,3514,64150
,4,3515,64155
,4,3516,64160
,4,3517,64165
,4,3518,64170
,4,3519,64175
,4,3520,64180
,4,3521,64185
,4,3522,64190
,4,3523,64195
,4,3524,64200
,4,3525,64205
,4,3526,64210
,4,3527,64215
,4,3528,64220
,4,3529,64225
,4,3530,64230
,4,3531,64235
,4,3532,64240
,4,3533,64245
,4,3534,64250
,4,3535,64255
,4,3536,64260
,4,3537,64265
,4,3538,64270
,4,3539,64275
,4,3540,64280
,4,3541,64285
,4,3542,64290
,4,3543,64295
,4,3544,64300
,4,3545,64305
,4,3546,64310
,4,3547,64315
,4,3548,64320
,4,3549,64325
,4,3550,64330
,4,3551,64335
,4,3552,64340
,4,3553,64345
,4,3554,64350
,4,3555,64355
,4,3556,64360
,4,3557,64365
,4,3558,64370
,4,3559,64375
,4,3560,64380
,4,3561,64385
,4,3562,64390
,4,3563,64395
,4,3564,64400
,4,3565,64405
,4,3566,64410
,4,3567,64415
,4,3568,64420
,4,3569,64425
,4,3570,64430
,4,3571,64435
,4,3572,64440
,4,3573,64445
,4,3574,64450
,4,3575,64455
,4,3576,64460
,4,3577,64465
,4,3578,64470
,4,3579,64475
,4,3580,64480
,4,3581,64485
,4,3582,64490
,4,3583,64495
,4,3584,64500
,4,3585,64505
,4,3586,64510
,4,3587,64515
,4,3588,64520
,4,3589,64525
,4,3590,64530
,4,3591,64535
,4,3592,64540
,4,3593,64545
,4,3594,64550
,4,3595,64555
,4,3596,64560
,4,3597,64565
,4,3598,64570
,4,3599,64575
,4,3600,64580
,4,3601,64585
,4,3602,64590
,4,3603,64595
,4,3604,64600
,4,3605,64605
,4,3606,64610
,4,3607,64615
,4,3608,64620
,4,3609,64625
,4,3610,64630
,4,3611,64635
,4,3612,64640
,4,3613,64645
,4,3614,64650
,4,3615,64655
,4,3616,64660
,4,3617,64665
,4,3618,64670
,4,3619,64675
,4,3620,64680
,4,3621,64685
,4,3622,64690
,4,3623,64695
,4,3624,64700
,4,3625,64705
,4,3626,64710
,4,3627,64715
,4,3628,64720
,4,3629,64725
,4,3630,64730
,4,3631,64735
,4,3632,64740
,4,3633,64745
,4,3634,64750
,4,3635,64755
,4,3636,64760
,4,3637,64765
,4,3638,64770
,4,3639,64775
,4,3640,64780
,4,3641,64785
,4,3642,64790
,4,3643,64795
,4,3644,64800
,4,3645,64805
,4,3646,64810
,4,3647,64815
,4,3648,64820
,4,3649,64825
,4,3650,64830
,4,3651,64835
,4,3652,64840
,4,3653,64845
,4,3654,64850
,4,3655,64855
,4,3656,64860
,4,3657,64865
,4,3658,64870
,4,3659,64875
,4,3660,64880
,4,3661,64885
,4,3662,64890
,4,3663,64895
,4,3664,64900
,4,3665,64905
,4,3666,64910
,4,3667,64915
,4,3668,64920
,4,3669,64925
,4,3670,64930
,4,3671,64935
,4,3672,64940
,4,3673,64945
,4,3674,64950
,4,3675,64955
,4,3676,64960
,4,3677,64965
,4,3678,64970
,4,3679,64975
,4,3680,64980
,4,3681,64985
,4,3682,64990
,4,3683,64995
,4,3684,65000
,4,3685,65005
,4,3686,65010
,4,3687,65015
,4,3688,65020
,4,3689,65025
,4,3690,65030
,4,3691,65035
,4,3692,65040
,4,3693,65045
,4,3694,65050
,4,3695,65055
,4,3696,65060
,4,3697,65065
,4,3698,65070
,4,3699,65075
,4,3700,65080
,4,3701,65085
,4,3702,65090
,4,3703,65095
,4,3704,65100
,4,3705,65105
,4,3706,65110
,4,3707,65115
,4,3708,65120
,4,3709,65125
,4,3710,65130
,4,3711,65135
,4,3712,65140
,4,3713,65145
,4,3714,65150
,4,3715,65155
,4,3716,65160
,4,3717,65165
,4,3718,65170
,4,3719,65175
,4,3720,65180
,4,3721,65185
,4,3722,65190
,4,3723,65195
,4,3724,65200
,4,3725,65205
,4,3726,65210
,4,3727,65215
,4,3728,65220
,4,3729,65225
,4,3730,65230
,4,3731,65235
,4,3732,65240
,4,3733,65245
,4,3734,65250
,4,3735,65255
,4,3736,65260
,4,3737,65265
,4,3738,65270
,4,3739,65275
,4,3740,65280
,4,3741,65285
,4,3742,65290
,4,3743,65295
,4,3744,65300
,4,3745,65305
,4,3746,65310
,4,3747,65315
,4,3748,65320
,4,3749,65325
,4,3750,65330
,4,3751,65335
,4,3752,65340
,4,3753,65345
,4,3754,65350
,4,3755,65355
,4,3756,65360
,4,3757,65365
,4,3758,65370
,4,3759,65375
,4,3760,65380
,4,3761,65385
,4,3762,65390
,4,3763,65395
,4,3764,65400
,4,3765,65405
,4,3766,65410
,4,3767,65415
,4,3768,65420
,4,3769,65425
,4,3770,65430
,4,3771,65435
,4,3772,65440
,4,3773,65445
,4,3774,65450
,4,3775,65455
,4,3776,65460
,4,3777,65465
,4,3778,65470
,4,3779,65475
,4,3780,65480
,4,3781,65485
,4,3782,65490
,4,3783,65495
,4,3784,65500
,4,3785,65505
,4,3786,65510
,4,3787,65515
,4,3788,65520
,4,3789,65525
,4,3790,65530
,4,3791,65535
,4,3792,65540
,4,3793,65545
,4,3794,65550
,4,3795,65555
,4,3796,65560
,4,3797,65565
,4,3798,65570
,4,3799,65575
,4,3800,65580
,4,3801,65585
,4,3802,65590
,4,3803,65595
,4,3804,65600
,4,3805,65605
,4,3806,65610
,4,3807,65615
,4,3808,65620
,4,3809,65625
,4,3810,65630
,4,3811,65635
,4,3812,65640
,4,3813,65645
,4,3814,65650
,4,3815,65655
,4,3816,65660
,4,3817,65665
,4,3818,65670
,4,3819,65675
,4,3820,65680
,4,3821,65685
,4,3822,65690
,4,3823,65695
,4,3824,65700
,4,3825,65705
,4,3826,65710
,4,3827,65715
,4,3828,65720
,4,3829,65725
,4,3830,65730
,4,3831,65735
,4,3832,65740
,4,3833,65745
,4,3834,65750
,4,3835,65755
,4,3836,65760
,4,3837,65765
,4,3838,65770
,4,3839,65775
,4,3840,65780
,4,3841,65785
,4,3842,65790
,4,3843,65795
,4,3844,65800
,4,3845,65805
,4,3846,65810
,4,3847,65815
,4,3848,65820
,4,3849,65825
,4,3850,65830
,4,3851,65835
,4,3852,65840
,4,3853,65845
,4,3854,65850
,4,3855,65855
,4,3856,65860
,4,3857,65865
,4,3858,65870
,4,3859,65875
,4,3860,65880
,4,3861,65885
,4,3862,65890
,4,3863,65895
,4,3864,65900
,4,3865,65905
,4,3866,65910
,4,3867,65915
,4,3868,65920
,4,3869,65925
,4,3870,65930
,4,3871,65935
,4,3872,65940
,4,3873,65945
,4,3874,65950
,4,3875,65955
,4,3876,65960
,4,3877,65965
,4,3878,65970
,4,3879,65975
,4,3880,65980
,4,3881,65985
,4,3882,65990
,4,3883,65995
,4,3884,66000
,4,3885,66005
,4,3886,66010
,4,3887,66015
,4,3888,66020
,4,3889,66025
,4,3890,66030
,4,3891,66035
,4,3892,66040
,4,3893,66045
,4,3894,66050
,4,3895,66055
,4,3896,66060
,4,3897,66065
,4,3898,66070
,4,3899,66075
,4,3900,66080
,4,3901,66085
,4,3902,66090
,4,3903,66095
,4,3904,66100
,4,3905,66105
,4,3906,66110
,4,3907,66115
,4,3908,66120
,4,3909,66125
,4,3910,66130
,4,3911,66135
,4,3912,66140
,4,3913,66145
,4,3914,66150
,4,3915,66155
,4,3916,66160
,4,3917,66165
,4,3918,66170
,4,3919,66175
,4,3920,66180
,4,3921,66185
,4,3922,66190
,4,3923,66195
,4,3924,66200
,4,3925,66205
,4,3926,66210
,4,3927,66215
,4,3928,66220
,4,3929,66225
,4,3930,66230
,4,3931,66235
,4,3932,66240
,4,3933,66245
,4,3934,66250
,4,3935,66255
,4,3936,66260
,4,3937,66265
,4,3938,66270
,4,3939,66275
,4,3940,66280
,4,3941,66285
,4,3942,66290
,4,3943,66295
,4,3944,66300
,4,3945,66305
,4,3946,66310
,4,3947,66315
,4,3948,66320
,4,3949,66325
,4,3950,66330
,4,3951,66335
,4,3952,66340
,4,3953,66345
,4,3954,66350
,4,3955,66355
,4,3956,66360
,4,3957,66365
,4,3958,66370
,4,3959,66375
,4,3960,66380
,4,3961,66385
,4,3962,66390
,4,3963,66395
,4,3964,66400
,4,3965,66405
,4,3966,66410
,4,3967,66415
,4,3968,66420
,4,3969,66425
,4,3970,66430
,4,3971,66435
,4,3972,66440
,4,3973,66445
,4,3974,66450
,4,3975,66455
,4,3976,66460
,4,3977,66465
,4,3978,66470
,4,3979,66475
,4,3980,66480
,4,3981,66485
,4,3982,66490
,4,3983,66495
,4,3984,66500
,4,3985,66505
,4,3986,66510
,4,3987,66515
,4,3988,66520
,4,3989,66525
,4,3990,66530
,4,3991,66535
,4,3992,66540
,4,3993,66545
,4,3994,66550
,4,3995,66555
,4,3996,66560
,4,3997,66565
,4,3998,66570
,4,3999,66575
,4,4000,66580
,4,4001,66585
,4,4002,66590
,4,4003,66595
,4,4004,66600
,4,4005,66605
,4,4006,66610
,4,4007,66615
,4,4008,66620
,4,4009,66625
,4,4010,66630
,4,4011,66635
,4,4012,66640
,4,4013,66645
,4,4014,66650
,4,4015,66655
,4,4016,66660
,4,4017,66665
,4,4018,66670
,4,4019,66675
,4,4020,66680
,4,4021,66685
,4,4022,66690
,4,4023,66695
,4,4024,66700
,4,4025,66705
,4,4026,66710
,4,4027,66715
,4,4028,66720
,4,4029,66725
,4,4030,66730
,4,4031,66735
,4,4032,66740
,4,4033,66745
,4,4034,66750
,4,4035,66755
,4,4036,66760
,4,4037,66765
,4,4038,66770
,4,4039,66775
,4,4040,66780
,4,4041,66785
,4,4042,66790
,4,4043,66795
,4,4044,66800
,4,4045,66805
,4,4046,66810
,4,4047,66815
,4,4048,66820
,4,4049,66825
,4,4050,66830
,4,4051,66835
,4,4052,66840
,4,4053,66845
,4,4054,66850
,4,4055,66855
,4,4056,66860
,4,4057,66865
,4,4058,66870
,4,4059,66875
,4,4060,66880
,4,4061,66885
,4,4062,66890
,4,4063,66895
,4,4064,66900
,4,4065,66905
,4,4066,66910
,4,4067,66915
,4,4068,66920
,4,4069,66925
,4,4070,66930
,4,4071,66935
,4,4072,66940
,4,4073,66945
,4,4074,66950
,4,4075,66955
,4,4076,66960
,4,4077,66965
,4,4078,66970
,4,4079,66975
,4,4080,66980
,4,4081,66985
,4,4082,66990
,4,4083,66995
,4,4084,67000
,4,4085,67005
,4,4086,67010
,4,4087,67015
,4,4088,67020
,4,4089,67025
,4,4090,67030
,4,4091,67035
,4,4092,67040
,4,4093,67045
,4,4094,67050
,4,4095,67055
,4,4096,67060
,4,4097,67065
,4,4098,67070
,4,4099,67075
,4,4100,67080
,4,4101,67085
,4,4102,67090
,4,4103,67095
,4,4104,67100
,4,4105,67105
,4,4106,67110
,4,4107,67115
,4,4108,67120
,4,4109,67125
,4,4110,67130
,4,4111,67135
,4,4112,67140
,4,4113,67145
,4,4114,67150
,4,4115,67155
,4,4116,67160
,4,4117,67165
,4,4118,67170
,4,4119,67175
,4,4120,67180
,4,4121,67185
,4,4122,67190
,4,4123,67195
,4,4124,67200
,4,4125,67205
,4,4126,67210
,4,4127,67215
,4,4128,67220
,4,4129,67225
,4,4130,67230
,4,4131,67235
,4,4132,67240
,4,4133,67245
,4,4134,67250
,4,4135,67255
,4,4136,67260
,4,4137,67265
,4,4138,67270
,4,4139,67275
,4,4140,67280
,4,4141,67285
,4,4142,67290
,4,4143,67295
,4,4144,67300
,4,4145,67305
,4,4146,67310
,4,4147,67315
,4,4148,67320
,4,4149,67325
,4,4150,67330
,4,4151,67335
,4,4152,67340
,4,4153,67345
,4,4154,67350
,4,4155,67355
,4,4156,67360
,4,4157,67365
,4,4158,67370
,4,4159,67375
,4,4160,67380
,4,4161,67385
,4,4162,67390
,4,4163,67395
,4,4164,67400
,4,4165,67405
,4,4166,67410
,4,4167,67415
,4,4168,67420
,4,4169,67425
,4,4170,67430
,4,4171,67435
,4,4172,67440
,4,4173,67445
,4,4174,67450
,4,4175,67455
,4,4176,67460
,4,4177,67465
,4,4178,67470
,4,4179,67475
,4,4180,67480
,4,4181,67485
,4,4182,67490
,4,4183,67495
,4,4184,67500
,4,4185,67505
,4,4186,67510
,4,4187,67515
,4,4188,67520
,4,4189,67525
,4,4190,67530
,4,4191,67535
,4,4192,67540
,4,4193,67545
,4,4194,67550
,4,4195,67555
,4,4196,67560
,4,4197,67565
,4,4198,67570
,4,4199,67575
,4,4200,67580
,4,4201,67585
,4,4202,67590
,4,4203,67595
,4,4204,67600
,4,4205,67605
,4,4206,67610
,4,4207,67615
,4,4208,67620
,4,4209,67625
,4,4210,67630
,4,4211,67635
,4,4212,67640
,4,4213,67645
,4,4214,67650
,4,4215,67655
,4,4216,67660
,4,4217,67665
,4,4218,67670
,4,4219,67675
,4,4220,67680
,4,4221,67685
,4,4222,67690
,4,4223,67695
,4,4224,67700
,4,4225,67705
,4,4226,67710
,4,4227,67715
,4,4228,67720
,4,4229,67725
,4,4230,67730
,4,4231,67735
,4,4232,67740
,4,4233,67745
,4,4234,67750
,4,4235,67755
,4,4236,67760
,4,4237,67765
,4,4238,67770
,4,4239,67775
,4,4240,67780
,4,4241,67785
,4,4242,67790
,4,4243,67795
,4,4244,67800
,4,4245,67805
,4,4246,67810
,4,4247,67815
,4,4248,67820
,4,4249,67825
,4,4250,67830
,4,4251,67835
,4,4252,67840
,4,4253,67845
,4,4254,67850
,4,4255,67855
,4,4256,67860
,4,4257,67865
,4,4258,67870
,4,4259,67875
,4,4260,67880
,4,4261,67885
,4,4262,67890
,4,4263,67895
,4,4264,67900
,4,4265,67905
,4,4266,67910
,4,4267,67915
,4,4268,67920
,4,4269,67925
,4,4270,67930
,4,4271,67935
,4,4272,67940
,4,4273,67945
,4,4274,67950
,4,4275,67955
,4,4276,67960
,4,4277,67965
,4,4278,67970
,4,4279,67975
,4,4280,67980
,4,4281,67985
,4,4282,67990
,4,4283,67995
,4,4284,68000
,4,4285,68005
,4,4286,68010
,4,4287,68015
,4,4288,68020
,4,4289,68025
,4,4290,68030
,4,4291,68035
,4,4292,68040
,4,4293,68045
,4,4294,68050
,4,4295,68055
,4,4296,68060
,4,4297,68065
,4,4298,68070
,4,4299,68075
,4,4300,68080
,4,4301,68085
,4,4302,68090
,4,4303,68095
,4,4304,68100
,4,4305,68105
,4,4306,68110
,4,4307,68115
,4,4308,68120
,4,4309,68125
,4,4310,68130
,4,4311,68135
,4,4312,68140
,4,4313,68145
,4,4314,68150
,4,4315,68155
,4,4316,68160
,4,4317,68165
,4,4318,68170
,4,4319,68175
,4,4320,68180
,4,4321,68185
,4,4322,68190
,4,4323,68195
,4,4324,68200
,4,4325,68205
,4,4326,68210
,4,4327,68215
,4,4328,68220
,4,4329,68225
,4,4330,68230
,4,4331,68235
,4,4332,68240
,4,4333,68245
,4,4334,68250
,4,4335,68255
,4,4336,68260
,4,4337,68265
,4,4338,68270
,4,4339,68275
,4,4340,68280
,4,4341,68285
,4,4342,68290
,4,4343,68295
,4,4344,68300
,4,4345,68305
,4,4346,68310
,4,4347,68315
,4,4348,68320
,4,4349,68325
,4,4350,68330
,4,4351,68335
,4,4352,68340
,4,4353,68345
,4,4354,68350
,4,4355,68355
,4,4356,68360
,4,4357,68365
,4,4358,68370
,4,4359,68375
,4,4360,68380
,4,4361,68385
,4,4362,68390
,4,4363,68395
,4,4364,68400
,4,4365,68405
,4,4366,68410
,4,4367,68415
,4,4368,68420
,4,4369,68425
,4,4370,68430
,4,4371,68435
,4,4372,68440
,4,4373,68445
,4,4374,68450
,4,4375,68455
,4,4376,68460
,4,4377,68465
,4,4378,68470
,4,4379,68475
,4,4380,68480
,4,4381,68485
,4,4382,68490
,4,4383,68495
,4,4384,68500
,4,4385,68505
,4,4386,68510
,4,4387,68515
,4,4388,68520
,4,4389,68525
,4,4390,68530
,4,4391,68535
,4,4392,68540
,4,4393,68545
,4,4394,68550
,4,4395,68555
,4,4396,68560
,4,4397,68565
,4,4398,68570
,4,4399,68575
,4,4400,68580
,4,4401,68585
,4,4402,68590
,4,4403,68595
,4,4404,68600
,4,4405,68605
,4,4406,68610
,4,4407,68615
,4,4408,68620
,4,4409,68625
,4,4410,68630
,4,4411,68635
,4,4412,68640
,4,4413,68645
,4,4414,68650
,4,4415,68655
,4,4416,68660
,4,4417,68665
,4,4418,68670
,4,4419,68675
,4,4420,68680
,4,4421,68685
,4,4422,68690
,4,4423,68695
,4,4424,68700
,4,4425,68705
,4,4426,68710
,4,4427,68715
,4,4428,68720
,4,4429,68725
,4,4430,68730
,4,4431,68735
,4,4432,68740
,4,4433,68745
,4,4434,68750
,4,4435,68755
,4,4436,68760
,4,4437,68765
,4,4438,68770
,4,4439,68775
,4,4440,68780
,4,4441,68785
,4,4442,68790
,4,4443,68795
,4,4444,68800
,4,4445,68805
,4,4446,68810
,4,4447,68815
,4,4448,68820
,4,4449,68825
,4,4450,68830
,4,4451,68835
,4,4452,68840
,4,4453,68845
,4,4454,68850
,4,4455,68855
,4,4456,68860
,4,4457,68865
,4,4458,68870
,4,4459,68875
,4,4460,68880
,4,4461,68885
,4,4462,68890
,4,4463,68895
,4,4464,68900
,4,4465,68905
,4,4466,68910
,4,4467,68915
,4,4468,68920
,4,4469,68925
,4,4470,68930
,4,4471,68935
,4,4472,68940
,4,4473,68945
,4,4474,68950
,4,4475,68955
,4,4476,68960
,4,4477,68965
,4,4478,68970
,4,4479,68975
,4,4480,68980
,4,4481,68985
,4,4482,68990
,4,4483,68995
,4,4484,69000
,4,4485,69005
,4,4486,69010
,4,4487,69015
,4,4488,69020
,4,4489,69025
,4,4490,69030
,4,4491,69035
,4,4492,69040
,4,4493,69045
,4,4494,69050
,4,4495,69055
,4,4496,69060
,4,4497,69065
,4,4498,69070
,4,4499,69075
,4,4500,69080
,4,4501,69085
,4,4502,69090
,4,4503,69095
,4,4504,69100
,4,4505,69105
,4,4506,69110
,4,4507,69115
,4,4508,69120
,4,4509,69125
,4,4510,69130
,4,4511,69135
,4,4512,69140
,4,4513,69145
,4,4514,69150
,4,4515,69155
,4,4516,69160
,4,4517,69165
,4,4518,69170
,4,4519,69175
,4,4520,69180
,4,4521,69185
,4,4522,69190
,4,4523,69195
,4,4524,69200
,4,4525,69205
,4,4526,69210
,4,4527,69215
,4,4528,69220
,4,4529,69225
,4,4530,69230
,4,4531,69235
,4,4532,69240
,4,4533,69245
,4,4534,69250
,4,4535,69255
,4,4536,69260
,4,4537,69265
,4,4538,69270
,4,4539,69275
,4,4540,69280
,4,4541,69285
,4,4542,69290
,4,4543,69295
,4,4544,69300
,4,4545,69305
,4,4546,69310
,4,4547,69315
,4,4548,69320
,4,4549,69325
,4,4550,69330
,4,4551,69335
,4,4552,69340
,4,4553,69345
,4,4554,69350
,4,4555,69355
,4,4556,69360
,4,4557,69365
,4,4558,69370
,4,4559,69375
,4,4560,69380
,4,4561,69385
,4,4562,69390
,4,4563,69395
,4,4564,69400
,4,4565,69405
,4,4566,69410
,4,4567,69415
,4,4568,69420
,4,4569,69425
,4,4570,69430
,4,4571,69435
,4,4572,69440
,4,4573,69445
,4,4574,69450
,4,4575,69455
,4,4576,69460
,4,4577,69465
,4,4578,69470
,4,4579,69475
,4,4580,69480
,4,4581,69485
,4,4582,69490
,4,4583,69495
,4,4584,69500
,4,4585,69505
,4,4586,69510
,4,4587,69515
,4,4588,69520
,4,4589,69525
,4,4590,69530
,4,4591,69535
,4,4592,69540
,4,4593,69545
,4,4594,69550
,4,4595,69555
,4,4596,69560
,4,4597,69565
,4,4598,69570
,4,4599,69575
,4,4600,69580
,4,4601,69585
,4,4602,69590
,4,4603,69595
,4,4604,69600
,4,4605,69605
,4,4606,69610
,4,4607,69615
,4,4608,69620
,4,4609,69625
,4,4610,69630
,4,4611,69635
,4,4612,69640
,4,4613,69645
,4,4614,69650
,4,4615,69655
,4,4616,69660
,4,4617,69665
,4,4618,69670
,4,4619,69675
,4,4620,69680
,4,4621,69685
,4,4622,69690
,4,4623,69695
,4,4624,69700
,4,4625,69705
,4,4626,69710
,4,4627,69715
,4,4628,69720
,4,4629,69725
,4,4630,69730
,4,4631,69735
,4,4632,69740
,4,4633,69745
,4,4634,69750
,4,4635,69755
,4,4636,69760
,4,4637,69765
,4,4638,69770
,4,4639,69775
,4,4640,69780
,4,4641,69785
,4,4642,69790
,4,4643,69795
,4,4644,69800
,4,4645,69805
,4,4646,69810
,4,4647,69815
,4,4648,69820
,4,4649,69825
,4,4650,69830
,4,4651,69835
,4,4652,69840
,4,4653,69845
,4,4654,69850
,4,4655,69855
,4,4656,69860
,4,4657,69865
,4,4658,69870
,4,4659,69875
,4,4660,69880
,4,4661,69885
,4,4662,69890
,4,4663,69895
,4,4664,69900
,4,4665,69905
,4,4666,69910
,4,4667,69915
,4,4668,69920
,4,4669,69925
,4,4670,69930
,4,4671,69935
,4,4672,69940
,4,4673,69945
,4,4674,69950
,4,4675,69955
,4,4676,69960
,4,4677,69965
,4,4678,69970
,4,4679,69975
,4,4680,69980
,4,4681,69985
,4,4682,69990
,4,4683,69995
,4,4684,70000
,4,4685,70005
,4,4686,70010
,4,4687,70015
,4,4688,70020
,4,4689,70025
,4,4690,70030
,4,4691,70035
,4,4692,70040
,4,4693,70045
,4,4694,70050
,4,4695,70055
,4,4696,70060
,4,4697,70065
,4,4698,70070
,4,4699,70075
,4,4700,70080
,4,4701,70085
,4,4702,70090
,4,4703,70095
,4,4704,70100
,4,4705,70105
,4,4706,70110
,4,4707,70115
,4,4708,70120
,4,4709,70125
,4,4710,70130
,4,4711,70135
,4,4712,70140
,4,4713,70145
,4,4714,70150
,4,4715,70155
,4,4716,70160
,4,4717,70165
,4,4718,70170
,4,4719,70175
,4,4720,70180
,4,4721,70185
,4,4722,70190
,4,4723,70195
,4,4724,70200
,4,4725,70205
,4,4726,70210
,4,4727,70215
,4,4728,70220
,4,4729,70225
,4,4730,70230
,4,4731,70235
,4,4732,70240
,4,4733,70245
,4,4734,70250
,4,4735,70255
,4,4736,70260
,4,4737,70265
,4,4738,70270
,4,4739,70275
,4,4740,70280
,4,4741,70285
,4,4742,70290
,4,4743,70295
,4,4744,70300
,4,4745,70305
,4,4746,70310
,4,4747,70315
,4,4748,70320
,4,4749,70325
,4,4750,70330
,4,4751,70335
,4,4752,70340
,4,4753,70345
,4,4754,70350
,4,4755,70355
,4,4756,70360
,4,4757,70365
,4,4758,70370
,4,4759,70375
,4,4760,70380
,4,4761,70385
,4,4762,70390
,4,4763,70395
,4,4764,70400
,4,4765,70405
,4,4766,70410
,4,4767,70415
,4,4768,70420
,4,4769,70425
,4,4770,70430
,4,4771,70435
,4,4772,70440
,4,4773,70445
,4,4774,70450
,4,4775,70455
,4,4776,70460
,4,4777,70465
,4,4778,70470
,4,4779,70475
,4,4780,70480
,4,4781,70485
,4,4782,70490
,4,4783,70495
,4,4784,70500
,4,4785,70505
,4,4786,70510
,4,4787,70515
,4,4788,70520
,4,4789,70525
,4,4790,70530
,4,4791,70535
,4,4792,70540
,4,4793,70545
,4,4794,70550
,4,4795,70555
,4,4796,70560
,4,4797,70565
,4,4798,70570
,4,4799,70575
,4,4800,70580
,4,4801,70585
,4,4802,70590
,4,4803,70595
,4,4804,70600
,4,4805,70605
,4,4806,70610
,4,4807,70615
,4,4808,70620
,4,4809,70625
,4,4810,70630
,4,4811,70635
,4,4812,70640
,4,4813,70645
,4,4814,70650
,4,4815,70655
,4,4816,70660
,4,4817,70665
,4,4818,70670
,4,4819,70675
,4,4820,70680
,4,4821,70685
,4,4822,70690
,4,4823,70695
,4,4824,70700
,4,4825,70705
,4,4826,70710
,4,4827,70715
,4,4828,70720
,4,4829,70725
,4,4830,70730
,4,4831,70735
,4,4832,70740
,4,4833,70745
,4,4834,70750
,4,4835,70755
,4,4836,70760
,4,4837,70765
,4,4838,70770
,4,4839,70775
,4,4840,70780
,4,4841,70785
,4,4842,70790
,4,4843,70795
,4,4844,70800
,4,4845,70805
,4,4846,70810
,4,4847,70815
,4,4848,70820
,4,4849,70825
,4,4850,70830
,4,4851,70835
,4,4852,70840
,4,4853,70845
,4,4854,70850
,4,4855,70855
,4,4856,70860
,4,4857,70865
,4,4858,70870
,4,4859,70875
,4,4860,70880
,4,4861,70885
,4,4862,70890
,4,4863,70895
,4,4864,70900
,4,4865,70905
,4,4866,70910
,4,4867,70915
,4,4868,70920
,4,4869,70925
,4,4870,70930
,4,4871,70935
,4,4872,70940
,4,4873,70945
,4,4874,70950
,4,4875,70955
,4,4876,70960
,4,4877,70965
,4,4878,70970
,4,4879,70975
,4,4880,70980
,4,4881,70985
,4,4882,70990
,4,4883,70995
,4,4884,71000
,4,4885,71005
,4,4886,71010
,4,4887,71015
,4,4888,71020
,4,4889,71025
,4,4890,71030
,4,4891,71035
,4,4892,71040
,4,4893,71045
,4,4894,71050
,4,4895,71055
,4,4896,71060
,4,4897,71065
,4,4898,71070
,4,4899,71075
,4,4900,71080
,4,4901,71085
,4,4902,71090
,4,4903,71095
,4,4904,71100
,4,4905,71105
,4,4906,71110
,4,4907,71115
,4,4908,71120
,4,4909,71125
,4,4910,71130
,4,4911,71135
,4,4912,71140
,4,4913,71145
,4,4914,71150
,4,4915,71155
,4,4916,71160
,4,4917,71165
,4,4918,71170
,4,4919,71175
,4,4920,71180
,4,4921,71185
,4,4922,71190
,4,4923,71195
,4,4924,71200
,4,4925,71205
,4,4926,71210
,4,4927,71215
,4,4928,71220
,4,4929,71225
,4,4930,71230
,4,4931,71235
,4,4932,71240
,4,4933,71245
,4,4934,71250
,4,4935,71255
,4,4936,71260
,4,4937,71265
,4,4938,71270
,4,4939,71275
,4,4940,71280
,4,4941,71285
,4,4942,71290
,4,4943,71295
,4,4944,71300
,4,4945,71305
,4,4946,71310
,4,4947,71315
,4,4948,71320
,4,4949,71325
,4,4950,71330
,4,4951,71335
,4,4952,71340
,4,4953,71345
,4,4954,71350
,4,4955,71355
,4,4956,71360
,4,4957,71365
,4,4958,71370
,4,4959,71375
,4,4960,71380
,4,4961,71385
,4,4962,71390
,4,4963,71395
,4,4964,71400
,4,4965,71405
,4,4966,71410
,4,4967,71415
,4,4968,71420
,4,4969,71425
,4,4970,71430
,4,4971,71435
,4,4972,71440
,4,4973,71445
,4,4974,71450
,4,4975,71455
,4,4976,71460
,4,4977,71465
,4,4978,71470
,4,4979,71475
,4,4980,71480
,4,4981,71485
,4,4982,71490
,4,4983,71495
,4,4984,71500
,4,4985,71505
,4,4986,71510
,4,4987,71515
,4,4988,71520
,4,4989,71525
,4,4990,71530
,4,4991,71535
,4,4992,71540
,4,4993,71545
,4,4994,71550
,4,4995,71555
,4,4996,71560
,4,4997,71565
,4,4998,71570
,4,4999,71575
,4,5000,71580
,4,5001,71585
,4,5002,71590
,4,5003,71595
,4,5004,71600
,4,5005,71605
,4,5006,71610
,4,5007,71615
,4,5008,71620
,4,5009,71625
,4,5010,71630
,4,5011,71635
,4,5012,71640
,4,5013,71645
,4,5014,71650
,4,5015,71655
,4,5016,71660
,4,5017,71665
,4,5018,71670
,4,5019,71675
,4,5020,71680
,4,5021,71685
,4,5022,71690
,4,5023,71695
,4,5024,71700
,4,5025,71705
,4,5026,71710
,4,5027,71715
,4,5028,71720
,4,5029,71725
,4,5030,71730
,4,5031,71735
,4,5032,71740
,4,5033,71745
,4,5034,71750
,4,5035,71755
,4,5036,71760
,4,5037,71765
,4,5038,71770
,4,5039,71775
,4,5040,71780
,4,5041,71785
,4,5042,71790
,4,5043,71795
,4,5044,71800
,4,5045,71805
,4,5046,71810
,4,5047,71815
,4,5048,71820
,4,5049,71825
,4,5050,71830
,4,5051,71835
,4,5052,71840
,4,5053,71845
,4,5054,71850
,4,5055,71855
,4,5056,71860
,4,5057,71865
,4,5058,71870
,4,5059,71875
,4,5060,71880
,4,5061,71885
,4,5062,71890
,4,5063,71895
,4,5064,71900
,4,5065,71905
,4,5066,71910
,4,5067,71915
,4,5068,71920
,4,5069,71925
,4,5070,71930
,4,5071,71935
,4,5072,71940
,4,5073,71945
,4,5074,71950
,4,5075,71955
,4,5076,71960
,4,5077,71965
,4,5078,71970
,4,5079,71975
,4,5080,71980
,4,5081,71985
,4,5082,71990
,4,5083,71995
,4,5084,72000
,4,5085,72005
,4,5086,72010
,4,5087,72015
,4,5088,72020
,4,5089,72025
,4,5090,72030
,4,5091,72035
,4,5092,72040
,4,5093,72045
,4,5094,72050
,4,5095,72055
,4,5096,72060
,4,5097,72065
,4,5098,72070
,4,5099,72075
,4,5100,72080
,4,5101,72085
,4,5102,72090
,4,5103,72095
,4,5104,72100
,4,5105,72105
,4,5106,72110
,4,5107,72115
,4,5108,72120
,4,5109,72125
,4,5110,72130
,4,5111,72135
,4,5112,72140
,4,5113,72145
,4,5114,72150
,4,5115,72155
,4,5116,72160
,4,5117,72165
,4,5118,72170
,4,5119,72175
,4,5120,72180
,4,5121,72185
,4,5122,72190
,4,5123,72195
,4,5124,72200
,4,5125,72205
,4,5126,72210
,4,5127,72215
,4,5128,72220
,4,5129,72225
,4,5130,72230
,4,5131,72235
,4,5132,72240
,4,5133,72245
,4,5134,72250
,4,5135,72255
,4,5136,72260
,4,5137,72265
,4,5138,72270
,4,5139,72275
,4,5140,72280
,4,5141,72285
,4,5142,72290
,4,5143,72295
,4,5144,72300
,4,5145,72305
,4,5146,72310
,4,5147,72315
,4,5148,72320
,4,5149,72325
,4,5150,72330
,4,5151,72335
,4,5152,72340
,4,5153,72345
,4,5154,72350
,4,5155,72355
,4,5156,72360
,4,5157,72365
,4,5158,72370
,4,5159,72375
,4,5160,72380
,4,5161,72385
,4,5162,72390
,4,5163,72395
,4,5164,72400
,4,5165,72405
,4,5166,72410
,4,5167,72415
,4,5168,72420
,4,5169,72425
,4,5170,72430
,4,5171,72435
,4,5172,72440
,4,5173,72445
,4,5174,72450
,4,5175,72455
,4,5176,72460
,4,5177,72465
,4,5178,72470
,4,5179,72475
,4,5180,72480
,4,5181,72485
,4,5182,72490
,4,5183,72495
,4,5184,72500
,4,5185,72505
,4,5186,72510
,4,5187,72515
,4,5188,72520
,4,5189,72525
,4,5190,72530
,4,5191,72535
,4,5192,72540
,4,5193,72545
,4,5194,72550
,4,5195,72555
,4,5196,72560
,4,5197,72565
,4,5198,72570
,4,5199,72575
,4,5200,72580
,4,5201,72585
,4,5202,72590
,4,5203,72595
,4,5204,72600
,4,5205,72605
,4,5206,72610
,4,5207,72615
,4,5208,72620
,4,5209,72625
,4,5210,72630
,4,5211,72635
,4,5212,72640
,4,5213,72645
,4,5214,72650
,4,5215,72655
,4,5216,72660
,4,5217,72665
,4,5218,72670
,4,5219,72675
,4,5220,72680
,4,5221,72685
,4,5222,72690
,4,5223,72695
,4,5224,72700
,4,5225,72705
,4,5226,72710
,4,5227,72715
,4,5228,72720
,4,5229,72725
,4,5230,72730
,4,5231,72735
,4,5232,72740
,4,5233,72745
,4,5234,72750
,4,5235,72755
,4,5236,72760
,4,5237,72765
,4,5238,72770
,4,5239,72775
,4,5240,72780
,4,5241,72785
,4,5242,72790
,4,5243,72795
,4,5244,72800
,4,5245,72805
,4,5246,72810
,4,5247,72815
,4,5248,72820
,4,5249,72825
,4,5250,72830
,4,5251,72835
,4,5252,72840
,4,5253,72845
,4,5254,72850
,4,5255,72855
,4,5256,72860
,4,5257,72865
,4,5258,72870
,4,5259,72875
,4,5260,72880
,4,5261,72885
,4,5262,72890
,4,5263,72895
,4,5264,72900
,4,5265,72905
,4,5266,72910
,4,5267,72915
,4,5268,72920
,4,5269,72925
,4,5270,72930
,4,5271,72935
,4,5272,72940
,4,5273,72945
,4,5274,72950
,4,5275,72955
,4,5276,72960
,4,5277,72965
,4,5278,72970
,4,5279,72975
,4,5280,72980
,4,5281,72985
,4,5282,72990
,4,5283,72995
,4,5284,73000
,4,5285,73005
,4,5286,73010
,4,5287,73015
,4,5288,73020
,4,5289,73025
,4,5290,73030
,4,5291,73035
,4,5292,73040
,4,5293,73045
,4,5294,73050
,4,5295,73055
,4,5296,73060
,4,5297,73065
,4,5298,73070
,4,5299,73075
,4,5300,73080
,4,5301,73085
,4,5302,73090
,4,5303,73095
,4,5304,73100
,4,5305,73105
,4,5306,73110
,4,5307,73115
,4,5308,73120
,4,5309,73125
,4,5310,73130
,4,5311,73135
,4,5312,73140
,4,5313,73145
,4,5314,73150
,4,5315,73155
,4,5316,73160
,4,5317,73165
,4,5318,73170
,4,5319,73175
,4,5320,73180
,4,5321,73185
,4,5322,73190
,4,5323,73195
,4,5324,73200
,4,5325,73205
,4,5326,73210
,4,5327,73215
,4,5328,73220
,4,5329,73225
,4,5330,73230
,4,5331,73235
,4,5332,73240
,4,5333,73245
,4,5334,73250
,4,5335,73255
,4,5336,73260
,4,5337,73265
,4,5338,73270
,4,5339,73275
,4,5340,73280
,4,5341,73285
,4,5342,73290
,4,5343,73295
,4,5344,73300
,4,5345,73305
,4,5346,73310
,4,5347,73315
,4,5348,73320
,4,5349,73325
,4,5350,73330
,4,5351,73335
,4,5352,73340
,4,5353,73345
,4,5354,73350
,4,5355,73355
,4,5356,73360
,4,5357,73365
,4,5358,73370
,4,5359,73375
,4,5360,73380
,4,5361,73385
,4,5362,73390
,4,5363,73395
,4,5364,73400
,4,5365,73405
,4,5366,73410
,4,5367,73415
,4,5368,73420
,4,5369,73425
,4,5370,73430
,4,5371,73435
,4,5372,73440
,4,5373,73445
,4,5374,73450
,4,5375,73455
,4,5376,73460
,4,5377,73465
,4,5378,73470
,4,5379,73475
,4,5380,73480
,4,5381,73485
,4,5382,73490
,4,5383,73495
,4,5384,73500
,4,5385,73505
,4,5386,73510
,4,5387,73515
,4,5388,73520
,4,5389,73525
,4,5390,73530
,4,5391,73535
,4,5392,73540
,4,5393,73545
,4,5394,73550
,4,5395,73555
,4,5396,73560
,4,5397,73565
,4,5398,73570
,4,5399,73575
,4,5400,73580
,4,5401,73585
,4,5402,73590
,4,5403,73595
,4,5404,73600
,4,5405,73605
,4,5406,73610
,4,5407,73615
,4,5408,73620
,4,5409,73625
,4,5410,73630
,4,5411,73635
,4,5412,73640
,4,5413,73645
,4,5414,73650
,4,5415,73655
,4,5416,73660
,4,5417,73665
,4,5418,73670
,4,5419,73675
,4,5420,73680
,4,5421,73685
,4,5422,73690
,4,5423,73695
,4,5424,73700
,4,5425,73705
,4,5426,73710
,4,5427,73715
,4,5428,73720
,4,5429,73725
,4,5430,73730
,4,5431,73735
,4,5432,73740
,4,5433,73745
,4,5434,73750
,4,5435,73755
,4,5436,73760
,4,5437,73765
,4,5438,73770
,4,5439,73775
,4,5440,73780
,4,5441,73785
,4,5442,73790
,4,5443,73795
,4,5444,73800
,4,5445,73805
,4,5446,73810
,4,5447,73815
,4,5448,73820
,4,5449,73825
,4,5450,73830
,4,5451,73835
,4,5452,73840
,4,5453,73845
,4,5454,73850
,4,5455,73855
,4,5456,73860
,4,5457,73865
,4,5458,73870
,4,5459,73875
,4,5460,73880
,4,5461,73885
,4,5462,73890
,4,5463,73895
,4,5464,73900
,4,5465,73905
,4,5466,73910
,4,5467,73915
,4,5468,73920
,4,5469,73925
,4,5470,73930
,4,5471,73935
,4,5472,73940
,4,5473,73945
,4,5474,73950
,4,5475,73955
,4,5476,73960
,4,5477,73965
,4,5478,73970
,4,5479,73975
,4,5480,73980
,4,5481,73985
,4,5482,73990
,4,5483,73995
,4,5484,74000
,4,5485,74005
,4,5486,74010
,4,5487,74015
,4,5488,74020
,4,5489,74025
,4,5490,74030
,4,5491,74035
,4,5492,74040
,4,5493,74045
,4,5494,74050
,4,5495,74055
,4,5496,74060
,4,5497,74065
,4,5498,74070
,4,5499,74075
,4,5500,74080
,4,5501,74085
,4,5502,74090
,4,5503,74095
,4,5504,74100
,4,5505,74105
,4,5506,74110
,4,5507,74115
,4,5508,74120
,4,5509,74125
,4,5510,74130
,4,5511,74135
,4,5512,74140
,4,5513,74145
,4,5514,74150
,4,5515,74155
,4,5516,74160
,4,5517,74165
,4,5518,74170
,4,5519,74175
,4,5520,74180
,4,5521,74185
,4,5522,74190
,4,5523,74195
,4,5524,74200
,4,5525,74205
,4,5526,74210
,4,5527,74215
,4,5528,74220
,4,5529,74225
,4,5530,74230
,4,5531,74235
,4,5532,74240
,4,5533,74245
,4,5534,74250
,4,5535,74255
,4,5536,74260
,4,5537,74265
,4,5538,74270
,4,5539,74275
,4,5540,74280
,4,5541,74285
,4,5542,74290
,4,5543,74295
,4,5544,74300
,4,5545,74305
,4,5546,74310
,4,5547,74315
,4,5548,74320
,4,5549,74325
,4,5550,74330
,4,5551,74335
,4,5552,74340
,4,5553,74345
,4,5554,74350
,4,5555,74355
,4,5556,74360
,4,5557,74365
,4,5558,74370
,4,5559,74375
,4,5560,74380
,4,5561,74385
,4,5562,74390
,4,5563,74395
,4,5564,74400
,4,5565,74405
,4,5566,74410
,4,5567,74415
,4,5568,74420
,4,5569,74425
,4,5570,74430
,4,5571,74435
,4,5572,74440
,4,5573,74445
,4,5574,74450
,4,5575,74455
,4,5576,74460
,4,5577,74465
,4,5578,74470
,4,5579,74475
,4,5580,74480
,4,5581,74485
,4,5582,74490
,4,5583,74495
,4,5584,74500
,4,5585,74505
,4,5586,74510
,4,5587,74515
,4,5588,74520
,4,5589,74525
,4,5590,74530
,4,5591,74535
,4,5592,74540
,4,5593,74545
,4,5594,74550
,4,5595,74555
,4,5596,74560
,4,5597,74565
,4,5598,74570
,4,5599,74575
,4,5600,74580
,4,5601,74585
,4,5602,74590
,4,5603,74595
,4,5604,74600
,4,5605,74605
,4,5606,74610
,4,5607,74615
,4,5608,74620
,4,5609,74625
,4,5610,74630
,4,5611,74635
,4,5612,74640
,4,5613,74645
,4,5614,74650
,4,5615,74655
,4,5616,74660
,4,5617,74665
,4,5618,74670
,4,5619,74675
,4,5620,74680
,4,5621,74685
,4,5622,74690
,4,5623,74695
,4,5624,74700
,4,5625,74705
,4,5626,74710
,4,5627,74715
,4,5628,74720
,4,5629,74725
,4,5630,74730
,4,5631,74735
,4,5632,74740
,4,5633,74745
,4,5634,74750
,4,5635,74755
,4,5636,74760
,4,5637,74765
,4,5638,74770
,4,5639,74775
,4,5640,74780
,4,5641,74785
,4,5642,74790
,4,5643,74795
,4,5644,74800
,4,5645,74805
,4,5646,74810
,4,5647,74815
,4,5648,74820
,4,5649,74825
,4,5650,74830
,4,5651,74835
,4,5652,74840
,4,5653,74845
,4,5654,74850
,4,5655,74855
,4,5656,74860
,4,5657,74865
,4,5658,74870
,4,5659,74875
,4,5660,74880
,4,5661,74885
,4,5662,74890
,4,5663,74895
,4,5664,74900
,4,5665,74905
,4,5666,74910
,4,5667,74915
,4,5668,74920
,4,5669,74925
,4,5670,74930
,4,5671,74935
,4,5672,74940
,4,5673,74945
,4,5674,74950
,4,5675,74955
,4,5676,74960
,4,5677,74965
,4,5678,74970
,4,5679,74975
,4,5680,74980
,4,5681,74985
,4,5682,74990
,4,5683,74995
,4,5684,75000
,4,5685,75005
,4,5686,75010
,4,5687,75015
,4,5688,75020
,4,5689,75025
,4,5690,75030
,4,5691,75035
,4,5692,75040
,4,5693,75045
,4,5694,75050
,4,5695,75055
,4,5696,75060
,4,5697,75065
,4,5698,75070
,4,5699,75075
,4,5700,75080
,4,5701,75085
,4,5702,75090
,4,5703,75095
,4,5704,75100
,4,5705,75105
,4,5706,75110
,4,5707,75115
,4,5708,75120
,4,5709,75125
,4,5710,75130
,4,5711,75135
,4,5712,75140
,4,5713,75145
,4,5714,75150
,4,5715,75155
,4,5716,75160
,4,5717,75165
,4,5718,75170
,4,5719,75175
,4,5720,75180
,4,5721,75185
,4,5722,75190
,4,5723,75195
,4,5724,75200
,4,5725,75205
,4,5726,75210
,4,5727,75215
,4,5728,75220
,4,5729,75225
,4,5730,75230
,4,5731,75235
,4,5732,75240
,4,5733,75245
,4,5734,75250
,4,5735,75255
,4,5736,75260
,4,5737,75265
,4,5738,75270
,4,5739,75275
,4,5740,75280
,4,5741,75285
,4,5742,75290
,4,5743,75295
,4,5744,75300
,4,5745,75305
,4,5746,75310
,4,5747,75315
,4,5748,75320
,4,5749,75325
,4,5750,75330
,4,5751,75335
,4,5752,75340
,4,5753,75345
,4,5754,75350
,4,5755,75355
,4,5756,75360
,4,5757,75365
,4,5758,75370
,4,5759,75375
,4,5760,75380
,4,5761,75385
,4,5762,75390
,4,5763,75395
,4,5764,75400
,4,5765,75405
,4,5766,75410
,4,5767,75415
,4,5768,75420
,4,5769,75425
,4,5770,75430
,4,5771,75435
,4,5772,75440
,4,5773,75445
,4,5774,75450
,4,5775,75455
,4,5776,75460
,4,5777,75465
,4,5778,75470
,4,5779,75475
,4,5780,75480
,4,5781,75485
,4,5782,75490
,4,5783,75495
,4,5784,75500
,4,5785,75505
,4,5786,75510
,4,5787,75515
,4,5788,75520
,4,5789,75525
,4,5790,75530
,4,5791,75535
,4,5792,75540
,4,5793,75545
,4,5794,75550
,4,5795,75555
,4,5796,75560
,4,5797,75565
,4,5798,75570
,4,5799,75575
,4,5800,75580
,4,5801,75585
,4,5802,75590
,4,5803,75595
,4,5804,75600
,4,5805,75605
,4,5806,75610
,4,5807,75615
,4,5808,75620
,4,5809,75625
,4,5810,75630
,4,5811,75635
,4,5812,75640
,4,5813,75645
,4,5814,75650
,4,5815,75655
,4,5816,75660
,4,5817,75665
,4,5818,75670
,4,5819,75675
,4,5820,75680
,4,5821,75685
,4,5822,75690
,4,5823,75695
,4,5824,75700
,4,5825,75705
,4,5826,75710
,4,5827,75715
,4,5828,75720
,4,5829,75725
,4,5830,75730
,4,5831,75735
,4,5832,75740
,4,5833,75745
,4,5834,75750
,4,5835,75755
,4,5836,75760
,4,5837,75765
,4,5838,75770
,4,5839,75775
,4,5840,75780
,4,5841,75785
,4,5842,75790
,4,5843,75795
,4,5844,75800
,4,5845,75805
,4,5846,75810
,4,5847,75815
,4,5848,75820
,4,5849,75825
,4,5850,75830
,4,5851,75835
,4,5852,75840
,4,5853,75845
,4,5854,75850
,4,5855,75855
,4,5856,75860
,4,5857,75865
,4,5858,75870
,4,5859,75875
,4,5860,75880
,4,5861,75885
,4,5862,75890
,4,5863,75895
,4,5864,75900
,4,5865,75905
,4,5866,75910
,4,5867,75915
,4,5868,75920
,4,5869,75925
,4,5870,75930
,4,5871,75935
,4,5872,75940
,4,5873,75945
,4,5874,75950
,4,5875,75955
,4,5876,75960
,4,5877,75965
,4,5878,75970
,4,5879,75975
,4,5880,75980
,4,5881,75985
,4,5882,75990
,4,5883,75995
,4,5884,76000
,4,5885,76005
,4,5886,76010
,4,5887,76015
,4,5888,76020
,4,5889,76025
,4,5890,76030
,4,5891,76035
,4,5892,76040
,4,5893,76045
,4,5894,76050
,4,5895,76055
,4,5896,76060
,4,5897,76065
,4,5898,76070
,4,5899,76075
,4,5900,76080
,4,5901,76085
,4,5902,76090
,4,5903,76095
,4,5904,76100
,4,5905,76105
,4,5906,76110
,4,5907,76115
,4,5908,76120
,4,5909,76125
,4,5910,76130
,4,5911,76135
,4,5912,76140
,4,5913,76145
,4,5914,76150
,4,5915,76155
,4,5916,76160
,4,5917,76165
,4,5918,76170
,4,5919,76175
,4,5920,76180
,4,5921,76185
,4,5922,76190
,4,5923,76195
,4,5924,76200
,4,5925,76205
,4,5926,76210
,4,5927,76215
,4,5928,76220
,4,5929,76225
,4,5930,76230
,4,5931,76235
,4,5932,76240
,4,5933,76245
,4,5934,76250
,4,5935,76255
,4,5936,76260
,4,5937,76265
,4,5938,76270
,4,5939,76275
,4,5940,76280
,4,5941,76285
,4,5942,76290
,4,5943,76295
,4,5944,76300
,4,5945,76305
,4,5946,76310
,4,5947,76315
,4,5948,76320
,4,5949,76325
,4,5950,76330
,4,5951,76335
,4,5952,76340
,4,5953,76345
,4,5954,76350
,4,5955,76355
,4,5956,76360
,4,5957,76365
,4,5958,76370
,4,5959,76375
,4,5960,76380
,4,5961,76385
,4,5962,76390
,4,5963,76395
,4,5964,76400
,4,5965,76405
,4,5966,76410
,4,5967,76415
,4,5968,76420
,4,5969,76425
,4,5970,76430
,4,5971,76435
,4,5972,76440
,4,5973,76445
,4,5974,76450
,4,5975,76455
,4,5976,76460
,4,5977,76465
,4,5978,76470
,4,5979,76475
,4,5980,76480
,4,5981,76485
,4,5982,76490
,4,5983,76495
,4,5984,76500
,4,5985,76505
,4,5986,76510
,4,5987,76515
,4,5988,76520
,4,5989,76525
,4,5990,76530
,4,5991,76535
,4,5992,76540
,4,5993,76545
,4,5994,76550
,4,5995,76555
,4,5996,76560
,4,5997,76565
,4,5998,76570
,4,5999,76575
,4,6000,76580
,4,6001,76585
,4,6002,76590
,4,6003,76595
,4,6004,76600
,4,6005,76605
,4,6006,76610
,4,6007,76615
,4,6008,76620
,4,6009,76625
,4,6010,76630
,4,6011,76635
,4,6012,76640
,4,6013,76645
,4,6014,76650
,4,6015,76655
,4,6016,76660
,4,6017,76665
,4,6018,76670
,4,6019,76675
,4,6020,76680
,4,6021,76685
,4,6022,76690
,4,6023,76695
,4,6024,76700
,4,6025,76705
,4,6026,76710
,4,6027,76715
,4,6028,76720
,4,6029,76725
,4,6030,76730
,4,6031,76735
,4,6032,76740
,4,6033,76745
,4,6034,76750
,4,6035,76755
,4,6036,76760
,4,6037,76765
,4,6038,76770
,4,6039,76775
,4,6040,76780
,4,6041,76785
,4,6042,76790
,4,6043,76795
,4,6044,76800
,4,6045,76805
,4,6046,76810
,4,6047,76815
,4,6048,76820
,4,6049,76825
,4,6050,76830
,4,6051,76835
,4,6052,76840
,4,6053,76845
,4,6054,76850
,4,6055,76855
,4,6056,76860
,4,6057,76865
,4,6058,76870
,4,6059,76875
,4,6060,76880
,4,6061,76885
,4,6062,76890
,4,6063,76895
,4,6064,76900
,4,6065,76905
,4,6066,76910
,4,6067,76915
,4,6068,76920
,4,6069,76925
,4,6070,76930
,4,6071,76935
,4,6072,76940
,4,6073,76945
,4,6074,76950
,4,6075,76955
,4,6076,76960
,4,6077,76965
,4,6078,76970
,4,6079,76975
,4,6080,76980
,4,6081,76985
,4,6082,76990
,4,6083,76995
,4,6084,77000
,4,6085,77005
,4,6086,77010
,4,6087,77015
,4,6088,77020
,4,6089,77025
,4,6090,77030
,4,6091,77035
,4,6092,77040
,4,6093,77045
,4,6094,77050
,4,6095,77055
,4,6096,77060
,4,6097,77065
,4,6098,77070
,4,6099,77075
,4,6100,77080
,4,6101,77085
,4,6102,77090
,4,6103,77095
,4,6104,77100
,4,6105,77105
,4,6106,77110
,4,6107,77115
,4,6108,77120
,4,6109,77125
,4,6110,77130
,4,6111,77135
,4,6112,77140
,4,6113,77145
,4,6114,77150
,4,6115,77155
,4,6116,77160
,4,6117,77165
,4,6118,77170
,4,6119,77175
,4,6120,77180
,4,6121,77185
,4,6122,77190
,4,6123,77195
,4,6124,77200
,4,6125,77205
,4,6126,77210
,4,6127,77215
,4,6128,77220
,4,6129,77225
,4,6130,77230
,4,6131,77235
,4,6132,77240
,4,6133,77245
,4,6134,77250
,4,6135,77255
,4,6136,77260
,4,6137,77265
,4,6138,77270
,4,6139,77275
,4,6140,77280
,4,6141,77285
,4,6142,77290
,4,6143,77295
,4,6144,77300
,4,6145,77305
,4,6146,77310
,4,6147,77315
,4,6148,77320
,4,6149,77325
,4,6150,77330
,4,6151,77335
,4,6152,77340
,4,6153,77345
,4,6154,77350
,4,6155,77355
,4,6156,77360
,4,6157,77365
,4,6158,77370
,4,6159,77375
,4,6160,77380
,4,6161,77385
,4,6162,77390
,4,6163,77395
,4,6164,77400
,4,6165,77405
,4,6166,77410
,4,6167,77415
,4,6168,77420
,4,6169,77425
,4,6170,77430
,4,6171,77435
,4,6172,77440
,4,6173,77445
,4,6174,77450
,4,6175,77455
,4,6176,77460
,4,6177,77465
,4,6178,77470
,4,6179,77475
,4,6180,77480
,4,6181,77485
,4,6182,77490
,4,6183,77495
,4,6184,77500
,4,6185,77505
,4,6186,77510
,4,6187,77515
,4,6188,77520
,4,6189,77525
,4,6190,77530
,4,6191,77535
,4,6192,77540
,4,6193,77545
,4,6194,77550
,4,6195,77555
,4,6196,77560
,4,6197,77565
,4,6198,77570
,4,6199,77575
,4,6200,77580
,4,6201,77585
,4,6202,77590
,4,6203,77595
,4,6204,77600
,4,6205,77605
,4,6206,77610
,4,6207,77615
,4,6208,77620
,4,6209,77625
,4,6210,77630
,4,6211,77635
,4,6212,77640
,4,6213,77645
,4,6214,77650
,4,6215,77655
,4,6216,77660
,4,6217,77665
,4,6218,77670
,4,6219,77675
,4,6220,77680
,4,6221,77685
,4,6222,77690
,4,6223,77695
,4,6224,77700
,4,6225,77705
,4,6226,77710
,4,6227,77715
,4,6228,77720
,4,6229,77725
,4,6230,77730
,4,6231,77735
,4,6232,77740
,4,6233,77745
,4,6234,77750
,4,6235,77755
,4,6236,77760
,4,6237,77765
,4,6238,77770
,4,6239,77775
,4,6240,77780
,4,6241,77785
,4,6242,77790
,4,6243,77795
,4,6244,77800
,4,6245,77805
,4,6246,77810
,4,6247,77815
,4,6248,77820
,4,6249,77825
,4,6250,77830
,4,6251,77835
,4,6252,77840
,4,6253,77845
,4,6254,77850
,4,6255,77855
,4,6256,77860
,4,6257,77865
,4,6258,77870
,4,6259,77875
,4,6260,77880
,4,6261,77885
,4,6262,77890
,4,6263,77895
,4,6264,77900
,4,6265,77905
,4,6266,77910
,4,6267,77915
,4,6268,77920
,4,6269,77925
,4,6270,77930
,4,6271,77935
,4,6272,77940
,4,6273,77945
,4,6274,77950
,4,6275,77955
,4,6276,77960
,4,6277,77965
,4,6278,77970
,4,6279,77975
,4,6280,77980
,4,6281,77985
,4,6282,77990
,4,6283,77995
,4,6284,78000
,4,6285,78005
,4,6286,78010
,4,6287,78015
,4,6288,78020
,4,6289,78025
,4,6290,78030
,4,6291,78035
,4,6292,78040
,4,6293,78045
,4,6294,78050
,4,6295,78055
,4,6296,78060
,4,6297,78065
,4,6298,78070
,4,6299,78075
,4,6300,78080
,4,6301,78085
,4,6302,78090
,4,6303,78095
,4,6304,78100
,4,6305,78105
,4,6306,78110
,4,6307,78115
,4,6308,78120
,4,6309,78125
,4,6310,78130
,4,6311,78135
,4,6312,78140
,4,6313,78145
,4,6314,78150
,4,6315,78155
,4,6316,78160
,4,6317,78165
,4,6318,78170
,4,6319,78175
,4,6320,78180
,4,6321,78185
,4,6322,78190
,4,6323,78195
,4,6324,78200
,4,6325,78205
,4,6326,78210
,4,6327,78215
,4,6328,78220
,4,6329,78225
,4,6330,78230
,4,6331,78235
,4,6332,78240
,4,6333,78245
,4,6334,78250
,4,6335,78255
,4,6336,78260
,4,6337,78265
,4,6338,78270
,4,6339,78275
,4,6340,78280
,4,6341,78285
,4,6342,78290
,4,6343,78295
,4,6344,78300
,4,6345,78305
,4,6346,78310
,4,6347,78315
,4,6348,78320
,4,6349,78325
,4,6350,78330
,4,6351,78335
,4,6352,78340
,4,6353,78345
,4,6354,78350
,4,6355,78355
,4,6356,78360
,4,6357,78365
,4,6358,78370
,4,6359,78375
,4,6360,78380
,4,6361,78385
,4,6362,78390
,4,6363,78395
,4,6364,78400
,4,6365,78405
,4,6366,78410
,4,6367,78415
,4,6368,78420
,4,6369,78425
,4,6370,78430
,4,6371,78435
,4,6372,78440
,4,6373,78445
,4,6374,78450
,4,6375,78455
,4,6376,78460
,4,6377,78465
,4,6378,78470
,4,6379,78475
,4,6380,78480
,4,6381,78485
,4,6382,78490
,4,6383,78495
,4,6384,78500
,4,6385,78505
,4,6386,78510
,4,6387,78515
,4,6388,78520
,4,6389,78525
,4,6390,78530
,4,6391,78535
,4,6392,78540
,4,6393,78545
,4,6394,78550
,4,6395,78555
,4,6396,78560
,4,6397,78565
,4,6398,78570
,4,6399,78575
,4,6400,78580
,4,6401,78585
,4,6402,78590
,4,6403,78595
,4,6404,78600
,4,6405,78605
,4,6406,78610
,4,6407,78615
,4,6408,78620
,4,6409,78625
,4,6410,78630
,4,6411,78635
,4,6412,78640
,4,6413,78645
,4,6414,78650
,4,6415,78655
,4,6416,78660
,4,6417,78665
,4,6418,78670
,4,6419,78675
,4,6420,78680
,4,6421,78685
,4,6422,78690
,4,6423,78695
,4,6424,78700
,4,6425,78705
,4,6426,78710
,4,6427,78715
,4,6428,78720
,4,6429,78725
,4,6430,78730
,4,6431,78735
,4,6432,78740
,4,6433,78745
,4,6434,78750
,4,6435,78755
,4,6436,78760
,4,6437,78765
,4,6438,78770
,4,6439,78775
,4,6440,78780
,4,6441,78785
,4,6442,78790
,4,6443,78795
,4,6444,78800
,4,6445,78805
,4,6446,78810
,4,6447,78815
,4,6448,78820
,4,6449,78825
,4,6450,78830
,4,6451,78835
,4,6452,78840
,4,6453,78845
,4,6454,78850
,4,6455,78855
,4,6456,78860
,4,6457,78865
,4,6458,78870
,4,6459,78875
,4,6460,78880
,4,6461,78885
,4,6462,78890
,4,6463,78895
,4,6464,78900
,4,6465,78905
,4,6466,78910
,4,6467,78915
,4,6468,78920
,4,6469,78925
,4,6470,78930
,4,6471,78935
,4,6472,78940
,4,6473,78945
,4,6474,78950
,4,6475,78955
,4,6476,78960
,4,6477,78965
,4,6478,78970
,4,6479,78975
,4,6480,78980
,4,6481,78985
,4,6482,78990
,4,6483,78995
,4,6484,79000
,4,6485,79005
,4,6486,79010
,4,6487,79015
,4,6488,79020
,4,6489,79025
,4,6490,79030
,4,6491,79035
,4,6492,79040
,4,6493,79045
,4,6494,79050
,4,6495,79055
,4,6496,79060
,4,6497,79065
,4,6498,79070
,4,6499,79075
,4,6500,79080
,4,6501,79085
,4,6502,79090
,4,6503,79095
,4,6504,79100
,4,6505,79105
,4,6506,79110
,4,6507,79115
,4,6508,79120
,4,6509,79125
,4,6510,79130
,4,6511,79135
,4,6512,79140
,4,6513,79145
,4,6514,79150
,4,6515,79155
,4,6516,79160
,4,6517,79165
,4,6518,79170
,4,6519,79175
,4,6520,79180
,4,6521,79185
,4,6522,79190
,4,6523,79195
,4,6524,79200
,4,6525,79205
,4,6526,79210
,4,6527,79215
,4,6528,79220
,4,6529,79225
,4,6530,79230
,4,6531,79235
,4,6532,79240
,4,6533,79245
,4,6534,79250
,4,6535,79255
,4,6536,79260
,4,6537,79265
,4,6538,79270
,4,6539,79275
,4,6540,79280
,4,6541,79285
,4,6542,79290
,4,6543,79295
,4,6544,79300
,4,6545,79305
,4,6546,79310
,4,6547,79315
,4,6548,79320
,4,6549,79325
,4,6550,79330
,4,6551,79335
,4,6552,79340
,4,6553,79345
,4,6554,79350
,4,6555,79355
,4,6556,79360
,4,6557,79365
,4,6558,79370
,4,6559,79375
,4,6560,79380
,4,6561,79385
,4,6562,79390
,4,6563,79395
,4,6564,79400
,4,6565,79405
,4,6566,79410
,4,6567,79415
,4,6568,79420
,4,6569,79425
,4,6570,79430
,4,6571,79435
,4,6572,79440
,4,6573,79445
,4,6574,79450
,4,6575,79455
,4,6576,79460
,4,6577,79465
,4,6578,79470
,4,6579,79475
,4,6580,79480
,4,6581,79485
,4,6582,79490
,4,6583,79495
,4,6584,79500
,4,6585,79505
,4,6586,79510
,4,6587,79515
,4,6588,79520
,4,6589,79525
,4,6590,79530
,4,6591,79535
,4,6592,79540
,4,6593,79545
,4,6594,79550
,4,6595,79555
,4,6596,79560
,4,6597,79565
,4,6598,79570
,4,6599,79575
,4,6600,79580
,4,6601,79585
,4,6602,79590
,4,6603,79595
,4,6604,79600
,4,6605,79605
,4,6606,79610
,4,6607,79615
,4,6608,79620
,4,6609,79625
,4,6610,79630
,4,6611,79635
,4,6612,79640
,4,6613,79645
,4,6614,79650
,4,6615,79655
,4,6616,79660
,4,6617,79665
,4,6618,79670
,4,6619,79675
,4,6620,79680
,4,6621,79685
,4,6622,79690
,4,6623,79695
,4,6624,79700
,4,6625,79705
,4,6626,79710
,4,6627,79715
,4,6628,79720
,4,6629,79725
,4,6630,79730
,4,6631,79735
,4,6632,79740
,4,6633,79745
,4,6634,79750
,4,6635,79755
,4,6636,79760
,4,6637,79765
,4,6638,79770
,4,6639,79775
,4,6640,79780
,4,6641,79785
,4,6642,79790
,4,6643,79795
,4,6644,79800
,4,6645,79805
,4,6646,79810
,4,6647,79815
,4,6648,79820
,4,6649,79825
,4,6650,79830
,4,6651,79835
,4,6652,79840
,4,6653,79845
,4,6654,79850
,4,6655,79855
,4,6656,79860
,4,6657,79865
,4,6658,79870
,4,6659,79875
,4,6660,79880
,4,6661,79885
,4,6662,79890
,4,6663,79895
,4,6664,79900
,4,6665,79905
,4,6666,79910
,4,6667,79915
,4,6668,79920
,4,6669,79925
,4,6670,79930
,4,6671,79935
,4,6672,79940
,4,6673,79945
,4,6674,79950
,4,6675,79955
,4,6676,79960
,4,6677,79965
,4,6678,79970
,4,6679,79975
,4,6680,79980
,4,6681,79985
,4,6682,79990
,4,6683,79995
,4,6684,80000
,4,6685,80005
,4,6686,80010
,4,6687,80015
,4,6688,80020
,4,6689,80025
,4,6690,80030
,4,6691,80035
,4,6692,80040
,4,6693,80045
,4,6694,80050
,4,6695,80055
,4,6696,80060
,4,6697,80065
,4,6698,80070
,4,6699,80075
,4,6700,80080
,4,6701,80085
,4,6702,80090
,4,6703,80095
,4,6704,80100
,4,6705,80105
,4,6706,80110
,4,6707,80115
,4,6708,80120
,4,6709,80125
,4,6710,80130
,4,6711,80135
,4,6712,80140
,4,6713,80145
,4,6714,80150
,4,6715,80155
,4,6716,80160
,4,6717,80165
,4,6718,80170
,4,6719,80175
,4,6720,80180
,4,6721,80185
,4,6722,80190
,4,6723,80195
,4,6724,80200
,4,6725,80205
,4,6726,80210
,4,6727,80215
,4,6728,80220
,4,6729,80225
,4,6730,80230
,4,6731,80235
,4,6732,80240
,4,6733,80245
,4,6734,80250
,4,6735,80255
,4,6736,80260
,4,6737,80265
,4,6738,80270
,4,6739,80275
,4,6740,80280
,4,6741,80285
,4,6742,80290
,4,6743,80295
,4,6744,80300
,4,6745,80305
,4,6746,80310
,4,6747,80315
,4,6748,80320
,4,6749,80325
,4,6750,80330
,4,6751,80335
,4,6752,80340
,4,6753,80345
,4,6754,80350
,4,6755,80355
,4,6756,80360
,4,6757,80365
,4,6758,80370
,4,6759,80375
,4,6760,80380
,4,6761,80385
,4,6762,80390
,4,6763,80395
,4,6764,80400
,4,6765,80405
,4,6766,80410
,4,6767,80415
,4,6768,80420
,4,6769,80425
,4,6770,80430
,4,6771,80435
,4,6772,80440
,4,6773,80445
,4,6774,80450
,4,6775,80455
,4,6776,80460
,4,6777,80465
,4,6778,80470
,4,6779,80475
,4,6780,80480
,4,6781,80485
,4,6782,80490
,4,6783,80495
,4,6784,80500
,4,6785,80505
,4,6786,80510
,4,6787,80515
,4,6788,80520
,4,6789,80525
,4,6790,80530
,4,6791,80535
,4,6792,80540
,4,6793,80545
,4,6794,80550
,4,6795,80555
,4,6796,80560
,4,6797,80565
,4,6798,80570
,4,6799,80575
,4,6800,80580
,4,6801,80585
,4,6802,80590
,4,6803,80595
,4,6804,80600
,4,6805,80605
,4,6806,80610
,4,6807,80615
,4,6808,80620
,4,6809,80625
,4,6810,80630
,4,6811,80635
,4,6812,80640
,4,6813,80645
,4,6814,80650
,4,6815,80655
,4,6816,80660
,4,6817,80665
,4,6818,80670
,4,6819,80675
,4,6820,80680
,4,6821,80685
,4,6822,80690
,4,6823,80695
,4,6824,80700
,4,6825,80705
,4,6826,80710
,4,6827,80715
,4,6828,80720
,4,6829,80725
,4,6830,80730
,4,6831,80735
,4,6832,80740
,4,6833,80745
,4,6834,80750
,4,6835,80755
,4,6836,80760
,4,6837,80765
,4,6838,80770
,4,6839,80775
,4,6840,80780
,4,6841,80785
,4,6842,80790
,4,6843,80795
,4,6844,80800
,4,6845,80805
,4,6846,80810
,4,6847,80815
,4,6848,80820
,4,6849,80825
,4,6850,80830
,4,6851,80835
,4,6852,80840
,4,6853,80845
,4,6854,80850
,4,6855,80855
,4,6856,80860
,4,6857,80865
,4,6858,80870
,4,6859,80875
,4,6860,80880
,4,6861,80885
,4,6862,80890
,4,6863,80895
,4,6864,80900
,4,6865,80905
,4,6866,80910
,4,6867,80915
,4,6868,80920
,4,6869,80925
,4,6870,80930
,4,6871,80935
,4,6872,80940
,4,6873,80945
,4,6874,80950
,4,6875,80955
,4,6876,80960
,4,6877,80965
,4,6878,80970
,4,6879,80975
,4,6880,80980
,4,6881,80985
,4,6882,80990
,4,6883,80995
,4,6884,81000
,4,6885,81005
,4,6886,81010
,4,6887,81015
,4,6888,81020
,4,6889,81025
,4,6890,81030
,4,6891,81035
,4,6892,81040
,4,6893,81045
,4,6894,81050
,4,6895,81055
,4,6896,81060
,4,6897,81065
,4,6898,81070
,4,6899,81075
,4,6900,81080
,4,6901,81085
,4,6902,81090
,4,6903,81095
,4,6904,81100
,4,6905,81105
,4,6906,81110
,4,6907,81115
,4,6908,81120
,4,6909,81125
,4,6910,81130
,4,6911,81135
,4,6912,81140
,4,6913,81145
,4,6914,81150
,4,6915,81155
,4,6916,81160
,4,6917,81165
,4,6918,81170
,4,6919,81175
,4,6920,81180
,4,6921,81185
,4,6922,81190
,4,6923,81195
,4,6924,81200
,4,6925,81205
,4,6926,81210
,4,6927,81215
,4,6928,81220
,4,6929,81225
,4,6930,81230
,4,6931,81235
,4,6932,81240
,4,6933,81245
,4,6934,81250
,4,6935,81255
,4,6936,81260
,4,6937,81265
,4,6938,81270
,4,6939,81275
,4,6940,81280
,4,6941,81285
,4,6942,81290
,4,6943,81295
,4,6944,81300
,4,6945,81305
,4,6946,81310
,4,6947,81315
,4,6948,81320
,4,6949,81325
,4,6950,81330
,4,6951,81335
,4,6952,81340
,4,6953,81345
,4,6954,81350
,4,6955,81355
,4,6956,81360
,4,6957,81365
,4,6958,81370
,4,6959,81375
,4,6960,81380
,4,6961,81385
,4,6962,81390
,4,6963,81395
,4,6964,81400
,4,6965,81405
,4,6966,81410
,4,6967,81415
,4,6968,81420
,4,6969,81425
,4,6970,81430
,4,6971,81435
,4,6972,81440
,4,6973,81445
,4,6974,81450
,4,6975,81455
,4,6976,81460
,4,6977,81465
,4,6978,81470
,4,6979,81475
,4,6980,81480
,4,6981,81485
,4,6982,81490
,4,6983,81495
,4,6984,81500
,4,6985,81505
,4,6986,81510
,4,6987,81515
,4,6988,81520
,4,6989,81525
,4,6990,81530
,4,6991,81535
,4,6992,81540
,4,6993,81545
,4,6994,81550
,4,6995,81555
,4,6996,81560
,4,6997,81565
,4,6998,81570
,4,6999,81575
,4,7000,81580
,4,7001,81585
,4,7002,81590
,4,7003,81595
,4,7004,81600
,4,7005,81605
,4,7006,81610
,4,7007,81615
,4,7008,81620
,4,7009,81625
,4,7010,81630
,4,7011,81635
,4,7012,81640
,4,7013,81645
,4,7014,81650
,4,7015,81655
,4,7016,81660
,4,7017,81665
,4,7018,81670
,4,7019,81675
,4,7020,81680
,4,7021,81685
,4,7022,81690
,4,7023,81695
,4,7024,81700
,4,7025,81705
,4,7026,81710
,4,7027,81715
,4,7028,81720
,4,7029,81725
,4,7030,81730
,4,7031,81735
,4,7032,81740
,4,7033,81745
,4,7034,81750
,4,7035,81755
,4,7036,81760
,4,7037,81765
,4,7038,81770
,4,7039,81775
,4,7040,81780
,4,7041,81785
,4,7042,81790
,4,7043,81795
,4,7044,81800
,4,7045,81805
,4,7046,81810
,4,7047,81815
,4,7048,81820
,4,7049,81825
,4,7050,81830
,4,7051,81835
,4,7052,81840
,4,7053,81845
,4,7054,81850
,4,7055,81855
,4,7056,81860
,4,7057,81865
,4,7058,81870
,4,7059,81875
,4,7060,81880
,4,7061,81885
,4,7062,81890
,4,7063,81895
,4,7064,81900
,4,7065,81905
,4,7066,81910
,4,7067,81915
,4,7068,81920
,4,7069,81925
,4,7070,81930
,4,7071,81935
,4,7072,81940
,4,7073,81945
,4,7074,81950
,4,7075,81955
,4,7076,81960
,4,7077,81965
,4,7078,81970
,4,7079,81975
,4,7080,81980
,4,7081,81985
,4,7082,81990
,4,7083,81995
,4,7084,82000
,4,7085,82005
,4,7086,82010
,4,7087,82015
,4,7088,82020
,4,7089,82025
,4,7090,82030
,4,7091,82035
,4,7092,82040
,4,7093,82045
,4,7094,82050
,4,7095,82055
,4,7096,82060
,4,7097,82065
,4,7098,82070
,4,7099,82075
,4,7100,82080
,4,7101,82085
,4,7102,82090
,4,7103,82095
,4,7104,82100
,4,7105,82105
,4,7106,82110
,4,7107,82115
,4,7108,82120
,4,7109,82125
,4,7110,82130
,4,7111,82135
,4,7112,82140
,4,7113,82145
,4,7114,82150
,4,7115,82155
,4,7116,82160
,4,7117,82165
,4,7118,82170
,4,7119,82175
,4,7120,82180
,4,7121,82185
,4,7122,82190
,4,7123,82195
,4,7124,82200
,4,7125,82205
,4,7126,82210
,4,7127,82215
,4,7128,82220
,4,7129,82225
,4,7130,82230
,4,7131,82235
,4,7132,82240
,4,7133,82245
,4,7134,82250
,4,7135,82255
,4,7136,82260
,4,7137,82265
,4,7138,82270
,4,7139,82275
,4,7140,82280
,4,7141,82285
,4,7142,82290
,4,7143,82295
,4,7144,82300
,4,7145,82305
,4,7146,82310
,4,7147,82315
,4,7148,82320
,4,7149,82325
,4,7150,82330
,4,7151,82335
,4,7152,82340
,4,7153,82345
,4,7154,82350
,4,7155,82355
,4,7156,82360
,4,7157,82365
,4,7158,82370
,4,7159,82375
,4,7160,82380
,4,7161,82385
,4,7162,82390
,4,7163,82395
,4,7164,82400
,4,7165,82405
,4,7166,82410
,4,7167,82415
,4,7168,82420
,4,7169,82425
,4,7170,82430
,4,7171,82435
,4,7172,82440
,4,7173,82445
,4,7174,82450
,4,7175,82455
,4,7176,82460
,4,7177,82465
,4,7178,82470
,4,7179,82475
,4,7180,82480
,4,7181,82485
,4,7182,82490
,4,7183,82495
,4,7184,82500
,4,7185,82505
,4,7186,82510
,4,7187,82515
,4,7188,82520
,4,7189,82525
,4,7190,82530
,4,7191,82535
,4,7192,82540
,4,7193,82545
,4,7194,82550
,4,7195,82555
,4,7196,82560
,4,7197,82565
,4,7198,82570
,4,7199,82575
,4,7200,82580
,4,7201,82585
,4,7202,82590
,4,7203,82595
,4,7204,82600
,4,7205,82605
,4,7206,82610
,4,7207,82615
,4,7208,82620
,4,7209,82625
,4,7210,82630
,4,7211,82635
,4,7212,82640
,4,7213,82645
,4,7214,82650
,4,7215,82655
,4,7216,82660
,4,7217,82665
,4,7218,82670
,4,7219,82675
,4,7220,82680
,4,7221,82685
,4,7222,82690
,4,7223,82695
,4,7224,82700
,4,7225,82705
,4,7226,82710
,4,7227,82715
,4,7228,82720
,4,7229,82725
,4,7230,82730
,4,7231,82735
,4,7232,82740
,4,7233,82745
,4,7234,82750
,4,7235,82755
,4,7236,82760
,4,7237,82765
,4,7238,82770
,4,7239,82775
,4,7240,82780
,4,7241,82785
,4,7242,82790
,4,7243,82795
,4,7244,82800
,4,7245,82805
,4,7246,82810
,4,7247,82815
,4,7248,82820
,4,7249,82825
,4,7250,82830
,4,7251,82835
,4,7252,82840
,4,7253,82845
,4,7254,82850
,4,7255,82855
,4,7256,82860
,4,7257,82865
,4,7258,82870
,4,7259,82875
,4,7260,82880
,4,7261,82885
,4,7262,82890
,4,7263,82895
,4,7264,82900
,4,7265,82905
,4,7266,82910
,4,7267,82915
,4,7268,82920
,4,7269,82925
,4,7270,82930
,4,7271,82935
,4,7272,82940
,4,7273,82945
,4,7274,82950
,4,7275,82955
,4,7276,82960
,4,7277,82965
,4,7278,82970
,4,7279,82975
,4,7280,82980
,4,7281,82985
,4,7282,82990
,4,7283,82995
,4,7284,83000
,4,7285,83005
,4,7286,83010
,4,7287,83015
,4,7288,83020
,4,7289,83025
,4,7290,83030
,4,7291,83035
,4,7292,83040
,4,7293,83045
,4,7294,83050
,4,7295,83055
,4,7296,83060
,4,7297,83065
,4,7298,83070
,4,7299,83075
,4,7300,83080
,4,7301,83085
,4,7302,83090
,4,7303,83095
,4,7304,83100
,4,7305,83105
,4,7306,83110
,4,7307,83115
,4,7308,83120
,4,7309,83125
,4,7310,83130
,4,7311,83135
,4,7312,83140
,4,7313,83145
,4,7314,83150
,4,7315,83155
,4,7316,83160
,4,7317,83165
,4,7318,83170
,4,7319,83175
,4,7320,83180
,4,7321,83185
,4,7322,83190
,4,7323,83195
,4,7324,83200
,4,7325,83205
,4,7326,83210
,4,7327,83215
,4,7328,83220
,4,7329,83225
,4,7330,83230
,4,7331,83235
,4,7332,83240
,4,7333,83245
,4,7334,83250
,4,7335,83255
,4,7336,83260
,4,7337,83265
,4,7338,83270
,4,7339,83275
,4,7340,83280
,4,7341,83285
,4,7342,83290
,4,7343,83295
,4,7344,83300
,4,7345,83305
,4,7346,83310
,4,7347,83315
,4,7348,83320
,4,7349,83325
,4,7350,83330
,4,7351,83335
,4,7352,83340
,4,7353,83345
,4,7354,83350
,4,7355,83355
,4,7356,83360
,4,7357,83365
,4,7358,83370
,4,7359,83375
,4,7360,83380
,4,7361,83385
,4,7362,83390
,4,7363,83395
,4,7364,83400
,4,7365,83405
,4,7366,83410
,4,7367,83415
,4,7368,83420
,4,7369,83425
,4,7370,83430
,4,7371,83435
,4,7372,83440
,4,7373,83445
,4,7374,83450
,4,7375,83455
,4,7376,83460
,4,7377,83465
,4,7378,83470
,4,7379,83475
,4,7380,83480
,4,7381,83485
,4,7382,83490
,4,7383,83495
,4,7384,83500
,4,7385,83505
,4,7386,83510
,4,7387,83515
,4,7388,83520
,4,7389,83525
,4,7390,83530
,4,7391,83535
,4,7392,83540
,4,7393,83545
,4,7394,83550
,4,7395,83555
,4,7396,83560
,4,7397,83565
,4,7398,83570
,4,7399,83575
,4,7400,83580
,4,7401,83585
,4,7402,83590
,4,7403,83595
,4,7404,83600
,4,7405,83605
,4,7406,83610
,4,7407,83615
,4,7408,83620
,4,7409,83625
,4,7410,83630
,4,7411,83635
,4,7412,83640
,4,7413,83645
,4,7414,83650
,4,7415,83655
,4,7416,83660
,4,7417,83665
,4,7418,83670
,4,7419,83675
,4,7420,83680
,4,7421,83685
,4,7422,83690
,4,7423,83695
,4,7424,83700
,4,7425,83705
,4,7426,83710
,4,7427,83715
,4,7428,83720
,4,7429,83725
,4,7430,83730
,4,7431,83735
,4,7432,83740
,4,7433,83745
,4,7434,83750
,4,7435,83755
,4,7436,83760
,4,7437,83765
,4,7438,83770
,4,7439,83775
,4,7440,83780
,4,7441,83785
,4,7442,83790
,4,7443,83795
,4,7444,83800
,4,7445,83805
,4,7446,83810
,4,7447,83815
,4,7448,83820
,4,7449,83825
,4,7450,83830
,4,7451,83835
,4,7452,83840
,4,7453,83845
,4,7454,83850
,4,7455,83855
,4,7456,83860
,4,7457,83865
,4,7458,83870
,4,7459,83875
,4,7460,83880
,4,7461,83885
,4,7462,83890
,4,7463,83895
,4,7464,83900
,4,7465,83905
,4,7466,83910
,4,7467,83915
,4,7468,83920
,4,7469,83925
,4,7470,83930
,4,7471,83935
,4,7472,83940
,4,7473,83945
,4,7474,83950
,4,7475,83955
,4,7476,83960
,4,7477,83965
,4,7478,83970
,4,7479,83975
,4,7480,83980
,4,7481,83985
,4,7482,83990
,4,7483,83995
,4,7484,84000
,4,7485,84005
,4,7486,84010
,4,7487,84015
,4,7488,84020
,4,7489,84025
,4,7490,84030
,4,7491,84035
,4,7492,84040
,4,7493,84045
,4,7494,84050
,4,7495,84055
,4,7496,84060
,4,7497,84065
,4,7498,84070
,4,7499,84075
,4,7500,84080
,4,7501,84085
,4,7502,84090
,4,7503,84095
,4,7504,84100
,4,7505,84105
,4,7506,84110
,4,7507,84115
,4,7508,84120
,4,7509,84125
,4,7510,84130
,4,7511,84135
,4,7512,84140
,4,7513,84145
,4,7514,84150
,4,7515,84155
,4,7516,84160
,4,7517,84165
,4,7518,84170
,4,7519,84175
,4,7520,84180
,4,7521,84185
,4,7522,84190
,4,7523,84195
,4,7524,84200
,4,7525,84205
,4,7526,84210
,4,7527,84215
,4,7528,84220
,4,7529,84225
,4,7530,84230
,4,7531,84235
,4,7532,84240
,4,7533,84245
,4,7534,84250
,4,7535,84255
,4,7536,84260
,4,7537,84265
,4,7538,84270
,4,7539,84275
,4,7540,84280
,4,7541,84285
,4,7542,84290
,4,7543,84295
,4,7544,84300
,4,7545,84305
,4,7546,84310
,4,7547,84315
,4,7548,84320
,4,7549,84325
,4,7550,84330
,4,7551,84335
,4,7552,84340
,4,7553,84345
,4,7554,84350
,4,7555,84355
,4,7556,84360
,4,7557,84365
,4,7558,84370
,4,7559,84375
,4,7560,84380
,4,7561,84385
,4,7562,84390
,4,7563,84395
,4,7564,84400
,4,7565,84405
,4,7566,84410
,4,7567,84415
,4,7568,84420
,4,7569,84425
,4,7570,84430
,4,7571,84435
,4,7572,84440
,4,7573,84445
,4,7574,84450
,4,7575,84455
,4,7576,84460
,4,7577,84465
,4,7578,84470
,4,7579,84475
,4,7580,84480
,4,7581,84485
,4,7582,84490
,4,7583,84495
,4,7584,84500
,4,7585,84505
,4,7586,84510
,4,7587,84515
,4,7588,84520
,4,7589,84525
,4,7590,84530
,4,7591,84535
,4,7592,84540
,4,7593,84545
,4,7594,84550
,4,7595,84555
,4,7596,84560
,4,7597,84565
,4,7598,84570
,4,7599,84575
,4,7600,84580
,4,7601,84585
,4,7602,84590
,4,7603,84595
,4,7604,84600
,4,7605,84605
,4,7606,84610
,4,7607,84615
,4,7608,84620
,4,7609,84625
,4,7610,84630
,4,7611,84635
,4,7612,84640
,4,7613,84645
,4,7614,84650
,4,7615,84655
,4,7616,84660
,4,7617,84665
,4,7618,84670
,4,7619,84675
,4,7620,84680
,4,7621,84685
,4,7622,84690
,4,7623,84695
,4,7624,84700
,4,7625,84705
,4,7626,84710
,4,7627,84715
,4,7628,84720
,4,7629,84725
,4,7630,84730
,4,7631,84735
,4,7632,84740
,4,7633,84745
,4,7634,84750
,4,7635,84755
,4,7636,84760
,4,7637,84765
,4,7638,84770
,4,7639,84775
,4,7640,84780
,4,7641,84785
,4,7642,84790
,4,7643,84795
,4,7644,84800
,4,7645,84805
,4,7646,84810
,4,7647,84815
,4,7648,84820
,4,7649,84825
,4,7650,84830
,4,7651,84835
,4,7652,84840
,4,7653,84845
,4,7654,84850
,4,7655,84855
,4,7656,84860
,4,7657,84865
,4,7658,84870
,4,7659,84875
,4,7660,84880
,4,7661,84885
,4,7662,84890
,4,7663,84895
,4,7664,84900
,4,7665,84905
,4,7666,84910
,4,7667,84915
,4,7668,84920
,4,7669,84925
,4,7670,84930
,4,7671,84935
,4,7672,84940
,4,7673,84945
,4,7674,84950
,4,7675,84955
,4,7676,84960
,4,7677,84965
,4,7678,84970
,4,7679,84975
,4,7680,84980
,4,7681,84985
,4,7682,84990
,4,7683,84995
,4,7684,85000
,4,7685,85005
,4,7686,85010
,4,7687,85015
,4,7688,85020
,4,7689,85025
,4,7690,85030
,4,7691,85035
,4,7692,85040
,4,7693,85045
,4,7694,85050
,4,7695,85055
,4,7696,85060
,4,7697,85065
,4,7698,85070
,4,7699,85075
,4,7700,85080
,4,7701,85085
,4,7702,85090
,4,7703,85095
,4,7704,85100
,4,7705,85105
,4,7706,85110
,4,7707,85115
,4,7708,85120
,4,7709,85125
,4,7710,85130
,4,7711,85135
,4,7712,85140
,4,7713,85145
,4,7714,85150
,4,7715,85155
,4,7716,85160
,4,7717,85165
,4,7718,85170
,4,7719,85175
,4,7720,85180
,4,7721,85185
,4,7722,85190
,4,7723,85195
,4,7724,85200
,4,7725,85205
,4,7726,85210
,4,7727,85215
,4,7728,85220
,4,7729,85225
,4,7730,85230
,4,7731,85235
,4,7732,85240
,4,7733,85245
,4,7734,85250
,4,7735,85255
,4,7736,85260
,4,7737,85265
,4,7738,85270
,4,7739,85275
,4,7740,85280
,4,7741,85285
,4,7742,85290
,4,7743,85295
,4,7744,85300
,4,7745,85305
,4,7746,85310
,4,7747,85315
,4,7748,85320
,4,7749,85325
,4,7750,85330
,4,7751,85335
,4,7752,85340
,4,7753,85345
,4,7754,85350
,4,7755,85355
,4,7756,85360
,4,7757,85365
,4,7758,85370
,4,7759,85375
,4,7760,85380
,4,7761,85385
,4,7762,85390
,4,7763,85395
,4,7764,85400
,4,7765,85405
,4,7766,85410
,4,7767,85415
,4,7768,85420
,4,7769,85425
,4,7770,85430
,4,7771,85435
,4,7772,85440
,4,7773,85445
,4,7774,85450
,4,7775,85455
,4,7776,85460
,4,7777,85465
,4,7778,85470
,4,7779,85475
,4,7780,85480
,4,7781,85485
,4,7782,85490
,4,7783,85495
,4,7784,85500
,4,7785,85505
,4,7786,85510
,4,7787,85515
,4,7788,85520
,4,7789,85525
,4,7790,85530
,4,7791,85535
,4,7792,85540
,4,7793,85545
,4,7794,85550
,4,7795,85555
,4,7796,85560
,4,7797,85565
,4,7798,85570
,4,7799,85575
,4,7800,85580
,4,7801,85585
,4,7802,85590
,4,7803,85595
,4,7804,85600
,4,7805,85605
,4,7806,85610
,4,7807,85615
,4,7808,85620
,4,7809,85625
,4,7810,85630
,4,7811,85635
,4,7812,85640
,4,7813,85645
,4,7814,85650
,4,7815,85655
,4,7816,85660
,4,7817,85665
,4,7818,85670
,4,7819,85675
,4,7820,85680
,4,7821,85685
,4,7822,85690
,4,7823,85695
,4,7824,85700
,4,7825,85705
,4,7826,85710
,4,7827,85715
,4,7828,85720
,4,7829,85725
,4,7830,85730
,4,7831,85735
,4,7832,85740
,4,7833,85745
,4,7834,85750
,4,7835,85755
,4,7836,85760
,4,7837,85765
,4,7838,85770
,4,7839,85775
,4,7840,85780
,4,7841,85785
,4,7842,85790
,4,7843,85795
,4,7844,85800
,4,7845,85805
,4,7846,85810
,4,7847,85815
,4,7848,85820
,4,7849,85825
,4,7850,85830
,4,7851,85835
,4,7852,85840
,4,7853,85845
,4,7854,85850
,4,7855,85855
,4,7856,85860
,4,7857,85865
,4,7858,85870
,4,7859,85875
,4,7860,85880
,4,7861,85885
,4,7862,85890
,4,7863,85895
,4,7864,85900
,4,7865,85905
,4,7866,85910
,4,7867,85915
,4,7868,85920
,4,7869,85925
,4,7870,85930
,4,7871,85935
,4,7872,85940
,4,7873,85945
,4,7874,85950
,4,7875,85955
,4,7876,85960
,4,7877,85965
,4,7878,85970
,4,7879,85975
,4,7880,85980
,4,7881,85985
,4,7882,85990
,4,7883,85995
,4,7884,86000
,4,7885,86005
,4,7886,86010
,4,7887,86015
,4,7888,86020
,4,7889,86025
,4,7890,86030
,4,7891,86035
,4,7892,86040
,4,7893,86045
,4,7894,86050
,4,7895,86055
,4,7896,86060
,4,7897,86065
,4,7898,86070
,4,7899,86075
,4,7900,86080
,4,7901,86085
,4,7902,86090
,4,7903,86095
,4,7904,86100
,4,7905,86105
,4,7906,86110
,4,7907,86115
,4,7908,86120
,4,7909,86125
,4,7910,86130
,4,7911,86135
,4,7912,86140
,4,7913,86145
,4,7914,86150
,4,7915,86155
,4,7916,86160
,4,7917,86165
,4,7918,86170
,4,7919,86175
,4,7920,86180
,4,7921,86185
,4,7922,86190
,4,7923,86195
,4,7924,86200
,4,7925,86205
,4,7926,86210
,4,7927,86215
,4,7928,86220
,4,7929,86225
,4,7930,86230
,4,7931,86235
,4,7932,86240
,4,7933,86245
,4,7934,86250
,4,7935,86255
,4,7936,86260
,4,7937,86265
,4,7938,86270
,4,7939,86275
,4,7940,86280
,4,7941,86285
,4,7942,86290
,4,7943,86295
,4,7944,86300
,4,7945,86305
,4,7946,86310
,4,7947,86315
,4,7948,86320
,4,7949,86325
,4,7950,86330
,4,7951,86335
,4,7952,86340
,4,7953,86345
,4,7954,86350
,4,7955,86355
,4,7956,86360
,4,7957,86365
,4,7958,86370
,4,7959,86375
,4,7960,86380
,4,7961,86385
,4,7962,86390
,4,7963,86395
,4,7964,86400
,4,7965,86405
,4,7966,86410
,4,7967,86415
,4,7968,86420
,4,7969,86425
,4,7970,86430
,4,7971,86435
,4,7972,86440
,4,7973,86445
,4,7974,86450
,4,7975,86455
,4,7976,86460
,4,7977,86465
,4,7978,86470
,4,7979,86475
,4,7980,86480
,4,7981,86485
,4,7982,86490
,4,7983,86495
,4,7984,86500
,4,7985,86505
,4,7986,86510
,4,7987,86515
,4,7988,86520
,4,7989,86525
,4,7990,86530
,4,7991,86535
,4,7992,86540
,4,7993,86545
,4,7994,86550
,4,7995,86555
,4,7996,86560
,4,7997,86565
,4,7998,86570
,4,7999,86575
,4,8000,86580
,4,8001,86585
,4,8002,86590
,4,8003,86595
,4,8004,86600
,4,8005,86605
,4,8006,86610
,4,8007,86615
,4,8008,86620
,4,8009,86625
,4,8010,86630
,4,8011,86635
,4,8012,86640
,4,8013,86645
,4,8014,86650
,4,8015,86655
,4,8016,86660
,4,8017,86665
,4,8018,86670
,4,8019,86675
,4,8020,86680
,4,8021,86685
,4,8022,86690
,4,8023,86695
,4,8024,86700
,4,8025,86705
,4,8026,86710
,4,8027,86715
,4,8028,86720
,4,8029,86725
,4,8030,86730
,4,8031,86735
,4,8032,86740
,4,8033,86745
,4,8034,86750
,4,8035,86755
,4,8036,86760
,4,8037,86765
,4,8038,86770
,4,8039,86775
,4,8040,86780
,4,8041,86785
,4,8042,86790
,4,8043,86795
,4,8044,86800
,4,8045,86805
,4,8046,86810
,4,8047,86815
,4,8048,86820
,4,8049,86825
,4,8050,86830
,4,8051,86835
,4,8052,86840
,4,8053,86845
,4,8054,86850
,4,8055,86855
,4,8056,86860
,4,8057,86865
,4,8058,86870
,4,8059,86875
,4,8060,86880
,4,8061,86885
,4,8062,86890
,4,8063,86895
,4,8064,86900
,4,8065,86905
,4,8066,86910
,4,8067,86915
,4,8068,86920
,4,8069,86925
,4,8070,86930
,4,8071,86935
,4,8072,86940
,4,8073,86945
,4,8074,86950
,4,8075,86955
,4,8076,86960
,4,8077,86965
,4,8078,86970
,4,8079,86975
,4,8080,86980
,4,8081,86985
,4,8082,86990
,4,8083,86995
,4,8084,87000
,4,8085,87005
,4,8086,87010
,4,8087,87015
,4,8088,87020
,4,8089,87025
,4,8090,87030
,4,8091,87035
,4,8092,87040
,4,8093,87045
,4,8094,87050
,4,8095,87055
,4,8096,87060
,4,8097,87065
,4,8098,87070
,4,8099,87075
,4,8100,87080
,4,8101,87085
,4,8102,87090
,4,8103,87095
,4,8104,87100
,4,8105,87105
,4,8106,87110
,4,8107,87115
,4,8108,87120
,4,8109,87125
,4,8110,87130
,4,8111,87135
,4,8112,87140
,4,8113,87145
,4,8114,87150
,4,8115,87155
,4,8116,87160
,4,8117,87165
,4,8118,87170
,4,8119,87175
,4,8120,87180
,4,8121,87185
,4,8122,87190
,4,8123,87195
,4,8124,87200
,4,8125,87205
,4,8126,87210
,4,8127,87215
,4,8128,87220
,4,8129,87225
,4,8130,87230
,4,8131,87235
,4,8132,87240
,4,8133,87245
,4,8134,87250
,4,8135,87255
,4,8136,87260
,4,8137,87265
,4,8138,87270
,4,8139,87275
,4,8140,87280
,4,8141,87285
,4,8142,87290
,4,8143,87295
,4,8144,87300
,4,8145,87305
,4,8146,87310
,4,8147,87315
,4,8148,87320
,4,8149,87325
,4,8150,87330
,4,8151,87335
,4,8152,87340
,4,8153,87345
,4,8154,87350
,4,8155,87355
,4,8156,87360
,4,8157,87365
,4,8158,87370
,4,8159,87375
,4,8160,87380
,4,8161,87385
,4,8162,87390
,4,8163,87395
,4,8164,87400
,4,8165,87405
,4,8166,87410
,4,8167,87415
,4,8168,87420
,4,8169,87425
,4,8170,87430
,4,8171,87435
,4,8172,87440
,4,8173,87445
,4,8174,87450
,4,8175,87455
,4,8176,87460
,4,8177,87465
,4,8178,87470
,4,8179,87475
,4,8180,87480
,4,8181,87485
,4,8182,87490
,4,8183,87495
,4,8184,87500
,4,8185,87505
,4,8186,87510
,4,8187,87515
,4,8188,87520
,4,8189,87525
,4,8190,87530
,4,8191,87535
,4,8192,87540
,4,8193,87545
,4,8194,87550
,4,8195,87555
,4,8196,87560
,4,8197,87565
,4,8198,87570
,4,8199,87575
,4,8200,87580
,4,8201,87585
,4,8202,87590
,4,8203,87595
,4,8204,87600
,4,8205,87605
,4,8206,87610
,4,8207,87615
,4,8208,87620
,4,8209,87625
,4,8210,87630
,4,8211,87635
,4,8212,87640
,4,8213,87645
,4,8214,87650
,4,8215,87655
,4,8216,87660
,4,8217,87665
,4,8218,87670
,4,8219,87675
,4,8220,87680
,4,8221,87685
,4,8222,87690
,4,8223,87695
,4,8224,87700
,4,8225,87705
,4,8226,87710
,4,8227,87715
,4,8228,87720
,4,8229,87725
,4,8230,87730
,4,8231,87735
,4,8232,87740
,4,8233,87745
,4,8234,87750
,4,8235,87755
,4,8236,87760
,4,8237,87765
,4,8238,87770
,4,8239,87775
,4,8240,87780
,4,8241,87785
,4,8242,87790
,4,8243,87795
,4,8244,87800
,4,8245,87805
,4,8246,87810
,4,8247,87815
,4,8248,87820
,4,8249,87825
,4,8250,87830
,4,8251,87835
,4,8252,87840
,4,8253,87845
,4,8254,87850
,4,8255,87855
,4,8256,87860
,4,8257,87865
,4,8258,87870
,4,8259,87875
,4,8260,87880
,4,8261,87885
,4,8262,87890
,4,8263,87895
,4,8264,87900
,4,8265,87905
,4,8266,87910
,4,8267,87915
,4,8268,87920
,4,8269,87925
,4,8270,87930
,4,8271,87935
,4,8272,87940
,4,8273,87945
,4,8274,87950
,4,8275,87955
,4,8276,87960
,4,8277,87965
,4,8278,87970
,4,8279,87975
,4,8280,87980
,4,8281,87985
,4,8282,87990
,4,8283,87995
,4,8284,88000
,4,8285,88005
,4,8286,88010
,4,8287,88015
,4,8288,88020
,4,8289,88025
,4,8290,88030
,4,8291,88035
,4,8292,88040
,4,8293,88045
,4,8294,88050
,4,8295,88055
,4,8296,88060
,4,8297,88065
,4,8298,88070
,4,8299,88075
,4,8300,88080
,4,8301,88085
,4,8302,88090
,4,8303,88095
,4,8304,88100
,4,8305,88105
,4,8306,88110
,4,8307,88115
,4,8308,88120
,4,8309,88125
,4,8310,88130
,4,8311,88135
,4,8312,88140
,4,8313,88145
,4,8314,88150
,4,8315,88155
,4,8316,88160
,4,8317,88165
,4,8318,88170
,4,8319,88175
,4,8320,88180
,4,8321,88185
,4,8322,88190
,4,8323,88195
,4,8324,88200
,4,8325,88205
,4,8326,88210
,4,8327,88215
,4,8328,88220
,4,8329,88225
,4,8330,88230
,4,8331,88235
,4,8332,88240
,4,8333,88245
,4,8334,88250
,4,8335,88255
,4,8336,88260
,4,8337,88265
,4,8338,88270
,4,8339,88275
,4,8340,88280
,4,8341,88285
,4,8342,88290
,4,8343,88295
,4,8344,88300
,4,8345,88305
,4,8346,88310
,4,8347,88315
,4,8348,88320
,4,8349,88325
,4,8350,88330
,4,8351,88335
,4,8352,88340
,4,8353,88345
,4,8354,88350
,4,8355,88355
,4,8356,88360
,4,8357,88365
,4,8358,88370
,4,8359,88375
,4,8360,88380
,4,8361,88385
,4,8362,88390
,4,8363,88395
,4,8364,88400
,4,8365,88405
,4,8366,88410
,4,8367,88415
,4,8368,88420
,4,8369,88425
,4,8370,88430
,4,8371,88435
,4,8372,88440
,4,8373,88445
,4,8374,88450
,4,8375,88455
,4,8376,88460
,4,8377,88465
,4,8378,88470
,4,8379,88475
,4,8380,88480
,4,8381,88485
,4,8382,88490
,4,8383,88495
,4,8384,88500
,4,8385,88505
,4,8386,88510
,4,8387,88515
,4,8388,88520
,4,8389,88525
,4,8390,88530
,4,8391,88535
,4,8392,88540
,4,8393,88545
,4,8394,88550
,4,8395,88555
,4,8396,88560
,4,8397,88565
,4,8398,88570
,4,8399,88575
,4,8400,88580
,4,8401,88585
,4,8402,88590
,4,8403,88595
,4,8404,88600
,4,8405,88605
,4,8406,88610
,4,8407,88615
,4,8408,88620
,4,8409,88625
,4,8410,88630
,4,8411,88635
,4,8412,88640
,4,8413,88645
,4,8414,88650
,4,8415,88655
,4,8416,88660
,4,8417,88665
,4,8418,88670
,4,8419,88675
,4,8420,88680
,4,8421,88685
,4,8422,88690
,4,8423,88695
,4,8424,88700
,4,8425,88705
,4,8426,88710
,4,8427,88715
,4,8428,88720
,4,8429,88725
,4,8430,88730
,4,8431,88735
,4,8432,88740
,4,8433,88745
,4,8434,88750
,4,8435,88755
,4,8436,88760
,4,8437,88765
,4,8438,88770
,4,8439,88775
,4,8440,88780
,4,8441,88785
,4,8442,88790
,4,8443,88795
,4,8444,88800
,4,8445,88805
,4,8446,88810
,4,8447,88815
,4,8448,88820
,4,8449,88825
,4,8450,88830
,4,8451,88835
,4,8452,88840
,4,8453,88845
,4,8454,88850
,4,8455,88855
,4,8456,88860
,4,8457,88865
,4,8458,88870
,4,8459,88875
,4,8460,88880
,4,8461,88885
,4,8462,88890
,4,8463,88895
,4,8464,88900
,4,8465,88905
,4,8466,88910
,4,8467,88915
,4,8468,88920
,4,8469,88925
,4,8470,88930
,4,8471,88935
,4,8472,88940
,4,8473,88945
,4,8474,88950
,4,8475,88955
,4,8476,88960
,4,8477,88965
,4,8478,88970
,4,8479,88975
,4,8480,88980
,4,8481,88985
,4,8482,88990
,4,8483,88995
,4,8484,89000
,4,8485,89005
,4,8486,89010
,4,8487,89015
,4,8488,89020
,4,8489,89025
,4,8490,89030
,4,8491,89035
,4,8492,89040
,4,8493,89045
,4,8494,89050
,4,8495,89055
,4,8496,89060
,4,8497,89065
,4,8498,89070
,4,8499,89075
,4,8500,89080
,4,8501,89085
,4,8502,89090
,4,8503,89095
,4,8504,89100
,4,8505,89105
,4,8506,89110
,4,8507,89115
,4,8508,89120
,4,8509,89125
,4,8510,89130
,4,8511,89135
,4,8512,89140
,4,8513,89145
,4,8514,89150
,4,8515,89155
,4,8516,89160
,4,8517,89165
,4,8518,89170
,4,8519,89175
,4,8520,89180
,4,8521,89185
,4,8522,89190
,4,8523,89195
,4,8524,89200
,4,8525,89205
,4,8526,89210
,4,8527,89215
,4,8528,89220
,4,8529,89225
,4,8530,89230
,4,8531,89235
,4,8532,89240
,4,8533,89245
,4,8534,89250
,4,8535,89255
,4,8536,89260
,4,8537,89265
,4,8538,89270
,4,8539,89275
,4,8540,89280
,4,8541,89285
,4,8542,89290
,4,8543,89295
,4,8544,89300
,4,8545,89305
,4,8546,89310
,4,8547,89315
,4,8548,89320
,4,8549,89325
,4,8550,89330
,4,8551,89335
,4,8552,89340
,4,8553,89345
,4,8554,89350
,4,8555,89355
,4,8556,89360
,4,8557,89365
,4,8558,89370
,4,8559,89375
,4,8560,89380
,4,8561,89385
,4,8562,89390
,4,8563,89395
,4,8564,89400
,4,8565,89405
,4,8566,89410
,4,8567,89415
,4,8568,89420
,4,8569,89425
,4,8570,89430
,4,8571,89435
,4,8572,89440
,4,8573,89445
,4,8574,89450
,4,8575,89455
,4,8576,89460
,4,8577,89465
,4,8578,89470
,4,8579,89475
,4,8580,89480
,4,8581,89485
,4,8582,89490
,4,8583,89495
,4,8584,89500
,4,8585,89505
,4,8586,89510
,4,8587,89515
,4,8588,89520
,4,8589,89525
,4,8590,89530
,4,8591,89535
,4,8592,89540
,4,8593,89545
,4,8594,89550
,4,8595,89555
,4,8596,89560
,4,8597,89565
,4,8598,89570
,4,8599,89575
,4,8600,89580
,4,8601,89585
,4,8602,89590
,4,8603,89595
,4,8604,89600
,4,8605,89605
,4,8606,89610
,4,8607,89615
,4,8608,89620
,4,8609,89625
,4,8610,89630
,4,8611,89635
,4,8612,89640
,4,8613,89645
,4,8614,89650
,4,8615,89655
,4,8616,89660
,4,8617,89665
,4,8618,89670
,4,8619,89675
,4,8620,89680
,4,8621,89685
,4,8622,89690
,4,8623,89695
,4,8624,89700
,4,8625,89705
,4,8626,89710
,4,8627,89715
,4,8628,89720
,4,8629,89725
,4,8630,89730
,4,8631,89735
,4,8632,89740
,4,8633,89745
,4,8634,89750
,4,8635,89755
,4,8636,89760
,4,8637,89765
,4,8638,89770
,4,8639,89775
,4,8640,89780
,4,8641,89785
,4,8642,89790
,4,8643,89795
,4,8644,89800
,4,8645,89805
,4,8646,89810
,4,8647,89815
,4,8648,89820
,4,8649,89825
,4,8650,89830
,4,8651,89835
,4,8652,89840
,4,8653,89845
,4,8654,89850
,4,8655,89855
,4,8656,89860
,4,8657,89865
,4,8658,89870
,4,8659,89875
,4,8660,89880
,4,8661,89885
,4,8662,89890
,4,8663,89895
,4,8664,89900
,4,8665,89905
,4,8666,89910
,4,8667,89915
,4,8668,89920
,4,8669,89925
,4,8670,89930
,4,8671,89935
,4,8672,89940
,4,8673,89945
,4,8674,89950
,4,8675,89955
,4,8676,89960
,4,8677,89965
,4,8678,89970
,4,8679,89975
,4,8680,89980
,4,8681,89985
,4,8682,89990
,4,8683,89995
,4,8684,90000
,4,8685,90005
,4,8686,90010
,4,8687,90015
,4,8688,90020
,4,8689,90025
,4,8690,90030
,4,8691,90035
,4,8692,90040
,4,8693,90045
,4,8694,90050
,4,8695,90055
,4,8696,90060
,4,8697,90065
,4,8698,90070
,4,8699,90075
,4,8700,90080
,4,8701,90085
,4,8702,90090
,4,8703,90095
,4,8704,90100
,4,8705,90105
,4,8706,90110
,4,8707,90115
,4,8708,90120
,4,8709,90125
,4,8710,90130
,4,8711,90135
,4,8712,90140
,4,8713,90145
,4,8714,90150
,4,8715,90155
,4,8716,90160
,4,8717,90165
,4,8718,90170
,4,8719,90175
,4,8720,90180
,4,8721,90185
,4,8722,90190
,4,8723,90195
,4,8724,90200
,4,8725,90205
,4,8726,90210
,4,8727,90215
,4,8728,90220
,4,8729,90225
,4,8730,90230
,4,8731,90235
,4,8732,90240
,4,8733,90245
,4,8734,90250
,4,8735,90255
,4,8736,90260
,4,8737,90265
,4,8738,90270
,4,8739,90275
,4,8740,90280
,4,8741,90285
,4,8742,90290
,4,8743,90295
,4,8744,90300
,4,8745,90305
,4,8746,90310
,4,8747,90315
,4,8748,90320
,4,8749,90325
,4,8750,90330
,4,8751,90335
,4,8752,90340
,4,8753,90345
,4,8754,90350
,4,8755,90355
,4,8756,90360
,4,8757,90365
,4,8758,90370
,4,8759,90375
,4,8760,90380
,4,8761,90385
,4,8762,90390
,4,8763,90395
,4,8764,90400
,4,8765,90405
,4,8766,90410
,4,8767,90415
,4,8768,90420
,4,8769,90425
,4,8770,90430
,4,8771,90435
,4,8772,90440
,4,8773,90445
,4,8774,90450
,4,8775,90455
,4,8776,90460
,4,8777,90465
,4,8778,90470
,4,8779,90475
,4,8780,90480
,4,8781,90485
,4,8782,90490
,4,8783,90495
,4,8784,90500
,4,8785,90505
,4,8786,90510
,4,8787,90515
,4,8788,90520
,4,8789,90525
,4,8790,90530
,4,8791,90535
,4,8792,90540
,4,8793,90545
,4,8794,90550
,4,8795,90555
,4,8796,90560
,4,8797,90565
,4,8798,90570
,4,8799,90575
,4,8800,90580
,4,8801,90585
,4,8802,90590
,4,8803,90595
,4,8804,90600
,4,8805,90605
,4,8806,90610
,4,8807,90615
,4,8808,90620
,4,8809,90625
,4,8810,90630
,4,8811,90635
,4,8812,90640
,4,8813,90645
,4,8814,90650
,4,8815,90655
,4,8816,90660
,4,8817,90665
,4,8818,90670
,4,8819,90675
,4,8820,90680
,4,8821,90685
,4,8822,90690
,4,8823,90695
,4,8824,90700
,4,8825,90705
,4,8826,90710
,4,8827,90715
,4,8828,90720
,4,8829,90725
,4,8830,90730
,4,8831,90735
,4,8832,90740
,4,8833,90745
,4,8834,90750
,4,8835,90755
,4,8836,90760
,4,8837,90765
,4,8838,90770
,4,8839,90775
,4,8840,90780
,4,8841,90785
,4,8842,90790
,4,8843,90795
,4,8844,90800
,4,8845,90805
,4,8846,90810
,4,8847,90815
,4,8848,90820
,4,8849,90825
,4,8850,90830
,4,8851,90835
,4,8852,90840
,4,8853,90845
,4,8854,90850
,4,8855,90855
,4,8856,90860
,4,8857,90865
,4,8858,90870
,4,8859,90875
,4,8860,90880
,4,8861,90885
,4,8862,90890
,4,8863,90895
,4,8864,90900
,4,8865,90905
,4,8866,90910
,4,8867,90915
,4,8868,90920
,4,8869,90925
,4,8870,90930
,4,8871,90935
,4,8872,90940
,4,8873,90945
,4,8874,90950
,4,8875,90955
,4,8876,90960
,4,8877,90965
,4,8878,90970
,4,8879,90975
,4,8880,90980
,4,8881,90985
,4,8882,90990
,4,8883,90995
,4,8884,91000
,4,8885,91005
,4,8886,91010
,4,8887,91015
,4,8888,91020
,4,8889,91025
,4,8890,91030
,4,8891,91035
,4,8892,91040
,4,8893,91045
,4,8894,91050
,4,8895,91055
,4,8896,91060
,4,8897,91065
,4,8898,91070
,4,8899,91075
,4,8900,91080
,4,8901,91085
,4,8902,91090
,4,8903,91095
,4,8904,91100
,4,8905,91105
,4,8906,91110
,4,8907,91115
,4,8908,91120
,4,8909,91125
,4,8910,91130
,4,8911,91135
,4,8912,91140
,4,8913,91145
,4,8914,91150
,4,8915,91155
,4,8916,91160
,4,8917,91165
,4,8918,91170
,4,8919,91175
,4,8920,91180
,4,8921,91185
,4,8922,91190
,4,8923,91195
,4,8924,91200
,4,8925,91205
,4,8926,91210
,4,8927,91215
,4,8928,91220
,4,8929,91225
,4,8930,91230
,4,8931,91235
,4,8932,91240
,4,8933,91245
,4,8934,91250
,4,8935,91255
,4,8936,91260
,4,8937,91265
,4,8938,91270
,4,8939,91275
,4,8940,91280
,4,8941,91285
,4,8942,91290
,4,8943,91295
,4,8944,91300
,4,8945,91305
,4,8946,91310
,4,8947,91315
,4,8948,91320
,4,8949,91325
,4,8950,91330
,4,8951,91335
,4,8952,91340
,4,8953,91345
,4,8954,91350
,4,8955,91355
,4,8956,91360
,4,8957,91365
,4,8958,91370
,4,8959,91375
,4,8960,91380
,4,8961,91385
,4,8962,91390
,4,8963,91395
,4,8964,91400
,4,8965,91405
,4,8966,91410
,4,8967,91415
,4,8968,91420
,4,8969,91425
,4,8970,91430
,4,8971,91435
,4,8972,91440
,4,8973,91445
,4,8974,91450
,4,8975,91455
,4,8976,91460
,4,8977,91465
,4,8978,91470
,4,8979,91475
,4,8980,91480
,4,8981,91485
,4,8982,91490
,4,8983,91495
,4,8984,91500
,4,8985,91505
,4,8986,91510
,4,8987,91515
,4,8988,91520
,4,8989,91525
,4,8990,91530
,4,8991,91535
,4,8992,91540
,4,8993,91545
,4,8994,91550
,4,8995,91555
,4,8996,91560
,4,8997,91565
,4,8998,91570
,4,8999,91575
,4,9000,91580
,4,9001,91585
,4,9002,91590
,4,9003,91595
,4,9004,91600
,4,9005,91605
,4,9006,91610
,4,9007,91615
,4,9008,91620
,4,9009,91625
,4,9010,91630
,4,9011,91635
,4,9012,91640
,4,9013,91645
,4,9014,91650
,4,9015,91655
,4,9016,91660
,4,9017,91665
,4,9018,91670
,4,9019,91675
,4,9020,91680
,4,9021,91685
,4,9022,91690
,4,9023,91695
,4,9024,91700
,4,9025,91705
,4,9026,91710
,4,9027,91715
,4,9028,91720
,4,9029,91725
,4,9030,91730
,4,9031,91735
,4,9032,91740
,4,9033,91745
,4,9034,91750
,4,9035,91755
,4,9036,91760
,4,9037,91765
,4,9038,91770
,4,9039,91775
,4,9040,91780
,4,9041,91785
,4,9042,91790
,4,9043,91795
,4,9044,91800
,4,9045,91805
,4,9046,91810
,4,9047,91815
,4,9048,91820
,4,9049,91825
,4,9050,91830
,4,9051,91835
,4,9052,91840
,4,9053,91845
,4,9054,91850
,4,9055,91855
,4,9056,91860
,4,9057,91865
,4,9058,91870
,4,9059,91875
,4,9060,91880
,4,9061,91885
,4,9062,91890
,4,9063,91895
,4,9064,91900
,4,9065,91905
,4,9066,91910
,4,9067,91915
,4,9068,91920
,4,9069,91925
,4,9070,91930
,4,9071,91935
,4,9072,91940
,4,9073,91945
,4,9074,91950
,4,9075,91955
,4,9076,91960
,4,9077,91965
,4,9078,91970
,4,9079,91975
,4,9080,91980
,4,9081,91985
,4,9082,91990
,4,9083,91995
,4,9084,92000
,4,9085,92005
,4,9086,92010
,4,9087,92015
,4,9088,92020
,4,9089,92025
,4,9090,92030
,4,9091,92035
,4,9092,92040
,4,9093,92045
,4,9094,92050
,4,9095,92055
,4,9096,92060
,4,9097,92065
,4,9098,92070
,4,9099,92075
,4,9100,92080
,4,9101,92085
,4,9102,92090
,4,9103,92095
,4,9104,92100
,4,9105,92105
,4,9106,92110
,4,9107,92115
,4,9108,92120
,4,9109,92125
,4,9110,92130
,4,9111,92135
,4,9112,92140
,4,9113,92145
,4,9114,92150
,4,9115,92155
,4,9116,92160
,4,9117,92165
,4,9118,92170
,4,9119,92175
,4,9120,92180
,4,9121,92185
,4,9122,92190
,4,9123,92195
,4,9124,92200
,4,9125,92205
,4,9126,92210
,4,9127,92215
,4,9128,92220
,4,9129,92225
,4,9130,92230
,4,9131,92235
,4,9132,92240
,4,9133,92245
,4,9134,92250
,4,9135,92255
,4,9136,92260
,4,9137,92265
,4,9138,92270
,4,9139,92275
,4,9140,92280
,4,9141,92285
,4,9142,92290
,4,9143,92295
,4,9144,92300
,4,9145,92305
,4,9146,92310
,4,9147,92315
,4,9148,92320
,4,9149,92325
,4,9150,92330
,4,9151,92335
,4,9152,92340
,4,9153,92345
,4,9154,92350
,4,9155,92355
,4,9156,92360
,4,9157,92365
,4,9158,92370
,4,9159,92375
,4,9160,92380
,4,9161,92385
,4,9162,92390
,4,9163,92395
,4,9164,92400
,4,9165,92405
,4,9166,92410
,4,9167,92415
,4,9168,92420
,4,9169,92425
,4,9170,92430
,4,9171,92435
,4,9172,92440
,4,9173,92445
,4,9174,92450
,4,9175,92455
,4,9176,92460
,4,9177,92465
,4,9178,92470
,4,9179,92475
,4,9180,92480
,4,9181,92485
,4,9182,92490
,4,9183,92495
,4,9184,92500
,4,9185,92505
,4,9186,92510
,4,9187,92515
,4,9188,92520
,4,9189,92525
,4,9190,92530
,4,9191,92535
,4,9192,92540
,4,9193,92545
,4,9194,92550
,4,9195,92555
,4,9196,92560
,4,9197,92565
,4,9198,92570
,4,9199,92575
,4,9200,92580
,4,9201,92585
,4,9202,92590
,4,9203,92595
,4,9204,92600
,4,9205,92605
,4,9206,92610
,4,9207,92615
,4,9208,92620
,4,9209,92625
,4,9210,92630
,4,9211,92635
,4,9212,92640
,4,9213,92645
,4,9214,92650
,4,9215,92655
,4,9216,92660
,4,9217,92665
,4,9218,92670
,4,9219,92675
,4,9220,92680
,4,9221,92685
,4,9222,92690
,4,9223,92695
,4,9224,92700
,4,9225,92705
,4,9226,92710
,4,9227,92715
,4,9228,92720
,4,9229,92725
,4,9230,92730
,4,9231,92735
,4,9232,92740
,4,9233,92745
,4,9234,92750
,4,9235,92755
,4,9236,92760
,4,9237,92765
,4,9238,92770
,4,9239,92775
,4,9240,92780
,4,9241,92785
,4,9242,92790
,4,9243,92795
,4,9244,92800
,4,9245,92805
,4,9246,92810
,4,9247,92815
,4,9248,92820
,4,9249,92825
,4,9250,92830
,4,9251,92835
,4,9252,92840
,4,9253,92845
,4,9254,92850
,4,9255,92855
,4,9256,92860
,4,9257,92865
,4,9258,92870
,4,9259,92875
,4,9260,92880
,4,9261,92885
,4,9262,92890
,4,9263,92895
,4,9264,92900
,4,9265,92905
,4,9266,92910
,4,9267,92915
,4,9268,92920
,4,9269,92925
,4,9270,92930
,4,9271,92935
,4,9272,92940
,4,9273,92945
,4,9274,92950
,4,9275,92955
,4,9276,92960
,4,9277,92965
,4,9278,92970
,4,9279,92975
,4,9280,92980
,4,9281,92985
,4,9282,92990
,4,9283,92995
,4,9284,93000
,4,9285,93005
,4,9286,93010
,4,9287,93015
,4,9288,93020
,4,9289,93025
,4,9290,93030
,4,9291,93035
,4,9292,93040
,4,9293,93045
,4,9294,93050
,4,9295,93055
,4,9296,93060
,4,9297,93065
,4,9298,93070
,4,9299,93075
,4,9300,93080
,4,9301,93085
,4,9302,93090
,4,9303,93095
,4,9304,93100
,4,9305,93105
,4,9306,93110
,4,9307,93115
,4,9308,93120
,4,9309,93125
,4,9310,93130
,4,9311,93135
,4,9312,93140
,4,9313,93145
,4,9314,93150
,4,9315,93155
,4,9316,93160
,4,9317,93165
,4,9318,93170
,4,9319,93175
,4,9320,93180
,4,9321,93185
,4,9322,93190
,4,9323,93195
,4,9324,93200
,4,9325,93205
,4,9326,93210
,4,9327,93215
,4,9328,93220
,4,9329,93225
,4,9330,93230
,4,9331,93235
,4,9332,93240
,4,9333,93245
,4,9334,93250
,4,9335,93255
,4,9336,93260
,4,9337,93265
,4,9338,93270
,4,9339,93275
,4,9340,93280
,4,9341,93285
,4,9342,93290
,4,9343,93295
,4,9344,93300
,4,9345,93305
,4,9346,93310
,4,9347,93315
,4,9348,93320
,4,9349,93325
,4,9350,93330
,4,9351,93335
,4,9352,93340
,4,9353,93345
,4,9354,93350
,4,9355,93355
,4,9356,93360
,4,9357,93365
,4,9358,93370
,4,9359,93375
,4,9360,93380
,4,9361,93385
,4,9362,93390
,4,9363,93395
,4,9364,93400
,4,9365,93405
,4,9366,93410
,4,9367,93415
,4,9368,93420
,4,9369,93425
,4,9370,93430
,4,9371,93435
,4,9372,93440
,4,9373,93445
,4,9374,93450
,4,9375,93455
,4,9376,93460
,4,9377,93465
,4,9378,93470
,4,9379,93475
,4,9380,93480
,4,9381,93485
,4,9382,93490
,4,9383,93495
,4,9384,93500
,4,9385,93505
,4,9386,93510
,4,9387,93515
,4,9388,93520
,4,9389,93525
,4,9390,93530
,4,9391,93535
,4,9392,93540
,4,9393,93545
,4,9394,93550
,4,9395,93555
,4,9396,93560
,4,9397,93565
,4,9398,93570
,4,9399,93575
,4,9400,93580
,4,9401,93585
,4,9402,93590
,4,9403,93595
,4,9404,93600
,4,9405,93605
,4,9406,93610
,4,9407,93615
,4,9408,93620
,4,9409,93625
,4,9410,93630
,4,9411,93635
,4,9412,93640
,4,9413,93645
,4,9414,93650
,4,9415,93655
,4,9416,93660
,4,9417,93665
,4,9418,93670
,4,9419,93675
,4,9420,93680
,4,9421,93685
,4,9422,93690
,4,9423,93695
,4,9424,93700
,4,9425,93705
,4,9426,93710
,4,9427,93715
,4,9428,93720
,4,9429,93725
,4,9430,93730
,4,9431,93735
,4,9432,93740
,4,9433,93745
,4,9434,93750
,4,9435,93755
,4,9436,93760
,4,9437,93765
,4,9438,93770
,4,9439,93775
,4,9440,93780
,4,9441,93785
,4,9442,93790
,4,9443,93795
,4,9444,93800
,4,9445,93805
,4,9446,93810
,4,9447,93815
,4,9448,93820
,4,9449,93825
,4,9450,93830
,4,9451,93835
,4,9452,93840
,4,9453,93845
,4,9454,93850
,4,9455,93855
,4,9456,93860
,4,9457,93865
,4,9458,93870
,4,9459,93875
,4,9460,93880
,4,9461,93885
,4,9462,93890
,4,9463,93895
,4,9464,93900
,4,9465,93905
,4,9466,93910
,4,9467,93915
,4,9468,93920
,4,9469,93925
,4,9470,93930
,4,9471,93935
,4,9472,93940
,4,9473,93945
,4,9474,93950
,4,9475,93955
,4,9476,93960
,4,9477,93965
,4,9478,93970
,4,9479,93975
,4,9480,93980
,4,9481,93985
,4,9482,93990
,4,9483,93995
,4,9484,94000
,4,9485,94005
,4,9486,94010
,4,9487,94015
,4,9488,94020
,4,9489,94025
,4,9490,94030
,4,9491,94035
,4,9492,94040
,4,9493,94045
,4,9494,94050
,4,9495,94055
,4,9496,94060
,4,9497,94065
,4,9498,94070
,4,9499,94075
,4,9500,94080
,4,9501,94085
,4,9502,94090
,4,9503,94095
,4,9504,94100
,4,9505,94105
,4,9506,94110
,4,9507,94115
,4,9508,94120
,4,9509,94125
,4,9510,94130
,4,9511,94135
,4,9512,94140
,4,9513,94145
,4,9514,94150
,4,9515,94155
,4,9516,94160
,4,9517,94165
,4,9518,94170
,4,9519,94175
,4,9520,94180
,4,9521,94185
,4,9522,94190
,4,9523,94195
,4,9524,94200
,4,9525,94205
,4,9526,94210
,4,9527,94215
,4,9528,94220
,4,9529,94225
,4,9530,94230
,4,9531,94235
,4,9532,94240
,4,9533,94245
,4,9534,94250
,4,9535,94255
,4,9536,94260
,4,9537,94265
,4,9538,94270
,4,9539,94275
,4,9540,94280
,4,9541,94285
,4,9542,94290
,4,9543,94295
,4,9544,94300
,4,9545,94305
,4,9546,94310
,4,9547,94315
,4,9548,94320
,4,9549,94325
,4,9550,94330
,4,9551,94335
,4,9552,94340
,4,9553,94345
,4,9554,94350
,4,9555,94355
,4,9556,94360
,4,9557,94365
,4,9558,94370
,4,9559,94375
,4,9560,94380
,4,9561,94385
,4,9562,94390
,4,9563,94395
,4,9564,94400
,4,9565,94405
,4,9566,94410
,4,9567,94415
,4,9568,94420
,4,9569,94425
,4,9570,94430
,4,9571,94435
,4,9572,94440
,4,9573,94445
,4,9574,94450
,4,9575,94455
,4,9576,94460
,4,9577,94465
,4,9578,94470
,4,9579,94475
,4,9580,94480
,4,9581,94485
,4,9582,94490
,4,9583,94495
,4,9584,94500
,4,9585,94505
,4,9586,94510
,4,9587,94515
,4,9588,94520
,4,9589,94525
,4,9590,94530
,4,9591,94535
,4,9592,94540
,4,9593,94545
,4,9594,94550
,4,9595,94555
,4,9596,94560
,4,9597,94565
,4,9598,94570
,4,9599,94575
,4,9600,94580
,4,9601,94585
,4,9602,94590
,4,9603,94595
,4,9604,94600
,4,9605,94605
,4,9606,94610
,4,9607,94615
,4,9608,94620
,4,9609,94625
,4,9610,94630
,4,9611,94635
,4,9612,94640
,4,9613,94645
,4,9614,94650
,4,9615,94655
,4,9616,94660
,4,9617,94665
,4,9618,94670
,4,9619,94675
,4,9620,94680
,4,9621,94685
,4,9622,94690
,4,9623,94695
,4,9624,94700
,4,9625,94705
,4,9626,94710
,4,9627,94715
,4,9628,94720
,4,9629,94725
,4,9630,94730
,4,9631,94735
,4,9632,94740
,4,9633,94745
,4,9634,94750
,4,9635,94755
,4,9636,94760
,4,9637,94765
,4,9638,94770
,4,9639,94775
,4,9640,94780
,4,9641,94785
,4,9642,94790
,4,9643,94795
,4,9644,94800
,4,9645,94805
,4,9646,94810
,4,9647,94815
,4,9648,94820
,4,9649,94825
,4,9650,94830
,4,9651,94835
,4,9652,94840
,4,9653,94845
,4,9654,94850
,4,9655,94855
,4,9656,94860
,4,9657,94865
,4,9658,94870
,4,9659,94875
,4,9660,94880
,4,9661,94885
,4,9662,94890
,4,9663,94895
,4,9664,94900
,4,9665,94905
,4,9666,94910
,4,9667,94915
,4,9668,94920
,4,9669,94925
,4,9670,94930
,4,9671,94935
,4,9672,94940
,4,9673,94945
,4,9674,94950
,4,9675,94955
,4,9676,94960
,4,9677,94965
,4,9678,94970
,4,9679,94975
,4,9680,94980
,4,9681,94985
,4,9682,94990
,4,9683,94995
,4,9684,95000
,4,9685,95005
,4,9686,95010
,4,9687,95015
,4,9688,95020
,4,9689,95025
,4,9690,95030
,4,9691,95035
,4,9692,95040
,4,9693,95045
,4,9694,95050
,4,9695,95055
,4,9696,95060
,4,9697,95065
,4,9698,95070
,4,9699,95075
,4,9700,95080
,4,9701,95085
,4,9702,95090
,4,9703,95095
,4,9704,95100
,4,9705,95105
,4,9706,95110
,4,9707,95115
,4,9708,95120
,4,9709,95125
,4,9710,95130
,4,9711,95135
,4,9712,95140
,4,9713,95145
,4,9714,95150
,4,9715,95155
,4,9716,95160
,4,9717,95165
,4,9718,95170
,4,9719,95175
,4,9720,95180
,4,9721,95185
,4,9722,95190
,4,9723,95195
,4,9724,95200
,4,9725,95205
,4,9726,95210
,4,9727,95215
,4,9728,95220
,4,9729,95225
,4,9730,95230
,4,9731,95235
,4,9732,95240
,4,9733,95245
,4,9734,95250
,4,9735,95255
,4,9736,95260
,4,9737,95265
,4,9738,95270
,4,9739,95275
,4,9740,95280
,4,9741,95285
,4,9742,95290
,4,9743,95295
,4,9744,95300
,4,9745,95305
,4,9746,95310
,4,9747,95315
,4,9748,95320
,4,9749,95325
,4,9750,95330
,4,9751,95335
,4,9752,95340
,4,9753,95345
,4,9754,95350
,4,9755,95355
,4,9756,95360
,4,9757,95365
,4,9758,95370
,4,9759,95375
,4,9760,95380
,4,9761,95385
,4,9762,95390
,4,9763,95395
,4,9764,95400
,4,9765,95405
,4,9766,95410
,4,9767,95415
,4,9768,95420
,4,9769,95425
,4,9770,95430
,4,9771,95435
,4,9772,95440
,4,9773,95445
,4,9774,95450
,4,9775,95455
,4,9776,95460
,4,9777,95465
,4,9778,95470
,4,9779,95475
,4,9780,95480
,4,9781,95485
,4,9782,95490
,4,9783,95495
,4,9784,95500
,4,9785,95505
,4,9786,95510
,4,9787,95515
,4,9788,95520
,4,9789,95525
,4,9790,95530
,4,9791,95535
,4,9792,95540
,4,9793,95545
,4,9794,95550
,4,9795,95555
,4,9796,95560
,4,9797,95565
,4,9798,95570
,4,9799,95575
,4,9800,95580
,4,9801,95585
,4,9802,95590
,4,9803,95595
,4,9804,95600
,4,9805,95605
,4,9806,95610
,4,9807,95615
,4,9808,95620
,4,9809,95625
,4,9810,95630
,4,9811,95635
,4,9812,95640
,4,9813,95645
,4,9814,95650
,4,9815,95655
,4,9816,95660
,4,9817,95665
,4,9818,95670
,4,9819,95675
,4,9820,95680
,4,9821,95685
,4,9822,95690
,4,9823,95695
,4,9824,95700
,4,9825,95705
,4,9826,95710
,4,9827,95715
,4,9828,95720
,4,9829,95725
,4,9830,95730
,4,9831,95735
,4,9832,95740
,4,9833,95745
,4,9834,95750
,4,9835,95755
,4,9836,95760
,4,9837,95765
,4,9838,95770
,4,9839,95775
,4,9840,95780
,4,9841,95785
,4,9842,95790
,4,9843,95795
,4,9844,95800
,4,9845,95805
,4,9846,95810
,4,9847,95815
,4,9848,95820
,4,9849,95825
,4,9850,95830
,4,9851,95835
,4,9852,95840
,4,9853,95845
,4,9854,95850
,4,9855,95855
,4,9856,95860
,4,9857,95865
,4,9858,95870
,4,9859,95875
,4,9860,95880
,4,9861,95885
,4,9862,95890
,4,9863,95895
,4,9864,95900
,4,9865,95905
,4,9866,95910
,4,9867,95915
,4,9868,95920
,4,9869,95925
,4,9870,95930
,4,9871,95935
,4,9872,95940
,4,9873,95945
,4,9874,95950
,4,9875,95955
,4,9876,95960
,4,9877,95965
,4,9878,95970
,4,9879,95975
,4,9880,95980
,4,9881,95985
,4,9882,95990
,4,9883,95995
,4,9884,96000
,4,9885,96005
,4,9886,96010
,4,9887,96015
,4,9888,96020
,4,9889,96025
,4,9890,96030
,4,9891,96035
,4,9892,96040
,4,9893,96045
,4,9894,96050
,4,9895,96055
,4,9896,96060
,4,9897,96065
,4,9898,96070
,4,9899,96075
,4,9900,96080
,4,9901,96085
,4,9902,96090
,4,9903,96095
,4,9904,96100
,4,9905,96105
,4,9906,96110
,4,9907,96115
,4,9908,96120
,4,9909,96125
,4,9910,96130
,4,9911,96135
,4,9912,96140
,4,9913,96145
,4,9914,96150
,4,9915,96155
,4,9916,96160
,4,9917,96165
,4,9918,96170
,4,9919,96175
,4,9920,96180
,4,9921,96185
,4,9922,96190
,4,9923,96195
,4,9924,96200
,4,9925,96205
,4,9926,96210
,4,9927,96215
,4,9928,96220
,4,9929,96225
,4,9930,96230
,4,9931,96235
,4,9932,96240
,4,9933,96245
,4,9934,96250
,4,9935,96255
,4,9936,96260
,4,9937,96265
,4,9938,96270
,4,9939,96275
,4,9940,96280
,4,9941,96285
,4,9942,96290
,4,9943,96295
,4,9944,96300
,4,9945,96305
,4,9946,96310
,4,9947,96315
,4,9948,96320
,4,9949,96325
,4,9950,96330
,4,9951,96335
,4,9952,96340
,4,9953,96345
,4,9954,96350
,4,9955,96355
,4,9956,96360
,4,9957,96365
,4,9958,96370
,4,9959,96375
,4,9960,96380
,4,9961,96385
,4,9962,96390
,4,9963,96395
,4,9964,96400
,4,9965,96405
,4,9966,96410
,4,9967,96415
,4,9968,96420
,4,9969,96425
,4,9970,96430
,4,9971,96435
,4,9972,96440
,4,9973,96445
,4,9974,96450
,4,9975,96455
,4,9976,96460
,4,9977,96465
,4,9978,96470
,4,9979,96475
,4,9980,96480
,4,9981,96485
,4,9982,96490
,4,9983,96495
,4,9984,96500
,4,9985,96505
,4,9986,96510
,4,9987,96515
,4,9988,96520
,4,9989,96525
,4,9990,96530
,4,9991,96535
,4,9992,96540
,4,9993,96545
,4,9994,96550
,4,9995,96555
,4,9996,96560
,4,9997,96565
,4,9998,96570
,4,9999,96575
,4,10000,96580
,4,10001,96585
,4,10002,96590
,4,10003,96595
,4,10004,96600
,4,10005,96605
,4,10006,96610
,4,10007,96615
,4,10008,96620
,4,10009,96625
,4,10010,96630
,4,10011,96635
,4,10012,96640
,4,10013,96645
,4,10014,96650
,4,10015,96655
,4,10016,96660
,4,10017,96665
,4,10018,96670
,4,10019,96675
,4,10020,96680
,4,10021,96685
,4,10022,96690
,4,10023,96695
,4,10024,96700
,4,10025,96705
,4,10026,96710
,4,10027,96715
,4,10028,96720
,4,10029,96725
,4,10030,96730
,4,10031,96735
,4,10032,96740
,4,10033,96745
,4,10034,96750
,4,10035,96755
,4,10036,96760
,4,10037,96765
,4,10038,96770
,4,10039,96775
,4,10040,96780
,4,10041,96785
,4,10042,96790
,4,10043,96795
,4,10044,96800
,4,10045,96805
,4,10046,96810
,4,10047,96815
,4,10048,96820
,4,10049,96825
,4,10050,96830
,4,10051,96835
,4,10052,96840
,4,10053,96845
,4,10054,96850
,4,10055,96855
,4,10056,96860
,4,10057,96865
,4,10058,96870
,4,10059,96875
,4,10060,96880
,4,10061,96885
,4,10062,96890
,4,10063,96895
,4,10064,96900
,4,10065,96905
,4,10066,96910
,4,10067,96915
,4,10068,96920
,4,10069,96925
,4,10070,96930
,4,10071,96935
,4,10072,96940
,4,10073,96945
,4,10074,96950
,4,10075,96955
,4,10076,96960
,4,10077,96965
,4,10078,96970
,4,10079,96975
,4,10080,96980
,4,10081,96985
,4,10082,96990
,4,10083,96995
,4,10084,97000
,4,10085,97005
,4,10086,97010
,4,10087,97015
,4,10088,97020
,4,10089,97025
,4,10090,97030
,4,10091,97035
,4,10092,97040
,4,10093,97045
,4,10094,97050
,4,10095,97055
,4,10096,97060
,4,10097,97065
,4,10098,97070
,4,10099,97075
,4,10100,97080
,4,10101,97085
,4,10102,97090
,4,10103,97095
,4,10104,97100
,4,10105,97105
,4,10106,97110
,4,10107,97115
,4,10108,97120
,4,10109,97125
,4,10110,97130
,4,10111,97135
,4,10112,97140
,4,10113,97145
,4,10114,97150
,4,10115,97155
,4,10116,97160
,4,10117,97165
,4,10118,97170
,4,10119,97175
,4,10120,97180
,4,10121,97185
,4,10122,97190
,4,10123,97195
,4,10124,97200
,4,10125,97205
,4,10126,97210
,4,10127,97215
,4,10128,97220
,4,10129,97225
,4,10130,97230
,4,10131,97235
,4,10132,97240
,4,10133,97245
,4,10134,97250
,4,10135,97255
,4,10136,97260
,4,10137,97265
,4,10138,97270
,4,10139,97275
,4,10140,97280
,4,10141,97285
,4,10142,97290
,4,10143,97295
,4,10144,97300
,4,10145,97305
,4,10146,97310
,4,10147,97315
,4,10148,97320
,4,10149,97325
,4,10150,97330
,4,10151,97335
,4,10152,97340
,4,10153,97345
,4,10154,97350
,4,10155,97355
,4,10156,97360
,4,10157,97365
,4,10158,97370
,4,10159,97375
,4,10160,97380
,4,10161,97385
,4,10162,97390
,4,10163,97395
,4,10164,97400
,4,10165,97405
,4,10166,97410
,4,10167,97415
,4,10168,97420
,4,10169,97425
,4,10170,97430
,4,10171,97435
,4,10172,97440
,4,10173,97445
,4,10174,97450
,4,10175,97455
,4,10176,97460
,4,10177,97465
,4,10178,97470
,4,10179,97475
,4,10180,97480
,4,10181,97485
,4,10182,97490
,4,10183,97495
,4,10184,97500
,4,10185,97505
,4,10186,97510
,4,10187,97515
,4,10188,97520
,4,10189,97525
,4,10190,97530
,4,10191,97535
,4,10192,97540
,4,10193,97545
,4,10194,97550
,4,10195,97555
,4,10196,97560
,4,10197,97565
,4,10198,97570
,4,10199,97575
,4,10200,97580
,4,10201,97585
,4,10202,97590
,4,10203,97595
,4,10204,97600
,4,10205,97605
,4,10206,97610
,4,10207,97615
,4,10208,97620
,4,10209,97625
,4,10210,97630
,4,10211,97635
,4,10212,97640
,4,10213,97645
,4,10214,97650
,4,10215,97655
,4,10216,97660
,4,10217,97665
,4,10218,97670
,4,10219,97675
,4,10220,97680
,4,10221,97685
,4,10222,97690
,4,10223,97695
,4,10224,97700
,4,10225,97705
,4,10226,97710
,4,10227,97715
,4,10228,97720
,4,10229,97725
,4,10230,97730
,4,10231,97735
,4,10232,97740
,4,10233,97745
,4,10234,97750
,4,10235,97755
,4,10236,97760
,4,10237,97765
,4,10238,97770
,4,10239,97775
,4,10240,97780
,4,10241,97785
,4,10242,97790
,4,10243,97795
,4,10244,97800
,4,10245,97805
,4,10246,97810
,4,10247,97815
,4,10248,97820
,4,10249,97825
,4,10250,97830
,4,10251,97835
,4,10252,97840
,4,10253,97845
,4,10254,97850
,4,10255,97855
,4,10256,97860
,4,10257,97865
,4,10258,97870
,4,10259,97875
,4,10260,97880
,4,10261,97885
,4,10262,97890
,4,10263,97895
,4,10264,97900
,4,10265,97905
,4,10266,97910
,4,10267,97915
,4,10268,97920
,4,10269,97925
,4,10270,97930
,4,10271,97935
,4,10272,97940
,4,10273,97945
,4,10274,97950
,4,10275,97955
,4,10276,97960
,4,10277,97965
,4,10278,97970
,4,10279,97975
,4,10280,97980
,4,10281,97985
,4,10282,97990
,4,10283,97995
,4,10284,98000
,4,10285,98005
,4,10286,98010
,4,10287,98015
,4,10288,98020
,4,10289,98025
,4,10290,98030
,4,10291,98035
,4,10292,98040
,4,10293,98045
,4,10294,98050
,4,10295,98055
,4,10296,98060
,4,10297,98065
,4,10298,98070
,4,10299,98075
,4,10300,98080
,4,10301,98085
,4,10302,98090
,4,10303,98095
,4,10304,98100
,4,10305,98105
,4,10306,98110
,4,10307,98115
,4,10308,98120
,4,10309,98125
,4,10310,98130
,4,10311,98135
,4,10312,98140
,4,10313,98145
,4,10314,98150
,4,10315,98155
,4,10316,98160
,4,10317,98165
,4,10318,98170
,4,10319,98175
,4,10320,98180
,4,10321,98185
,4,10322,98190
,4,10323,98195
,4,10324,98200
,4,10325,98205
,4,10326,98210
,4,10327,98215
,4,10328,98220
,4,10329,98225
,4,10330,98230
,4,10331,98235
,4,10332,98240
,4,10333,98245
,4,10334,98250
,4,10335,98255
,4,10336,98260
,4,10337,98265
,4,10338,98270
,4,10339,98275
,4,10340,98280
,4,10341,98285
,4,10342,98290
,4,10343,98295
,4,10344,98300
,4,10345,98305
,4,10346,98310
,4,10347,98315
,4,10348,98320
,4,10349,98325
,4,10350,98330
,4,10351,98335
,4,10352,98340
,4,10353,98345
,4,10354,98350
,4,10355,98355
,4,10356,98360
,4,10357,98365
,4,10358,98370
,4,10359,98375
,4,10360,98380
,4,10361,98385
,4,10362,98390
,4,10363,98395
,4,10364,98400
,4,10365,98405
,4,10366,98410
,4,10367,98415
,4,10368,98420
,4,10369,98425
,4,10370,98430
,4,10371,98435
,4,10372,98440
,4,10373,98445
,4,10374,98450
,4,10375,98455
,4,10376,98460
,4,10377,98465
,4,10378,98470
,4,10379,98475
,4,10380,98480
,4,10381,98485
,4,10382,98490
,4,10383,98495
,4,10384,98500
,4,10385,98505
,4,10386,98510
,4,10387,98515
,4,10388,98520
,4,10389,98525
,4,10390,98530
,4,10391,98535
,4,10392,98540
,4,10393,98545
,4,10394,98550
,4,10395,98555
,4,10396,98560
,4,10397,98565
,4,10398,98570
,4,10399,98575
,4,10400,98580
,4,10401,98585
,4,10402,98590
,4,10403,98595
,4,10404,98600
,4,10405,98605
,4,10406,98610
,4,10407,98615
,4,10408,98620
,4,10409,98625
,4,10410,98630
,4,10411,98635
,4,10412,98640
,4,10413,98645
,4,10414,98650
,4,10415,98655
,4,10416,98660
,4,10417,98665
,4,10418,98670
,4,10419,98675
,4,10420,98680
,4,10421,98685
,4,10422,98690
,4,10423,98695
,4,10424,98700
,4,10425,98705
,4,10426,98710
,4,10427,98715
,4,10428,98720
,4,10429,98725
,4,10430,98730
,4,10431,98735
,4,10432,98740
,4,10433,98745
,4,10434,98750
,4,10435,98755
,4,10436,98760
,4,10437,98765
,4,10438,98770
,4,10439,98775
,4,10440,98780
,4,10441,98785
,4,10442,98790
,4,10443,98795
,4,10444,98800
,4,10445,98805
,4,10446,98810
,4,10447,98815
,4,10448,98820
,4,10449,98825
,4,10450,98830
,4,10451,98835
,4,10452,98840
,4,10453,98845
,4,10454,98850
,4,10455,98855
,4,10456,98860
,4,10457,98865
,4,10458,98870
,4,10459,98875
,4,10460,98880
,4,10461,98885
,4,10462,98890
,4,10463,98895
,4,10464,98900
,4,10465,98905
,4,10466,98910
,4,10467,98915
,4,10468,98920
,4,10469,98925
,4,10470,98930
,4,10471,98935
,4,10472,98940
,4,10473,98945
,4,10474,98950
,4,10475,98955
,4,10476,98960
,4,10477,98965
,4,10478,98970
,4,10479,98975
,4,10480,98980
,4,10481,98985
,4,10482,98990
,4,10483,98995
,4,10484,99000
,4,10485,99005
,4,10486,99010
,4,10487,99015
,4,10488,99020
,4,10489,99025
,4,10490,99030
,4,10491,99035
,4,10492,99040
,4,10493,99045
,4,10494,99050
,4,10495,99055
,4,10496,99060
,4,10497,99065
,4,10498,99070
,4,10499,99075
,4,10500,99080
,4,10501,99085
,4,10502,99090
,4,10503,99095
,4,10504,99100
,4,10505,99105
,4,10506,99110
,4,10507,99115
,4,10508,99120
,4,10509,99125
,4,10510,99130
,4,10511,99135
,4,10512,99140
,4,10513,99145
,4,10514,99150
,4,10515,99155
,4,10516,99160
,4,10517,99165
,4,10518,99170
,4,10519,99175
,4,10520,99180
,4,10521,99185
,4,10522,99190
,4,10523,99195
,4,10524,99200
,4,10525,99205
,4,10526,99210
,4,10527,99215
,4,10528,99220
,4,10529,99225
,4,10530,99230
,4,10531,99235
,4,10532,99240
,4,10533,99245
,4,10534,99250
,4,10535,99255
,4,10536,99260
,4,10537,99265
,4,10538,99270
,4,10539,99275
,4,10540,99280
,4,10541,99285
,4,10542,99290
,4,10543,99295
,4,10544,99300
,4,10545,99305
,4,10546,99310
,4,10547,99315
,4,10548,99320
,4,10549,99325
,4,10550,99330
,4,10551,99335
,4,10552,99340
,4,10553,99345
,4,10554,99350
,4,10555,99355
,4,10556,99360
,4,10557,99365
,4,10558,99370
,4,10559,99375
,4,10560,99380
,4,10561,99385
,4,10562,99390
,4,10563,99395
,4,10564,99400
,4,10565,99405
,4,10566,99410
,4,10567,99415
,4,10568,99420
,4,10569,99425
,4,10570,99430
,4,10571,99435
,4,10572,99440
,4,10573,99445
,4,10574,99450
,4,10575,99455
,4,10576,99460
,4,10577,99465
,4,10578,99470
,4,10579,99475
,4,10580,99480
,4,10581,99485
,4,10582,99490
,4,10583,99495
,4,10584,99500
,4,10585,99505
,4,10586,99510
,4,10587,99515
,4,10588,99520
,4,10589,99525
,4,10590,99530
,4,10591,99535
,4,10592,99540
,4,10593,99545
,4,10594,99550
,4,10595,99555
,4,10596,99560
,4,10597,99565
,4,10598,99570
,4,10599,99575
,4,10600,99580
,4,10601,99585
,4,10602,99590
,4,10603,99595
,4,10604,99600
,4,10605,99605
,4,10606,99610
,4,10607,99615
,4,10608,99620
,4,10609,99625
,4,10610,99630
,4,10611,99635
,4,10612,99640
,4,10613,99645
,4,10614,99650
,4,10615,99655
,4,10616,99660
,4,10617,99665
,4,10618,99670
,4,10619,99675
,4,10620,99680
,4,10621,99685
,4,10622,99690
,4,10623,99695
,4,10624,99700
,4,10625,99705
,4,10626,99710
,4,10627,99715
,4,10628,99720
,4,10629,99725
,4,10630,99730
,4,10631,99735
,4,10632,99740
,4,10633,99745
,4,10634,99750
,4,10635,99755
,4,10636,99760
,4,10637,99765
,4,10638,99770
,4,10639,99775
,4,10640,99780
,4,10641,99785
,4,10642,99790
,4,10643,99795
,4,10644,99800
,4,10645,99805
,4,10646,99810
,4,10647,99815
,4,10648,99820
,4,10649,99825
,4,10650,99830
,4,10651,99835
,4,10652,99840
,4,10653,99845
,4,10654,99850
,4,10655,99855
,4,10656,99860
,4,10657,99865
,4,10658,99870
,4,10659,99875
,4,10660,99880
,4,10661,99885
,4,10662,99890
,4,10663,99895
,4,10664,99900
,4,10665,99905
,4,10666,99910
,4,10667,99915
,4,10668,99920
,4,10669,99925
,4,10670,99930
,4,10671,99935
,4,10672,99940
,4,10673,99945
,4,10674,99950
,4,10675,99955
,4,10676,99960
,4,10677,99965
,4,10678,99970
,4,10679,99975
,4,10680,99980
,4,10681,99985
,4,10682,99990
,4,10683,99995
,4,10684,100000
,4,10685,100005
,4,10686,100010
,4,10687,100015
,4,10688,100020
,4,10689,100025
,4,10690,100030
,4,10691,100035
,4,10692,100040
,4,10693,100045
,4,10694,100050
,4,10695,100055
,4,10696,100060
,4,10697,100065
,4,10698,100070
,4,10699,100075
,4,10700,100080
,4,10701,100085
,4,10702,100090
,4,10703,100095
,4,10704,100100
,4,10705,100105
,4,10706,100110
,4,10707,100115
,4,10708,100120
,4,10709,100125
,4,10710,100130
,4,10711,100135
,4,10712,100140
,4,10713,100145
,4,10714,100150
,4,10715,100155
,4,10716,100160
,4,10717,100165
,4,10718,100170
,4,10719,100175
,4,10720,100180
,4,10721,100185
,4,10722,100190
,4,10723,100195
,4,10724,100200
,4,10725,100205
,4,10726,100210
,4,10727,100215
,4,10728,100220
,4,10729,100225
,4,10730,100230
,4,10731,100235
,4,10732,100240
,4,10733,100245
,4,10734,100250
,4,10735,100255
,4,10736,100260
,4,10737,100265
,4,10738,100270
,4,10739,100275
,4,10740,100280
,4,10741,100285
,4,10742,100290
,4,10743,100295
,4,10744,100300
,4,10745,100305
,4,10746,100310
,4,10747,100315
,4,10748,100320
,4,10749,100325
,4,10750,100330
,4,10751,100335
,4,10752,100340
,4,10753,100345
,4,10754,100350
,4,10755,100355
,4,10756,100360
,4,10757,100365
,4,10758,100370
,4,10759,100375
,4,10760,100380
,4,10761,100385
,4,10762,100390
,4,10763,100395
,4,10764,100400
,4,10765,100405
,4,10766,100410
,4,10767,100415
,4,10768,100420
,4,10769,100425
,4,10770,100430
,4,10771,100435
,4,10772,100440
,4,10773,100445
,4,10774,100450
,4,10775,100455
,4,10776,100460
,4,10777,100465
,4,10778,100470
,4,10779,100475
,4,10780,100480
,4,10781,100485
,4,10782,100490
,4,10783,100495
,4,10784,100500
,4,10785,100505
,4,10786,100510
,4,10787,100515
,4,10788,100520
,4,10789,100525
,4,10790,100530
,4,10791,100535
,4,10792,100540
,4,10793,100545
,4,10794,100550
,4,10795,100555
,4,10796,100560
,4,10797,100565
,4,10798,100570
,4,10799,100575
,4,10800,100580
,4,10801,100585
,4,10802,100590
,4,10803,100595
,4,10804,100600
,4,10805,100605
,4,10806,100610
,4,10807,100615
,4,10808,100620
,4,10809,100625
,4,10810,100630
,4,10811,100635
,4,10812,100640
,4,10813,100645
,4,10814,100650
,4,10815,100655
,4,10816,100660
,4,10817,100665
,4,10818,100670
,4,10819,100675
,4,10820,100680
,4,10821,100685
,4,10822,100690
,4,10823,100695
,4,10824,100700
,4,10825,100705
,4,10826,100710
,4,10827,100715
,4,10828,100720
,4,10829,100725
,4,10830,100730
,4,10831,100735
,4,10832,100740
,4,10833,100745
,4,10834,100750
,4,10835,100755
,4,10836,100760
,4,10837,100765
,4,10838,100770
,4,10839,100775
,4,10840,100780
,4,10841,100785
,4,10842,100790
,4,10843,100795
,4,10844,100800
,4,10845,100805
,4,10846,100810
,4,10847,100815
,4,10848,100820
,4,10849,100825
,4,10850,100830
,4,10851,100835
,4,10852,100840
,4,10853,100845
,4,10854,100850
,4,10855,100855
,4,10856,100860
,4,10857,100865
,4,10858,100870
,4,10859,100875
,4,10860,100880
,4,10861,100885
,4,10862,100890
,4,10863,100895
,4,10864,100900
,4,10865,100905
,4,10866,100910
,4,10867,100915
,4,10868,100920
,4,10869,100925
,4,10870,100930
,4,10871,100935
,4,10872,100940
,4,10873,100945
,4,10874,100950
,4,10875,100955
,4,10876,100960
,4,10877,100965
,4,10878,100970
,4,10879,100975
,4,10880,100980
,4,10881,100985
,4,10882,100990
,4,10883,100995
,4,10884,101000
,4,10885,101005
,4,10886,101010
,4,10887,101015
,4,10888,101020
,4,10889,101025
,4,10890,101030
,4,10891,101035
,4,10892,101040
,4,10893,101045
,4,10894,101050
,4,10895,101055
,4,10896,101060
,4,10897,101065
,4,10898,101070
,4,10899,101075
,4,10900,101080
,4,10901,101085
,4,10902,101090
,4,10903,101095
,4,10904,101100
,4,10905,101105
,4,10906,101110
,4,10907,101115
,4,10908,101120
,4,10909,101125
,4,10910,101130
,4,10911,101135
,4,10912,101140
,4,10913,101145
,4,10914,101150
,4,10915,101155
,4,10916,101160
,4,10917,101165
,4,10918,101170
,4,10919,101175
,4,10920,101180
,4,10921,101185
,4,10922,101190
,4,10923,101195
,4,10924,101200
,4,10925,101205
,4,10926,101210
,4,10927,101215
,4,10928,101220
,4,10929,101225
,4,10930,101230
,4,10931,101235
,4,10932,101240
,4,10933,101245
,4,10934,101250
,4,10935,101255
,4,10936,101260
,4,10937,101265
,4,10938,101270
,4,10939,101275
,4,10940,101280
,4,10941,101285
,4,10942,101290
,4,10943,101295
,4,10944,101300
,4,10945,101305
,4,10946,101310
,4,10947,101315
,4,10948,101320
,4,10949,101325
,4,10950,101330
,4,10951,101335
,4,10952,101340
,4,10953,101345
,4,10954,101350
,4,10955,101355
,4,10956,101360
,4,10957,101365
,4,10958,101370
,4,10959,101375
,4,10960,101380
,4,10961,101385
,4,10962,101390
,4,10963,101395
,4,10964,101400
,4,10965,101405
,4,10966,101410
,4,10967,101415
,4,10968,101420
,4,10969,101425
,4,10970,101430
,4,10971,101435
,4,10972,101440
,4,10973,101445
,4,10974,101450
,4,10975,101455
,4,10976,101460
,4,10977,101465
,4,10978,101470
,4,10979,101475
,4,10980,101480
,4,10981,101485
,4,10982,101490
,4,10983,101495
,4,10984,101500
,4,10985,101505
,4,10986,101510
,4,10987,101515
,4,10988,101520
,4,10989,101525
,4,10990,101530
,4,10991,101535
,4,10992,101540
,4,10993,101545
,4,10994,101550
,4,10995,101555
,4,10996,101560
,4,10997,101565
,4,10998,101570
,4,10999,101575
,4,11000,101580
,4,11001,101585
,4,11002,101590
,4,11003,101595
,4,11004,101600
,4,11005,101605
,4,11006,101610
,4,11007,101615
,4,11008,101620
,4,11009,101625
,4,11010,101630
,4,11011,101635
,4,11012,101640
,4,11013,101645
,4,11014,101650
,4,11015,101655
,4,11016,101660
,4,11017,101665
,4,11018,101670
,4,11019,101675
,4,11020,101680
,4,11021,101685
,4,11022,101690
,4,11023,101695
,4,11024,101700
,4,11025,101705
,4,11026,101710
,4,11027,101715
,4,11028,101720
,4,11029,101725
,4,11030,101730
,4,11031,101735
,4,11032,101740
,4,11033,101745
,4,11034,101750
,4,11035,101755
,4,11036,101760
,4,11037,101765
,4,11038,101770
,4,11039,101775
,4,11040,101780
,4,11041,101785
,4,11042,101790
,4,11043,101795
,4,11044,101800
,4,11045,101805
,4,11046,101810
,4,11047,101815
,4,11048,101820
,4,11049,101825
,4,11050,101830
,4,11051,101835
,4,11052,101840
,4,11053,101845
,4,11054,101850
,4,11055,101855
,4,11056,101860
,4,11057,101865
,4,11058,101870
,4,11059,101875
,4,11060,101880
,4,11061,101885
,4,11062,101890
,4,11063,101895
,4,11064,101900
,4,11065,101905
,4,11066,101910
,4,11067,101915
,4,11068,101920
,4,11069,101925
,4,11070,101930
,4,11071,101935
,4,11072,101940
,4,11073,101945
,4,11074,101950
,4,11075,101955
,4,11076,101960
,4,11077,101965
,4,11078,101970
,4,11079,101975
,4,11080,101980
,4,11081,101985
,4,11082,101990
,4,11083,101995
,4,11084,102000
,4,11085,102005
,4,11086,102010
,4,11087,102015
,4,11088,102020
,4,11089,102025
,4,11090,102030
,4,11091,102035
,4,11092,102040
,4,11093,102045
,4,11094,102050
,4,11095,102055
,4,11096,102060
,4,11097,102065
,4,11098,102070
,4,11099,102075
,4,11100,102080
,4,11101,102085
,4,11102,102090
,4,11103,102095
,4,11104,102100
,4,11105,102105
,4,11106,102110
,4,11107,102115
,4,11108,102120
,4,11109,102125
,4,11110,102130
,4,11111,102135
,4,11112,102140
,4,11113,102145
,4,11114,102150
,4,11115,102155
,4,11116,102160
,4,11117,102165
,4,11118,102170
,4,11119,102175
,4,11120,102180
,4,11121,102185
,4,11122,102190
,4,11123,102195
,4,11124,102200
,4,11125,102205
,4,11126,102210
,4,11127,102215
,4,11128,102220
,4,11129,102225
,4,11130,102230
,4,11131,102235
,4,11132,102240
,4,11133,102245
,4,11134,102250
,4,11135,102255
,4,11136,102260
,4,11137,102265
,4,11138,102270
,4,11139,102275
,4,11140,102280
,4,11141,102285
,4,11142,102290
,4,11143,102295
,4,11144,102300
,4,11145,102305
,4,11146,102310
,4,11147,102315
,4,11148,102320
,4,11149,102325
,4,11150,102330
,4,11151,102335
,4,11152,102340
,4,11153,102345
,4,11154,102350
,4,11155,102355
,4,11156,102360
,4,11157,102365
,4,11158,102370
,4,11159,102375
,4,11160,102380
,4,11161,102385
,4,11162,102390
,4,11163,102395
,4,11164,102400
,4,11165,102405
,4,11166,102410
,4,11167,102415
,4,11168,102420
,4,11169,102425
,4,11170,102430
,4,11171,102435
,4,11172,102440
,4,11173,102445
,4,11174,102450
,4,11175,102455
,4,11176,102460
,4,11177,102465
,4,11178,102470
,4,11179,102475
,4,11180,102480
,4,11181,102485
,4,11182,102490
,4,11183,102495
,4,11184,102500
,4,11185,102505
,4,11186,102510
,4,11187,102515
,4,11188,102520
,4,11189,102525
,4,11190,102530
,4,11191,102535
,4,11192,102540
,4,11193,102545
,4,11194,102550
,4,11195,102555
,4,11196,102560
,4,11197,102565
,4,11198,102570
,4,11199,102575
,4,11200,102580
,4,11201,102585
,4,11202,102590
,4,11203,102595
,4,11204,102600
,4,11205,102605
,4,11206,102610
,4,11207,102615
,4,11208,102620
,4,11209,102625
,4,11210,102630
,4,11211,102635
,4,11212,102640
,4,11213,102645
,4,11214,102650
,4,11215,102655
,4,11216,102660
,4,11217,102665
,4,11218,102670
,4,11219,102675
,4,11220,102680
,4,11221,102685
,4,11222,102690
,4,11223,102695
,4,11224,102700
,4,11225,102705
,4,11226,102710
,4,11227,102715
,4,11228,102720
,4,11229,102725
,4,11230,102730
,4,11231,102735
,4,11232,102740
,4,11233,102745
,4,11234,102750
,4,11235,102755
,4,11236,102760
,4,11237,102765
,4,11238,102770
,4,11239,102775
,4,11240,102780
,4,11241,102785
,4,11242,102790
,4,11243,102795
,4,11244,102800
,4,11245,102805
,4,11246,102810
,4,11247,102815
,4,11248,102820
,4,11249,102825
,4,11250,102830
,4,11251,102835
,4,11252,102840
,4,11253,102845
,4,11254,102850
,4,11255,102855
,4,11256,102860
,4,11257,102865
,4,11258,102870
,4,11259,102875
,4,11260,102880
,4,11261,102885
,4,11262,102890
,4,11263,102895
,4,11264,102900
,4,11265,102905
,4,11266,102910
,4,11267,102915
,4,11268,102920
,4,11269,102925
,4,11270,102930
,4,11271,102935
,4,11272,102940
,4,11273,102945
,4,11274,102950
,4,11275,102955
,4,11276,102960
,4,11277,102965
,4,11278,102970
,4,11279,102975
,4,11280,102980
,4,11281,102985
,4,11282,102990
,4,11283,102995
,4,11284,103000
,4,11285,103005
,4,11286,103010
,4,11287,103015
,4,11288,103020
,4,11289,103025
,4,11290,103030
,4,11291,103035
,4,11292,103040
,4,11293,103045
,4,11294,103050
,4,11295,103055
,4,11296,103060
,4,11297,103065
,4,11298,103070
,4,11299,103075
,4,11300,103080
,4,11301,103085
,4,11302,103090
,4,11303,103095
,4,11304,103100
,4,11305,103105
,4,11306,103110
,4,11307,103115
,4,11308,103120
,4,11309,103125
,4,11310,103130
,4,11311,103135
,4,11312,103140
,4,11313,103145
,4,11314,103150
,4,11315,103155
,4,11316,103160
,4,11317,103165
,4,11318,103170
,4,11319,103175
,4,11320,103180
,4,11321,103185
,4,11322,103190
,4,11323,103195
,4,11324,103200
,4,11325,103205
,4,11326,103210
,4,11327,103215
,4,11328,103220
,4,11329,103225
,4,11330,103230
,4,11331,103235
,4,11332,103240
,4,11333,103245
,4,11334,103250
,4,11335,103255
,4,11336,103260
,4,11337,103265
,4,11338,103270
,4,11339,103275
,4,11340,103280
,4,11341,103285
,4,11342,103290
,4,11343,103295
,4,11344,103300
,4,11345,103305
,4,11346,103310
,4,11347,103315
,4,11348,103320
,4,11349,103325
,4,11350,103330
,4,11351,103335
,4,11352,103340
,4,11353,103345
,4,11354,103350
,4,11355,103355
,4,11356,103360
,4,11357,103365
,4,11358,103370
,4,11359,103375
,4,11360,103380
,4,11361,103385
,4,11362,103390
,4,11363,103395
,4,11364,103400
,4,11365,103405
,4,11366,103410
,4,11367,103415
,4,11368,103420
,4,11369,103425
,4,11370,103430
,4,11371,103435
,4,11372,103440
,4,11373,103445
,4,11374,103450
,4,11375,103455
,4,11376,103460
,4,11377,103465
,4,11378,103470
,4,11379,103475
,4,11380,103480
,4,11381,103485
,4,11382,103490
,4,11383,103495
,4,11384,103500
,4,11385,103505
,4,11386,103510
,4,11387,103515
,4,11388,103520
,4,11389,103525
,4,11390,103530
,4,11391,103535
,4,11392,103540
,4,11393,103545
,4,11394,103550
,4,11395,103555
,4,11396,103560
,4,11397,103565
,4,11398,103570
,4,11399,103575
,4,11400,103580
,4,11401,103585
,4,11402,103590
,4,11403,103595
,4,11404,103600
,4,11405,103605
,4,11406,103610
,4,11407,103615
,4,11408,103620
,4,11409,103625
,4,11410,103630
,4,11411,103635
,4,11412,103640
,4,11413,103645
,4,11414,103650
,4,11415,103655
,4,11416,103660
,4,11417,103665
,4,11418,103670
,4,11419,103675
,4,11420,103680
,4,11421,103685
,4,11422,103690
,4,11423,103695
,4,11424,103700
,4,11425,103705
,4,11426,103710
,4,11427,103715
,4,11428,103720
,4,11429,103725
,4,11430,103730
,4,11431,103735
,4,11432,103740
,4,11433,103745
,4,11434,103750
,4,11435,103755
,4,11436,103760
,4,11437,103765
,4,11438,103770
,4,11439,103775
,4,11440,103780
,4,11441,103785
,4,11442,103790
,4,11443,103795
,4,11444,103800
,4,11445,103805
,4,11446,103810
,4,11447,103815
,4,11448,103820
,4,11449,103825
,4,11450,103830
,4,11451,103835
,4,11452,103840
,4,11453,103845
,4,11454,103850
,4,11455,103855
,4,11456,103860
,4,11457,103865
,4,11458,103870
,4,11459,103875
,4,11460,103880
,4,11461,103885
,4,11462,103890
,4,11463,103895
,4,11464,103900
,4,11465,103905
,4,11466,103910
,4,11467,103915
,4,11468,103920
,4,11469,103925
,4,11470,103930
,4,11471,103935
,4,11472,103940
,4,11473,103945
,4,11474,103950
,4,11475,103955
,4,11476,103960
,4,11477,103965
,4,11478,103970
,4,11479,103975
,4,11480,103980
,4,11481,103985
,4,11482,103990
,4,11483,103995
,4,11484,104000
,4,11485,104005
,4,11486,104010
,4,11487,104015
,4,11488,104020
,4,11489,104025
,4,11490,104030
,4,11491,104035
,4,11492,104040
,4,11493,104045
,4,11494,104050
,4,11495,104055
,4,11496,104060
,4,11497,104065
,4,11498,104070
,4,11499,104075
,4,11500,104080
,4,11501,104085
,4,11502,104090
,4,11503,104095
,4,11504,104100
,4,11505,104105
,4,11506,104110
,4,11507,104115
,4,11508,104120
,4,11509,104125
,4,11510,104130
,4,11511,104135
,4,11512,104140
,4,11513,104145
,4,11514,104150
,4,11515,104155
,4,11516,104160
,4,11517,104165
,4,11518,104170
,4,11519,104175
,4,11520,104180
,4,11521,104185
,4,11522,104190
,4,11523,104195
,4,11524,104200
,4,11525,104205
,4,11526,104210
,4,11527,104215
,4,11528,104220
,4,11529,104225
,4,11530,104230
,4,11531,104235
,4,11532,104240
,4,11533,104245
,4,11534,104250
,4,11535,104255
,4,11536,104260
,4,11537,104265
,4,11538,104270
,4,11539,104275
,4,11540,104280
,4,11541,104285
,4,11542,104290
,4,11543,104295
,4,11544,104300
,4,11545,104305
,4,11546,104310
,4,11547,104315
,4,11548,104320
,4,11549,104325
,4,11550,104330
,4,11551,104335
,4,11552,104340
,4,11553,104345
,4,11554,104350
,4,11555,104355
,4,11556,104360
,4,11557,104365
,4,11558,104370
,4,11559,104375
,4,11560,104380
,4,11561,104385
,4,11562,104390
,4,11563,104395
,4,11564,104400
,4,11565,104405
,4,11566,104410
,4,11567,104415
,4,11568,104420
,4,11569,104425
,4,11570,104430
,4,11571,104435
,4,11572,104440
,4,11573,104445
,4,11574,104450
,4,11575,104455
,4,11576,104460
,4,11577,104465
,4,11578,104470
,4,11579,104475
,4,11580,104480
,4,11581,104485
,4,11582,104490
,4,11583,104495
,4,11584,104500
,4,11585,104505
,4,11586,104510
,4,11587,104515
,4,11588,104520
,4,11589,104525
,4,11590,104530
,4,11591,104535
,4,11592,104540
,4,11593,104545
,4,11594,104550
,4,11595,104555
,4,11596,104560
,4,11597,104565
,4,11598,104570
,4,11599,104575
,4,11600,104580
,4,11601,104585
,4,11602,104590
,4,11603,104595
,4,11604,104600
,4,11605,104605
,4,11606,104610
,4,11607,104615
,4,11608,104620
,4,11609,104625
,4,11610,104630
,4,11611,104635
,4,11612,104640
,4,11613,104645
,4,11614,104650
,4,11615,104655
,4,11616,104660
,4,11617,104665
,4,11618,104670
,4,11619,104675
,4,11620,104680
,4,11621,104685
,4,11622,104690
,4,11623,104695
,4,11624,104700
,4,11625,104705
,4,11626,104710
,4,11627,104715
,4,11628,104720
,4,11629,104725
,4,11630,104730
,4,11631,104735
,4,11632,104740
,4,11633,104745
,4,11634,104750
,4,11635,104755
,4,11636,104760
,4,11637,104765
,4,11638,104770
,4,11639,104775
,4,11640,104780
,4,11641,104785
,4,11642,104790
,4,11643,104795
,4,11644,104800
,4,11645,104805
,4,11646,104810
,4,11647,104815
,4,11648,104820
,4,11649,104825
,4,11650,104830
,4,11651,104835
,4,11652,104840
,4,11653,104845
,4,11654,104850
,4,11655,104855
,4,11656,104860
,4,11657,104865
,4,11658,104870
,4,11659,104875
,4,11660,104880
,4,11661,104885
,4,11662,104890
,4,11663,104895
,4,11664,104900
,4,11665,104905
,4,11666,104910
,4,11667,104915
,4,11668,104920
,4,11669,104925
,4,11670,104930
,4,11671,104935
,4,11672,104940
,4,11673,104945
,4,11674,104950
,4,11675,104955
,4,11676,104960
,4,11677,104965
,4,11678,104970
,4,11679,104975
,4,11680,104980
,4,11681,104985
,4,11682,104990
,4,11683,104995
,4,11684,105000
,4,11685,105005
,4,11686,105010
,4,11687,105015
,4,11688,105020
,4,11689,105025
,4,11690,105030
,4,11691,105035
,4,11692,105040
,4,11693,105045
,4,11694,105050
,4,11695,105055
,4,11696,105060
,4,11697,105065
,4,11698,105070
,4,11699,105075
,4,11700,105080
,4,11701,105085
,4,11702,105090
,4,11703,105095
,4,11704,105100
,4,11705,105105
,4,11706,105110
,4,11707,105115
,4,11708,105120
,4,11709,105125
,4,11710,105130
,4,11711,105135
,4,11712,105140
,4,11713,105145
,4,11714,105150
,4,11715,105155
,4,11716,105160
,4,11717,105165
,4,11718,105170
,4,11719,105175
,4,11720,105180
,4,11721,105185
,4,11722,105190
,4,11723,105195
,4,11724,105200
,4,11725,105205
,4,11726,105210
,4,11727,105215
,4,11728,105220
,4,11729,105225
,4,11730,105230
,4,11731,105235
,4,11732,105240
,4,11733,105245
,4,11734,105250
,4,11735,105255
,4,11736,105260
,4,11737,105265
,4,11738,105270
,4,11739,105275
,4,11740,105280
,4,11741,105285
,4,11742,105290
,4,11743,105295
,4,11744,105300
,4,11745,105305
,4,11746,105310
,4,11747,105315
,4,11748,105320
,4,11749,105325
,4,11750,105330
,4,11751,105335
,4,11752,105340
,4,11753,105345
,4,11754,105350
,4,11755,105355
,4,11756,105360
,4,11757,105365
,4,11758,105370
,4,11759,105375
,4,11760,105380
,4,11761,105385
,4,11762,105390
,4,11763,105395
,4,11764,105400
,4,11765,105405
,4,11766,105410
,4,11767,105415
,4,11768,105420
,4,11769,105425
,4,11770,105430
,4,11771,105435
,4,11772,105440
,4,11773,105445
,4,11774,105450
,4,11775,105455
,4,11776,105460
,4,11777,105465
,4,11778,105470
,4,11779,105475
,4,11780,105480
,4,11781,105485
,4,11782,105490
,4,11783,105495
,4,11784,105500
,4,11785,105505
,4,11786,105510
,4,11787,105515
,4,11788,105520
,4,11789,105525
,4,11790,105530
,4,11791,105535
,4,11792,105540
,4,11793,105545
,4,11794,105550
,4,11795,105555
,4,11796,105560
,4,11797,105565
,4,11798,105570
,4,11799,105575
,4,11800,105580
,4,11801,105585
,4,11802,105590
,4,11803,105595
,4,11804,105600
,4,11805,105605
,4,11806,105610
,4,11807,105615
,4,11808,105620
,4,11809,105625
,4,11810,105630
,4,11811,105635
,4,11812,105640
,4,11813,105645
,4,11814,105650
,4,11815,105655
,4,11816,105660
,4,11817,105665
,4,11818,105670
,4,11819,105675
,4,11820,105680
,4,11821,105685
,4,11822,105690
,4,11823,105695
,4,11824,105700
,4,11825,105705
,4,11826,105710
,4,11827,105715
,4,11828,105720
,4,11829,105725
,4,11830,105730
,4,11831,105735
,4,11832,105740
,4,11833,105745
,4,11834,105750
,4,11835,105755
,4,11836,105760
,4,11837,105765
,4,11838,105770
,4,11839,105775
,4,11840,105780
,4,11841,105785
,4,11842,105790
,4,11843,105795
,4,11844,105800
,4,11845,105805
,4,11846,105810
,4,11847,105815
,4,11848,105820
,4,11849,105825
,4,11850,105830
,4,11851,105835
,4,11852,105840
,4,11853,105845
,4,11854,105850
,4,11855,105855
,4,11856,105860
,4,11857,105865
,4,11858,105870
,4,11859,105875
,4,11860,105880
,4,11861,105885
,4,11862,105890
,4,11863,105895
,4,11864,105900
,4,11865,105905
,4,11866,105910
,4,11867,105915
,4,11868,105920
,4,11869,105925
,4,11870,105930
,4,11871,105935
,4,11872,105940
,4,11873,105945
,4,11874,105950
,4,11875,105955
,4,11876,105960
,4,11877,105965
,4,11878,105970
,4,11879,105975
,4,11880,105980
,4,11881,105985
,4,11882,105990
,4,11883,105995
,4,11884,106000
,4,11885,106005
,4,11886,106010
,4,11887,106015
,4,11888,106020
,4,11889,106025
,4,11890,106030
,4,11891,106035
,4,11892,106040
,4,11893,106045
,4,11894,106050
,4,11895,106055
,4,11896,106060
,4,11897,106065
,4,11898,106070
,4,11899,106075
,4,11900,106080
,4,11901,106085
,4,11902,106090
,4,11903,106095
,4,11904,106100
,4,11905,106105
,4,11906,106110
,4,11907,106115
,4,11908,106120
,4,11909,106125
,4,11910,106130
,4,11911,106135
,4,11912,106140
,4,11913,106145
,4,11914,106150
,4,11915,106155
,4,11916,106160
,4,11917,106165
,4,11918,106170
,4,11919,106175
,4,11920,106180
,4,11921,106185
,4,11922,106190
,4,11923,106195
,4,11924,106200
,4,11925,106205
,4,11926,106210
,4,11927,106215
,4,11928,106220
,4,11929,106225
,4,11930,106230
,4,11931,106235
,4,11932,106240
,4,11933,106245
,4,11934,106250
,4,11935,106255
,4,11936,106260
,4,11937,106265
,4,11938,106270
,4,11939,106275
,4,11940,106280
,4,11941,106285
,4,11942,106290
,4,11943,106295
,4,11944,106300
,4,11945,106305
,4,11946,106310
,4,11947,106315
,4,11948,106320
,4,11949,106325
,4,11950,106330
,4,11951,106335
,4,11952,106340
,4,11953,106345
,4,11954,106350
,4,11955,106355
,4,11956,106360
,4,11957,106365
,4,11958,106370
,4,11959,106375
,4,11960,106380
,4,11961,106385
,4,11962,106390
,4,11963,106395
,4,11964,106400
,4,11965,106405
,4,11966,106410
,4,11967,106415
,4,11968,106420
,4,11969,106425
,4,11970,106430
,4,11971,106435
,4,11972,106440
,4,11973,106445
,4,11974,106450
,4,11975,106455
,4,11976,106460
,4,11977,106465
,4,11978,106470
,4,11979,106475
,4,11980,106480
,4,11981,106485
,4,11982,106490
,4,11983,106495
,4,11984,106500
,4,11985,106505
,4,11986,106510
,4,11987,106515
,4,11988,106520
,4,11989,106525
,4,11990,106530
,4,11991,106535
,4,11992,106540
,4,11993,106545
,4,11994,106550
,4,11995,106555
,4,11996,106560
,4,11997,106565
,4,11998,106570
,4,11999,106575
,4,12000,106580
,4,12001,106585
,4,12002,106590
,4,12003,106595
,4,12004,106600
,4,12005,106605
,4,12006,106610
,4,12007,106615
,4,12008,106620
,4,12009,106625
,4,12010,106630
,4,12011,106635
,4,12012,106640
,4,12013,106645
,4,12014,106650
,4,12015,106655
,4,12016,106660
,4,12017,106665
,4,12018,106670
,4,12019,106675
,4,12020,106680
,4,12021,106685
,4,12022,106690
,4,12023,106695
,4,12024,106700
,4,12025,106705
,4,12026,106710
,4,12027,106715
,4,12028,106720
,4,12029,106725
,4,12030,106730
,4,12031,106735
,4,12032,106740
,4,12033,106745
,4,12034,106750
,4,12035,106755
,4,12036,106760
,4,12037,106765
,4,12038,106770
,4,12039,106775
,4,12040,106780
,4,12041,106785
,4,12042,106790
,4,12043,106795
,4,12044,106800
,4,12045,106805
,4,12046,106810
,4,12047,106815
,4,12048,106820
,4,12049,106825
,4,12050,106830
,4,12051,106835
,4,12052,106840
,4,12053,106845
,4,12054,106850
,4,12055,106855
,4,12056,106860
,4,12057,106865
,4,12058,106870
,4,12059,106875
,4,12060,106880
,4,12061,106885
,4,12062,106890
,4,12063,106895
,4,12064,106900
,4,12065,106905
,4,12066,106910
,4,12067,106915
,4,12068,106920
,4,12069,106925
,4,12070,106930
,4,12071,106935
,4,12072,106940
,4,12073,106945
,4,12074,106950
,4,12075,106955
,4,12076,106960
,4,12077,106965
,4,12078,106970
,4,12079,106975
,4,12080,106980
,4,12081,106985
,4,12082,106990
,4,12083,106995
,4,12084,107000
,4,12085,107005
,4,12086,107010
,4,12087,107015
,4,12088,107020
,4,12089,107025
,4,12090,107030
,4,12091,107035
,4,12092,107040
,4,12093,107045
,4,12094,107050
,4,12095,107055
,4,12096,107060
,4,12097,107065
,4,12098,107070
,4,12099,107075
,4,12100,107080
,4,12101,107085
,4,12102,107090
,4,12103,107095
,4,12104,107100
,4,12105,107105
,4,12106,107110
,4,12107,107115
,4,12108,107120
,4,12109,107125
,4,12110,107130
,4,12111,107135
,4,12112,107140
,4,12113,107145
,4,12114,107150
,4,12115,107155
,4,12116,107160
,4,12117,107165
,4,12118,107170
,4,12119,107175
,4,12120,107180
,4,12121,107185
,4,12122,107190
,4,12123,107195
,4,12124,107200
,4,12125,107205
,4,12126,107210
,4,12127,107215
,4,12128,107220
,4,12129,107225
,4,12130,107230
,4,12131,107235
,4,12132,107240
,4,12133,107245
,4,12134,107250
,4,12135,107255
,4,12136,107260
,4,12137,107265
,4,12138,107270
,4,12139,107275
,4,12140,107280
,4,12141,107285
,4,12142,107290
,4,12143,107295
,4,12144,107300
,4,12145,107305
,4,12146,107310
,4,12147,107315
,4,12148,107320
,4,12149,107325
,4,12150,107330
,4,12151,107335
,4,12152,107340
,4,12153,107345
,4,12154,107350
,4,12155,107355
,4,12156,107360
,4,12157,107365
,4,12158,107370
,4,12159,107375
,4,12160,107380
,4,12161,107385
,4,12162,107390
,4,12163,107395
,4,12164,107400
,4,12165,107405
,4,12166,107410
,4,12167,107415
,4,12168,107420
,4,12169,107425
,4,12170,107430
,4,12171,107435
,4,12172,107440
,4,12173,107445
,4,12174,107450
,4,12175,107455
,4,12176,107460
,4,12177,107465
,4,12178,107470
,4,12179,107475
,4,12180,107480
,4,12181,107485
,4,12182,107490
,4,12183,107495
,4,12184,107500
,4,12185,107505
,4,12186,107510
,4,12187,107515
,4,12188,107520
,4,12189,107525
,4,12190,107530
,4,12191,107535
,4,12192,107540
,4,12193,107545
,4,12194,107550
,4,12195,107555
,4,12196,107560
,4,12197,107565
,4,12198,107570
,4,12199,107575
,4,12200,107580
,4,12201,107585
,4,12202,107590
,4,12203,107595
,4,12204,107600
,4,12205,107605
,4,12206,107610
,4,12207,107615
,4,12208,107620
,4,12209,107625
,4,12210,107630
,4,12211,107635
,4,12212,107640
,4,12213,107645
,4,12214,107650
,4,12215,107655
,4,12216,107660
,4,12217,107665
,4,12218,107670
,4,12219,107675
,4,12220,107680
,4,12221,107685
,4,12222,107690
,4,12223,107695
,4,12224,107700
,4,12225,107705
,4,12226,107710
,4,12227,107715
,4,12228,107720
,4,12229,107725
,4,12230,107730
,4,12231,107735
,4,12232,107740
,4,12233,107745
,4,12234,107750
,4,12235,107755
,4,12236,107760
,4,12237,107765
,4,12238,107770
,4,12239,107775
,4,12240,107780
,4,12241,107785
,4,12242,107790
,4,12243,107795
,4,12244,107800
,4,12245,107805
,4,12246,107810
,4,12247,107815
,4,12248,107820
,4,12249,107825
,4,12250,107830
,4,12251,107835
,4,12252,107840
,4,12253,107845
,4,12254,107850
,4,12255,107855
,4,12256,107860
,4,12257,107865
,4,12258,107870
,4,12259,107875
,4,12260,107880
,4,12261,107885
,4,12262,107890
,4,12263,107895
,4,12264,107900
,4,12265,107905
,4,12266,107910
,4,12267,107915
,4,12268,107920
,4,12269,107925
,4,12270,107930
,4,12271,107935
,4,12272,107940
,4,12273,107945
,4,12274,107950
,4,12275,107955
,4,12276,107960
,4,12277,107965
,4,12278,107970
,4,12279,107975
,4,12280,107980
,4,12281,107985
,4,12282,107990
,4,12283,107995
,4,12284,108000
,4,12285,108005
,4,12286,108010
,4,12287,108015
,4,12288,108020
,4,12289,108025
,4,12290,108030
,4,12291,108035
,4,12292,108040
,4,12293,108045
,4,12294,108050
,4,12295,108055
,4,12296,108060
,4,12297,108065
,4,12298,108070
,4,12299,108075
,4,12300,108080
,4,12301,108085
,4,12302,108090
,4,12303,108095
,4,12304,108100
,4,12305,108105
,4,12306,108110
,4,12307,108115
,4,12308,108120
,4,12309,108125
,4,12310,108130
,4,12311,108135
,4,12312,108140
,4,12313,108145
,4,12314,108150
,4,12315,108155
,4,12316,108160
,4,12317,108165
,4,12318,108170
,4,12319,108175
,4,12320,108180
,4,12321,108185
,4,12322,108190
,4,12323,108195
,4,12324,108200
,4,12325,108205
,4,12326,108210
,4,12327,108215
,4,12328,108220
,4,12329,108225
,4,12330,108230
,4,12331,108235
,4,12332,108240
,4,12333,108245
,4,12334,108250
,4,12335,108255
,4,12336,108260
,4,12337,108265
,4,12338,108270
,4,12339,108275
,4,12340,108280
,4,12341,108285
,4,12342,108290
,4,12343,108295
,4,12344,108300
,4,12345,108305
,4,12346,108310
,4,12347,108315
,4,12348,108320
,4,12349,108325
,4,12350,108330
,4,12351,108335
,4,12352,108340
,4,12353,108345
,4,12354,108350
,4,12355,108355
,4,12356,108360
,4,12357,108365
,4,12358,108370
,4,12359,108375
,4,12360,108380
,4,12361,108385
,4,12362,108390
,4,12363,108395
,4,12364,108400
,4,12365,108405
,4,12366,108410
,4,12367,108415
,4,12368,108420
,4,12369,108425
,4,12370,108430
,4,12371,108435
,4,12372,108440
,4,12373,108445
,4,12374,108450
,4,12375,108455
,4,12376,108460
,4,12377,108465
,4,12378,108470
,4,12379,108475
,4,12380,108480
,4,12381,108485
,4,12382,108490
,4,12383,108495
,4,12384,108500
,4,12385,108505
,4,12386,108510
,4,12387,108515
,4,12388,108520
,4,12389,108525
,4,12390,108530
,4,12391,108535
,4,12392,108540
,4,12393,108545
,4,12394,108550
,4,12395,108555
,4,12396,108560
,4,12397,108565
,4,12398,108570
,4,12399,108575
,4,12400,108580
,4,12401,108585
,4,12402,108590
,4,12403,108595
,4,12404,108600
,4,12405,108605
,4,12406,108610
,4,12407,108615
,4,12408,108620
,4,12409,108625
,4,12410,108630
,4,12411,108635
,4,12412,108640
,4,12413,108645
,4,12414,108650
,4,12415,108655
,4,12416,108660
,4,12417,108665
,4,12418,108670
,4,12419,108675
,4,12420,108680
,4,12421,108685
,4,12422,108690
,4,12423,108695
,4,12424,108700
,4,12425,108705
,4,12426,108710
,4,12427,108715
,4,12428,108720
,4,12429,108725
,4,12430,108730
,4,12431,108735
,4,12432,108740
,4,12433,108745
,4,12434,108750
,4,12435,108755
,4,12436,108760
,4,12437,108765
,4,12438,108770
,4,12439,108775
,4,12440,108780
,4,12441,108785
,4,12442,108790
,4,12443,108795
,4,12444,108800
,4,12445,108805
,4,12446,108810
,4,12447,108815
,4,12448,108820
,4,12449,108825
,4,12450,108830
,4,12451,108835
,4,12452,108840
,4,12453,108845
,4,12454,108850
,4,12455,108855
,4,12456,108860
,4,12457,108865
,4,12458,108870
,4,12459,108875
,4,12460,108880
,4,12461,108885
,4,12462,108890
,4,12463,108895
,4,12464,108900
,4,12465,108905
,4,12466,108910
,4,12467,108915
,4,12468,108920
,4,12469,108925
,4,12470,108930
,4,12471,108935
,4,12472,108940
,4,12473,108945
,4,12474,108950
,4,12475,108955
,4,12476,108960
,4,12477,108965
,4,12478,108970
,4,12479,108975
,4,12480,108980
,4,12481,108985
,4,12482,108990
,4,12483,108995
,4,12484,109000
,4,12485,109005
,4,12486,109010
,4,12487,109015
,4,12488,109020
,4,12489,109025
,4,12490,109030
,4,12491,109035
,4,12492,109040
,4,12493,109045
,4,12494,109050
,4,12495,109055
,4,12496,109060
,4,12497,109065
,4,12498,109070
,4,12499,109075
,4,12500,109080
,4,12501,109085
,4,12502,109090
,4,12503,109095
,4,12504,109100
,4,12505,109105
,4,12506,109110
,4,12507,109115
,4,12508,109120
,4,12509,109125
,4,12510,109130
,4,12511,109135
,4,12512,109140
,4,12513,109145
,4,12514,109150
,4,12515,109155
,4,12516,109160
,4,12517,109165
,4,12518,109170
,4,12519,109175
,4,12520,109180
,4,12521,109185
,4,12522,109190
,4,12523,109195
,4,12524,109200
,4,12525,109205
,4,12526,109210
,4,12527,109215
,4,12528,109220
,4,12529,109225
,4,12530,109230
,4,12531,109235
,4,12532,109240
,4,12533,109245
,4,12534,109250
,4,12535,109255
,4,12536,109260
,4,12537,109265
,4,12538,109270
,4,12539,109275
,4,12540,109280
,4,12541,109285
,4,12542,109290
,4,12543,109295
,4,12544,109300
,4,12545,109305
,4,12546,109310
,4,12547,109315
,4,12548,109320
,4,12549,109325
,4,12550,109330
,4,12551,109335
,4,12552,109340
,4,12553,109345
,4,12554,109350
,4,12555,109355
,4,12556,109360
,4,12557,109365
,4,12558,109370
,4,12559,109375
,4,12560,109380
,4,12561,109385
,4,12562,109390
,4,12563,109395
,4,12564,109400
,4,12565,109405
,4,12566,109410
,4,12567,109415
,4,12568,109420
,4,12569,109425
,4,12570,109430
,4,12571,109435
,4,12572,109440
,4,12573,109445
,4,12574,109450
,4,12575,109455
,4,12576,109460
,4,12577,109465
,4,12578,109470
,4,12579,109475
,4,12580,109480
,4,12581,109485
,4,12582,109490
,4,12583,109495
,4,12584,109500
,4,12585,109505
,4,12586,109510
,4,12587,109515
,4,12588,109520
,4,12589,109525
,4,12590,109530
,4,12591,109535
,4,12592,109540
,4,12593,109545
,4,12594,109550
,4,12595,109555
,4,12596,109560
,4,12597,109565
,4,12598,109570
,4,12599,109575
,4,12600,109580
,4,12601,109585
,4,12602,109590
,4,12603,109595
,4,12604,109600
,4,12605,109605
,4,12606,109610
,4,12607,109615
,4,12608,109620
,4,12609,109625
,4,12610,109630
,4,12611,109635
,4,12612,109640
,4,12613,109645
,4,12614,109650
,4,12615,109655
,4,12616,109660
,4,12617,109665
,4,12618,109670
,4,12619,109675
,4,12620,109680
,4,12621,109685
,4,12622,109690
,4,12623,109695
,4,12624,109700
,4,12625,109705
,4,12626,109710
,4,12627,109715
,4,12628,109720
,4,12629,109725
,4,12630,109730
,4,12631,109735
,4,12632,109740
,4,12633,109745
,4,12634,109750
,4,12635,109755
,4,12636,109760
,4,12637,109765
,4,12638,109770
,4,12639,109775
,4,12640,109780
,4,12641,109785
,4,12642,109790
,4,12643,109795
,4,12644,109800
,4,12645,109805
,4,12646,109810
,4,12647,109815
,4,12648,109820
,4,12649,109825
,4,12650,109830
,4,12651,109835
,4,12652,109840
,4,12653,109845
,4,12654,109850
,4,12655,109855
,4,12656,109860
,4,12657,109865
,4,12658,109870
,4,12659,109875
,4,12660,109880
,4,12661,109885
,4,12662,109890
,4,12663,109895
,4,12664,109900
,4,12665,109905
,4,12666,109910
,4,12667,109915
,4,12668,109920
,4,12669,109925
,4,12670,109930
,4,12671,109935
,4,12672,109940
,4,12673,109945
,4,12674,109950
,4,12675,109955
,4,12676,109960
,4,12677,109965
,4,12678,109970
,4,12679,109975
,4,12680,109980
,4,12681,109985
,4,12682,109990
,4,12683,109995
,4,12684,110000
,4,12685,110005
,4,12686,110010
,4,12687,110015
,4,12688,110020
,4,12689,110025
,4,12690,110030
,4,12691,110035
,4,12692,110040
,4,12693,110045
,4,12694,110050
,4,12695,110055
,4,12696,110060
,4,12697,110065
,4,12698,110070
,4,12699,110075
,4,12700,110080
,4,12701,110085
,4,12702,110090
,4,12703,110095
,4,12704,110100
,4,12705,110105
,4,12706,110110
,4,12707,110115
,4,12708,110120
,4,12709,110125
,4,12710,110130
,4,12711,110135
,4,12712,110140
,4,12713,110145
,4,12714,110150
,4,12715,110155
,4,12716,110160
,4,12717,110165
,4,12718,110170
,4,12719,110175
,4,12720,110180
,4,12721,110185
,4,12722,110190
,4,12723,110195
,4,12724,110200
,4,12725,110205
,4,12726,110210
,4,12727,110215
,4,12728,110220
,4,12729,110225
,4,12730,110230
,4,12731,110235
,4,12732,110240
,4,12733,110245
,4,12734,110250
,4,12735,110255
,4,12736,110260
,4,12737,110265
,4,12738,110270
,4,12739,110275
,4,12740,110280
,4,12741,110285
,4,12742,110290
,4,12743,110295
,4,12744,110300
,4,12745,110305
,4,12746,110310
,4,12747,110315
,4,12748,110320
,4,12749,110325
,4,12750,110330
,4,12751,110335
,4,12752,110340
,4,12753,110345
,4,12754,110350
,4,12755,110355
,4,12756,110360
,4,12757,110365
,4,12758,110370
,4,12759,110375
,4,12760,110380
,4,12761,110385
,4,12762,110390
,4,12763,110395
,4,12764,110400
,4,12765,110405
,4,12766,110410
,4,12767,110415
,4,12768,110420
,4,12769,110425
,4,12770,110430
,4,12771,110435
,4,12772,110440
,4,12773,110445
,4,12774,110450
,4,12775,110455
,4,12776,110460
,4,12777,110465
,4,12778,110470
,4,12779,110475
,4,12780,110480
,4,12781,110485
,4,12782,110490
,4,12783,110495
,4,12784,110500
,4,12785,110505
,4,12786,110510
,4,12787,110515
,4,12788,110520
,4,12789,110525
,4,12790,110530
,4,12791,110535
,4,12792,110540
,4,12793,110545
,4,12794,110550
,4,12795,110555
,4,12796,110560
,4,12797,110565
,4,12798,110570
,4,12799,110575
,4,12800,110580
,4,12801,110585
,4,12802,110590
,4,12803,110595
,4,12804,110600
,4,12805,110605
,4,12806,110610
,4,12807,110615
,4,12808,110620
,4,12809,110625
,4,12810,110630
,4,12811,110635
,4,12812,110640
,4,12813,110645
,4,12814,110650
,4,12815,110655
,4,12816,110660
,4,12817,110665
,4,12818,110670
,4,12819,110675
,4,12820,110680
,4,12821,110685
,4,12822,110690
,4,12823,110695
,4,12824,110700
,4,12825,110705
,4,12826,110710
,4,12827,110715
,4,12828,110720
,4,12829,110725
,4,12830,110730
,4,12831,110735
,4,12832,110740
,4,12833,110745
,4,12834,110750
,4,12835,110755
,4,12836,110760
,4,12837,110765
,4,12838,110770
,4,12839,110775
,4,12840,110780
,4,12841,110785
,4,12842,110790
,4,12843,110795
,4,12844,110800
,4,12845,110805
,4,12846,110810
,4,12847,110815
,4,12848,110820
,4,12849,110825
,4,12850,110830
,4,12851,110835
,4,12852,110840
,4,12853,110845
,4,12854,110850
,4,12855,110855
,4,12856,110860
,4,12857,110865
,4,12858,110870
,4,12859,110875
,4,12860,110880
,4,12861,110885
,4,12862,110890
,4,12863,110895
,4,12864,110900
,4,12865,110905
,4,12866,110910
,4,12867,110915
,4,12868,110920
,4,12869,110925
,4,12870,110930
,4,12871,110935
,4,12872,110940
,4,12873,110945
,4,12874,110950
,4,12875,110955
,4,12876,110960
,4,12877,110965
,4,12878,110970
,4,12879,110975
,4,12880,110980
,4,12881,110985
,4,12882,110990
,4,12883,110995
,4,12884,111000
,4,12885,111005
,4,12886,111010
,4,12887,111015
,4,12888,111020
,4,12889,111025
,4,12890,111030
,4,12891,111035
,4,12892,111040
,4,12893,111045
,4,12894,111050
,4,12895,111055
,4,12896,111060
,4,12897,111065
,4,12898,111070
,4,12899,111075
,4,12900,111080
,4,12901,111085
,4,12902,111090
,4,12903,111095
,4,12904,111100
,4,12905,111105
,4,12906,111110
,4,12907,111115
,4,12908,111120
,4,12909,111125
,4,12910,111130
,4,12911,111135
,4,12912,111140
,4,12913,111145
,4,12914,111150
,4,12915,111155
,4,12916,111160
,4,12917,111165
,4,12918,111170
,4,12919,111175
,4,12920,111180
,4,12921,111185
,4,12922,111190
,4,12923,111195
,4,12924,111200
,4,12925,111205
,4,12926,111210
,4,12927,111215
,4,12928,111220
,4,12929,111225
,4,12930,111230
,4,12931,111235
,4,12932,111240
,4,12933,111245
,4,12934,111250
,4,12935,111255
,4,12936,111260
,4,12937,111265
,4,12938,111270
,4,12939,111275
,4,12940,111280
,4,12941,111285
,4,12942,111290
,4,12943,111295
,4,12944,111300
,4,12945,111305
,4,12946,111310
,4,12947,111315
,4,12948,111320
,4,12949,111325
,4,12950,111330
,4,12951,111335
,4,12952,111340
,4,12953,111345
,4,12954,111350
,4,12955,111355
,4,12956,111360
,4,12957,111365
,4,12958,111370
,4,12959,111375
,4,12960,111380
,4,12961,111385
,4,12962,111390
,4,12963,111395
,4,12964,111400
,4,12965,111405
,4,12966,111410
,4,12967,111415
,4,12968,111420
,4,12969,111425
,4,12970,111430
,4,12971,111435
,4,12972,111440
,4,12973,111445
,4,12974,111450
,4,12975,111455
,4,12976,111460
,4,12977,111465
,4,12978,111470
,4,12979,111475
,4,12980,111480
,4,12981,111485
,4,12982,111490
,4,12983,111495
,4,12984,111500
,4,12985,111505
,4,12986,111510
,4,12987,111515
,4,12988,111520
,4,12989,111525
,4,12990,111530
,4,12991,111535
,4,12992,111540
,4,12993,111545
,4,12994,111550
,4,12995,111555
,4,12996,111560
,4,12997,111565
,4,12998,111570
,4,12999,111575
,4,13000,111580
,4,13001,111585
,4,13002,111590
,4,13003,111595
,4,13004,111600
,4,13005,111605
,4,13006,111610
,4,13007,111615
,4,13008,111620
,4,13009,111625
,4,13010,111630
,4,13011,111635
,4,13012,111640
,4,13013,111645
,4,13014,111650
,4,13015,111655
,4,13016,111660
,4,13017,111665
,4,13018,111670
,4,13019,111675
,4,13020,111680
,4,13021,111685
,4,13022,111690
,4,13023,111695
,4,13024,111700
,4,13025,111705
,4,13026,111710
,4,13027,111715
,4,13028,111720
,4,13029,111725
,4,13030,111730
,4,13031,111735
,4,13032,111740
,4,13033,111745
,4,13034,111750
,4,13035,111755
,4,13036,111760
,4,13037,111765
,4,13038,111770
,4,13039,111775
,4,13040,111780
,4,13041,111785
,4,13042,111790
,4,13043,111795
,4,13044,111800
,4,13045,111805
,4,13046,111810
,4,13047,111815
,4,13048,111820
,4,13049,111825
,4,13050,111830
,4,13051,111835
,4,13052,111840
,4,13053,111845
,4,13054,111850
,4,13055,111855
,4,13056,111860
,4,13057,111865
,4,13058,111870
,4,13059,111875
,4,13060,111880
,4,13061,111885
,4,13062,111890
,4,13063,111895
,4,13064,111900
,4,13065,111905
,4,13066,111910
,4,13067,111915
,4,13068,111920
,4,13069,111925
,4,13070,111930
,4,13071,111935
,4,13072,111940
,4,13073,111945
,4,13074,111950
,4,13075,111955
,4,13076,111960
,4,13077,111965
,4,13078,111970
,4,13079,111975
,4,13080,111980
,4,13081,111985
,4,13082,111990
,4,13083,111995
,4,13084,112000
,4,13085,112005
,4,13086,112010
,4,13087,112015
,4,13088,112020
,4,13089,112025
,4,13090,112030
,4,13091,112035
,4,13092,112040
,4,13093,112045
,4,13094,112050
,4,13095,112055
,4,13096,112060
,4,13097,112065
,4,13098,112070
,4,13099,112075
,4,13100,112080
,4,13101,112085
,4,13102,112090
,4,13103,112095
,4,13104,112100
,4,13105,112105
,4,13106,112110
,4,13107,112115
,4,13108,112120
,4,13109,112125
,4,13110,112130
,4,13111,112135
,4,13112,112140
,4,13113,112145
,4,13114,112150
,4,13115,112155
,4,13116,112160
,4,13117,112165
,4,13118,112170
,4,13119,112175
,4,13120,112180
,4,13121,112185
,4,13122,112190
,4,13123,112195
,4,13124,112200
,4,13125,112205
,4,13126,112210
,4,13127,112215
,4,13128,112220
,4,13129,112225
,4,13130,112230
,4,13131,112235
,4,13132,112240
,4,13133,112245
,4,13134,112250
,4,13135,112255
,4,13136,112260
,4,13137,112265
,4,13138,112270
,4,13139,112275
,4,13140,112280
,4,13141,112285
,4,13142,112290
,4,13143,112295
,4,13144,112300
,4,13145,112305
,4,13146,112310
,4,13147,112315
,4,13148,112320
,4,13149,112325
,4,13150,112330
,4,13151,112335
,4,13152,112340
,4,13153,112345
,4,13154,112350
,4,13155,112355
,4,13156,112360
,4,13157,112365
,4,13158,112370
,4,13159,112375
,4,13160,112380
,4,13161,112385
,4,13162,112390
,4,13163,112395
,4,13164,112400
,4,13165,112405
,4,13166,112410
,4,13167,112415
,4,13168,112420
,4,13169,112425
,4,13170,112430
,4,13171,112435
,4,13172,112440
,4,13173,112445
,4,13174,112450
,4,13175,112455
,4,13176,112460
,4,13177,112465
,4,13178,112470
,4,13179,112475
,4,13180,112480
,4,13181,112485
,4,13182,112490
,4,13183,112495
,4,13184,112500
,4,13185,112505
,4,13186,112510
,4,13187,112515
,4,13188,112520
,4,13189,112525
,4,13190,112530
,4,13191,112535
,4,13192,112540
,4,13193,112545
,4,13194,112550
,4,13195,112555
,4,13196,112560
,4,13197,112565
,4,13198,112570
,4,13199,112575
,4,13200,112580
,4,13201,112585
,4,13202,112590
,4,13203,112595
,4,13204,112600
,4,13205,112605
,4,13206,112610
,4,13207,112615
,4,13208,112620
,4,13209,112625
,4,13210,112630
,4,13211,112635
,4,13212,112640
,4,13213,112645
,4,13214,112650
,4,13215,112655
,4,13216,112660
,4,13217,112665
,4,13218,112670
,4,13219,112675
,4,13220,112680
,4,13221,112685
,4,13222,112690
,4,13223,112695
,4,13224,112700
,4,13225,112705
,4,13226,112710
,4,13227,112715
,4,13228,112720
,4,13229,112725
,4,13230,112730
,4,13231,112735
,4,13232,112740
,4,13233,112745
,4,13234,112750
,4,13235,112755
,4,13236,112760
,4,13237,112765
,4,13238,112770
,4,13239,112775
,4,13240,112780
,4,13241,112785
,4,13242,112790
,4,13243,112795
,4,13244,112800
,4,13245,112805
,4,13246,112810
,4,13247,112815
,4,13248,112820
,4,13249,112825
,4,13250,112830
,4,13251,112835
,4,13252,112840
,4,13253,112845
,4,13254,112850
,4,13255,112855
,4,13256,112860
,4,13257,112865
,4,13258,112870
,4,13259,112875
,4,13260,112880
,4,13261,112885
,4,13262,112890
,4,13263,112895
,4,13264,112900
,4,13265,112905
,4,13266,112910
,4,13267,112915
,4,13268,112920
,4,13269,112925
,4,13270,112930
,4,13271,112935
,4,13272,112940
,4,13273,112945
,4,13274,112950
,4,13275,112955
,4,13276,112960
,4,13277,112965
,4,13278,112970
,4,13279,112975
,4,13280,112980
,4,13281,112985
,4,13282,112990
,4,13283,112995
,4,13284,113000
,4,13285,113005
,4,13286,113010
,4,13287,113015
,4,13288,113020
,4,13289,113025
,4,13290,113030
,4,13291,113035
,4,13292,113040
,4,13293,113045
,4,13294,113050
,4,13295,113055
,4,13296,113060
,4,13297,113065
,4,13298,113070
,4,13299,113075
,4,13300,113080
,4,13301,113085
,4,13302,113090
,4,13303,113095
,4,13304,113100
,4,13305,113105
,4,13306,113110
,4,13307,113115
,4,13308,113120
,4,13309,113125
,4,13310,113130
,4,13311,113135
,4,13312,113140
,4,13313,113145
,4,13314,113150
,4,13315,113155
,4,13316,113160
,4,13317,113165
,4,13318,113170
,4,13319,113175
,4,13320,113180
,4,13321,113185
,4,13322,113190
,4,13323,113195
,4,13324,113200
,4,13325,113205
,4,13326,113210
,4,13327,113215
,4,13328,113220
,4,13329,113225
,4,13330,113230
,4,13331,113235
,4,13332,113240
,4,13333,113245
,4,13334,113250
,4,13335,113255
,4,13336,113260
,4,13337,113265
,4,13338,113270
,4,13339,113275
,4,13340,113280
,4,13341,113285
,4,13342,113290
,4,13343,113295
,4,13344,113300
,4,13345,113305
,4,13346,113310
,4,13347,113315
,4,13348,113320
,4,13349,113325
,4,13350,113330
,4,13351,113335
,4,13352,113340
,4,13353,113345
,4,13354,113350
,4,13355,113355
,4,13356,113360
,4,13357,113365
,4,13358,113370
,4,13359,113375
,4,13360,113380
,4,13361,113385
,4,13362,113390
,4,13363,113395
,4,13364,113400
,4,13365,113405
,4,13366,113410
,4,13367,113415
,4,13368,113420
,4,13369,113425
,4,13370,113430
,4,13371,113435
,4,13372,113440
,4,13373,113445
,4,13374,113450
,4,13375,113455
,4,13376,113460
,4,13377,113465
,4,13378,113470
,4,13379,113475
,4,13380,113480
,4,13381,113485
,4,13382,113490
,4,13383,113495
,4,13384,113500
,4,13385,113505
,4,13386,113510
,4,13387,113515
,4,13388,113520
,4,13389,113525
,4,13390,113530
,4,13391,113535
,4,13392,113540
,4,13393,113545
,4,13394,113550
,4,13395,113555
,4,13396,113560
,4,13397,113565
,4,13398,113570
,4,13399,113575
,4,13400,113580
,4,13401,113585
,4,13402,113590
,4,13403,113595
,4,13404,113600
,4,13405,113605
,4,13406,113610
,4,13407,113615
,4,13408,113620
,4,13409,113625
,4,13410,113630
,4,13411,113635
,4,13412,113640
,4,13413,113645
,4,13414,113650
,4,13415,113655
,4,13416,113660
,4,13417,113665
,4,13418,113670
,4,13419,113675
,4,13420,113680
,4,13421,113685
,4,13422,113690
,4,13423,113695
,4,13424,113700
,4,13425,113705
,4,13426,113710
,4,13427,113715
,4,13428,113720
,4,13429,113725
,4,13430,113730
,4,13431,113735
,4,13432,113740
,4,13433,113745
,4,13434,113750
,4,13435,113755
,4,13436,113760
,4,13437,113765
,4,13438,113770
,4,13439,113775
,4,13440,113780
,4,13441,113785
,4,13442,113790
,4,13443,113795
,4,13444,113800
,4,13445,113805
,4,13446,113810
,4,13447,113815
,4,13448,113820
,4,13449,113825
,4,13450,113830
,4,13451,113835
,4,13452,113840
,4,13453,113845
,4,13454,113850
,4,13455,113855
,4,13456,113860
,4,13457,113865
,4,13458,113870
,4,13459,113875
,4,13460,113880
,4,13461,113885
,4,13462,113890
,4,13463,113895
,4,13464,113900
,4,13465,113905
,4,13466,113910
,4,13467,113915
,4,13468,113920
,4,13469,113925
,4,13470,113930
,4,13471,113935
,4,13472,113940
,4,13473,113945
,4,13474,113950
,4,13475,113955
,4,13476,113960
,4,13477,113965
,4,13478,113970
,4,13479,113975
,4,13480,113980
,4,13481,113985
,4,13482,113990
,4,13483,113995
,4,13484,114000
,4,13485,114005
,4,13486,114010
,4,13487,114015
,4,13488,114020
,4,13489,114025
,4,13490,114030
,4,13491,114035
,4,13492,114040
,4,13493,114045
,4,13494,114050
,4,13495,114055
,4,13496,114060
,4,13497,114065
,4,13498,114070
,4,13499,114075
,4,13500,114080
,4,13501,114085
,4,13502,114090
,4,13503,114095
,4,13504,114100
,4,13505,114105
,4,13506,114110
,4,13507,114115
,4,13508,114120
,4,13509,114125
,4,13510,114130
,4,13511,114135
,4,13512,114140
,4,13513,114145
,4,13514,114150
,4,13515,114155
,4,13516,114160
,4,13517,114165
,4,13518,114170
,4,13519,114175
,4,13520,114180
,4,13521,114185
,4,13522,114190
,4,13523,114195
,4,13524,114200
,4,13525,114205
,4,13526,114210
,4,13527,114215
,4,13528,114220
,4,13529,114225
,4,13530,114230
,4,13531,114235
,4,13532,114240
,4,13533,114245
,4,13534,114250
,4,13535,114255
,4,13536,114260
,4,13537,114265
,4,13538,114270
,4,13539,114275
,4,13540,114280
,4,13541,114285
,4,13542,114290
,4,13543,114295
,4,13544,114300
,4,13545,114305
,4,13546,114310
,4,13547,114315
,4,13548,114320
,4,13549,114325
,4,13550,114330
,4,13551,114335
,4,13552,114340
,4,13553,114345
,4,13554,114350
,4,13555,114355
,4,13556,114360
,4,13557,114365
,4,13558,114370
,4,13559,114375
,4,13560,114380
,4,13561,114385
,4,13562,114390
,4,13563,114395
,4,13564,114400
,4,13565,114405
,4,13566,114410
,4,13567,114415
,4,13568,114420
,4,13569,114425
,4,13570,114430
,4,13571,114435
,4,13572,114440
,4,13573,114445
,4,13574,114450
,4,13575,114455
,4,13576,114460
,4,13577,114465
,4,13578,114470
,4,13579,114475
,4,13580,114480
,4,13581,114485
,4,13582,114490
,4,13583,114495
,4,13584,114500
,4,13585,114505
,4,13586,114510
,4,13587,114515
,4,13588,114520
,4,13589,114525
,4,13590,114530
,4,13591,114535
,4,13592,114540
,4,13593,114545
,4,13594,114550
,4,13595,114555
,4,13596,114560
,4,13597,114565
,4,13598,114570
,4,13599,114575
,4,13600,114580
,4,13601,114585
,4,13602,114590
,4,13603,114595
,4,13604,114600
,4,13605,114605
,4,13606,114610
,4,13607,114615
,4,13608,114620
,4,13609,114625
,4,13610,114630
,4,13611,114635
,4,13612,114640
,4,13613,114645
,4,13614,114650
,4,13615,114655
,4,13616,114660
,4,13617,114665
,4,13618,114670
,4,13619,114675
,4,13620,114680
,4,13621,114685
,4,13622,114690
,4,13623,114695
,4,13624,114700
,4,13625,114705
,4,13626,114710
,4,13627,114715
,4,13628,114720
,4,13629,114725
,4,13630,114730
,4,13631,114735
,4,13632,114740
,4,13633,114745
,4,13634,114750
,4,13635,114755
,4,13636,114760
,4,13637,114765
,4,13638,114770
,4,13639,114775
,4,13640,114780
,4,13641,114785
,4,13642,114790
,4,13643,114795
,4,13644,114800
,4,13645,114805
,4,13646,114810
,4,13647,114815
,4,13648,114820
,4,13649,114825
,4,13650,114830
,4,13651,114835
,4,13652,114840
,4,13653,114845
,4,13654,114850
,4,13655,114855
,4,13656,114860
,4,13657,114865
,4,13658,114870
,4,13659,114875
,4,13660,114880
,4,13661,114885
,4,13662,114890
,4,13663,114895
,4,13664,114900
,4,13665,114905
,4,13666,114910
,4,13667,114915
,4,13668,114920
,4,13669,114925
,4,13670,114930
,4,13671,114935
,4,13672,114940
,4,13673,114945
,4,13674,114950
,4,13675,114955
,4,13676,114960
,4,13677,114965
,4,13678,114970
,4,13679,114975
,4,13680,114980
,4,13681,114985
,4,13682,114990
,4,13683,114995
,4,13684,115000
,4,13685,115005
,4,13686,115010
,4,13687,115015
,4,13688,115020
,4,13689,115025
,4,13690,115030
,4,13691,115035
,4,13692,115040
,4,13693,115045
,4,13694,115050
,4,13695,115055
,4,13696,115060
,4,13697,115065
,4,13698,115070
,4,13699,115075
,4,13700,115080
,4,13701,115085
,4,13702,115090
,4,13703,115095
,4,13704,115100
,4,13705,115105
,4,13706,115110
,4,13707,115115
,4,13708,115120
,4,13709,115125
,4,13710,115130
,4,13711,115135
,4,13712,115140
,4,13713,115145
,4,13714,115150
,4,13715,115155
,4,13716,115160
,4,13717,115165
,4,13718,115170
,4,13719,115175
,4,13720,115180
,4,13721,115185
,4,13722,115190
,4,13723,115195
,4,13724,115200
,4,13725,115205
,4,13726,115210
,4,13727,115215
,4,13728,115220
,4,13729,115225
,4,13730,115230
,4,13731,115235
,4,13732,115240
,4,13733,115245
,4,13734,115250
,4,13735,115255
,4,13736,115260
,4,13737,115265
,4,13738,115270
,4,13739,115275
,4,13740,115280
,4,13741,115285
,4,13742,115290
,4,13743,115295
,4,13744,115300
,4,13745,115305
,4,13746,115310
,4,13747,115315
,4,13748,115320
,4,13749,115325
,4,13750,115330
,4,13751,115335
,4,13752,115340
,4,13753,115345
,4,13754,115350
,4,13755,115355
,4,13756,115360
,4,13757,115365
,4,13758,115370
,4,13759,115375
,4,13760,115380
,4,13761,115385
,4,13762,115390
,4,13763,115395
,4,13764,115400
,4,13765,115405
,4,13766,115410
,4,13767,115415
,4,13768,115420
,4,13769,115425
,4,13770,115430
,4,13771,115435
,4,13772,115440
,4,13773,115445
,4,13774,115450
,4,13775,115455
,4,13776,115460
,4,13777,115465
,4,13778,115470
,4,13779,115475
,4,13780,115480
,4,13781,115485
,4,13782,115490
,4,13783,115495
,4,13784,115500
,4,13785,115505
,4,13786,115510
,4,13787,115515
,4,13788,115520
,4,13789,115525
,4,13790,115530
,4,13791,115535
,4,13792,115540
,4,13793,115545
,4,13794,115550
,4,13795,115555
,4,13796,115560
,4,13797,115565
,4,13798,115570
,4,13799,115575
,4,13800,115580
,4,13801,115585
,4,13802,115590
,4,13803,115595
,4,13804,115600
,4,13805,115605
,4,13806,115610
,4,13807,115615
,4,13808,115620
,4,13809,115625
,4,13810,115630
,4,13811,115635
,4,13812,115640
,4,13813,115645
,4,13814,115650
,4,13815,115655
,4,13816,115660
,4,13817,115665
,4,13818,115670
,4,13819,115675
,4,13820,115680
,4,13821,115685
,4,13822,115690
,4,13823,115695
,4,13824,115700
,4,13825,115705
,4,13826,115710
,4,13827,115715
,4,13828,115720
,4,13829,115725
,4,13830,115730
,4,13831,115735
,4,13832,115740
,4,13833,115745
,4,13834,115750
,4,13835,115755
,4,13836,115760
,4,13837,115765
,4,13838,115770
,4,13839,115775
,4,13840,115780
,4,13841,115785
,4,13842,115790
,4,13843,115795
,4,13844,115800
,4,13845,115805
,4,13846,115810
,4,13847,115815
,4,13848,115820
,4,13849,115825
,4,13850,115830
,4,13851,115835
,4,13852,115840
,4,13853,115845
,4,13854,115850
,4,13855,115855
,4,13856,115860
,4,13857,115865
,4,13858,115870
,4,13859,115875
,4,13860,115880
,4,13861,115885
,4,13862,115890
,4,13863,115895
,4,13864,115900
,4,13865,115905
,4,13866,115910
,4,13867,115915
,4,13868,115920
,4,13869,115925
,4,13870,115930
,4,13871,115935
,4,13872,115940
,4,13873,115945
,4,13874,115950
,4,13875,115955
,4,13876,115960
,4,13877,115965
,4,13878,115970
,4,13879,115975
,4,13880,115980
,4,13881,115985
,4,13882,115990
,4,13883,115995
,4,13884,116000
,4,13885,116005
,4,13886,116010
,4,13887,116015
,4,13888,116020
,4,13889,116025
,4,13890,116030
,4,13891,116035
,4,13892,116040
,4,13893,116045
,4,13894,116050
,4,13895,116055
,4,13896,116060
,4,13897,116065
,4,13898,116070
,4,13899,116075
,4,13900,116080
,4,13901,116085
,4,13902,116090
,4,13903,116095
,4,13904,116100
,4,13905,116105
,4,13906,116110
,4,13907,116115
,4,13908,116120
,4,13909,116125
,4,13910,116130
,4,13911,116135
,4,13912,116140
,4,13913,116145
,4,13914,116150
,4,13915,116155
,4,13916,116160
,4,13917,116165
,4,13918,116170
,4,13919,116175
,4,13920,116180
,4,13921,116185
,4,13922,116190
,4,13923,116195
,4,13924,116200
,4,13925,116205
,4,13926,116210
,4,13927,116215
,4,13928,116220
,4,13929,116225
,4,13930,116230
,4,13931,116235
,4,13932,116240
,4,13933,116245
,4,13934,116250
,4,13935,116255
,4,13936,116260
,4,13937,116265
,4,13938,116270
,4,13939,116275
,4,13940,116280
,4,13941,116285
,4,13942,116290
,4,13943,116295
,4,13944,116300
,4,13945,116305
,4,13946,116310
,4,13947,116315
,4,13948,116320
,4,13949,116325
,4,13950,116330
,4,13951,116335
,4,13952,116340
,4,13953,116345
,4,13954,116350
,4,13955,116355
,4,13956,116360
,4,13957,116365
,4,13958,116370
,4,13959,116375
,4,13960,116380
,4,13961,116385
,4,13962,116390
,4,13963,116395
,4,13964,116400
,4,13965,116405
,4,13966,116410
,4,13967,116415
,4,13968,116420
,4,13969,116425
,4,13970,116430
,4,13971,116435
,4,13972,116440
,4,13973,116445
,4,13974,116450
,4,13975,116455
,4,13976,116460
,4,13977,116465
,4,13978,116470
,4,13979,116475
,4,13980,116480
,4,13981,116485
,4,13982,116490
,4,13983,116495
,4,13984,116500
,4,13985,116505
,4,13986,116510
,4,13987,116515
,4,13988,116520
,4,13989,116525
,4,13990,116530
,4,13991,116535
,4,13992,116540
,4,13993,116545
,4,13994,116550
,4,13995,116555
,4,13996,116560
,4,13997,116565
,4,13998,116570
,4,13999,116575
,4,14000,116580
,4,14001,116585
,4,14002,116590
,4,14003,116595
,4,14004,116600
,4,14005,116605
,4,14006,116610
,4,14007,116615
,4,14008,116620
,4,14009,116625
,4,14010,116630
,4,14011,116635
,4,14012,116640
,4,14013,116645
,4,14014,116650
,4,14015,116655
,4,14016,116660
,4,14017,116665
,4,14018,116670
,4,14019,116675
,4,14020,116680
,4,14021,116685
,4,14022,116690
,4,14023,116695
,4,14024,116700
,4,14025,116705
,4,14026,116710
,4,14027,116715
,4,14028,116720
,4,14029,116725
,4,14030,116730
,4,14031,116735
,4,14032,116740
,4,14033,116745
,4,14034,116750
,4,14035,116755
,4,14036,116760
,4,14037,116765
,4,14038,116770
,4,14039,116775
,4,14040,116780
,4,14041,116785
,4,14042,116790
,4,14043,116795
,4,14044,116800
,4,14045,116805
,4,14046,116810
,4,14047,116815
,4,14048,116820
,4,14049,116825
,4,14050,116830
,4,14051,116835
,4,14052,116840
,4,14053,116845
,4,14054,116850
,4,14055,116855
,4,14056,116860
,4,14057,116865
,4,14058,116870
,4,14059,116875
,4,14060,116880
,4,14061,116885
,4,14062,116890
,4,14063,116895
,4,14064,116900
,4,14065,116905
,4,14066,116910
,4,14067,116915
,4,14068,116920
,4,14069,116925
,4,14070,116930
,4,14071,116935
,4,14072,116940
,4,14073,116945
,4,14074,116950
,4,14075,116955
,4,14076,116960
,4,14077,116965
,4,14078,116970
,4,14079,116975
,4,14080,116980
,4,14081,116985
,4,14082,116990
,4,14083,116995
,4,14084,117000
,4,14085,117005
,4,14086,117010
,4,14087,117015
,4,14088,117020
,4,14089,117025
,4,14090,117030
,4,14091,117035
,4,14092,117040
,4,14093,117045
,4,14094,117050
,4,14095,117055
,4,14096,117060
,4,14097,117065
,4,14098,117070
,4,14099,117075
,4,14100,117080
,4,14101,117085
,4,14102,117090
,4,14103,117095
,4,14104,117100
,4,14105,117105
,4,14106,117110
,4,14107,117115
,4,14108,117120
,4,14109,117125
,4,14110,117130
,4,14111,117135
,4,14112,117140
,4,14113,117145
,4,14114,117150
,4,14115,117155
,4,14116,117160
,4,14117,117165
,4,14118,117170
,4,14119,117175
,4,14120,117180
,4,14121,117185
,4,14122,117190
,4,14123,117195
,4,14124,117200
,4,14125,117205
,4,14126,117210
,4,14127,117215
,4,14128,117220
,4,14129,117225
,4,14130,117230
,4,14131,117235
,4,14132,117240
,4,14133,117245
,4,14134,117250
,4,14135,117255
,4,14136,117260
,4,14137,117265
,4,14138,117270
,4,14139,117275
,4,14140,117280
,4,14141,117285
,4,14142,117290
,4,14143,117295
,4,14144,117300
,4,14145,117305
,4,14146,117310
,4,14147,117315
,4,14148,117320
,4,14149,117325
,4,14150,117330
,4,14151,117335
,4,14152,117340
,4,14153,117345
,4,14154,117350
,4,14155,117355
,4,14156,117360
,4,14157,117365
,4,14158,117370
,4,14159,117375
,4,14160,117380
,4,14161,117385
,4,14162,117390
,4,14163,117395
,4,14164,117400
,4,14165,117405
,4,14166,117410
,4,14167,117415
,4,14168,117420
,4,14169,117425
,4,14170,117430
,4,14171,117435
,4,14172,117440
,4,14173,117445
,4,14174,117450
,4,14175,117455
,4,14176,117460
,4,14177,117465
,4,14178,117470
,4,14179,117475
,4,14180,117480
,4,14181,117485
,4,14182,117490
,4,14183,117495
,4,14184,117500
,4,14185,117505
,4,14186,117510
,4,14187,117515
,4,14188,117520
,4,14189,117525
,4,14190,117530
,4,14191,117535
,4,14192,117540
,4,14193,117545
,4,14194,117550
,4,14195,117555
,4,14196,117560
,4,14197,117565
,4,14198,117570
,4,14199,117575
,4,14200,117580
,4,14201,117585
,4,14202,117590
,4,14203,117595
,4,14204,117600
,4,14205,117605
,4,14206,117610
,4,14207,117615
,4,14208,117620
,4,14209,117625
,4,14210,117630
,4,14211,117635
,4,14212,117640
,4,14213,117645
,4,14214,117650
,4,14215,117655
,4,14216,117660
,4,14217,117665
,4,14218,117670
,4,14219,117675
,4,14220,117680
,4,14221,117685
,4,14222,117690
,4,14223,117695
,4,14224,117700
,4,14225,117705
,4,14226,117710
,4,14227,117715
,4,14228,117720
,4,14229,117725
,4,14230,117730
,4,14231,117735
,4,14232,117740
,4,14233,117745
,4,14234,117750
,4,14235,117755
,4,14236,117760
,4,14237,117765
,4,14238,117770
,4,14239,117775
,4,14240,117780
,4,14241,117785
,4,14242,117790
,4,14243,117795
,4,14244,117800
,4,14245,117805
,4,14246,117810
,4,14247,117815
,4,14248,117820
,4,14249,117825
,4,14250,117830
,4,14251,117835
,4,14252,117840
,4,14253,117845
,4,14254,117850
,4,14255,117855
,4,14256,117860
,4,14257,117865
,4,14258,117870
,4,14259,117875
,4,14260,117880
,4,14261,117885
,4,14262,117890
,4,14263,117895
,4,14264,117900
,4,14265,117905
,4,14266,117910
,4,14267,117915
,4,14268,117920
,4,14269,117925
,4,14270,117930
,4,14271,117935
,4,14272,117940
,4,14273,117945
,4,14274,117950
,4,14275,117955
,4,14276,117960
,4,14277,117965
,4,14278,117970
,4,14279,117975
,4,14280,117980
,4,14281,117985
,4,14282,117990
,4,14283,117995
,4,14284,118000
,4,14285,118005
,4,14286,118010
,4,14287,118015
,4,14288,118020
,4,14289,118025
,4,14290,118030
,4,14291,118035
,4,14292,118040
,4,14293,118045
,4,14294,118050
,4,14295,118055
,4,14296,118060
,4,14297,118065
,4,14298,118070
,4,14299,118075
,4,14300,118080
,4,14301,118085
,4,14302,118090
,4,14303,118095
,4,14304,118100
,4,14305,118105
,4,14306,118110
,4,14307,118115
,4,14308,118120
,4,14309,118125
,4,14310,118130
,4,14311,118135
,4,14312,118140
,4,14313,118145
,4,14314,118150
,4,14315,118155
,4,14316,118160
,4,14317,118165
,4,14318,118170
,4,14319,118175
,4,14320,118180
,4,14321,118185
,4,14322,118190
,4,14323,118195
,4,14324,118200
,4,14325,118205
,4,14326,118210
,4,14327,118215
,4,14328,118220
,4,14329,118225
,4,14330,118230
,4,14331,118235
,4,14332,118240
,4,14333,118245
,4,14334,118250
,4,14335,118255
,4,14336,118260
,4,14337,118265
,4,14338,118270
,4,14339,118275
,4,14340,118280
,4,14341,118285
,4,14342,118290
,4,14343,118295
,4,14344,118300
,4,14345,118305
,4,14346,118310
,4,14347,118315
,4,14348,118320
,4,14349,118325
,4,14350,118330
,4,14351,118335
,4,14352,118340
,4,14353,118345
,4,14354,118350
,4,14355,118355
,4,14356,118360
,4,14357,118365
,4,14358,118370
,4,14359,118375
,4,14360,118380
,4,14361,118385
,4,14362,118390
,4,14363,118395
,4,14364,118400
,4,14365,118405
,4,14366,118410
,4,14367,118415
,4,14368,118420
,4,14369,118425
,4,14370,118430
,4,14371,118435
,4,14372,118440
,4,14373,118445
,4,14374,118450
,4,14375,118455
,4,14376,118460
,4,14377,118465
,4,14378,118470
,4,14379,118475
,4,14380,118480
,4,14381,118485
,4,14382,118490
,4,14383,118495
,4,14384,118500
,4,14385,118505
,4,14386,118510
,4,14387,118515
,4,14388,118520
,4,14389,118525
,4,14390,118530
,4,14391,118535
,4,14392,118540
,4,14393,118545
,4,14394,118550
,4,14395,118555
,4,14396,118560
,4,14397,118565
,4,14398,118570
,4,14399,118575
,4,14400,118580
,4,14401,118585
,4,14402,118590
,4,14403,118595
,4,14404,118600
,4,14405,118605
,4,14406,118610
,4,14407,118615
,4,14408,118620
,4,14409,118625
,4,14410,118630
,4,14411,118635
,4,14412,118640
,4,14413,118645
,4,14414,118650
,4,14415,118655
,4,14416,118660
,4,14417,118665
,4,14418,118670
,4,14419,118675
,4,14420,118680
,4,14421,118685
,4,14422,118690
,4,14423,118695
,4,14424,118700
,4,14425,118705
,4,14426,118710
,4,14427,118715
,4,14428,118720
,4,14429,118725
,4,14430,118730
,4,14431,118735
,4,14432,118740
,4,14433,118745
,4,14434,118750
,4,14435,118755
,4,14436,118760
,4,14437,118765
,4,14438,118770
,4,14439,118775
,4,14440,118780
,4,14441,118785
,4,14442,118790
,4,14443,118795
,4,14444,118800
,4,14445,118805
,4,14446,118810
,4,14447,118815
,4,14448,118820
,4,14449,118825
,4,14450,118830
,4,14451,118835
,4,14452,118840
,4,14453,118845
,4,14454,118850
,4,14455,118855
,4,14456,118860
,4,14457,118865
,4,14458,118870
,4,14459,118875
,4,14460,118880
,4,14461,118885
,4,14462,118890
,4,14463,118895
,4,14464,118900
,4,14465,118905
,4,14466,118910
,4,14467,118915
,4,14468,118920
,4,14469,118925
,4,14470,118930
,4,14471,118935
,4,14472,118940
,4,14473,118945
,4,14474,118950
,4,14475,118955
,4,14476,118960
,4,14477,118965
,4,14478,118970
,4,14479,118975
,4,14480,118980
,4,14481,118985
,4,14482,118990
,4,14483,118995
,4,14484,119000
,4,14485,119005
,4,14486,119010
,4,14487,119015
,4,14488,119020
,4,14489,119025
,4,14490,119030
,4,14491,119035
,4,14492,119040
,4,14493,119045
,4,14494,119050
,4,14495,119055
,4,14496,119060
,4,14497,119065
,4,14498,119070
,4,14499,119075
,4,14500,119080
,4,14501,119085
,4,14502,119090
,4,14503,119095
,4,14504,119100
,4,14505,119105
,4,14506,119110
,4,14507,119115
,4,14508,119120
,4,14509,119125
,4,14510,119130
,4,14511,119135
,4,14512,119140
,4,14513,119145
,4,14514,119150
,4,14515,119155
,4,14516,119160
,4,14517,119165
,4,14518,119170
,4,14519,119175
,4,14520,119180
,4,14521,119185
,4,14522,119190
,4,14523,119195
,4,14524,119200
,4,14525,119205
,4,14526,119210
,4,14527,119215
,4,14528,119220
,4,14529,119225
,4,14530,119230
,4,14531,119235
,4,14532,119240
,4,14533,119245
,4,14534,119250
,4,14535,119255
,4,14536,119260
,4,14537,119265
,4,14538,119270
,4,14539,119275
,4,14540,119280
,4,14541,119285
,4,14542,119290
,4,14543,119295
,4,14544,119300
,4,14545,119305
,4,14546,119310
,4,14547,119315
,4,14548,119320
,4,14549,119325
,4,14550,119330
,4,14551,119335
,4,14552,119340
,4,14553,119345
,4,14554,119350
,4,14555,119355
,4,14556,119360
,4,14557,119365
,4,14558,119370
,4,14559,119375
,4,14560,119380
,4,14561,119385
,4,14562,119390
,4,14563,119395
,4,14564,119400
,4,14565,119405
,4,14566,119410
,4,14567,119415
,4,14568,119420
,4,14569,119425
,4,14570,119430
,4,14571,119435
,4,14572,119440
,4,14573,119445
,4,14574,119450
,4,14575,119455
,4,14576,119460
,4,14577,119465
,4,14578,119470
,4,14579,119475
,4,14580,119480
,4,14581,119485
,4,14582,119490
,4,14583,119495
,4,14584,119500
,4,14585,119505
,4,14586,119510
,4,14587,119515
,4,14588,119520
,4,14589,119525
,4,14590,119530
,4,14591,119535
,4,14592,119540
,4,14593,119545
,4,14594,119550
,4,14595,119555
,4,14596,119560
,4,14597,119565
,4,14598,119570
,4,14599,119575
,4,14600,119580
,4,14601,119585
,4,14602,119590
,4,14603,119595
,4,14604,119600
,4,14605,119605
,4,14606,119610
,4,14607,119615
,4,14608,119620
,4,14609,119625
,4,14610,119630
,4,14611,119635
,4,14612,119640
,4,14613,119645
,4,14614,119650
,4,14615,119655
,4,14616,119660
,4,14617,119665
,4,14618,119670
,4,14619,119675
,4,14620,119680
,4,14621,119685
,4,14622,119690
,4,14623,119695
,4,14624,119700
,4,14625,119705
,4,14626,119710
,4,14627,119715
,4,14628,119720
,4,14629,119725
,4,14630,119730
,4,14631,119735
,4,14632,119740
,4,14633,119745
,4,14634,119750
,4,14635,119755
,4,14636,119760
,4,14637,119765
,4,14638,119770
,4,14639,119775
,4,14640,119780
,4,14641,119785
,4,14642,119790
,4,14643,119795
,4,14644,119800
,4,14645,119805
,4,14646,119810
,4,14647,119815
,4,14648,119820
,4,14649,119825
,4,14650,119830
,4,14651,119835
,4,14652,119840
,4,14653,119845
,4,14654,119850
,4,14655,119855
,4,14656,119860
,4,14657,119865
,4,14658,119870
,4,14659,119875
,4,14660,119880
,4,14661,119885
,4,14662,119890
,4,14663,119895
,4,14664,119900
,4,14665,119905
,4,14666,119910
,4,14667,119915
,4,14668,119920
,4,14669,119925
,4,14670,119930
,4,14671,119935
,4,14672,119940
,4,14673,119945
,4,14674,119950
,4,14675,119955
,4,14676,119960
,4,14677,119965
,4,14678,119970
,4,14679,119975
,4,14680,119980
,4,14681,119985
,4,14682,119990
,4,14683,119995
,4,14684,120000
,4,14685,120005
,4,14686,120010
,4,14687,120015
,4,14688,120020
,4,14689,120025
,4,14690,120030
,4,14691,120035
,4,14692,120040
,4,14693,120045
,4,14694,120050
,4,14695,120055
,4,14696,120060
,4,14697,120065
,4,14698,120070
,4,14699,120075
,4,14700,120080
,4,14701,120085
,4,14702,120090
,4,14703,120095
,4,14704,120100
,4,14705,120105
,4,14706,120110
,4,14707,120115
,4,14708,120120
,4,14709,120125
,4,14710,120130
,4,14711,120135
,4,14712,120140
,4,14713,120145
,4,14714,120150
,4,14715,120155
,4,14716,120160
,4,14717,120165
,4,14718,120170
,4,14719,120175
,4,14720,120180
,4,14721,120185
,4,14722,120190
,4,14723,120195
,4,14724,120200
,4,14725,120205
,4,14726,120210
,4,14727,120215
,4,14728,120220
,4,14729,120225
,4,14730,120230
,4,14731,120235
,4,14732,120240
,4,14733,120245
,4,14734,120250
,4,14735,120255
,4,14736,120260
,4,14737,120265
,4,14738,120270
,4,14739,120275
,4,14740,120280
,4,14741,120285
,4,14742,120290
,4,14743,120295
,4,14744,120300
,4,14745,120305
,4,14746,120310
,4,14747,120315
,4,14748,120320
,4,14749,120325
,4,14750,120330
,4,14751,120335
,4,14752,120340
,4,14753,120345
,4,14754,120350
,4,14755,120355
,4,14756,120360
,4,14757,120365
,4,14758,120370
,4,14759,120375
,4,14760,120380
,4,14761,120385
,4,14762,120390
,4,14763,120395
,4,14764,120400
,4,14765,120405
,4,14766,120410
,4,14767,120415
,4,14768,120420
,4,14769,120425
,4,14770,120430
,4,14771,120435
,4,14772,120440
,4,14773,120445
,4,14774,120450
,4,14775,120455
,4,14776,120460
,4,14777,120465
,4,14778,120470
,4,14779,120475
,4,14780,120480
,4,14781,120485
,4,14782,120490
,4,14783,120495
,4,14784,120500
,4,14785,120505
,4,14786,120510
,4,14787,120515
,4,14788,120520
,4,14789,120525
,4,14790,120530
,4,14791,120535
,4,14792,120540
,4,14793,120545
,4,14794,120550
,4,14795,120555
,4,14796,120560
,4,14797,120565
,4,14798,120570
,4,14799,120575
,4,14800,120580
,4,14801,120585
,4,14802,120590
,4,14803,120595
,4,14804,120600
,4,14805,120605
,4,14806,120610
,4,14807,120615
,4,14808,120620
,4,14809,120625
,4,14810,120630
,4,14811,120635
,4,14812,120640
,4,14813,120645
,4,14814,120650
,4,14815,120655
,4,14816,120660
,4,14817,120665
,4,14818,120670
,4,14819,120675
,4,14820,120680
,4,14821,120685
,4,14822,120690
,4,14823,120695
,4,14824,120700
,4,14825,120705
,4,14826,120710
,4,14827,120715
,4,14828,120720
,4,14829,120725
,4,14830,120730
,4,14831,120735
,4,14832,120740
,4,14833,120745
,4,14834,120750
,4,14835,120755
,4,14836,120760
,4,14837,120765
,4,14838,120770
,4,14839,120775
,4,14840,120780
,4,14841,120785
,4,14842,120790
,4,14843,120795
,4,14844,120800
,4,14845,120805
,4,14846,120810
,4,14847,120815
,4,14848,120820
,4,14849,120825
,4,14850,120830
,4,14851,120835
,4,14852,120840
,4,14853,120845
,4,14854,120850
,4,14855,120855
,4,14856,120860
,4,14857,120865
,4,14858,120870
,4,14859,120875
,4,14860,120880
,4,14861,120885
,4,14862,120890
,4,14863,120895
,4,14864,120900
,4,14865,120905
,4,14866,120910
,4,14867,120915
,4,14868,120920
,4,14869,120925
,4,14870,120930
,4,14871,120935
,4,14872,120940
,4,14873,120945
,4,14874,120950
,4,14875,120955
,4,14876,120960
,4,14877,120965
,4,14878,120970
,4,14879,120975
,4,14880,120980
,4,14881,120985
,4,14882,120990
,4,14883,120995
,4,14884,121000
,4,14885,121005
,4,14886,121010
,4,14887,121015
,4,14888,121020
,4,14889,121025
,4,14890,121030
,4,14891,121035
,4,14892,121040
,4,14893,121045
,4,14894,121050
,4,14895,121055
,4,14896,121060
,4,14897,121065
,4,14898,121070
,4,14899,121075
,4,14900,121080
,4,14901,121085
,4,14902,121090
,4,14903,121095
,4,14904,121100
,4,14905,121105
,4,14906,121110
,4,14907,121115
,4,14908,121120
,4,14909,121125
,4,14910,121130
,4,14911,121135
,4,14912,121140
,4,14913,121145
,4,14914,121150
,4,14915,121155
,4,14916,121160
,4,14917,121165
,4,14918,121170
,4,14919,121175
,4,14920,121180
,4,14921,121185
,4,14922,121190
,4,14923,121195
,4,14924,121200
,4,14925,121205
,4,14926,121210
,4,14927,121215
,4,14928,121220
,4,14929,121225
,4,14930,121230
,4,14931,121235
,4,14932,121240
,4,14933,121245
,4,14934,121250
,4,14935,121255
,4,14936,121260
,4,14937,121265
,4,14938,121270
,4,14939,121275
,4,14940,121280
,4,14941,121285
,4,14942,121290
,4,14943,121295
,4,14944,121300
,4,14945,121305
,4,14946,121310
,4,14947,121315
,4,14948,121320
,4,14949,121325
,4,14950,121330
,4,14951,121335
,4,14952,121340
,4,14953,121345
,4,14954,121350
,4,14955,121355
,4,14956,121360
,4,14957,121365
,4,14958,121370
,4,14959,121375
,4,14960,121380
,4,14961,121385
,4,14962,121390
,4,14963,121395
,4,14964,121400
,4,14965,121405
,4,14966,121410
,4,14967,121415
,4,14968,121420
,4,14969,121425
,4,14970,121430
,4,14971,121435
,4,14972,121440
,4,14973,121445
,4,14974,121450
,4,14975,121455
,4,14976,121460
,4,14977,121465
,4,14978,121470
,4,14979,121475
,4,14980,121480
,4,14981,121485
,4,14982,121490
,4,14983,121495
,4,14984,121500
,4,14985,121505
,4,14986,121510
,4,14987,121515
,4,14988,121520
,4,14989,121525
,4,14990,121530
,4,14991,121535
,4,14992,121540
,4,14993,121545
,4,14994,121550
,4,14995,121555
,4,14996,121560
,4,14997,121565
,4,14998,121570
,4,14999,121575
,4,15000,121580
,4,15001,121585
,4,15002,121590
,4,15003,121595
,4,15004,121600
,4,15005,121605
,4,15006,121610
,4,15007,121615
,4,15008,121620
,4,15009,121625
,4,15010,121630
,4,15011,121635
,4,15012,121640
,4,15013,121645
,4,15014,121650
,4,15015,121655
,4,15016,121660
,4,15017,121665
,4,15018,121670
,4,15019,121675
,4,15020,121680
,4,15021,121685
,4,15022,121690
,4,15023,121695
,4,15024,121700
,4,15025,121705
,4,15026,121710
,4,15027,121715
,4,15028,121720
,4,15029,121725
,4,15030,121730
,4,15031,121735
,4,15032,121740
,4,15033,121745
,4,15034,121750
,4,15035,121755
,4,15036,121760
,4,15037,121765
,4,15038,121770
,4,15039,121775
,4,15040,121780
,4,15041,121785
,4,15042,121790
,4,15043,121795
,4,15044,121800
,4,15045,121805
,4,15046,121810
,4,15047,121815
,4,15048,121820
,4,15049,121825
,4,15050,121830
,4,15051,121835
,4,15052,121840
,4,15053,121845
,4,15054,121850
,4,15055,121855
,4,15056,121860
,4,15057,121865
,4,15058,121870
,4,15059,121875
,4,15060,121880
,4,15061,121885
,4,15062,121890
,4,15063,121895
,4,15064,121900
,4,15065,121905
,4,15066,121910
,4,15067,121915
,4,15068,121920
,4,15069,121925
,4,15070,121930
,4,15071,121935
,4,15072,121940
,4,15073,121945
,4,15074,121950
,4,15075,121955
,4,15076,121960
,4,15077,121965
,4,15078,121970
,4,15079,121975
,4,15080,121980
,4,15081,121985
,4,15082,121990
,4,15083,121995
,4,15084,122000
,4,15085,122005
,4,15086,122010
,4,15087,122015
,4,15088,122020
,4,15089,122025
,4,15090,122030
,4,15091,122035
,4,15092,122040
,4,15093,122045
,4,15094,122050
,4,15095,122055
,4,15096,122060
,4,15097,122065
,4,15098,122070
,4,15099,122075
,4,15100,122080
,4,15101,122085
,4,15102,122090
,4,15103,122095
,4,15104,122100
,4,15105,122105
,4,15106,122110
,4,15107,122115
,4,15108,122120
,4,15109,122125
,4,15110,122130
,4,15111,122135
,4,15112,122140
,4,15113,122145
,4,15114,122150
,4,15115,122155
,4,15116,122160
,4,15117,122165
,4,15118,122170
,4,15119,122175
,4,15120,122180
,4,15121,122185
,4,15122,122190
,4,15123,122195
,4,15124,122200
,4,15125,122205
,4,15126,122210
,4,15127,122215
,4,15128,122220
,4,15129,122225
,4,15130,122230
,4,15131,122235
,4,15132,122240
,4,15133,122245
,4,15134,122250
,4,15135,122255
,4,15136,122260
,4,15137,122265
,4,15138,122270
,4,15139,122275
,4,15140,122280
,4,15141,122285
,4,15142,122290
,4,15143,122295
,4,15144,122300
,4,15145,122305
,4,15146,122310
,4,15147,122315
,4,15148,122320
,4,15149,122325
,4,15150,122330
,4,15151,122335
,4,15152,122340
,4,15153,122345
,4,15154,122350
,4,15155,122355
,4,15156,122360
,4,15157,122365
,4,15158,122370
,4,15159,122375
,4,15160,122380
,4,15161,122385
,4,15162,122390
,4,15163,122395
,4,15164,122400
,4,15165,122405
,4,15166,122410
,4,15167,122415
,4,15168,122420
,4,15169,122425
,4,15170,122430
,4,15171,122435
,4,15172,122440
,4,15173,122445
,4,15174,122450
,4,15175,122455
,4,15176,122460
,4,15177,122465
,4,15178,122470
,4,15179,122475
,4,15180,122480
,4,15181,122485
,4,15182,122490
,4,15183,122495
,4,15184,122500
,4,15185,122505
,4,15186,122510
,4,15187,122515
,4,15188,122520
,4,15189,122525
,4,15190,122530
,4,15191,122535
,4,15192,122540
,4,15193,122545
,4,15194,122550
,4,15195,122555
,4,15196,122560
,4,15197,122565
,4,15198,122570
,4,15199,122575
,4,15200,122580
,4,15201,122585
,4,15202,122590
,4,15203,122595
,4,15204,122600
,4,15205,122605
,4,15206,122610
,4,15207,122615
,4,15208,122620
,4,15209,122625
,4,15210,122630
,4,15211,122635
,4,15212,122640
,4,15213,122645
,4,15214,122650
,4,15215,122655
,4,15216,122660
,4,15217,122665
,4,15218,122670
,4,15219,122675
,4,15220,122680
,4,15221,122685
,4,15222,122690
,4,15223,122695
,4,15224,122700
,4,15225,122705
,4,15226,122710
,4,15227,122715
,4,15228,122720
,4,15229,122725
,4,15230,122730
,4,15231,122735
,4,15232,122740
,4,15233,122745
,4,15234,122750
,4,15235,122755
,4,15236,122760
,4,15237,122765
,4,15238,122770
,4,15239,122775
,4,15240,122780
,4,15241,122785
,4,15242,122790
,4,15243,122795
,4,15244,122800
,4,15245,122805
,4,15246,122810
,4,15247,122815
,4,15248,122820
,4,15249,122825
,4,15250,122830
,4,15251,122835
,4,15252,122840
,4,15253,122845
,4,15254,122850
,4,15255,122855
,4,15256,122860
,4,15257,122865
,4,15258,122870
,4,15259,122875
,4,15260,122880
,4,15261,122885
,4,15262,122890
,4,15263,122895
,4,15264,122900
,4,15265,122905
,4,15266,122910
,4,15267,122915
,4,15268,122920
,4,15269,122925
,4,15270,122930
,4,15271,122935
,4,15272,122940
,4,15273,122945
,4,15274,122950
,4,15275,122955
,4,15276,122960
,4,15277,122965
,4,15278,122970
,4,15279,122975
,4,15280,122980
,4,15281,122985
,4,15282,122990
,4,15283,122995
,4,15284,123000
,4,15285,123005
,4,15286,123010
,4,15287,123015
,4,15288,123020
,4,15289,123025
,4,15290,123030
,4,15291,123035
,4,15292,123040
,4,15293,123045
,4,15294,123050
,4,15295,123055
,4,15296,123060
,4,15297,123065
,4,15298,123070
,4,15299,123075
,4,15300,123080
,4,15301,123085
,4,15302,123090
,4,15303,123095
,4,15304,123100
,4,15305,123105
,4,15306,123110
,4,15307,123115
,4,15308,123120
,4,15309,123125
,4,15310,123130
,4,15311,123135
,4,15312,123140
,4,15313,123145
,4,15314,123150
,4,15315,123155
,4,15316,123160
,4,15317,123165
,4,15318,123170
,4,15319,123175
,4,15320,123180
,4,15321,123185
,4,15322,123190
,4,15323,123195
,4,15324,123200
,4,15325,123205
,4,15326,123210
,4,15327,123215
,4,15328,123220
,4,15329,123225
,4,15330,123230
,4,15331,123235
,4,15332,123240
,4,15333,123245
,4,15334,123250
,4,15335,123255
,4,15336,123260
,4,15337,123265
,4,15338,123270
,4,15339,123275
,4,15340,123280
,4,15341,123285
,4,15342,123290
,4,15343,123295
,4,15344,123300
,4,15345,123305
,4,15346,123310
,4,15347,123315
,4,15348,123320
,4,15349,123325
,4,15350,123330
,4,15351,123335
,4,15352,123340
,4,15353,123345
,4,15354,123350
,4,15355,123355
,4,15356,123360
,4,15357,123365
,4,15358,123370
,4,15359,123375
,4,15360,123380
,4,15361,123385
,4,15362,123390
,4,15363,123395
,4,15364,123400
,4,15365,123405
,4,15366,123410
,4,15367,123415
,4,15368,123420
,4,15369,123425
,4,15370,123430
,4,15371,123435
,4,15372,123440
,4,15373,123445
,4,15374,123450
,4,15375,123455
,4,15376,123460
,4,15377,123465
,4,15378,123470
,4,15379,123475
,4,15380,123480
,4,15381,123485
,4,15382,123490
,4,15383,123495
,4,15384,123500
,4,15385,123505
,4,15386,123510
,4,15387,123515
,4,15388,123520
,4,15389,123525
,4,15390,123530
,4,15391,123535
,4,15392,123540
,4,15393,123545
,4,15394,123550
,4,15395,123555
,4,15396,123560
,4,15397,123565
,4,15398,123570
,4,15399,123575
,4,15400,123580
,4,15401,123585
,4,15402,123590
,4,15403,123595
,4,15404,123600
,4,15405,123605
,4,15406,123610
,4,15407,123615
,4,15408,123620
,4,15409,123625
,4,15410,123630
,4,15411,123635
,4,15412,123640
,4,15413,123645
,4,15414,123650
,4,15415,123655
,4,15416,123660
,4,15417,123665
,4,15418,123670
,4,15419,123675
,4,15420,123680
,4,15421,123685
,4,15422,123690
,4,15423,123695
,4,15424,123700
,4,15425,123705
,4,15426,123710
,4,15427,123715
,4,15428,123720
,4,15429,123725
,4,15430,123730
,4,15431,123735
,4,15432,123740
,4,15433,123745
,4,15434,123750
,4,15435,123755
,4,15436,123760
,4,15437,123765
,4,15438,123770
,4,15439,123775
,4,15440,123780
,4,15441,123785
,4,15442,123790
,4,15443,123795
,4,15444,123800
,4,15445,123805
,4,15446,123810
,4,15447,123815
,4,15448,123820
,4,15449,123825
,4,15450,123830
,4,15451,123835
,4,15452,123840
,4,15453,123845
,4,15454,123850
,4,15455,123855
,4,15456,123860
,4,15457,123865
,4,15458,123870
,4,15459,123875
,4,15460,123880
,4,15461,123885
,4,15462,123890
,4,15463,123895
,4,15464,123900
,4,15465,123905
,4,15466,123910
,4,15467,123915
,4,15468,123920
,4,15469,123925
,4,15470,123930
,4,15471,123935
,4,15472,123940
,4,15473,123945
,4,15474,123950
,4,15475,123955
,4,15476,123960
,4,15477,123965
,4,15478,123970
,4,15479,123975
,4,15480,123980
,4,15481,123985
,4,15482,123990
,4,15483,123995
,4,15484,124000
,4,15485,124005
,4,15486,124010
,4,15487,124015
,4,15488,124020
,4,15489,124025
,4,15490,124030
,4,15491,124035
,4,15492,124040
,4,15493,124045
,4,15494,124050
,4,15495,124055
,4,15496,124060
,4,15497,124065
,4,15498,124070
,4,15499,124075
,4,15500,124080
,4,15501,124085
,4,15502,124090
,4,15503,124095
,4,15504,124100
,4,15505,124105
,4,15506,124110
,4,15507,124115
,4,15508,124120
,4,15509,124125
,4,15510,124130
,4,15511,124135
,4,15512,124140
,4,15513,124145
,4,15514,124150
,4,15515,124155
,4,15516,124160
,4,15517,124165
,4,15518,124170
,4,15519,124175
,4,15520,124180
,4,15521,124185
,4,15522,124190
,4,15523,124195
,4,15524,124200
,4,15525,124205
,4,15526,124210
,4,15527,124215
,4,15528,124220
,4,15529,124225
,4,15530,124230
,4,15531,124235
,4,15532,124240
,4,15533,124245
,4,15534,124250
,4,15535,124255
,4,15536,124260
,4,15537,124265
,4,15538,124270
,4,15539,124275
,4,15540,124280
,4,15541,124285
,4,15542,124290
,4,15543,124295
,4,15544,124300
,4,15545,124305
,4,15546,124310
,4,15547,124315
,4,15548,124320
,4,15549,124325
,4,15550,124330
,4,15551,124335
,4,15552,124340
,4,15553,124345
,4,15554,124350
,4,15555,124355
,4,15556,124360
,4,15557,124365
,4,15558,124370
,4,15559,124375
,4,15560,124380
,4,15561,124385
,4,15562,124390
,4,15563,124395
,4,15564,124400
,4,15565,124405
,4,15566,124410
,4,15567,124415
,4,15568,124420
,4,15569,124425
,4,15570,124430
,4,15571,124435
,4,15572,124440
,4,15573,124445
,4,15574,124450
,4,15575,124455
,4,15576,124460
,4,15577,124465
,4,15578,124470
,4,15579,124475
,4,15580,124480
,4,15581,124485
,4,15582,124490
,4,15583,124495
,4,15584,124500
,4,15585,124505
,4,15586,124510
,4,15587,124515
,4,15588,124520
,4,15589,124525
,4,15590,124530
,4,15591,124535
,4,15592,124540
,4,15593,124545
,4,15594,124550
,4,15595,124555
,4,15596,124560
,4,15597,124565
,4,15598,124570
,4,15599,124575
,4,15600,124580
,4,15601,124585
,4,15602,124590
,4,15603,124595
,4,15604,124600
,4,15605,124605
,4,15606,124610
,4,15607,124615
,4,15608,124620
,4,15609,124625
,4,15610,124630
,4,15611,124635
,4,15612,124640
,4,15613,124645
,4,15614,124650
,4,15615,124655
,4,15616,124660
,4,15617,124665
,4,15618,124670
,4,15619,124675
,4,15620,124680
,4,15621,124685
,4,15622,124690
,4,15623,124695
,4,15624,124700
,4,15625,124705
,4,15626,124710
,4,15627,124715
,4,15628,124720
,4,15629,124725
,4,15630,124730
,4,15631,124735
,4,15632,124740
,4,15633,124745
,4,15634,124750
,4,15635,124755
,4,15636,124760
,4,15637,124765
,4,15638,124770
,4,15639,124775
,4,15640,124780
,4,15641,124785
,4,15642,124790
,4,15643,124795
,4,15644,124800
,4,15645,124805
,4,15646,124810
,4,15647,124815
,4,15648,124820
,4,15649,124825
,4,15650,124830
,4,15651,124835
,4,15652,124840
,4,15653,124845
,4,15654,124850
,4,15655,124855
,4,15656,124860
,4,15657,124865
,4,15658,124870
,4,15659,124875
,4,15660,124880
,4,15661,124885
,4,15662,124890
,4,15663,124895
,4,15664,124900
,4,15665,124905
,4,15666,124910
,4,15667,124915
,4,15668,124920
,4,15669,124925
,4,15670,124930
,4,15671,124935
,4,15672,124940
,4,15673,124945
,4,15674,124950
,4,15675,124955
,4,15676,124960
,4,15677,124965
,4,15678,124970
,4,15679,124975
,4,15680,124980
,4,15681,124985
,4,15682,124990
,4,15683,124995
,4,15684,125000
,4,15685,125005
,4,15686,125010
,4,15687,125015
,4,15688,125020
,4,15689,125025
,4,15690,125030
,4,15691,125035
,4,15692,125040
,4,15693,125045
,4,15694,125050
,4,15695,125055
,4,15696,125060
,4,15697,125065
,4,15698,125070
,4,15699,125075
,4,15700,125080
,4,15701,125085
,4,15702,125090
,4,15703,125095
,4,15704,125100
,4,15705,125105
,4,15706,125110
,4,15707,125115
,4,15708,125120
,4,15709,125125
,4,15710,125130
,4,15711,125135
,4,15712,125140
,4,15713,125145
,4,15714,125150
,4,15715,125155
,4,15716,125160
,4,15717,125165
,4,15718,125170
,4,15719,125175
,4,15720,125180
,4,15721,125185
,4,15722,125190
,4,15723,125195
,4,15724,125200
,4,15725,125205
,4,15726,125210
,4,15727,125215
,4,15728,125220
,4,15729,125225
,4,15730,125230
,4,15731,125235
,4,15732,125240
,4,15733,125245
,4,15734,125250
,4,15735,125255
,4,15736,125260
,4,15737,125265
,4,15738,125270
,4,15739,125275
,4,15740,125280
,4,15741,125285
,4,15742,125290
,4,15743,125295
,4,15744,125300
,4,15745,125305
,4,15746,125310
,4,15747,125315
,4,15748,125320
,4,15749,125325
,4,15750,125330
,4,15751,125335
,4,15752,125340
,4,15753,125345
,4,15754,125350
,4,15755,125355
,4,15756,125360
,4,15757,125365
,4,15758,125370
,4,15759,125375
,4,15760,125380
,4,15761,125385
,4,15762,125390
,4,15763,125395
,4,15764,125400
,4,15765,125405
,4,15766,125410
,4,15767,125415
,4,15768,125420
,4,15769,125425
,4,15770,125430
,4,15771,125435
,4,15772,125440
,4,15773,125445
,4,15774,125450
,4,15775,125455
,4,15776,125460
,4,15777,125465
,4,15778,125470
,4,15779,125475
,4,15780,125480
,4,15781,125485
,4,15782,125490
,4,15783,125495
,4,15784,125500
,4,15785,125505
,4,15786,125510
,4,15787,125515
,4,15788,125520
,4,15789,125525
,4,15790,125530
,4,15791,125535
,4,15792,125540
,4,15793,125545
,4,15794,125550
,4,15795,125555
,4,15796,125560
,4,15797,125565
,4,15798,125570
,4,15799,125575
,4,15800,125580
,4,15801,125585
,4,15802,125590
,4,15803,125595
,4,15804,125600
,4,15805,125605
,4,15806,125610
,4,15807,125615
,4,15808,125620
,4,15809,125625
,4,15810,125630
,4,15811,125635
,4,15812,125640
,4,15813,125645
,4,15814,125650
,4,15815,125655
,4,15816,125660
,4,15817,125665
,4,15818,125670
,4,15819,125675
,4,15820,125680
,4,15821,125685
,4,15822,125690
,4,15823,125695
,4,15824,125700
,4,15825,125705
,4,15826,125710
,4,15827,125715
,4,15828,125720
,4,15829,125725
,4,15830,125730
,4,15831,125735
,4,15832,125740
,4,15833,125745
,4,15834,125750
,4,15835,125755
,4,15836,125760
,4,15837,125765
,4,15838,125770
,4,15839,125775
,4,15840,125780
,4,15841,125785
,4,15842,125790
,4,15843,125795
,4,15844,125800
,4,15845,125805
,4,15846,125810
,4,15847,125815
,4,15848,125820
,4,15849,125825
,4,15850,125830
,4,15851,125835
,4,15852,125840
,4,15853,125845
,4,15854,125850
,4,15855,125855
,4,15856,125860
,4,15857,125865
,4,15858,125870
,4,15859,125875
,4,15860,125880
,4,15861,125885
,4,15862,125890
,4,15863,125895
,4,15864,125900
,4,15865,125905
,4,15866,125910
,4,15867,125915
,4,15868,125920
,4,15869,125925
,4,15870,125930
,4,15871,125935
,4,15872,125940
,4,15873,125945
,4,15874,125950
,4,15875,125955
,4,15876,125960
,4,15877,125965
,4,15878,125970
,4,15879,125975
,4,15880,125980
,4,15881,125985
,4,15882,125990
,4,15883,125995
,4,15884,126000
,4,15885,126005
,4,15886,126010
,4,15887,126015
,4,15888,126020
,4,15889,126025
,4,15890,126030
,4,15891,126035
,4,15892,126040
,4,15893,126045
,4,15894,126050
,4,15895,126055
,4,15896,126060
,4,15897,126065
,4,15898,126070
,4,15899,126075
,4,15900,126080
,4,15901,126085
,4,15902,126090
,4,15903,126095
,4,15904,126100
,4,15905,126105
,4,15906,126110
,4,15907,126115
,4,15908,126120
,4,15909,126125
,4,15910,126130
,4,15911,126135
,4,15912,126140
,4,15913,126145
,4,15914,126150
,4,15915,126155
,4,15916,126160
,4,15917,126165
,4,15918,126170
,4,15919,126175
,4,15920,126180
,4,15921,126185
,4,15922,126190
,4,15923,126195
,4,15924,126200
,4,15925,126205
,4,15926,126210
,4,15927,126215
,4,15928,126220
,4,15929,126225
,4,15930,126230
,4,15931,126235
,4,15932,126240
,4,15933,126245
,4,15934,126250
,4,15935,126255
,4,15936,126260
,4,15937,126265
,4,15938,126270
,4,15939,126275
,4,15940,126280
,4,15941,126285
,4,15942,126290
,4,15943,126295
,4,15944,126300
,4,15945,126305
,4,15946,126310
,4,15947,126315
,4,15948,126320
,4,15949,126325
,4,15950,126330
,4,15951,126335
,4,15952,126340
,4,15953,126345
,4,15954,126350
,4,15955,126355
,4,15956,126360
,4,15957,126365
,4,15958,126370
,4,15959,126375
,4,15960,126380
,4,15961,126385
,4,15962,126390
,4,15963,126395
,4,15964,126400
,4,15965,126405
,4,15966,126410
,4,15967,126415
,4,15968,126420
,4,15969,126425
,4,15970,126430
,4,15971,126435
,4,15972,126440
,4,15973,126445
,4,15974,126450
,4,15975,126455
,4,15976,126460
,4,15977,126465
,4,15978,126470
,4,15979,126475
,4,15980,126480
,4,15981,126485
,4,15982,126490
,4,15983,126495
,4,15984,126500
,4,15985,126505
,4,15986,126510
,4,15987,126515
,4,15988,126520
,4,15989,126525
,4,15990,126530
,4,15991,126535
,4,15992,126540
,4,15993,126545
,4,15994,126550
,4,15995,126555
,4,15996,126560
,4,15997,126565
,4,15998,126570
,4,15999,126575
,4,16000,126580
,4,16001,126585
,4,16002,126590
,4,16003,126595
,4,16004,126600
,4,16005,126605
,4,16006,126610
,4,16007,126615
,4,16008,126620
,4,16009,126625
,4,16010,126630
,4,16011,126635
,4,16012,126640
,4,16013,126645
,4,16014,126650
,4,16015,126655
,4,16016,126660
,4,16017,126665
,4,16018,126670
,4,16019,126675
,4,16020,126680
,4,16021,126685
,4,16022,126690
,4,16023,126695
,4,16024,126700
,4,16025,126705
,4,16026,126710
,4,16027,126715
,4,16028,126720
,4,16029,126725
,4,16030,126730
,4,16031,126735
,4,16032,126740
,4,16033,126745
,4,16034,126750
,4,16035,126755
,4,16036,126760
,4,16037,126765
,4,16038,126770
,4,16039,126775
,4,16040,126780
,4,16041,126785
,4,16042,126790
,4,16043,126795
,4,16044,126800
,4,16045,126805
,4,16046,126810
,4,16047,126815
,4,16048,126820
,4,16049,126825
,4,16050,126830
,4,16051,126835
,4,16052,126840
,4,16053,126845
,4,16054,126850
,4,16055,126855
,4,16056,126860
,4,16057,126865
,4,16058,126870
,4,16059,126875
,4,16060,126880
,4,16061,126885
,4,16062,126890
,4,16063,126895
,4,16064,126900
,4,16065,126905
,4,16066,126910
,4,16067,126915
,4,16068,126920
,4,16069,126925
,4,16070,126930
,4,16071,126935
,4,16072,126940
,4,16073,126945
,4,16074,126950
,4,16075,126955
,4,16076,126960
,4,16077,126965
,4,16078,126970
,4,16079,126975
,4,16080,126980
,4,16081,126985
,4,16082,126990
,4,16083,126995
,4,16084,127000
,4,16085,127005
,4,16086,127010
,4,16087,127015
,4,16088,127020
,4,16089,127025
,4,16090,127030
,4,16091,127035
,4,16092,127040
,4,16093,127045
,4,16094,127050
,4,16095,127055
,4,16096,127060
,4,16097,127065
,4,16098,127070
,4,16099,127075
,4,16100,127080
,4,16101,127085
,4,16102,127090
,4,16103,127095
,4,16104,127100
,4,16105,127105
,4,16106,127110
,4,16107,127115
,4,16108,127120
,4,16109,127125
,4,16110,127130
,4,16111,127135
,4,16112,127140
,4,16113,127145
,4,16114,127150
,4,16115,127155
,4,16116,127160
,4,16117,127165
,4,16118,127170
,4,16119,127175
,4,16120,127180
,4,16121,127185
,4,16122,127190
,4,16123,127195
,4,16124,127200
,4,16125,127205
,4,16126,127210
,4,16127,127215
,4,16128,127220
,4,16129,127225
,4,16130,127230
,4,16131,127235
,4,16132,127240
,4,16133,127245
,4,16134,127250
,4,16135,127255
,4,16136,127260
,4,16137,127265
,4,16138,127270
,4,16139,127275
,4,16140,127280
,4,16141,127285
,4,16142,127290
,4,16143,127295
,4,16144,127300
,4,16145,127305
,4,16146,127310
,4,16147,127315
,4,16148,127320
,4,16149,127325
,4,16150,127330
,4,16151,127335
,4,16152,127340
,4,16153,127345
,4,16154,127350
,4,16155,127355
,4,16156,127360
,4,16157,127365
,4,16158,127370
,4,16159,127375
,4,16160,127380
,4,16161,127385
,4,16162,127390
,4,16163,127395
,4,16164,127400
,4,16165,127405
,4,16166,127410
,4,16167,127415
,4,16168,127420
,4,16169,127425
,4,16170,127430
,4,16171,127435
,4,16172,127440
,4,16173,127445
,4,16174,127450
,4,16175,127455
,4,16176,127460
,4,16177,127465
,4,16178,127470
,4,16179,127475
,4,16180,127480
,4,16181,127485
,4,16182,127490
,4,16183,127495
,4,16184,127500
,4,16185,127505
,4,16186,127510
,4,16187,127515
,4,16188,127520
,4,16189,127525
,4,16190,127530
,4,16191,127535
,4,16192,127540
,4,16193,127545
,4,16194,127550
,4,16195,127555
,4,16196,127560
,4,16197,127565
,4,16198,127570
,4,16199,127575
,4,16200,127580
,4,16201,127585
,4,16202,127590
,4,16203,127595
,4,16204,127600
,4,16205,127605
,4,16206,127610
,4,16207,127615
,4,16208,127620
,4,16209,127625
,4,16210,127630
,4,16211,127635
,4,16212,127640
,4,16213,127645
,4,16214,127650
,4,16215,127655
,4,16216,127660
,4,16217,127665
,4,16218,127670
,4,16219,127675
,4,16220,127680
,4,16221,127685
,4,16222,127690
,4,16223,127695
,4,16224,127700
,4,16225,127705
,4,16226,127710
,4,16227,127715
,4,16228,127720
,4,16229,127725
,4,16230,127730
,4,16231,127735
,4,16232,127740
,4,16233,127745
,4,16234,127750
,4,16235,127755
,4,16236,127760
,4,16237,127765
,4,16238,127770
,4,16239,127775
,4,16240,127780
,4,16241,127785
,4,16242,127790
,4,16243,127795
,4,16244,127800
,4,16245,127805
,4,16246,127810
,4,16247,127815
,4,16248,127820
,4,16249,127825
,4,16250,127830
,4,16251,127835
,4,16252,127840
,4,16253,127845
,4,16254,127850
,4,16255,127855
,4,16256,127860
,4,16257,127865
,4,16258,127870
,4,16259,127875
,4,16260,127880
,4,16261,127885
,4,16262,127890
,4,16263,127895
,4,16264,127900
,4,16265,127905
,4,16266,127910
,4,16267,127915
,4,16268,127920
,4,16269,127925
,4,16270,127930
,4,16271,127935
,4,16272,127940
,4,16273,127945
,4,16274,127950
,4,16275,127955
,4,16276,127960
,4,16277,127965
,4,16278,127970
,4,16279,127975
,4,16280,127980
,4,16281,127985
,4,16282,127990
,4,16283,127995
,4,16284,128000
,4,16285,128005
,4,16286,128010
,4,16287,128015
,4,16288,128020
,4,16289,128025
,4,16290,128030
,4,16291,128035
,4,16292,128040
,4,16293,128045
,4,16294,128050
,4,16295,128055
,4,16296,128060
,4,16297,128065
,4,16298,128070
,4,16299,128075
,4,16300,128080
,4,16301,128085
,4,16302,128090
,4,16303,128095
,4,16304,128100
,4,16305,128105
,4,16306,128110
,4,16307,128115
,4,16308,128120
,4,16309,128125
,4,16310,128130
,4,16311,128135
,4,16312,128140
,4,16313,128145
,4,16314,128150
,4,16315,128155
,4,16316,128160
,4,16317,128165
,4,16318,128170
,4,16319,128175
,4,16320,128180
,4,16321,128185
,4,16322,128190
,4,16323,128195
,4,16324,128200
,4,16325,128205
,4,16326,128210
,4,16327,128215
,4,16328,128220
,4,16329,128225
,4,16330,128230
,4,16331,128235
,4,16332,128240
,4,16333,128245
,4,16334,128250
,4,16335,128255
,4,16336,128260
,4,16337,128265
,4,16338,128270
,4,16339,128275
,4,16340,128280
,4,16341,128285
,4,16342,128290
,4,16343,128295
,4,16344,128300
,4,16345,128305
,4,16346,128310
,4,16347,128315
,4,16348,128320
,4,16349,128325
,4,16350,128330
,4,16351,128335
,4,16352,128340
,4,16353,128345
,4,16354,128350
,4,16355,128355
,4,16356,128360
,4,16357,128365
,4,16358,128370
,4,16359,128375
,4,16360,128380
,4,16361,128385
,4,16362,128390
,4,16363,128395
,4,16364,128400
,4,16365,128405
,4,16366,128410
,4,16367,128415
,4,16368,128420
,4,16369,128425
,4,16370,128430
,4,16371,128435
,4,16372,128440
,4,16373,128445
,4,16374,128450
,4,16375,128455
,4,16376,128460
,4,16377,128465
,4,16378,128470
,4,16379,128475
,4,16380,128480
,4,16381,128485
,4,16382,128490
,4,16383,128495
,4,16384,128500
,4,16385,128505
,4,16386,128510
,4,16387,128515
,4,16388,128520
,4,16389,128525
,4,16390,128530
,4,16391,128535
,4,16392,128540
,4,16393,128545
,4,16394,128550
,4,16395,128555
,4,16396,128560
,4,16397,128565
,4,16398,128570
,4,16399,128575
,4,16400,128580
,4,16401,128585
,4,16402,128590
,4,16403,128595
,4,16404,128600
,0,1361,8370
,0,1472,39870
,0,1417,128665
,2,19076,425
,3,19539,30290
,3,19540,128670
,6,64,39045
,3,19529,12650
,4,1,128675
,3,19536,139130
,3,19656,30745
,3,19529,139175
,4,1,44060
,4,2,142485
,4,3,215
,4,4,275
,4,5,44020
,4,6,44020
,4,7,7650
,4,8,142425
,4,9,7375
,4,10,141705
,3,19529,134475
,3,19544,430
,3,19546,840
,3,19545,133460
,3,19529,142500
,3,19544,425
,3,19545,130440
,3,19529,142500
,3,19544,425
,3,19545,130425
,3,19529,142500
,3,19544,425
,3,19545,130315
,3,19529,142500
,3,19544,425
,3,19545,130405
,3,19529,142500
,3,19544,1070
,3,19546,895
,3,19545,133790
,3,19529,142500
,3,19529,134465
,3,19529,142500
,2,19076,1070
,3,19529,34480
,3,19541,30230
,3,19542,30200
,3,19543,685
,3,19529,30810
,4,3,8370
,4,4,39870
,4,5,128665
,3,19536,139125
,3,19656,30730
,3,19529,139175
,4,1,44060
,4,2,12650
,4,3,425
,4,4,565
,4,5,555
,4,6,39415
,4,8,129485
,4,9,142380
,4,10,39415
,4,11,43715
,4,12,39320
,4,13,30210
,4,14,129485
,4,15,139275
,4,16,23085
,4,17,44710
,3,19529,39795
,4,4,39875
,4,5,16900
,4,6,39880
,4,7,12320
,4,10,39885
,4,11,22655
,4,16,39890
,4,17,26230
,4,48,39895
,4,49,30135
,4,84,39900
,4,85,19425
,4,86,39905
,4,87,27115
,4,90,39910
,4,91,15685
,4,98,39915
,4,99,4440
,4,100,39920
,4,101,24745
,4,108,39925
,4,109,9905
,4,110,39930
,4,111,9165
,4,112,39935
,4,113,26920
,4,128,39940
,4,129,25855
,4,132,39945
,4,133,7080
,4,136,39950
,4,137,29070
,4,144,39955
,4,145,26690
,4,150,39960
,4,151,20095
,4,160,39965
,4,161,6270
,4,162,39970
,4,163,11985
,4,168,39975
,4,169,11705
,4,172,39980
,4,173,29610
,4,208,39985
,4,209,8750
,4,218,39990
,4,219,27260
,4,242,39995
,4,243,18090
,4,244,40000
,4,245,21935
,4,254,40005
,4,255,8320
,4,258,40010
,4,259,10415
,3,19529,39795
,3,19529,39795
,2,1500,40285
,2,1501,31415
,2,1395,40290
,2,1150,27300
,2,1267,27305
,2,1502,40295
,2,19076,430
,3,19600,40280
,3,19529,39010
,3,19529,39795
,4,4,210
,4,5,215
,4,6,220
,4,7,225
,4,8,230
,4,9,235
,4,10,240
,4,11,245
,4,12,250
,4,13,255
,4,16,11605
,4,22,11570
,4,26,21520
,4,35,8900
,4,41,128705
,4,43,44840
,4,44,28940
,4,45,30385
,4,53,44865
,4,54,128710
,4,56,32140
,4,63,31905
,4,70,10560
,4,80,10750
,4,93,39350
,4,104,4020
,4,110,44960
,4,111,21340
,4,127,44985
,4,147,45050
,4,148,128715
,4,152,18550
,4,160,35040
,4,176,4290
,4,182,45100
,4,183,28770
,4,202,128720
,4,235,45190
,4,251,45230
,4,277,11010
,4,278,34375
,4,282,9795
,4,285,34995
,4,286,45285
,4,300,10680
,4,311,12215
,4,313,22945
,4,321,4800
,4,332,31630
,4,341,42690
,4,344,12255
,4,351,1050
,4,354,128725
,4,356,128730
,4,359,42720
,4,370,128735
,4,371,128740
,4,379,42750
,4,385,28525
,4,401,128745
,4,413,45485
,4,427,8580
,4,428,4960
,4,434,10660
,4,435,30915
,4,439,45525
,4,449,45565
,4,457,128750
,4,462,24710
,4,467,6820
,4,501,28450
,4,504,42910
,4,505,8185
,4,518,23095
,4,532,41475
,4,535,20070
,4,547,128755
,4,567,4890
,4,585,17505
,4,591,17010
,4,594,21310
,4,596,45815
,4,627,10720
,4,643,31920
,4,658,128760
,4,669,10575
,4,671,45920
,4,686,10610
,4,687,10665
,4,688,42370
,4,694,7005
,4,697,3555
,4,724,46000
,4,725,42495
,4,728,11615
,4,732,12120
,4,734,42500
,4,742,16875
,4,749,9855
,4,751,135
,4,760,9595
,4,761,128765
,4,765,31280
,4,766,34780
,4,778,5090
,4,787,10345
,4,798,10255
,4,807,33670
,4,817,31535
,4,831,128770
,4,833,30260
,4,836,46235
,4,837,5900
,4,862,10055
,4,863,5750
,4,878,11030
,4,885,18725
,4,887,28455
,4,889,30540
,4,902,28135
,4,937,12205
,4,938,30920
,4,945,10770
,4,946,28145
,4,948,128775
,4,949,9070
,4,956,32295
,4,962,11455
,4,964,36495
,4,965,6740
,4,966,24680
,4,967,31295
,4,969,19180
,4,975,46470
,4,984,128780
,4,994,8180
,4,1011,128785
,4,1032,5825
,4,1046,32135
,4,1047,9290
,4,1075,9695
,4,1085,37360
,4,1087,17595
,4,1122,6920
,4,1130,6640
,4,1135,3915
,4,1136,32330
,4,1137,44950
,4,1143,17380
,4,1144,128790
,4,1153,8200
,4,1155,45010
,4,1156,45005
,4,1157,28140
,4,1165,45035
,4,1166,10630
,4,1173,8930
,4,1180,25935
,4,1190,22305
,4,1199,9605
,4,1217,45115
,4,1218,37320
,4,1220,128795
,4,1226,30860
,4,1227,128800
,4,1238,128805
,4,1240,5840
,4,1241,9850
,4,1243,45165
,4,1249,42515
,4,1256,6700
,4,1263,29155
,4,1266,45200
,4,1282,16535
,4,1287,21485
,4,1289,21300
,4,1306,45275
,4,1308,128810
,4,1309,10685
,4,1314,10960
,4,1324,8255
,4,1325,128815
,4,1326,128820
,4,1327,42595
,4,1338,32205
,4,1339,17585
,4,1358,35720
,4,1367,21390
,4,1371,42695
,4,1381,9055
,4,1384,128825
,4,1387,42730
,4,1400,45410
,4,1401,10990
,4,1415,128830
,4,1419,45450
,4,1420,8175
,4,1422,42785
,4,1424,128835
,4,1427,4330
,4,1440,5030
,4,1445,32125
,4,1467,16605
,4,1479,35675
,4,1482,35765
,4,1493,21905
,4,1503,28560
,4,1511,128840
,4,1512,45630
,4,1513,45640
,4,1545,4520
,4,1549,45690
,4,1559,33375
,4,1561,31290
,4,1567,42155
,4,1569,42165
,4,1577,42190
,4,1579,25905
,4,1585,8940
,4,1591,43130
,4,1592,23100
,4,1602,12175
,4,1604,42215
,4,1608,42220
,4,1637,19785
,4,1655,45870
,4,1663,5890
,4,1664,45875
,4,1666,42280
,4,1678,5700
,4,1679,7975
,4,1681,26035
,4,1690,42335
,4,1698,31515
,4,1717,45950
,4,1723,42460
,4,1725,45955
,4,1741,28325
,4,1748,3990
,4,1763,35745
,4,1768,8830
,4,1769,128845
,4,1784,3690
,4,1785,9475
,4,1809,7025
,4,1810,128850
,4,1819,39570
,4,1825,33590
,4,1830,21060
,4,1846,10800
,4,1866,46245
,4,1872,8195
,4,1877,21900
,4,1880,6840
,4,1883,16650
,4,1885,42705
,4,1887,11000
,4,1896,128855
,4,1904,8850
,4,1936,22130
,4,1943,46355
,4,1953,7775
,4,1965,4125
,4,1971,46425
,4,1972,39140
,4,1974,9085
,4,1976,1090
,4,1978,46440
,4,1979,8035
,4,1986,22950
,4,1998,24605
,4,2007,19240
,4,2014,128860
,4,2016,11200
,4,2031,9860
,4,2032,37255
,4,2057,28605
,4,2061,32260
,4,2067,44810
,4,2068,44825
,4,2072,16615
,4,2074,15220
,4,2084,11430
,4,2085,11555
,4,2087,21335
,4,2096,34740
,4,2099,128865
,4,2121,44885
,4,2128,33610
,4,2149,5680
,4,2150,22285
,4,2165,11120
,4,2170,44975
,4,2185,45020
,4,2191,7045
,4,2192,11480
,4,2203,128870
,4,2206,128875
,4,2216,8165
,4,2221,128880
,4,2229,35795
,4,2240,28235
,4,2251,33615
,4,2253,128885
,4,2257,128890
,4,2262,190
,4,2268,11670
,4,2271,23220
,4,2277,128895
,4,2286,128900
,4,2302,128905
,4,2306,42535
,4,2313,42550
,4,2332,45280
,4,2335,42585
,4,2364,128910
,4,2373,1285
,4,2374,26475
,4,2375,128915
,4,2381,45345
,4,2382,42675
,4,2392,128920
,4,2426,128925
,4,2430,9665
,4,2434,6950
,4,2437,42770
,4,2439,42765
,4,2444,128930
,4,2445,45455
,4,2455,11610
,4,2464,19740
,4,2492,45545
,4,2496,45560
,4,2505,38360
,4,2506,128935
,4,2507,30925
,4,2508,11190
,4,2514,35785
,4,2518,128940
,4,2530,5450
,4,2534,128945
,4,2544,5000
,4,2545,128950
,4,2553,19665
,4,2557,34360
,4,2570,11625
,4,2574,12150
,4,2575,28935
,4,2576,17475
,4,2579,5800
,4,2590,19870
,4,2596,42180
,4,2601,128955
,4,2627,5150
,4,2644,128960
,4,2648,28515
,4,2670,45850
,4,2674,128965
,4,2693,29325
,4,2698,35205
,4,2703,128970
,4,2704,11040
,4,2715,9390
,4,2724,7390
,4,2747,6800
,4,2748,9745
,4,2756,43150
,4,2762,3930
,4,2769,16585
,4,2773,46005
,4,2784,5200
,4,2785,42505
,4,2787,20455
,4,2791,19775
,4,2795,46060
,4,2808,46075
,4,2810,128975
,4,2813,6560
,4,2834,16855
,4,2835,46100
,4,2836,128980
,4,2843,42575
,4,2847,30900
,4,2860,46150
,4,2861,46200
,4,2862,4375
,4,2868,30875
,4,2873,11170
,4,2906,4870
,4,2915,46285
,4,2923,128985
,4,2926,23460
,4,2944,128990
,4,2947,42760
,4,2953,33065
,4,2966,9840
,4,2971,46370
,4,2972,128995
,4,2974,31915
,4,2975,46380
,4,2977,28100
,4,2979,32170
,4,2981,11900
,4,2994,46420
,4,2995,8560
,4,2996,19920
,4,3011,16140
,4,3013,11320
,4,3030,46485
,4,3038,46500
,4,3039,16640
,4,3040,28600
,4,3044,20475
,4,3049,19310
,4,3051,26025
,4,3101,11440
,4,3104,16450
,4,3116,129000
,4,3121,17605
,4,3123,44855
,4,3131,11795
,4,3136,7995
,4,3150,5770
,4,3159,9775
,4,3161,9430
,4,3170,24640
,4,3174,29045
,4,3179,10580
,4,3191,9420
,4,3209,45015
,4,3217,129005
,4,3221,4665
,4,3223,22265
,4,3225,35270
,4,3229,45065
,4,3231,7835
,4,3232,129010
,4,3233,9870
,4,3238,25925
,4,3250,6600
,4,3253,42395
,4,3260,35045
,4,3261,10555
,4,3263,45110
,4,3284,45145
,4,3306,19730
,4,3307,45180
,4,3309,8610
,4,3320,8910
,4,3342,26200
,4,3345,129015
,4,3346,10030
,4,3353,129020
,4,3358,7735
,4,3361,39425
,4,3377,29560
,4,3384,35775
,4,3390,6680
,4,3392,129025
,4,3393,320
,4,3394,4530
,4,3398,42660
,4,3406,3795
,4,3414,129030
,4,3422,42710
,4,3423,31525
,4,3435,28125
,4,3439,33805
,4,3444,45405
,4,3455,129035
,4,3458,23480
,4,3470,9575
,4,3475,16380
,4,3488,43115
,4,3491,33645
,4,3516,45550
,4,3518,9705
,4,3526,11595
,4,3536,45585
,4,3545,8140
,4,3552,9230
,4,3559,5220
,4,3562,37250
,4,3563,45645
,4,3569,8950
,4,3578,32110
,4,3582,42920
,4,3611,45715
,4,3617,29575
,4,3625,129040
,4,3626,19230
,4,3635,45765
,4,3643,11505
,4,3644,129045
,4,3661,10820
,4,3663,10505
,4,3686,45830
,4,3687,129050
,4,3693,11270
,4,3696,4380
,4,3697,16845
,4,3714,18950
,4,3721,42300
,4,3745,11650
,4,3758,33760
,4,3764,22120
,4,3767,26935
,4,3769,39135
,4,3770,21180
,4,3774,45960
,4,3775,31900
,4,3779,8970
,4,3781,7885
,4,3788,24705
,4,3792,29245
,4,3801,11750
,4,3811,28950
,4,3818,9675
,4,3845,129055
,4,3876,11575
,4,3884,46195
,4,3886,8710
,4,3889,37265
,4,3893,4215
,4,3894,129060
,4,3901,11590
,4,3923,35710
,4,3925,23370
,4,3930,3960
,4,3935,7020
,4,3944,28520
,4,3945,129065
,4,3947,22960
,4,3959,21595
,4,3992,7015
,4,4016,17415
,4,4017,10000
,4,4018,5820
,4,4044,39125
,4,4057,8120
,4,4063,129070
,4,4068,16860
,4,4071,5815
,4,4087,3705
,4,4103,129075
,4,4120,129080
,4,4122,10730
,4,4142,11445
,4,4145,7410
,4,4147,7360
,4,4148,129085
,4,4152,5710
,4,4157,19910
,4,4167,12195
,4,4174,19280
,4,4186,31590
,4,4194,9645
,4,4214,5790
,4,4221,129090
,4,4231,10490
,4,4235,45025
,4,4246,21325
,4,4251,22990
,4,4252,30320
,4,4258,45070
,4,4259,45075
,4,4260,5585
,4,4262,42345
,4,4268,8550
,4,4296,11620
,4,4297,42470
,4,4299,129095
,4,4301,18800
,4,4307,26450
,4,4313,22620
,4,4320,37235
,4,4322,45170
,4,4343,129100
,4,4349,42525
,4,4355,32220
,4,4375,129105
,4,4383,37380
,4,4386,11490
,4,4399,35715
,4,4423,28255
,4,4428,11160
,4,4438,38350
,4,4439,129110
,4,4454,129115
,4,4459,6890
,4,4464,45395
,4,4471,32200
,4,4474,45420
,4,4476,8680
,4,4480,5705
,4,4508,45475
,4,4509,6550
,4,4516,37315
,4,4519,129120
,4,4534,129125
,4,4539,129130
,4,4560,21240
,4,4564,129135
,4,4566,4080
,4,4576,45615
,4,4580,45625
,4,4587,45655
,4,4588,42900
,4,4601,45670
,4,4618,29315
,4,4637,45720
,4,4643,23315
,4,4648,45740
,4,4649,36450
,4,4654,42195
,4,4655,8170
,4,4658,45760
,4,4669,5330
,4,4680,1160
,4,4695,6990
,4,4700,35030
,4,4702,129140
,4,4705,19860
,4,4706,129145
,4,4717,36485
,4,4745,32165
,4,4760,32160
,4,4762,33810
,4,4769,10530
,4,4771,42340
,4,4774,11460
,4,4794,31620
,4,4798,129150
,4,4822,129155
,4,4826,7670
,4,4830,19625
,4,4844,46045
,4,4851,46070
,4,4860,32270
,4,4873,3735
,4,4879,46095
,4,4882,129160
,4,4893,30895
,4,4899,28110
,4,4900,31540
,4,4905,46145
,4,4923,46215
,4,4936,30050
,4,4938,46250
,4,4939,36905
,4,4971,33685
,4,4976,35210
,4,4985,46310
,4,4992,46330
,4,5007,28130
,4,5014,46350
,4,5017,129165
,4,5030,33625
,4,5037,42830
,4,5042,35755
,4,5056,19675
,4,5059,28165
,4,5060,10840
,4,5065,129170
,4,5077,43500
,4,5087,22630
,4,5091,9410
,4,5094,10655
,4,5097,7680
,4,5100,30850
,4,5111,129175
,4,5122,11530
,4,5126,24675
,4,5128,44795
,4,5131,42130
,4,5135,35265
,4,5140,8110
,4,5148,4850
,4,5150,19735
,4,5170,17465
,4,5171,11400
,4,5173,44860
,4,5191,5010
,4,5195,38205
,4,5197,7040
,4,5198,129180
,4,5200,22875
,4,5201,42245
,4,5205,34735
,4,5207,42250
,4,5210,28815
,4,5219,24645
,4,5228,6830
,4,5237,30905
,4,5249,23225
,4,5263,42315
,4,5265,5510
,4,5269,45055
,4,5272,20480
,4,5279,5830
,4,5280,11390
,4,5281,19190
,4,5288,129185
,4,5300,42380
,4,5301,5895
,4,5303,10065
,4,5311,129190
,4,5312,8160
,4,5322,9000
,4,5330,45140
,4,5333,45150
,4,5346,9560
,4,5349,29195
,4,5353,34990
,4,5363,45205
,4,5365,129195
,4,5374,129200
,4,5375,11830
,4,5383,129205
,4,5384,129210
,4,5386,32215
,4,5392,45260
,4,5396,31240
,4,5397,35015
,4,5419,22930
,4,5437,4005
,4,5439,23090
,4,5443,1190
,4,5444,26555
,4,5445,23515
,4,5454,195
,4,5468,21400
,4,5477,129215
,4,5484,43560
,4,5487,45390
,4,5491,45400
,4,5495,31500
,4,5500,4860
,4,5502,43210
,4,5505,10910
,4,5508,11495
,4,5512,129220
,4,5527,129225
,4,5536,155
,4,5550,45500
,4,5551,18625
,4,5561,45535
,4,5562,45540
,4,5568,42870
,4,5580,45580
,4,5582,11565
,4,5584,11755
,4,5587,33630
,4,5601,16520
,4,5606,12595
,4,5610,5270
,4,5615,30840
,4,5619,45660
,4,5628,20160
,4,5631,43535
,4,5637,129230
,4,5638,37280
,4,5640,42135
,4,5647,1445
,4,5649,17405
,4,5651,35780
,4,5657,45705
,4,5660,11410
,4,5662,21355
,4,5671,45735
,4,5675,29555
,4,5678,8260
,4,5681,45755
,4,5684,1020
,4,5687,28765
,4,5695,37245
,4,5712,9510
,4,5731,22065
,4,5750,129235
,4,5763,11330
,4,5765,8125
,4,5777,45900
,4,5778,7610
,4,5782,45905
,4,5786,45915
,4,5789,21225
,4,5803,11310
,4,5806,42365
,4,5810,42375
,4,5817,37175
,4,5822,42425
,4,5825,42430
,4,5845,8145
,4,5870,30025
,4,5878,16510
,4,5889,4270
,4,5895,129240
,4,5905,26965
,4,5906,42555
,4,5909,33650
,4,5911,46110
,4,5916,5260
,4,5926,129245
,4,5929,12280
,4,5933,37310
,4,5944,129250
,4,5946,11020
,4,5952,42640
,4,5954,42650
,4,5960,42670
,4,5967,3900
,4,5968,19685
,4,5983,37210
,4,5990,38385
,4,6001,4110
,4,6003,42740
,4,6018,27200
,4,6023,280
,4,6028,46345
,4,6029,41135
,4,6031,24650
,4,6032,43480
,4,6041,8650
,4,6046,19320
,4,6048,20460
,4,6059,6780
,4,6074,16405
,4,6139,46560
,4,6140,10645
,4,6141,30480
,4,6142,39120
,4,6147,44785
,4,6151,25975
,4,6152,129255
,4,6165,4350
,4,6176,11560
,4,6178,31250
,4,6185,129260
,4,6192,4950
,4,6198,8130
,4,6205,44870
,4,6213,9080
,4,6216,11180
,4,6220,39340
,4,6221,4390
,4,6226,42235
,4,6236,8730
,4,6237,8055
,4,6242,129265
,4,6243,31530
,4,6250,44925
,4,6256,26525
,4,6267,44980
,4,6274,44995
,4,6279,19645
,4,6287,129270
,4,6298,39145
,4,6302,17485
,4,6312,29275
,4,6324,45090
,4,6331,8600
,4,6333,42450
,4,6337,129275
,4,6342,45120
,4,6346,42475
,4,6355,31625
,4,6370,129280
,4,6378,24670
,4,6384,32280
,4,6385,18875
,4,6386,24665
,4,6390,45215
,4,6396,129285
,4,6397,45235
,4,6399,4980
,4,6402,16085
,4,6405,37285
,4,6407,8235
,4,6415,129290
,4,6416,7620
,4,6428,39155
,4,6435,45295
,4,6436,45300
,4,6439,28705
,4,6441,10830
,4,6448,8075
,4,6454,15180
,4,6458,45310
,4,6470,8815
,4,6471,38395
,4,6472,42665
,4,6475,45340
,4,6478,5885
,4,6480,11280
,4,6489,19825
,4,6492,10020
,4,6497,11920
,4,6499,8095
,4,6500,45380
,4,6504,129295
,4,6514,129300
,4,6517,17655
,4,6525,18925
,4,6543,45465
,4,6549,7905
,4,6552,28150
,4,6554,129305
,4,6569,37350
,4,6576,42840
,4,6588,45555
,4,6593,32245
,4,6594,9320
,4,6597,8630
,4,6601,7945
,4,6610,11850
,4,6613,45595
,4,6627,34440
,4,6628,10535
,4,6639,11520
,4,6640,42905
,4,6650,37215
,4,6651,18850
,4,6665,129310
,4,6666,8540
,4,6668,42125
,4,6670,19290
,4,6675,129315
,4,6707,7650
,4,6711,129320
,4,6713,11450
,4,6714,29585
,4,6744,11220
,4,6745,45820
,4,6747,33060
,4,6775,45865
,4,6798,5380
,4,6812,28280
,4,6827,37165
,4,6833,5440
,4,6848,21600
,4,6849,129325
,4,6850,29580
,4,6869,16850
,4,6881,46025
,4,6898,46065
,4,6899,16530
,4,6904,5845
,4,6905,11500
,4,6906,32145
,4,6909,21910
,4,6913,5360
,4,6923,11090
,4,6940,42580
,4,6949,8240
,4,6957,46155
,4,6958,3605
,4,6965,46190
,4,6967,11580
,4,6981,11970
,4,6984,129330
,4,6987,26575
,4,6999,46270
,4,7011,11465
,4,7039,11940
,4,7049,11485
,4,7050,11840
,4,7051,19890
,4,7059,10875
,4,7064,129335
,4,7073,46390
,4,7075,32155
,4,7076,32255
,4,7077,33640
,4,7087,46415
,4,7098,10695
,4,7103,8155
,4,7115,3870
,4,7121,12100
,4,7126,46480
,4,7140,46520
,4,7158,19170
,4,7164,129340
,4,7171,46580
,4,7173,129345
,4,7174,129350
,4,7181,9090
,4,7189,34380
,4,7190,36500
,4,7193,25890
,4,7198,42150
,4,7217,44845
,4,7224,11665
,4,7229,5420
,4,7233,43545
,4,7249,39150
,4,7255,30885
,4,7258,35770
,4,7275,129355
,4,7281,6910
,4,7285,44965
,4,7286,8025
,4,7326,11060
,4,7329,12275
,4,7339,45085
,4,7340,42355
,4,7350,45095
,4,7351,9755
,4,7355,30335
,4,7389,30825
,4,7391,23470
,4,7392,129360
,4,7399,5725
,4,7414,129365
,4,7420,22115
,4,7422,8150
,4,7440,8735
,4,7442,45265
,4,7450,11150
,4,7475,129370
,4,7480,42625
,4,7489,42645
,4,7493,45325
,4,7503,5595
,4,7504,129375
,4,7509,3885
,4,7510,8880
,4,7512,45375
,4,7526,18675
,4,7527,45385
,4,7528,27015
,4,7533,8860
,4,7534,25725
,4,7553,26535
,4,7565,5290
,4,7588,7865
,4,7599,42835
,4,7602,45510
,4,7605,8100
,4,7606,129380
,4,7608,129385
,4,7611,32235
,4,7617,17435
,4,7641,129390
,4,7642,129395
,4,7647,129400
,4,7649,129405
,4,7651,45620
,4,7661,129410
,4,7676,8215
,4,7678,5795
,4,7685,270
,4,7705,45710
,4,7708,8980
,4,7724,9020
,4,7745,35035
,4,7751,33665
,4,7757,22885
,4,7762,4820
,4,7778,129415
,4,7789,21110
,4,7793,9460
,4,7803,129420
,4,7808,5470
,4,7846,45935
,4,7852,11745
,4,7858,7955
,4,7875,129425
,4,7876,45985
,4,7877,35005
,4,7896,37270
,4,7906,7965
,4,7910,30390
,4,7915,46040
,4,7918,46055
,4,7932,18575
,4,7933,129430
,4,7936,200
,4,7937,46090
,4,7938,8205
,4,7957,23245
,4,7971,42590
,4,7976,21290
,4,7977,129435
,4,7995,25915
,4,8011,7915
,4,8012,23525
,4,8015,46260
,4,8018,129440
,4,8019,21575
,4,8026,129445
,4,8027,35010
,4,8028,42700
,4,8033,4155
,4,8035,10075
,4,8052,8620
,4,8055,520
,4,8056,9685
,4,8057,7690
,4,8092,129450
,4,8094,10970
,4,8095,42820
,4,8106,46395
,4,8109,129455
,4,8123,42860
,4,8129,37180
,4,8143,129460
,4,8150,33030
,4,8155,22880
,4,8159,46510
,4,8163,24635
,4,8164,80
,4,8165,23400
,4,8173,46545
,4,8176,46550
,4,8180,5660
,4,8191,37170
,4,8193,9585
,4,8218,43515
,4,8225,129465
,4,8230,8265
,4,8233,24700
,4,8248,129470
,4,8250,129475
,4,8300,22205
,4,8318,10305
,4,8320,28700
,4,8322,32875
,4,8332,45030
,4,8334,45040
,4,8337,37355
,4,8344,4900
,4,8346,19400
,4,8351,129480
,4,8352,8990
,4,8355,28435
,4,8363,42350
,4,8378,42420
,4,8388,38390
,4,8409,45160
,4,8429,8500
,4,8440,11760
,4,8441,45225
,4,8443,11880
,4,8453,129485
,4,8469,33385
,4,8472,35750
,4,8477,129490
,4,8484,30880
,4,8486,28010
,4,8488,20065
,4,8500,8570
,4,8501,37220
,4,8502,18975
,4,8519,45335
,4,8524,28955
,4,8525,25985
,4,8528,265
,4,8529,11240
,4,8548,16715
,4,8558,9815
,4,8563,11545
,4,8569,45415
,4,8571,42755
,4,8580,32100
,4,8581,34365
,4,8582,45435
,4,8583,42775
,4,8586,45445
,4,8595,35025
,4,8599,35680
,4,8601,33605
,4,8605,45480
,4,8606,9330
,4,8607,6880
,4,8632,42855
,4,8645,12260
,4,8661,45600
,4,8662,8660
,4,8668,45605
,4,8683,17360
,4,8685,11535
,4,8686,655
,4,8692,11585
,4,8696,9360
,4,8698,29035
,4,8705,5400
,4,8710,45680
,4,8711,45685
,4,8713,129495
,4,8722,129500
,4,8730,125
,4,8731,11600
,4,8736,12070
,4,8737,129505
,4,8752,45750
,4,8755,9615
,4,8761,45780
,4,8772,129510
,4,8775,45790
,4,8787,3750
,4,8804,35790
,4,8806,5775
,4,8810,42265
,4,8828,129515
,4,8833,45880
,4,8835,45885
,4,8836,12040
,4,8837,42275
,4,8838,22125
,4,8839,42285
,4,8840,31930
,4,8846,6720
,4,8850,23420
,4,8852,39355
,4,8856,5670
,4,8857,42330
,4,8864,129520
,4,8868,32240
,4,8881,17565
,4,8891,4095
,4,8898,16695
,4,8902,5520
,4,8908,129525
,4,8910,16645
,4,8927,26865
,4,8965,129530
,4,8968,42545
,4,8971,5320
,4,8972,16865
,4,8979,29185
,4,8984,46115
,4,9000,46140
,4,9007,46165
,4,9009,21330
,4,9011,129535
,4,9013,46225
,4,9014,6900
,4,9016,46205
,4,9017,46220
,4,9025,129540
,4,9029,8190
,4,9037,32340
,4,9038,46255
,4,9044,46265
,4,9048,18060
,4,9063,37305
,4,9065,6860
,4,9079,8670
,4,9083,46315
,4,9087,35730
,4,9088,35690
,4,9094,11675
,4,9095,19220
,4,9099,29960
,4,9101,7925
,4,9108,129545
,4,9113,129550
,4,9123,6985
,4,9138,30910
,4,9147,46450
,4,9148,46465
,4,9161,8090
,4,9183,17455
,4,9184,46515
,4,9186,7030
,4,9194,46535
,4,9195,129555
,4,9196,9655
,4,9198,129560
,4,9202,129565
,4,9206,6790
,4,9214,129570
,4,9216,46570
,4,9219,10510
,4,9228,44800
,4,9235,44815
,4,9237,129575
,4,9245,8640
,4,9248,42160
,4,9252,33145
,4,9257,44835
,4,9266,29180
,4,9278,7795
,4,9283,7985
,4,9297,42230
,4,9300,44915
,4,9303,35805
,4,9321,5340
,4,9327,44955
,4,9342,129580
,4,9351,12235
,4,9353,42295
,4,9356,42305
,4,9360,129585
,4,9380,43455
,4,9392,129590
,4,9394,129595
,4,9395,6650
,4,9397,28320
,4,9419,6580
,4,9422,129600
,4,9426,4175
,4,9432,45155
,4,9433,10365
,4,9435,16700
,4,9450,129605
,4,9461,1570
,4,9466,10710
,4,9469,29120
,4,9496,23440
,4,9533,30070
,4,9542,45330
,4,9554,26565
,4,9563,36675
,4,9565,32130
,4,9567,21345
,4,9575,31520
,4,9580,9075
,4,9582,5755
,4,9585,7565
,4,9597,29040
,4,9601,129610
,4,9618,11260
,4,9637,37195
,4,9644,32285
,4,9647,45505
,4,9652,4140
,4,9667,45570
,4,9696,35705
,4,9705,45635
,4,9709,129615
,4,9738,5855
,4,9741,11300
,4,9752,28120
,4,9754,129620
,4,9756,129625
,4,9758,45725
,4,9782,129630
,4,9785,23350
,4,9787,25955
,4,9788,29795
,4,9794,26485
,4,9804,34750
,4,9806,11415
,4,9807,4910
,4,9812,129635
,4,9819,9260
,4,9820,15660
,4,9821,5605
,4,9822,4385
,4,9831,11230
,4,9837,42270
,4,9844,129640
,4,9859,5230
,4,9877,129645
,4,9880,6620
,4,9886,35695
,4,9892,45930
,4,9903,129650
,4,9905,36505
,4,9909,41680
,4,9921,3630
,4,9924,12060
,4,9933,45995
,4,9940,31950
,4,9945,46010
,4,9953,42510
,4,9955,10625
,4,9961,22615
,4,9963,43185
,4,9966,16870
,4,9973,16610
,4,9981,46085
,4,9983,32230
,4,9987,10760
,4,9989,42540
,4,9995,11425
,4,9998,33660
,4,10003,31275
,4,10013,5735
,4,10032,42605
,4,10033,46175
,4,10034,28695
,4,10036,42620
,4,10037,129655
,4,10042,129660
,4,10051,6770
,4,10079,42715
,4,10085,129665
,4,10089,46295
,4,10091,46300
,4,10096,12560
,4,10097,7375
,4,10099,129670
,4,10108,23235
,4,10134,8220
,4,10135,26205
,4,10140,42815
,4,10144,46385
,4,10157,46400
,4,10167,46435
,4,10168,10390
,4,10169,7755
,4,10185,5785
,4,10187,28510
,4,10200,8135
,4,10212,42880
,4,10213,11420
,4,10214,7630
,4,10216,46530
,4,10239,46565
,4,10242,28365
,4,10253,44805
,4,10262,11860
,4,10264,44820
,4,10269,28380
,4,10291,44850
,4,10297,7450
,4,10314,33655
,4,10319,44910
,4,10320,25995
,4,10330,32900
,4,10350,44935
,4,10356,28105
,4,10365,129675
,4,10368,44990
,4,10375,129680
,4,10391,19605
,4,10402,129685
,4,10411,260
,4,10413,42360
,4,10424,42400
,4,10431,31935
,4,10436,9735
,4,10438,42465
,4,10439,19900
,4,10459,10740
,4,10467,31635
,4,10505,45250
,4,10517,4395
,4,10571,33025
,4,10574,129690
,4,10580,45365
,4,10593,39130
,4,10600,42725
,4,10601,129695
,4,10607,15210
,4,10622,9115
,4,10625,45425
,4,10632,45440
,4,10633,21580
,4,10638,4050
,4,10652,42810
,4,10655,45490
,4,10669,4515
,4,10684,23110
,4,10685,21610
,4,10693,3825
,4,10695,32290
,4,10704,21525
,4,10709,9140
,4,10712,9310
,4,10714,6960
,4,10715,9125
,4,10720,45610
,4,10728,27025
,4,10731,5490
,4,10732,45650
,4,10734,42895
,4,10758,42115
,4,10766,10570
,4,10774,37275
,4,10781,129700
,4,10784,42175
,4,10788,129705
,4,10791,8210
,4,10793,45745
,4,10796,10925
,4,10804,285
,4,10809,129710
,4,10815,42210
,4,10816,23505
,4,10819,38380
,4,10822,31735
,4,10825,9065
,4,10832,7050
,4,10837,33675
,4,10838,8800
,4,10840,129715
,4,10846,21515
,4,10847,21680
,4,10850,129720
,4,10851,35055
,4,10859,45845
,4,10860,26515
,4,10867,8705
,4,10868,45855
,4,10871,129725
,4,10879,11250
,4,10880,129730
,4,10887,42290
,4,10889,42320
,4,10893,31505
,4,10895,42310
,4,10898,32225
,4,10905,45910
,4,10918,7855
,4,10925,11340
,4,10936,21650
,4,10948,45980
,4,10960,18500
,4,10973,24455
,4,10986,24685
,4,10988,8520
,4,10989,129735
,4,10990,42520
,4,11005,129740
,4,11007,5870
,4,11014,16600
,4,11029,5160
,4,11033,37325
,4,11040,129745
,4,11051,18065
,4,11052,26015
,4,11058,46185
,4,11061,31940
,4,11072,46230
,4,11073,38375
,4,11104,46280
,4,11108,35685
,4,11119,32265
,4,11120,21320
,4,11134,33620
,4,11139,43465
,4,11149,129750
,4,11150,129755
,4,11154,129760
,4,11157,4400
,4,11159,33040
,4,11161,46365
,4,11164,46375
,4,11179,35000
,4,11208,32120
,4,11217,12265
,4,11219,46475
,4,11228,129765
,4,11243,11660
,4,11245,9350
,4,11256,129770
,4,11261,129775
,4,11270,5730
,4,11277,38400
,4,11278,39345
,4,11280,129780
,4,11284,129785
,4,11295,26835
,4,11297,10550
,4,11299,22935
,4,11301,11965
,4,11307,34370
,4,11327,42205
,4,11336,44880
,4,11337,10385
,4,11351,35660
,4,11355,129790
,4,11365,31245
,4,11367,129795
,4,11385,44970
,4,11390,32105
,4,11395,45000
,4,11414,129800
,4,11426,129805
,4,11439,33365
,4,11442,17445
,4,11444,19765
,4,11445,25830
,4,11446,12080
,4,11450,42405
,4,11454,90
,4,11458,31615
,4,11468,45125
,4,11471,129810
,4,11472,7895
,4,11479,19845
,4,11480,38365
,4,11493,45175
,4,11497,129815
,4,11505,129820
,4,11521,129825
,4,11524,129830
,4,11527,9370
,4,11534,9725
,4,11543,26495
,4,11554,45290
,4,11577,28015
,4,11590,35725
,4,11599,45355
,4,11625,41245
,4,11655,18825
,4,11659,9060
,4,11665,9845
,4,11672,45470
,4,11673,32335
,4,11684,5180
,4,11687,4340
,4,11693,10475
,4,11697,39280
,4,11699,45515
,4,11700,45520
,4,11701,38110
,4,11702,9625
,4,11769,12130
,4,11782,105
,4,11793,42140
,4,11797,19260
,4,11810,12160
,4,11814,10470
,4,11815,28295
,4,11819,129835
,4,11839,23380
,4,11859,42240
,4,11862,9495
,4,11870,42260
,4,11874,45825
,4,11878,9520
,4,11882,45840
,4,11890,129840
,4,11898,5715
,4,11915,45895
,4,11916,30090
,4,11922,129845
,4,11924,630
,4,11928,129850
,4,11938,45925
,4,11939,3780
,4,11947,45940
,4,11968,45965
,4,11969,45970
,4,11971,28330
,4,11973,42445
,4,11975,7035
,4,11976,31270
,4,11982,25965
,4,11983,4250
,4,11984,42485
,4,11986,9105
,4,11990,35670
,4,12001,10615
,4,12002,46030
,4,12004,129855
,4,12012,46050
,4,12014,11435
,4,12025,4990
,4,12035,35665
,4,12043,129860
,4,12051,10860
,4,12064,46120
,4,12065,46125
,4,12066,31285
,4,12093,129865
,4,12096,42655
,4,12100,39160
,4,12104,46240
,4,12105,5210
,4,12107,43470
,4,12108,29565
,4,12111,8715
,4,12112,42680
,4,12118,4920
,4,12137,32210
,4,12156,32185
,4,12158,46320
,4,12163,46335
,4,12173,42790
,4,12194,11515
,4,12196,129870
,4,12204,35050
,4,12219,46445
,4,12220,37260
,4,12230,7055
,4,12246,10540
,4,12253,28335
,4,12257,10565
,4,12260,4370
,4,12275,24610
,4,12286,22625
,4,12290,42925
,4,12292,129875
,4,12293,44790
,4,12294,42110
,4,12296,9110
,4,12297,42120
,4,12298,4230
,4,12326,23265
,4,12334,21670
,4,12344,22225
,4,12363,44895
,4,12367,10545
,4,12368,3720
,4,12381,9010
,4,12399,44945
,4,12400,35020
,4,12414,4435
,4,12429,7430
,4,12436,37190
,4,12437,42325
,4,12445,11395
,4,12450,18750
,4,12453,30865
,4,12469,42455
,4,12477,290
,4,12494,45130
,4,12496,45135
,4,12500,4525
,4,12509,33150
,4,12521,32180
,4,12523,19395
,4,12537,8085
,4,12538,26595
,4,12545,12270
,4,12546,41105
,4,12548,9040
,4,12556,22245
,4,12564,45270
,4,12573,19330
,4,12582,9400
,4,12596,41230
,4,12601,45305
,4,12609,3855
,4,12611,5910
,4,12621,129880
,4,12625,32190
,4,12628,31925
,4,12629,42685
,4,12630,45370
,4,12647,129885
,4,12648,5850
,4,12664,42745
,4,12666,129890
,4,12675,45430
,4,12682,32175
,4,12685,9715
,4,12689,5760
,4,12690,129895
,4,12693,28760
,4,12695,5860
,4,12697,42805
,4,12703,129900
,4,12704,45495
,4,12713,19725
,4,12728,19020
,4,12735,29570
,4,12741,45575
,4,12748,10605
,4,12751,42875
,4,12755,45590
,4,12757,22985
,4,12763,11655
,4,12789,8115
,4,12805,45675
,4,12813,45700
,4,12830,7875
,4,12835,129905
,4,12839,5460
,4,12851,45770
,4,12852,129910
,4,12862,8840
,4,12863,42200
,4,12872,36380
,4,12877,3765
,4,12883,24625
,4,12891,9865
,4,12904,10850
,4,12915,32345
,4,12916,9050
,4,12923,11350
,4,12924,9765
,4,12933,45890
,4,12934,10600
,4,12943,129915
,4,12945,28115
,4,12962,129920
,4,12965,35260
,4,12971,129925
,4,12974,45945
,4,12977,35740
,4,13003,42480
,4,13011,10950
,4,13012,11475
,4,13019,46015
,4,13021,21070
,4,13022,10485
,4,13024,46020
,4,13025,129930
,4,13027,43530
,4,13029,12295
,4,13035,8530
,4,13045,10495
,4,13069,32195
,4,13078,129935
,4,13079,42565
,4,13097,6995
,4,13100,42600
,4,13126,300
,4,13133,7710
,4,13143,31945
,4,13150,37240
,4,13168,129940
,4,13169,32870
,4,13177,3810
,4,13178,24615
,4,13181,9250
,4,13185,129945
,4,13187,10585
,4,13189,19250
,4,13190,30535
,4,13205,30870
,4,13206,21395
,4,13207,129950
,4,13209,129955
,4,13214,41220
,4,13223,129960
,4,13229,46430
,4,13230,46405
,4,13231,46410
,4,13235,24660
,4,13244,24630
,4,13246,28625
,4,13253,1480
,4,13259,22050
,4,13272,1235
,4,13279,46505
,4,13291,18055
,4,13302,3975
,4,13304,42915
,4,13317,10650
,4,13320,7000
,4,13332,8960
,4,13333,43495
,4,13337,8720
,4,13345,44830
,4,13346,129965
,4,13349,29845
,4,13352,16590
,4,13358,23310
,4,13360,6630
,4,13363,10045
,4,13373,44875
,4,13377,5250
,4,13387,44890
,4,13388,6660
,4,13390,44905
,4,13396,31510
,4,13403,7845
,4,13408,11130
,4,13417,6730
,4,13419,44930
,4,13430,10900
,4,13445,26435
,4,13466,45060
,4,13469,5625
,4,13472,29550
,4,13477,5500
,4,13482,45080
,4,13483,129970
,4,13484,19705
,4,13499,129975
,4,13504,11110
,4,13505,21250
,4,13515,11630
,4,13525,8920
,4,13530,4360
,4,13531,19805
,4,13539,15160
,4,13549,129980
,4,13559,45220
,4,13570,38370
,4,13573,10780
,4,13574,10670
,4,13575,45245
,4,13584,28275
,4,13585,34755
,4,13595,42570
,4,13603,24695
,4,13607,129985
,4,13617,29455
,4,13619,43120
,4,13621,21270
,4,13628,129990
,4,13631,37330
,4,13640,28800
,4,13641,10515
,4,13653,129995
,4,13654,28095
,4,13666,19300
,4,13668,5070
,4,13682,42735
,4,13688,130000
,4,13707,36720
,4,13710,45460
,4,13721,8510
,4,13751,45530
,4,13753,11550
,4,13754,35760
,4,13757,20340
,4,13758,12185
,4,13767,130005
,4,13772,10690
,4,13788,130010
,4,13793,5350
,4,13794,6940
,4,13802,42890
,4,13803,34760
,4,13811,30345
,4,13831,12290
,4,13869,25945
,4,13874,8700
,4,13878,45775
,4,13879,130015
,4,13895,45785
,4,13899,45800
,4,13900,31610
,4,13902,42225
,4,13903,7815
,4,13908,4840
,4,13916,18600
,4,13917,7700
,4,13930,45835
,4,13931,37370
,4,13946,130020
,4,13948,43200
,4,13955,5720
,4,13956,19200
,4,13967,5865
,4,13977,130025
,4,13978,17370
,4,14004,10790
,4,14005,37365
,4,14006,38585
,4,14011,42415
,4,14013,10810
,4,14015,32300
,4,14016,45975
,4,14022,130030
,4,14026,22055
,4,14035,28445
,4,14040,15230
,4,14048,19695
,4,14059,5050
,4,14060,26055
,4,14068,37335
,4,14079,24720
,4,14081,42530
,4,14082,18900
,4,14083,23230
,4,14088,28505
,4,14101,23555
,4,14114,46130
,4,14115,130035
,4,14116,19615
,4,14118,46135
,4,14120,8005
,4,14130,46180
,4,14131,130040
,4,14135,130045
,4,14136,46210
,4,14145,11470
,4,14147,5550
,4,14154,5240
,4,14196,33635
,4,14197,11960
,4,14200,46305
,4,14207,46325
,4,14226,42800
,4,14233,46360
,4,14234,130050
,4,14251,19835
,4,14257,42845
,4,14258,9380
,4,14270,46455
,4,14271,46460
,4,14274,5880
,4,14276,145
,4,14303,130055
,4,14311,18700
,4,14312,5120
,4,14314,130060
,4,14328,29295
,4,14351,11070
,4,14370,19720
,4,14376,4780
,4,14378,8245
,4,14379,15200
,4,14387,130065
,4,14393,130070
,4,14397,9635
,4,14399,37295
,4,14404,23495
,4,14410,37375
,4,14412,44900
,4,14415,19655
,4,14433,130075
,4,14434,44920
,4,14435,5810
,4,14437,9450
,4,14444,21260
,4,14447,44940
,4,14478,35735
,4,14480,11540
,4,14483,45045
,4,14498,23545
,4,14509,43475
,4,14512,15655
,4,14516,42385
,4,14520,8045
,4,14522,42435
,4,14523,5645
,4,14525,22955
,4,14539,5780
,4,14553,26845
,4,14565,130080
,4,14572,45185
,4,14577,45195
,4,14592,130085
,4,14597,5805
,4,14602,15165
,4,14607,130090
,4,14608,11640
,4,14610,9270
,4,14611,42560
,4,14612,11635
,4,14619,8080
,4,14628,130095
,4,14633,26545
,4,14641,42610
,4,14642,42615
,4,14650,45315
,4,14668,36490
,4,14670,45350
,4,14671,45360
,4,14672,130100
,4,14681,29200
,4,14686,8725
,4,14687,5480
,4,14691,5745
,4,14703,130105
,4,14707,4065
,4,14734,130110
,4,14736,42795
,4,14740,24620
,4,14743,11290
,4,14744,37185
,4,14750,4940
,4,14754,130115
,4,14757,32250
,4,14758,33600
,4,14765,20060
,4,14771,130120
,4,14777,19270
,4,14784,19340
,4,14791,11080
,4,14795,26505
,4,14796,24435
,4,14807,10325
,4,14819,43175
,4,14821,37200
,4,14829,5835
,4,14831,18650
,4,14837,21350
,4,14841,45665
,4,14862,45695
,4,14871,12575
,4,14872,130125
,4,14875,205
,4,14884,4300
,4,14885,130130
,4,14911,33370
,4,14922,130135
,4,14923,45795
,4,14930,45805
,4,14936,32350
,4,14951,5300
,4,14959,130140
,4,14964,130145
,4,14974,130150
,4,14978,130155
,4,14980,34445
,4,14983,27495
,4,14988,11360
,4,14993,20325
,4,14997,28530
,4,14998,32275
,4,15005,7010
,4,15009,4035
,4,15016,4500
,4,15028,11210
,4,15029,10500
,4,15032,11370
,4,15035,42410
,4,15049,45990
,4,15080,46035
,4,15083,8230
,4,15088,26995
,4,15091,29820
,4,15093,130160
,4,15100,46080
,4,15111,9540
,4,15113,37205
,4,15117,7470
,4,15121,130165
,4,15124,46105
,4,15141,12285
,4,15142,5110
,4,15151,46170
,4,15152,9095
,4,15161,24715
,4,15165,42630
,4,15167,42635
,4,15170,9240
,4,15183,130170
,4,15201,22940
,4,15213,9130
,4,15228,30890
,4,15229,11100
,4,15231,35800
,4,15232,130175
,4,15233,39275
,4,15234,29935
,4,15242,42780
,4,15243,130180
,4,15244,8105
,4,15269,42825
,4,15270,16595
,4,15277,10675
,4,15281,21590
,4,15286,28945
,4,15287,7935
,4,15312,37345
,4,15321,46490
,4,15325,26465
,4,15329,19635
,4,15332,17495
,4,15333,46525
,4,15337,27005
,4,15339,5875
,4,15344,46555
,4,15352,9135
,4,15360,46575
,4,15371,20450
,4,15395,990
,4,15396,275
,4,15452,23305
,4,15456,26045
,4,15459,37290
,4,15461,3945
,4,15465,18775
,4,15472,130185
,4,15474,11050
,4,15482,295
,4,15484,130190
,4,15507,6930
,4,15509,28930
,4,15517,130195
,4,15523,43555
,4,15524,18525
,4,15541,42390
,4,15542,9100
,4,15545,30005
,4,15548,130200
,4,15549,45105
,4,15551,8015
,4,15552,34770
,4,15553,42440
,4,15565,9530
,4,15568,42490
,4,15569,5130
,4,15570,33595
,4,15577,3840
,4,15580,130205
,4,15581,130210
,4,15586,31910
,4,15601,45210
,4,15617,6760
,4,15622,45240
,4,15625,45255
,4,15647,130215
,4,15683,45320
,4,15706,33680
,4,15709,24690
,4,15730,38830
,4,15744,11645
,4,15766,33580
,4,15796,31895
,4,15806,19815
,4,15808,42865
,4,15809,4320
,4,15819,32150
,4,15821,130220
,4,15825,6980
,4,15863,4195
,4,15867,8225
,4,15869,11525
,4,15871,5905
,4,15901,42145
,4,15904,9440
,4,15905,42185
,4,15906,42170
,4,15909,37300
,4,15910,45730
,4,15913,130225
,4,15924,26005
,4,15930,130230
,4,15933,130235
,4,15955,45810
,4,15960,42255
,4,15963,43520
,4,15982,23360
,4,15988,130240
,4,15989,8250
,4,15990,45860
,4,15992,115
,4,15999,130245
,4,16000,130250
,4,16001,130255
,4,16003,32115
,4,16007,130260
,4,16009,19595
,4,16010,26585
,4,16012,130265
,4,16013,9300
,4,16014,23085
,4,16018,28055
,4,16032,20335
,4,16037,24655
,4,16046,33690
,4,16052,37225
,4,16053,130270
,4,16071,7545
,4,16087,11405
,4,16093,9045
,4,16104,130275
,4,16114,9120
,4,16115,37230
,4,16119,130280
,4,16120,19795
,4,16125,8590
,4,16150,4830
,4,16151,5765
,4,16160,10620
,4,16167,38355
,4,16173,46160
,4,16174,8870
,4,16176,130285
,4,16179,41120
,4,16195,29910
,4,16197,10935
,4,16207,31450
,4,16217,130290
,4,16218,46275
,4,16224,130295
,4,16231,46290
,4,16234,23215
,4,16240,34745
,4,16242,10980
,4,16247,130300
,4,16259,11510
,4,16267,30325
,4,16269,46340
,4,16271,37340
,4,16275,19880
,4,16299,5740
,4,16306,42850
,4,16313,130305
,4,16320,6570
,4,16321,9825
,4,16331,130310
,4,16343,23535
,4,16348,46495
,4,16354,9485
,4,16357,42885
,4,16362,19160
,4,16363,46540
,4,16371,16580
,4,16374,33035
,4,3,21345
,4,5,130320
,4,6,30825
,4,8,130325
,4,9,4665
,4,11,130330
,4,12,30840
,4,14,130335
,4,15,30850
,4,17,130340
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,4,3,21345
,4,5,130350
,4,6,30825
,4,8,130355
,4,9,4665
,4,11,130360
,4,12,30840
,4,14,130365
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,4,3,21345
,4,5,130375
,4,6,30825
,4,8,130380
,4,9,4665
,4,11,130385
,4,12,30840
,4,14,130390
,4,15,30850
,4,17,130395
,4,18,9775
,4,20,1740
,4,21,129595
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,4,3,21345
,4,5,30820
,4,6,30825
,4,8,30830
,4,9,4665
,4,11,30835
,4,12,30840
,4,14,30845
,4,15,30850
,4,17,30855
,4,18,130000
,4,3,21345
,4,5,130410
,4,6,30825
,4,8,130415
,4,9,4665
,4,11,585
,4,12,30840
,4,14,600
,4,15,30850
,4,17,130420
,3,19529,135065
,3,19529,135065
,3,19529,135065
,4,3,21345
,4,5,130430
,4,6,30825
,4,8,130435
,4,9,4665
,4,11,605
,4,12,30840
,4,14,610
,3,19529,135065
,3,19529,135065
,4,3,21345
,4,5,130445
,4,6,30825
,4,8,130450
,4,9,4665
,4,11,615
,4,12,30840
,4,14,620
,4,15,30850
,4,17,130455
,3,19529,135065
,3,19529,135065
,3,19529,135065
,4,3,21345
,4,5,130375
,4,6,30825
,4,8,130380
,4,9,4665
,4,11,130385
,4,12,30840
,4,14,130390
,4,15,30850
,4,17,130395
,3,19544,430
,3,19546,350
,3,19545,130470
,3,19529,142500
,4,3,16520
,3,19668,690
,3,19668,695
,3,19668,700
,3,19668,705
,3,19668,710
,3,19668,715
,3,19668,720
,3,19668,725
,3,19668,730
,3,19668,735
,3,19668,740
,3,19668,745
,3,19668,750
,3,19668,755
,3,19668,95
,3,19668,760
,3,19668,725
,3,19668,765
,3,19668,770
,3,19668,775
,3,19668,780
,3,19668,785
,3,19668,790
,3,19668,795
,3,19668,800
,3,19668,535
,3,19668,805
,3,19668,810
,3,19668,815
,3,19668,820
,3,19668,825
,3,19668,830
,3,19668,350
,3,19668,835
,3,19668,840
,3,19668,845
,3,19668,850
,3,19668,855
,3,19668,860
,3,19668,865
,3,19668,870
,3,19668,875
,3,19668,880
,3,19668,885
,3,19668,890
,3,19668,895
,3,19668,900
,3,19668,905
,3,19668,910
,3,19668,915
,3,19668,920
,3,19668,925
,3,19668,930
,3,19668,935
,3,19668,940
,3,19668,945
,3,19668,950
,3,19668,955
,3,19668,960
,3,19668,965
,3,19668,725
,4,3,16520
,4,5,995
,3,19544,430
,3,19546,350
,3,19545,130840
,3,19529,142500
,4,3,16520
,4,3,16695
,4,6,990
,4,9,129465
,4,12,130240
,4,15,130245
,3,19544,430
,3,19546,845
,3,19545,133755
,3,19529,142500
,4,3,21345
,4,6,130045
,4,2,130875
,3,19544,430
,3,19546,1460
,3,19662,1455
,4,2,39730
,3,19547,130880
,3,19545,130865
,3,19529,142500
,4,1,1455
,4,2,39730
,4,3,21345
,4,6,130045
,4,3,21345
,4,6,130045
,4,8,1465
,4,9,30840
,4,11,1470
,4,3,16520
,4,5,1485
,3,19544,430
,3,19546,350
,3,19545,130895
,3,19529,142500
,4,3,16520
,4,5,1510
,3,19544,430
,3,19546,350
,3,19545,130905
,3,19529,142500
,4,3,16520
,4,5,1535
,3,19544,430
,3,19546,350
,3,19545,130915
,3,19529,142500
,3,19668,960
,3,19668,375
,3,19668,1585
,3,19668,1590
,3,19668,1595
,3,19668,1600
,3,19668,800
,3,19668,1605
,3,19668,1610
,3,19668,1615
,3,19668,1620
,3,19668,1625
,3,19668,935
,3,19668,1630
,3,19668,1635
,3,19668,1640
,3,19668,1250
,3,19668,1645
,3,19668,685
,3,19668,1650
,3,19668,1655
,3,19668,1660
,3,19668,1665
,3,19668,1670
,3,19668,1425
,3,19668,1260
,3,19668,1675
,3,19668,1680
,3,19668,1685
,3,19668,865
,3,19668,1690
,3,19668,1695
,3,19668,1700
,3,19668,1705
,3,19668,1710
,3,19668,1335
,3,19668,1715
,3,19668,1720
,3,19668,535
,3,19668,495
,3,19668,1725
,3,19668,1730
,3,19668,1735
,3,19668,1740
,3,19668,1745
,3,19668,875
,3,19668,1750
,3,19668,1755
,3,19668,365
,3,19668,1760
,3,19668,1765
,3,19668,1770
,3,19668,1775
,3,19668,1780
,3,19668,1785
,3,19668,1790
,3,19668,1795
,3,19668,380
,3,19668,1800
,3,19668,730
,3,19668,1805
,3,19668,1210
,3,19668,1810
,3,19668,1815
,3,19668,1820
,3,19668,1825
,3,19668,1830
,3,19668,95
,3,19668,415
,3,19668,880
,3,19668,1835
,3,19668,1840
,3,19668,885
,3,19668,1845
,3,19668,1850
,3,19668,1855
,3,19668,1860
,3,19668,1865
,3,19668,1125
,3,19668,1870
,3,19668,1875
,3,19668,1880
,3,19668,1885
,3,19668,1890
,3,19668,1895
,3,19668,1900
,3,19668,1905
,3,19668,1910
,3,19668,505
,3,19668,1915
,3,19668,1920
,3,19668,1925
,3,19668,1930
,3,19668,1935
,3,19668,405
,3,19668,1940
,3,19668,1945
,3,19668,1950
,3,19668,1955
,3,19668,1960
,3,19668,1965
,3,19668,750
,3,19668,1970
,3,19668,970
,3,19668,1975
,3,19668,1980
,3,19668,1985
,3,19668,1990
,3,19668,1995
,3,19668,2000
,3,19668,2005
,3,19668,360
,3,19668,2010
,3,19668,2015
,3,19668,2020
,3,19668,2025
,3,19668,945
,3,19668,2030
,3,19668,2035
,3,19668,2040
,3,19668,855
,3,19668,2045
,3,19668,2050
,3,19668,2055
,3,19668,2060
,3,19668,2065
,3,19668,2070
,3,19668,2075
,3,19668,2080
,3,19668,2085
,3,19668,2090
,3,19668,2095
,3,19668,2100
,3,19668,2105
,3,19668,540
,3,19668,2110
,3,19668,2115
,3,19668,2120
,3,19668,910
,3,19668,845
,3,19668,890
,3,19668,940
,3,19668,470
,3,19668,2125
,3,19668,2130
,3,19668,2135
,3,19668,395
,3,19668,2140
,3,19668,480
,3,19668,2145
,3,19668,2150
,3,19668,2155
,3,19668,2160
,3,19668,2165
,3,19668,2170
,3,19668,735
,3,19668,2175
,3,19668,2180
,3,19668,2185
,3,19668,2190
,3,19668,2195
,3,19668,2200
,3,19668,2205
,3,19668,2210
,3,19668,485
,3,19668,2215
,3,19668,2220
,3,19668,2225
,3,19668,2230
,3,19668,2235
,3,19668,2240
,3,19668,2245
,3,19668,2250
,3,19668,2255
,3,19668,2260
,3,19668,2265
,3,19668,2270
,3,19668,2275
,3,19668,2280
,3,19668,2285
,3,19668,1330
,3,19668,2290
,3,19668,2295
,3,19668,2300
,3,19668,2305
,3,19668,2310
,3,19668,2315
,3,19668,2320
,3,19668,2325
,3,19668,2330
,3,19668,2335
,3,19668,2340
,3,19668,2345
,3,19668,2350
,3,19668,2355
,3,19668,2360
,3,19668,2365
,3,19668,2370
,3,19668,2375
,3,19668,2380
,3,19668,2385
,3,19668,2390
,3,19668,410
,3,19668,2395
,3,19668,2400
,3,19668,2405
,3,19668,2410
,3,19668,2415
,3,19668,2420
,3,19668,2425
,3,19668,2430
,3,19668,2435
,3,19668,2440
,3,19668,385
,3,19668,545
,3,19668,2445
,3,19668,2450
,3,19668,2455
,3,19668,2460
,3,19668,2465
,3,19668,390
,3,19668,2470
,3,19668,2475
,3,19668,2480
,3,19668,2485
,3,19668,2490
,3,19668,2495
,3,19668,2500
,3,19668,2505
,3,19668,2510
,3,19668,2515
,3,19668,2520
,3,19668,2525
,3,19668,1320
,3,19668,2530
,3,19668,2535
,3,19668,2540
,3,19668,2545
,3,19668,2550
,3,19668,2555
,3,19668,2560
,3,19668,2565
,3,19668,2570
,3,19668,2575
,3,19668,2580
,3,19668,2585
,3,19668,2590
,3,19668,820
,3,19668,2595
,3,19668,500
,3,19668,2600
,3,19668,2605
,3,19668,2610
,3,19668,840
,3,19668,2615
,3,19668,2620
,3,19668,850
,3,19668,2625
,3,19668,735
,3,19668,2630
,3,19668,2635
,3,19668,870
,3,19668,2640
,3,19668,2645
,3,19668,2650
,3,19668,2655
,3,19668,2660
,3,19668,2665
,3,19668,865
,3,19668,2670
,3,19668,2675
,3,19668,2680
,3,19668,2685
,3,19668,2690
,3,19668,2695
,3,19668,2700
,3,19668,2705
,3,19668,2710
,3,19668,2715
,3,19668,2720
,3,19668,2725
,3,19668,2730
,3,19668,2735
,3,19668,2740
,3,19668,2745
,3,19668,2750
,3,19668,2755
,3,19668,2760
,3,19668,2765
,3,19668,2770
,3,19668,2775
,3,19668,2780
,3,19668,2785
,3,19668,2790
,3,19668,2795
,3,19668,2800
,3,19668,2805
,3,19668,2810
,3,19668,2815
,3,19668,2820
,3,19668,2825
,3,19668,2130
,3,19668,2830
,3,19668,2835
,3,19668,2840
,3,19668,2845
,3,19668,2850
,3,19668,2855
,3,19668,2860
,3,19668,1255
,3,19668,2865
,3,19668,2870
,3,19668,2875
,3,19668,400
,3,19668,2880
,3,19668,2885
,3,19668,2890
,3,19668,2895
,3,19668,2900
,3,19668,2905
,3,19668,2910
,3,19668,2915
,3,19668,2920
,3,19668,2925
,3,19668,2930
,3,19668,2935
,3,19668,2940
,3,19668,795
,3,19668,2945
,3,19668,2950
,3,19668,490
,3,19668,2955
,3,19668,460
,3,19668,2960
,3,19668,2965
,3,19668,2970
,3,19668,2975
,3,19668,2980
,3,19668,2985
,3,19668,895
,3,19668,2990
,3,19668,770
,3,19668,2005
,3,19668,2995
,3,19668,3000
,3,19668,3005
,3,19668,3010
,3,19668,3015
,3,19668,3020
,3,19668,3025
,3,19668,1130
,3,19668,3030
,3,19668,1430
,3,19668,3035
,3,19668,3040
,3,19668,3045
,3,19668,3050
,3,19668,965
,3,19668,3055
,3,19668,3060
,3,19668,475
,3,19668,3065
,3,19668,3070
,3,19668,3075
,3,19668,3080
,3,19668,3085
,3,19668,720
,3,19668,3090
,3,19668,3095
,3,19668,3100
,3,19668,3105
,3,19668,3110
,3,19668,3115
,3,19668,3120
,3,19668,3125
,3,19668,3130
,3,19668,3135
,3,19668,95
,3,19668,3140
,3,19668,3145
,3,19668,3150
,3,19668,3155
,3,19668,3160
,3,19668,3165
,3,19668,3170
,3,19668,1340
,3,19668,465
,3,19668,3175
,3,19668,3180
,3,19668,3185
,3,19668,420
,3,19668,3190
,3,19668,3195
,3,19668,3200
,3,19668,3205
,3,19668,1715
,3,19668,3210
,3,19668,3215
,3,19668,3220
,3,19668,3225
,3,19668,3230
,3,19668,3235
,3,19668,3240
,3,19668,3245
,3,19668,1065
,3,19668,355
,3,19668,3250
,3,19668,3255
,3,19668,3260
,3,19668,3265
,3,19668,3270
,3,19668,3275
,3,19668,3280
,3,19668,3285
,3,19668,350
,3,19668,3290
,3,19668,3295
,3,19668,370
,3,19668,3300
,3,19668,3305
,3,19668,3310
,3,19668,3315
,3,19668,3320
,3,19668,3325
,3,19668,3330
,3,19668,815
,3,19668,3335
,3,19668,3340
,3,19668,3345
,3,19668,3350
,3,19668,3355
,3,19668,3360
,3,19668,3365
,3,19668,3370
,4,3,16695
,4,5,133165
,4,6,30825
,4,8,133170
,4,9,16640
,4,11,133175
,4,12,129235
,4,14,133180
,4,15,128830
,4,17,133185
,4,18,129040
,4,20,133190
,4,21,28705
,4,23,133195
,4,24,128990
,4,26,133200
,4,27,129880
,4,29,133205
,4,30,129500
,4,32,133210
,4,33,129455
,4,35,133215
,4,36,129450
,4,38,133220
,4,39,129325
,4,41,133225
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,4,3,21345
,4,5,133235
,3,19529,135065
,4,3,21345
,4,5,133245
,3,19529,135065
,3,19544,430
,3,19546,895
,3,19545,133425
,3,19529,142500
,4,2,39655
,4,1,1080
,4,2,39770
,4,1,39655
,4,2,39775
,4,1,39770
,4,2,34480
,4,1,39775
,4,2,39765
,3,19544,430
,3,19546,855
,3,19545,133315
,3,19529,142500
,4,3,16520
,4,5,2950
,4,6,31895
,4,9,31900
,4,12,31905
,4,15,31910
,4,18,31915
,4,21,31920
,4,24,31925
,4,27,31930
,4,30,31935
,4,33,31940
,4,36,31945
,4,39,31950
,4,42,4890
,4,45,129190
,4,48,129565
,4,51,129245
,4,54,130310
,4,57,129785
,4,60,129320
,4,63,129735
,4,66,130165
,4,69,130025
,4,72,130175
,4,75,129370
,4,78,130290
,4,81,128840
,4,84,129105
,4,87,128935
,4,90,129265
,4,93,128960
,4,96,129615
,4,2,40350
,4,3,16520
,4,5,350
,4,6,4890
,4,8,460
,4,9,4900
,4,11,465
,4,12,4910
,4,14,470
,4,15,4920
,4,17,475
,4,18,4940
,4,20,480
,4,21,4950
,4,23,485
,4,24,4960
,4,26,490
,4,27,4980
,4,29,495
,4,30,4990
,4,32,500
,4,33,5000
,4,35,505
,4,3,21345
,4,5,130375
,4,6,30825
,4,8,130380
,4,9,4665
,4,11,130385
,4,12,30840
,4,14,130390
,4,15,30850
,4,17,130395
,4,18,5010
,4,20,355
,4,21,5360
,4,23,360
,4,24,5380
,4,26,365
,4,27,5420
,4,29,370
,4,30,5460
,4,32,375
,4,33,5320
,4,35,380
,4,36,5330
,4,38,385
,4,39,5350
,4,41,390
,4,42,5510
,4,44,395
,4,45,5500
,4,47,400
,4,48,5490
,4,50,405
,4,51,5480
,4,53,410
,4,54,5470
,4,56,415
,4,57,5450
,4,59,420
,4,3,16520
,4,5,855
,4,6,4890
,4,8,2455
,4,9,4910
,4,11,2225
,3,19544,430
,3,19546,820
,3,19545,133325
,3,19529,142500
,4,3,16520
,4,5,820
,4,6,4890
,4,8,2670
,4,9,4900
,4,11,2900
,4,12,4910
,4,14,3310
,4,15,5585
,4,17,3230
,4,18,5595
,4,20,2115
,4,21,5605
,4,23,2635
,4,3,21345
,4,5,130375
,4,6,30825
,4,8,130380
,4,9,4665
,4,11,130385
,4,12,30840
,4,14,130390
,4,15,30850
,4,17,130395
,4,18,129165
,4,21,128930
,4,24,129685
,4,27,129970
,4,30,129180
,4,33,4830
,4,35,1125
,4,36,4820
,4,38,1130
,4,3,21345
,4,5,130375
,4,6,30825
,4,8,130380
,4,9,4665
,4,11,130385
,4,12,30840
,4,14,130390
,4,15,30850
,4,17,130395
,4,18,6950
,4,20,1065
,4,3,7360
,4,5,3650
,4,6,7375
,4,8,3655
,4,9,7390
,4,11,7400
,4,12,7410
,4,14,7420
,4,15,7430
,4,17,7440
,4,18,7450
,4,20,7460
,4,21,7470
,4,23,7480
,4,2,41510
,4,4,33025
,4,5,33085
,4,6,35260
,4,7,35290
,4,8,7360
,4,9,133350
,4,10,31500
,4,11,32945
,4,12,29570
,4,13,39180
,4,14,30005
,4,15,39070
,4,16,38830
,4,17,39720
,4,18,34735
,4,19,34800
,4,20,39275
,4,21,133355
,4,22,31590
,4,23,133360
,4,24,33580
,4,25,33790
,3,19544,430
,3,19546,350
,3,19662,31135
,4,2,133370
,3,19547,133365
,3,19545,133340
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,31135
,4,2,39290
,3,19547,39285
,3,19545,39270
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,31135
,4,2,31600
,3,19547,31595
,3,19545,31585
,3,19529,142500
,4,1,31135
,4,2,133370
,3,19544,430
,3,19546,350
,3,19662,133350
,4,2,133380
,3,19547,133375
,3,19545,133340
,3,19529,142500
,4,1,133350
,4,2,133380
,3,19544,430
,3,19546,350
,3,19662,133370
,4,2,133390
,3,19547,133385
,3,19545,133340
,3,19529,142500
,4,1,133370
,4,2,133390
,3,19544,430
,3,19546,350
,3,19662,133380
,4,2,133400
,3,19547,133395
,3,19545,133340
,3,19529,142500
,4,1,133380
,4,2,133400
,3,19544,430
,3,19546,350
,3,19662,133390
,4,2,133410
,3,19547,133405
,3,19545,133340
,3,19529,142500
,4,1,133390
,4,2,133410
,3,19544,430
,3,19546,350
,3,19662,133400
,4,2,133420
,3,19547,133415
,3,19545,133340
,3,19529,142500
,4,1,133400
,4,2,133420
,3,19544,430
,3,19546,350
,3,19662,133410
,3,19545,133340
,3,19529,142500
,4,3,21345
,4,5,133245
,4,6,16520
,4,8,895
,4,9,4890
,4,11,3165
,4,12,4900
,4,14,2570
,4,15,6700
,4,17,2980
,4,18,7360
,4,20,3650
,4,21,7375
,4,23,3655
,4,24,7470
,4,26,7480
,4,27,6770
,4,29,1585
,4,30,7390
,4,32,7400
,4,33,7410
,4,35,7420
,4,36,7430
,4,38,7440
,4,39,7450
,4,41,7460
,4,42,6830
,4,44,2730
,4,45,6840
,4,47,2695
,4,48,6860
,4,50,3150
,4,51,6880
,4,53,3065
,4,54,6890
,4,56,2940
,4,57,6900
,4,59,3280
,4,60,6910
,4,62,2780
,4,63,6920
,4,65,1735
,4,66,6930
,4,68,1815
,4,69,6940
,4,71,2550
,4,3,6700
,4,5,2980
,4,6,7360
,4,8,3650
,4,9,7375
,4,11,3655
,4,3,21345
,4,5,133440
,3,19529,135065
,3,19546,350
,3,19545,133450
,3,19529,142500
,4,3,16520
,4,5,1880
,4,6,128865
,4,9,130060
,4,12,129925
,4,15,129820
,4,18,129700
,4,3,21345
,4,5,130375
,4,6,30825
,4,8,130380
,4,9,4665
,4,11,130385
,4,12,30840
,4,14,130390
,4,15,30850
,4,17,130395
,4,18,7895
,4,20,1210
,4,3,21345
,4,5,133440
,4,6,16520
,4,8,840
,4,9,4910
,4,11,2050
,4,12,4890
,4,14,2075
,4,15,7545
,4,17,1980
,4,18,7565
,4,20,3250
,4,21,7470
,4,23,2135
,4,24,6910
,4,26,2275
,4,27,6920
,4,29,3135
,4,30,7610
,4,32,1610
,4,33,7620
,4,35,2410
,4,36,7650
,4,38,2645
,4,39,7710
,4,41,3270
,4,42,7430
,4,44,2360
,4,45,7735
,4,47,2805
,4,48,7775
,4,50,1990
,4,51,7795
,4,53,3215
,4,54,7815
,4,56,1900
,4,57,7835
,4,59,1840
,4,60,7845
,4,62,2510
,4,63,7855
,4,65,2185
,4,66,7865
,4,68,3285
,4,69,7875
,4,71,2420
,4,72,7885
,4,74,3030
,4,75,7915
,4,77,2910
,4,78,7925
,4,80,2495
,4,81,7935
,4,83,2435
,4,84,7945
,4,86,3140
,4,87,7955
,4,89,2430
,4,90,7965
,4,92,2850
,4,93,7975
,4,95,2015
,4,96,7985
,4,98,2965
,4,99,7995
,4,101,1670
,4,102,8005
,4,104,2620
,4,105,8015
,4,107,2070
,4,108,8025
,4,110,2505
,4,111,8035
,4,113,1660
,4,3,16520
,4,5,2565
,3,19544,430
,3,19546,350
,3,19545,133465
,3,19529,142500
,4,3,40380
,4,3,129435
,4,6,129480
,4,9,129140
,4,12,130075
,4,15,130035
,4,18,130235
,4,21,129075
,4,24,129945
,4,27,8970
,4,29,2870
,4,30,8830
,4,32,2130
,4,33,8840
,4,35,2190
,4,36,8850
,4,38,2535
,4,39,8860
,4,41,3195
,4,42,8880
,4,44,1710
,4,45,8900
,4,47,3205
,4,48,8910
,4,50,1600
,4,51,8920
,4,53,2005
,4,54,8930
,4,56,1870
,4,57,8980
,4,59,2370
,4,60,8990
,4,62,3080
,4,63,9000
,4,65,3355
,4,66,9010
,4,68,2340
,4,69,8870
,4,71,2140
,4,72,8960
,4,74,2165
,4,75,8940
,4,77,2795
,4,78,8950
,4,80,1595
,4,3,16520
,4,5,2740
,4,6,16695
,4,9,30825
,4,12,129880
,4,15,129235
,4,18,128830
,4,21,130145
,4,24,129050
,4,27,129610
,4,29,2690
,4,30,129275
,4,32,2060
,4,33,129705
,4,35,3335
,4,36,130015
,4,38,1800
,4,39,129895
,4,41,1745
,4,42,129115
,4,44,2480
,4,45,129580
,4,47,1755
,3,19546,350
,3,19545,133495
,3,19529,142500
,4,3,16520
,4,5,2615
,4,6,16715
,4,9,28760
,4,12,129250
,4,15,128855
,4,18,23085
,4,21,28800
,4,24,129020
,4,26,2885
,4,27,129440
,4,29,3290
,3,19546,350
,3,19545,133505
,3,19529,142500
,4,3,16520
,4,5,2575
,4,6,16715
,4,9,129590
,4,12,129010
,4,15,129400
,4,18,129445
,4,21,129440
,4,23,2555
,3,19546,350
,3,19545,133515
,3,19529,142500
,4,3,16520
,4,5,1965
,4,6,130255
,4,9,128750
,4,12,28135
,4,15,128975
,4,17,2205
,4,18,129850
,4,20,3365
,4,21,129815
,4,23,2895
,4,24,130050
,4,26,1850
,4,27,128710
,4,29,2515
,4,30,129215
,4,32,2265
,4,33,130030
,4,35,1700
,4,36,128895
,4,38,1795
,4,39,129415
,4,41,3315
,4,42,129605
,4,44,2170
,4,45,130170
,4,47,2840
,4,48,129640
,4,50,3090
,4,51,130185
,4,53,1680
,4,54,130300
,4,56,2285
,4,57,129805
,4,59,2210
,4,60,4890
,4,62,2025
,0,486,795
,2,19076,425
,2,1484,430
,3,19539,10125
,3,19540,40400
,6,64,85
,3,19529,675
,4,1,10130
,4,2,10140
,3,19544,430
,3,19546,133520
,3,19545,133620
,3,19529,142500
,3,19544,425
,3,19662,133615
,3,19545,130370
,3,19529,142500
,3,19544,33445
,3,19546,795
,3,19547,133540
,3,19529,142500
,4,3,129740
,4,6,4665
,4,9,28705
,4,12,16520
,4,14,885
,4,15,30825
,4,2,41525
,4,3,129740
,4,6,4665
,4,9,28705
,4,12,16520
,4,14,730
,4,15,30825
,4,2,133565
,3,19544,33445
,3,19546,795
,3,19662,142745
,3,19545,133555
,3,19529,142500
,4,3,129740
,4,6,4665
,4,9,28705
,4,12,16520
,4,14,800
,4,15,30825
,4,2,41530
,4,3,129740
,4,6,4665
,4,9,28705
,4,12,16520
,4,14,890
,4,15,30825
,4,2,41535
,4,3,129740
,4,6,4665
,4,9,28705
,4,12,16520
,4,14,815
,4,15,30825
,4,2,41540
,4,3,129740
,4,6,4665
,4,9,28705
,4,12,16520
,4,14,910
,4,15,30825
,4,2,41545
,4,2,133615
,3,19544,425
,3,19662,675
,4,2,133530
,3,19547,133795
,3,19545,130370
,3,19529,142500
,4,3,16520
,4,5,795
,4,6,30825
,4,9,28255
,4,12,4890
,4,14,2585
,4,3,129740
,4,6,4665
,4,9,28705
,4,12,28255
,4,14,10260
,4,2,133635
,3,19544,39575
,3,19546,730
,3,19662,10035
,4,2,133645
,3,19547,133640
,3,19545,133625
,3,19529,142500
,4,1,10035
,4,2,133645
,3,19544,39575
,3,19546,730
,3,19662,133635
,4,2,133655
,3,19547,133650
,3,19545,133625
,3,19529,142500
,4,1,133635
,4,2,133655
,3,19544,39575
,3,19546,730
,3,19662,133645
,4,2,133675
,3,19547,133670
,3,19545,133625
,3,19529,142500
,4,1,133645
,4,2,133675
,3,19544,39575
,3,19546,730
,3,19662,133655
,4,2,39580
,3,19547,133685
,3,19545,133625
,3,19529,142500
,4,3,129740
,4,6,4665
,4,9,28705
,4,12,28255
,4,14,10270
,4,1,133655
,4,2,39580
,4,3,10470
,4,6,10475
,4,2,133700
,3,19544,430
,3,19546,350
,3,19662,39805
,4,2,39645
,3,19547,133705
,3,19545,133690
,3,19529,142500
,4,1,39805
,4,2,39645
,3,19544,430
,3,19546,880
,3,19545,133720
,3,19529,142500
,4,3,21345
,4,5,130375
,4,6,30825
,4,8,130380
,4,9,4665
,4,11,130385
,4,12,30840
,4,14,130390
,4,15,30850
,4,17,130395
,4,18,10730
,4,20,1250
,4,21,10860
,4,23,1255
,4,24,10875
,4,26,1260
,4,3,16520
,4,5,880
,4,6,4890
,4,8,2520
,4,9,10900
,4,11,3235
,4,12,10910
,4,14,2715
,4,15,4900
,4,17,3075
,4,18,10925
,4,20,3015
,4,21,10935
,4,23,2830
,4,24,4910
,4,26,1820
,4,27,10950
,4,29,3125
,4,30,10960
,4,32,2055
,4,33,10970
,4,35,2180
,4,36,10980
,4,38,2880
,4,39,10990
,4,41,2525
,4,42,11000
,4,44,3115
,4,45,11010
,4,47,3160
,4,48,11020
,4,50,2400
,4,51,11030
,4,53,2440
,4,54,11040
,4,56,3370
,4,57,11050
,4,59,2395
,4,60,11060
,4,62,1825
,4,63,11070
,4,65,2155
,4,66,11080
,4,68,2280
,4,69,11090
,4,71,1655
,4,72,11100
,4,74,1645
,4,75,11110
,4,77,2320
,4,78,11120
,4,80,1620
,4,81,11130
,4,83,2960
,4,84,11150
,4,86,3005
,4,87,11160
,4,89,2405
,4,90,11170
,4,92,3010
,4,93,11180
,4,95,2310
,4,96,11190
,4,98,2470
,4,99,11200
,4,101,1605
,4,102,11210
,4,104,2230
,4,105,11220
,4,107,2815
,4,108,11230
,4,110,1910
,4,111,11240
,4,113,2465
,4,114,11250
,4,116,1925
,4,117,11260
,4,119,2040
,4,120,11270
,4,122,2030
,4,123,11280
,4,125,2175
,4,126,11320
,4,128,1690
,4,129,11290
,4,131,2705
,4,132,11300
,4,134,2375
,4,135,11310
,4,137,3325
,4,138,11340
,4,140,1955
,4,141,11350
,4,143,3120
,4,3,10860
,4,5,1425
,4,6,11920
,4,8,1430
,4,3,16695
,4,6,990
,4,9,129465
,4,12,130240
,4,15,130245
,4,18,16520
,4,20,845
,4,21,12130
,4,23,3265
,4,24,12150
,4,26,2985
,4,27,4890
,4,29,2975
,4,30,12070
,4,32,2315
,4,3,21345
,4,5,130375
,4,6,30825
,4,8,130380
,4,9,4665
,4,11,130385
,4,12,30840
,4,14,130390
,4,15,30850
,4,17,130395
,4,18,128965
,4,20,12425
,4,21,129340
,4,23,12430
,4,24,129845
,4,26,12435
,4,27,130240
,4,29,12440
,4,30,128880
,4,32,12445
,4,33,130265
,4,35,12450
,4,36,130215
,4,38,12455
,4,39,129865
,4,41,12460
,4,42,130040
,4,44,12465
,4,45,130205
,4,47,12470
,4,48,130020
,4,50,12475
,4,51,129645
,4,53,12480
,4,54,129305
,4,56,12485
,4,57,130200
,4,59,12510
,4,60,129965
,4,62,12515
,4,63,129120
,4,65,12520
,4,66,129860
,4,68,12525
,4,69,128875
,4,71,12530
,4,72,128765
,4,74,12535
,4,75,129870
,4,77,12540
,4,78,130220
,4,80,12545
,4,81,129295
,4,83,12550
,4,3,21345
,4,5,133770
,4,6,30825
,4,8,133775
,4,9,4665
,4,11,133780
,4,12,30840
,4,14,133785
,4,15,16520
,4,17,535
,4,18,5660
,4,20,540
,4,21,4890
,4,23,545
,4,24,12560
,4,26,550
,4,27,12575
,4,29,555
,3,19529,135065
,3,19529,135065
,3,19529,135065
,3,19529,135065
,4,3,21345
,4,5,133245
,4,6,21350
,4,9,128965
,4,1,675
,4,2,133530
,3,19544,430
,3,19546,350
,3,19545,133805
,3,19529,142500
,4,3,16520
,4,5,12640
,4,3,130280
,4,6,129765
,4,9,128940
,4,12,130295
,4,15,130090
,4,18,128860
,4,21,129990
,4,24,128815
,4,2,41655
,4,3,40475
,4,4,29550
,4,5,41910
,4,6,22620
,4,7,133820
,4,8,34360
,4,9,34400
,4,10,130280
,4,11,133825
,4,12,34440
,4,13,133830
,4,14,16085
,4,15,133835
,4,16,35705
,4,17,35845
,4,18,18055
,4,19,133840
,4,20,31240
,4,21,32930
,3,19544,430
,3,19546,350
,3,19662,455
,4,2,133930
,3,19547,133925
,3,19545,133920
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,455
,4,2,133850
,3,19547,133845
,3,19545,133810
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,455
,4,2,34455
,3,19547,34450
,3,19545,34430
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,455
,4,2,31230
,3,19547,31225
,3,19545,31075
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19662,455
,4,2,32920
,3,19547,32915
,3,19545,32895
,3,19529,142500
,4,1,455
,4,2,133850
,3,19544,430
,3,19546,350
,3,19662,133825
,4,2,133860
,3,19547,133855
,3,19545,133810
,3,19529,142500
,4,1,133825
,4,2,133860
,3,19544,430
,3,19546,350
,3,19662,133850
,4,2,133870
,3,19547,133865
,3,19545,133810
,3,19529,142500
,4,1,133850
,4,2,133870
,3,19544,430
,3,19546,350
,3,19662,133860
,4,2,133880
,3,19547,133875
,3,19545,133810
,3,19529,142500
,4,1,133860
,4,2,133880
,3,19544,430
,3,19546,350
,3,19662,133870
,4,2,133890
,3,19547,133885
,3,19545,133810
,3,19529,142500
,4,1,133870
,4,2,133890
,3,19544,430
,3,19546,350
,3,19662,133880
,4,2,133900
,3,19547,133895
,3,19545,133810
,3,19529,142500
,4,1,133880
,4,2,133900
,3,19544,430
,3,19546,350
,3,19662,133890
,4,2,41640
,3,19547,133905
,3,19545,133810
,3,19529,142500
,4,1,133890
,4,2,41640
,3,19544,430
,3,19546,350
,3,19545,133915
,3,19529,142500
,4,3,16520
,4,5,12755
,4,3,22620
,4,6,130090
,4,9,129660
,4,12,129335
,4,15,128755
,4,18,129710
,4,1,455
,4,2,133930
,3,19544,430
,3,19546,350
,3,19662,133820
,4,2,133940
,3,19547,133935
,3,19545,133920
,3,19529,142500
,4,1,133820
,4,2,133940
,3,19544,430
,3,19546,350
,3,19662,133930
,4,2,133950
,3,19547,133945
,3,19545,133920
,3,19529,142500
,4,1,133930
,4,2,133950
,3,19544,430
,3,19546,350
,3,19662,133940
,4,2,133960
,3,19547,133955
,3,19545,133920
,3,19529,142500
,4,1,133940
,4,2,133960
,3,19544,430
,3,19546,350
,3,19662,133950
,4,2,41575
,3,19547,133965
,3,19545,133920
,3,19529,142500
,4,1,133950
,4,2,41575
,4,2,43560
,4,3,43560
,3,19529,7520
,4,1,21180
,3,19544,430
,3,19546,350
,3,19545,133985
,3,19529,142500
,4,3,16520
,4,5,12835
,3,19544,430
,3,19546,350
,3,19545,133995
,3,19529,142500
,4,3,16520
,4,5,12870
,3,19544,430
,3,19546,350
,3,19545,134005
,3,19529,142500
,4,3,16520
,4,5,12905
,3,19544,430
,3,19546,350
,3,19545,134015
,3,19529,142500
,4,3,16520
,4,5,12940
,3,19544,430
,3,19546,350
,3,19545,134025
,3,19529,142500
,4,3,16520
,4,5,12975
,3,19544,430
,3,19546,350
,3,19545,134035
,3,19529,142500
,4,3,16520
,4,5,13010
,3,19544,430
,3,19546,350
,3,19545,134045
,3,19529,142500
,4,3,16520
,4,5,13045
,3,19544,430
,3,19546,350
,3,19545,134055
,3,19529,142500
,4,3,16520
,4,5,13080
,3,19544,430
,3,19546,350
,3,19545,134065
,3,19529,142500
,4,3,16520
,4,5,13115
,3,19544,430
,3,19546,350
,3,19545,134075
,3,19529,142500
,4,3,16520
,4,5,13150
,3,19544,430
,3,19546,350
,3,19545,134085
,3,19529,142500
,4,3,16520
,4,5,13185
,3,19544,430
,3,19546,350
,3,19545,134095
,3,19529,142500
,4,3,16520
,4,5,13220
,3,19544,430
,3,19546,350
,3,19545,134105
,3,19529,142500
,4,3,16520
,4,5,13255
,3,19544,430
,3,19546,350
,3,19545,134115
,3,19529,142500
,4,3,16520
,4,5,13290
,3,19544,430
,3,19546,350
,3,19545,134125
,3,19529,142500
,4,3,16520
,4,5,13325
,3,19544,430
,3,19546,350
,3,19545,134135
,3,19529,142500
,4,3,16520
,4,5,13360
,3,19544,430
,3,19546,350
,3,19545,134145
,3,19529,142500
,4,3,16520
,4,5,13395
,3,19544,430
,3,19546,350
,3,19545,134155
,3,19529,142500
,4,3,16520
,4,5,13430
,3,19544,430
,3,19546,350
,3,19545,134165
,3,19529,142500
,4,3,16520
,4,5,13465
,3,19544,430
,3,19546,350
,3,19545,134175
,3,19529,142500
,4,3,16520
,4,5,13500
,3,19544,430
,3,19546,350
,3,19545,134185
,3,19529,142500
,4,3,16520
,4,5,13535
,3,19544,430
,3,19546,350
,3,19545,134195
,3,19529,142500
,4,3,16520
,4,5,13570
,3,19544,430
,3,19546,350
,3,19545,134205
,3,19529,142500
,4,3,16520
,4,5,13605
,3,19544,430
,3,19546,350
,3,19545,134215
,3,19529,142500
,4,3,16520
,4,5,13640
,3,19544,430
,3,19546,350
,3,19545,134225
,3,19529,142500
,4,3,16520
,4,5,13675
,3,19544,430
,3,19546,350
,3,19545,134235
,3,19529,142500
,4,3,16520
,4,5,695
,3,19544,430
,3,19546,350
,3,19545,134245
,3,19529,142500
,4,3,16520
,4,5,775
,4,4,19280
,4,5,33475
,4,6,32870
,4,7,134255
,4,8,33145
,4,9,134260
,4,10,130000
,4,11,13875
,4,12,33385
,4,13,36780
,4,14,31735
,4,15,41020
,4,16,26450
,4,17,134265
,4,18,33805
,4,19,33830
,4,20,16380
,4,21,31210
,4,22,34990
,4,23,35075
,4,24,25890
,4,25,36645
,4,26,30860
,4,27,30945
,4,28,31270
,4,29,31315
,3,19544,425
,3,19662,12650
,4,2,18485
,3,19547,32890
,3,19545,32865
,3,19529,142500
,3,19544,425
,3,19662,12650
,4,2,33250
,3,19547,33245
,3,19545,33140
,3,19529,142500
,3,19544,425
,3,19662,12650
,4,2,36705
,3,19547,36700
,3,19545,36695
,3,19529,142500
,3,19544,430
,3,19546,350
,3,19545,134275
,3,19529,142500
,4,3,16520
,4,5,790
,3,19544,430
,3,19546,350
,3,19545,134285
,3,19529,142500
,4,3,16520
,4,5,705
,3,19544,430
,3,19546,350
,3,19545,134295
,3,19529,142500
,4,3,16520
,4,5,830
,3,19544,430
,3,19546,350
,3,19545,134305
,3,19529,142500
,4,3,16520
,4,5,925
,3,19544,430
,3,19546,350
,3,19545,134315
,3,19529,142500
,4,3,16520
,4,5,835
,3,19544,430
,3,19546,350
,3,19545,134325
,3,19529,142500
,4,3,16520
,4,5,920
,3,19544,430
,3,19546,350
,3,19545,134335
,3,19529,142500
,4,3,16520
,4,5,710
,3,19544,430
,3,19546,350
,3,19545,134345
,3,19529,142500
,4,3,16520
,4,5,700
,3,19544,430
,3,19546,350
,3,19545,134355
,3,19529,142500
,4,3,16520
,4,5,765
,3,19544,430
,3,19546,350
,3,19545,134400
,3,19529,142500
,4,3,16520
,4,5,780
,3,19544,430
,3,19546,350
,3,19545,134410
,3,19529,142500
,4,3,16520
,4,5,690
,3,19544,430
,3,19546,350
,3,19545,134420
,3,19529,142500
,4,3,16520
,4,5,955
,4,1,134435
,4,3,134440
,3,19529,134465
,3,19529,4410
,3,19541,30175
,3,19542,30200
,3,19543,685
,3,19529,30810
,4,2,40310
,3,19529,134465
,3,19529,142500
,3,19529,134475
,3,19529,142500
,3,19529,134475
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,142500
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134475
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,142500
,3,19529,142500
,3,19529,135065
,3,19529,134475
,3,19529,134475
,3,19529,134465
,3,19529,134465
,3,19529,134465
,3,19529,142500
,3,19536,134600
,3,19529,139175
,4,1,44020
,3,19536,134605
,3,19529,139175
,4,1,44020
,3,19536,134650
,3,19529,139175
,4,1,44020
,3,19536,134670
,3,19529,139175
,3,19536,134675
,3,19529,139175
,3,19536,134695
,3,19529,139175
,4,1,139205
,4,2,139195
,3,19536,134705
,3,19529,139175
,4,1,139210
,4,2,44405
,3,19536,134720
,3,19529,139175
,4,1,139215
,4,2,44020
,3,19536,134725
,3,19529,139175
,4,1,139220
,4,2,44020
,4,3,44020
,3,19536,134730
,3,19529,139175
,4,1,139225
,4,2,44020
,4,3,44020
,3,19536,134735
,3,19529,139175
,4,1,139230
,4,2,44020
,3,19536,134740
,3,19529,139175
,4,1,44020
,3,19536,134745
,3,19529,139175
,4,1,44020
,3,19536,134750
,3,19529,139175
,4,1,44020
,3,19536,134755
,3,19529,139175
,4,1,44020
,3,19536,134760
,3,19529,139175
,4,1,44020
,3,19536,134765
,3,19529,139175
,4,1,44020
,3,19536,134770
,3,19529,139175
,4,1,44020
,3,19536,134775
,3,19529,139175
,4,1,44020
,3,19536,134780
,3,19529,139175
,4,1,44020
,3,19536,134785
,3,19529,139175
,4,1,44020
,3,19536,134795
,3,19529,139175
,4,1,43795
,4,2,44020
,3,19536,134800
,3,19529,139175
,4,1,139235
,3,19536,134805
,3,19529,139175
,4,1,139235
,3,19536,134810
,3,19529,139175
,4,1,139235
,3,19536,134815
,3,19529,139175
,4,1,139235
,3,19536,134820
,3,19529,139175
,4,1,139235
,3,19536,134825
,3,19529,139175
,4,1,139315
,3,19536,134830
,3,19529,139175
,4,1,44020
,3,19536,134835
,3,19529,139175
,4,1,44020
,3,19536,134845
,3,19529,139175
,4,1,44020
,4,2,44050
,3,19536,134850
,3,19529,139175
,4,1,44020
,4,2,134475
,4,3,139335
,4,4,44020
,4,5,139335
,4,6,44020
,4,7,44020
,4,8,44020
,4,9,139335
,4,10,44020
,4,11,44020
,4,12,44020
,3,19536,134855
,3,19529,139175
,4,1,44020
,4,2,44020
,3,19536,134860
,3,19529,139175
,4,1,41565
,4,3,44020
,3,19536,134865
,3,19529,139175
,4,1,44020
,3,19536,134870
,3,19529,139175
,4,1,44020
,4,2,44020
,3,19536,134880
,3,19529,139175
,4,1,44345
,4,2,43780
,4,3,44020
,3,19536,134885
,3,19529,139175
,4,1,44020
,3,19536,134890
,3,19529,139175
,4,1,44020
,3,19536,134895
,3,19529,139175
,4,1,44020
,3,19536,134900
,3,19529,139175
,4,1,44020
,4,2,44020
,3,19536,134905
,3,19529,139175
,4,1,44345
,4,2,43780
,4,3,44020
,3,19536,134910
,3,19529,139175
,4,1,44020
,3,19536,134915
,3,19529,139175
,4,1,44020
,3,19536,134920
,3,19529,139175
,4,1,139400
,3,19536,134925
,3,19529,139175
,4,1,44020
,3,19536,134930
,3,19529,139175
,4,1,44020
,4,2,43960
,4,3,134475
,4,4,44280
,4,5,43730
,4,6,44195
,4,7,44280
,4,8,44135
,4,9,43730
,4,10,44195
,4,11,43960
,4,12,134475
,4,13,44280
,4,14,43730
,4,15,44195
,4,16,44280
,4,17,44135
,4,18,43730
,4,19,44195
,3,19536,134935
,3,19529,139175
,4,1,44020
,3,19536,134940
,3,19529,139175
,4,1,44020
,4,2,43960
,4,3,134475
,4,4,44280
,4,5,43730
,4,6,44195
,4,7,44280
,4,8,44135
,4,9,43730
,4,10,44195
,4,11,43960
,4,12,134475
,4,13,44280
,4,14,43730
,4,15,44195
,4,16,44280
,4,17,44135
,4,18,43730
,4,19,44195
,3,19536,134945
,3,19529,139175
,4,1,41565
,4,2,43780
,4,4,43780
,4,5,44020
,3,19536,134950
,3,19529,139175
,4,1,44280
,4,2,43730
,4,3,44195
,4,4,44020
,3,19536,134955
,3,19529,139175
,4,1,44135
,4,2,43730
,4,3,44195
,4,4,44020
,3,19536,137185
,3,19529,139175
,4,1,39730
,4,2,43980
,4,3,139240
,3,19536,135000
,3,19529,139175
,4,1,139445
,4,2,44020
,4,3,44060
,3,19536,135005
,3,19529,139175
,4,1,139450
,4,2,44020
,3,19536,135010
,3,19529,139175
,4,1,139455
,4,2,44020
,3,19536,135015
,3,19529,139175
,4,1,139460
,4,2,44020
,3,19536,135020
,3,19529,139175
,4,1,139465
,4,2,44020
,3,19536,135025
,3,19529,139175
,4,1,139470
,4,2,44020
,3,19536,135030
,3,19529,139175
,4,1,139475
,4,2,44020
,3,19536,135035
,3,19529,139175
,4,1,139480
,4,2,44020
,3,19536,135040
,3,19529,139175
,4,1,139485
,4,2,44020
,3,19536,135045
,3,19529,139175
,4,1,139490
,4,2,44020
,3,19536,135050
,3,19529,139175
,4,1,139495
,4,2,44020
,3,19536,135055
,3,19529,139175
,3,19536,135060
,3,19529,139175
,3,19536,138920
,3,19529,139175
,4,1,3380
,4,2,132795
,4,3,3070
,4,4,44630
,3,19536,136270
,3,19529,139175
,4,1,3380
,4,2,130940
,4,3,1590
,4,4,44705
,3,19536,137280
,3,19529,139175
,4,1,39730
,4,2,139235
,3,19536,138750
,3,19529,139175
,4,1,3380
,4,2,132095
,4,3,2490
,4,4,44705
,3,19536,135440
,3,19529,139175
,4,1,139725
,4,2,44165
,4,3,139255
,3,19536,135410
,3,19529,139175
,4,1,34480
,4,2,44390
,4,3,139240
,3,19546,350
,3,19545,130850
,3,19529,142500
,3,19536,135635
,3,19529,139175
,4,1,133420
,4,2,430
,4,3,510
,4,4,475
,4,5,44705
,3,19536,135810
,3,19529,139175
,4,1,3380
,4,2,131020
,4,3,139235
,3,19536,135815
,3,19529,139175
,4,1,3380
,4,2,131465
,4,3,139235
,3,19536,135835
,3,19529,139175
,4,1,3380
,4,2,132620
,4,3,139235
,3,19536,135840
,3,19529,139175
,4,1,3380
,4,2,132880
,4,3,139235
,3,19536,136800
,3,19529,139175
,4,1,3380
,4,2,130940
,4,3,1590
,4,4,44695
,3,19536,135850
,3,19529,139175
,4,1,3380
,4,2,131150
,4,3,1740
,4,4,44450
,3,19536,138280
,3,19529,139175
,4,1,3380
,4,2,132595
,4,3,2920
,4,4,44765
,3,19536,135875
,3,19529,139175
,4,1,39580
,4,2,44170
,4,3,139255
,3,19536,135880
,3,19529,139175
,4,1,39580
,4,2,44170
,4,3,139255
,3,19536,135900
,3,19529,139175
,4,1,39645
,4,2,44170
,4,3,139255
,3,19536,136005
,3,19529,139175
,4,1,3380
,4,2,131655
,4,3,139235
,3,19536,136015
,3,19529,139175
,4,1,3380
,4,2,131600
,4,3,2085
,4,4,44695
,3,19536,137015
,3,19529,139175
,4,1,3380
,4,2,132305
,4,3,2655
,4,4,44765
,3,19536,136085
,3,19529,139175
,4,1,3380
,4,2,132625
,4,3,2945
,4,4,44450
,3,19536,136095
,3,19529,139175
,4,1,3380
,4,2,131430
,4,3,1950
,4,4,44450
,3,19536,136090
,3,19529,139175
,4,1,3380
,4,2,131115
,4,3,139235
,3,19536,136055
,3,19529,139175
,4,1,3645
,4,2,43775
,4,3,139260
,3,19536,136525
,3,19529,139175
,4,1,3380
,4,2,131935
,4,3,2350
,4,4,139195
,4,5,44695
,3,19536,136080
,3,19529,139175
,4,1,3645
,4,2,43980
,4,3,139240
,3,19536,136045
,3,19529,139175
,4,1,3645
,4,2,43740
,4,3,139260
,3,19536,136105
,3,19529,139175
,4,1,31085
,4,2,43980
,4,3,139240
,3,19536,136110
,3,19529,139175
,4,1,3380
,4,2,131935
,4,3,2350
,4,4,44450
,3,19536,136230
,3,19529,139175
,4,1,31770
,4,2,44170
,4,3,139255
,3,19536,136235
,3,19529,139175
,4,1,31755
,4,2,44170
,4,3,139255
,3,19536,136995
,3,19529,139175
,4,1,39765
,4,2,43980
,4,3,139240
,3,19536,137230
,3,19529,139175
,4,1,39765
,4,2,43775
,4,3,139260
,3,19536,136395
,3,19529,139175
,4,1,31370
,4,2,16475
,4,3,44705
,3,19536,136515
,3,19529,139175
,4,1,31490
,4,2,139235
,3,19536,136405
,3,19529,139175
,4,1,31370
,4,2,16480
,4,3,44705
,3,19536,136430
,3,19529,139175
,4,1,39765
,4,2,133250
,4,4,44280
,4,5,44280
,4,6,44100
,4,7,44320
,4,8,44020
,4,9,44705
,3,19536,136465
,3,19529,139175
,4,1,31490
,4,2,31400
,4,3,16500
,4,4,44535
,3,19536,136475
,3,19529,139175
,4,1,31490
,4,2,31400
,4,3,16495
,4,4,44535
,3,19536,136400
,3,19529,139175
,4,1,31370
,4,2,139235
,3,19536,136410
,3,19529,139175
,4,1,31370
,4,2,139235
,3,19536,138610
,3,19529,139175
,4,2,4920
,4,4,4920
,4,6,4920
,4,8,4920
,4,9,4920
,4,10,43875
,4,11,510
,4,12,475
,4,13,44705
,3,19536,136440
,3,19529,139175
,4,1,31440
,4,2,31440
,4,3,31400
,4,4,430
,4,5,510
,4,6,31460
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,136445
,3,19529,139175
,4,1,31460
,4,2,31460
,4,3,31400
,4,4,430
,4,5,510
,4,6,31470
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,136450
,3,19529,139175
,4,1,31470
,4,2,31470
,4,3,31400
,4,4,430
,4,5,510
,4,6,31480
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,136455
,3,19529,139175
,4,1,31480
,4,2,31480
,4,3,31400
,4,4,430
,4,5,510
,4,6,31490
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,136470
,3,19529,139175
,4,1,31490
,4,2,139235
,3,19536,136480
,3,19529,139175
,4,1,31370
,4,2,16485
,4,3,44705
,3,19536,136485
,3,19529,139175
,4,1,31370
,4,2,16490
,4,3,44705
,3,19536,136495
,3,19529,139175
,4,1,31490
,4,2,139235
,3,19536,136520
,3,19529,139175
,4,1,31370
,4,2,16470
,4,3,139235
,3,19536,136225
,3,19529,139175
,4,1,31490
,4,2,44170
,4,3,139255
,3,19536,136490
,3,19529,139175
,4,1,31370
,4,2,139235
,3,19536,136600
,3,19529,139175
,4,1,3380
,4,2,133055
,4,3,139235
,3,19536,136605
,3,19529,139175
,4,1,3380
,4,2,133070
,4,3,370
,4,4,44450
,3,19536,136610
,3,19529,139175
,4,1,3380
,4,2,132580
,4,3,2905
,4,4,44695
,3,19536,136615
,3,19529,139175
,4,1,3380
,4,2,132045
,4,3,2445
,4,4,44695
,3,19536,136620
,3,19529,139175
,4,1,3380
,4,2,132420
,4,3,139235
,3,19536,136630
,3,19529,139175
,4,1,16520
,4,2,31755
,4,3,139240
,3,19536,136635
,3,19529,139175
,4,1,3380
,4,2,131405
,4,3,1930
,4,4,44695
,3,19536,136625
,3,19529,139175
,4,1,3645
,4,2,3640
,4,3,3660
,4,5,44280
,4,6,44280
,4,7,44100
,4,8,44320
,4,9,44020
,4,10,44705
,3,19536,136790
,3,19529,139175
,4,1,3380
,4,2,132225
,4,3,2600
,4,4,44600
,3,19536,136640
,3,19529,139175
,4,1,3380
,4,2,132630
,4,3,139235
,3,19536,137520
,3,19529,139175
,4,1,3380
,4,2,131410
,4,3,1935
,4,4,44695
,3,19536,137075
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44705
,3,19536,137525
,3,19529,139175
,4,1,33435
,4,2,139235
,3,19536,137080
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44705
,3,19536,136735
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44705
,3,19536,137530
,3,19529,139175
,4,1,33435
,4,2,139235
,3,19536,137535
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44705
,3,19536,136755
,3,19529,139175
,4,1,3380
,4,2,132605
,4,3,2930
,4,4,44695
,3,19536,136645
,3,19529,139175
,4,1,6315
,4,2,6315
,4,3,31885
,4,4,31960
,4,5,43995
,4,6,44170
,4,7,139255
,3,19536,136650
,3,19529,139175
,4,1,31960
,4,2,31960
,4,3,31885
,4,4,31970
,4,5,43995
,4,6,44170
,4,7,139255
,3,19536,136655
,3,19529,139175
,4,1,31970
,4,2,31970
,4,3,31885
,4,4,31980
,4,5,43995
,4,6,44170
,4,7,139255
,3,19536,136660
,3,19529,139175
,4,1,31980
,4,2,31980
,4,3,31885
,4,4,31990
,4,5,43995
,4,6,44170
,4,7,139255
,3,19536,136665
,3,19529,139175
,4,1,31990
,4,2,31990
,4,3,31885
,4,4,32000
,4,5,43995
,4,6,44170
,4,7,139255
,3,19536,136670
,3,19529,139175
,4,1,32000
,4,2,32000
,4,3,31885
,4,4,32010
,4,5,43995
,4,6,44170
,4,7,139255
,3,19536,136675
,3,19529,139175
,4,1,32010
,4,2,32010
,4,3,31885
,4,4,32020
,4,5,43995
,4,6,44170
,4,7,139255
,3,19536,136680
,3,19529,139175
,4,1,32020
,4,2,32020
,4,3,31885
,4,4,32030
,4,5,43995
,4,6,44170
,4,7,139255
,3,19536,136685
,3,19529,139175
,4,1,32030
,4,2,32030
,4,3,31885
,4,4,32040
,4,5,43995
,4,6,44170
,4,7,139255
,3,19536,136690
,3,19529,139175
,4,1,32040
,4,2,32040
,4,3,31885
,4,4,32050
,4,5,43995
,4,6,44170
,4,7,139255
,3,19536,136695
,3,19529,139175
,4,1,32050
,4,2,32050
,4,3,31885
,4,4,32060
,4,5,43995
,4,6,44170
,4,7,139255
,3,19536,136700
,3,19529,139175
,4,1,32060
,4,2,32060
,4,3,31885
,4,4,32070
,4,5,43995
,4,6,44170
,4,7,139255
,3,19536,136280
,3,19529,139175
,4,1,32070
,4,2,44170
,4,3,139255
,3,19536,136285
,3,19529,139175
,4,1,32070
,4,2,44170
,4,3,139255
,3,19536,136760
,3,19529,139175
,4,1,3380
,4,2,131830
,4,3,2250
,4,4,44695
,3,19536,136765
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44535
,3,19536,136775
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44535
,3,19536,136770
,3,19529,139175
,4,1,32070
,4,2,139235
,3,19536,136780
,3,19529,139175
,4,1,32070
,4,2,139235
,3,19536,136795
,3,19529,139175
,4,1,3380
,4,2,131975
,4,3,2390
,4,4,44600
,3,19536,136805
,3,19529,139175
,4,1,3380
,4,2,131835
,4,3,2255
,4,4,44695
,3,19536,136810
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44535
,3,19536,136910
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44535
,3,19536,136825
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44535
,3,19536,136920
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44535
,3,19536,136840
,3,19529,139175
,4,1,3380
,4,2,132510
,4,3,2845
,4,4,44695
,3,19536,137085
,3,19529,139175
,4,1,3380
,4,2,131680
,4,3,2125
,4,4,44695
,3,19536,136850
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44535
,3,19536,137540
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44535
,3,19536,136845
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44535
,3,19536,136865
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44535
,3,19536,137090
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44535
,3,19536,136815
,3,19529,139175
,4,1,32070
,4,2,139235
,3,19536,136830
,3,19529,139175
,4,1,32070
,4,2,139235
,3,19536,136360
,3,19529,139175
,4,1,32070
,4,2,139235
,3,19536,136855
,3,19529,139175
,4,1,32070
,4,2,139235
,3,19536,136870
,3,19529,139175
,4,1,32070
,4,2,139235
,3,19536,136380
,3,19529,139175
,4,1,32360
,4,2,44165
,4,3,139255
,3,19536,136875
,3,19529,139175
,4,1,32400
,4,2,44165
,4,3,139255
,3,19536,136580
,3,19529,139175
,4,1,31490
,4,2,44170
,4,3,139255
,3,19536,137020
,3,19529,139175
,4,1,3380
,4,2,131475
,4,3,139235
,3,19536,137585
,3,19529,139175
,4,1,12650
,4,2,12650
,4,3,425
,4,4,565
,4,5,430
,4,6,510
,4,7,36780
,4,8,44020
,4,9,139255
,3,19536,137510
,3,19529,139175
,4,1,980
,4,2,130680
,4,3,139235
,3,19536,136595
,3,19529,139175
,4,1,33435
,4,2,44170
,4,3,139255
,3,19536,137515
,3,19529,139175
,4,1,450
,4,2,360
,4,3,44630
,3,19536,136710
,3,19529,139175
,4,1,32070
,4,2,44170
,4,3,139255
,3,19536,136715
,3,19529,139175
,4,1,32070
,4,2,44170
,4,3,139255
,3,19536,136725
,3,19529,139175
,4,1,32070
,4,2,44170
,4,3,139255
,3,19536,136730
,3,19529,139175
,4,1,32070
,4,2,44170
,4,3,139255
,3,19536,136745
,3,19529,139175
,4,1,32070
,4,2,44170
,4,3,139255
,3,19536,136750
,3,19529,139175
,4,1,32070
,4,2,44170
,4,3,139255
,3,19536,136915
,3,19529,139175
,4,1,32070
,4,2,139235
,3,19536,136925
,3,19529,139175
,4,1,32070
,4,2,139235
,3,19536,137545
,3,19529,139175
,4,1,32070
,4,2,139235
,3,19536,137070
,3,19529,139175
,4,1,32070
,4,2,31885
,4,3,139195
,4,4,44705
,3,19536,136900
,3,19529,139175
,4,1,32070
,4,2,44170
,4,3,139255
,3,19536,136905
,3,19529,139175
,4,1,32070
,4,2,44170
,4,3,139255
,3,19536,137095
,3,19529,139175
,4,1,32070
,4,2,139235
,3,19536,138565
,3,19529,139175
,4,1,3380
,4,2,132965
,4,3,3210
,4,4,44600
,3,19536,137210
,3,19529,139175
,4,1,3380
,4,2,132340
,4,3,139235
,3,19536,137215
,3,19529,139175
,4,1,3380
,4,2,131325
,4,3,1860
,4,4,44600
,3,19536,137220
,3,19529,139175
,4,1,3380
,4,2,131910
,4,3,139235
,3,19536,137225
,3,19529,139175
,4,1,3380
,4,2,131390
,4,3,1915
,4,4,44765
,3,19536,138120
,3,19529,139175
,4,1,3380
,4,2,132500
,4,3,139235
,3,19536,139035
,3,19529,139175
,4,1,3380
,4,2,132445
,4,3,2790
,4,4,44695
,3,19536,137765
,3,19529,139175
,4,1,3380
,4,2,132050
,4,3,139235
,3,19536,137040
,3,19529,139175
,4,1,3380
,4,2,132785
,4,3,139235
,3,19536,137045
,3,19529,139175
,4,1,3380
,4,2,131090
,4,3,1695
,4,4,44765
,3,19536,137175
,3,19529,139175
,4,1,980
,4,2,130770
,4,3,139235
,3,19536,137190
,3,19529,139175
,4,1,685
,4,2,1225
,4,3,128625
,4,4,44020
,4,5,134475
,4,6,141020
,4,7,44020
,4,8,141020
,4,9,44020
,4,10,44020
,4,11,44020
,4,12,141020
,4,13,44020
,4,14,44020
,4,15,7545
,4,16,44705
,3,19536,137285
,3,19529,139175
,4,1,685
,4,2,1225
,4,3,128625
,4,4,2805
,4,5,139195
,4,6,44705
,3,19536,137290
,3,19529,139175
,4,1,39765
,4,2,133250
,4,3,2695
,4,4,139195
,4,5,44705
,3,19536,137315
,3,19529,139175
,4,1,39765
,4,2,133250
,4,3,2980
,4,4,44705
,3,19536,137295
,3,19529,139175
,4,1,3380
,4,2,132095
,4,3,2490
,4,4,44695
,3,19536,137300
,3,19529,139175
,4,1,3380
,4,2,132680
,4,3,139235
,3,19536,137310
,3,19529,139175
,4,1,39765
,4,2,133250
,4,3,7460
,4,4,44630
,3,19536,137320
,3,19529,139175
,4,1,35325
,4,2,44165
,4,3,139255
,3,19536,138170
,3,19529,139175
,4,1,35340
,4,2,22785
,4,3,44630
,3,19536,138495
,3,19529,139175
,4,1,35340
,4,2,139235
,3,19536,137845
,3,19529,139175
,4,1,38645
,4,2,44170
,4,3,139255
,3,19536,138535
,3,19529,139175
,4,1,38645
,4,2,35245
,4,3,22790
,4,4,44705
,3,19536,138885
,3,19529,139175
,4,1,38675
,4,2,139235
,3,19536,138175
,3,19529,139175
,4,1,35340
,4,2,22765
,4,3,44630
,3,19536,138185
,3,19529,139175
,4,1,980
,4,2,130525
,4,3,139235
,3,19536,138190
,3,19529,139175
,4,1,1435
,4,2,1430
,4,3,139195
,4,4,44705
,3,19536,138200
,3,19529,139175
,4,1,35340
,4,2,22725
,4,3,44630
,3,19536,138180
,3,19529,139175
,4,1,685
,4,2,1225
,4,3,128625
,4,4,1990
,4,5,44630
,3,19536,137390
,3,19529,139175
,4,1,3380
,4,2,132905
,4,3,3170
,4,4,44600
,3,19536,137445
,3,19529,139175
,4,1,3380
,4,2,131000
,4,3,1635
,4,4,44765
,3,19536,138225
,3,19529,139175
,4,1,3380
,4,2,131470
,4,3,1975
,4,4,44765
,3,19536,138195
,3,19529,139175
,4,1,3645
,4,2,3640
,4,3,3660
,4,4,44020
,4,5,44535
,3,19536,138205
,3,19529,139175
,4,1,35340
,4,2,139235
,3,19536,138210
,3,19529,139175
,4,1,450
,4,2,355
,4,3,44705
,3,19536,138215
,3,19529,139175
,4,1,685
,4,2,1225
,4,3,128625
,4,4,2360
,4,5,139195
,4,6,44705
,3,19536,137430
,3,19529,139175
,4,1,35380
,4,2,44170
,4,3,139255
,3,19536,137435
,3,19529,139175
,4,1,35380
,4,2,44170
,4,3,139255
,3,19536,138235
,3,19529,139175
,4,1,35340
,4,2,139235
,3,19536,138240
,3,19529,139175
,4,1,34895
,4,2,21945
,4,3,139195
,4,4,44630
,3,19536,138220
,3,19529,139175
,4,1,3380
,4,2,133065
,4,3,3295
,4,4,44765
,3,19536,138230
,3,19529,139175
,4,1,3380
,4,2,133010
,4,3,355
,4,4,44705
,3,19536,138245
,3,19529,139175
,4,1,31370
,4,2,16470
,4,3,44705
,3,19536,138260
,3,19529,139175
,4,1,38530
,4,2,35650
,4,3,27420
,4,4,44535
,3,19536,138480
,3,19529,139175
,4,1,35340
,4,2,139235
,3,19536,138485
,3,19529,139175
,4,1,38295
,4,2,27880
,4,3,44630
,3,19536,137630
,3,19529,139175
,4,1,37155
,4,2,44170
,4,3,139255
,3,19536,138250
,3,19529,139175
,4,1,38295
,4,2,27670
,4,3,44705
,3,19536,137820
,3,19529,139175
,4,1,34895
,4,2,22010
,4,3,44705
,3,19536,138255
,3,19529,139175
,4,1,36335
,4,2,25150
,4,4,141410
,4,6,44020
,4,7,44020
,4,8,44705
,3,19536,137785
,3,19529,139175
,4,1,685
,4,2,1225
,4,3,128625
,4,4,2275
,4,5,44705
,3,19536,137670
,3,19529,139175
,4,1,3380
,4,2,131280
,4,3,139235
,3,19536,137675
,3,19529,139175
,4,1,1275
,4,2,133710
,4,3,2960
,4,4,44705
,3,19536,137680
,3,19529,139175
,4,1,3380
,4,2,132005
,4,3,2415
,4,4,44695
,3,19536,137835
,3,19529,139175
,4,1,38530
,4,2,35650
,4,3,27295
,4,4,44705
,3,19536,137795
,3,19529,139175
,4,1,38530
,4,2,139235
,3,19536,138490
,3,19529,139175
,4,1,34895
,4,2,21945
,4,3,139195
,4,4,44705
,3,19536,137805
,3,19529,139175
,4,1,510
,4,2,475
,4,3,139235
,3,19536,137810
,3,19529,139175
,4,1,6280
,4,2,425
,4,3,565
,4,4,550
,4,5,44630
,3,19536,137750
,3,19529,139175
,4,1,1400
,4,2,44170
,4,3,139255
,3,19536,137800
,3,19529,139175
,4,1,1400
,4,2,130860
,4,3,3265
,4,4,44705
,3,19536,137745
,3,19529,139175
,4,1,128650
,4,2,43980
,4,3,139240
,3,19536,137755
,3,19529,139175
,4,1,1400
,4,2,139235
,3,19536,137815
,3,19529,139175
,4,1,38295
,4,2,27665
,4,3,44705
,3,19536,137830
,3,19529,139175
,4,1,38530
,4,2,35650
,4,3,27440
,4,4,44535
,3,19536,137760
,3,19529,139175
,4,1,1400
,4,2,139235
,3,19536,137725
,3,19529,139175
,4,1,3380
,4,2,132500
,4,3,139255
,3,19536,137775
,3,19529,139175
,4,1,3380
,4,2,133025
,4,3,3260
,4,4,44450
,3,19536,137740
,3,19529,139175
,4,1,128650
,4,2,43775
,4,3,139260
,3,19536,137825
,3,19529,139175
,4,1,36335
,4,2,25185
,4,4,141565
,4,6,44020
,4,7,44020
,4,8,44705
,3,19536,138500
,3,19529,139175
,4,1,22195
,4,2,22195
,4,3,35245
,4,4,430
,4,5,510
,4,6,38595
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138505
,3,19529,139175
,4,1,38595
,4,2,38595
,4,3,35245
,4,4,430
,4,5,510
,4,6,38605
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138510
,3,19529,139175
,4,1,38605
,4,2,38605
,4,3,35245
,4,4,430
,4,5,510
,4,6,38615
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138515
,3,19529,139175
,4,1,38615
,4,2,38615
,4,3,35245
,4,4,430
,4,5,510
,4,6,38625
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138520
,3,19529,139175
,4,1,38625
,4,2,38625
,4,3,35245
,4,4,430
,4,5,510
,4,6,38635
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138525
,3,19529,139175
,4,1,38635
,4,2,38635
,4,3,35245
,4,4,430
,4,5,510
,4,6,38645
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138540
,3,19529,139175
,4,1,38645
,4,2,139235
,3,19536,138545
,3,19529,139175
,4,1,38645
,4,2,139235
,3,19536,137870
,3,19529,139175
,4,1,38645
,4,2,44170
,4,3,139255
,3,19536,138550
,3,19529,139175
,4,1,34895
,4,2,21995
,4,3,44705
,3,19536,138555
,3,19529,139175
,4,1,35340
,4,2,22745
,4,3,44705
,3,19536,138570
,3,19529,139175
,4,1,38645
,4,2,38645
,4,3,35245
,4,4,430
,4,5,510
,4,6,38675
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138575
,3,19529,139175
,4,1,34895
,4,2,22005
,4,3,44705
,3,19536,138580
,3,19529,139175
,4,1,38675
,4,2,44170
,4,3,139255
,3,19536,138135
,3,19529,139175
,4,1,685
,4,2,1225
,4,3,128625
,4,4,3215
,4,5,44630
,3,19536,137955
,3,19529,139175
,4,1,128650
,4,2,133250
,4,3,7440
,4,4,44705
,3,19536,138560
,3,19529,139175
,4,1,38655
,4,2,139235
,3,19536,137940
,3,19529,139175
,4,1,34480
,4,2,133250
,4,3,7440
,4,4,44630
,3,19536,137945
,3,19529,139175
,4,1,34480
,4,2,133250
,4,3,7480
,4,4,44705
,3,19536,137930
,3,19529,139175
,4,1,34480
,4,2,133250
,4,4,44280
,4,5,44280
,4,6,44100
,4,7,44320
,4,8,44020
,4,9,44705
,3,19536,137925
,3,19529,139175
,4,1,3380
,4,2,131355
,4,3,1885
,4,4,44765
,3,19536,137985
,3,19529,139175
,4,1,38705
,4,2,44170
,4,3,139255
,3,19536,138300
,3,19529,139175
,4,1,38705
,4,2,139235
,3,19536,138320
,3,19529,139175
,4,1,38705
,4,2,139235
,3,19536,138330
,3,19529,139175
,4,1,38295
,4,2,27535
,4,3,44635
,3,19536,138340
,3,19529,139175
,4,1,38295
,4,2,27660
,4,3,44705
,3,19536,138350
,3,19529,139175
,4,1,38530
,4,2,139235
,3,19536,138305
,3,19529,139175
,4,1,980
,4,2,130815
,4,3,139235
,3,19536,138420
,3,19529,139175
,4,1,38295
,4,2,27545
,4,3,139195
,4,4,44495
,3,19536,138440
,3,19529,139175
,4,1,38295
,4,2,27525
,4,3,44705
,3,19536,138450
,3,19529,139175
,4,1,38760
,4,2,33705
,4,3,20705
,4,4,139195
,4,5,44705
,3,19536,138310
,3,19529,139175
,4,1,33930
,4,2,20665
,4,3,44705
,3,19536,138315
,3,19529,139175
,4,1,685
,4,2,1225
,4,3,128625
,4,4,1900
,4,5,44535
,3,19536,138335
,3,19529,139175
,4,1,36335
,4,2,24835
,4,4,141825
,4,6,44020
,4,7,44020
,4,8,44635
,3,19536,138345
,3,19529,139175
,4,1,36335
,4,2,25220
,4,4,141845
,4,6,44020
,4,7,44020
,4,8,44705
,3,19536,138355
,3,19529,139175
,4,1,980
,4,2,130705
,4,3,139235
,3,19536,138360
,3,19529,139175
,4,1,39545
,4,2,1710
,4,3,44705
,3,19536,138365
,3,19529,139175
,4,1,17395
,4,2,17395
,4,3,33705
,4,4,430
,4,5,510
,4,6,38720
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138370
,3,19529,139175
,4,1,38720
,4,2,139235
,3,19536,138375
,3,19529,139175
,4,1,33930
,4,2,139235
,3,19536,138380
,3,19529,139175
,4,1,38720
,4,2,38720
,4,3,33705
,4,4,430
,4,5,510
,4,6,38740
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138385
,3,19529,139175
,4,1,38730
,4,2,139235
,3,19536,138390
,3,19529,139175
,4,1,38740
,4,2,38740
,4,3,33705
,4,4,430
,4,5,510
,4,6,38750
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138395
,3,19529,139175
,4,1,38750
,4,2,139235
,3,19536,138060
,3,19529,139175
,4,1,38730
,4,2,44165
,4,3,139255
,3,19536,138400
,3,19529,139175
,4,1,38750
,4,2,139235
,3,19536,138405
,3,19529,139175
,4,1,38750
,4,2,139235
,3,19536,138415
,3,19529,139175
,4,1,18485
,4,2,18475
,4,4,141920
,4,6,44020
,4,7,44020
,4,8,44495
,3,19536,138425
,3,19529,139175
,4,1,33930
,4,2,20670
,4,3,44705
,3,19536,138435
,3,19529,139175
,4,1,36335
,4,2,24870
,4,4,141940
,4,6,44020
,4,7,44020
,4,8,44580
,3,19536,138445
,3,19529,139175
,4,1,36335
,4,2,24800
,4,4,141955
,4,6,44020
,4,7,44020
,4,8,44705
,3,19536,138455
,3,19529,139175
,4,1,980
,4,2,130695
,4,3,840
,4,4,44695
,3,19536,138460
,3,19529,139175
,4,1,38760
,4,2,139235
,3,19536,138465
,3,19529,139175
,4,1,38760
,4,2,139235
,3,19536,138470
,3,19529,139175
,4,1,38760
,4,2,139235
,3,19536,138475
,3,19529,139175
,4,1,38730
,4,2,32850
,4,3,18630
,4,5,141990
,4,7,44020
,4,8,44020
,4,9,44630
,3,19536,138130
,3,19529,139175
,4,1,38805
,4,2,44170
,4,3,139255
,3,19536,138740
,3,19529,139175
,4,1,39320
,4,2,30230
,4,3,139235
,3,19536,138745
,3,19529,139175
,4,1,12650
,4,2,425
,4,3,565
,4,4,555
,4,5,44630
,3,19536,138845
,3,19529,139175
,4,1,29785
,4,2,29785
,4,3,38990
,4,4,430
,4,5,510
,4,6,39435
,4,7,44020
,4,8,139255
,3,19536,138850
,3,19529,139175
,4,1,39435
,4,2,39435
,4,3,38990
,4,4,430
,4,5,510
,4,6,39445
,4,7,43995
,4,8,44165
,4,9,139255
,3,19536,138785
,3,19529,139175
,4,1,980
,4,2,130750
,4,3,139235
,3,19536,138790
,3,19529,139175
,4,1,133250
,4,2,7440
,4,3,139235
,3,19536,138660
,3,19529,139175
,4,1,39415
,4,2,44170
,4,3,139255
,3,19536,138665
,3,19529,139175
,4,1,39415
,4,2,44170
,4,3,139255
,3,19536,138810
,3,19529,139175
,4,1,38655
,4,2,139235
,3,19536,138815
,3,19529,139175
,4,1,39320
,4,2,30210
,4,3,44705
,3,19536,138755
,3,19529,139175
,4,1,29460
,4,2,29460
,4,3,39265
,4,4,430
,4,5,510
,4,6,39365
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138760
,3,19529,139175
,4,1,39365
,4,2,39365
,4,3,39265
,4,4,430
,4,5,510
,4,6,39375
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138765
,3,19529,139175
,4,1,39375
,4,2,39375
,4,3,39265
,4,4,430
,4,5,510
,4,6,39385
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138770
,3,19529,139175
,4,1,39385
,4,2,39385
,4,3,39265
,4,4,430
,4,5,510
,4,6,39395
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138775
,3,19529,139175
,4,1,39395
,4,2,39395
,4,3,39265
,4,4,430
,4,5,510
,4,6,39405
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138780
,3,19529,139175
,4,1,39405
,4,2,39405
,4,3,39265
,4,4,430
,4,5,510
,4,6,39415
,4,7,43995
,4,8,44170
,4,9,139255
,3,19536,138795
,3,19529,139175
,4,1,39745
,4,2,139235
,3,19536,138805
,3,19529,139175
,4,1,3380
,4,2,131120
,4,3,1720
,4,4,44615
,3,19536,138820
,3,19529,139175
,4,1,39415
,4,2,139235
,3,19536,138880
,3,19529,139175
,4,1,39105
,4,2,142325
,4,3,44705
,3,19536,138825
,3,19529,139175
,4,1,980
,4,2,130735
,4,3,139235
,3,19536,138830
,3,19529,139175
,4,1,1270
,4,2,1260
,4,3,44535
,3,19536,138685
,3,19529,139175
,4,1,39415
,4,2,44170
,4,3,139255
,3,19536,138690
,3,19529,139175
,4,1,39415
,4,2,44170
,4,3,139255
,3,19536,139000
,3,19529,139175
,4,1,41510
,4,2,43785
,4,3,139240
,3,19536,138835
,3,19529,139175
,4,1,29785
,4,2,38990
,4,3,29870
,4,5,142240
,4,7,44020
,4,8,44020
,4,9,44630
,3,19536,138840
,3,19529,139175
,4,1,39105
,4,2,142315
,4,3,44705
,3,19536,138855
,3,19529,139175
,4,1,39445
,4,2,39445
,4,3,38990
,4,4,430
,4,5,510
,4,6,39455
,4,7,43995
,4,8,44165
,4,9,139255
,3,19536,138860
,3,19529,139175
,4,1,39105
,4,2,142320
,4,3,44630
,3,19536,138875
,3,19529,139175
,4,1,39465
,4,2,139235
,3,19536,138715
,3,19529,139175
,4,1,39415
,4,2,44170
,4,3,139255
,3,19536,138720
,3,19529,139175
,4,1,39465
,4,2,44165
,4,3,139255
,3,19536,138710
,3,19529,139175
,4,1,39415
,4,2,44170
,4,3,139255
,3,19536,138725
,3,19529,139175
,4,1,39465
,4,2,44165
,4,3,139255
,3,19536,138865
,3,19529,139175
,4,1,39415
,4,2,139235
,3,19536,138870
,3,19529,139175
,4,1,39415
,4,2,139235
,3,19668,39030
,3,19668,39045
,3,19668,39050
,3,19536,138900
,3,19529,139175
,4,1,41655
,4,2,43855
,4,3,139240
,3,19536,138910
,3,19529,139175
,4,1,41655
,4,2,44430
,4,3,139260
,3,19536,138955
,3,19529,139175
,4,1,39465
,4,2,139235
,3,19536,138970
,3,19529,139175
,4,1,39415
,4,2,139235
,3,19536,139005
,3,19529,139175
,4,1,39465
,4,2,38990
,4,3,29870
,4,5,142355
,4,7,44020
,4,8,44020
,4,9,44630
,3,19536,139010
,3,19529,139175
,4,1,39105
,4,2,142435
,4,3,44705
,3,19536,138960
,3,19529,139175
,4,1,39105
,4,2,142410
,4,3,44705
,3,19536,139015
,3,19529,139175
,4,1,39415
,4,2,139235
,3,19536,139020
,3,19529,139175
,4,1,39415
,4,2,39265
,4,3,430
,4,4,510
,4,5,139235
,3,19536,139025
,3,19529,139175
,4,1,39415
,4,2,139195
,4,3,44535
,3,19536,138965
,3,19529,139175
,4,1,39465
,4,2,139235
,3,19668,39035
,3,19536,139040
,3,19529,139175
,4,1,39415
,4,2,139235
,3,19536,139030
,3,19529,139175
,4,1,685
,4,2,1225
,4,3,128625
,4,4,2645
,4,5,44630
,3,19668,30715
,3,19668,39050
,3,19668,30170
,3,19668,39030
,3,19668,29780
,3,19668,39045
,3,19668,39050
,3,19668,11715
,3,19668,11715
,3,19668,30715
,3,19668,39685
,3,19668,8380
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19529,142500
,3,19544,33445
,3,19546,795
,4,2,41525
,3,19547,133550
,3,19545,133545
,3,19529,142500
,3,19544,33445
,3,19546,795
,4,2,133565
,3,19547,133560
,3,19545,133555
,3,19529,142500
,3,19544,33445
,3,19546,795
,4,2,41530
,3,19547,133575
,3,19545,133570
,3,19529,142500
,3,19544,33445
,3,19546,795
,4,2,41535
,3,19547,133585
,3,19545,133580
,3,19529,142500
,3,19544,33445
,3,19546,795
,4,2,41540
,3,19547,133595
,3,19545,133590
,3,19529,142500
,3,19544,33445
,3,19546,795
,4,2,41545
,3,19547,133605
,3,19545,133600
,3,19529,142500
,3,19544,31775
,3,19546,350
,4,2,36475
,3,19547,37040
,3,19545,36375
,3,19529,142500
,3,19544,36985
,3,19546,350
,4,2,37010
,3,19547,37005
,3,19545,36995
,3,19529,142500
,1,1,20590
,3,32,142780
,3,33,142790
,1,1,20600
],
"strings":["",
"",
"(GC roots)",
"(Strong roots)",
"(Symbol)",
"(Extensions)",
"(Isolate)",
"(Relocatable)",
"(Debugger)",
"(Compilation cache)",
"(Handle scope)",
"(Builtins)",
"(Global handles)",
"(Symbols)",
"(External strings)",
"system / Oddball",
"system / Map",
"null",
"undefined",
"number",
"true",
"false",
"hole",
"arguments_marker",
"no_interceptor_result_sentinel",
"termination_exception",
"system / PolymorphicCodeCache",
"\"",
"'",
".",
"/",
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"<",
">",
"a",
"g",
"h",
"l",
"n",
"p",
"s",
"Object",
"(code)",
"(function scope info)",
"",
"keys",
"create",
"defineProperty",
"defineProperties",
"freeze",
"getPrototypeOf",
"getOwnPropertyDescriptor",
"getOwnPropertyNames",
"is",
"isExtensible",
"isFrozen",
"isSealed",
"preventExtensions",
"seal",
"Empty",
"(function literals)",
"system / Context",
"toString",
"toLocaleString",
"valueOf",
"hasOwnProperty",
"isPrototypeOf",
"propertyIsEnumerable",
"__defineGetter__",
"__lookupGetter__",
"__defineSetter__",
"__lookupSetter__",
"Function",
"bind",
"call",
"apply",
"system / NativeContext",
"() {}",
"system / Foreign",
"system / AccessorPair",
"ThrowTypeError",
"(object elements)",
"(shared function info)",
"ArrayBuffer",
"Float64Array",
"Uint8ClampedArray",
"Float32Array",
"JSON",
"RangeError",
"isFinite",
"parseFloat",
"DataView",
"decodeURI",
"Int8Array",
"Uint8Array",
"Error",
"SyntaxError",
"EvalError",
"Number",
"Int16Array",
"Int32Array",
"String",
"RegExp",
"MathConstructor",
"Boolean",
"isNaN",
"parseInt",
"escape",
"Date",
"TypeError",
"ReferenceError",
"Array",
"URIError",
"process",
"Uint32Array",
"Uint16Array",
"encodeURI",
"encodeURIComponent",
"unescape",
"Buffer",
"eval",
"decodeURIComponent",
"(object properties)",
"global",
"isArray",
"fromCharCode",
"UTC",
"parse",
"now",
"RegExpGetLastMatch",
"RegExpGetLastParen",
"RegExpGetLeftContext",
"RegExpGetRightContext",
"stringify",
"Arguments",
"context_extension",
"(context func. result caches)",
"(context norm. map cache)",
"builtins",
"reverse",
"ToString",
"min",
"exp",
"setUTCMinutes",
"localeCompare",
"DefaultNumber",
"getTimezoneOffset",
"FormatMessage",
"BasicSerializeArray",
"CharCodeToHex4Str",
"getMilliseconds",
"getUTCSeconds",
"sup",
"InstallFunctions",
"italics",
"ConvertToLocaleString",
"CallSiteIsNative",
"InternalArray",
"toGMTString",
"Revive",
"CallSiteGetFunction",
"Delete",
"ceil",
"SimpleSlice",
"COMPARE",
"TimeInYear",
"lastIndexOf",
"captureStackTrace",
"ScriptSourceLine",
"SetUpString",
"ScriptNameOrSourceURL",
"SHR",
"SetUpFunction",
"CALL_NON_FUNCTION",
"ToStringArray",
"SmartSlice",
"ArrayPush",
"SHL",
"CallSiteGetFunctionName",
"ScriptSourceSlice",
"CreateDate",
"SetUpRegExp",
"reduce",
"getMinutes",
"SetUpNumber",
"toLocaleLowerCase",
"URIDecodeOctets",
"CallSiteIsEval",
"ToInteger",
"Join",
"SmartMove",
"log",
"FormatRawStackTrace",
"ReplaceResultBuilder",
"DoRegExpExec",
"FunctionSourceString",
"isAlphaNumeric",
"toLowerCase",
"FormatEvalOrigin",
"setDate",
"UseSparseVariant",
"GetStackTraceLine",
"setMonth",
"ToPropertyDescriptor",
"ToBoolean",
"BIT_OR",
"DefaultString",
"ConfigureTemplateInstance",
"toISOString",
"MakeTime",
"CallSite",
"URIAddEncodedOctetToBuffer",
"BasicSerializeObject",
"charAt",
"ThrowDateTypeError",
"substring",
"SerializeArray",
"SparseReverse",
"floor",
"TimeClip",
"bold",
"MakeEvalError",
"CallSiteToString",
"setFullYear",
"MakeGenericError",
"setUTCMonth",
"SetUpError",
"getFullYear",
"ScriptLocationFromPosition",
"TimeStringUTC",
"strike",
"Decode",
"RegExpMakeCaptureGetter",
"FILTER_KEY",
"SimpleMove",
"BIT_AND",
"SetUpLockedPrototype",
"MUL",
"toExponential",
"UNARY_MINUS",
"IsGenericDescriptor",
"abs",
"concat",
"atan2",
"GetPropertyWithoutInvokingMonkeyGetters",
"CALL_FUNCTION_PROXY_AS_CONSTRUCTOR",
"getUTCMinutes",
"SetUpUri",
"pow",
"CallSiteGetFileName",
"setUTCFullYear",
"getUTCFullYear",
"toLocaleUpperCase",
"acos",
"DefineArrayProperty",
"CALL_FUNCTION_PROXY",
"CallSiteGetThis",
"CallSiteIsConstructor",
"SameValue",
"HtmlEscape",
"setHours",
"URIEncodeOctets",
"GetSortedArrayKeys",
"MakeRangeError",
"IsAccessorDescriptor",
"ConvertDescriptorArrayToDescriptor",
"IsPrimitive",
"CallSiteGetScriptNameOrSourceURL",
"TO_STRING",
"indexOf",
"getSeconds",
"CallSiteGetPosition",
"ToInt32",
"MakeTypeError",
"MOD",
"HexValueOf",
"setUTCSeconds",
"compile",
"getUTCMilliseconds",
"JSONSerialize",
"ArraySplice",
"tan",
"APPLY_PREPARE",
"Instantiate",
"GetSourceLine",
"slice",
"SetUpArray",
"round",
"getYear",
"FormatString",
"CallTrap1",
"DefineObjectProperty",
"getUTCHours",
"getDay",
"setUTCMilliseconds",
"match",
"ToNumber",
"trimLeft",
"MakeReferenceError",
"big",
"fontcolor",
"getUTCDay",
"GetOwnEnumerablePropertyNames",
"URIHexCharsToCharCode",
"setUTCDate",
"setMinutes",
"ScriptLineCount",
"TrimRegExp",
"ToUint32",
"anchor",
"SetUpMath",
"sub",
"toUpperCase",
"CallSiteGetEvalOrigin",
"getUTCMonth",
"ToCompletePropertyDescriptor",
"asin",
"STRING_ADD_RIGHT",
"reduceRight",
"SourceSliceSourceText",
"STRING_ADD_LEFT",
"SourceSlice",
"ToDetailString",
"StringReplaceNonGlobalRegExpWithFunction",
"TimeString",
"DefineOwnProperty",
"DatePrintString",
"GetPositionInLine",
"SourceLocation",
"small",
"LocalTimezone",
"GetTypeName",
"toPrecision",
"CallTrap2",
"replace",
"PadInt",
"DoConstructRegExp",
"ResetDateCache",
"GetLineNumber",
"ArrayPop",
"NewFunction",
"ConvertToString",
"ScriptLineFromPosition",
"filter",
"CALL_NON_FUNCTION_AS_CONSTRUCTOR",
"toUTCString",
"SUB",
"toTimeString",
"ProxyFix",
"TwoDigitString",
"sort",
"SetUpDate",
"Script",
"APPLY_OVERFLOW",
"ArraySlice",
"FormatStackTrace",
"LongDateString",
"RegExpConstructor",
"SetUpObject",
"SAR",
"NonStringToString",
"max",
"INSTANCE_OF",
"split",
"setUTCHours",
"ExpandReplacement",
"RegExpExecNoTests",
"toLocaleTimeString",
"GetTrap",
"CallSiteGetLineNumber",
"IsDataDescriptor",
"blink",
"URIEncodeSingle",
"URIEncodePair",
"random",
"EQUALS",
"getMonth",
"SourceLocationRestrict",
"SparseJoinWithSeparator",
"CallSiteIsToplevel",
"ToObject",
"link",
"MakeDay",
"DefineOneShotAccessor",
"ADD",
"IsInconsistentDescriptor",
"every",
"InstantiateFunction",
"PropertyDescriptor",
"DefineProxyProperty",
"setTime",
"fixed",
"FromPropertyDescriptor",
"join",
"test",
"OpaqueReference",
"NonNumberToNumber",
"DateString",
"setMilliseconds",
"setSeconds",
"toLocaleDateString",
"IsNativeErrorObject",
"SetUpBoolean",
"trimRight",
"CallTrap0",
"GetOwnProperty",
"BIT_NOT",
"DELETE",
"SetUpGlobal",
"some",
"ToPrimitive",
"sin",
"TO_OBJECT",
"CallSiteGetColumnNumber",
"DIV",
"StringReplaceGlobalRegExpWithFunction",
"ToStringCheckErrorObject",
"SetUpJSON",
"getDate",
"toJSON",
"getTime",
"SerializeObject",
"fontsize",
"forEach",
"IsValidHex",
"getUTCDate",
"BasicJSONSerialize",
"ArrayShift",
"TO_NUMBER",
"MakeDate",
"Encode",
"atan",
"MakeError",
"cos",
"StringSplitOnRegExp",
"substr",
"SparseJoin",
"ErrorToStringDetectCycle",
"toFixed",
"toDateString",
"LocalTimezoneString",
"ArrayConcat",
"charCodeAt",
"BIT_XOR",
"BuildResultFromMatchInfo",
"exec",
"search",
"map",
"trim",
"SourceLocationSourceText",
"SubString",
"FromGenericPropertyDescriptor",
"CaptureString",
"CallSiteGetMethodName",
"MakeSyntaxError",
"setYear",
"ScriptLocationFromLine",
"IN",
"STRICT_EQUALS",
"sqrt",
"ArrayUnshift",
"CallSiteGetTypeName",
"getHours",
"pop",
"push",
"native runtime.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar $Object=global.Object;\nvar $Array=global.Array;\nvar $String=global.String;\nvar $Number=global.Number;\nvar $Function=global.Function;\nvar $Boolean=global.Boolean;\nvar $NaN=%GetRootNaN();\nvar builtins=this;\n\n\nfunction EQUALS(a){\nif((typeof(this)==='string')&&(typeof(a)==='string'))return %StringEquals(this,a);\nvar b=this;\n\nwhile(true){\nif((typeof(b)==='number')){\nwhile(true){\nif((typeof(a)==='number'))return %NumberEquals(b,a);\nif((a==null))return 1;\nif(!(%_IsSpecObject(a))){\n\nreturn %NumberEquals(b,%ToNumber(a));\n}\na=%ToPrimitive(a,0);\n}\n}else if((typeof(b)==='string')){\nwhile(true){\nif((typeof(a)==='string'))return %StringEquals(b,a);\nif((typeof(a)==='number'))return %NumberEquals(%ToNumber(b),a);\nif((typeof(a)==='boolean'))return %NumberEquals(%ToNumber(b),%ToNumber(a));\nif((a==null))return 1;\na=%ToPrimitive(a,0);\n}\n}else if((typeof(b)==='boolean')){\nif((typeof(a)==='boolean'))return %_ObjectEquals(b,a)?0:1;\nif((a==null))return 1;\nif((typeof(a)==='number'))retur",
"$Object",
"$Array",
"$String",
"$Number",
"$Function",
"$Boolean",
"$NaN",
"system / TypeFeedbackInfo",
"system / JSGlobalPropertyCell",
".result",
"b",
"c",
"d",
"e",
"f",
"arguments",
"native v8natives.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar $isNaN=GlobalIsNaN;\nvar $isFinite=GlobalIsFinite;\n\n\n\n\n\nfunction InstallFunctions(a,b,c){\nif(c.length>=8){\n%OptimizeObjectForAddingMultipleProperties(a,c.length>>1);\n}\nfor(var d=0;d>1)+(b?b.length:0);\nif(e>=4){\n%OptimizeObjectForAddingMultipleProperties(d,e);\n}\nif(b){\nfor(var f=0;f>4];\nb[c++]=hexCharCodeArray[a&0x0F];\nreturn c;\n}\n\n\nfunction URIEncodeOctets(a,b,c){\nif(hexCharCodeArray===0){\nhexCharCodeArray=[48,49,50,51,52,53,54,55,56,57,\n65,66,67,68,69,70];\n}\nc=URIAddEncodedOctetToBuffer(a[0],b,c);\nif(a[1])c=URIAddEncodedOctetToBuffer(a[1],b,c);\nif(a[2])c=URIAddEncodedOctetToBuffer(a[2],b,c);\nif(a[3])c=URIAddEncodedOctetToBuffer(a[3],b,c);\nreturn c;\n}\n\n\nfunction URIEncodeSingle(a,b,c){\nvar d=(a>>12)&0xF;\nvar g=(a>>6)&63;\nvar h=a&63;\nvar i=new $Array(3);\nif(a<=0x007F){\ni[0]=a;\n}else if(a<=0x07FF){\ni[0]=g+192;\ni[1]=h+128;\n}else{\ni[0]=d+224;\ni[1]=g+128;\ni[2]=h+128;\n}\nreturn URIEncodeOctets(i,b,c);\n}\n\n\nfunction URIEncodePair(a,b,c,d){\nvar g=((a>>6)&0xF)+1;\nvar h=(a>>2)&0xF;\nvar i=a&3;\nvar j=(b>>6)&0xF;\nvar k=b&63;\nvar l=new $Array(4);\nl[0]=(g>>2)+240;\nl[1]=(((g&3)<<4)|h)+128;\nl[2]=((i<<4)|j)+128;\nl[3]=k+128;\nreturn URIEncodeOctets(l",
"hexCharArray",
"hexCharCodeArray",
"URIDecode",
"URIDecodeComponent",
"URIEncode",
"URIEncodeComponent",
"URIEscape",
"URIUnescape",
"native math.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar $floor=MathFloor;\nvar $abs=MathAbs;\n\n\n\nfunction MathConstructor(){}\n%FunctionSetInstanceClassName(MathConstructor,'Math');\nvar $Math=new MathConstructor();\n$Math.__proto__=$Object.prototype;\n%SetProperty(global,\"Math\",$Math,2);\n\n\nfunction MathAbs(a){\nif(%_IsSmi(a))return a>=0?a:-a;\nif(!(typeof(a)==='number'))a=NonNumberToNumber(a);\nif(a===0)return 0;\nreturn a>0?a:-a;\n}\n\n\nfunction MathAcos(a){\nif(!(typeof(a)==='number'))a=NonNumberToNumber(a);\nreturn %Math_acos(a);\n}\n\n\nfunction MathAsin(a){\nif(!(typeof(a)==='number'))a=NonNumberToNumber(a);\nreturn %Math_asin(a);\n}\n\n\nfunction MathAtan(a){\nif(!(typeof(a)==='number'))a=NonNumberToNumber(a);\nreturn %Math_atan(a);\n}\n\n\n\n\nfunction MathAtan2(a,b){\nif(!(typeof(a)==='number'))a=NonNumberToNumber(a);\nif(!(typeof(b)==='number'))b=NonNumberToNumber(b);\nreturn %Math_atan2(a,b);\n}\n\n\nfunction MathCeil(a){\nif(!(typeof(a)==='number'))a=NonNumberToNumber(a);\nreturn %Math_ceil(a);\n}\n\n\nfunction MathCos(a){\nif(!(typeof(a)==='number'))a=NonNumberTo",
"Math",
"$floor",
"$abs",
"$Math",
"MathAbs",
"MathAcos",
"MathAsin",
"MathAtan",
"MathAtan2",
"MathCeil",
"MathCos",
"MathExp",
"MathFloor",
"MathLog",
"MathMax",
"MathMin",
"MathPow",
"MathRandom",
"MathRound",
"MathSin",
"MathSqrt",
"MathTan",
"native messages.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar kAddMessageAccessorsMarker={};\n\n\n\nvar kMessages=0;\n\nfunction FormatString(a,b){\nvar c=%MessageGetArguments(b);\nvar d=\"\";\nvar g=0;\nfor(var h=0;h>>0;\nif(g<4){\n\ntry{\ni=ToDetailString(c[g]);\n}catch(e){\nif(%IsJSModule(c[g]))\ni=\"module\";\nelse if((%_IsSpecObject(c[g])))\ni=\"object\";\nelse\ni=\"#\";\n}\n}\n}\nd+=i;\n}\nreturn d;\n}\n\n\n\n\n\n\nfunction IsNativeErrorObject(a){\nswitch(%_ClassOf(a)){\ncase'Error':\ncase'EvalError':\ncase'RangeError':\ncase'ReferenceError':\ncase'SyntaxError':\ncase'TypeError':\ncase'URIError':\nreturn true;\n}\nreturn false;\n}\n\n\n\n\n\n\nfunction ToStringCheckErrorObject(a){\nif(IsNativeErrorObject(a)){\nreturn %_CallFunction(a,ErrorToString);\n}else{\nreturn ToString(a);\n}\n}\n\n\nfunction ToDetailString(a){\nif(a!=null&&(%_IsObject(a))&&a.toString===ObjectToString){\nvar b=a.constructor;\nif(typeof b==\"function\"){\nvar c=b.name;\nif((typeof(c)==='string')&&c!==\"\"){\nreturn\"#<\"",
"kAddMessageAccessorsMarker",
"kMessages",
"kLineLengthLimit",
"visited_errors",
"cyclic_error_marker",
"ErrorToString",
"kStackOverflowBoilerplate",
"SetUpError.a",
"DefineOneShotAccessor.h",
"DefineOneShotAccessor.i",
"i",
"native apinatives.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nfunction CreateDate(a){\nvar b=new $Date();\nb.setTime(a);\nreturn b;\n}\n\n\nvar kApiFunctionCache=new InternalArray();\nvar functionCache=kApiFunctionCache;\n\n\nfunction Instantiate(a,b){\nif(!%IsTemplate(a))return a;\nvar c=%GetTemplateField(a,0);\nswitch(c){\ncase 0:\nreturn InstantiateFunction(a,b);\ncase 1:\nvar d=%GetTemplateField(a,2);\n\n\nvar g=typeof d==='undefined'?\n{}:new(Instantiate(d))();\nConfigureTemplateInstance(g,a);\ng=%ToFastProperties(g);\nreturn g;\ndefault:\nthrow'Unknown API tag <'+c+'>';\n}\n}\n\n\nfunction InstantiateFunction(a,b){\n\n\nvar c=kApiFunctionCache;\nvar d=%GetTemplateField(a,2);\nvar g=\n(d in c)&&(c[d]!=-1);\nif(!g){\ntry{\nc[d]=null;\nvar h=%CreateApiFunction(a);\nif(b)%FunctionSetName(h,b);\nc[d]=h;\nvar i=%GetTemplateField(a,5);\nvar j=%GetTemplateField(a,14);\n\n\nh.prototype=typeof i==='undefined'?\n{}:Instantiate(i);\nif(j&(1<<3)){\n%FunctionSetReadOnlyPrototype(h);\n}\n%SetProperty(h.prototype,\"constructor\",h,2);\nvar k=%GetTemplateField(a,6);\n\n\nif(!(typeof k==='undefined')){\nvar l=",
"kApiFunctionCache",
"functionCache",
"native date.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar $Date=global.Date;\n\n\nfunction ThrowDateTypeError(){\nthrow new $TypeError('this is not a Date object.');\n}\n\n\nvar timezone_cache_time=$NaN;\nvar timezone_cache_timezone;\n\nfunction LocalTimezone(a){\nif((!%_IsSmi(%IS_VAR(a))&&!(a==a)))return\"\";\nif(a==timezone_cache_time){\nreturn timezone_cache_timezone;\n}\nvar b=%DateLocalTimezone(a);\ntimezone_cache_time=a;\ntimezone_cache_timezone=b;\nreturn b;\n}\n\n\nfunction UTC(a){\nif((!%_IsSmi(%IS_VAR(a))&&!(a==a)))return a;\n\n\nreturn %DateToUTC(a);\n}\n\n\n\nfunction MakeTime(a,b,c,d){\nif(!$isFinite(a))return $NaN;\nif(!$isFinite(b))return $NaN;\nif(!$isFinite(c))return $NaN;\nif(!$isFinite(d))return $NaN;\nreturn(%_IsSmi(%IS_VAR(a))?a:%NumberToInteger(ToNumber(a)))*3600000\n+(%_IsSmi(%IS_VAR(b))?b:%NumberToInteger(ToNumber(b)))*60000\n+(%_IsSmi(%IS_VAR(c))?c:%NumberToInteger(ToNumber(c)))*1000\n+(%_IsSmi(%IS_VAR(d))?d:%NumberToInteger(ToNumber(d)));\n}\n\n\n\nfunction TimeInYear(a){\nreturn DaysInYear(a)*86400000;\n}\n\n\n\n\n\n\n\n\nfunction MakeDay(a,b,c){\nif(!$is",
"time",
"string",
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Sat",
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec",
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"January",
"February",
"March",
"April",
"June",
"July",
"August",
"September",
"October",
"November",
"December",
"$Date",
"timezone_cache_time",
"timezone_cache_timezone",
"Date_cache",
"WeekDays",
"Months",
"LongWeekDays",
"LongMonths",
"parse_buffer",
"DateParse",
"DateUTC",
"DateNow",
"DateToString",
"DateToDateString",
"DateToTimeString",
"DateToLocaleString",
"DateToLocaleDateString",
"DateToLocaleTimeString",
"DateValueOf",
"DateGetTime",
"DateGetFullYear",
"DateGetUTCFullYear",
"DateGetMonth",
"DateGetUTCMonth",
"DateGetDate",
"DateGetUTCDate",
"DateGetDay",
"DateGetUTCDay",
"DateGetHours",
"DateGetUTCHours",
"DateGetMinutes",
"DateGetUTCMinutes",
"DateGetSeconds",
"DateGetUTCSeconds",
"DateGetMilliseconds",
"DateGetUTCMilliseconds",
"DateGetTimezoneOffset",
"DateSetTime",
"DateSetMilliseconds",
"DateSetUTCMilliseconds",
"DateSetSeconds",
"DateSetUTCSeconds",
"DateSetMinutes",
"DateSetUTCMinutes",
"DateSetHours",
"DateSetUTCHours",
"DateSetDate",
"DateSetUTCDate",
"DateSetMonth",
"DateSetUTCMonth",
"DateSetFullYear",
"DateSetUTCFullYear",
"DateToUTCString",
"DateGetYear",
"DateSetYear",
"DateToGMTString",
"DateToISOString",
"DateToJSON",
"ok",
"j",
"k",
"m",
"o",
"native json.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar $JSON=global.JSON;\n\nfunction Revive(a,b,c){\nvar d=a[b];\nif((%_IsObject(d))){\nif((%_IsArray(d))){\nvar g=d.length;\nfor(var h=0;h0){\nvar o=\",\\n\"+d;\nm=\"[\\n\"+d+i.join(o)+\"\\n\"+\nh+\"]\";\n}else{\nm=\"[]\";\n}\nc.pop();\nreturn ",
"$JSON",
"JSONParse",
"JSONStringify",
"native regexp.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar $RegExp=global.RegExp;\n\n\n\nfunction DoConstructRegExp(a,b,c){\n\nif((%_IsRegExp(b))){\nif(!(typeof(c)==='undefined')){\nthrow MakeTypeError('regexp_flags',[]);\n}\nc=(b.global?'g':'')\n+(b.ignoreCase?'i':'')\n+(b.multiline?'m':'');\nb=b.source;\n}\n\nb=(typeof(b)==='undefined')?'':ToString(b);\nc=(typeof(c)==='undefined')?'':ToString(c);\n\nvar d=false;\nvar g=false;\nvar h=false;\nfor(var i=0;i\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the 'Software'), to\n// deal in the Software without restriction, including without limitation the\n// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n// sell copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n",
"replacer",
"truncate",
"getMessage",
"fail",
"_deepEqual",
"isUndefinedOrNull",
"isArguments",
"objEquiv",
"expectedException",
"_throws",
"AssertionError",
"equal",
"notEqual",
"deepEqual",
"notDeepEqual",
"strictEqual",
"notStrictEqual",
"assert.throws",
"assert.doesNotThrow",
"assert.ifError",
"util",
"pSlice",
"util.js",
"italic",
"underline",
"inverse",
"white",
"grey",
"black",
"blue",
"cyan",
"green",
"magenta",
"red",
"yellow",
"special",
"number",
"boolean",
"date",
"regexp",
"stylizeWithColor",
"stylizeNoColor",
"arrayToHash",
"formatValue",
"formatPrimitive",
"formatError",
"formatArray",
"formatProperty",
"reduceToSingleString",
"isRegExp",
"isDate",
"isError",
"objectToString",
"pad",
"timestamp",
"pump",
"exports.format",
"exports.deprecate",
"exports.print",
"exports.puts",
"exports.debug",
"exports.error",
"exports.log",
"exports.inherits",
"exports._extend",
"formatRegExp",
"error",
"months",
"String.prototype.charAt",
"%[sdj%]",
"deprecated",
"msg",
"warned",
"enumerable",
"writable",
"configurable",
"ctor",
"superCtor",
"global.setTimeout",
"global.setInterval",
"global.clearTimeout",
"global.clearInterval",
"global.setImmediate",
"global.clearImmediate",
"process.assert",
"config",
"String.prototype.split",
"Array.prototype.join",
"String.prototype.replace",
"key",
"tickDone",
"maxTickWarn",
"_tickFromSpinner",
"_tickCallback",
"_tickDomainCallback",
"nextTick",
"_nextDomainTick",
"_needTickCallback",
"nextTickQueue",
"needSpinner",
"inTick",
"infoBox",
"length",
"index",
"depth",
"process.openStdin",
"stdin",
"stdout",
"stderr",
"process.exit",
"process.kill",
"isSignal",
"process.on.process.addListener",
"process.removeListener",
"signalWraps",
"addListener",
"removeListener",
"fd",
"cp",
"cwd",
"isWindows",
"argv0",
"String.prototype.indexOf",
"path.js",
"normalizeArray",
"splitPath",
"normalizeUNCRoot",
"exports.resolve",
"exports.normalize",
"exports.join",
"exports.relative",
"exports.dirname",
"exports.basename",
"exports.extname",
"exports._makeLong",
"splitDeviceRe",
"splitTailRe",
"splitPathRe",
"^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$",
"resolvedPath",
"resolvedAbsolute",
"Array.prototype.filter",
"parts",
"allowAboveRoot",
"up",
"last",
"module.js",
"statPath",
"readPackage",
"tryPackage",
"tryFile",
"tryExtensions",
"stripBOM",
"Module._debug",
"Module._findPath",
"Module._nodeModulePaths",
"Module._resolveLookupPaths",
"Module._load",
"Module._resolveFilename",
"Module.load",
"Module.require",
"Module._compile",
"Module._extensions..js",
"Module._extensions..json",
"Module.runMain",
"Module._initPaths",
"Module.requireRepl",
"modulePaths",
"debug",
"packageMainCache",
"resolvedArgv",
"\\/",
"^\\#\\!.*",
"homeDir",
"paths",
"splitter",
"request",
"parent",
"isMain",
"filename",
"cachedModule",
"replModule",
"hadException",
"resolvedModule",
"err",
"start",
"mainPaths",
"isIndex",
"parentIdPath",
"String.prototype.subString",
"exts",
"trailingSlash",
"cacheKey",
"PL",
"basePath",
"Object.keys",
"String.prototype.slice",
"requestPath",
"fs",
"stats",
"fs.js",
"rethrow",
"maybeCallback",
"makeCallback",
"assertEncoding",
"nullCheck",
"stringToFlags",
"modeNum",
"preprocessSymlinkDestination",
"toUnixTimestamp",
"writeAll",
"FSWatcher",
"StatWatcher",
"inStatWatchers",
"allocNewPool",
"ReadStream",
"WriteStream",
"SyncWriteStream",
"fs.Stats._checkModeProperty",
"fs.Stats.isDirectory",
"fs.Stats.isFile",
"fs.Stats.isBlockDevice",
"fs.Stats.isCharacterDevice",
"fs.Stats.isSymbolicLink",
"fs.Stats.isFIFO",
"fs.Stats.isSocket",
"fs.exists",
"fs.existsSync",
"fs.readFile",
"fs.readFileSync",
"fs.close",
"fs.closeSync",
"fs.open",
"fs.openSync",
"fs.read",
"fs.readSync",
"fs.write",
"fs.writeSync",
"fs.rename",
"fs.renameSync",
"fs.truncate",
"fs.truncateSync",
"fs.ftruncate",
"fs.ftruncateSync",
"fs.rmdir",
"fs.rmdirSync",
"fs.fdatasync",
"fs.fdatasyncSync",
"fs.fsync",
"fs.fsyncSync",
"fs.mkdir",
"fs.mkdirSync",
"fs.readdir",
"fs.readdirSync",
"fs.fstat",
"fs.lstat",
"fs.stat",
"fs.fstatSync",
"fs.lstatSync",
"fs.statSync",
"fs.readlink",
"fs.readlinkSync",
"fs.symlink",
"fs.symlinkSync",
"fs.link",
"fs.linkSync",
"fs.unlink",
"fs.unlinkSync",
"fs.fchmod",
"fs.fchmodSync",
"fs.lchmod",
"fs.lchmodSync",
"fs.chmod",
"fs.chmodSync",
"fs.lchown",
"fs.lchownSync",
"fs.fchown",
"fs.fchownSync",
"fs.chown",
"fs.chownSync",
"fs.utimes",
"fs.utimesSync",
"fs.futimes",
"fs.futimesSync",
"fs.writeFile",
"fs.writeFileSync",
"fs.appendFile",
"fs.appendFileSync",
"FSWatcher.start",
"FSWatcher.close",
"fs.watch",
"StatWatcher.start",
"StatWatcher.stop",
"fs.watchFile",
"fs.unwatchFile",
"realpathSync",
"realpath",
"fs.createReadStream",
"ReadStream.open",
"ReadStream._read",
"ReadStream.destroy",
"ReadStream.close",
"fs.createWriteStream",
"WriteStream.open",
"WriteStream._write",
"SyncWriteStream.write",
"SyncWriteStream.end",
"SyncWriteStream.destroy",
"O_DIRECTORY",
"O_NOCTTY",
"O_NOFOLLOW",
"O_SYMLINK",
"normalize",
"pathModule",
"binding",
"constants",
"Stream",
"Readable",
"Writable",
"kMinPoolSpace",
"O_APPEND",
"O_CREAT",
"O_EXCL",
"O_RDONLY",
"O_RDWR",
"O_SYNC",
"O_TRUNC",
"O_WRONLY",
"DEBUG",
"statWatchers",
"nextPartRe",
"splitRootRe",
"stop",
"stream.js",
"Stream.pipe",
"EE",
"_stream_readable.js",
"ReadableState",
"readableAddChunk",
"needMoreData",
"roundUpToNextPowerOf2",
"howMuchToRead",
"chunkInvalid",
"onEofChunk",
"emitReadable",
"emitReadable_",
"maybeReadMore",
"maybeReadMore_",
"pipeOnDrain",
"flow",
"pipeOnReadable",
"emitDataEvents",
"fromList",
"endReadable",
"Readable.push",
"Readable.unshift",
"Readable.setEncoding",
"Readable.read",
"Readable._read",
"Readable.pipe",
"Readable.unpipe",
"Readable.on",
"Readable.resume",
"Readable.pause",
"Readable.wrap",
"StringDecoder",
"MAX_HWM",
"_stream_writable.js",
"WriteReq",
"WritableState",
"writeAfterEnd",
"validChunk",
"decodeChunk",
"writeOrBuffer",
"doWrite",
"onwriteError",
"onwriteStateUpdate",
"onwrite",
"afterWrite",
"onwriteDrain",
"clearBuffer",
"needFinish",
"finishMaybe",
"endWritable",
"Writable.pipe",
"Writable.write",
"Writable._write",
"Writable.end",
"_stream_duplex.js",
"Duplex",
"onend",
"readable",
"Array.prototype.forEach",
"method",
"_stream_transform.js",
"TransformState",
"afterTransform",
"Transform",
"done",
"Transform.push",
"Transform._transform",
"Transform._write",
"Transform._read",
"_stream_passthrough.js",
"PassThrough",
"PassThrough._transform",
"(.*?)(?:[\\/]+|$)",
"^[\\/]*",
"Object.defineProperty",
"callback",
"er",
"property",
"cache",
"original",
"seenLinks",
"result",
"resolvedLink",
"stat",
"linkTarget",
"knownHard",
"pos",
"current",
"base",
"previous",
"RegExp.prototype.exec",
"extension",
"message",
"root",
"dir",
"String.prototype.substr",
"from",
"splitRe",
"joiner",
"tip",
"q",
"Array.prototype.concat",
"content",
"encoding",
"flag",
"r",
"options",
"size",
"threw",
"buffer",
"buffers",
"bytesRead",
"String.prototype.toLowerCase",
"flags",
"mode",
"def",
"subject",
"offset",
"type",
"position",
"legacy",
"str",
"end",
"String.prototype.charCodeAt",
"require.resolve",
"Object.defineProperty.get",
"require.registerExtension",
"dirname",
"sandbox",
"wrapper",
"compiledWrapper",
"args",
"self",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/leak3.js",
"(function (exports, require, module, __filename, __dirname) { var heapdump = require('heapdump')\nvar string = '1 string to rule them all'\n\nvar leakyArr = []\nvar count = 2\nsetInterval(function () {\n leakyArr.push(string.replace(/1/g, count++))\n}, 0)\n\nsetInterval(function () {\n if (heapdump.writeSnapshot()) console.log('wrote snapshot')\n}, 20000)\n\n});",
"heapdump",
"leakyArr",
"count",
"EL",
"pkg",
"jsonPath",
"json",
"obj",
"prop",
"t",
"timers.js",
"insert",
"listOnTimeout",
"processImmediate",
"unrefTimeout",
"exports.unenroll",
"exports.enroll",
"exports.active",
"exports.setTimeout",
"exports.clearTimeout",
"exports.setInterval",
"exports.clearInterval",
"Timeout",
"Timeout.unref",
"Timeout.ref",
"Timeout.close",
"exports.setImmediate",
"exports.clearImmediate",
"exports._unrefActive",
"Timer",
"L",
"TIMEOUT_MAX",
"lists",
"unenroll",
"immediateQueue",
"unrefList",
"unrefTimer",
"close",
"ref",
"unref",
"setRepeat",
"getRepeat",
"again",
"_linklist.js",
"init",
"peek",
"remove",
"append",
"isEmpty",
"list",
"repeat",
"timer",
"after",
"Array.prototype.slice",
"item",
"msecs",
"nextTickLength",
"first",
"diff",
"(code deopt data)",
"(map descriptors)",
"name",
"caller",
"prototype",
"globalVariables",
"globalTimeouts",
"globalConsole",
"_lazyConstants",
"lazyConstants",
"processFatal",
"processAssert",
"processConfig",
"processNextTick",
"processStdio",
"processKillAndExit",
"processSignalHandlers",
"processChannel",
"resolveArgv0",
"(transition array)",
"evals",
"natives",
"timer_wrap",
"_source",
"_cache",
"getCached",
"exists",
"getSource",
"wrap",
"loaded",
"events",
"stream",
"_stream_readable",
"_stream_writable",
"_stream_duplex",
"_stream_transform",
"_stream_passthrough",
"timers",
"_linklist",
".setMaxListeners",
".emit",
".addListener",
".once",
".removeListener",
".removeAllListeners",
".listeners",
".listenerCount",
"usingDomains",
"setMaxListeners",
"emit",
"on",
"once",
"removeAllListeners",
"listeners",
"listenerCount",
"value_",
"hasValue_",
"writable_",
"hasWritable_",
"enumerable_",
"hasEnumerable_",
"configurable_",
"hasConfigurable_",
"get_",
"hasGetter_",
"set_",
"hasSetter_",
"version",
"moduleLoadList",
"versions",
"arch",
"platform",
"argv",
"execArgv",
"env",
"pid",
"features",
"execPath",
"_getActiveRequests",
"_getActiveHandles",
"reallyExit",
"abort",
"chdir",
"umask",
"getuid",
"setuid",
"setgid",
"getgid",
"getgroups",
"setgroups",
"initgroups",
"_kill",
"_debugProcess",
"_debugPause",
"_debugEnd",
"hrtime",
"dlopen",
"uptime",
"memoryUsage",
"_usingDomains",
"_tickInfoBox",
"_events",
"_maxListeners",
"_fatalException",
"_exiting",
"maxTickDepth",
"openStdin",
"exit",
"kill",
"mainModule",
"._fatalException",
".toString",
".write",
".slice",
".isEncoding",
".toJSON",
".concat",
".utf8Slice",
".binarySlice",
".asciiSlice",
".utf8Write",
".binaryWrite",
".asciiWrite",
".readUInt8",
".readUInt16LE",
".readUInt16BE",
".readUInt32LE",
".readUInt32BE",
".readInt8",
".readInt16LE",
".readInt16BE",
".readInt32LE",
".readInt32BE",
".readFloatLE",
".readFloatBE",
".readDoubleLE",
".readDoubleBE",
".writeUInt8",
".writeUInt16LE",
".writeUInt16BE",
".writeUInt32LE",
".writeUInt32BE",
".writeInt8",
".writeInt16LE",
".writeInt16BE",
".writeInt32LE",
".writeInt32BE",
".writeFloatLE",
".writeFloatBE",
".writeDoubleLE",
".writeDoubleBE",
"byteLength",
"makeFastBuffer",
"setFastBufferConstructor",
".throws",
".doesNotThrow",
".ifError",
".format",
".deprecate",
".print",
".debug",
".error",
".inherits",
"._extend",
"format",
"deprecate",
"print",
"puts",
"inherits",
"_extend",
"colors",
"styles",
"throws",
"doesNotThrow",
"ifError",
"super_",
"INSPECT_MAX_BYTES",
"write",
"readUInt8",
"readUInt16LE",
"readUInt16BE",
"readUInt32LE",
"readUInt32BE",
"readInt8",
"readInt16LE",
"readInt16BE",
"readInt32LE",
"readInt32BE",
"writeUInt8",
"writeUInt16LE",
"writeUInt16BE",
"writeUInt32LE",
"writeUInt32BE",
"writeInt8",
"writeInt16LE",
"writeInt16BE",
"writeInt32LE",
"writeInt32BE",
"used",
"isEncoding",
"poolSize",
".setTimeout",
".setInterval",
".clearTimeout",
".clearInterval",
".setImmediate",
".clearImmediate",
".assert",
"cflags",
"default_configuration",
"defines",
"include_dirs",
"libraries",
"target_defaults",
"variables",
".openStdin",
"process.on.process",
".resolve",
".normalize",
".relative",
".dirname",
".basename",
".extname",
"._makeLong",
"resolve",
"relative",
"sep",
"delimiter",
"basename",
"extname",
"existsSync",
"_makeLong",
"._debug",
"._findPath",
"._nodeModulePaths",
"._resolveLookupPaths",
"._resolveFilename",
".require",
"._compile",
"Module._extensions",
"..js",
"..json",
".runMain",
"._initPaths",
".requireRepl",
"_contextLoad",
"_pathCache",
"_extensions",
"globalPaths",
"_debug",
"_realpathCache",
"_findPath",
"_nodeModulePaths",
"_resolveLookupPaths",
"_load",
"_resolveFilename",
"runMain",
"_initPaths",
"requireRepl",
"load",
"_compile",
".js",
".json",
".node",
"fs.Stats",
"._checkModeProperty",
".isDirectory",
".isFile",
".isBlockDevice",
".isCharacterDevice",
".isSymbolicLink",
".isFIFO",
".isSocket",
".existsSync",
".readFileSync",
".renameSync",
".truncateSync",
".ftruncateSync",
".fdatasyncSync",
".readdirSync",
".readlinkSync",
".symlinkSync",
".unlinkSync",
".fchmodSync",
".lchmodSync",
".lchownSync",
".fchownSync",
".utimesSync",
".futimesSync",
".writeFileSync",
".appendFile",
".appendFileSync",
".start",
".close",
".stop",
".unwatchFile",
".createReadStream",
".open",
"._read",
".destroy",
".createWriteStream",
"._write",
".end",
"_checkModeProperty",
"isDirectory",
"isFile",
"isBlockDevice",
"isCharacterDevice",
"isSymbolicLink",
"isFIFO",
"isSocket",
"Stats",
"open",
"read",
"fdatasync",
"fsync",
"rename",
"ftruncate",
"rmdir",
"mkdir",
"readdir",
"lstat",
"fstat",
"symlink",
"readlink",
"unlink",
"chmod",
"fchmod",
"chown",
"fchown",
"utimes",
"futimes",
"pipe",
".push",
".unshift",
".setEncoding",
".read",
".pipe",
".unpipe",
".resume",
".pause",
".wrap",
"_fromList",
"setEncoding",
"_read",
"unpipe",
"resume",
"pause",
"chunk",
"_write",
"._transform",
"_transform",
"readFile",
"readFileSync",
"_stringToFlags",
"closeSync",
"openSync",
"readSync",
"writeSync",
"renameSync",
"truncateSync",
"ftruncateSync",
"rmdirSync",
"fdatasyncSync",
"fsyncSync",
"mkdirSync",
"readdirSync",
"fstatSync",
"lstatSync",
"statSync",
"readlinkSync",
"symlinkSync",
"linkSync",
"unlinkSync",
"fchmodSync",
"lchmod",
"lchmodSync",
"chmodSync",
"lchown",
"lchownSync",
"fchownSync",
"chownSync",
"_toUnixTimestamp",
"utimesSync",
"futimesSync",
"writeFile",
"writeFileSync",
"appendFile",
"appendFileSync",
"watch",
"watchFile",
"unwatchFile",
"createReadStream",
"FileReadStream",
"createWriteStream",
"FileWriteStream",
"destroy",
"destroySoon",
"dev",
"nlink",
"uid",
"gid",
"rdev",
"blksize",
"ino",
"blocks",
"atime",
"mtime",
"ctime",
"children",
".get",
".registerExtension",
"writeSnapshot",
".unenroll",
".enroll",
".active",
".unref",
"._unrefActive",
"enroll",
"active",
"setTimeout",
"clearTimeout",
"setInterval",
"clearInterval",
"setImmediate",
"clearImmediate",
"_unrefActive",
"_idleNext",
"_idlePrev",
"_idleTimeout",
"_idleStart",
"_onTimeout",
"_repeat",
"ontimeout",
"stack_overflow",
"darwin",
"x64",
"/Users/wavded/.nvm/v0.10.25/bin/node",
"v0.10.25",
"Binding evals",
"Binding natives",
"NativeModule events",
"NativeModule buffer",
"Binding buffer",
"NativeModule assert",
"NativeModule util",
"NativeModule path",
"NativeModule module",
"NativeModule fs",
"Binding fs",
"Binding constants",
"NativeModule stream",
"NativeModule _stream_readable",
"NativeModule _stream_writable",
"NativeModule _stream_duplex",
"NativeModule _stream_transform",
"NativeModule _stream_passthrough",
"NativeModule timers",
"Binding timer_wrap",
"NativeModule _linklist",
".configurable_",
"BYTES_PER_ELEMENT",
"subarray",
"getUint8",
"getInt8",
"getUint16",
"getInt16",
"getUint32",
"getInt32",
"getFloat32",
"getFloat64",
"setUint8",
"setInt8",
"setUint16",
"setInt16",
"setUint32",
"setInt32",
"setFloat32",
"setFloat64",
".globalVariables",
".globalTimeouts",
".globalConsole",
".lazyConstants",
".processFatal",
".processAssert",
".processConfig",
".processNextTick",
".processStdio",
".processKillAndExit",
".processSignalHandlers",
".processChannel",
".resolveArgv0",
"util.p: Use console.error() instead.",
"util.exec is now called `child_process.exec`.",
"util.pump() is deprecated. Use readableStream.pipe() instead.",
"process.on",
".process",
":",
"path.exists is now called `fs.exists`.",
"path.existsSync is now called `fs.existsSync`.",
"._extensions",
"/Users/wavded/.node_modules",
"/Users/wavded/.node_libraries",
"/Users/wavded/.nvm/v0.10.25/lib/node",
"./build/Release/heapdump",
".defineProperty",
"registerExtension",
"node",
"1.0",
"0.10.25",
"3.14.5.9",
"1.9.0-DEV",
"0.10.23",
"1.2.3",
"11",
"1.0.1e",
"NativeModule ",
"// http://wiki.commonjs.org/wiki/Unit_Testing/1.0\n//\n// THIS IS NOT TESTED NOR LIKELY TO WORK OUTSIDE V8!\n//\n// Originally from narwhal.js (http://narwhaljs.org)\n// Copyright (c) 2009 Thomas Robinson <280north.com>\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the 'Software'), to\n// deal in the Software without restriction, including without limitation the\n// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n// sell copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO",
"/*! http://mths.be/punycode v1.2.0 by @mathias */\n;(function(root) {\n\n\t/**\n\t * The `punycode` object.\n\t * @name punycode\n\t * @type Object\n\t */\n\tvar punycode,\n\n\t/** Detect free variables `define`, `exports`, `module` and `require` */\n\tfreeDefine = typeof define == 'function' && typeof define.amd == 'object' &&\n\t\tdefine.amd && define,\n\tfreeExports = typeof exports == 'object' && exports,\n\tfreeModule = typeof module == 'object' && module,\n\tfreeRequire = typeof require == 'function' && require,\n\n\t/** Highest positive signed 32-bit float value */\n\tmaxInt = 2147483647, // aka. 0x7FFFFFFF or 2^31-1\n\n\t/** Bootstring parameters */\n\tbase = 36,\n\ttMin = 1,\n\ttMax = 26,\n\tskew = 38,\n\tdamp = 700,\n\tinitialBias = 72,\n\tinitialN = 128, // 0x80\n\tdelimiter = '-', // '\\x2D'\n\n\t/** Regular expressions */\n\tregexPunycode = /^xn--/,\n\tregexNonASCII = /[^ -~]/, // unprintable ASCII chars + non-ASCII chars\n\tregexSeparators = /\\x2E|\\u3002|\\uFF0E|\\uFF61/g, // RFC 3490 separators\n\n\t/** Error messages */\n\terrors = {\n\t\t'overflow': 'Overflow: in",
"// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// 'Software'), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWI",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump",
"S_IFDIR",
"S_IFBLK",
"EWOULDBLOCK",
"ENOMSG",
"SSL_OP_ALL",
"SSL_OP_TLS_ROLLBACK_BUG",
"EADDRNOTAVAIL",
"SSL_OP_NETSCAPE_CHALLENGE_BUG",
"EACCES",
"S_IRUSR",
"S_IRGRP",
"ECHILD",
"SIGILL",
"ENODEV",
"S_IWGRP",
"ENOENT",
"NPN_ENABLED",
"SIGUSR2",
"S_IXUSR",
"EPIPE",
"SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG",
"ENOSPC",
"ENOBUFS",
"EOPNOTSUPP",
"ENOLINK",
"EBADMSG",
"S_IFSOCK",
"SSL_OP_MSIE_SSLV2_RSA_PADDING",
"ENOTDIR",
"ENOSR",
"ENOTSOCK",
"SIGTSTP",
"ETIMEDOUT",
"ENOMEM",
"SIGINT",
"ETIME",
"SIGTERM",
"EFAULT",
"ENFILE",
"SIGSYS",
"EAGAIN",
"ELOOP",
"SSL_OP_SINGLE_DH_USE",
"EBADF",
"EDESTADDRREQ",
"ENODATA",
"EISDIR",
"EDQUOT",
"SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER",
"EMFILE",
"SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG",
"S_IRWXO",
"SIGKILL",
"SSL_OP_PKCS1_CHECK_1",
"ECONNABORTED",
"S_IFCHR",
"EEXIST",
"SSL_OP_SINGLE_ECDH_USE",
"SIGXCPU",
"ENOTTY",
"S_IWUSR",
"SIGUSR1",
"EXDEV",
"S_IROTH",
"SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION",
"SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS",
"EDEADLK",
"SSL_OP_NO_TICKET",
"SSL_OP_NO_TLSv1",
"SSL_OP_SSLEAY_080_CLIENT_DH_BUG",
"SIGALRM",
"EINPROGRESS",
"S_IFREG",
"ENOSTR",
"EPROTO",
"ECONNRESET",
"EMLINK",
"EFBIG",
"EINVAL",
"EPROTONOSUPPORT",
"ENETUNREACH",
"SIGXFSZ",
"SSL_OP_EPHEMERAL_RSA",
"SSL_OP_CRYPTOPRO_TLSEXT_BUG",
"EPROTOTYPE",
"EIDRM",
"E2BIG",
"EOVERFLOW",
"SIGFPE",
"ENOSYS",
"S_IRWXG",
"ENOLCK",
"S_IFIFO",
"S_IXOTH",
"ERANGE",
"ENAMETOOLONG",
"SSL_OP_NO_QUERY_MTU",
"SSL_OP_NO_COMPRESSION",
"SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG",
"S_IXGRP",
"ECANCELED",
"SSL_OP_NO_TLSv1_1",
"EMULTIHOP",
"ETXTBSY",
"SSL_OP_CIPHER_SERVER_PREFERENCE",
"SIGPROF",
"SSL_OP_CISCO_ANYCONNECT",
"S_IRWXU",
"SIGBUS",
"SSL_OP_NO_SSLv3",
"SSL_OP_PKCS1_CHECK_2",
"ESPIPE",
"EROFS",
"ENETDOWN",
"SIGWINCH",
"EPERM",
"ENOEXEC",
"SSL_OP_MICROSOFT_SESS_ID_BUG",
"SSL_OP_COOKIE_EXCHANGE",
"S_IFMT",
"EILSEQ",
"SIGSEGV",
"SIGABRT",
"ENOPROTOOPT",
"SIGSTOP",
"SIGTRAP",
"ENXIO",
"SIGHUP",
"ENETRESET",
"SIGPIPE",
"SSL_OP_NO_SSLv2",
"EINTR",
"S_IWOTH",
"EBUSY",
"SIGTTOU",
"SIGURG",
"ESRCH",
"EHOSTUNREACH",
"EDOM",
"SIGVTALRM",
"SIGIOT",
"SIGCONT",
"SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION",
"ECONNREFUSED",
"ENOTCONN",
"SSL_OP_NO_TLSv1_2",
"S_IFLNK",
"EMSGSIZE",
"SSL_OP_TLS_D5_BUG",
"EADDRINUSE",
"EISCONN",
"ENOTSUP",
"SSL_OP_TLS_BLOCK_PADDING_BUG",
"SIGIO",
"ENOTEMPTY",
"SSL_OP_NETSCAPE_CA_DN_BUG",
"SIGQUIT",
"ESTALE",
"EAFNOSUPPORT",
"SIGCHLD",
"EALREADY",
"SIGTTIN",
"SSL_OP_LEGACY_SERVER_CONNECT",
"EIO",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump/build/Release/heapdump.node",
"/Users/wavded",
"/Users",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump/build/Release",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump/build",
"/Users/wavded/Projects/node-in-practice/trunk",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging",
"/Users/wavded/Projects/node-in-practice",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory",
"/Users/wavded/Projects",
"/Users/wavded/Projects/node-in-practice/trunk/listings",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/node_modules",
"/Users/wavded/Projects/node-in-practice/trunk/listings/node_modules",
"/Users/wavded/Projects/node-in-practice/trunk/node_modules",
"/Users/wavded/Projects/node-in-practice/node_modules",
"/Users/wavded/Projects/node_modules",
"/Users/wavded/node_modules",
"/Users/node_modules",
"/node_modules",
"tty",
"_debugger",
"dgram",
"punycode",
"vm",
"tls",
"https",
"freelist",
"os",
"sys",
"querystring",
"url",
"zlib",
"crypto",
"string_decoder",
"console",
"net",
"child_process",
"readline",
"dns",
"http",
"{\"request\":\"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/leak3.js\",\"paths\":[\"\"]}",
"{\"request\":\"heapdump\",\"paths\":[\"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules\",\"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/node_modules\",\"/Users/wavded/Projects/node-in-practice/trunk/listings/node_modules\",\"/Users/wavded/Projects/node-in-practice/trunk/node_modules\",\"/Users/wavded/Projects/node-in-practice/node_modules\",\"/Users/wavded/Projects/node_modules\",\"/Users/wavded/node_modules\",\"/Users/node_modules\",\"/node_modules\",\"/Users/wavded/.node_modules\",\"/Users/wavded/.node_libraries\",\"/Users/wavded/.nvm/v0.10.25/lib/node\"]}",
"Release",
"/usr/bin/python",
"node_shared_http_parser",
"node_use_perfctr",
"node_unsafe_optimizations",
"node_install_npm",
"node_use_dtrace",
"node_tag",
"v8_use_snapshot",
"python",
"node_prefix",
"node_shared_libuv",
"node_use_etw",
"node_use_openssl",
"clang",
"host_arch",
"target_arch",
"node_shared_cares",
"node_shared_zlib",
"v8_no_strict_aliasing",
"node_shared_v8",
"v8_enable_gdbjit",
"node_shared_openssl",
"1 string to rule them all",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump/build/Release/node_modules",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump/build/node_modules",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump/node_modules",
"HasFastSmiElements",
"GetThreadCount",
"WeakMapGet",
"MessageGetArguments",
"DebugPropertyTypeFromDetails",
"PushModuleContext",
"PrepareStep",
"DebugBreak",
"ClearStepping",
"NumberCompare",
"CheckExecutionState",
"HasExternalUnsignedByteElements",
"DebugGetLoadedScripts",
"RegExpConstructResult",
"GetFunctionScopeDetails",
"NewArgumentsFast",
"StoreContextSlot",
"GetScript",
"HasFastObjectElements",
"GetOptimizationCount",
"Math_sqrt",
"GetThreadDetails",
"ExecuteInDebugContext",
"_ArgumentsLength",
"_Log",
"FunctionGetInferredName",
"DateMakeDay",
"MessageGetType",
"NumberShl",
"GetHeapUsage",
"StringParseInt",
"RegExpExecMultiple",
"WeakMapInitialize",
"StringCompare",
"CollectGarbage",
"PushWithContext",
"_StringCompare",
"NumberAnd",
"NumberShr",
"FunctionSetInstanceClassName",
"NumberSar",
"DateLocalTimezone",
"Typeof",
"NumberMod",
"SetAdd",
"DebugDisassembleConstructor",
"ThrowReferenceError",
"InitializeConstContextSlot",
"FinishArrayPrototypeSetup",
"SetHas",
"LookupAccessor",
"GetLOLPath",
"IsJSProxy",
"DebugGetProperty",
"GetLocalPropertyNames",
"NumberMul",
"_DateField",
"SummarizeLOL",
"HasProperty",
"CreateJSProxy",
"_SubString",
"_ObjectEquals",
"FunctionIsBuiltin",
"_GetFromCache",
"IsTemplate",
"DeclareContextSlot",
"IsJSFunctionProxy",
"_IsRegExp",
"CharFromCode",
"Throw",
"HasLOLEnabled",
"Math_exp",
"NumberToInteger",
"NumberOr",
"LiveEditFindSharedFunctionInfosForScript",
"_HasCachedArrayIndex",
"LocalKeys",
"NumberDiv",
"NewStringWrapper",
"NewMessageObject",
"Math_atan2",
"ProfilerResume",
"QuoteJSONStringArray",
"ToFastProperties",
"StringEquals",
"DisableAccessChecks",
"DebugDisassembleFunction",
"_MathTan",
"AllocateInNewSpace",
"NumberAdd",
"_StringCharAt",
"MapGet",
"Abort",
"IsJSModule",
"HasFastSmiOrObjectElements",
"Call",
"Math_acos",
"ClassOf",
"OptimizeObjectForAddingMultipleProperties",
"SmiLexicographicCompare",
"Math_sin",
"_IsNonNegativeSmi",
"HasExternalFloatElements",
"DebugGetPrototype",
"QuoteJSONString",
"MaterializeRegExpLiteral",
"DebugNamedInterceptorPropertyValue",
"_MathLog",
"HasElement",
"NumberSub",
"DebugPrepareStepInIfStepping",
"GetNamedInterceptorPropertyNames",
"DumpLOL",
"DateParseString",
"GetArrayKeys",
"HasExternalPixelElements",
"Math_log",
"_NumberToString",
"DebugPrint",
"CreateObjectLiteral",
"GetScopeCount",
"DebugSetScriptSource",
"MapInitialize",
"_RandomHeapNumber",
"GetProperty",
"IS_VAR",
"LiveEditReplaceFunctionCode",
"HasExternalUnsignedShortElements",
"FunctionGetSourceCode",
"PreventExtensions",
"HasFastProperties",
"_Arguments",
"FunctionSetLength",
"GetV8Version",
"_CallFunction",
"Math_atan",
"IsBreakOnException",
"LiveEditPatchFunctionPositions",
"KeyedGetProperty",
"DateToUTC",
"_IsArray",
"_IsSmi",
"ResetLOL",
"LiveEditFunctionSetScript",
"MapHas",
"DeleteLOL",
"SetNewFunctionAttributes",
"DebugConstructedBy",
"ParallelRecompile",
"CreateObjectLiteralShallow",
"SetNativeFlag",
"GetLocalElementNames",
"IsInPrototypeChain",
"LazyCompile",
"EnableAccessChecks",
"WeakMapDelete",
"Log",
"GetPropertyNamesFast",
"NumberUnaryMinus",
"ParseJson",
"WeakMapSet",
"ClearFunctionTypeFeedback",
"StringBuilderJoin",
"MapDelete",
"Apply",
"NewClosure",
"PrintLOLObj",
"Interrupt",
"IsPropertyEnumerable",
"BoundFunctionGetBindings",
"FunctionGetName",
"NewGlobalContext",
"DeleteProperty",
"CreateApiFunction",
"DebugPropertyIndexFromDetails",
"DebugPropertyAttributesFromDetails",
"NumberXor",
"InitializeConstGlobal",
"HasExternalArrayElements",
"_GetCachedArrayIndex",
"DeoptimizeFunction",
"FunctionNameShouldPrintAsAnonymous",
"LiveEditCompareStrings",
"_IsSpecObject",
"ResolvePossiblyDirectEval",
"WeakMapHas",
"GetLOLObjId",
"DebugCallbackSupportsStepping",
"PushBlockContext",
"NewObjectFromBound",
"LoadContextSlotNoReferenceError",
"_MathPow",
"FunctionGetScriptSourcePosition",
"HasExternalIntElements",
"TransitionElementsDoubleToObject",
"_IsRegExpEquivalent",
"Math_pow_cfunction",
"StringReplaceOneCharWithString",
"LiveEditCheckAndDropActivations",
"RegExpInitializeObject",
"DefineOrRedefineDataProperty",
"TraceExit",
"FunctionIsAPIFunction",
"GetConstructTrap",
"HaveSameMap",
"GetInterceptorInfo",
"_IsConstructCall",
"SpecialArrayFunctions",
"ReThrow",
"MessageGetStartPosition",
"Math_cos",
"StackGuard",
"LiveEditReplaceRefToNestedFunction",
"LiveEditFunctionSourceUpdated",
"DebugGetPropertyDetails",
"FunctionSetReadOnlyPrototype",
"HasExternalShortElements",
"_MathSqrt",
"LiveEditRestartFrame",
"FunctionMarkNameShouldPrintAsAnonymous",
"HasExternalUnsignedIntElements",
"ToBool",
"NotifyDeoptimized",
"FunctionSetName",
"DeclareGlobals",
"CreateArrayLiteral",
"Math_pow",
"Break",
"FunctionRemovePrototype",
"LiveEditGatherCompileInfo",
"SystemBreak",
"StringParseFloat",
"NumberNot",
"NumberToJSInt32",
"HasLocalProperty",
"DebugPrintScopes",
"_SetValueOf",
"GlobalReceiver",
"_IsStringWrapperSafeForDefaultValueOf",
"SetDebugEventListener",
"SetFlags",
"PushCatchContext",
"NumberAlloc",
"NumberToJSUint32",
"MessageGetScript",
"StoreArrayLiteralElement",
"Math_asin",
"CompileString",
"FunctionBindArguments",
"IsExtensible",
"DebugReferencedBy",
"GetFunctionScopeCount",
"GetPropertyNames",
"MapSet",
"RunningInSimulator",
"GetBreakLocations",
"GetFunctionDelegate",
"HasFastDoubleElements",
"NewStrictArgumentsFast",
"NumberToStringSkipCache",
"ProfilerPause",
"HasDictionaryElements",
"LazyRecompile",
"PromoteScheduledException",
"StringFromCharCodeArray",
"ChangeBreakOnException",
"HasFastHoleyElements",
"GetScopeDetails",
"SetScopeVariableValue",
"DateSetValue",
"CompileForOnStackReplacement",
"LiveEditReplaceScript",
"DebugEvaluate",
"GetOptimizationStatus",
"NotifyOSR",
"FinalizeInstanceSize",
"DefineOrRedefineAccessorProperty",
"_StringCharFromCode",
"GetLOLObjRetainers",
"GetTemplateField",
"MoveArrayContents",
"Fix",
"TransitionElementsSmiToDouble",
"_MathCos",
"NumberEquals",
"GetHandler",
"NumberToIntegerMapMinusZero",
"_IsObject",
"_ClassOf",
"EstimateNumberOfElements",
"DebugEvaluateGlobal",
"_RegExpConstructResult",
"NumberToSmi",
"GetLOLObj",
"RemoveArrayHoles",
"FunctionSetPrototype",
"OptimizeFunctionOnNextCall",
"SetScriptBreakPoint",
"TraceEnter",
"_ValueOf",
"_FastAsciiArrayJoin",
"StringToNumber",
"GetFromCache",
"RoundNumber",
"SetDisableBreak",
"StringReplaceRegExpWithString",
"PushIfAbsent",
"_StringCharCodeAt",
"Math_tan",
"SetInitialize",
"DateCurrentTime",
"GetIndexedInterceptorElementNames",
"SetCode",
"_StringAdd",
"GetConstructorDelegate",
"FunctionGetPositionForOffset",
"SetFunctionBreakPoint",
"InitializeVarGlobal",
"GetArgumentsProperty",
"AllocateHeapNumber",
"Math_floor",
"GetRootNaN",
"InfoLOL",
"DebugTrace",
"DeleteContextSlot",
"GetCallTrap",
"ThrowNotDateError",
"GetFrameCount",
"HasExternalDoubleElements",
"GetFunctionCodePositionFromSource",
"_RegExpExec",
"StringBuilderConcat",
"SetProperty",
"DebugIndexedInterceptorElementValue",
"_IsUndetectableObject",
"CollectStackTrace",
"_MathSin",
"FunctionGetScript",
"Math_ceil",
"CheckIsBootstrapping",
"NewFunctionContext",
"HasExternalByteElements",
"GetFrameDetails",
"NumberToRadixString",
"GetPrototype",
"StringToArray",
"SetExpectedNumberOfProperties",
"CaptureLOL",
"CreateJSFunctionProxy",
"QuoteJSONStringComma",
"LoadContextSlot",
"GlobalPrint",
"ClearBreakPoint",
"SetDelete",
"_IsFunction",
"StringAdd",
"IgnoreAttributesAndSetProperty",
"CreateArrayLiteralShallow",
"NewObject",
"GetDefaultReceiver",
"2 string to rule them all",
"3 string to rule them all",
"4 string to rule them all",
"5 string to rule them all",
"6 string to rule them all",
"7 string to rule them all",
"8 string to rule them all",
"9 string to rule them all",
"10 string to rule them all",
"11 string to rule them all",
"12 string to rule them all",
"13 string to rule them all",
"14 string to rule them all",
"15 string to rule them all",
"16 string to rule them all",
"17 string to rule them all",
"18 string to rule them all",
"19 string to rule them all",
"20 string to rule them all",
"21 string to rule them all",
"22 string to rule them all",
"23 string to rule them all",
"24 string to rule them all",
"25 string to rule them all",
"26 string to rule them all",
"27 string to rule them all",
"28 string to rule them all",
"29 string to rule them all",
"30 string to rule them all",
"31 string to rule them all",
"32 string to rule them all",
"33 string to rule them all",
"34 string to rule them all",
"35 string to rule them all",
"36 string to rule them all",
"37 string to rule them all",
"38 string to rule them all",
"39 string to rule them all",
"40 string to rule them all",
"41 string to rule them all",
"42 string to rule them all",
"43 string to rule them all",
"44 string to rule them all",
"45 string to rule them all",
"46 string to rule them all",
"47 string to rule them all",
"48 string to rule them all",
"49 string to rule them all",
"50 string to rule them all",
"51 string to rule them all",
"52 string to rule them all",
"53 string to rule them all",
"54 string to rule them all",
"55 string to rule them all",
"56 string to rule them all",
"57 string to rule them all",
"58 string to rule them all",
"59 string to rule them all",
"60 string to rule them all",
"61 string to rule them all",
"62 string to rule them all",
"63 string to rule them all",
"64 string to rule them all",
"65 string to rule them all",
"66 string to rule them all",
"67 string to rule them all",
"68 string to rule them all",
"69 string to rule them all",
"70 string to rule them all",
"71 string to rule them all",
"72 string to rule them all",
"73 string to rule them all",
"74 string to rule them all",
"75 string to rule them all",
"76 string to rule them all",
"77 string to rule them all",
"78 string to rule them all",
"79 string to rule them all",
"80 string to rule them all",
"81 string to rule them all",
"82 string to rule them all",
"83 string to rule them all",
"84 string to rule them all",
"85 string to rule them all",
"86 string to rule them all",
"87 string to rule them all",
"88 string to rule them all",
"89 string to rule them all",
"90 string to rule them all",
"91 string to rule them all",
"92 string to rule them all",
"93 string to rule them all",
"94 string to rule them all",
"95 string to rule them all",
"96 string to rule them all",
"97 string to rule them all",
"98 string to rule them all",
"99 string to rule them all",
"100 string to rule them all",
"101 string to rule them all",
"102 string to rule them all",
"103 string to rule them all",
"104 string to rule them all",
"105 string to rule them all",
"106 string to rule them all",
"107 string to rule them all",
"108 string to rule them all",
"109 string to rule them all",
"110 string to rule them all",
"111 string to rule them all",
"112 string to rule them all",
"113 string to rule them all",
"114 string to rule them all",
"115 string to rule them all",
"116 string to rule them all",
"117 string to rule them all",
"118 string to rule them all",
"119 string to rule them all",
"120 string to rule them all",
"121 string to rule them all",
"122 string to rule them all",
"123 string to rule them all",
"124 string to rule them all",
"125 string to rule them all",
"126 string to rule them all",
"127 string to rule them all",
"128 string to rule them all",
"129 string to rule them all",
"130 string to rule them all",
"131 string to rule them all",
"132 string to rule them all",
"133 string to rule them all",
"134 string to rule them all",
"135 string to rule them all",
"136 string to rule them all",
"137 string to rule them all",
"138 string to rule them all",
"139 string to rule them all",
"140 string to rule them all",
"141 string to rule them all",
"142 string to rule them all",
"143 string to rule them all",
"144 string to rule them all",
"145 string to rule them all",
"146 string to rule them all",
"147 string to rule them all",
"148 string to rule them all",
"149 string to rule them all",
"150 string to rule them all",
"151 string to rule them all",
"152 string to rule them all",
"153 string to rule them all",
"154 string to rule them all",
"155 string to rule them all",
"156 string to rule them all",
"157 string to rule them all",
"158 string to rule them all",
"159 string to rule them all",
"160 string to rule them all",
"161 string to rule them all",
"162 string to rule them all",
"163 string to rule them all",
"164 string to rule them all",
"165 string to rule them all",
"166 string to rule them all",
"167 string to rule them all",
"168 string to rule them all",
"169 string to rule them all",
"170 string to rule them all",
"171 string to rule them all",
"172 string to rule them all",
"173 string to rule them all",
"174 string to rule them all",
"175 string to rule them all",
"176 string to rule them all",
"177 string to rule them all",
"178 string to rule them all",
"179 string to rule them all",
"180 string to rule them all",
"181 string to rule them all",
"182 string to rule them all",
"183 string to rule them all",
"184 string to rule them all",
"185 string to rule them all",
"186 string to rule them all",
"187 string to rule them all",
"188 string to rule them all",
"189 string to rule them all",
"190 string to rule them all",
"191 string to rule them all",
"192 string to rule them all",
"193 string to rule them all",
"194 string to rule them all",
"195 string to rule them all",
"196 string to rule them all",
"197 string to rule them all",
"198 string to rule them all",
"199 string to rule them all",
"200 string to rule them all",
"201 string to rule them all",
"202 string to rule them all",
"203 string to rule them all",
"204 string to rule them all",
"205 string to rule them all",
"206 string to rule them all",
"207 string to rule them all",
"208 string to rule them all",
"209 string to rule them all",
"210 string to rule them all",
"211 string to rule them all",
"212 string to rule them all",
"213 string to rule them all",
"214 string to rule them all",
"215 string to rule them all",
"216 string to rule them all",
"217 string to rule them all",
"218 string to rule them all",
"219 string to rule them all",
"220 string to rule them all",
"221 string to rule them all",
"222 string to rule them all",
"223 string to rule them all",
"224 string to rule them all",
"225 string to rule them all",
"226 string to rule them all",
"227 string to rule them all",
"228 string to rule them all",
"229 string to rule them all",
"230 string to rule them all",
"231 string to rule them all",
"232 string to rule them all",
"233 string to rule them all",
"234 string to rule them all",
"235 string to rule them all",
"236 string to rule them all",
"237 string to rule them all",
"238 string to rule them all",
"239 string to rule them all",
"240 string to rule them all",
"241 string to rule them all",
"242 string to rule them all",
"243 string to rule them all",
"244 string to rule them all",
"245 string to rule them all",
"246 string to rule them all",
"247 string to rule them all",
"248 string to rule them all",
"249 string to rule them all",
"250 string to rule them all",
"251 string to rule them all",
"252 string to rule them all",
"253 string to rule them all",
"254 string to rule them all",
"255 string to rule them all",
"256 string to rule them all",
"257 string to rule them all",
"258 string to rule them all",
"259 string to rule them all",
"260 string to rule them all",
"261 string to rule them all",
"262 string to rule them all",
"263 string to rule them all",
"264 string to rule them all",
"265 string to rule them all",
"266 string to rule them all",
"267 string to rule them all",
"268 string to rule them all",
"269 string to rule them all",
"270 string to rule them all",
"271 string to rule them all",
"272 string to rule them all",
"273 string to rule them all",
"274 string to rule them all",
"275 string to rule them all",
"276 string to rule them all",
"277 string to rule them all",
"278 string to rule them all",
"279 string to rule them all",
"280 string to rule them all",
"281 string to rule them all",
"282 string to rule them all",
"283 string to rule them all",
"284 string to rule them all",
"285 string to rule them all",
"286 string to rule them all",
"287 string to rule them all",
"288 string to rule them all",
"289 string to rule them all",
"290 string to rule them all",
"291 string to rule them all",
"292 string to rule them all",
"293 string to rule them all",
"294 string to rule them all",
"295 string to rule them all",
"296 string to rule them all",
"297 string to rule them all",
"298 string to rule them all",
"299 string to rule them all",
"300 string to rule them all",
"301 string to rule them all",
"302 string to rule them all",
"303 string to rule them all",
"304 string to rule them all",
"305 string to rule them all",
"306 string to rule them all",
"307 string to rule them all",
"308 string to rule them all",
"309 string to rule them all",
"310 string to rule them all",
"311 string to rule them all",
"312 string to rule them all",
"313 string to rule them all",
"314 string to rule them all",
"315 string to rule them all",
"316 string to rule them all",
"317 string to rule them all",
"318 string to rule them all",
"319 string to rule them all",
"320 string to rule them all",
"321 string to rule them all",
"322 string to rule them all",
"323 string to rule them all",
"324 string to rule them all",
"325 string to rule them all",
"326 string to rule them all",
"327 string to rule them all",
"328 string to rule them all",
"329 string to rule them all",
"330 string to rule them all",
"331 string to rule them all",
"332 string to rule them all",
"333 string to rule them all",
"334 string to rule them all",
"335 string to rule them all",
"336 string to rule them all",
"337 string to rule them all",
"338 string to rule them all",
"339 string to rule them all",
"340 string to rule them all",
"341 string to rule them all",
"342 string to rule them all",
"343 string to rule them all",
"344 string to rule them all",
"345 string to rule them all",
"346 string to rule them all",
"347 string to rule them all",
"348 string to rule them all",
"349 string to rule them all",
"350 string to rule them all",
"351 string to rule them all",
"352 string to rule them all",
"353 string to rule them all",
"354 string to rule them all",
"355 string to rule them all",
"356 string to rule them all",
"357 string to rule them all",
"358 string to rule them all",
"359 string to rule them all",
"360 string to rule them all",
"361 string to rule them all",
"362 string to rule them all",
"363 string to rule them all",
"364 string to rule them all",
"365 string to rule them all",
"366 string to rule them all",
"367 string to rule them all",
"368 string to rule them all",
"369 string to rule them all",
"370 string to rule them all",
"371 string to rule them all",
"372 string to rule them all",
"373 string to rule them all",
"374 string to rule them all",
"375 string to rule them all",
"376 string to rule them all",
"377 string to rule them all",
"378 string to rule them all",
"379 string to rule them all",
"380 string to rule them all",
"381 string to rule them all",
"382 string to rule them all",
"383 string to rule them all",
"384 string to rule them all",
"385 string to rule them all",
"386 string to rule them all",
"387 string to rule them all",
"388 string to rule them all",
"389 string to rule them all",
"390 string to rule them all",
"391 string to rule them all",
"392 string to rule them all",
"393 string to rule them all",
"394 string to rule them all",
"395 string to rule them all",
"396 string to rule them all",
"397 string to rule them all",
"398 string to rule them all",
"399 string to rule them all",
"400 string to rule them all",
"401 string to rule them all",
"402 string to rule them all",
"403 string to rule them all",
"404 string to rule them all",
"405 string to rule them all",
"406 string to rule them all",
"407 string to rule them all",
"408 string to rule them all",
"409 string to rule them all",
"410 string to rule them all",
"411 string to rule them all",
"412 string to rule them all",
"413 string to rule them all",
"414 string to rule them all",
"415 string to rule them all",
"416 string to rule them all",
"417 string to rule them all",
"418 string to rule them all",
"419 string to rule them all",
"420 string to rule them all",
"421 string to rule them all",
"422 string to rule them all",
"423 string to rule them all",
"424 string to rule them all",
"425 string to rule them all",
"426 string to rule them all",
"427 string to rule them all",
"428 string to rule them all",
"429 string to rule them all",
"430 string to rule them all",
"431 string to rule them all",
"432 string to rule them all",
"433 string to rule them all",
"434 string to rule them all",
"435 string to rule them all",
"436 string to rule them all",
"437 string to rule them all",
"438 string to rule them all",
"439 string to rule them all",
"440 string to rule them all",
"441 string to rule them all",
"442 string to rule them all",
"443 string to rule them all",
"444 string to rule them all",
"445 string to rule them all",
"446 string to rule them all",
"447 string to rule them all",
"448 string to rule them all",
"449 string to rule them all",
"450 string to rule them all",
"451 string to rule them all",
"452 string to rule them all",
"453 string to rule them all",
"454 string to rule them all",
"455 string to rule them all",
"456 string to rule them all",
"457 string to rule them all",
"458 string to rule them all",
"459 string to rule them all",
"460 string to rule them all",
"461 string to rule them all",
"462 string to rule them all",
"463 string to rule them all",
"464 string to rule them all",
"465 string to rule them all",
"466 string to rule them all",
"467 string to rule them all",
"468 string to rule them all",
"469 string to rule them all",
"470 string to rule them all",
"471 string to rule them all",
"472 string to rule them all",
"473 string to rule them all",
"474 string to rule them all",
"475 string to rule them all",
"476 string to rule them all",
"477 string to rule them all",
"478 string to rule them all",
"479 string to rule them all",
"480 string to rule them all",
"481 string to rule them all",
"482 string to rule them all",
"483 string to rule them all",
"484 string to rule them all",
"485 string to rule them all",
"486 string to rule them all",
"487 string to rule them all",
"488 string to rule them all",
"489 string to rule them all",
"490 string to rule them all",
"491 string to rule them all",
"492 string to rule them all",
"493 string to rule them all",
"494 string to rule them all",
"495 string to rule them all",
"496 string to rule them all",
"497 string to rule them all",
"498 string to rule them all",
"499 string to rule them all",
"500 string to rule them all",
"501 string to rule them all",
"502 string to rule them all",
"503 string to rule them all",
"504 string to rule them all",
"505 string to rule them all",
"506 string to rule them all",
"507 string to rule them all",
"508 string to rule them all",
"509 string to rule them all",
"510 string to rule them all",
"511 string to rule them all",
"512 string to rule them all",
"513 string to rule them all",
"514 string to rule them all",
"515 string to rule them all",
"516 string to rule them all",
"517 string to rule them all",
"518 string to rule them all",
"519 string to rule them all",
"520 string to rule them all",
"521 string to rule them all",
"522 string to rule them all",
"523 string to rule them all",
"524 string to rule them all",
"525 string to rule them all",
"526 string to rule them all",
"527 string to rule them all",
"528 string to rule them all",
"529 string to rule them all",
"530 string to rule them all",
"531 string to rule them all",
"532 string to rule them all",
"533 string to rule them all",
"534 string to rule them all",
"535 string to rule them all",
"536 string to rule them all",
"537 string to rule them all",
"538 string to rule them all",
"539 string to rule them all",
"540 string to rule them all",
"541 string to rule them all",
"542 string to rule them all",
"543 string to rule them all",
"544 string to rule them all",
"545 string to rule them all",
"546 string to rule them all",
"547 string to rule them all",
"548 string to rule them all",
"549 string to rule them all",
"550 string to rule them all",
"551 string to rule them all",
"552 string to rule them all",
"553 string to rule them all",
"554 string to rule them all",
"555 string to rule them all",
"556 string to rule them all",
"557 string to rule them all",
"558 string to rule them all",
"559 string to rule them all",
"560 string to rule them all",
"561 string to rule them all",
"562 string to rule them all",
"563 string to rule them all",
"564 string to rule them all",
"565 string to rule them all",
"566 string to rule them all",
"567 string to rule them all",
"568 string to rule them all",
"569 string to rule them all",
"570 string to rule them all",
"571 string to rule them all",
"572 string to rule them all",
"573 string to rule them all",
"574 string to rule them all",
"575 string to rule them all",
"576 string to rule them all",
"577 string to rule them all",
"578 string to rule them all",
"579 string to rule them all",
"580 string to rule them all",
"581 string to rule them all",
"582 string to rule them all",
"583 string to rule them all",
"584 string to rule them all",
"585 string to rule them all",
"586 string to rule them all",
"587 string to rule them all",
"588 string to rule them all",
"589 string to rule them all",
"590 string to rule them all",
"591 string to rule them all",
"592 string to rule them all",
"593 string to rule them all",
"594 string to rule them all",
"595 string to rule them all",
"596 string to rule them all",
"597 string to rule them all",
"598 string to rule them all",
"599 string to rule them all",
"600 string to rule them all",
"601 string to rule them all",
"602 string to rule them all",
"603 string to rule them all",
"604 string to rule them all",
"605 string to rule them all",
"606 string to rule them all",
"607 string to rule them all",
"608 string to rule them all",
"609 string to rule them all",
"610 string to rule them all",
"611 string to rule them all",
"612 string to rule them all",
"613 string to rule them all",
"614 string to rule them all",
"615 string to rule them all",
"616 string to rule them all",
"617 string to rule them all",
"618 string to rule them all",
"619 string to rule them all",
"620 string to rule them all",
"621 string to rule them all",
"622 string to rule them all",
"623 string to rule them all",
"624 string to rule them all",
"625 string to rule them all",
"626 string to rule them all",
"627 string to rule them all",
"628 string to rule them all",
"629 string to rule them all",
"630 string to rule them all",
"631 string to rule them all",
"632 string to rule them all",
"633 string to rule them all",
"634 string to rule them all",
"635 string to rule them all",
"636 string to rule them all",
"637 string to rule them all",
"638 string to rule them all",
"639 string to rule them all",
"640 string to rule them all",
"641 string to rule them all",
"642 string to rule them all",
"643 string to rule them all",
"644 string to rule them all",
"645 string to rule them all",
"646 string to rule them all",
"647 string to rule them all",
"648 string to rule them all",
"649 string to rule them all",
"650 string to rule them all",
"651 string to rule them all",
"652 string to rule them all",
"653 string to rule them all",
"654 string to rule them all",
"655 string to rule them all",
"656 string to rule them all",
"657 string to rule them all",
"658 string to rule them all",
"659 string to rule them all",
"660 string to rule them all",
"661 string to rule them all",
"662 string to rule them all",
"663 string to rule them all",
"664 string to rule them all",
"665 string to rule them all",
"666 string to rule them all",
"667 string to rule them all",
"668 string to rule them all",
"669 string to rule them all",
"670 string to rule them all",
"671 string to rule them all",
"672 string to rule them all",
"673 string to rule them all",
"674 string to rule them all",
"675 string to rule them all",
"676 string to rule them all",
"677 string to rule them all",
"678 string to rule them all",
"679 string to rule them all",
"680 string to rule them all",
"681 string to rule them all",
"682 string to rule them all",
"683 string to rule them all",
"684 string to rule them all",
"685 string to rule them all",
"686 string to rule them all",
"687 string to rule them all",
"688 string to rule them all",
"689 string to rule them all",
"690 string to rule them all",
"691 string to rule them all",
"692 string to rule them all",
"693 string to rule them all",
"694 string to rule them all",
"695 string to rule them all",
"696 string to rule them all",
"697 string to rule them all",
"698 string to rule them all",
"699 string to rule them all",
"700 string to rule them all",
"701 string to rule them all",
"702 string to rule them all",
"703 string to rule them all",
"704 string to rule them all",
"705 string to rule them all",
"706 string to rule them all",
"707 string to rule them all",
"708 string to rule them all",
"709 string to rule them all",
"710 string to rule them all",
"711 string to rule them all",
"712 string to rule them all",
"713 string to rule them all",
"714 string to rule them all",
"715 string to rule them all",
"716 string to rule them all",
"717 string to rule them all",
"718 string to rule them all",
"719 string to rule them all",
"720 string to rule them all",
"721 string to rule them all",
"722 string to rule them all",
"723 string to rule them all",
"724 string to rule them all",
"725 string to rule them all",
"726 string to rule them all",
"727 string to rule them all",
"728 string to rule them all",
"729 string to rule them all",
"730 string to rule them all",
"731 string to rule them all",
"732 string to rule them all",
"733 string to rule them all",
"734 string to rule them all",
"735 string to rule them all",
"736 string to rule them all",
"737 string to rule them all",
"738 string to rule them all",
"739 string to rule them all",
"740 string to rule them all",
"741 string to rule them all",
"742 string to rule them all",
"743 string to rule them all",
"744 string to rule them all",
"745 string to rule them all",
"746 string to rule them all",
"747 string to rule them all",
"748 string to rule them all",
"749 string to rule them all",
"750 string to rule them all",
"751 string to rule them all",
"752 string to rule them all",
"753 string to rule them all",
"754 string to rule them all",
"755 string to rule them all",
"756 string to rule them all",
"757 string to rule them all",
"758 string to rule them all",
"759 string to rule them all",
"760 string to rule them all",
"761 string to rule them all",
"762 string to rule them all",
"763 string to rule them all",
"764 string to rule them all",
"765 string to rule them all",
"766 string to rule them all",
"767 string to rule them all",
"768 string to rule them all",
"769 string to rule them all",
"770 string to rule them all",
"771 string to rule them all",
"772 string to rule them all",
"773 string to rule them all",
"774 string to rule them all",
"775 string to rule them all",
"776 string to rule them all",
"777 string to rule them all",
"778 string to rule them all",
"779 string to rule them all",
"780 string to rule them all",
"781 string to rule them all",
"782 string to rule them all",
"783 string to rule them all",
"784 string to rule them all",
"785 string to rule them all",
"786 string to rule them all",
"787 string to rule them all",
"788 string to rule them all",
"789 string to rule them all",
"790 string to rule them all",
"791 string to rule them all",
"792 string to rule them all",
"793 string to rule them all",
"794 string to rule them all",
"795 string to rule them all",
"796 string to rule them all",
"797 string to rule them all",
"798 string to rule them all",
"799 string to rule them all",
"800 string to rule them all",
"801 string to rule them all",
"802 string to rule them all",
"803 string to rule them all",
"804 string to rule them all",
"805 string to rule them all",
"806 string to rule them all",
"807 string to rule them all",
"808 string to rule them all",
"809 string to rule them all",
"810 string to rule them all",
"811 string to rule them all",
"812 string to rule them all",
"813 string to rule them all",
"814 string to rule them all",
"815 string to rule them all",
"816 string to rule them all",
"817 string to rule them all",
"818 string to rule them all",
"819 string to rule them all",
"820 string to rule them all",
"821 string to rule them all",
"822 string to rule them all",
"823 string to rule them all",
"824 string to rule them all",
"825 string to rule them all",
"826 string to rule them all",
"827 string to rule them all",
"828 string to rule them all",
"829 string to rule them all",
"830 string to rule them all",
"831 string to rule them all",
"832 string to rule them all",
"833 string to rule them all",
"834 string to rule them all",
"835 string to rule them all",
"836 string to rule them all",
"837 string to rule them all",
"838 string to rule them all",
"839 string to rule them all",
"840 string to rule them all",
"841 string to rule them all",
"842 string to rule them all",
"843 string to rule them all",
"844 string to rule them all",
"845 string to rule them all",
"846 string to rule them all",
"847 string to rule them all",
"848 string to rule them all",
"849 string to rule them all",
"850 string to rule them all",
"851 string to rule them all",
"852 string to rule them all",
"853 string to rule them all",
"854 string to rule them all",
"855 string to rule them all",
"856 string to rule them all",
"857 string to rule them all",
"858 string to rule them all",
"859 string to rule them all",
"860 string to rule them all",
"861 string to rule them all",
"862 string to rule them all",
"863 string to rule them all",
"864 string to rule them all",
"865 string to rule them all",
"866 string to rule them all",
"867 string to rule them all",
"868 string to rule them all",
"869 string to rule them all",
"870 string to rule them all",
"871 string to rule them all",
"872 string to rule them all",
"873 string to rule them all",
"874 string to rule them all",
"875 string to rule them all",
"876 string to rule them all",
"877 string to rule them all",
"878 string to rule them all",
"879 string to rule them all",
"880 string to rule them all",
"881 string to rule them all",
"882 string to rule them all",
"883 string to rule them all",
"884 string to rule them all",
"885 string to rule them all",
"886 string to rule them all",
"887 string to rule them all",
"888 string to rule them all",
"889 string to rule them all",
"890 string to rule them all",
"891 string to rule them all",
"892 string to rule them all",
"893 string to rule them all",
"894 string to rule them all",
"895 string to rule them all",
"896 string to rule them all",
"897 string to rule them all",
"898 string to rule them all",
"899 string to rule them all",
"900 string to rule them all",
"901 string to rule them all",
"902 string to rule them all",
"903 string to rule them all",
"904 string to rule them all",
"905 string to rule them all",
"906 string to rule them all",
"907 string to rule them all",
"908 string to rule them all",
"909 string to rule them all",
"910 string to rule them all",
"911 string to rule them all",
"912 string to rule them all",
"913 string to rule them all",
"914 string to rule them all",
"915 string to rule them all",
"916 string to rule them all",
"917 string to rule them all",
"918 string to rule them all",
"919 string to rule them all",
"920 string to rule them all",
"921 string to rule them all",
"922 string to rule them all",
"923 string to rule them all",
"924 string to rule them all",
"925 string to rule them all",
"926 string to rule them all",
"927 string to rule them all",
"928 string to rule them all",
"929 string to rule them all",
"930 string to rule them all",
"931 string to rule them all",
"932 string to rule them all",
"933 string to rule them all",
"934 string to rule them all",
"935 string to rule them all",
"936 string to rule them all",
"937 string to rule them all",
"938 string to rule them all",
"939 string to rule them all",
"940 string to rule them all",
"941 string to rule them all",
"942 string to rule them all",
"943 string to rule them all",
"944 string to rule them all",
"945 string to rule them all",
"946 string to rule them all",
"947 string to rule them all",
"948 string to rule them all",
"949 string to rule them all",
"950 string to rule them all",
"951 string to rule them all",
"952 string to rule them all",
"953 string to rule them all",
"954 string to rule them all",
"955 string to rule them all",
"956 string to rule them all",
"957 string to rule them all",
"958 string to rule them all",
"959 string to rule them all",
"960 string to rule them all",
"961 string to rule them all",
"962 string to rule them all",
"963 string to rule them all",
"964 string to rule them all",
"965 string to rule them all",
"966 string to rule them all",
"967 string to rule them all",
"968 string to rule them all",
"969 string to rule them all",
"970 string to rule them all",
"971 string to rule them all",
"972 string to rule them all",
"973 string to rule them all",
"974 string to rule them all",
"975 string to rule them all",
"976 string to rule them all",
"977 string to rule them all",
"978 string to rule them all",
"979 string to rule them all",
"980 string to rule them all",
"981 string to rule them all",
"982 string to rule them all",
"983 string to rule them all",
"984 string to rule them all",
"985 string to rule them all",
"986 string to rule them all",
"987 string to rule them all",
"988 string to rule them all",
"989 string to rule them all",
"990 string to rule them all",
"991 string to rule them all",
"992 string to rule them all",
"993 string to rule them all",
"994 string to rule them all",
"995 string to rule them all",
"996 string to rule them all",
"997 string to rule them all",
"998 string to rule them all",
"999 string to rule them all",
"1000 string to rule them all",
"1001 string to rule them all",
"1002 string to rule them all",
"1003 string to rule them all",
"1004 string to rule them all",
"1005 string to rule them all",
"1006 string to rule them all",
"1007 string to rule them all",
"1008 string to rule them all",
"1009 string to rule them all",
"1010 string to rule them all",
"1011 string to rule them all",
"1012 string to rule them all",
"1013 string to rule them all",
"1014 string to rule them all",
"1015 string to rule them all",
"1016 string to rule them all",
"1017 string to rule them all",
"1018 string to rule them all",
"1019 string to rule them all",
"1020 string to rule them all",
"1021 string to rule them all",
"1022 string to rule them all",
"1023 string to rule them all",
"1024 string to rule them all",
"1025 string to rule them all",
"1026 string to rule them all",
"1027 string to rule them all",
"1028 string to rule them all",
"1029 string to rule them all",
"1030 string to rule them all",
"1031 string to rule them all",
"1032 string to rule them all",
"1033 string to rule them all",
"1034 string to rule them all",
"1035 string to rule them all",
"1036 string to rule them all",
"1037 string to rule them all",
"1038 string to rule them all",
"1039 string to rule them all",
"1040 string to rule them all",
"1041 string to rule them all",
"1042 string to rule them all",
"1043 string to rule them all",
"1044 string to rule them all",
"1045 string to rule them all",
"1046 string to rule them all",
"1047 string to rule them all",
"1048 string to rule them all",
"1049 string to rule them all",
"1050 string to rule them all",
"1051 string to rule them all",
"1052 string to rule them all",
"1053 string to rule them all",
"1054 string to rule them all",
"1055 string to rule them all",
"1056 string to rule them all",
"1057 string to rule them all",
"1058 string to rule them all",
"1059 string to rule them all",
"1060 string to rule them all",
"1061 string to rule them all",
"1062 string to rule them all",
"1063 string to rule them all",
"1064 string to rule them all",
"1065 string to rule them all",
"1066 string to rule them all",
"1067 string to rule them all",
"1068 string to rule them all",
"1069 string to rule them all",
"1070 string to rule them all",
"1071 string to rule them all",
"1072 string to rule them all",
"1073 string to rule them all",
"1074 string to rule them all",
"1075 string to rule them all",
"1076 string to rule them all",
"1077 string to rule them all",
"1078 string to rule them all",
"1079 string to rule them all",
"1080 string to rule them all",
"1081 string to rule them all",
"1082 string to rule them all",
"1083 string to rule them all",
"1084 string to rule them all",
"1085 string to rule them all",
"1086 string to rule them all",
"1087 string to rule them all",
"1088 string to rule them all",
"1089 string to rule them all",
"1090 string to rule them all",
"1091 string to rule them all",
"1092 string to rule them all",
"1093 string to rule them all",
"1094 string to rule them all",
"1095 string to rule them all",
"1096 string to rule them all",
"1097 string to rule them all",
"1098 string to rule them all",
"1099 string to rule them all",
"1100 string to rule them all",
"1101 string to rule them all",
"1102 string to rule them all",
"1103 string to rule them all",
"1104 string to rule them all",
"1105 string to rule them all",
"1106 string to rule them all",
"1107 string to rule them all",
"1108 string to rule them all",
"1109 string to rule them all",
"1110 string to rule them all",
"1111 string to rule them all",
"1112 string to rule them all",
"1113 string to rule them all",
"1114 string to rule them all",
"1115 string to rule them all",
"1116 string to rule them all",
"1117 string to rule them all",
"1118 string to rule them all",
"1119 string to rule them all",
"1120 string to rule them all",
"1121 string to rule them all",
"1122 string to rule them all",
"1123 string to rule them all",
"1124 string to rule them all",
"1125 string to rule them all",
"1126 string to rule them all",
"1127 string to rule them all",
"1128 string to rule them all",
"1129 string to rule them all",
"1130 string to rule them all",
"1131 string to rule them all",
"1132 string to rule them all",
"1133 string to rule them all",
"1134 string to rule them all",
"1135 string to rule them all",
"1136 string to rule them all",
"1137 string to rule them all",
"1138 string to rule them all",
"1139 string to rule them all",
"1140 string to rule them all",
"1141 string to rule them all",
"1142 string to rule them all",
"1143 string to rule them all",
"1144 string to rule them all",
"1145 string to rule them all",
"1146 string to rule them all",
"1147 string to rule them all",
"1148 string to rule them all",
"1149 string to rule them all",
"1150 string to rule them all",
"1151 string to rule them all",
"1152 string to rule them all",
"1153 string to rule them all",
"1154 string to rule them all",
"1155 string to rule them all",
"1156 string to rule them all",
"1157 string to rule them all",
"1158 string to rule them all",
"1159 string to rule them all",
"1160 string to rule them all",
"1161 string to rule them all",
"1162 string to rule them all",
"1163 string to rule them all",
"1164 string to rule them all",
"1165 string to rule them all",
"1166 string to rule them all",
"1167 string to rule them all",
"1168 string to rule them all",
"1169 string to rule them all",
"1170 string to rule them all",
"1171 string to rule them all",
"1172 string to rule them all",
"1173 string to rule them all",
"1174 string to rule them all",
"1175 string to rule them all",
"1176 string to rule them all",
"1177 string to rule them all",
"1178 string to rule them all",
"1179 string to rule them all",
"1180 string to rule them all",
"1181 string to rule them all",
"1182 string to rule them all",
"1183 string to rule them all",
"1184 string to rule them all",
"1185 string to rule them all",
"1186 string to rule them all",
"1187 string to rule them all",
"1188 string to rule them all",
"1189 string to rule them all",
"1190 string to rule them all",
"1191 string to rule them all",
"1192 string to rule them all",
"1193 string to rule them all",
"1194 string to rule them all",
"1195 string to rule them all",
"1196 string to rule them all",
"1197 string to rule them all",
"1198 string to rule them all",
"1199 string to rule them all",
"1200 string to rule them all",
"1201 string to rule them all",
"1202 string to rule them all",
"1203 string to rule them all",
"1204 string to rule them all",
"1205 string to rule them all",
"1206 string to rule them all",
"1207 string to rule them all",
"1208 string to rule them all",
"1209 string to rule them all",
"1210 string to rule them all",
"1211 string to rule them all",
"1212 string to rule them all",
"1213 string to rule them all",
"1214 string to rule them all",
"1215 string to rule them all",
"1216 string to rule them all",
"1217 string to rule them all",
"1218 string to rule them all",
"1219 string to rule them all",
"1220 string to rule them all",
"1221 string to rule them all",
"1222 string to rule them all",
"1223 string to rule them all",
"1224 string to rule them all",
"1225 string to rule them all",
"1226 string to rule them all",
"1227 string to rule them all",
"1228 string to rule them all",
"1229 string to rule them all",
"1230 string to rule them all",
"1231 string to rule them all",
"1232 string to rule them all",
"1233 string to rule them all",
"1234 string to rule them all",
"1235 string to rule them all",
"1236 string to rule them all",
"1237 string to rule them all",
"1238 string to rule them all",
"1239 string to rule them all",
"1240 string to rule them all",
"1241 string to rule them all",
"1242 string to rule them all",
"1243 string to rule them all",
"1244 string to rule them all",
"1245 string to rule them all",
"1246 string to rule them all",
"1247 string to rule them all",
"1248 string to rule them all",
"1249 string to rule them all",
"1250 string to rule them all",
"1251 string to rule them all",
"1252 string to rule them all",
"1253 string to rule them all",
"1254 string to rule them all",
"1255 string to rule them all",
"1256 string to rule them all",
"1257 string to rule them all",
"1258 string to rule them all",
"1259 string to rule them all",
"1260 string to rule them all",
"1261 string to rule them all",
"1262 string to rule them all",
"1263 string to rule them all",
"1264 string to rule them all",
"1265 string to rule them all",
"1266 string to rule them all",
"1267 string to rule them all",
"1268 string to rule them all",
"1269 string to rule them all",
"1270 string to rule them all",
"1271 string to rule them all",
"1272 string to rule them all",
"1273 string to rule them all",
"1274 string to rule them all",
"1275 string to rule them all",
"1276 string to rule them all",
"1277 string to rule them all",
"1278 string to rule them all",
"1279 string to rule them all",
"1280 string to rule them all",
"1281 string to rule them all",
"1282 string to rule them all",
"1283 string to rule them all",
"1284 string to rule them all",
"1285 string to rule them all",
"1286 string to rule them all",
"1287 string to rule them all",
"1288 string to rule them all",
"1289 string to rule them all",
"1290 string to rule them all",
"1291 string to rule them all",
"1292 string to rule them all",
"1293 string to rule them all",
"1294 string to rule them all",
"1295 string to rule them all",
"1296 string to rule them all",
"1297 string to rule them all",
"1298 string to rule them all",
"1299 string to rule them all",
"1300 string to rule them all",
"1301 string to rule them all",
"1302 string to rule them all",
"1303 string to rule them all",
"1304 string to rule them all",
"1305 string to rule them all",
"1306 string to rule them all",
"1307 string to rule them all",
"1308 string to rule them all",
"1309 string to rule them all",
"1310 string to rule them all",
"1311 string to rule them all",
"1312 string to rule them all",
"1313 string to rule them all",
"1314 string to rule them all",
"1315 string to rule them all",
"1316 string to rule them all",
"1317 string to rule them all",
"1318 string to rule them all",
"1319 string to rule them all",
"1320 string to rule them all",
"1321 string to rule them all",
"1322 string to rule them all",
"1323 string to rule them all",
"1324 string to rule them all",
"1325 string to rule them all",
"1326 string to rule them all",
"1327 string to rule them all",
"1328 string to rule them all",
"1329 string to rule them all",
"1330 string to rule them all",
"1331 string to rule them all",
"1332 string to rule them all",
"1333 string to rule them all",
"1334 string to rule them all",
"1335 string to rule them all",
"1336 string to rule them all",
"1337 string to rule them all",
"1338 string to rule them all",
"1339 string to rule them all",
"1340 string to rule them all",
"1341 string to rule them all",
"1342 string to rule them all",
"1343 string to rule them all",
"1344 string to rule them all",
"1345 string to rule them all",
"1346 string to rule them all",
"1347 string to rule them all",
"1348 string to rule them all",
"1349 string to rule them all",
"1350 string to rule them all",
"1351 string to rule them all",
"1352 string to rule them all",
"1353 string to rule them all",
"1354 string to rule them all",
"1355 string to rule them all",
"1356 string to rule them all",
"1357 string to rule them all",
"1358 string to rule them all",
"1359 string to rule them all",
"1360 string to rule them all",
"1361 string to rule them all",
"1362 string to rule them all",
"1363 string to rule them all",
"1364 string to rule them all",
"1365 string to rule them all",
"1366 string to rule them all",
"1367 string to rule them all",
"1368 string to rule them all",
"1369 string to rule them all",
"1370 string to rule them all",
"1371 string to rule them all",
"1372 string to rule them all",
"1373 string to rule them all",
"1374 string to rule them all",
"1375 string to rule them all",
"1376 string to rule them all",
"1377 string to rule them all",
"1378 string to rule them all",
"1379 string to rule them all",
"1380 string to rule them all",
"1381 string to rule them all",
"1382 string to rule them all",
"1383 string to rule them all",
"1384 string to rule them all",
"1385 string to rule them all",
"1386 string to rule them all",
"1387 string to rule them all",
"1388 string to rule them all",
"1389 string to rule them all",
"1390 string to rule them all",
"1391 string to rule them all",
"1392 string to rule them all",
"1393 string to rule them all",
"1394 string to rule them all",
"1395 string to rule them all",
"1396 string to rule them all",
"1397 string to rule them all",
"1398 string to rule them all",
"1399 string to rule them all",
"1400 string to rule them all",
"1401 string to rule them all",
"1402 string to rule them all",
"1403 string to rule them all",
"1404 string to rule them all",
"1405 string to rule them all",
"1406 string to rule them all",
"1407 string to rule them all",
"1408 string to rule them all",
"1409 string to rule them all",
"1410 string to rule them all",
"1411 string to rule them all",
"1412 string to rule them all",
"1413 string to rule them all",
"1414 string to rule them all",
"1415 string to rule them all",
"1416 string to rule them all",
"1417 string to rule them all",
"1418 string to rule them all",
"1419 string to rule them all",
"1420 string to rule them all",
"1421 string to rule them all",
"1422 string to rule them all",
"1423 string to rule them all",
"1424 string to rule them all",
"1425 string to rule them all",
"1426 string to rule them all",
"1427 string to rule them all",
"1428 string to rule them all",
"1429 string to rule them all",
"1430 string to rule them all",
"1431 string to rule them all",
"1432 string to rule them all",
"1433 string to rule them all",
"1434 string to rule them all",
"1435 string to rule them all",
"1436 string to rule them all",
"1437 string to rule them all",
"1438 string to rule them all",
"1439 string to rule them all",
"1440 string to rule them all",
"1441 string to rule them all",
"1442 string to rule them all",
"1443 string to rule them all",
"1444 string to rule them all",
"1445 string to rule them all",
"1446 string to rule them all",
"1447 string to rule them all",
"1448 string to rule them all",
"1449 string to rule them all",
"1450 string to rule them all",
"1451 string to rule them all",
"1452 string to rule them all",
"1453 string to rule them all",
"1454 string to rule them all",
"1455 string to rule them all",
"1456 string to rule them all",
"1457 string to rule them all",
"1458 string to rule them all",
"1459 string to rule them all",
"1460 string to rule them all",
"1461 string to rule them all",
"1462 string to rule them all",
"1463 string to rule them all",
"1464 string to rule them all",
"1465 string to rule them all",
"1466 string to rule them all",
"1467 string to rule them all",
"1468 string to rule them all",
"1469 string to rule them all",
"1470 string to rule them all",
"1471 string to rule them all",
"1472 string to rule them all",
"1473 string to rule them all",
"1474 string to rule them all",
"1475 string to rule them all",
"1476 string to rule them all",
"1477 string to rule them all",
"1478 string to rule them all",
"1479 string to rule them all",
"1480 string to rule them all",
"1481 string to rule them all",
"1482 string to rule them all",
"1483 string to rule them all",
"1484 string to rule them all",
"1485 string to rule them all",
"1486 string to rule them all",
"1487 string to rule them all",
"1488 string to rule them all",
"1489 string to rule them all",
"1490 string to rule them all",
"1491 string to rule them all",
"1492 string to rule them all",
"1493 string to rule them all",
"1494 string to rule them all",
"1495 string to rule them all",
"1496 string to rule them all",
"1497 string to rule them all",
"1498 string to rule them all",
"1499 string to rule them all",
"1500 string to rule them all",
"1501 string to rule them all",
"1502 string to rule them all",
"1503 string to rule them all",
"1504 string to rule them all",
"1505 string to rule them all",
"1506 string to rule them all",
"1507 string to rule them all",
"1508 string to rule them all",
"1509 string to rule them all",
"1510 string to rule them all",
"1511 string to rule them all",
"1512 string to rule them all",
"1513 string to rule them all",
"1514 string to rule them all",
"1515 string to rule them all",
"1516 string to rule them all",
"1517 string to rule them all",
"1518 string to rule them all",
"1519 string to rule them all",
"1520 string to rule them all",
"1521 string to rule them all",
"1522 string to rule them all",
"1523 string to rule them all",
"1524 string to rule them all",
"1525 string to rule them all",
"1526 string to rule them all",
"1527 string to rule them all",
"1528 string to rule them all",
"1529 string to rule them all",
"1530 string to rule them all",
"1531 string to rule them all",
"1532 string to rule them all",
"1533 string to rule them all",
"1534 string to rule them all",
"1535 string to rule them all",
"1536 string to rule them all",
"1537 string to rule them all",
"1538 string to rule them all",
"1539 string to rule them all",
"1540 string to rule them all",
"1541 string to rule them all",
"1542 string to rule them all",
"1543 string to rule them all",
"1544 string to rule them all",
"1545 string to rule them all",
"1546 string to rule them all",
"1547 string to rule them all",
"1548 string to rule them all",
"1549 string to rule them all",
"1550 string to rule them all",
"1551 string to rule them all",
"1552 string to rule them all",
"1553 string to rule them all",
"1554 string to rule them all",
"1555 string to rule them all",
"1556 string to rule them all",
"1557 string to rule them all",
"1558 string to rule them all",
"1559 string to rule them all",
"1560 string to rule them all",
"1561 string to rule them all",
"1562 string to rule them all",
"1563 string to rule them all",
"1564 string to rule them all",
"1565 string to rule them all",
"1566 string to rule them all",
"1567 string to rule them all",
"1568 string to rule them all",
"1569 string to rule them all",
"1570 string to rule them all",
"1571 string to rule them all",
"1572 string to rule them all",
"1573 string to rule them all",
"1574 string to rule them all",
"1575 string to rule them all",
"1576 string to rule them all",
"1577 string to rule them all",
"1578 string to rule them all",
"1579 string to rule them all",
"1580 string to rule them all",
"1581 string to rule them all",
"1582 string to rule them all",
"1583 string to rule them all",
"1584 string to rule them all",
"1585 string to rule them all",
"1586 string to rule them all",
"1587 string to rule them all",
"1588 string to rule them all",
"1589 string to rule them all",
"1590 string to rule them all",
"1591 string to rule them all",
"1592 string to rule them all",
"1593 string to rule them all",
"1594 string to rule them all",
"1595 string to rule them all",
"1596 string to rule them all",
"1597 string to rule them all",
"1598 string to rule them all",
"1599 string to rule them all",
"1600 string to rule them all",
"1601 string to rule them all",
"1602 string to rule them all",
"1603 string to rule them all",
"1604 string to rule them all",
"1605 string to rule them all",
"1606 string to rule them all",
"1607 string to rule them all",
"1608 string to rule them all",
"1609 string to rule them all",
"1610 string to rule them all",
"1611 string to rule them all",
"1612 string to rule them all",
"1613 string to rule them all",
"1614 string to rule them all",
"1615 string to rule them all",
"1616 string to rule them all",
"1617 string to rule them all",
"1618 string to rule them all",
"1619 string to rule them all",
"1620 string to rule them all",
"1621 string to rule them all",
"1622 string to rule them all",
"1623 string to rule them all",
"1624 string to rule them all",
"1625 string to rule them all",
"1626 string to rule them all",
"1627 string to rule them all",
"1628 string to rule them all",
"1629 string to rule them all",
"1630 string to rule them all",
"1631 string to rule them all",
"1632 string to rule them all",
"1633 string to rule them all",
"1634 string to rule them all",
"1635 string to rule them all",
"1636 string to rule them all",
"1637 string to rule them all",
"1638 string to rule them all",
"1639 string to rule them all",
"1640 string to rule them all",
"1641 string to rule them all",
"1642 string to rule them all",
"1643 string to rule them all",
"1644 string to rule them all",
"1645 string to rule them all",
"1646 string to rule them all",
"1647 string to rule them all",
"1648 string to rule them all",
"1649 string to rule them all",
"1650 string to rule them all",
"1651 string to rule them all",
"1652 string to rule them all",
"1653 string to rule them all",
"1654 string to rule them all",
"1655 string to rule them all",
"1656 string to rule them all",
"1657 string to rule them all",
"1658 string to rule them all",
"1659 string to rule them all",
"1660 string to rule them all",
"1661 string to rule them all",
"1662 string to rule them all",
"1663 string to rule them all",
"1664 string to rule them all",
"1665 string to rule them all",
"1666 string to rule them all",
"1667 string to rule them all",
"1668 string to rule them all",
"1669 string to rule them all",
"1670 string to rule them all",
"1671 string to rule them all",
"1672 string to rule them all",
"1673 string to rule them all",
"1674 string to rule them all",
"1675 string to rule them all",
"1676 string to rule them all",
"1677 string to rule them all",
"1678 string to rule them all",
"1679 string to rule them all",
"1680 string to rule them all",
"1681 string to rule them all",
"1682 string to rule them all",
"1683 string to rule them all",
"1684 string to rule them all",
"1685 string to rule them all",
"1686 string to rule them all",
"1687 string to rule them all",
"1688 string to rule them all",
"1689 string to rule them all",
"1690 string to rule them all",
"1691 string to rule them all",
"1692 string to rule them all",
"1693 string to rule them all",
"1694 string to rule them all",
"1695 string to rule them all",
"1696 string to rule them all",
"1697 string to rule them all",
"1698 string to rule them all",
"1699 string to rule them all",
"1700 string to rule them all",
"1701 string to rule them all",
"1702 string to rule them all",
"1703 string to rule them all",
"1704 string to rule them all",
"1705 string to rule them all",
"1706 string to rule them all",
"1707 string to rule them all",
"1708 string to rule them all",
"1709 string to rule them all",
"1710 string to rule them all",
"1711 string to rule them all",
"1712 string to rule them all",
"1713 string to rule them all",
"1714 string to rule them all",
"1715 string to rule them all",
"1716 string to rule them all",
"1717 string to rule them all",
"1718 string to rule them all",
"1719 string to rule them all",
"1720 string to rule them all",
"1721 string to rule them all",
"1722 string to rule them all",
"1723 string to rule them all",
"1724 string to rule them all",
"1725 string to rule them all",
"1726 string to rule them all",
"1727 string to rule them all",
"1728 string to rule them all",
"1729 string to rule them all",
"1730 string to rule them all",
"1731 string to rule them all",
"1732 string to rule them all",
"1733 string to rule them all",
"1734 string to rule them all",
"1735 string to rule them all",
"1736 string to rule them all",
"1737 string to rule them all",
"1738 string to rule them all",
"1739 string to rule them all",
"1740 string to rule them all",
"1741 string to rule them all",
"1742 string to rule them all",
"1743 string to rule them all",
"1744 string to rule them all",
"1745 string to rule them all",
"1746 string to rule them all",
"1747 string to rule them all",
"1748 string to rule them all",
"1749 string to rule them all",
"1750 string to rule them all",
"1751 string to rule them all",
"1752 string to rule them all",
"1753 string to rule them all",
"1754 string to rule them all",
"1755 string to rule them all",
"1756 string to rule them all",
"1757 string to rule them all",
"1758 string to rule them all",
"1759 string to rule them all",
"1760 string to rule them all",
"1761 string to rule them all",
"1762 string to rule them all",
"1763 string to rule them all",
"1764 string to rule them all",
"1765 string to rule them all",
"1766 string to rule them all",
"1767 string to rule them all",
"1768 string to rule them all",
"1769 string to rule them all",
"1770 string to rule them all",
"1771 string to rule them all",
"1772 string to rule them all",
"1773 string to rule them all",
"1774 string to rule them all",
"1775 string to rule them all",
"1776 string to rule them all",
"1777 string to rule them all",
"1778 string to rule them all",
"1779 string to rule them all",
"1780 string to rule them all",
"1781 string to rule them all",
"1782 string to rule them all",
"1783 string to rule them all",
"1784 string to rule them all",
"1785 string to rule them all",
"1786 string to rule them all",
"1787 string to rule them all",
"1788 string to rule them all",
"1789 string to rule them all",
"1790 string to rule them all",
"1791 string to rule them all",
"1792 string to rule them all",
"1793 string to rule them all",
"1794 string to rule them all",
"1795 string to rule them all",
"1796 string to rule them all",
"1797 string to rule them all",
"1798 string to rule them all",
"1799 string to rule them all",
"1800 string to rule them all",
"1801 string to rule them all",
"1802 string to rule them all",
"1803 string to rule them all",
"1804 string to rule them all",
"1805 string to rule them all",
"1806 string to rule them all",
"1807 string to rule them all",
"1808 string to rule them all",
"1809 string to rule them all",
"1810 string to rule them all",
"1811 string to rule them all",
"1812 string to rule them all",
"1813 string to rule them all",
"1814 string to rule them all",
"1815 string to rule them all",
"1816 string to rule them all",
"1817 string to rule them all",
"1818 string to rule them all",
"1819 string to rule them all",
"1820 string to rule them all",
"1821 string to rule them all",
"1822 string to rule them all",
"1823 string to rule them all",
"1824 string to rule them all",
"1825 string to rule them all",
"1826 string to rule them all",
"1827 string to rule them all",
"1828 string to rule them all",
"1829 string to rule them all",
"1830 string to rule them all",
"1831 string to rule them all",
"1832 string to rule them all",
"1833 string to rule them all",
"1834 string to rule them all",
"1835 string to rule them all",
"1836 string to rule them all",
"1837 string to rule them all",
"1838 string to rule them all",
"1839 string to rule them all",
"1840 string to rule them all",
"1841 string to rule them all",
"1842 string to rule them all",
"1843 string to rule them all",
"1844 string to rule them all",
"1845 string to rule them all",
"1846 string to rule them all",
"1847 string to rule them all",
"1848 string to rule them all",
"1849 string to rule them all",
"1850 string to rule them all",
"1851 string to rule them all",
"1852 string to rule them all",
"1853 string to rule them all",
"1854 string to rule them all",
"1855 string to rule them all",
"1856 string to rule them all",
"1857 string to rule them all",
"1858 string to rule them all",
"1859 string to rule them all",
"1860 string to rule them all",
"1861 string to rule them all",
"1862 string to rule them all",
"1863 string to rule them all",
"1864 string to rule them all",
"1865 string to rule them all",
"1866 string to rule them all",
"1867 string to rule them all",
"1868 string to rule them all",
"1869 string to rule them all",
"1870 string to rule them all",
"1871 string to rule them all",
"1872 string to rule them all",
"1873 string to rule them all",
"1874 string to rule them all",
"1875 string to rule them all",
"1876 string to rule them all",
"1877 string to rule them all",
"1878 string to rule them all",
"1879 string to rule them all",
"1880 string to rule them all",
"1881 string to rule them all",
"1882 string to rule them all",
"1883 string to rule them all",
"1884 string to rule them all",
"1885 string to rule them all",
"1886 string to rule them all",
"1887 string to rule them all",
"1888 string to rule them all",
"1889 string to rule them all",
"1890 string to rule them all",
"1891 string to rule them all",
"1892 string to rule them all",
"1893 string to rule them all",
"1894 string to rule them all",
"1895 string to rule them all",
"1896 string to rule them all",
"1897 string to rule them all",
"1898 string to rule them all",
"1899 string to rule them all",
"1900 string to rule them all",
"1901 string to rule them all",
"1902 string to rule them all",
"1903 string to rule them all",
"1904 string to rule them all",
"1905 string to rule them all",
"1906 string to rule them all",
"1907 string to rule them all",
"1908 string to rule them all",
"1909 string to rule them all",
"1910 string to rule them all",
"1911 string to rule them all",
"1912 string to rule them all",
"1913 string to rule them all",
"1914 string to rule them all",
"1915 string to rule them all",
"1916 string to rule them all",
"1917 string to rule them all",
"1918 string to rule them all",
"1919 string to rule them all",
"1920 string to rule them all",
"1921 string to rule them all",
"1922 string to rule them all",
"1923 string to rule them all",
"1924 string to rule them all",
"1925 string to rule them all",
"1926 string to rule them all",
"1927 string to rule them all",
"1928 string to rule them all",
"1929 string to rule them all",
"1930 string to rule them all",
"1931 string to rule them all",
"1932 string to rule them all",
"1933 string to rule them all",
"1934 string to rule them all",
"1935 string to rule them all",
"1936 string to rule them all",
"1937 string to rule them all",
"1938 string to rule them all",
"1939 string to rule them all",
"1940 string to rule them all",
"1941 string to rule them all",
"1942 string to rule them all",
"1943 string to rule them all",
"1944 string to rule them all",
"1945 string to rule them all",
"1946 string to rule them all",
"1947 string to rule them all",
"1948 string to rule them all",
"1949 string to rule them all",
"1950 string to rule them all",
"1951 string to rule them all",
"1952 string to rule them all",
"1953 string to rule them all",
"1954 string to rule them all",
"1955 string to rule them all",
"1956 string to rule them all",
"1957 string to rule them all",
"1958 string to rule them all",
"1959 string to rule them all",
"1960 string to rule them all",
"1961 string to rule them all",
"1962 string to rule them all",
"1963 string to rule them all",
"1964 string to rule them all",
"1965 string to rule them all",
"1966 string to rule them all",
"1967 string to rule them all",
"1968 string to rule them all",
"1969 string to rule them all",
"1970 string to rule them all",
"1971 string to rule them all",
"1972 string to rule them all",
"1973 string to rule them all",
"1974 string to rule them all",
"1975 string to rule them all",
"1976 string to rule them all",
"1977 string to rule them all",
"1978 string to rule them all",
"1979 string to rule them all",
"1980 string to rule them all",
"1981 string to rule them all",
"1982 string to rule them all",
"1983 string to rule them all",
"1984 string to rule them all",
"1985 string to rule them all",
"1986 string to rule them all",
"1987 string to rule them all",
"1988 string to rule them all",
"1989 string to rule them all",
"1990 string to rule them all",
"1991 string to rule them all",
"1992 string to rule them all",
"1993 string to rule them all",
"1994 string to rule them all",
"1995 string to rule them all",
"1996 string to rule them all",
"1997 string to rule them all",
"1998 string to rule them all",
"1999 string to rule them all",
"2000 string to rule them all",
"2001 string to rule them all",
"2002 string to rule them all",
"2003 string to rule them all",
"2004 string to rule them all",
"2005 string to rule them all",
"2006 string to rule them all",
"2007 string to rule them all",
"2008 string to rule them all",
"2009 string to rule them all",
"2010 string to rule them all",
"2011 string to rule them all",
"2012 string to rule them all",
"2013 string to rule them all",
"2014 string to rule them all",
"2015 string to rule them all",
"2016 string to rule them all",
"2017 string to rule them all",
"2018 string to rule them all",
"2019 string to rule them all",
"2020 string to rule them all",
"2021 string to rule them all",
"2022 string to rule them all",
"2023 string to rule them all",
"2024 string to rule them all",
"2025 string to rule them all",
"2026 string to rule them all",
"2027 string to rule them all",
"2028 string to rule them all",
"2029 string to rule them all",
"2030 string to rule them all",
"2031 string to rule them all",
"2032 string to rule them all",
"2033 string to rule them all",
"2034 string to rule them all",
"2035 string to rule them all",
"2036 string to rule them all",
"2037 string to rule them all",
"2038 string to rule them all",
"2039 string to rule them all",
"2040 string to rule them all",
"2041 string to rule them all",
"2042 string to rule them all",
"2043 string to rule them all",
"2044 string to rule them all",
"2045 string to rule them all",
"2046 string to rule them all",
"2047 string to rule them all",
"2048 string to rule them all",
"2049 string to rule them all",
"2050 string to rule them all",
"2051 string to rule them all",
"2052 string to rule them all",
"2053 string to rule them all",
"2054 string to rule them all",
"2055 string to rule them all",
"2056 string to rule them all",
"2057 string to rule them all",
"2058 string to rule them all",
"2059 string to rule them all",
"2060 string to rule them all",
"2061 string to rule them all",
"2062 string to rule them all",
"2063 string to rule them all",
"2064 string to rule them all",
"2065 string to rule them all",
"2066 string to rule them all",
"2067 string to rule them all",
"2068 string to rule them all",
"2069 string to rule them all",
"2070 string to rule them all",
"2071 string to rule them all",
"2072 string to rule them all",
"2073 string to rule them all",
"2074 string to rule them all",
"2075 string to rule them all",
"2076 string to rule them all",
"2077 string to rule them all",
"2078 string to rule them all",
"2079 string to rule them all",
"2080 string to rule them all",
"2081 string to rule them all",
"2082 string to rule them all",
"2083 string to rule them all",
"2084 string to rule them all",
"2085 string to rule them all",
"2086 string to rule them all",
"2087 string to rule them all",
"2088 string to rule them all",
"2089 string to rule them all",
"2090 string to rule them all",
"2091 string to rule them all",
"2092 string to rule them all",
"2093 string to rule them all",
"2094 string to rule them all",
"2095 string to rule them all",
"2096 string to rule them all",
"2097 string to rule them all",
"2098 string to rule them all",
"2099 string to rule them all",
"2100 string to rule them all",
"2101 string to rule them all",
"2102 string to rule them all",
"2103 string to rule them all",
"2104 string to rule them all",
"2105 string to rule them all",
"2106 string to rule them all",
"2107 string to rule them all",
"2108 string to rule them all",
"2109 string to rule them all",
"2110 string to rule them all",
"2111 string to rule them all",
"2112 string to rule them all",
"2113 string to rule them all",
"2114 string to rule them all",
"2115 string to rule them all",
"2116 string to rule them all",
"2117 string to rule them all",
"2118 string to rule them all",
"2119 string to rule them all",
"2120 string to rule them all",
"2121 string to rule them all",
"2122 string to rule them all",
"2123 string to rule them all",
"2124 string to rule them all",
"2125 string to rule them all",
"2126 string to rule them all",
"2127 string to rule them all",
"2128 string to rule them all",
"2129 string to rule them all",
"2130 string to rule them all",
"2131 string to rule them all",
"2132 string to rule them all",
"2133 string to rule them all",
"2134 string to rule them all",
"2135 string to rule them all",
"2136 string to rule them all",
"2137 string to rule them all",
"2138 string to rule them all",
"2139 string to rule them all",
"2140 string to rule them all",
"2141 string to rule them all",
"2142 string to rule them all",
"2143 string to rule them all",
"2144 string to rule them all",
"2145 string to rule them all",
"2146 string to rule them all",
"2147 string to rule them all",
"2148 string to rule them all",
"2149 string to rule them all",
"2150 string to rule them all",
"2151 string to rule them all",
"2152 string to rule them all",
"2153 string to rule them all",
"2154 string to rule them all",
"2155 string to rule them all",
"2156 string to rule them all",
"2157 string to rule them all",
"2158 string to rule them all",
"2159 string to rule them all",
"2160 string to rule them all",
"2161 string to rule them all",
"2162 string to rule them all",
"2163 string to rule them all",
"2164 string to rule them all",
"2165 string to rule them all",
"2166 string to rule them all",
"2167 string to rule them all",
"2168 string to rule them all",
"2169 string to rule them all",
"2170 string to rule them all",
"2171 string to rule them all",
"2172 string to rule them all",
"2173 string to rule them all",
"2174 string to rule them all",
"2175 string to rule them all",
"2176 string to rule them all",
"2177 string to rule them all",
"2178 string to rule them all",
"2179 string to rule them all",
"2180 string to rule them all",
"2181 string to rule them all",
"2182 string to rule them all",
"2183 string to rule them all",
"2184 string to rule them all",
"2185 string to rule them all",
"2186 string to rule them all",
"2187 string to rule them all",
"2188 string to rule them all",
"2189 string to rule them all",
"2190 string to rule them all",
"2191 string to rule them all",
"2192 string to rule them all",
"2193 string to rule them all",
"2194 string to rule them all",
"2195 string to rule them all",
"2196 string to rule them all",
"2197 string to rule them all",
"2198 string to rule them all",
"2199 string to rule them all",
"2200 string to rule them all",
"2201 string to rule them all",
"2202 string to rule them all",
"2203 string to rule them all",
"2204 string to rule them all",
"2205 string to rule them all",
"2206 string to rule them all",
"2207 string to rule them all",
"2208 string to rule them all",
"2209 string to rule them all",
"2210 string to rule them all",
"2211 string to rule them all",
"2212 string to rule them all",
"2213 string to rule them all",
"2214 string to rule them all",
"2215 string to rule them all",
"2216 string to rule them all",
"2217 string to rule them all",
"2218 string to rule them all",
"2219 string to rule them all",
"2220 string to rule them all",
"2221 string to rule them all",
"2222 string to rule them all",
"2223 string to rule them all",
"2224 string to rule them all",
"2225 string to rule them all",
"2226 string to rule them all",
"2227 string to rule them all",
"2228 string to rule them all",
"2229 string to rule them all",
"2230 string to rule them all",
"2231 string to rule them all",
"2232 string to rule them all",
"2233 string to rule them all",
"2234 string to rule them all",
"2235 string to rule them all",
"2236 string to rule them all",
"2237 string to rule them all",
"2238 string to rule them all",
"2239 string to rule them all",
"2240 string to rule them all",
"2241 string to rule them all",
"2242 string to rule them all",
"2243 string to rule them all",
"2244 string to rule them all",
"2245 string to rule them all",
"2246 string to rule them all",
"2247 string to rule them all",
"2248 string to rule them all",
"2249 string to rule them all",
"2250 string to rule them all",
"2251 string to rule them all",
"2252 string to rule them all",
"2253 string to rule them all",
"2254 string to rule them all",
"2255 string to rule them all",
"2256 string to rule them all",
"2257 string to rule them all",
"2258 string to rule them all",
"2259 string to rule them all",
"2260 string to rule them all",
"2261 string to rule them all",
"2262 string to rule them all",
"2263 string to rule them all",
"2264 string to rule them all",
"2265 string to rule them all",
"2266 string to rule them all",
"2267 string to rule them all",
"2268 string to rule them all",
"2269 string to rule them all",
"2270 string to rule them all",
"2271 string to rule them all",
"2272 string to rule them all",
"2273 string to rule them all",
"2274 string to rule them all",
"2275 string to rule them all",
"2276 string to rule them all",
"2277 string to rule them all",
"2278 string to rule them all",
"2279 string to rule them all",
"2280 string to rule them all",
"2281 string to rule them all",
"2282 string to rule them all",
"2283 string to rule them all",
"2284 string to rule them all",
"2285 string to rule them all",
"2286 string to rule them all",
"2287 string to rule them all",
"2288 string to rule them all",
"2289 string to rule them all",
"2290 string to rule them all",
"2291 string to rule them all",
"2292 string to rule them all",
"2293 string to rule them all",
"2294 string to rule them all",
"2295 string to rule them all",
"2296 string to rule them all",
"2297 string to rule them all",
"2298 string to rule them all",
"2299 string to rule them all",
"2300 string to rule them all",
"2301 string to rule them all",
"2302 string to rule them all",
"2303 string to rule them all",
"2304 string to rule them all",
"2305 string to rule them all",
"2306 string to rule them all",
"2307 string to rule them all",
"2308 string to rule them all",
"2309 string to rule them all",
"2310 string to rule them all",
"2311 string to rule them all",
"2312 string to rule them all",
"2313 string to rule them all",
"2314 string to rule them all",
"2315 string to rule them all",
"2316 string to rule them all",
"2317 string to rule them all",
"2318 string to rule them all",
"2319 string to rule them all",
"2320 string to rule them all",
"2321 string to rule them all",
"2322 string to rule them all",
"2323 string to rule them all",
"2324 string to rule them all",
"2325 string to rule them all",
"2326 string to rule them all",
"2327 string to rule them all",
"2328 string to rule them all",
"2329 string to rule them all",
"2330 string to rule them all",
"2331 string to rule them all",
"2332 string to rule them all",
"2333 string to rule them all",
"2334 string to rule them all",
"2335 string to rule them all",
"2336 string to rule them all",
"2337 string to rule them all",
"2338 string to rule them all",
"2339 string to rule them all",
"2340 string to rule them all",
"2341 string to rule them all",
"2342 string to rule them all",
"2343 string to rule them all",
"2344 string to rule them all",
"2345 string to rule them all",
"2346 string to rule them all",
"2347 string to rule them all",
"2348 string to rule them all",
"2349 string to rule them all",
"2350 string to rule them all",
"2351 string to rule them all",
"2352 string to rule them all",
"2353 string to rule them all",
"2354 string to rule them all",
"2355 string to rule them all",
"2356 string to rule them all",
"2357 string to rule them all",
"2358 string to rule them all",
"2359 string to rule them all",
"2360 string to rule them all",
"2361 string to rule them all",
"2362 string to rule them all",
"2363 string to rule them all",
"2364 string to rule them all",
"2365 string to rule them all",
"2366 string to rule them all",
"2367 string to rule them all",
"2368 string to rule them all",
"2369 string to rule them all",
"2370 string to rule them all",
"2371 string to rule them all",
"2372 string to rule them all",
"2373 string to rule them all",
"2374 string to rule them all",
"2375 string to rule them all",
"2376 string to rule them all",
"2377 string to rule them all",
"2378 string to rule them all",
"2379 string to rule them all",
"2380 string to rule them all",
"2381 string to rule them all",
"2382 string to rule them all",
"2383 string to rule them all",
"2384 string to rule them all",
"2385 string to rule them all",
"2386 string to rule them all",
"2387 string to rule them all",
"2388 string to rule them all",
"2389 string to rule them all",
"2390 string to rule them all",
"2391 string to rule them all",
"2392 string to rule them all",
"2393 string to rule them all",
"2394 string to rule them all",
"2395 string to rule them all",
"2396 string to rule them all",
"2397 string to rule them all",
"2398 string to rule them all",
"2399 string to rule them all",
"2400 string to rule them all",
"2401 string to rule them all",
"2402 string to rule them all",
"2403 string to rule them all",
"2404 string to rule them all",
"2405 string to rule them all",
"2406 string to rule them all",
"2407 string to rule them all",
"2408 string to rule them all",
"2409 string to rule them all",
"2410 string to rule them all",
"2411 string to rule them all",
"2412 string to rule them all",
"2413 string to rule them all",
"2414 string to rule them all",
"2415 string to rule them all",
"2416 string to rule them all",
"2417 string to rule them all",
"2418 string to rule them all",
"2419 string to rule them all",
"2420 string to rule them all",
"2421 string to rule them all",
"2422 string to rule them all",
"2423 string to rule them all",
"2424 string to rule them all",
"2425 string to rule them all",
"2426 string to rule them all",
"2427 string to rule them all",
"2428 string to rule them all",
"2429 string to rule them all",
"2430 string to rule them all",
"2431 string to rule them all",
"2432 string to rule them all",
"2433 string to rule them all",
"2434 string to rule them all",
"2435 string to rule them all",
"2436 string to rule them all",
"2437 string to rule them all",
"2438 string to rule them all",
"2439 string to rule them all",
"2440 string to rule them all",
"2441 string to rule them all",
"2442 string to rule them all",
"2443 string to rule them all",
"2444 string to rule them all",
"2445 string to rule them all",
"2446 string to rule them all",
"2447 string to rule them all",
"2448 string to rule them all",
"2449 string to rule them all",
"2450 string to rule them all",
"2451 string to rule them all",
"2452 string to rule them all",
"2453 string to rule them all",
"2454 string to rule them all",
"2455 string to rule them all",
"2456 string to rule them all",
"2457 string to rule them all",
"2458 string to rule them all",
"2459 string to rule them all",
"2460 string to rule them all",
"2461 string to rule them all",
"2462 string to rule them all",
"2463 string to rule them all",
"2464 string to rule them all",
"2465 string to rule them all",
"2466 string to rule them all",
"2467 string to rule them all",
"2468 string to rule them all",
"2469 string to rule them all",
"2470 string to rule them all",
"2471 string to rule them all",
"2472 string to rule them all",
"2473 string to rule them all",
"2474 string to rule them all",
"2475 string to rule them all",
"2476 string to rule them all",
"2477 string to rule them all",
"2478 string to rule them all",
"2479 string to rule them all",
"2480 string to rule them all",
"2481 string to rule them all",
"2482 string to rule them all",
"2483 string to rule them all",
"2484 string to rule them all",
"2485 string to rule them all",
"2486 string to rule them all",
"2487 string to rule them all",
"2488 string to rule them all",
"2489 string to rule them all",
"2490 string to rule them all",
"2491 string to rule them all",
"2492 string to rule them all",
"2493 string to rule them all",
"2494 string to rule them all",
"2495 string to rule them all",
"2496 string to rule them all",
"2497 string to rule them all",
"2498 string to rule them all",
"2499 string to rule them all",
"2500 string to rule them all",
"2501 string to rule them all",
"2502 string to rule them all",
"2503 string to rule them all",
"2504 string to rule them all",
"2505 string to rule them all",
"2506 string to rule them all",
"2507 string to rule them all",
"2508 string to rule them all",
"2509 string to rule them all",
"2510 string to rule them all",
"2511 string to rule them all",
"2512 string to rule them all",
"2513 string to rule them all",
"2514 string to rule them all",
"2515 string to rule them all",
"2516 string to rule them all",
"2517 string to rule them all",
"2518 string to rule them all",
"2519 string to rule them all",
"2520 string to rule them all",
"2521 string to rule them all",
"2522 string to rule them all",
"2523 string to rule them all",
"2524 string to rule them all",
"2525 string to rule them all",
"2526 string to rule them all",
"2527 string to rule them all",
"2528 string to rule them all",
"2529 string to rule them all",
"2530 string to rule them all",
"2531 string to rule them all",
"2532 string to rule them all",
"2533 string to rule them all",
"2534 string to rule them all",
"2535 string to rule them all",
"2536 string to rule them all",
"2537 string to rule them all",
"2538 string to rule them all",
"2539 string to rule them all",
"2540 string to rule them all",
"2541 string to rule them all",
"2542 string to rule them all",
"2543 string to rule them all",
"2544 string to rule them all",
"2545 string to rule them all",
"2546 string to rule them all",
"2547 string to rule them all",
"2548 string to rule them all",
"2549 string to rule them all",
"2550 string to rule them all",
"2551 string to rule them all",
"2552 string to rule them all",
"2553 string to rule them all",
"2554 string to rule them all",
"2555 string to rule them all",
"2556 string to rule them all",
"2557 string to rule them all",
"2558 string to rule them all",
"2559 string to rule them all",
"2560 string to rule them all",
"2561 string to rule them all",
"2562 string to rule them all",
"2563 string to rule them all",
"2564 string to rule them all",
"2565 string to rule them all",
"2566 string to rule them all",
"2567 string to rule them all",
"2568 string to rule them all",
"2569 string to rule them all",
"2570 string to rule them all",
"2571 string to rule them all",
"2572 string to rule them all",
"2573 string to rule them all",
"2574 string to rule them all",
"2575 string to rule them all",
"2576 string to rule them all",
"2577 string to rule them all",
"2578 string to rule them all",
"2579 string to rule them all",
"2580 string to rule them all",
"2581 string to rule them all",
"2582 string to rule them all",
"2583 string to rule them all",
"2584 string to rule them all",
"2585 string to rule them all",
"2586 string to rule them all",
"2587 string to rule them all",
"2588 string to rule them all",
"2589 string to rule them all",
"2590 string to rule them all",
"2591 string to rule them all",
"2592 string to rule them all",
"2593 string to rule them all",
"2594 string to rule them all",
"2595 string to rule them all",
"2596 string to rule them all",
"2597 string to rule them all",
"2598 string to rule them all",
"2599 string to rule them all",
"2600 string to rule them all",
"2601 string to rule them all",
"2602 string to rule them all",
"2603 string to rule them all",
"2604 string to rule them all",
"2605 string to rule them all",
"2606 string to rule them all",
"2607 string to rule them all",
"2608 string to rule them all",
"2609 string to rule them all",
"2610 string to rule them all",
"2611 string to rule them all",
"2612 string to rule them all",
"2613 string to rule them all",
"2614 string to rule them all",
"2615 string to rule them all",
"2616 string to rule them all",
"2617 string to rule them all",
"2618 string to rule them all",
"2619 string to rule them all",
"2620 string to rule them all",
"2621 string to rule them all",
"2622 string to rule them all",
"2623 string to rule them all",
"2624 string to rule them all",
"2625 string to rule them all",
"2626 string to rule them all",
"2627 string to rule them all",
"2628 string to rule them all",
"2629 string to rule them all",
"2630 string to rule them all",
"2631 string to rule them all",
"2632 string to rule them all",
"2633 string to rule them all",
"2634 string to rule them all",
"2635 string to rule them all",
"2636 string to rule them all",
"2637 string to rule them all",
"2638 string to rule them all",
"2639 string to rule them all",
"2640 string to rule them all",
"2641 string to rule them all",
"2642 string to rule them all",
"2643 string to rule them all",
"2644 string to rule them all",
"2645 string to rule them all",
"2646 string to rule them all",
"2647 string to rule them all",
"2648 string to rule them all",
"2649 string to rule them all",
"2650 string to rule them all",
"2651 string to rule them all",
"2652 string to rule them all",
"2653 string to rule them all",
"2654 string to rule them all",
"2655 string to rule them all",
"2656 string to rule them all",
"2657 string to rule them all",
"2658 string to rule them all",
"2659 string to rule them all",
"2660 string to rule them all",
"2661 string to rule them all",
"2662 string to rule them all",
"2663 string to rule them all",
"2664 string to rule them all",
"2665 string to rule them all",
"2666 string to rule them all",
"2667 string to rule them all",
"2668 string to rule them all",
"2669 string to rule them all",
"2670 string to rule them all",
"2671 string to rule them all",
"2672 string to rule them all",
"2673 string to rule them all",
"2674 string to rule them all",
"2675 string to rule them all",
"2676 string to rule them all",
"2677 string to rule them all",
"2678 string to rule them all",
"2679 string to rule them all",
"2680 string to rule them all",
"2681 string to rule them all",
"2682 string to rule them all",
"2683 string to rule them all",
"2684 string to rule them all",
"2685 string to rule them all",
"2686 string to rule them all",
"2687 string to rule them all",
"2688 string to rule them all",
"2689 string to rule them all",
"2690 string to rule them all",
"2691 string to rule them all",
"2692 string to rule them all",
"2693 string to rule them all",
"2694 string to rule them all",
"2695 string to rule them all",
"2696 string to rule them all",
"2697 string to rule them all",
"2698 string to rule them all",
"2699 string to rule them all",
"2700 string to rule them all",
"2701 string to rule them all",
"2702 string to rule them all",
"2703 string to rule them all",
"2704 string to rule them all",
"2705 string to rule them all",
"2706 string to rule them all",
"2707 string to rule them all",
"2708 string to rule them all",
"2709 string to rule them all",
"2710 string to rule them all",
"2711 string to rule them all",
"2712 string to rule them all",
"2713 string to rule them all",
"2714 string to rule them all",
"2715 string to rule them all",
"2716 string to rule them all",
"2717 string to rule them all",
"2718 string to rule them all",
"2719 string to rule them all",
"2720 string to rule them all",
"2721 string to rule them all",
"2722 string to rule them all",
"2723 string to rule them all",
"2724 string to rule them all",
"2725 string to rule them all",
"2726 string to rule them all",
"2727 string to rule them all",
"2728 string to rule them all",
"2729 string to rule them all",
"2730 string to rule them all",
"2731 string to rule them all",
"2732 string to rule them all",
"2733 string to rule them all",
"2734 string to rule them all",
"2735 string to rule them all",
"2736 string to rule them all",
"2737 string to rule them all",
"2738 string to rule them all",
"2739 string to rule them all",
"2740 string to rule them all",
"2741 string to rule them all",
"2742 string to rule them all",
"2743 string to rule them all",
"2744 string to rule them all",
"2745 string to rule them all",
"2746 string to rule them all",
"2747 string to rule them all",
"2748 string to rule them all",
"2749 string to rule them all",
"2750 string to rule them all",
"2751 string to rule them all",
"2752 string to rule them all",
"2753 string to rule them all",
"2754 string to rule them all",
"2755 string to rule them all",
"2756 string to rule them all",
"2757 string to rule them all",
"2758 string to rule them all",
"2759 string to rule them all",
"2760 string to rule them all",
"2761 string to rule them all",
"2762 string to rule them all",
"2763 string to rule them all",
"2764 string to rule them all",
"2765 string to rule them all",
"2766 string to rule them all",
"2767 string to rule them all",
"2768 string to rule them all",
"2769 string to rule them all",
"2770 string to rule them all",
"2771 string to rule them all",
"2772 string to rule them all",
"2773 string to rule them all",
"2774 string to rule them all",
"2775 string to rule them all",
"2776 string to rule them all",
"2777 string to rule them all",
"2778 string to rule them all",
"2779 string to rule them all",
"2780 string to rule them all",
"2781 string to rule them all",
"2782 string to rule them all",
"2783 string to rule them all",
"2784 string to rule them all",
"2785 string to rule them all",
"2786 string to rule them all",
"2787 string to rule them all",
"2788 string to rule them all",
"2789 string to rule them all",
"2790 string to rule them all",
"2791 string to rule them all",
"2792 string to rule them all",
"2793 string to rule them all",
"2794 string to rule them all",
"2795 string to rule them all",
"2796 string to rule them all",
"2797 string to rule them all",
"2798 string to rule them all",
"2799 string to rule them all",
"2800 string to rule them all",
"2801 string to rule them all",
"2802 string to rule them all",
"2803 string to rule them all",
"2804 string to rule them all",
"2805 string to rule them all",
"2806 string to rule them all",
"2807 string to rule them all",
"2808 string to rule them all",
"2809 string to rule them all",
"2810 string to rule them all",
"2811 string to rule them all",
"2812 string to rule them all",
"2813 string to rule them all",
"2814 string to rule them all",
"2815 string to rule them all",
"2816 string to rule them all",
"2817 string to rule them all",
"2818 string to rule them all",
"2819 string to rule them all",
"2820 string to rule them all",
"2821 string to rule them all",
"2822 string to rule them all",
"2823 string to rule them all",
"2824 string to rule them all",
"2825 string to rule them all",
"2826 string to rule them all",
"2827 string to rule them all",
"2828 string to rule them all",
"2829 string to rule them all",
"2830 string to rule them all",
"2831 string to rule them all",
"2832 string to rule them all",
"2833 string to rule them all",
"2834 string to rule them all",
"2835 string to rule them all",
"2836 string to rule them all",
"2837 string to rule them all",
"2838 string to rule them all",
"2839 string to rule them all",
"2840 string to rule them all",
"2841 string to rule them all",
"2842 string to rule them all",
"2843 string to rule them all",
"2844 string to rule them all",
"2845 string to rule them all",
"2846 string to rule them all",
"2847 string to rule them all",
"2848 string to rule them all",
"2849 string to rule them all",
"2850 string to rule them all",
"2851 string to rule them all",
"2852 string to rule them all",
"2853 string to rule them all",
"2854 string to rule them all",
"2855 string to rule them all",
"2856 string to rule them all",
"2857 string to rule them all",
"2858 string to rule them all",
"2859 string to rule them all",
"2860 string to rule them all",
"2861 string to rule them all",
"2862 string to rule them all",
"2863 string to rule them all",
"2864 string to rule them all",
"2865 string to rule them all",
"2866 string to rule them all",
"2867 string to rule them all",
"2868 string to rule them all",
"2869 string to rule them all",
"2870 string to rule them all",
"2871 string to rule them all",
"2872 string to rule them all",
"2873 string to rule them all",
"2874 string to rule them all",
"2875 string to rule them all",
"2876 string to rule them all",
"2877 string to rule them all",
"2878 string to rule them all",
"2879 string to rule them all",
"2880 string to rule them all",
"2881 string to rule them all",
"2882 string to rule them all",
"2883 string to rule them all",
"2884 string to rule them all",
"2885 string to rule them all",
"2886 string to rule them all",
"2887 string to rule them all",
"2888 string to rule them all",
"2889 string to rule them all",
"2890 string to rule them all",
"2891 string to rule them all",
"2892 string to rule them all",
"2893 string to rule them all",
"2894 string to rule them all",
"2895 string to rule them all",
"2896 string to rule them all",
"2897 string to rule them all",
"2898 string to rule them all",
"2899 string to rule them all",
"2900 string to rule them all",
"2901 string to rule them all",
"2902 string to rule them all",
"2903 string to rule them all",
"2904 string to rule them all",
"2905 string to rule them all",
"2906 string to rule them all",
"2907 string to rule them all",
"2908 string to rule them all",
"2909 string to rule them all",
"2910 string to rule them all",
"2911 string to rule them all",
"2912 string to rule them all",
"2913 string to rule them all",
"2914 string to rule them all",
"2915 string to rule them all",
"2916 string to rule them all",
"2917 string to rule them all",
"2918 string to rule them all",
"2919 string to rule them all",
"2920 string to rule them all",
"2921 string to rule them all",
"2922 string to rule them all",
"2923 string to rule them all",
"2924 string to rule them all",
"2925 string to rule them all",
"2926 string to rule them all",
"2927 string to rule them all",
"2928 string to rule them all",
"2929 string to rule them all",
"2930 string to rule them all",
"2931 string to rule them all",
"2932 string to rule them all",
"2933 string to rule them all",
"2934 string to rule them all",
"2935 string to rule them all",
"2936 string to rule them all",
"2937 string to rule them all",
"2938 string to rule them all",
"2939 string to rule them all",
"2940 string to rule them all",
"2941 string to rule them all",
"2942 string to rule them all",
"2943 string to rule them all",
"2944 string to rule them all",
"2945 string to rule them all",
"2946 string to rule them all",
"2947 string to rule them all",
"2948 string to rule them all",
"2949 string to rule them all",
"2950 string to rule them all",
"2951 string to rule them all",
"2952 string to rule them all",
"2953 string to rule them all",
"2954 string to rule them all",
"2955 string to rule them all",
"2956 string to rule them all",
"2957 string to rule them all",
"2958 string to rule them all",
"2959 string to rule them all",
"2960 string to rule them all",
"2961 string to rule them all",
"2962 string to rule them all",
"2963 string to rule them all",
"2964 string to rule them all",
"2965 string to rule them all",
"2966 string to rule them all",
"2967 string to rule them all",
"2968 string to rule them all",
"2969 string to rule them all",
"2970 string to rule them all",
"2971 string to rule them all",
"2972 string to rule them all",
"2973 string to rule them all",
"2974 string to rule them all",
"2975 string to rule them all",
"2976 string to rule them all",
"2977 string to rule them all",
"2978 string to rule them all",
"2979 string to rule them all",
"2980 string to rule them all",
"2981 string to rule them all",
"2982 string to rule them all",
"2983 string to rule them all",
"2984 string to rule them all",
"2985 string to rule them all",
"2986 string to rule them all",
"2987 string to rule them all",
"2988 string to rule them all",
"2989 string to rule them all",
"2990 string to rule them all",
"2991 string to rule them all",
"2992 string to rule them all",
"2993 string to rule them all",
"2994 string to rule them all",
"2995 string to rule them all",
"2996 string to rule them all",
"2997 string to rule them all",
"2998 string to rule them all",
"2999 string to rule them all",
"3000 string to rule them all",
"3001 string to rule them all",
"3002 string to rule them all",
"3003 string to rule them all",
"3004 string to rule them all",
"3005 string to rule them all",
"3006 string to rule them all",
"3007 string to rule them all",
"3008 string to rule them all",
"3009 string to rule them all",
"3010 string to rule them all",
"3011 string to rule them all",
"3012 string to rule them all",
"3013 string to rule them all",
"3014 string to rule them all",
"3015 string to rule them all",
"3016 string to rule them all",
"3017 string to rule them all",
"3018 string to rule them all",
"3019 string to rule them all",
"3020 string to rule them all",
"3021 string to rule them all",
"3022 string to rule them all",
"3023 string to rule them all",
"3024 string to rule them all",
"3025 string to rule them all",
"3026 string to rule them all",
"3027 string to rule them all",
"3028 string to rule them all",
"3029 string to rule them all",
"3030 string to rule them all",
"3031 string to rule them all",
"3032 string to rule them all",
"3033 string to rule them all",
"3034 string to rule them all",
"3035 string to rule them all",
"3036 string to rule them all",
"3037 string to rule them all",
"3038 string to rule them all",
"3039 string to rule them all",
"3040 string to rule them all",
"3041 string to rule them all",
"3042 string to rule them all",
"3043 string to rule them all",
"3044 string to rule them all",
"3045 string to rule them all",
"3046 string to rule them all",
"3047 string to rule them all",
"3048 string to rule them all",
"3049 string to rule them all",
"3050 string to rule them all",
"3051 string to rule them all",
"3052 string to rule them all",
"3053 string to rule them all",
"3054 string to rule them all",
"3055 string to rule them all",
"3056 string to rule them all",
"3057 string to rule them all",
"3058 string to rule them all",
"3059 string to rule them all",
"3060 string to rule them all",
"3061 string to rule them all",
"3062 string to rule them all",
"3063 string to rule them all",
"3064 string to rule them all",
"3065 string to rule them all",
"3066 string to rule them all",
"3067 string to rule them all",
"3068 string to rule them all",
"3069 string to rule them all",
"3070 string to rule them all",
"3071 string to rule them all",
"3072 string to rule them all",
"3073 string to rule them all",
"3074 string to rule them all",
"3075 string to rule them all",
"3076 string to rule them all",
"3077 string to rule them all",
"3078 string to rule them all",
"3079 string to rule them all",
"3080 string to rule them all",
"3081 string to rule them all",
"3082 string to rule them all",
"3083 string to rule them all",
"3084 string to rule them all",
"3085 string to rule them all",
"3086 string to rule them all",
"3087 string to rule them all",
"3088 string to rule them all",
"3089 string to rule them all",
"3090 string to rule them all",
"3091 string to rule them all",
"3092 string to rule them all",
"3093 string to rule them all",
"3094 string to rule them all",
"3095 string to rule them all",
"3096 string to rule them all",
"3097 string to rule them all",
"3098 string to rule them all",
"3099 string to rule them all",
"3100 string to rule them all",
"3101 string to rule them all",
"3102 string to rule them all",
"3103 string to rule them all",
"3104 string to rule them all",
"3105 string to rule them all",
"3106 string to rule them all",
"3107 string to rule them all",
"3108 string to rule them all",
"3109 string to rule them all",
"3110 string to rule them all",
"3111 string to rule them all",
"3112 string to rule them all",
"3113 string to rule them all",
"3114 string to rule them all",
"3115 string to rule them all",
"3116 string to rule them all",
"3117 string to rule them all",
"3118 string to rule them all",
"3119 string to rule them all",
"3120 string to rule them all",
"3121 string to rule them all",
"3122 string to rule them all",
"3123 string to rule them all",
"3124 string to rule them all",
"3125 string to rule them all",
"3126 string to rule them all",
"3127 string to rule them all",
"3128 string to rule them all",
"3129 string to rule them all",
"3130 string to rule them all",
"3131 string to rule them all",
"3132 string to rule them all",
"3133 string to rule them all",
"3134 string to rule them all",
"3135 string to rule them all",
"3136 string to rule them all",
"3137 string to rule them all",
"3138 string to rule them all",
"3139 string to rule them all",
"3140 string to rule them all",
"3141 string to rule them all",
"3142 string to rule them all",
"3143 string to rule them all",
"3144 string to rule them all",
"3145 string to rule them all",
"3146 string to rule them all",
"3147 string to rule them all",
"3148 string to rule them all",
"3149 string to rule them all",
"3150 string to rule them all",
"3151 string to rule them all",
"3152 string to rule them all",
"3153 string to rule them all",
"3154 string to rule them all",
"3155 string to rule them all",
"3156 string to rule them all",
"3157 string to rule them all",
"3158 string to rule them all",
"3159 string to rule them all",
"3160 string to rule them all",
"3161 string to rule them all",
"3162 string to rule them all",
"3163 string to rule them all",
"3164 string to rule them all",
"3165 string to rule them all",
"3166 string to rule them all",
"3167 string to rule them all",
"3168 string to rule them all",
"3169 string to rule them all",
"3170 string to rule them all",
"3171 string to rule them all",
"3172 string to rule them all",
"3173 string to rule them all",
"3174 string to rule them all",
"3175 string to rule them all",
"3176 string to rule them all",
"3177 string to rule them all",
"3178 string to rule them all",
"3179 string to rule them all",
"3180 string to rule them all",
"3181 string to rule them all",
"3182 string to rule them all",
"3183 string to rule them all",
"3184 string to rule them all",
"3185 string to rule them all",
"3186 string to rule them all",
"3187 string to rule them all",
"3188 string to rule them all",
"3189 string to rule them all",
"3190 string to rule them all",
"3191 string to rule them all",
"3192 string to rule them all",
"3193 string to rule them all",
"3194 string to rule them all",
"3195 string to rule them all",
"3196 string to rule them all",
"3197 string to rule them all",
"3198 string to rule them all",
"3199 string to rule them all",
"3200 string to rule them all",
"3201 string to rule them all",
"3202 string to rule them all",
"3203 string to rule them all",
"3204 string to rule them all",
"3205 string to rule them all",
"3206 string to rule them all",
"3207 string to rule them all",
"3208 string to rule them all",
"3209 string to rule them all",
"3210 string to rule them all",
"3211 string to rule them all",
"3212 string to rule them all",
"3213 string to rule them all",
"3214 string to rule them all",
"3215 string to rule them all",
"3216 string to rule them all",
"3217 string to rule them all",
"3218 string to rule them all",
"3219 string to rule them all",
"3220 string to rule them all",
"3221 string to rule them all",
"3222 string to rule them all",
"3223 string to rule them all",
"3224 string to rule them all",
"3225 string to rule them all",
"3226 string to rule them all",
"3227 string to rule them all",
"3228 string to rule them all",
"3229 string to rule them all",
"3230 string to rule them all",
"3231 string to rule them all",
"3232 string to rule them all",
"3233 string to rule them all",
"3234 string to rule them all",
"3235 string to rule them all",
"3236 string to rule them all",
"3237 string to rule them all",
"3238 string to rule them all",
"3239 string to rule them all",
"3240 string to rule them all",
"3241 string to rule them all",
"3242 string to rule them all",
"3243 string to rule them all",
"3244 string to rule them all",
"3245 string to rule them all",
"3246 string to rule them all",
"3247 string to rule them all",
"3248 string to rule them all",
"3249 string to rule them all",
"3250 string to rule them all",
"3251 string to rule them all",
"3252 string to rule them all",
"3253 string to rule them all",
"3254 string to rule them all",
"3255 string to rule them all",
"3256 string to rule them all",
"3257 string to rule them all",
"3258 string to rule them all",
"3259 string to rule them all",
"3260 string to rule them all",
"3261 string to rule them all",
"3262 string to rule them all",
"3263 string to rule them all",
"3264 string to rule them all",
"3265 string to rule them all",
"3266 string to rule them all",
"3267 string to rule them all",
"3268 string to rule them all",
"3269 string to rule them all",
"3270 string to rule them all",
"3271 string to rule them all",
"3272 string to rule them all",
"3273 string to rule them all",
"3274 string to rule them all",
"3275 string to rule them all",
"3276 string to rule them all",
"3277 string to rule them all",
"3278 string to rule them all",
"3279 string to rule them all",
"3280 string to rule them all",
"3281 string to rule them all",
"3282 string to rule them all",
"3283 string to rule them all",
"3284 string to rule them all",
"3285 string to rule them all",
"3286 string to rule them all",
"3287 string to rule them all",
"3288 string to rule them all",
"3289 string to rule them all",
"3290 string to rule them all",
"3291 string to rule them all",
"3292 string to rule them all",
"3293 string to rule them all",
"3294 string to rule them all",
"3295 string to rule them all",
"3296 string to rule them all",
"3297 string to rule them all",
"3298 string to rule them all",
"3299 string to rule them all",
"3300 string to rule them all",
"3301 string to rule them all",
"3302 string to rule them all",
"3303 string to rule them all",
"3304 string to rule them all",
"3305 string to rule them all",
"3306 string to rule them all",
"3307 string to rule them all",
"3308 string to rule them all",
"3309 string to rule them all",
"3310 string to rule them all",
"3311 string to rule them all",
"3312 string to rule them all",
"3313 string to rule them all",
"3314 string to rule them all",
"3315 string to rule them all",
"3316 string to rule them all",
"3317 string to rule them all",
"3318 string to rule them all",
"3319 string to rule them all",
"3320 string to rule them all",
"3321 string to rule them all",
"3322 string to rule them all",
"3323 string to rule them all",
"3324 string to rule them all",
"3325 string to rule them all",
"3326 string to rule them all",
"3327 string to rule them all",
"3328 string to rule them all",
"3329 string to rule them all",
"3330 string to rule them all",
"3331 string to rule them all",
"3332 string to rule them all",
"3333 string to rule them all",
"3334 string to rule them all",
"3335 string to rule them all",
"3336 string to rule them all",
"3337 string to rule them all",
"3338 string to rule them all",
"3339 string to rule them all",
"3340 string to rule them all",
"3341 string to rule them all",
"3342 string to rule them all",
"3343 string to rule them all",
"3344 string to rule them all",
"3345 string to rule them all",
"3346 string to rule them all",
"3347 string to rule them all",
"3348 string to rule them all",
"3349 string to rule them all",
"3350 string to rule them all",
"3351 string to rule them all",
"3352 string to rule them all",
"3353 string to rule them all",
"3354 string to rule them all",
"3355 string to rule them all",
"3356 string to rule them all",
"3357 string to rule them all",
"3358 string to rule them all",
"3359 string to rule them all",
"3360 string to rule them all",
"3361 string to rule them all",
"3362 string to rule them all",
"3363 string to rule them all",
"3364 string to rule them all",
"3365 string to rule them all",
"3366 string to rule them all",
"3367 string to rule them all",
"3368 string to rule them all",
"3369 string to rule them all",
"3370 string to rule them all",
"3371 string to rule them all",
"3372 string to rule them all",
"3373 string to rule them all",
"3374 string to rule them all",
"3375 string to rule them all",
"3376 string to rule them all",
"3377 string to rule them all",
"3378 string to rule them all",
"3379 string to rule them all",
"3380 string to rule them all",
"3381 string to rule them all",
"3382 string to rule them all",
"3383 string to rule them all",
"3384 string to rule them all",
"3385 string to rule them all",
"3386 string to rule them all",
"3387 string to rule them all",
"3388 string to rule them all",
"3389 string to rule them all",
"3390 string to rule them all",
"3391 string to rule them all",
"3392 string to rule them all",
"3393 string to rule them all",
"3394 string to rule them all",
"3395 string to rule them all",
"3396 string to rule them all",
"3397 string to rule them all",
"3398 string to rule them all",
"3399 string to rule them all",
"3400 string to rule them all",
"3401 string to rule them all",
"3402 string to rule them all",
"3403 string to rule them all",
"3404 string to rule them all",
"3405 string to rule them all",
"3406 string to rule them all",
"3407 string to rule them all",
"3408 string to rule them all",
"3409 string to rule them all",
"3410 string to rule them all",
"3411 string to rule them all",
"3412 string to rule them all",
"3413 string to rule them all",
"3414 string to rule them all",
"3415 string to rule them all",
"3416 string to rule them all",
"3417 string to rule them all",
"3418 string to rule them all",
"3419 string to rule them all",
"3420 string to rule them all",
"3421 string to rule them all",
"3422 string to rule them all",
"3423 string to rule them all",
"3424 string to rule them all",
"3425 string to rule them all",
"3426 string to rule them all",
"3427 string to rule them all",
"3428 string to rule them all",
"3429 string to rule them all",
"3430 string to rule them all",
"3431 string to rule them all",
"3432 string to rule them all",
"3433 string to rule them all",
"3434 string to rule them all",
"3435 string to rule them all",
"3436 string to rule them all",
"3437 string to rule them all",
"3438 string to rule them all",
"3439 string to rule them all",
"3440 string to rule them all",
"3441 string to rule them all",
"3442 string to rule them all",
"3443 string to rule them all",
"3444 string to rule them all",
"3445 string to rule them all",
"3446 string to rule them all",
"3447 string to rule them all",
"3448 string to rule them all",
"3449 string to rule them all",
"3450 string to rule them all",
"3451 string to rule them all",
"3452 string to rule them all",
"3453 string to rule them all",
"3454 string to rule them all",
"3455 string to rule them all",
"3456 string to rule them all",
"3457 string to rule them all",
"3458 string to rule them all",
"3459 string to rule them all",
"3460 string to rule them all",
"3461 string to rule them all",
"3462 string to rule them all",
"3463 string to rule them all",
"3464 string to rule them all",
"3465 string to rule them all",
"3466 string to rule them all",
"3467 string to rule them all",
"3468 string to rule them all",
"3469 string to rule them all",
"3470 string to rule them all",
"3471 string to rule them all",
"3472 string to rule them all",
"3473 string to rule them all",
"3474 string to rule them all",
"3475 string to rule them all",
"3476 string to rule them all",
"3477 string to rule them all",
"3478 string to rule them all",
"3479 string to rule them all",
"3480 string to rule them all",
"3481 string to rule them all",
"3482 string to rule them all",
"3483 string to rule them all",
"3484 string to rule them all",
"3485 string to rule them all",
"3486 string to rule them all",
"3487 string to rule them all",
"3488 string to rule them all",
"3489 string to rule them all",
"3490 string to rule them all",
"3491 string to rule them all",
"3492 string to rule them all",
"3493 string to rule them all",
"3494 string to rule them all",
"3495 string to rule them all",
"3496 string to rule them all",
"3497 string to rule them all",
"3498 string to rule them all",
"3499 string to rule them all",
"3500 string to rule them all",
"3501 string to rule them all",
"3502 string to rule them all",
"3503 string to rule them all",
"3504 string to rule them all",
"3505 string to rule them all",
"3506 string to rule them all",
"3507 string to rule them all",
"3508 string to rule them all",
"3509 string to rule them all",
"3510 string to rule them all",
"3511 string to rule them all",
"3512 string to rule them all",
"3513 string to rule them all",
"3514 string to rule them all",
"3515 string to rule them all",
"3516 string to rule them all",
"3517 string to rule them all",
"3518 string to rule them all",
"3519 string to rule them all",
"3520 string to rule them all",
"3521 string to rule them all",
"3522 string to rule them all",
"3523 string to rule them all",
"3524 string to rule them all",
"3525 string to rule them all",
"3526 string to rule them all",
"3527 string to rule them all",
"3528 string to rule them all",
"3529 string to rule them all",
"3530 string to rule them all",
"3531 string to rule them all",
"3532 string to rule them all",
"3533 string to rule them all",
"3534 string to rule them all",
"3535 string to rule them all",
"3536 string to rule them all",
"3537 string to rule them all",
"3538 string to rule them all",
"3539 string to rule them all",
"3540 string to rule them all",
"3541 string to rule them all",
"3542 string to rule them all",
"3543 string to rule them all",
"3544 string to rule them all",
"3545 string to rule them all",
"3546 string to rule them all",
"3547 string to rule them all",
"3548 string to rule them all",
"3549 string to rule them all",
"3550 string to rule them all",
"3551 string to rule them all",
"3552 string to rule them all",
"3553 string to rule them all",
"3554 string to rule them all",
"3555 string to rule them all",
"3556 string to rule them all",
"3557 string to rule them all",
"3558 string to rule them all",
"3559 string to rule them all",
"3560 string to rule them all",
"3561 string to rule them all",
"3562 string to rule them all",
"3563 string to rule them all",
"3564 string to rule them all",
"3565 string to rule them all",
"3566 string to rule them all",
"3567 string to rule them all",
"3568 string to rule them all",
"3569 string to rule them all",
"3570 string to rule them all",
"3571 string to rule them all",
"3572 string to rule them all",
"3573 string to rule them all",
"3574 string to rule them all",
"3575 string to rule them all",
"3576 string to rule them all",
"3577 string to rule them all",
"3578 string to rule them all",
"3579 string to rule them all",
"3580 string to rule them all",
"3581 string to rule them all",
"3582 string to rule them all",
"3583 string to rule them all",
"3584 string to rule them all",
"3585 string to rule them all",
"3586 string to rule them all",
"3587 string to rule them all",
"3588 string to rule them all",
"3589 string to rule them all",
"3590 string to rule them all",
"3591 string to rule them all",
"3592 string to rule them all",
"3593 string to rule them all",
"3594 string to rule them all",
"3595 string to rule them all",
"3596 string to rule them all",
"3597 string to rule them all",
"3598 string to rule them all",
"3599 string to rule them all",
"3600 string to rule them all",
"3601 string to rule them all",
"3602 string to rule them all",
"3603 string to rule them all",
"3604 string to rule them all",
"3605 string to rule them all",
"3606 string to rule them all",
"3607 string to rule them all",
"3608 string to rule them all",
"3609 string to rule them all",
"3610 string to rule them all",
"3611 string to rule them all",
"3612 string to rule them all",
"3613 string to rule them all",
"3614 string to rule them all",
"3615 string to rule them all",
"3616 string to rule them all",
"3617 string to rule them all",
"3618 string to rule them all",
"3619 string to rule them all",
"3620 string to rule them all",
"3621 string to rule them all",
"3622 string to rule them all",
"3623 string to rule them all",
"3624 string to rule them all",
"3625 string to rule them all",
"3626 string to rule them all",
"3627 string to rule them all",
"3628 string to rule them all",
"3629 string to rule them all",
"3630 string to rule them all",
"3631 string to rule them all",
"3632 string to rule them all",
"3633 string to rule them all",
"3634 string to rule them all",
"3635 string to rule them all",
"3636 string to rule them all",
"3637 string to rule them all",
"3638 string to rule them all",
"3639 string to rule them all",
"3640 string to rule them all",
"3641 string to rule them all",
"3642 string to rule them all",
"3643 string to rule them all",
"3644 string to rule them all",
"3645 string to rule them all",
"3646 string to rule them all",
"3647 string to rule them all",
"3648 string to rule them all",
"3649 string to rule them all",
"3650 string to rule them all",
"3651 string to rule them all",
"3652 string to rule them all",
"3653 string to rule them all",
"3654 string to rule them all",
"3655 string to rule them all",
"3656 string to rule them all",
"3657 string to rule them all",
"3658 string to rule them all",
"3659 string to rule them all",
"3660 string to rule them all",
"3661 string to rule them all",
"3662 string to rule them all",
"3663 string to rule them all",
"3664 string to rule them all",
"3665 string to rule them all",
"3666 string to rule them all",
"3667 string to rule them all",
"3668 string to rule them all",
"3669 string to rule them all",
"3670 string to rule them all",
"3671 string to rule them all",
"3672 string to rule them all",
"3673 string to rule them all",
"3674 string to rule them all",
"3675 string to rule them all",
"3676 string to rule them all",
"3677 string to rule them all",
"3678 string to rule them all",
"3679 string to rule them all",
"3680 string to rule them all",
"3681 string to rule them all",
"3682 string to rule them all",
"3683 string to rule them all",
"3684 string to rule them all",
"3685 string to rule them all",
"3686 string to rule them all",
"3687 string to rule them all",
"3688 string to rule them all",
"3689 string to rule them all",
"3690 string to rule them all",
"3691 string to rule them all",
"3692 string to rule them all",
"3693 string to rule them all",
"3694 string to rule them all",
"3695 string to rule them all",
"3696 string to rule them all",
"3697 string to rule them all",
"3698 string to rule them all",
"3699 string to rule them all",
"3700 string to rule them all",
"3701 string to rule them all",
"3702 string to rule them all",
"3703 string to rule them all",
"3704 string to rule them all",
"3705 string to rule them all",
"3706 string to rule them all",
"3707 string to rule them all",
"3708 string to rule them all",
"3709 string to rule them all",
"3710 string to rule them all",
"3711 string to rule them all",
"3712 string to rule them all",
"3713 string to rule them all",
"3714 string to rule them all",
"3715 string to rule them all",
"3716 string to rule them all",
"3717 string to rule them all",
"3718 string to rule them all",
"3719 string to rule them all",
"3720 string to rule them all",
"3721 string to rule them all",
"3722 string to rule them all",
"3723 string to rule them all",
"3724 string to rule them all",
"3725 string to rule them all",
"3726 string to rule them all",
"3727 string to rule them all",
"3728 string to rule them all",
"3729 string to rule them all",
"3730 string to rule them all",
"3731 string to rule them all",
"3732 string to rule them all",
"3733 string to rule them all",
"3734 string to rule them all",
"3735 string to rule them all",
"3736 string to rule them all",
"3737 string to rule them all",
"3738 string to rule them all",
"3739 string to rule them all",
"3740 string to rule them all",
"3741 string to rule them all",
"3742 string to rule them all",
"3743 string to rule them all",
"3744 string to rule them all",
"3745 string to rule them all",
"3746 string to rule them all",
"3747 string to rule them all",
"3748 string to rule them all",
"3749 string to rule them all",
"3750 string to rule them all",
"3751 string to rule them all",
"3752 string to rule them all",
"3753 string to rule them all",
"3754 string to rule them all",
"3755 string to rule them all",
"3756 string to rule them all",
"3757 string to rule them all",
"3758 string to rule them all",
"3759 string to rule them all",
"3760 string to rule them all",
"3761 string to rule them all",
"3762 string to rule them all",
"3763 string to rule them all",
"3764 string to rule them all",
"3765 string to rule them all",
"3766 string to rule them all",
"3767 string to rule them all",
"3768 string to rule them all",
"3769 string to rule them all",
"3770 string to rule them all",
"3771 string to rule them all",
"3772 string to rule them all",
"3773 string to rule them all",
"3774 string to rule them all",
"3775 string to rule them all",
"3776 string to rule them all",
"3777 string to rule them all",
"3778 string to rule them all",
"3779 string to rule them all",
"3780 string to rule them all",
"3781 string to rule them all",
"3782 string to rule them all",
"3783 string to rule them all",
"3784 string to rule them all",
"3785 string to rule them all",
"3786 string to rule them all",
"3787 string to rule them all",
"3788 string to rule them all",
"3789 string to rule them all",
"3790 string to rule them all",
"3791 string to rule them all",
"3792 string to rule them all",
"3793 string to rule them all",
"3794 string to rule them all",
"3795 string to rule them all",
"3796 string to rule them all",
"3797 string to rule them all",
"3798 string to rule them all",
"3799 string to rule them all",
"3800 string to rule them all",
"3801 string to rule them all",
"3802 string to rule them all",
"3803 string to rule them all",
"3804 string to rule them all",
"3805 string to rule them all",
"3806 string to rule them all",
"3807 string to rule them all",
"3808 string to rule them all",
"3809 string to rule them all",
"3810 string to rule them all",
"3811 string to rule them all",
"3812 string to rule them all",
"3813 string to rule them all",
"3814 string to rule them all",
"3815 string to rule them all",
"3816 string to rule them all",
"3817 string to rule them all",
"3818 string to rule them all",
"3819 string to rule them all",
"3820 string to rule them all",
"3821 string to rule them all",
"3822 string to rule them all",
"3823 string to rule them all",
"3824 string to rule them all",
"3825 string to rule them all",
"3826 string to rule them all",
"3827 string to rule them all",
"3828 string to rule them all",
"3829 string to rule them all",
"3830 string to rule them all",
"3831 string to rule them all",
"3832 string to rule them all",
"3833 string to rule them all",
"3834 string to rule them all",
"3835 string to rule them all",
"3836 string to rule them all",
"3837 string to rule them all",
"3838 string to rule them all",
"3839 string to rule them all",
"3840 string to rule them all",
"3841 string to rule them all",
"3842 string to rule them all",
"3843 string to rule them all",
"3844 string to rule them all",
"3845 string to rule them all",
"3846 string to rule them all",
"3847 string to rule them all",
"3848 string to rule them all",
"3849 string to rule them all",
"3850 string to rule them all",
"3851 string to rule them all",
"3852 string to rule them all",
"3853 string to rule them all",
"3854 string to rule them all",
"3855 string to rule them all",
"3856 string to rule them all",
"3857 string to rule them all",
"3858 string to rule them all",
"3859 string to rule them all",
"3860 string to rule them all",
"3861 string to rule them all",
"3862 string to rule them all",
"3863 string to rule them all",
"3864 string to rule them all",
"3865 string to rule them all",
"3866 string to rule them all",
"3867 string to rule them all",
"3868 string to rule them all",
"3869 string to rule them all",
"3870 string to rule them all",
"3871 string to rule them all",
"3872 string to rule them all",
"3873 string to rule them all",
"3874 string to rule them all",
"3875 string to rule them all",
"3876 string to rule them all",
"3877 string to rule them all",
"3878 string to rule them all",
"3879 string to rule them all",
"3880 string to rule them all",
"3881 string to rule them all",
"3882 string to rule them all",
"3883 string to rule them all",
"3884 string to rule them all",
"3885 string to rule them all",
"3886 string to rule them all",
"3887 string to rule them all",
"3888 string to rule them all",
"3889 string to rule them all",
"3890 string to rule them all",
"3891 string to rule them all",
"3892 string to rule them all",
"3893 string to rule them all",
"3894 string to rule them all",
"3895 string to rule them all",
"3896 string to rule them all",
"3897 string to rule them all",
"3898 string to rule them all",
"3899 string to rule them all",
"3900 string to rule them all",
"3901 string to rule them all",
"3902 string to rule them all",
"3903 string to rule them all",
"3904 string to rule them all",
"3905 string to rule them all",
"3906 string to rule them all",
"3907 string to rule them all",
"3908 string to rule them all",
"3909 string to rule them all",
"3910 string to rule them all",
"3911 string to rule them all",
"3912 string to rule them all",
"3913 string to rule them all",
"3914 string to rule them all",
"3915 string to rule them all",
"3916 string to rule them all",
"3917 string to rule them all",
"3918 string to rule them all",
"3919 string to rule them all",
"3920 string to rule them all",
"3921 string to rule them all",
"3922 string to rule them all",
"3923 string to rule them all",
"3924 string to rule them all",
"3925 string to rule them all",
"3926 string to rule them all",
"3927 string to rule them all",
"3928 string to rule them all",
"3929 string to rule them all",
"3930 string to rule them all",
"3931 string to rule them all",
"3932 string to rule them all",
"3933 string to rule them all",
"3934 string to rule them all",
"3935 string to rule them all",
"3936 string to rule them all",
"3937 string to rule them all",
"3938 string to rule them all",
"3939 string to rule them all",
"3940 string to rule them all",
"3941 string to rule them all",
"3942 string to rule them all",
"3943 string to rule them all",
"3944 string to rule them all",
"3945 string to rule them all",
"3946 string to rule them all",
"3947 string to rule them all",
"3948 string to rule them all",
"3949 string to rule them all",
"3950 string to rule them all",
"3951 string to rule them all",
"3952 string to rule them all",
"3953 string to rule them all",
"3954 string to rule them all",
"3955 string to rule them all",
"3956 string to rule them all",
"3957 string to rule them all",
"3958 string to rule them all",
"3959 string to rule them all",
"3960 string to rule them all",
"3961 string to rule them all",
"3962 string to rule them all",
"3963 string to rule them all",
"3964 string to rule them all",
"3965 string to rule them all",
"3966 string to rule them all",
"3967 string to rule them all",
"3968 string to rule them all",
"3969 string to rule them all",
"3970 string to rule them all",
"3971 string to rule them all",
"3972 string to rule them all",
"3973 string to rule them all",
"3974 string to rule them all",
"3975 string to rule them all",
"3976 string to rule them all",
"3977 string to rule them all",
"3978 string to rule them all",
"3979 string to rule them all",
"3980 string to rule them all",
"3981 string to rule them all",
"3982 string to rule them all",
"3983 string to rule them all",
"3984 string to rule them all",
"3985 string to rule them all",
"3986 string to rule them all",
"3987 string to rule them all",
"3988 string to rule them all",
"3989 string to rule them all",
"3990 string to rule them all",
"3991 string to rule them all",
"3992 string to rule them all",
"3993 string to rule them all",
"3994 string to rule them all",
"3995 string to rule them all",
"3996 string to rule them all",
"3997 string to rule them all",
"3998 string to rule them all",
"3999 string to rule them all",
"4000 string to rule them all",
"4001 string to rule them all",
"4002 string to rule them all",
"4003 string to rule them all",
"4004 string to rule them all",
"4005 string to rule them all",
"4006 string to rule them all",
"4007 string to rule them all",
"4008 string to rule them all",
"4009 string to rule them all",
"4010 string to rule them all",
"4011 string to rule them all",
"4012 string to rule them all",
"4013 string to rule them all",
"4014 string to rule them all",
"4015 string to rule them all",
"4016 string to rule them all",
"4017 string to rule them all",
"4018 string to rule them all",
"4019 string to rule them all",
"4020 string to rule them all",
"4021 string to rule them all",
"4022 string to rule them all",
"4023 string to rule them all",
"4024 string to rule them all",
"4025 string to rule them all",
"4026 string to rule them all",
"4027 string to rule them all",
"4028 string to rule them all",
"4029 string to rule them all",
"4030 string to rule them all",
"4031 string to rule them all",
"4032 string to rule them all",
"4033 string to rule them all",
"4034 string to rule them all",
"4035 string to rule them all",
"4036 string to rule them all",
"4037 string to rule them all",
"4038 string to rule them all",
"4039 string to rule them all",
"4040 string to rule them all",
"4041 string to rule them all",
"4042 string to rule them all",
"4043 string to rule them all",
"4044 string to rule them all",
"4045 string to rule them all",
"4046 string to rule them all",
"4047 string to rule them all",
"4048 string to rule them all",
"4049 string to rule them all",
"4050 string to rule them all",
"4051 string to rule them all",
"4052 string to rule them all",
"4053 string to rule them all",
"4054 string to rule them all",
"4055 string to rule them all",
"4056 string to rule them all",
"4057 string to rule them all",
"4058 string to rule them all",
"4059 string to rule them all",
"4060 string to rule them all",
"4061 string to rule them all",
"4062 string to rule them all",
"4063 string to rule them all",
"4064 string to rule them all",
"4065 string to rule them all",
"4066 string to rule them all",
"4067 string to rule them all",
"4068 string to rule them all",
"4069 string to rule them all",
"4070 string to rule them all",
"4071 string to rule them all",
"4072 string to rule them all",
"4073 string to rule them all",
"4074 string to rule them all",
"4075 string to rule them all",
"4076 string to rule them all",
"4077 string to rule them all",
"4078 string to rule them all",
"4079 string to rule them all",
"4080 string to rule them all",
"4081 string to rule them all",
"4082 string to rule them all",
"4083 string to rule them all",
"4084 string to rule them all",
"4085 string to rule them all",
"4086 string to rule them all",
"4087 string to rule them all",
"4088 string to rule them all",
"4089 string to rule them all",
"4090 string to rule them all",
"4091 string to rule them all",
"4092 string to rule them all",
"4093 string to rule them all",
"4094 string to rule them all",
"4095 string to rule them all",
"4096 string to rule them all",
"4097 string to rule them all",
"4098 string to rule them all",
"4099 string to rule them all",
"4100 string to rule them all",
"4101 string to rule them all",
"4102 string to rule them all",
"4103 string to rule them all",
"4104 string to rule them all",
"4105 string to rule them all",
"4106 string to rule them all",
"4107 string to rule them all",
"4108 string to rule them all",
"4109 string to rule them all",
"4110 string to rule them all",
"4111 string to rule them all",
"4112 string to rule them all",
"4113 string to rule them all",
"4114 string to rule them all",
"4115 string to rule them all",
"4116 string to rule them all",
"4117 string to rule them all",
"4118 string to rule them all",
"4119 string to rule them all",
"4120 string to rule them all",
"4121 string to rule them all",
"4122 string to rule them all",
"4123 string to rule them all",
"4124 string to rule them all",
"4125 string to rule them all",
"4126 string to rule them all",
"4127 string to rule them all",
"4128 string to rule them all",
"4129 string to rule them all",
"4130 string to rule them all",
"4131 string to rule them all",
"4132 string to rule them all",
"4133 string to rule them all",
"4134 string to rule them all",
"4135 string to rule them all",
"4136 string to rule them all",
"4137 string to rule them all",
"4138 string to rule them all",
"4139 string to rule them all",
"4140 string to rule them all",
"4141 string to rule them all",
"4142 string to rule them all",
"4143 string to rule them all",
"4144 string to rule them all",
"4145 string to rule them all",
"4146 string to rule them all",
"4147 string to rule them all",
"4148 string to rule them all",
"4149 string to rule them all",
"4150 string to rule them all",
"4151 string to rule them all",
"4152 string to rule them all",
"4153 string to rule them all",
"4154 string to rule them all",
"4155 string to rule them all",
"4156 string to rule them all",
"4157 string to rule them all",
"4158 string to rule them all",
"4159 string to rule them all",
"4160 string to rule them all",
"4161 string to rule them all",
"4162 string to rule them all",
"4163 string to rule them all",
"4164 string to rule them all",
"4165 string to rule them all",
"4166 string to rule them all",
"4167 string to rule them all",
"4168 string to rule them all",
"4169 string to rule them all",
"4170 string to rule them all",
"4171 string to rule them all",
"4172 string to rule them all",
"4173 string to rule them all",
"4174 string to rule them all",
"4175 string to rule them all",
"4176 string to rule them all",
"4177 string to rule them all",
"4178 string to rule them all",
"4179 string to rule them all",
"4180 string to rule them all",
"4181 string to rule them all",
"4182 string to rule them all",
"4183 string to rule them all",
"4184 string to rule them all",
"4185 string to rule them all",
"4186 string to rule them all",
"4187 string to rule them all",
"4188 string to rule them all",
"4189 string to rule them all",
"4190 string to rule them all",
"4191 string to rule them all",
"4192 string to rule them all",
"4193 string to rule them all",
"4194 string to rule them all",
"4195 string to rule them all",
"4196 string to rule them all",
"4197 string to rule them all",
"4198 string to rule them all",
"4199 string to rule them all",
"4200 string to rule them all",
"4201 string to rule them all",
"4202 string to rule them all",
"4203 string to rule them all",
"4204 string to rule them all",
"4205 string to rule them all",
"4206 string to rule them all",
"4207 string to rule them all",
"4208 string to rule them all",
"4209 string to rule them all",
"4210 string to rule them all",
"4211 string to rule them all",
"4212 string to rule them all",
"4213 string to rule them all",
"4214 string to rule them all",
"4215 string to rule them all",
"4216 string to rule them all",
"4217 string to rule them all",
"4218 string to rule them all",
"4219 string to rule them all",
"4220 string to rule them all",
"4221 string to rule them all",
"4222 string to rule them all",
"4223 string to rule them all",
"4224 string to rule them all",
"4225 string to rule them all",
"4226 string to rule them all",
"4227 string to rule them all",
"4228 string to rule them all",
"4229 string to rule them all",
"4230 string to rule them all",
"4231 string to rule them all",
"4232 string to rule them all",
"4233 string to rule them all",
"4234 string to rule them all",
"4235 string to rule them all",
"4236 string to rule them all",
"4237 string to rule them all",
"4238 string to rule them all",
"4239 string to rule them all",
"4240 string to rule them all",
"4241 string to rule them all",
"4242 string to rule them all",
"4243 string to rule them all",
"4244 string to rule them all",
"4245 string to rule them all",
"4246 string to rule them all",
"4247 string to rule them all",
"4248 string to rule them all",
"4249 string to rule them all",
"4250 string to rule them all",
"4251 string to rule them all",
"4252 string to rule them all",
"4253 string to rule them all",
"4254 string to rule them all",
"4255 string to rule them all",
"4256 string to rule them all",
"4257 string to rule them all",
"4258 string to rule them all",
"4259 string to rule them all",
"4260 string to rule them all",
"4261 string to rule them all",
"4262 string to rule them all",
"4263 string to rule them all",
"4264 string to rule them all",
"4265 string to rule them all",
"4266 string to rule them all",
"4267 string to rule them all",
"4268 string to rule them all",
"4269 string to rule them all",
"4270 string to rule them all",
"4271 string to rule them all",
"4272 string to rule them all",
"4273 string to rule them all",
"4274 string to rule them all",
"4275 string to rule them all",
"4276 string to rule them all",
"4277 string to rule them all",
"4278 string to rule them all",
"4279 string to rule them all",
"4280 string to rule them all",
"4281 string to rule them all",
"4282 string to rule them all",
"4283 string to rule them all",
"4284 string to rule them all",
"4285 string to rule them all",
"4286 string to rule them all",
"4287 string to rule them all",
"4288 string to rule them all",
"4289 string to rule them all",
"4290 string to rule them all",
"4291 string to rule them all",
"4292 string to rule them all",
"4293 string to rule them all",
"4294 string to rule them all",
"4295 string to rule them all",
"4296 string to rule them all",
"4297 string to rule them all",
"4298 string to rule them all",
"4299 string to rule them all",
"4300 string to rule them all",
"4301 string to rule them all",
"4302 string to rule them all",
"4303 string to rule them all",
"4304 string to rule them all",
"4305 string to rule them all",
"4306 string to rule them all",
"4307 string to rule them all",
"4308 string to rule them all",
"4309 string to rule them all",
"4310 string to rule them all",
"4311 string to rule them all",
"4312 string to rule them all",
"4313 string to rule them all",
"4314 string to rule them all",
"4315 string to rule them all",
"4316 string to rule them all",
"4317 string to rule them all",
"4318 string to rule them all",
"4319 string to rule them all",
"4320 string to rule them all",
"4321 string to rule them all",
"4322 string to rule them all",
"4323 string to rule them all",
"4324 string to rule them all",
"4325 string to rule them all",
"4326 string to rule them all",
"4327 string to rule them all",
"4328 string to rule them all",
"4329 string to rule them all",
"4330 string to rule them all",
"4331 string to rule them all",
"4332 string to rule them all",
"4333 string to rule them all",
"4334 string to rule them all",
"4335 string to rule them all",
"4336 string to rule them all",
"4337 string to rule them all",
"4338 string to rule them all",
"4339 string to rule them all",
"4340 string to rule them all",
"4341 string to rule them all",
"4342 string to rule them all",
"4343 string to rule them all",
"4344 string to rule them all",
"4345 string to rule them all",
"4346 string to rule them all",
"4347 string to rule them all",
"4348 string to rule them all",
"4349 string to rule them all",
"4350 string to rule them all",
"4351 string to rule them all",
"4352 string to rule them all",
"4353 string to rule them all",
"4354 string to rule them all",
"4355 string to rule them all",
"4356 string to rule them all",
"4357 string to rule them all",
"4358 string to rule them all",
"4359 string to rule them all",
"4360 string to rule them all",
"4361 string to rule them all",
"4362 string to rule them all",
"4363 string to rule them all",
"4364 string to rule them all",
"4365 string to rule them all",
"4366 string to rule them all",
"4367 string to rule them all",
"4368 string to rule them all",
"4369 string to rule them all",
"4370 string to rule them all",
"4371 string to rule them all",
"4372 string to rule them all",
"4373 string to rule them all",
"4374 string to rule them all",
"4375 string to rule them all",
"4376 string to rule them all",
"4377 string to rule them all",
"4378 string to rule them all",
"4379 string to rule them all",
"4380 string to rule them all",
"4381 string to rule them all",
"4382 string to rule them all",
"4383 string to rule them all",
"4384 string to rule them all",
"4385 string to rule them all",
"4386 string to rule them all",
"4387 string to rule them all",
"4388 string to rule them all",
"4389 string to rule them all",
"4390 string to rule them all",
"4391 string to rule them all",
"4392 string to rule them all",
"4393 string to rule them all",
"4394 string to rule them all",
"4395 string to rule them all",
"4396 string to rule them all",
"4397 string to rule them all",
"4398 string to rule them all",
"4399 string to rule them all",
"4400 string to rule them all",
"4401 string to rule them all",
"4402 string to rule them all",
"4403 string to rule them all",
"4404 string to rule them all",
"4405 string to rule them all",
"4406 string to rule them all",
"4407 string to rule them all",
"4408 string to rule them all",
"4409 string to rule them all",
"4410 string to rule them all",
"4411 string to rule them all",
"4412 string to rule them all",
"4413 string to rule them all",
"4414 string to rule them all",
"4415 string to rule them all",
"4416 string to rule them all",
"4417 string to rule them all",
"4418 string to rule them all",
"4419 string to rule them all",
"4420 string to rule them all",
"4421 string to rule them all",
"4422 string to rule them all",
"4423 string to rule them all",
"4424 string to rule them all",
"4425 string to rule them all",
"4426 string to rule them all",
"4427 string to rule them all",
"4428 string to rule them all",
"4429 string to rule them all",
"4430 string to rule them all",
"4431 string to rule them all",
"4432 string to rule them all",
"4433 string to rule them all",
"4434 string to rule them all",
"4435 string to rule them all",
"4436 string to rule them all",
"4437 string to rule them all",
"4438 string to rule them all",
"4439 string to rule them all",
"4440 string to rule them all",
"4441 string to rule them all",
"4442 string to rule them all",
"4443 string to rule them all",
"4444 string to rule them all",
"4445 string to rule them all",
"4446 string to rule them all",
"4447 string to rule them all",
"4448 string to rule them all",
"4449 string to rule them all",
"4450 string to rule them all",
"4451 string to rule them all",
"4452 string to rule them all",
"4453 string to rule them all",
"4454 string to rule them all",
"4455 string to rule them all",
"4456 string to rule them all",
"4457 string to rule them all",
"4458 string to rule them all",
"4459 string to rule them all",
"4460 string to rule them all",
"4461 string to rule them all",
"4462 string to rule them all",
"4463 string to rule them all",
"4464 string to rule them all",
"4465 string to rule them all",
"4466 string to rule them all",
"4467 string to rule them all",
"4468 string to rule them all",
"4469 string to rule them all",
"4470 string to rule them all",
"4471 string to rule them all",
"4472 string to rule them all",
"4473 string to rule them all",
"4474 string to rule them all",
"4475 string to rule them all",
"4476 string to rule them all",
"4477 string to rule them all",
"4478 string to rule them all",
"4479 string to rule them all",
"4480 string to rule them all",
"4481 string to rule them all",
"4482 string to rule them all",
"4483 string to rule them all",
"4484 string to rule them all",
"4485 string to rule them all",
"4486 string to rule them all",
"4487 string to rule them all",
"4488 string to rule them all",
"4489 string to rule them all",
"4490 string to rule them all",
"4491 string to rule them all",
"4492 string to rule them all",
"4493 string to rule them all",
"4494 string to rule them all",
"4495 string to rule them all",
"4496 string to rule them all",
"4497 string to rule them all",
"4498 string to rule them all",
"4499 string to rule them all",
"4500 string to rule them all",
"4501 string to rule them all",
"4502 string to rule them all",
"4503 string to rule them all",
"4504 string to rule them all",
"4505 string to rule them all",
"4506 string to rule them all",
"4507 string to rule them all",
"4508 string to rule them all",
"4509 string to rule them all",
"4510 string to rule them all",
"4511 string to rule them all",
"4512 string to rule them all",
"4513 string to rule them all",
"4514 string to rule them all",
"4515 string to rule them all",
"4516 string to rule them all",
"4517 string to rule them all",
"4518 string to rule them all",
"4519 string to rule them all",
"4520 string to rule them all",
"4521 string to rule them all",
"4522 string to rule them all",
"4523 string to rule them all",
"4524 string to rule them all",
"4525 string to rule them all",
"4526 string to rule them all",
"4527 string to rule them all",
"4528 string to rule them all",
"4529 string to rule them all",
"4530 string to rule them all",
"4531 string to rule them all",
"4532 string to rule them all",
"4533 string to rule them all",
"4534 string to rule them all",
"4535 string to rule them all",
"4536 string to rule them all",
"4537 string to rule them all",
"4538 string to rule them all",
"4539 string to rule them all",
"4540 string to rule them all",
"4541 string to rule them all",
"4542 string to rule them all",
"4543 string to rule them all",
"4544 string to rule them all",
"4545 string to rule them all",
"4546 string to rule them all",
"4547 string to rule them all",
"4548 string to rule them all",
"4549 string to rule them all",
"4550 string to rule them all",
"4551 string to rule them all",
"4552 string to rule them all",
"4553 string to rule them all",
"4554 string to rule them all",
"4555 string to rule them all",
"4556 string to rule them all",
"4557 string to rule them all",
"4558 string to rule them all",
"4559 string to rule them all",
"4560 string to rule them all",
"4561 string to rule them all",
"4562 string to rule them all",
"4563 string to rule them all",
"4564 string to rule them all",
"4565 string to rule them all",
"4566 string to rule them all",
"4567 string to rule them all",
"4568 string to rule them all",
"4569 string to rule them all",
"4570 string to rule them all",
"4571 string to rule them all",
"4572 string to rule them all",
"4573 string to rule them all",
"4574 string to rule them all",
"4575 string to rule them all",
"4576 string to rule them all",
"4577 string to rule them all",
"4578 string to rule them all",
"4579 string to rule them all",
"4580 string to rule them all",
"4581 string to rule them all",
"4582 string to rule them all",
"4583 string to rule them all",
"4584 string to rule them all",
"4585 string to rule them all",
"4586 string to rule them all",
"4587 string to rule them all",
"4588 string to rule them all",
"4589 string to rule them all",
"4590 string to rule them all",
"4591 string to rule them all",
"4592 string to rule them all",
"4593 string to rule them all",
"4594 string to rule them all",
"4595 string to rule them all",
"4596 string to rule them all",
"4597 string to rule them all",
"4598 string to rule them all",
"4599 string to rule them all",
"4600 string to rule them all",
"4601 string to rule them all",
"4602 string to rule them all",
"4603 string to rule them all",
"4604 string to rule them all",
"4605 string to rule them all",
"4606 string to rule them all",
"4607 string to rule them all",
"4608 string to rule them all",
"4609 string to rule them all",
"4610 string to rule them all",
"4611 string to rule them all",
"4612 string to rule them all",
"4613 string to rule them all",
"4614 string to rule them all",
"4615 string to rule them all",
"4616 string to rule them all",
"4617 string to rule them all",
"4618 string to rule them all",
"4619 string to rule them all",
"4620 string to rule them all",
"4621 string to rule them all",
"4622 string to rule them all",
"4623 string to rule them all",
"4624 string to rule them all",
"4625 string to rule them all",
"4626 string to rule them all",
"4627 string to rule them all",
"4628 string to rule them all",
"4629 string to rule them all",
"4630 string to rule them all",
"4631 string to rule them all",
"4632 string to rule them all",
"4633 string to rule them all",
"4634 string to rule them all",
"4635 string to rule them all",
"4636 string to rule them all",
"4637 string to rule them all",
"4638 string to rule them all",
"4639 string to rule them all",
"4640 string to rule them all",
"4641 string to rule them all",
"4642 string to rule them all",
"4643 string to rule them all",
"4644 string to rule them all",
"4645 string to rule them all",
"4646 string to rule them all",
"4647 string to rule them all",
"4648 string to rule them all",
"4649 string to rule them all",
"4650 string to rule them all",
"4651 string to rule them all",
"4652 string to rule them all",
"4653 string to rule them all",
"4654 string to rule them all",
"4655 string to rule them all",
"4656 string to rule them all",
"4657 string to rule them all",
"4658 string to rule them all",
"4659 string to rule them all",
"4660 string to rule them all",
"4661 string to rule them all",
"4662 string to rule them all",
"4663 string to rule them all",
"4664 string to rule them all",
"4665 string to rule them all",
"4666 string to rule them all",
"4667 string to rule them all",
"4668 string to rule them all",
"4669 string to rule them all",
"4670 string to rule them all",
"4671 string to rule them all",
"4672 string to rule them all",
"4673 string to rule them all",
"4674 string to rule them all",
"4675 string to rule them all",
"4676 string to rule them all",
"4677 string to rule them all",
"4678 string to rule them all",
"4679 string to rule them all",
"4680 string to rule them all",
"4681 string to rule them all",
"4682 string to rule them all",
"4683 string to rule them all",
"4684 string to rule them all",
"4685 string to rule them all",
"4686 string to rule them all",
"4687 string to rule them all",
"4688 string to rule them all",
"4689 string to rule them all",
"4690 string to rule them all",
"4691 string to rule them all",
"4692 string to rule them all",
"4693 string to rule them all",
"4694 string to rule them all",
"4695 string to rule them all",
"4696 string to rule them all",
"4697 string to rule them all",
"4698 string to rule them all",
"4699 string to rule them all",
"4700 string to rule them all",
"4701 string to rule them all",
"4702 string to rule them all",
"4703 string to rule them all",
"4704 string to rule them all",
"4705 string to rule them all",
"4706 string to rule them all",
"4707 string to rule them all",
"4708 string to rule them all",
"4709 string to rule them all",
"4710 string to rule them all",
"4711 string to rule them all",
"4712 string to rule them all",
"4713 string to rule them all",
"4714 string to rule them all",
"4715 string to rule them all",
"4716 string to rule them all",
"4717 string to rule them all",
"4718 string to rule them all",
"4719 string to rule them all",
"4720 string to rule them all",
"4721 string to rule them all",
"4722 string to rule them all",
"4723 string to rule them all",
"4724 string to rule them all",
"4725 string to rule them all",
"4726 string to rule them all",
"4727 string to rule them all",
"4728 string to rule them all",
"4729 string to rule them all",
"4730 string to rule them all",
"4731 string to rule them all",
"4732 string to rule them all",
"4733 string to rule them all",
"4734 string to rule them all",
"4735 string to rule them all",
"4736 string to rule them all",
"4737 string to rule them all",
"4738 string to rule them all",
"4739 string to rule them all",
"4740 string to rule them all",
"4741 string to rule them all",
"4742 string to rule them all",
"4743 string to rule them all",
"4744 string to rule them all",
"4745 string to rule them all",
"4746 string to rule them all",
"4747 string to rule them all",
"4748 string to rule them all",
"4749 string to rule them all",
"4750 string to rule them all",
"4751 string to rule them all",
"4752 string to rule them all",
"4753 string to rule them all",
"4754 string to rule them all",
"4755 string to rule them all",
"4756 string to rule them all",
"4757 string to rule them all",
"4758 string to rule them all",
"4759 string to rule them all",
"4760 string to rule them all",
"4761 string to rule them all",
"4762 string to rule them all",
"4763 string to rule them all",
"4764 string to rule them all",
"4765 string to rule them all",
"4766 string to rule them all",
"4767 string to rule them all",
"4768 string to rule them all",
"4769 string to rule them all",
"4770 string to rule them all",
"4771 string to rule them all",
"4772 string to rule them all",
"4773 string to rule them all",
"4774 string to rule them all",
"4775 string to rule them all",
"4776 string to rule them all",
"4777 string to rule them all",
"4778 string to rule them all",
"4779 string to rule them all",
"4780 string to rule them all",
"4781 string to rule them all",
"4782 string to rule them all",
"4783 string to rule them all",
"4784 string to rule them all",
"4785 string to rule them all",
"4786 string to rule them all",
"4787 string to rule them all",
"4788 string to rule them all",
"4789 string to rule them all",
"4790 string to rule them all",
"4791 string to rule them all",
"4792 string to rule them all",
"4793 string to rule them all",
"4794 string to rule them all",
"4795 string to rule them all",
"4796 string to rule them all",
"4797 string to rule them all",
"4798 string to rule them all",
"4799 string to rule them all",
"4800 string to rule them all",
"4801 string to rule them all",
"4802 string to rule them all",
"4803 string to rule them all",
"4804 string to rule them all",
"4805 string to rule them all",
"4806 string to rule them all",
"4807 string to rule them all",
"4808 string to rule them all",
"4809 string to rule them all",
"4810 string to rule them all",
"4811 string to rule them all",
"4812 string to rule them all",
"4813 string to rule them all",
"4814 string to rule them all",
"4815 string to rule them all",
"4816 string to rule them all",
"4817 string to rule them all",
"4818 string to rule them all",
"4819 string to rule them all",
"4820 string to rule them all",
"4821 string to rule them all",
"4822 string to rule them all",
"4823 string to rule them all",
"4824 string to rule them all",
"4825 string to rule them all",
"4826 string to rule them all",
"4827 string to rule them all",
"4828 string to rule them all",
"4829 string to rule them all",
"4830 string to rule them all",
"4831 string to rule them all",
"4832 string to rule them all",
"4833 string to rule them all",
"4834 string to rule them all",
"4835 string to rule them all",
"4836 string to rule them all",
"4837 string to rule them all",
"4838 string to rule them all",
"4839 string to rule them all",
"4840 string to rule them all",
"4841 string to rule them all",
"4842 string to rule them all",
"4843 string to rule them all",
"4844 string to rule them all",
"4845 string to rule them all",
"4846 string to rule them all",
"4847 string to rule them all",
"4848 string to rule them all",
"4849 string to rule them all",
"4850 string to rule them all",
"4851 string to rule them all",
"4852 string to rule them all",
"4853 string to rule them all",
"4854 string to rule them all",
"4855 string to rule them all",
"4856 string to rule them all",
"4857 string to rule them all",
"4858 string to rule them all",
"4859 string to rule them all",
"4860 string to rule them all",
"4861 string to rule them all",
"4862 string to rule them all",
"4863 string to rule them all",
"4864 string to rule them all",
"4865 string to rule them all",
"4866 string to rule them all",
"4867 string to rule them all",
"4868 string to rule them all",
"4869 string to rule them all",
"4870 string to rule them all",
"4871 string to rule them all",
"4872 string to rule them all",
"4873 string to rule them all",
"4874 string to rule them all",
"4875 string to rule them all",
"4876 string to rule them all",
"4877 string to rule them all",
"4878 string to rule them all",
"4879 string to rule them all",
"4880 string to rule them all",
"4881 string to rule them all",
"4882 string to rule them all",
"4883 string to rule them all",
"4884 string to rule them all",
"4885 string to rule them all",
"4886 string to rule them all",
"4887 string to rule them all",
"4888 string to rule them all",
"4889 string to rule them all",
"4890 string to rule them all",
"4891 string to rule them all",
"4892 string to rule them all",
"4893 string to rule them all",
"4894 string to rule them all",
"4895 string to rule them all",
"4896 string to rule them all",
"4897 string to rule them all",
"4898 string to rule them all",
"4899 string to rule them all",
"4900 string to rule them all",
"4901 string to rule them all",
"4902 string to rule them all",
"4903 string to rule them all",
"4904 string to rule them all",
"4905 string to rule them all",
"4906 string to rule them all",
"4907 string to rule them all",
"4908 string to rule them all",
"4909 string to rule them all",
"4910 string to rule them all",
"4911 string to rule them all",
"4912 string to rule them all",
"4913 string to rule them all",
"4914 string to rule them all",
"4915 string to rule them all",
"4916 string to rule them all",
"4917 string to rule them all",
"4918 string to rule them all",
"4919 string to rule them all",
"4920 string to rule them all",
"4921 string to rule them all",
"4922 string to rule them all",
"4923 string to rule them all",
"4924 string to rule them all",
"4925 string to rule them all",
"4926 string to rule them all",
"4927 string to rule them all",
"4928 string to rule them all",
"4929 string to rule them all",
"4930 string to rule them all",
"4931 string to rule them all",
"4932 string to rule them all",
"4933 string to rule them all",
"4934 string to rule them all",
"4935 string to rule them all",
"4936 string to rule them all",
"4937 string to rule them all",
"4938 string to rule them all",
"4939 string to rule them all",
"4940 string to rule them all",
"4941 string to rule them all",
"4942 string to rule them all",
"4943 string to rule them all",
"4944 string to rule them all",
"4945 string to rule them all",
"4946 string to rule them all",
"4947 string to rule them all",
"4948 string to rule them all",
"4949 string to rule them all",
"4950 string to rule them all",
"4951 string to rule them all",
"4952 string to rule them all",
"4953 string to rule them all",
"4954 string to rule them all",
"4955 string to rule them all",
"4956 string to rule them all",
"4957 string to rule them all",
"4958 string to rule them all",
"4959 string to rule them all",
"4960 string to rule them all",
"4961 string to rule them all",
"4962 string to rule them all",
"4963 string to rule them all",
"4964 string to rule them all",
"4965 string to rule them all",
"4966 string to rule them all",
"4967 string to rule them all",
"4968 string to rule them all",
"4969 string to rule them all",
"4970 string to rule them all",
"4971 string to rule them all",
"4972 string to rule them all",
"4973 string to rule them all",
"4974 string to rule them all",
"4975 string to rule them all",
"4976 string to rule them all",
"4977 string to rule them all",
"4978 string to rule them all",
"4979 string to rule them all",
"4980 string to rule them all",
"4981 string to rule them all",
"4982 string to rule them all",
"4983 string to rule them all",
"4984 string to rule them all",
"4985 string to rule them all",
"4986 string to rule them all",
"4987 string to rule them all",
"4988 string to rule them all",
"4989 string to rule them all",
"4990 string to rule them all",
"4991 string to rule them all",
"4992 string to rule them all",
"4993 string to rule them all",
"4994 string to rule them all",
"4995 string to rule them all",
"4996 string to rule them all",
"4997 string to rule them all",
"4998 string to rule them all",
"4999 string to rule them all",
"5000 string to rule them all",
"5001 string to rule them all",
"5002 string to rule them all",
"5003 string to rule them all",
"5004 string to rule them all",
"5005 string to rule them all",
"5006 string to rule them all",
"5007 string to rule them all",
"5008 string to rule them all",
"5009 string to rule them all",
"5010 string to rule them all",
"5011 string to rule them all",
"5012 string to rule them all",
"5013 string to rule them all",
"5014 string to rule them all",
"5015 string to rule them all",
"5016 string to rule them all",
"5017 string to rule them all",
"5018 string to rule them all",
"5019 string to rule them all",
"5020 string to rule them all",
"5021 string to rule them all",
"5022 string to rule them all",
"5023 string to rule them all",
"5024 string to rule them all",
"5025 string to rule them all",
"5026 string to rule them all",
"5027 string to rule them all",
"5028 string to rule them all",
"5029 string to rule them all",
"5030 string to rule them all",
"5031 string to rule them all",
"5032 string to rule them all",
"5033 string to rule them all",
"5034 string to rule them all",
"5035 string to rule them all",
"5036 string to rule them all",
"5037 string to rule them all",
"5038 string to rule them all",
"5039 string to rule them all",
"5040 string to rule them all",
"5041 string to rule them all",
"5042 string to rule them all",
"5043 string to rule them all",
"5044 string to rule them all",
"5045 string to rule them all",
"5046 string to rule them all",
"5047 string to rule them all",
"5048 string to rule them all",
"5049 string to rule them all",
"5050 string to rule them all",
"5051 string to rule them all",
"5052 string to rule them all",
"5053 string to rule them all",
"5054 string to rule them all",
"5055 string to rule them all",
"5056 string to rule them all",
"5057 string to rule them all",
"5058 string to rule them all",
"5059 string to rule them all",
"5060 string to rule them all",
"5061 string to rule them all",
"5062 string to rule them all",
"5063 string to rule them all",
"5064 string to rule them all",
"5065 string to rule them all",
"5066 string to rule them all",
"5067 string to rule them all",
"5068 string to rule them all",
"5069 string to rule them all",
"5070 string to rule them all",
"5071 string to rule them all",
"5072 string to rule them all",
"5073 string to rule them all",
"5074 string to rule them all",
"5075 string to rule them all",
"5076 string to rule them all",
"5077 string to rule them all",
"5078 string to rule them all",
"5079 string to rule them all",
"5080 string to rule them all",
"5081 string to rule them all",
"5082 string to rule them all",
"5083 string to rule them all",
"5084 string to rule them all",
"5085 string to rule them all",
"5086 string to rule them all",
"5087 string to rule them all",
"5088 string to rule them all",
"5089 string to rule them all",
"5090 string to rule them all",
"5091 string to rule them all",
"5092 string to rule them all",
"5093 string to rule them all",
"5094 string to rule them all",
"5095 string to rule them all",
"5096 string to rule them all",
"5097 string to rule them all",
"5098 string to rule them all",
"5099 string to rule them all",
"5100 string to rule them all",
"5101 string to rule them all",
"5102 string to rule them all",
"5103 string to rule them all",
"5104 string to rule them all",
"5105 string to rule them all",
"5106 string to rule them all",
"5107 string to rule them all",
"5108 string to rule them all",
"5109 string to rule them all",
"5110 string to rule them all",
"5111 string to rule them all",
"5112 string to rule them all",
"5113 string to rule them all",
"5114 string to rule them all",
"5115 string to rule them all",
"5116 string to rule them all",
"5117 string to rule them all",
"5118 string to rule them all",
"5119 string to rule them all",
"5120 string to rule them all",
"5121 string to rule them all",
"5122 string to rule them all",
"5123 string to rule them all",
"5124 string to rule them all",
"5125 string to rule them all",
"5126 string to rule them all",
"5127 string to rule them all",
"5128 string to rule them all",
"5129 string to rule them all",
"5130 string to rule them all",
"5131 string to rule them all",
"5132 string to rule them all",
"5133 string to rule them all",
"5134 string to rule them all",
"5135 string to rule them all",
"5136 string to rule them all",
"5137 string to rule them all",
"5138 string to rule them all",
"5139 string to rule them all",
"5140 string to rule them all",
"5141 string to rule them all",
"5142 string to rule them all",
"5143 string to rule them all",
"5144 string to rule them all",
"5145 string to rule them all",
"5146 string to rule them all",
"5147 string to rule them all",
"5148 string to rule them all",
"5149 string to rule them all",
"5150 string to rule them all",
"5151 string to rule them all",
"5152 string to rule them all",
"5153 string to rule them all",
"5154 string to rule them all",
"5155 string to rule them all",
"5156 string to rule them all",
"5157 string to rule them all",
"5158 string to rule them all",
"5159 string to rule them all",
"5160 string to rule them all",
"5161 string to rule them all",
"5162 string to rule them all",
"5163 string to rule them all",
"5164 string to rule them all",
"5165 string to rule them all",
"5166 string to rule them all",
"5167 string to rule them all",
"5168 string to rule them all",
"5169 string to rule them all",
"5170 string to rule them all",
"5171 string to rule them all",
"5172 string to rule them all",
"5173 string to rule them all",
"5174 string to rule them all",
"5175 string to rule them all",
"5176 string to rule them all",
"5177 string to rule them all",
"5178 string to rule them all",
"5179 string to rule them all",
"5180 string to rule them all",
"5181 string to rule them all",
"5182 string to rule them all",
"5183 string to rule them all",
"5184 string to rule them all",
"5185 string to rule them all",
"5186 string to rule them all",
"5187 string to rule them all",
"5188 string to rule them all",
"5189 string to rule them all",
"5190 string to rule them all",
"5191 string to rule them all",
"5192 string to rule them all",
"5193 string to rule them all",
"5194 string to rule them all",
"5195 string to rule them all",
"5196 string to rule them all",
"5197 string to rule them all",
"5198 string to rule them all",
"5199 string to rule them all",
"5200 string to rule them all",
"5201 string to rule them all",
"5202 string to rule them all",
"5203 string to rule them all",
"5204 string to rule them all",
"5205 string to rule them all",
"5206 string to rule them all",
"5207 string to rule them all",
"5208 string to rule them all",
"5209 string to rule them all",
"5210 string to rule them all",
"5211 string to rule them all",
"5212 string to rule them all",
"5213 string to rule them all",
"5214 string to rule them all",
"5215 string to rule them all",
"5216 string to rule them all",
"5217 string to rule them all",
"5218 string to rule them all",
"5219 string to rule them all",
"5220 string to rule them all",
"5221 string to rule them all",
"5222 string to rule them all",
"5223 string to rule them all",
"5224 string to rule them all",
"5225 string to rule them all",
"5226 string to rule them all",
"5227 string to rule them all",
"5228 string to rule them all",
"5229 string to rule them all",
"5230 string to rule them all",
"5231 string to rule them all",
"5232 string to rule them all",
"5233 string to rule them all",
"5234 string to rule them all",
"5235 string to rule them all",
"5236 string to rule them all",
"5237 string to rule them all",
"5238 string to rule them all",
"5239 string to rule them all",
"5240 string to rule them all",
"5241 string to rule them all",
"5242 string to rule them all",
"5243 string to rule them all",
"5244 string to rule them all",
"5245 string to rule them all",
"5246 string to rule them all",
"5247 string to rule them all",
"5248 string to rule them all",
"5249 string to rule them all",
"5250 string to rule them all",
"5251 string to rule them all",
"5252 string to rule them all",
"5253 string to rule them all",
"5254 string to rule them all",
"5255 string to rule them all",
"5256 string to rule them all",
"5257 string to rule them all",
"5258 string to rule them all",
"5259 string to rule them all",
"5260 string to rule them all",
"5261 string to rule them all",
"5262 string to rule them all",
"5263 string to rule them all",
"5264 string to rule them all",
"5265 string to rule them all",
"5266 string to rule them all",
"5267 string to rule them all",
"5268 string to rule them all",
"5269 string to rule them all",
"5270 string to rule them all",
"5271 string to rule them all",
"5272 string to rule them all",
"5273 string to rule them all",
"5274 string to rule them all",
"5275 string to rule them all",
"5276 string to rule them all",
"5277 string to rule them all",
"5278 string to rule them all",
"5279 string to rule them all",
"5280 string to rule them all",
"5281 string to rule them all",
"5282 string to rule them all",
"5283 string to rule them all",
"5284 string to rule them all",
"5285 string to rule them all",
"5286 string to rule them all",
"5287 string to rule them all",
"5288 string to rule them all",
"5289 string to rule them all",
"5290 string to rule them all",
"5291 string to rule them all",
"5292 string to rule them all",
"5293 string to rule them all",
"5294 string to rule them all",
"5295 string to rule them all",
"5296 string to rule them all",
"5297 string to rule them all",
"5298 string to rule them all",
"5299 string to rule them all",
"5300 string to rule them all",
"5301 string to rule them all",
"5302 string to rule them all",
"5303 string to rule them all",
"5304 string to rule them all",
"5305 string to rule them all",
"5306 string to rule them all",
"5307 string to rule them all",
"5308 string to rule them all",
"5309 string to rule them all",
"5310 string to rule them all",
"5311 string to rule them all",
"5312 string to rule them all",
"5313 string to rule them all",
"5314 string to rule them all",
"5315 string to rule them all",
"5316 string to rule them all",
"5317 string to rule them all",
"5318 string to rule them all",
"5319 string to rule them all",
"5320 string to rule them all",
"5321 string to rule them all",
"5322 string to rule them all",
"5323 string to rule them all",
"5324 string to rule them all",
"5325 string to rule them all",
"5326 string to rule them all",
"5327 string to rule them all",
"5328 string to rule them all",
"5329 string to rule them all",
"5330 string to rule them all",
"5331 string to rule them all",
"5332 string to rule them all",
"5333 string to rule them all",
"5334 string to rule them all",
"5335 string to rule them all",
"5336 string to rule them all",
"5337 string to rule them all",
"5338 string to rule them all",
"5339 string to rule them all",
"5340 string to rule them all",
"5341 string to rule them all",
"5342 string to rule them all",
"5343 string to rule them all",
"5344 string to rule them all",
"5345 string to rule them all",
"5346 string to rule them all",
"5347 string to rule them all",
"5348 string to rule them all",
"5349 string to rule them all",
"5350 string to rule them all",
"5351 string to rule them all",
"5352 string to rule them all",
"5353 string to rule them all",
"5354 string to rule them all",
"5355 string to rule them all",
"5356 string to rule them all",
"5357 string to rule them all",
"5358 string to rule them all",
"5359 string to rule them all",
"5360 string to rule them all",
"5361 string to rule them all",
"5362 string to rule them all",
"5363 string to rule them all",
"5364 string to rule them all",
"5365 string to rule them all",
"5366 string to rule them all",
"5367 string to rule them all",
"5368 string to rule them all",
"5369 string to rule them all",
"5370 string to rule them all",
"5371 string to rule them all",
"5372 string to rule them all",
"5373 string to rule them all",
"5374 string to rule them all",
"5375 string to rule them all",
"5376 string to rule them all",
"5377 string to rule them all",
"5378 string to rule them all",
"5379 string to rule them all",
"5380 string to rule them all",
"5381 string to rule them all",
"5382 string to rule them all",
"5383 string to rule them all",
"5384 string to rule them all",
"5385 string to rule them all",
"5386 string to rule them all",
"5387 string to rule them all",
"5388 string to rule them all",
"5389 string to rule them all",
"5390 string to rule them all",
"5391 string to rule them all",
"5392 string to rule them all",
"5393 string to rule them all",
"5394 string to rule them all",
"5395 string to rule them all",
"5396 string to rule them all",
"5397 string to rule them all",
"5398 string to rule them all",
"5399 string to rule them all",
"5400 string to rule them all",
"5401 string to rule them all",
"5402 string to rule them all",
"5403 string to rule them all",
"5404 string to rule them all",
"5405 string to rule them all",
"5406 string to rule them all",
"5407 string to rule them all",
"5408 string to rule them all",
"5409 string to rule them all",
"5410 string to rule them all",
"5411 string to rule them all",
"5412 string to rule them all",
"5413 string to rule them all",
"5414 string to rule them all",
"5415 string to rule them all",
"5416 string to rule them all",
"5417 string to rule them all",
"5418 string to rule them all",
"5419 string to rule them all",
"5420 string to rule them all",
"5421 string to rule them all",
"5422 string to rule them all",
"5423 string to rule them all",
"5424 string to rule them all",
"5425 string to rule them all",
"5426 string to rule them all",
"5427 string to rule them all",
"5428 string to rule them all",
"5429 string to rule them all",
"5430 string to rule them all",
"5431 string to rule them all",
"5432 string to rule them all",
"5433 string to rule them all",
"5434 string to rule them all",
"5435 string to rule them all",
"5436 string to rule them all",
"5437 string to rule them all",
"5438 string to rule them all",
"5439 string to rule them all",
"5440 string to rule them all",
"5441 string to rule them all",
"5442 string to rule them all",
"5443 string to rule them all",
"5444 string to rule them all",
"5445 string to rule them all",
"5446 string to rule them all",
"5447 string to rule them all",
"5448 string to rule them all",
"5449 string to rule them all",
"5450 string to rule them all",
"5451 string to rule them all",
"5452 string to rule them all",
"5453 string to rule them all",
"5454 string to rule them all",
"5455 string to rule them all",
"5456 string to rule them all",
"5457 string to rule them all",
"5458 string to rule them all",
"5459 string to rule them all",
"5460 string to rule them all",
"5461 string to rule them all",
"5462 string to rule them all",
"5463 string to rule them all",
"5464 string to rule them all",
"5465 string to rule them all",
"5466 string to rule them all",
"5467 string to rule them all",
"5468 string to rule them all",
"5469 string to rule them all",
"5470 string to rule them all",
"5471 string to rule them all",
"5472 string to rule them all",
"5473 string to rule them all",
"5474 string to rule them all",
"5475 string to rule them all",
"5476 string to rule them all",
"5477 string to rule them all",
"5478 string to rule them all",
"5479 string to rule them all",
"5480 string to rule them all",
"5481 string to rule them all",
"5482 string to rule them all",
"5483 string to rule them all",
"5484 string to rule them all",
"5485 string to rule them all",
"5486 string to rule them all",
"5487 string to rule them all",
"5488 string to rule them all",
"5489 string to rule them all",
"5490 string to rule them all",
"5491 string to rule them all",
"5492 string to rule them all",
"5493 string to rule them all",
"5494 string to rule them all",
"5495 string to rule them all",
"5496 string to rule them all",
"5497 string to rule them all",
"5498 string to rule them all",
"5499 string to rule them all",
"5500 string to rule them all",
"5501 string to rule them all",
"5502 string to rule them all",
"5503 string to rule them all",
"5504 string to rule them all",
"5505 string to rule them all",
"5506 string to rule them all",
"5507 string to rule them all",
"5508 string to rule them all",
"5509 string to rule them all",
"5510 string to rule them all",
"5511 string to rule them all",
"5512 string to rule them all",
"5513 string to rule them all",
"5514 string to rule them all",
"5515 string to rule them all",
"5516 string to rule them all",
"5517 string to rule them all",
"5518 string to rule them all",
"5519 string to rule them all",
"5520 string to rule them all",
"5521 string to rule them all",
"5522 string to rule them all",
"5523 string to rule them all",
"5524 string to rule them all",
"5525 string to rule them all",
"5526 string to rule them all",
"5527 string to rule them all",
"5528 string to rule them all",
"5529 string to rule them all",
"5530 string to rule them all",
"5531 string to rule them all",
"5532 string to rule them all",
"5533 string to rule them all",
"5534 string to rule them all",
"5535 string to rule them all",
"5536 string to rule them all",
"5537 string to rule them all",
"5538 string to rule them all",
"5539 string to rule them all",
"5540 string to rule them all",
"5541 string to rule them all",
"5542 string to rule them all",
"5543 string to rule them all",
"5544 string to rule them all",
"5545 string to rule them all",
"5546 string to rule them all",
"5547 string to rule them all",
"5548 string to rule them all",
"5549 string to rule them all",
"5550 string to rule them all",
"5551 string to rule them all",
"5552 string to rule them all",
"5553 string to rule them all",
"5554 string to rule them all",
"5555 string to rule them all",
"5556 string to rule them all",
"5557 string to rule them all",
"5558 string to rule them all",
"5559 string to rule them all",
"5560 string to rule them all",
"5561 string to rule them all",
"5562 string to rule them all",
"5563 string to rule them all",
"5564 string to rule them all",
"5565 string to rule them all",
"5566 string to rule them all",
"5567 string to rule them all",
"5568 string to rule them all",
"5569 string to rule them all",
"5570 string to rule them all",
"5571 string to rule them all",
"5572 string to rule them all",
"5573 string to rule them all",
"5574 string to rule them all",
"5575 string to rule them all",
"5576 string to rule them all",
"5577 string to rule them all",
"5578 string to rule them all",
"5579 string to rule them all",
"5580 string to rule them all",
"5581 string to rule them all",
"5582 string to rule them all",
"5583 string to rule them all",
"5584 string to rule them all",
"5585 string to rule them all",
"5586 string to rule them all",
"5587 string to rule them all",
"5588 string to rule them all",
"5589 string to rule them all",
"5590 string to rule them all",
"5591 string to rule them all",
"5592 string to rule them all",
"5593 string to rule them all",
"5594 string to rule them all",
"5595 string to rule them all",
"5596 string to rule them all",
"5597 string to rule them all",
"5598 string to rule them all",
"5599 string to rule them all",
"5600 string to rule them all",
"5601 string to rule them all",
"5602 string to rule them all",
"5603 string to rule them all",
"5604 string to rule them all",
"5605 string to rule them all",
"5606 string to rule them all",
"5607 string to rule them all",
"5608 string to rule them all",
"5609 string to rule them all",
"5610 string to rule them all",
"5611 string to rule them all",
"5612 string to rule them all",
"5613 string to rule them all",
"5614 string to rule them all",
"5615 string to rule them all",
"5616 string to rule them all",
"5617 string to rule them all",
"5618 string to rule them all",
"5619 string to rule them all",
"5620 string to rule them all",
"5621 string to rule them all",
"5622 string to rule them all",
"5623 string to rule them all",
"5624 string to rule them all",
"5625 string to rule them all",
"5626 string to rule them all",
"5627 string to rule them all",
"5628 string to rule them all",
"5629 string to rule them all",
"5630 string to rule them all",
"5631 string to rule them all",
"5632 string to rule them all",
"5633 string to rule them all",
"5634 string to rule them all",
"5635 string to rule them all",
"5636 string to rule them all",
"5637 string to rule them all",
"5638 string to rule them all",
"5639 string to rule them all",
"5640 string to rule them all",
"5641 string to rule them all",
"5642 string to rule them all",
"5643 string to rule them all",
"5644 string to rule them all",
"5645 string to rule them all",
"5646 string to rule them all",
"5647 string to rule them all",
"5648 string to rule them all",
"5649 string to rule them all",
"5650 string to rule them all",
"5651 string to rule them all",
"5652 string to rule them all",
"5653 string to rule them all",
"5654 string to rule them all",
"5655 string to rule them all",
"5656 string to rule them all",
"5657 string to rule them all",
"5658 string to rule them all",
"5659 string to rule them all",
"5660 string to rule them all",
"5661 string to rule them all",
"5662 string to rule them all",
"5663 string to rule them all",
"5664 string to rule them all",
"5665 string to rule them all",
"5666 string to rule them all",
"5667 string to rule them all",
"5668 string to rule them all",
"5669 string to rule them all",
"5670 string to rule them all",
"5671 string to rule them all",
"5672 string to rule them all",
"5673 string to rule them all",
"5674 string to rule them all",
"5675 string to rule them all",
"5676 string to rule them all",
"5677 string to rule them all",
"5678 string to rule them all",
"5679 string to rule them all",
"5680 string to rule them all",
"5681 string to rule them all",
"5682 string to rule them all",
"5683 string to rule them all",
"5684 string to rule them all",
"5685 string to rule them all",
"5686 string to rule them all",
"5687 string to rule them all",
"5688 string to rule them all",
"5689 string to rule them all",
"5690 string to rule them all",
"5691 string to rule them all",
"5692 string to rule them all",
"5693 string to rule them all",
"5694 string to rule them all",
"5695 string to rule them all",
"5696 string to rule them all",
"5697 string to rule them all",
"5698 string to rule them all",
"5699 string to rule them all",
"5700 string to rule them all",
"5701 string to rule them all",
"5702 string to rule them all",
"5703 string to rule them all",
"5704 string to rule them all",
"5705 string to rule them all",
"5706 string to rule them all",
"5707 string to rule them all",
"5708 string to rule them all",
"5709 string to rule them all",
"5710 string to rule them all",
"5711 string to rule them all",
"5712 string to rule them all",
"5713 string to rule them all",
"5714 string to rule them all",
"5715 string to rule them all",
"5716 string to rule them all",
"5717 string to rule them all",
"5718 string to rule them all",
"5719 string to rule them all",
"5720 string to rule them all",
"5721 string to rule them all",
"5722 string to rule them all",
"5723 string to rule them all",
"5724 string to rule them all",
"5725 string to rule them all",
"5726 string to rule them all",
"5727 string to rule them all",
"5728 string to rule them all",
"5729 string to rule them all",
"5730 string to rule them all",
"5731 string to rule them all",
"5732 string to rule them all",
"5733 string to rule them all",
"5734 string to rule them all",
"5735 string to rule them all",
"5736 string to rule them all",
"5737 string to rule them all",
"5738 string to rule them all",
"5739 string to rule them all",
"5740 string to rule them all",
"5741 string to rule them all",
"5742 string to rule them all",
"5743 string to rule them all",
"5744 string to rule them all",
"5745 string to rule them all",
"5746 string to rule them all",
"5747 string to rule them all",
"5748 string to rule them all",
"5749 string to rule them all",
"5750 string to rule them all",
"5751 string to rule them all",
"5752 string to rule them all",
"5753 string to rule them all",
"5754 string to rule them all",
"5755 string to rule them all",
"5756 string to rule them all",
"5757 string to rule them all",
"5758 string to rule them all",
"5759 string to rule them all",
"5760 string to rule them all",
"5761 string to rule them all",
"5762 string to rule them all",
"5763 string to rule them all",
"5764 string to rule them all",
"5765 string to rule them all",
"5766 string to rule them all",
"5767 string to rule them all",
"5768 string to rule them all",
"5769 string to rule them all",
"5770 string to rule them all",
"5771 string to rule them all",
"5772 string to rule them all",
"5773 string to rule them all",
"5774 string to rule them all",
"5775 string to rule them all",
"5776 string to rule them all",
"5777 string to rule them all",
"5778 string to rule them all",
"5779 string to rule them all",
"5780 string to rule them all",
"5781 string to rule them all",
"5782 string to rule them all",
"5783 string to rule them all",
"5784 string to rule them all",
"5785 string to rule them all",
"5786 string to rule them all",
"5787 string to rule them all",
"5788 string to rule them all",
"5789 string to rule them all",
"5790 string to rule them all",
"5791 string to rule them all",
"5792 string to rule them all",
"5793 string to rule them all",
"5794 string to rule them all",
"5795 string to rule them all",
"5796 string to rule them all",
"5797 string to rule them all",
"5798 string to rule them all",
"5799 string to rule them all",
"5800 string to rule them all",
"5801 string to rule them all",
"5802 string to rule them all",
"5803 string to rule them all",
"5804 string to rule them all",
"5805 string to rule them all",
"5806 string to rule them all",
"5807 string to rule them all",
"5808 string to rule them all",
"5809 string to rule them all",
"5810 string to rule them all",
"5811 string to rule them all",
"5812 string to rule them all",
"5813 string to rule them all",
"5814 string to rule them all",
"5815 string to rule them all",
"5816 string to rule them all",
"5817 string to rule them all",
"5818 string to rule them all",
"5819 string to rule them all",
"5820 string to rule them all",
"5821 string to rule them all",
"5822 string to rule them all",
"5823 string to rule them all",
"5824 string to rule them all",
"5825 string to rule them all",
"5826 string to rule them all",
"5827 string to rule them all",
"5828 string to rule them all",
"5829 string to rule them all",
"5830 string to rule them all",
"5831 string to rule them all",
"5832 string to rule them all",
"5833 string to rule them all",
"5834 string to rule them all",
"5835 string to rule them all",
"5836 string to rule them all",
"5837 string to rule them all",
"5838 string to rule them all",
"5839 string to rule them all",
"5840 string to rule them all",
"5841 string to rule them all",
"5842 string to rule them all",
"5843 string to rule them all",
"5844 string to rule them all",
"5845 string to rule them all",
"5846 string to rule them all",
"5847 string to rule them all",
"5848 string to rule them all",
"5849 string to rule them all",
"5850 string to rule them all",
"5851 string to rule them all",
"5852 string to rule them all",
"5853 string to rule them all",
"5854 string to rule them all",
"5855 string to rule them all",
"5856 string to rule them all",
"5857 string to rule them all",
"5858 string to rule them all",
"5859 string to rule them all",
"5860 string to rule them all",
"5861 string to rule them all",
"5862 string to rule them all",
"5863 string to rule them all",
"5864 string to rule them all",
"5865 string to rule them all",
"5866 string to rule them all",
"5867 string to rule them all",
"5868 string to rule them all",
"5869 string to rule them all",
"5870 string to rule them all",
"5871 string to rule them all",
"5872 string to rule them all",
"5873 string to rule them all",
"5874 string to rule them all",
"5875 string to rule them all",
"5876 string to rule them all",
"5877 string to rule them all",
"5878 string to rule them all",
"5879 string to rule them all",
"5880 string to rule them all",
"5881 string to rule them all",
"5882 string to rule them all",
"5883 string to rule them all",
"5884 string to rule them all",
"5885 string to rule them all",
"5886 string to rule them all",
"5887 string to rule them all",
"5888 string to rule them all",
"5889 string to rule them all",
"5890 string to rule them all",
"5891 string to rule them all",
"5892 string to rule them all",
"5893 string to rule them all",
"5894 string to rule them all",
"5895 string to rule them all",
"5896 string to rule them all",
"5897 string to rule them all",
"5898 string to rule them all",
"5899 string to rule them all",
"5900 string to rule them all",
"5901 string to rule them all",
"5902 string to rule them all",
"5903 string to rule them all",
"5904 string to rule them all",
"5905 string to rule them all",
"5906 string to rule them all",
"5907 string to rule them all",
"5908 string to rule them all",
"5909 string to rule them all",
"5910 string to rule them all",
"5911 string to rule them all",
"5912 string to rule them all",
"5913 string to rule them all",
"5914 string to rule them all",
"5915 string to rule them all",
"5916 string to rule them all",
"5917 string to rule them all",
"5918 string to rule them all",
"5919 string to rule them all",
"5920 string to rule them all",
"5921 string to rule them all",
"5922 string to rule them all",
"5923 string to rule them all",
"5924 string to rule them all",
"5925 string to rule them all",
"5926 string to rule them all",
"5927 string to rule them all",
"5928 string to rule them all",
"5929 string to rule them all",
"5930 string to rule them all",
"5931 string to rule them all",
"5932 string to rule them all",
"5933 string to rule them all",
"5934 string to rule them all",
"5935 string to rule them all",
"5936 string to rule them all",
"5937 string to rule them all",
"5938 string to rule them all",
"5939 string to rule them all",
"5940 string to rule them all",
"5941 string to rule them all",
"5942 string to rule them all",
"5943 string to rule them all",
"5944 string to rule them all",
"5945 string to rule them all",
"5946 string to rule them all",
"5947 string to rule them all",
"5948 string to rule them all",
"5949 string to rule them all",
"5950 string to rule them all",
"5951 string to rule them all",
"5952 string to rule them all",
"5953 string to rule them all",
"5954 string to rule them all",
"5955 string to rule them all",
"5956 string to rule them all",
"5957 string to rule them all",
"5958 string to rule them all",
"5959 string to rule them all",
"5960 string to rule them all",
"5961 string to rule them all",
"5962 string to rule them all",
"5963 string to rule them all",
"5964 string to rule them all",
"5965 string to rule them all",
"5966 string to rule them all",
"5967 string to rule them all",
"5968 string to rule them all",
"5969 string to rule them all",
"5970 string to rule them all",
"5971 string to rule them all",
"5972 string to rule them all",
"5973 string to rule them all",
"5974 string to rule them all",
"5975 string to rule them all",
"5976 string to rule them all",
"5977 string to rule them all",
"5978 string to rule them all",
"5979 string to rule them all",
"5980 string to rule them all",
"5981 string to rule them all",
"5982 string to rule them all",
"5983 string to rule them all",
"5984 string to rule them all",
"5985 string to rule them all",
"5986 string to rule them all",
"5987 string to rule them all",
"5988 string to rule them all",
"5989 string to rule them all",
"5990 string to rule them all",
"5991 string to rule them all",
"5992 string to rule them all",
"5993 string to rule them all",
"5994 string to rule them all",
"5995 string to rule them all",
"5996 string to rule them all",
"5997 string to rule them all",
"5998 string to rule them all",
"5999 string to rule them all",
"6000 string to rule them all",
"6001 string to rule them all",
"6002 string to rule them all",
"6003 string to rule them all",
"6004 string to rule them all",
"6005 string to rule them all",
"6006 string to rule them all",
"6007 string to rule them all",
"6008 string to rule them all",
"6009 string to rule them all",
"6010 string to rule them all",
"6011 string to rule them all",
"6012 string to rule them all",
"6013 string to rule them all",
"6014 string to rule them all",
"6015 string to rule them all",
"6016 string to rule them all",
"6017 string to rule them all",
"6018 string to rule them all",
"6019 string to rule them all",
"6020 string to rule them all",
"6021 string to rule them all",
"6022 string to rule them all",
"6023 string to rule them all",
"6024 string to rule them all",
"6025 string to rule them all",
"6026 string to rule them all",
"6027 string to rule them all",
"6028 string to rule them all",
"6029 string to rule them all",
"6030 string to rule them all",
"6031 string to rule them all",
"6032 string to rule them all",
"6033 string to rule them all",
"6034 string to rule them all",
"6035 string to rule them all",
"6036 string to rule them all",
"6037 string to rule them all",
"6038 string to rule them all",
"6039 string to rule them all",
"6040 string to rule them all",
"6041 string to rule them all",
"6042 string to rule them all",
"6043 string to rule them all",
"6044 string to rule them all",
"6045 string to rule them all",
"6046 string to rule them all",
"6047 string to rule them all",
"6048 string to rule them all",
"6049 string to rule them all",
"6050 string to rule them all",
"6051 string to rule them all",
"6052 string to rule them all",
"6053 string to rule them all",
"6054 string to rule them all",
"6055 string to rule them all",
"6056 string to rule them all",
"6057 string to rule them all",
"6058 string to rule them all",
"6059 string to rule them all",
"6060 string to rule them all",
"6061 string to rule them all",
"6062 string to rule them all",
"6063 string to rule them all",
"6064 string to rule them all",
"6065 string to rule them all",
"6066 string to rule them all",
"6067 string to rule them all",
"6068 string to rule them all",
"6069 string to rule them all",
"6070 string to rule them all",
"6071 string to rule them all",
"6072 string to rule them all",
"6073 string to rule them all",
"6074 string to rule them all",
"6075 string to rule them all",
"6076 string to rule them all",
"6077 string to rule them all",
"6078 string to rule them all",
"6079 string to rule them all",
"6080 string to rule them all",
"6081 string to rule them all",
"6082 string to rule them all",
"6083 string to rule them all",
"6084 string to rule them all",
"6085 string to rule them all",
"6086 string to rule them all",
"6087 string to rule them all",
"6088 string to rule them all",
"6089 string to rule them all",
"6090 string to rule them all",
"6091 string to rule them all",
"6092 string to rule them all",
"6093 string to rule them all",
"6094 string to rule them all",
"6095 string to rule them all",
"6096 string to rule them all",
"6097 string to rule them all",
"6098 string to rule them all",
"6099 string to rule them all",
"6100 string to rule them all",
"6101 string to rule them all",
"6102 string to rule them all",
"6103 string to rule them all",
"6104 string to rule them all",
"6105 string to rule them all",
"6106 string to rule them all",
"6107 string to rule them all",
"6108 string to rule them all",
"6109 string to rule them all",
"6110 string to rule them all",
"6111 string to rule them all",
"6112 string to rule them all",
"6113 string to rule them all",
"6114 string to rule them all",
"6115 string to rule them all",
"6116 string to rule them all",
"6117 string to rule them all",
"6118 string to rule them all",
"6119 string to rule them all",
"6120 string to rule them all",
"6121 string to rule them all",
"6122 string to rule them all",
"6123 string to rule them all",
"6124 string to rule them all",
"6125 string to rule them all",
"6126 string to rule them all",
"6127 string to rule them all",
"6128 string to rule them all",
"6129 string to rule them all",
"6130 string to rule them all",
"6131 string to rule them all",
"6132 string to rule them all",
"6133 string to rule them all",
"6134 string to rule them all",
"6135 string to rule them all",
"6136 string to rule them all",
"6137 string to rule them all",
"6138 string to rule them all",
"6139 string to rule them all",
"6140 string to rule them all",
"6141 string to rule them all",
"6142 string to rule them all",
"6143 string to rule them all",
"6144 string to rule them all",
"6145 string to rule them all",
"6146 string to rule them all",
"6147 string to rule them all",
"6148 string to rule them all",
"6149 string to rule them all",
"6150 string to rule them all",
"6151 string to rule them all",
"6152 string to rule them all",
"6153 string to rule them all",
"6154 string to rule them all",
"6155 string to rule them all",
"6156 string to rule them all",
"6157 string to rule them all",
"6158 string to rule them all",
"6159 string to rule them all",
"6160 string to rule them all",
"6161 string to rule them all",
"6162 string to rule them all",
"6163 string to rule them all",
"6164 string to rule them all",
"6165 string to rule them all",
"6166 string to rule them all",
"6167 string to rule them all",
"6168 string to rule them all",
"6169 string to rule them all",
"6170 string to rule them all",
"6171 string to rule them all",
"6172 string to rule them all",
"6173 string to rule them all",
"6174 string to rule them all",
"6175 string to rule them all",
"6176 string to rule them all",
"6177 string to rule them all",
"6178 string to rule them all",
"6179 string to rule them all",
"6180 string to rule them all",
"6181 string to rule them all",
"6182 string to rule them all",
"6183 string to rule them all",
"6184 string to rule them all",
"6185 string to rule them all",
"6186 string to rule them all",
"6187 string to rule them all",
"6188 string to rule them all",
"6189 string to rule them all",
"6190 string to rule them all",
"6191 string to rule them all",
"6192 string to rule them all",
"6193 string to rule them all",
"6194 string to rule them all",
"6195 string to rule them all",
"6196 string to rule them all",
"6197 string to rule them all",
"6198 string to rule them all",
"6199 string to rule them all",
"6200 string to rule them all",
"6201 string to rule them all",
"6202 string to rule them all",
"6203 string to rule them all",
"6204 string to rule them all",
"6205 string to rule them all",
"6206 string to rule them all",
"6207 string to rule them all",
"6208 string to rule them all",
"6209 string to rule them all",
"6210 string to rule them all",
"6211 string to rule them all",
"6212 string to rule them all",
"6213 string to rule them all",
"6214 string to rule them all",
"6215 string to rule them all",
"6216 string to rule them all",
"6217 string to rule them all",
"6218 string to rule them all",
"6219 string to rule them all",
"6220 string to rule them all",
"6221 string to rule them all",
"6222 string to rule them all",
"6223 string to rule them all",
"6224 string to rule them all",
"6225 string to rule them all",
"6226 string to rule them all",
"6227 string to rule them all",
"6228 string to rule them all",
"6229 string to rule them all",
"6230 string to rule them all",
"6231 string to rule them all",
"6232 string to rule them all",
"6233 string to rule them all",
"6234 string to rule them all",
"6235 string to rule them all",
"6236 string to rule them all",
"6237 string to rule them all",
"6238 string to rule them all",
"6239 string to rule them all",
"6240 string to rule them all",
"6241 string to rule them all",
"6242 string to rule them all",
"6243 string to rule them all",
"6244 string to rule them all",
"6245 string to rule them all",
"6246 string to rule them all",
"6247 string to rule them all",
"6248 string to rule them all",
"6249 string to rule them all",
"6250 string to rule them all",
"6251 string to rule them all",
"6252 string to rule them all",
"6253 string to rule them all",
"6254 string to rule them all",
"6255 string to rule them all",
"6256 string to rule them all",
"6257 string to rule them all",
"6258 string to rule them all",
"6259 string to rule them all",
"6260 string to rule them all",
"6261 string to rule them all",
"6262 string to rule them all",
"6263 string to rule them all",
"6264 string to rule them all",
"6265 string to rule them all",
"6266 string to rule them all",
"6267 string to rule them all",
"6268 string to rule them all",
"6269 string to rule them all",
"6270 string to rule them all",
"6271 string to rule them all",
"6272 string to rule them all",
"6273 string to rule them all",
"6274 string to rule them all",
"6275 string to rule them all",
"6276 string to rule them all",
"6277 string to rule them all",
"6278 string to rule them all",
"6279 string to rule them all",
"6280 string to rule them all",
"6281 string to rule them all",
"6282 string to rule them all",
"6283 string to rule them all",
"6284 string to rule them all",
"6285 string to rule them all",
"6286 string to rule them all",
"6287 string to rule them all",
"6288 string to rule them all",
"6289 string to rule them all",
"6290 string to rule them all",
"6291 string to rule them all",
"6292 string to rule them all",
"6293 string to rule them all",
"6294 string to rule them all",
"6295 string to rule them all",
"6296 string to rule them all",
"6297 string to rule them all",
"6298 string to rule them all",
"6299 string to rule them all",
"6300 string to rule them all",
"6301 string to rule them all",
"6302 string to rule them all",
"6303 string to rule them all",
"6304 string to rule them all",
"6305 string to rule them all",
"6306 string to rule them all",
"6307 string to rule them all",
"6308 string to rule them all",
"6309 string to rule them all",
"6310 string to rule them all",
"6311 string to rule them all",
"6312 string to rule them all",
"6313 string to rule them all",
"6314 string to rule them all",
"6315 string to rule them all",
"6316 string to rule them all",
"6317 string to rule them all",
"6318 string to rule them all",
"6319 string to rule them all",
"6320 string to rule them all",
"6321 string to rule them all",
"6322 string to rule them all",
"6323 string to rule them all",
"6324 string to rule them all",
"6325 string to rule them all",
"6326 string to rule them all",
"6327 string to rule them all",
"6328 string to rule them all",
"6329 string to rule them all",
"6330 string to rule them all",
"6331 string to rule them all",
"6332 string to rule them all",
"6333 string to rule them all",
"6334 string to rule them all",
"6335 string to rule them all",
"6336 string to rule them all",
"6337 string to rule them all",
"6338 string to rule them all",
"6339 string to rule them all",
"6340 string to rule them all",
"6341 string to rule them all",
"6342 string to rule them all",
"6343 string to rule them all",
"6344 string to rule them all",
"6345 string to rule them all",
"6346 string to rule them all",
"6347 string to rule them all",
"6348 string to rule them all",
"6349 string to rule them all",
"6350 string to rule them all",
"6351 string to rule them all",
"6352 string to rule them all",
"6353 string to rule them all",
"6354 string to rule them all",
"6355 string to rule them all",
"6356 string to rule them all",
"6357 string to rule them all",
"6358 string to rule them all",
"6359 string to rule them all",
"6360 string to rule them all",
"6361 string to rule them all",
"6362 string to rule them all",
"6363 string to rule them all",
"6364 string to rule them all",
"6365 string to rule them all",
"6366 string to rule them all",
"6367 string to rule them all",
"6368 string to rule them all",
"6369 string to rule them all",
"6370 string to rule them all",
"6371 string to rule them all",
"6372 string to rule them all",
"6373 string to rule them all",
"6374 string to rule them all",
"6375 string to rule them all",
"6376 string to rule them all",
"6377 string to rule them all",
"6378 string to rule them all",
"6379 string to rule them all",
"6380 string to rule them all",
"6381 string to rule them all",
"6382 string to rule them all",
"6383 string to rule them all",
"6384 string to rule them all",
"6385 string to rule them all",
"6386 string to rule them all",
"6387 string to rule them all",
"6388 string to rule them all",
"6389 string to rule them all",
"6390 string to rule them all",
"6391 string to rule them all",
"6392 string to rule them all",
"6393 string to rule them all",
"6394 string to rule them all",
"6395 string to rule them all",
"6396 string to rule them all",
"6397 string to rule them all",
"6398 string to rule them all",
"6399 string to rule them all",
"6400 string to rule them all",
"6401 string to rule them all",
"6402 string to rule them all",
"6403 string to rule them all",
"6404 string to rule them all",
"6405 string to rule them all",
"6406 string to rule them all",
"6407 string to rule them all",
"6408 string to rule them all",
"6409 string to rule them all",
"6410 string to rule them all",
"6411 string to rule them all",
"6412 string to rule them all",
"6413 string to rule them all",
"6414 string to rule them all",
"6415 string to rule them all",
"6416 string to rule them all",
"6417 string to rule them all",
"6418 string to rule them all",
"6419 string to rule them all",
"6420 string to rule them all",
"6421 string to rule them all",
"6422 string to rule them all",
"6423 string to rule them all",
"6424 string to rule them all",
"6425 string to rule them all",
"6426 string to rule them all",
"6427 string to rule them all",
"6428 string to rule them all",
"6429 string to rule them all",
"6430 string to rule them all",
"6431 string to rule them all",
"6432 string to rule them all",
"6433 string to rule them all",
"6434 string to rule them all",
"6435 string to rule them all",
"6436 string to rule them all",
"6437 string to rule them all",
"6438 string to rule them all",
"6439 string to rule them all",
"6440 string to rule them all",
"6441 string to rule them all",
"6442 string to rule them all",
"6443 string to rule them all",
"6444 string to rule them all",
"6445 string to rule them all",
"6446 string to rule them all",
"6447 string to rule them all",
"6448 string to rule them all",
"6449 string to rule them all",
"6450 string to rule them all",
"6451 string to rule them all",
"6452 string to rule them all",
"6453 string to rule them all",
"6454 string to rule them all",
"6455 string to rule them all",
"6456 string to rule them all",
"6457 string to rule them all",
"6458 string to rule them all",
"6459 string to rule them all",
"6460 string to rule them all",
"6461 string to rule them all",
"6462 string to rule them all",
"6463 string to rule them all",
"6464 string to rule them all",
"6465 string to rule them all",
"6466 string to rule them all",
"6467 string to rule them all",
"6468 string to rule them all",
"6469 string to rule them all",
"6470 string to rule them all",
"6471 string to rule them all",
"6472 string to rule them all",
"6473 string to rule them all",
"6474 string to rule them all",
"6475 string to rule them all",
"6476 string to rule them all",
"6477 string to rule them all",
"6478 string to rule them all",
"6479 string to rule them all",
"6480 string to rule them all",
"6481 string to rule them all",
"6482 string to rule them all",
"6483 string to rule them all",
"6484 string to rule them all",
"6485 string to rule them all",
"6486 string to rule them all",
"6487 string to rule them all",
"6488 string to rule them all",
"6489 string to rule them all",
"6490 string to rule them all",
"6491 string to rule them all",
"6492 string to rule them all",
"6493 string to rule them all",
"6494 string to rule them all",
"6495 string to rule them all",
"6496 string to rule them all",
"6497 string to rule them all",
"6498 string to rule them all",
"6499 string to rule them all",
"6500 string to rule them all",
"6501 string to rule them all",
"6502 string to rule them all",
"6503 string to rule them all",
"6504 string to rule them all",
"6505 string to rule them all",
"6506 string to rule them all",
"6507 string to rule them all",
"6508 string to rule them all",
"6509 string to rule them all",
"6510 string to rule them all",
"6511 string to rule them all",
"6512 string to rule them all",
"6513 string to rule them all",
"6514 string to rule them all",
"6515 string to rule them all",
"6516 string to rule them all",
"6517 string to rule them all",
"6518 string to rule them all",
"6519 string to rule them all",
"6520 string to rule them all",
"6521 string to rule them all",
"6522 string to rule them all",
"6523 string to rule them all",
"6524 string to rule them all",
"6525 string to rule them all",
"6526 string to rule them all",
"6527 string to rule them all",
"6528 string to rule them all",
"6529 string to rule them all",
"6530 string to rule them all",
"6531 string to rule them all",
"6532 string to rule them all",
"6533 string to rule them all",
"6534 string to rule them all",
"6535 string to rule them all",
"6536 string to rule them all",
"6537 string to rule them all",
"6538 string to rule them all",
"6539 string to rule them all",
"6540 string to rule them all",
"6541 string to rule them all",
"6542 string to rule them all",
"6543 string to rule them all",
"6544 string to rule them all",
"6545 string to rule them all",
"6546 string to rule them all",
"6547 string to rule them all",
"6548 string to rule them all",
"6549 string to rule them all",
"6550 string to rule them all",
"6551 string to rule them all",
"6552 string to rule them all",
"6553 string to rule them all",
"6554 string to rule them all",
"6555 string to rule them all",
"6556 string to rule them all",
"6557 string to rule them all",
"6558 string to rule them all",
"6559 string to rule them all",
"6560 string to rule them all",
"6561 string to rule them all",
"6562 string to rule them all",
"6563 string to rule them all",
"6564 string to rule them all",
"6565 string to rule them all",
"6566 string to rule them all",
"6567 string to rule them all",
"6568 string to rule them all",
"6569 string to rule them all",
"6570 string to rule them all",
"6571 string to rule them all",
"6572 string to rule them all",
"6573 string to rule them all",
"6574 string to rule them all",
"6575 string to rule them all",
"6576 string to rule them all",
"6577 string to rule them all",
"6578 string to rule them all",
"6579 string to rule them all",
"6580 string to rule them all",
"6581 string to rule them all",
"6582 string to rule them all",
"6583 string to rule them all",
"6584 string to rule them all",
"6585 string to rule them all",
"6586 string to rule them all",
"6587 string to rule them all",
"6588 string to rule them all",
"6589 string to rule them all",
"6590 string to rule them all",
"6591 string to rule them all",
"6592 string to rule them all",
"6593 string to rule them all",
"6594 string to rule them all",
"6595 string to rule them all",
"6596 string to rule them all",
"6597 string to rule them all",
"6598 string to rule them all",
"6599 string to rule them all",
"6600 string to rule them all",
"6601 string to rule them all",
"6602 string to rule them all",
"6603 string to rule them all",
"6604 string to rule them all",
"6605 string to rule them all",
"6606 string to rule them all",
"6607 string to rule them all",
"6608 string to rule them all",
"6609 string to rule them all",
"6610 string to rule them all",
"6611 string to rule them all",
"6612 string to rule them all",
"6613 string to rule them all",
"6614 string to rule them all",
"6615 string to rule them all",
"6616 string to rule them all",
"6617 string to rule them all",
"6618 string to rule them all",
"6619 string to rule them all",
"6620 string to rule them all",
"6621 string to rule them all",
"6622 string to rule them all",
"6623 string to rule them all",
"6624 string to rule them all",
"6625 string to rule them all",
"6626 string to rule them all",
"6627 string to rule them all",
"6628 string to rule them all",
"6629 string to rule them all",
"6630 string to rule them all",
"6631 string to rule them all",
"6632 string to rule them all",
"6633 string to rule them all",
"6634 string to rule them all",
"6635 string to rule them all",
"6636 string to rule them all",
"6637 string to rule them all",
"6638 string to rule them all",
"6639 string to rule them all",
"6640 string to rule them all",
"6641 string to rule them all",
"6642 string to rule them all",
"6643 string to rule them all",
"6644 string to rule them all",
"6645 string to rule them all",
"6646 string to rule them all",
"6647 string to rule them all",
"6648 string to rule them all",
"6649 string to rule them all",
"6650 string to rule them all",
"6651 string to rule them all",
"6652 string to rule them all",
"6653 string to rule them all",
"6654 string to rule them all",
"6655 string to rule them all",
"6656 string to rule them all",
"6657 string to rule them all",
"6658 string to rule them all",
"6659 string to rule them all",
"6660 string to rule them all",
"6661 string to rule them all",
"6662 string to rule them all",
"6663 string to rule them all",
"6664 string to rule them all",
"6665 string to rule them all",
"6666 string to rule them all",
"6667 string to rule them all",
"6668 string to rule them all",
"6669 string to rule them all",
"6670 string to rule them all",
"6671 string to rule them all",
"6672 string to rule them all",
"6673 string to rule them all",
"6674 string to rule them all",
"6675 string to rule them all",
"6676 string to rule them all",
"6677 string to rule them all",
"6678 string to rule them all",
"6679 string to rule them all",
"6680 string to rule them all",
"6681 string to rule them all",
"6682 string to rule them all",
"6683 string to rule them all",
"6684 string to rule them all",
"6685 string to rule them all",
"6686 string to rule them all",
"6687 string to rule them all",
"6688 string to rule them all",
"6689 string to rule them all",
"6690 string to rule them all",
"6691 string to rule them all",
"6692 string to rule them all",
"6693 string to rule them all",
"6694 string to rule them all",
"6695 string to rule them all",
"6696 string to rule them all",
"6697 string to rule them all",
"6698 string to rule them all",
"6699 string to rule them all",
"6700 string to rule them all",
"6701 string to rule them all",
"6702 string to rule them all",
"6703 string to rule them all",
"6704 string to rule them all",
"6705 string to rule them all",
"6706 string to rule them all",
"6707 string to rule them all",
"6708 string to rule them all",
"6709 string to rule them all",
"6710 string to rule them all",
"6711 string to rule them all",
"6712 string to rule them all",
"6713 string to rule them all",
"6714 string to rule them all",
"6715 string to rule them all",
"6716 string to rule them all",
"6717 string to rule them all",
"6718 string to rule them all",
"6719 string to rule them all",
"6720 string to rule them all",
"6721 string to rule them all",
"6722 string to rule them all",
"6723 string to rule them all",
"6724 string to rule them all",
"6725 string to rule them all",
"6726 string to rule them all",
"6727 string to rule them all",
"6728 string to rule them all",
"6729 string to rule them all",
"6730 string to rule them all",
"6731 string to rule them all",
"6732 string to rule them all",
"6733 string to rule them all",
"6734 string to rule them all",
"6735 string to rule them all",
"6736 string to rule them all",
"6737 string to rule them all",
"6738 string to rule them all",
"6739 string to rule them all",
"6740 string to rule them all",
"6741 string to rule them all",
"6742 string to rule them all",
"6743 string to rule them all",
"6744 string to rule them all",
"6745 string to rule them all",
"6746 string to rule them all",
"6747 string to rule them all",
"6748 string to rule them all",
"6749 string to rule them all",
"6750 string to rule them all",
"6751 string to rule them all",
"6752 string to rule them all",
"6753 string to rule them all",
"6754 string to rule them all",
"6755 string to rule them all",
"6756 string to rule them all",
"6757 string to rule them all",
"6758 string to rule them all",
"6759 string to rule them all",
"6760 string to rule them all",
"6761 string to rule them all",
"6762 string to rule them all",
"6763 string to rule them all",
"6764 string to rule them all",
"6765 string to rule them all",
"6766 string to rule them all",
"6767 string to rule them all",
"6768 string to rule them all",
"6769 string to rule them all",
"6770 string to rule them all",
"6771 string to rule them all",
"6772 string to rule them all",
"6773 string to rule them all",
"6774 string to rule them all",
"6775 string to rule them all",
"6776 string to rule them all",
"6777 string to rule them all",
"6778 string to rule them all",
"6779 string to rule them all",
"6780 string to rule them all",
"6781 string to rule them all",
"6782 string to rule them all",
"6783 string to rule them all",
"6784 string to rule them all",
"6785 string to rule them all",
"6786 string to rule them all",
"6787 string to rule them all",
"6788 string to rule them all",
"6789 string to rule them all",
"6790 string to rule them all",
"6791 string to rule them all",
"6792 string to rule them all",
"6793 string to rule them all",
"6794 string to rule them all",
"6795 string to rule them all",
"6796 string to rule them all",
"6797 string to rule them all",
"6798 string to rule them all",
"6799 string to rule them all",
"6800 string to rule them all",
"6801 string to rule them all",
"6802 string to rule them all",
"6803 string to rule them all",
"6804 string to rule them all",
"6805 string to rule them all",
"6806 string to rule them all",
"6807 string to rule them all",
"6808 string to rule them all",
"6809 string to rule them all",
"6810 string to rule them all",
"6811 string to rule them all",
"6812 string to rule them all",
"6813 string to rule them all",
"6814 string to rule them all",
"6815 string to rule them all",
"6816 string to rule them all",
"6817 string to rule them all",
"6818 string to rule them all",
"6819 string to rule them all",
"6820 string to rule them all",
"6821 string to rule them all",
"6822 string to rule them all",
"6823 string to rule them all",
"6824 string to rule them all",
"6825 string to rule them all",
"6826 string to rule them all",
"6827 string to rule them all",
"6828 string to rule them all",
"6829 string to rule them all",
"6830 string to rule them all",
"6831 string to rule them all",
"6832 string to rule them all",
"6833 string to rule them all",
"6834 string to rule them all",
"6835 string to rule them all",
"6836 string to rule them all",
"6837 string to rule them all",
"6838 string to rule them all",
"6839 string to rule them all",
"6840 string to rule them all",
"6841 string to rule them all",
"6842 string to rule them all",
"6843 string to rule them all",
"6844 string to rule them all",
"6845 string to rule them all",
"6846 string to rule them all",
"6847 string to rule them all",
"6848 string to rule them all",
"6849 string to rule them all",
"6850 string to rule them all",
"6851 string to rule them all",
"6852 string to rule them all",
"6853 string to rule them all",
"6854 string to rule them all",
"6855 string to rule them all",
"6856 string to rule them all",
"6857 string to rule them all",
"6858 string to rule them all",
"6859 string to rule them all",
"6860 string to rule them all",
"6861 string to rule them all",
"6862 string to rule them all",
"6863 string to rule them all",
"6864 string to rule them all",
"6865 string to rule them all",
"6866 string to rule them all",
"6867 string to rule them all",
"6868 string to rule them all",
"6869 string to rule them all",
"6870 string to rule them all",
"6871 string to rule them all",
"6872 string to rule them all",
"6873 string to rule them all",
"6874 string to rule them all",
"6875 string to rule them all",
"6876 string to rule them all",
"6877 string to rule them all",
"6878 string to rule them all",
"6879 string to rule them all",
"6880 string to rule them all",
"6881 string to rule them all",
"6882 string to rule them all",
"6883 string to rule them all",
"6884 string to rule them all",
"6885 string to rule them all",
"6886 string to rule them all",
"6887 string to rule them all",
"6888 string to rule them all",
"6889 string to rule them all",
"6890 string to rule them all",
"6891 string to rule them all",
"6892 string to rule them all",
"6893 string to rule them all",
"6894 string to rule them all",
"6895 string to rule them all",
"6896 string to rule them all",
"6897 string to rule them all",
"6898 string to rule them all",
"6899 string to rule them all",
"6900 string to rule them all",
"6901 string to rule them all",
"6902 string to rule them all",
"6903 string to rule them all",
"6904 string to rule them all",
"6905 string to rule them all",
"6906 string to rule them all",
"6907 string to rule them all",
"6908 string to rule them all",
"6909 string to rule them all",
"6910 string to rule them all",
"6911 string to rule them all",
"6912 string to rule them all",
"6913 string to rule them all",
"6914 string to rule them all",
"6915 string to rule them all",
"6916 string to rule them all",
"6917 string to rule them all",
"6918 string to rule them all",
"6919 string to rule them all",
"6920 string to rule them all",
"6921 string to rule them all",
"6922 string to rule them all",
"6923 string to rule them all",
"6924 string to rule them all",
"6925 string to rule them all",
"6926 string to rule them all",
"6927 string to rule them all",
"6928 string to rule them all",
"6929 string to rule them all",
"6930 string to rule them all",
"6931 string to rule them all",
"6932 string to rule them all",
"6933 string to rule them all",
"6934 string to rule them all",
"6935 string to rule them all",
"6936 string to rule them all",
"6937 string to rule them all",
"6938 string to rule them all",
"6939 string to rule them all",
"6940 string to rule them all",
"6941 string to rule them all",
"6942 string to rule them all",
"6943 string to rule them all",
"6944 string to rule them all",
"6945 string to rule them all",
"6946 string to rule them all",
"6947 string to rule them all",
"6948 string to rule them all",
"6949 string to rule them all",
"6950 string to rule them all",
"6951 string to rule them all",
"6952 string to rule them all",
"6953 string to rule them all",
"6954 string to rule them all",
"6955 string to rule them all",
"6956 string to rule them all",
"6957 string to rule them all",
"6958 string to rule them all",
"6959 string to rule them all",
"6960 string to rule them all",
"6961 string to rule them all",
"6962 string to rule them all",
"6963 string to rule them all",
"6964 string to rule them all",
"6965 string to rule them all",
"6966 string to rule them all",
"6967 string to rule them all",
"6968 string to rule them all",
"6969 string to rule them all",
"6970 string to rule them all",
"6971 string to rule them all",
"6972 string to rule them all",
"6973 string to rule them all",
"6974 string to rule them all",
"6975 string to rule them all",
"6976 string to rule them all",
"6977 string to rule them all",
"6978 string to rule them all",
"6979 string to rule them all",
"6980 string to rule them all",
"6981 string to rule them all",
"6982 string to rule them all",
"6983 string to rule them all",
"6984 string to rule them all",
"6985 string to rule them all",
"6986 string to rule them all",
"6987 string to rule them all",
"6988 string to rule them all",
"6989 string to rule them all",
"6990 string to rule them all",
"6991 string to rule them all",
"6992 string to rule them all",
"6993 string to rule them all",
"6994 string to rule them all",
"6995 string to rule them all",
"6996 string to rule them all",
"6997 string to rule them all",
"6998 string to rule them all",
"6999 string to rule them all",
"7000 string to rule them all",
"7001 string to rule them all",
"7002 string to rule them all",
"7003 string to rule them all",
"7004 string to rule them all",
"7005 string to rule them all",
"7006 string to rule them all",
"7007 string to rule them all",
"7008 string to rule them all",
"7009 string to rule them all",
"7010 string to rule them all",
"7011 string to rule them all",
"7012 string to rule them all",
"7013 string to rule them all",
"7014 string to rule them all",
"7015 string to rule them all",
"7016 string to rule them all",
"7017 string to rule them all",
"7018 string to rule them all",
"7019 string to rule them all",
"7020 string to rule them all",
"7021 string to rule them all",
"7022 string to rule them all",
"7023 string to rule them all",
"7024 string to rule them all",
"7025 string to rule them all",
"7026 string to rule them all",
"7027 string to rule them all",
"7028 string to rule them all",
"7029 string to rule them all",
"7030 string to rule them all",
"7031 string to rule them all",
"7032 string to rule them all",
"7033 string to rule them all",
"7034 string to rule them all",
"7035 string to rule them all",
"7036 string to rule them all",
"7037 string to rule them all",
"7038 string to rule them all",
"7039 string to rule them all",
"7040 string to rule them all",
"7041 string to rule them all",
"7042 string to rule them all",
"7043 string to rule them all",
"7044 string to rule them all",
"7045 string to rule them all",
"7046 string to rule them all",
"7047 string to rule them all",
"7048 string to rule them all",
"7049 string to rule them all",
"7050 string to rule them all",
"7051 string to rule them all",
"7052 string to rule them all",
"7053 string to rule them all",
"7054 string to rule them all",
"7055 string to rule them all",
"7056 string to rule them all",
"7057 string to rule them all",
"7058 string to rule them all",
"7059 string to rule them all",
"7060 string to rule them all",
"7061 string to rule them all",
"7062 string to rule them all",
"7063 string to rule them all",
"7064 string to rule them all",
"7065 string to rule them all",
"7066 string to rule them all",
"7067 string to rule them all",
"7068 string to rule them all",
"7069 string to rule them all",
"7070 string to rule them all",
"7071 string to rule them all",
"7072 string to rule them all",
"7073 string to rule them all",
"7074 string to rule them all",
"7075 string to rule them all",
"7076 string to rule them all",
"7077 string to rule them all",
"7078 string to rule them all",
"7079 string to rule them all",
"7080 string to rule them all",
"7081 string to rule them all",
"7082 string to rule them all",
"7083 string to rule them all",
"7084 string to rule them all",
"7085 string to rule them all",
"7086 string to rule them all",
"7087 string to rule them all",
"7088 string to rule them all",
"7089 string to rule them all",
"7090 string to rule them all",
"7091 string to rule them all",
"7092 string to rule them all",
"7093 string to rule them all",
"7094 string to rule them all",
"7095 string to rule them all",
"7096 string to rule them all",
"7097 string to rule them all",
"7098 string to rule them all",
"7099 string to rule them all",
"7100 string to rule them all",
"7101 string to rule them all",
"7102 string to rule them all",
"7103 string to rule them all",
"7104 string to rule them all",
"7105 string to rule them all",
"7106 string to rule them all",
"7107 string to rule them all",
"7108 string to rule them all",
"7109 string to rule them all",
"7110 string to rule them all",
"7111 string to rule them all",
"7112 string to rule them all",
"7113 string to rule them all",
"7114 string to rule them all",
"7115 string to rule them all",
"7116 string to rule them all",
"7117 string to rule them all",
"7118 string to rule them all",
"7119 string to rule them all",
"7120 string to rule them all",
"7121 string to rule them all",
"7122 string to rule them all",
"7123 string to rule them all",
"7124 string to rule them all",
"7125 string to rule them all",
"7126 string to rule them all",
"7127 string to rule them all",
"7128 string to rule them all",
"7129 string to rule them all",
"7130 string to rule them all",
"7131 string to rule them all",
"7132 string to rule them all",
"7133 string to rule them all",
"7134 string to rule them all",
"7135 string to rule them all",
"7136 string to rule them all",
"7137 string to rule them all",
"7138 string to rule them all",
"7139 string to rule them all",
"7140 string to rule them all",
"7141 string to rule them all",
"7142 string to rule them all",
"7143 string to rule them all",
"7144 string to rule them all",
"7145 string to rule them all",
"7146 string to rule them all",
"7147 string to rule them all",
"7148 string to rule them all",
"7149 string to rule them all",
"7150 string to rule them all",
"7151 string to rule them all",
"7152 string to rule them all",
"7153 string to rule them all",
"7154 string to rule them all",
"7155 string to rule them all",
"7156 string to rule them all",
"7157 string to rule them all",
"7158 string to rule them all",
"7159 string to rule them all",
"7160 string to rule them all",
"7161 string to rule them all",
"7162 string to rule them all",
"7163 string to rule them all",
"7164 string to rule them all",
"7165 string to rule them all",
"7166 string to rule them all",
"7167 string to rule them all",
"7168 string to rule them all",
"7169 string to rule them all",
"7170 string to rule them all",
"7171 string to rule them all",
"7172 string to rule them all",
"7173 string to rule them all",
"7174 string to rule them all",
"7175 string to rule them all",
"7176 string to rule them all",
"7177 string to rule them all",
"7178 string to rule them all",
"7179 string to rule them all",
"7180 string to rule them all",
"7181 string to rule them all",
"7182 string to rule them all",
"7183 string to rule them all",
"7184 string to rule them all",
"7185 string to rule them all",
"7186 string to rule them all",
"7187 string to rule them all",
"7188 string to rule them all",
"7189 string to rule them all",
"7190 string to rule them all",
"7191 string to rule them all",
"7192 string to rule them all",
"7193 string to rule them all",
"7194 string to rule them all",
"7195 string to rule them all",
"7196 string to rule them all",
"7197 string to rule them all",
"7198 string to rule them all",
"7199 string to rule them all",
"7200 string to rule them all",
"7201 string to rule them all",
"7202 string to rule them all",
"7203 string to rule them all",
"7204 string to rule them all",
"7205 string to rule them all",
"7206 string to rule them all",
"7207 string to rule them all",
"7208 string to rule them all",
"7209 string to rule them all",
"7210 string to rule them all",
"7211 string to rule them all",
"7212 string to rule them all",
"7213 string to rule them all",
"7214 string to rule them all",
"7215 string to rule them all",
"7216 string to rule them all",
"7217 string to rule them all",
"7218 string to rule them all",
"7219 string to rule them all",
"7220 string to rule them all",
"7221 string to rule them all",
"7222 string to rule them all",
"7223 string to rule them all",
"7224 string to rule them all",
"7225 string to rule them all",
"7226 string to rule them all",
"7227 string to rule them all",
"7228 string to rule them all",
"7229 string to rule them all",
"7230 string to rule them all",
"7231 string to rule them all",
"7232 string to rule them all",
"7233 string to rule them all",
"7234 string to rule them all",
"7235 string to rule them all",
"7236 string to rule them all",
"7237 string to rule them all",
"7238 string to rule them all",
"7239 string to rule them all",
"7240 string to rule them all",
"7241 string to rule them all",
"7242 string to rule them all",
"7243 string to rule them all",
"7244 string to rule them all",
"7245 string to rule them all",
"7246 string to rule them all",
"7247 string to rule them all",
"7248 string to rule them all",
"7249 string to rule them all",
"7250 string to rule them all",
"7251 string to rule them all",
"7252 string to rule them all",
"7253 string to rule them all",
"7254 string to rule them all",
"7255 string to rule them all",
"7256 string to rule them all",
"7257 string to rule them all",
"7258 string to rule them all",
"7259 string to rule them all",
"7260 string to rule them all",
"7261 string to rule them all",
"7262 string to rule them all",
"7263 string to rule them all",
"7264 string to rule them all",
"7265 string to rule them all",
"7266 string to rule them all",
"7267 string to rule them all",
"7268 string to rule them all",
"7269 string to rule them all",
"7270 string to rule them all",
"7271 string to rule them all",
"7272 string to rule them all",
"7273 string to rule them all",
"7274 string to rule them all",
"7275 string to rule them all",
"7276 string to rule them all",
"7277 string to rule them all",
"7278 string to rule them all",
"7279 string to rule them all",
"7280 string to rule them all",
"7281 string to rule them all",
"7282 string to rule them all",
"7283 string to rule them all",
"7284 string to rule them all",
"7285 string to rule them all",
"7286 string to rule them all",
"7287 string to rule them all",
"7288 string to rule them all",
"7289 string to rule them all",
"7290 string to rule them all",
"7291 string to rule them all",
"7292 string to rule them all",
"7293 string to rule them all",
"7294 string to rule them all",
"7295 string to rule them all",
"7296 string to rule them all",
"7297 string to rule them all",
"7298 string to rule them all",
"7299 string to rule them all",
"7300 string to rule them all",
"7301 string to rule them all",
"7302 string to rule them all",
"7303 string to rule them all",
"7304 string to rule them all",
"7305 string to rule them all",
"7306 string to rule them all",
"7307 string to rule them all",
"7308 string to rule them all",
"7309 string to rule them all",
"7310 string to rule them all",
"7311 string to rule them all",
"7312 string to rule them all",
"7313 string to rule them all",
"7314 string to rule them all",
"7315 string to rule them all",
"7316 string to rule them all",
"7317 string to rule them all",
"7318 string to rule them all",
"7319 string to rule them all",
"7320 string to rule them all",
"7321 string to rule them all",
"7322 string to rule them all",
"7323 string to rule them all",
"7324 string to rule them all",
"7325 string to rule them all",
"7326 string to rule them all",
"7327 string to rule them all",
"7328 string to rule them all",
"7329 string to rule them all",
"7330 string to rule them all",
"7331 string to rule them all",
"7332 string to rule them all",
"7333 string to rule them all",
"7334 string to rule them all",
"7335 string to rule them all",
"7336 string to rule them all",
"7337 string to rule them all",
"7338 string to rule them all",
"7339 string to rule them all",
"7340 string to rule them all",
"7341 string to rule them all",
"7342 string to rule them all",
"7343 string to rule them all",
"7344 string to rule them all",
"7345 string to rule them all",
"7346 string to rule them all",
"7347 string to rule them all",
"7348 string to rule them all",
"7349 string to rule them all",
"7350 string to rule them all",
"7351 string to rule them all",
"7352 string to rule them all",
"7353 string to rule them all",
"7354 string to rule them all",
"7355 string to rule them all",
"7356 string to rule them all",
"7357 string to rule them all",
"7358 string to rule them all",
"7359 string to rule them all",
"7360 string to rule them all",
"7361 string to rule them all",
"7362 string to rule them all",
"7363 string to rule them all",
"7364 string to rule them all",
"7365 string to rule them all",
"7366 string to rule them all",
"7367 string to rule them all",
"7368 string to rule them all",
"7369 string to rule them all",
"7370 string to rule them all",
"7371 string to rule them all",
"7372 string to rule them all",
"7373 string to rule them all",
"7374 string to rule them all",
"7375 string to rule them all",
"7376 string to rule them all",
"7377 string to rule them all",
"7378 string to rule them all",
"7379 string to rule them all",
"7380 string to rule them all",
"7381 string to rule them all",
"7382 string to rule them all",
"7383 string to rule them all",
"7384 string to rule them all",
"7385 string to rule them all",
"7386 string to rule them all",
"7387 string to rule them all",
"7388 string to rule them all",
"7389 string to rule them all",
"7390 string to rule them all",
"7391 string to rule them all",
"7392 string to rule them all",
"7393 string to rule them all",
"7394 string to rule them all",
"7395 string to rule them all",
"7396 string to rule them all",
"7397 string to rule them all",
"7398 string to rule them all",
"7399 string to rule them all",
"7400 string to rule them all",
"7401 string to rule them all",
"7402 string to rule them all",
"7403 string to rule them all",
"7404 string to rule them all",
"7405 string to rule them all",
"7406 string to rule them all",
"7407 string to rule them all",
"7408 string to rule them all",
"7409 string to rule them all",
"7410 string to rule them all",
"7411 string to rule them all",
"7412 string to rule them all",
"7413 string to rule them all",
"7414 string to rule them all",
"7415 string to rule them all",
"7416 string to rule them all",
"7417 string to rule them all",
"7418 string to rule them all",
"7419 string to rule them all",
"7420 string to rule them all",
"7421 string to rule them all",
"7422 string to rule them all",
"7423 string to rule them all",
"7424 string to rule them all",
"7425 string to rule them all",
"7426 string to rule them all",
"7427 string to rule them all",
"7428 string to rule them all",
"7429 string to rule them all",
"7430 string to rule them all",
"7431 string to rule them all",
"7432 string to rule them all",
"7433 string to rule them all",
"7434 string to rule them all",
"7435 string to rule them all",
"7436 string to rule them all",
"7437 string to rule them all",
"7438 string to rule them all",
"7439 string to rule them all",
"7440 string to rule them all",
"7441 string to rule them all",
"7442 string to rule them all",
"7443 string to rule them all",
"7444 string to rule them all",
"7445 string to rule them all",
"7446 string to rule them all",
"7447 string to rule them all",
"7448 string to rule them all",
"7449 string to rule them all",
"7450 string to rule them all",
"7451 string to rule them all",
"7452 string to rule them all",
"7453 string to rule them all",
"7454 string to rule them all",
"7455 string to rule them all",
"7456 string to rule them all",
"7457 string to rule them all",
"7458 string to rule them all",
"7459 string to rule them all",
"7460 string to rule them all",
"7461 string to rule them all",
"7462 string to rule them all",
"7463 string to rule them all",
"7464 string to rule them all",
"7465 string to rule them all",
"7466 string to rule them all",
"7467 string to rule them all",
"7468 string to rule them all",
"7469 string to rule them all",
"7470 string to rule them all",
"7471 string to rule them all",
"7472 string to rule them all",
"7473 string to rule them all",
"7474 string to rule them all",
"7475 string to rule them all",
"7476 string to rule them all",
"7477 string to rule them all",
"7478 string to rule them all",
"7479 string to rule them all",
"7480 string to rule them all",
"7481 string to rule them all",
"7482 string to rule them all",
"7483 string to rule them all",
"7484 string to rule them all",
"7485 string to rule them all",
"7486 string to rule them all",
"7487 string to rule them all",
"7488 string to rule them all",
"7489 string to rule them all",
"7490 string to rule them all",
"7491 string to rule them all",
"7492 string to rule them all",
"7493 string to rule them all",
"7494 string to rule them all",
"7495 string to rule them all",
"7496 string to rule them all",
"7497 string to rule them all",
"7498 string to rule them all",
"7499 string to rule them all",
"7500 string to rule them all",
"7501 string to rule them all",
"7502 string to rule them all",
"7503 string to rule them all",
"7504 string to rule them all",
"7505 string to rule them all",
"7506 string to rule them all",
"7507 string to rule them all",
"7508 string to rule them all",
"7509 string to rule them all",
"7510 string to rule them all",
"7511 string to rule them all",
"7512 string to rule them all",
"7513 string to rule them all",
"7514 string to rule them all",
"7515 string to rule them all",
"7516 string to rule them all",
"7517 string to rule them all",
"7518 string to rule them all",
"7519 string to rule them all",
"7520 string to rule them all",
"7521 string to rule them all",
"7522 string to rule them all",
"7523 string to rule them all",
"7524 string to rule them all",
"7525 string to rule them all",
"7526 string to rule them all",
"7527 string to rule them all",
"7528 string to rule them all",
"7529 string to rule them all",
"7530 string to rule them all",
"7531 string to rule them all",
"7532 string to rule them all",
"7533 string to rule them all",
"7534 string to rule them all",
"7535 string to rule them all",
"7536 string to rule them all",
"7537 string to rule them all",
"7538 string to rule them all",
"7539 string to rule them all",
"7540 string to rule them all",
"7541 string to rule them all",
"7542 string to rule them all",
"7543 string to rule them all",
"7544 string to rule them all",
"7545 string to rule them all",
"7546 string to rule them all",
"7547 string to rule them all",
"7548 string to rule them all",
"7549 string to rule them all",
"7550 string to rule them all",
"7551 string to rule them all",
"7552 string to rule them all",
"7553 string to rule them all",
"7554 string to rule them all",
"7555 string to rule them all",
"7556 string to rule them all",
"7557 string to rule them all",
"7558 string to rule them all",
"7559 string to rule them all",
"7560 string to rule them all",
"7561 string to rule them all",
"7562 string to rule them all",
"7563 string to rule them all",
"7564 string to rule them all",
"7565 string to rule them all",
"7566 string to rule them all",
"7567 string to rule them all",
"7568 string to rule them all",
"7569 string to rule them all",
"7570 string to rule them all",
"7571 string to rule them all",
"7572 string to rule them all",
"7573 string to rule them all",
"7574 string to rule them all",
"7575 string to rule them all",
"7576 string to rule them all",
"7577 string to rule them all",
"7578 string to rule them all",
"7579 string to rule them all",
"7580 string to rule them all",
"7581 string to rule them all",
"7582 string to rule them all",
"7583 string to rule them all",
"7584 string to rule them all",
"7585 string to rule them all",
"7586 string to rule them all",
"7587 string to rule them all",
"7588 string to rule them all",
"7589 string to rule them all",
"7590 string to rule them all",
"7591 string to rule them all",
"7592 string to rule them all",
"7593 string to rule them all",
"7594 string to rule them all",
"7595 string to rule them all",
"7596 string to rule them all",
"7597 string to rule them all",
"7598 string to rule them all",
"7599 string to rule them all",
"7600 string to rule them all",
"7601 string to rule them all",
"7602 string to rule them all",
"7603 string to rule them all",
"7604 string to rule them all",
"7605 string to rule them all",
"7606 string to rule them all",
"7607 string to rule them all",
"7608 string to rule them all",
"7609 string to rule them all",
"7610 string to rule them all",
"7611 string to rule them all",
"7612 string to rule them all",
"7613 string to rule them all",
"7614 string to rule them all",
"7615 string to rule them all",
"7616 string to rule them all",
"7617 string to rule them all",
"7618 string to rule them all",
"7619 string to rule them all",
"7620 string to rule them all",
"7621 string to rule them all",
"7622 string to rule them all",
"7623 string to rule them all",
"7624 string to rule them all",
"7625 string to rule them all",
"7626 string to rule them all",
"7627 string to rule them all",
"7628 string to rule them all",
"7629 string to rule them all",
"7630 string to rule them all",
"7631 string to rule them all",
"7632 string to rule them all",
"7633 string to rule them all",
"7634 string to rule them all",
"7635 string to rule them all",
"7636 string to rule them all",
"7637 string to rule them all",
"7638 string to rule them all",
"7639 string to rule them all",
"7640 string to rule them all",
"7641 string to rule them all",
"7642 string to rule them all",
"7643 string to rule them all",
"7644 string to rule them all",
"7645 string to rule them all",
"7646 string to rule them all",
"7647 string to rule them all",
"7648 string to rule them all",
"7649 string to rule them all",
"7650 string to rule them all",
"7651 string to rule them all",
"7652 string to rule them all",
"7653 string to rule them all",
"7654 string to rule them all",
"7655 string to rule them all",
"7656 string to rule them all",
"7657 string to rule them all",
"7658 string to rule them all",
"7659 string to rule them all",
"7660 string to rule them all",
"7661 string to rule them all",
"7662 string to rule them all",
"7663 string to rule them all",
"7664 string to rule them all",
"7665 string to rule them all",
"7666 string to rule them all",
"7667 string to rule them all",
"7668 string to rule them all",
"7669 string to rule them all",
"7670 string to rule them all",
"7671 string to rule them all",
"7672 string to rule them all",
"7673 string to rule them all",
"7674 string to rule them all",
"7675 string to rule them all",
"7676 string to rule them all",
"7677 string to rule them all",
"7678 string to rule them all",
"7679 string to rule them all",
"7680 string to rule them all",
"7681 string to rule them all",
"7682 string to rule them all",
"7683 string to rule them all",
"7684 string to rule them all",
"7685 string to rule them all",
"7686 string to rule them all",
"7687 string to rule them all",
"7688 string to rule them all",
"7689 string to rule them all",
"7690 string to rule them all",
"7691 string to rule them all",
"7692 string to rule them all",
"7693 string to rule them all",
"7694 string to rule them all",
"7695 string to rule them all",
"7696 string to rule them all",
"7697 string to rule them all",
"7698 string to rule them all",
"7699 string to rule them all",
"7700 string to rule them all",
"7701 string to rule them all",
"7702 string to rule them all",
"7703 string to rule them all",
"7704 string to rule them all",
"7705 string to rule them all",
"7706 string to rule them all",
"7707 string to rule them all",
"7708 string to rule them all",
"7709 string to rule them all",
"7710 string to rule them all",
"7711 string to rule them all",
"7712 string to rule them all",
"7713 string to rule them all",
"7714 string to rule them all",
"7715 string to rule them all",
"7716 string to rule them all",
"7717 string to rule them all",
"7718 string to rule them all",
"7719 string to rule them all",
"7720 string to rule them all",
"7721 string to rule them all",
"7722 string to rule them all",
"7723 string to rule them all",
"7724 string to rule them all",
"7725 string to rule them all",
"7726 string to rule them all",
"7727 string to rule them all",
"7728 string to rule them all",
"7729 string to rule them all",
"7730 string to rule them all",
"7731 string to rule them all",
"7732 string to rule them all",
"7733 string to rule them all",
"7734 string to rule them all",
"7735 string to rule them all",
"7736 string to rule them all",
"7737 string to rule them all",
"7738 string to rule them all",
"7739 string to rule them all",
"7740 string to rule them all",
"7741 string to rule them all",
"7742 string to rule them all",
"7743 string to rule them all",
"7744 string to rule them all",
"7745 string to rule them all",
"7746 string to rule them all",
"7747 string to rule them all",
"7748 string to rule them all",
"7749 string to rule them all",
"7750 string to rule them all",
"7751 string to rule them all",
"7752 string to rule them all",
"7753 string to rule them all",
"7754 string to rule them all",
"7755 string to rule them all",
"7756 string to rule them all",
"7757 string to rule them all",
"7758 string to rule them all",
"7759 string to rule them all",
"7760 string to rule them all",
"7761 string to rule them all",
"7762 string to rule them all",
"7763 string to rule them all",
"7764 string to rule them all",
"7765 string to rule them all",
"7766 string to rule them all",
"7767 string to rule them all",
"7768 string to rule them all",
"7769 string to rule them all",
"7770 string to rule them all",
"7771 string to rule them all",
"7772 string to rule them all",
"7773 string to rule them all",
"7774 string to rule them all",
"7775 string to rule them all",
"7776 string to rule them all",
"7777 string to rule them all",
"7778 string to rule them all",
"7779 string to rule them all",
"7780 string to rule them all",
"7781 string to rule them all",
"7782 string to rule them all",
"7783 string to rule them all",
"7784 string to rule them all",
"7785 string to rule them all",
"7786 string to rule them all",
"7787 string to rule them all",
"7788 string to rule them all",
"7789 string to rule them all",
"7790 string to rule them all",
"7791 string to rule them all",
"7792 string to rule them all",
"7793 string to rule them all",
"7794 string to rule them all",
"7795 string to rule them all",
"7796 string to rule them all",
"7797 string to rule them all",
"7798 string to rule them all",
"7799 string to rule them all",
"7800 string to rule them all",
"7801 string to rule them all",
"7802 string to rule them all",
"7803 string to rule them all",
"7804 string to rule them all",
"7805 string to rule them all",
"7806 string to rule them all",
"7807 string to rule them all",
"7808 string to rule them all",
"7809 string to rule them all",
"7810 string to rule them all",
"7811 string to rule them all",
"7812 string to rule them all",
"7813 string to rule them all",
"7814 string to rule them all",
"7815 string to rule them all",
"7816 string to rule them all",
"7817 string to rule them all",
"7818 string to rule them all",
"7819 string to rule them all",
"7820 string to rule them all",
"7821 string to rule them all",
"7822 string to rule them all",
"7823 string to rule them all",
"7824 string to rule them all",
"7825 string to rule them all",
"7826 string to rule them all",
"7827 string to rule them all",
"7828 string to rule them all",
"7829 string to rule them all",
"7830 string to rule them all",
"7831 string to rule them all",
"7832 string to rule them all",
"7833 string to rule them all",
"7834 string to rule them all",
"7835 string to rule them all",
"7836 string to rule them all",
"7837 string to rule them all",
"7838 string to rule them all",
"7839 string to rule them all",
"7840 string to rule them all",
"7841 string to rule them all",
"7842 string to rule them all",
"7843 string to rule them all",
"7844 string to rule them all",
"7845 string to rule them all",
"7846 string to rule them all",
"7847 string to rule them all",
"7848 string to rule them all",
"7849 string to rule them all",
"7850 string to rule them all",
"7851 string to rule them all",
"7852 string to rule them all",
"7853 string to rule them all",
"7854 string to rule them all",
"7855 string to rule them all",
"7856 string to rule them all",
"7857 string to rule them all",
"7858 string to rule them all",
"7859 string to rule them all",
"7860 string to rule them all",
"7861 string to rule them all",
"7862 string to rule them all",
"7863 string to rule them all",
"7864 string to rule them all",
"7865 string to rule them all",
"7866 string to rule them all",
"7867 string to rule them all",
"7868 string to rule them all",
"7869 string to rule them all",
"7870 string to rule them all",
"7871 string to rule them all",
"7872 string to rule them all",
"7873 string to rule them all",
"7874 string to rule them all",
"7875 string to rule them all",
"7876 string to rule them all",
"7877 string to rule them all",
"7878 string to rule them all",
"7879 string to rule them all",
"7880 string to rule them all",
"7881 string to rule them all",
"7882 string to rule them all",
"7883 string to rule them all",
"7884 string to rule them all",
"7885 string to rule them all",
"7886 string to rule them all",
"7887 string to rule them all",
"7888 string to rule them all",
"7889 string to rule them all",
"7890 string to rule them all",
"7891 string to rule them all",
"7892 string to rule them all",
"7893 string to rule them all",
"7894 string to rule them all",
"7895 string to rule them all",
"7896 string to rule them all",
"7897 string to rule them all",
"7898 string to rule them all",
"7899 string to rule them all",
"7900 string to rule them all",
"7901 string to rule them all",
"7902 string to rule them all",
"7903 string to rule them all",
"7904 string to rule them all",
"7905 string to rule them all",
"7906 string to rule them all",
"7907 string to rule them all",
"7908 string to rule them all",
"7909 string to rule them all",
"7910 string to rule them all",
"7911 string to rule them all",
"7912 string to rule them all",
"7913 string to rule them all",
"7914 string to rule them all",
"7915 string to rule them all",
"7916 string to rule them all",
"7917 string to rule them all",
"7918 string to rule them all",
"7919 string to rule them all",
"7920 string to rule them all",
"7921 string to rule them all",
"7922 string to rule them all",
"7923 string to rule them all",
"7924 string to rule them all",
"7925 string to rule them all",
"7926 string to rule them all",
"7927 string to rule them all",
"7928 string to rule them all",
"7929 string to rule them all",
"7930 string to rule them all",
"7931 string to rule them all",
"7932 string to rule them all",
"7933 string to rule them all",
"7934 string to rule them all",
"7935 string to rule them all",
"7936 string to rule them all",
"7937 string to rule them all",
"7938 string to rule them all",
"7939 string to rule them all",
"7940 string to rule them all",
"7941 string to rule them all",
"7942 string to rule them all",
"7943 string to rule them all",
"7944 string to rule them all",
"7945 string to rule them all",
"7946 string to rule them all",
"7947 string to rule them all",
"7948 string to rule them all",
"7949 string to rule them all",
"7950 string to rule them all",
"7951 string to rule them all",
"7952 string to rule them all",
"7953 string to rule them all",
"7954 string to rule them all",
"7955 string to rule them all",
"7956 string to rule them all",
"7957 string to rule them all",
"7958 string to rule them all",
"7959 string to rule them all",
"7960 string to rule them all",
"7961 string to rule them all",
"7962 string to rule them all",
"7963 string to rule them all",
"7964 string to rule them all",
"7965 string to rule them all",
"7966 string to rule them all",
"7967 string to rule them all",
"7968 string to rule them all",
"7969 string to rule them all",
"7970 string to rule them all",
"7971 string to rule them all",
"7972 string to rule them all",
"7973 string to rule them all",
"7974 string to rule them all",
"7975 string to rule them all",
"7976 string to rule them all",
"7977 string to rule them all",
"7978 string to rule them all",
"7979 string to rule them all",
"7980 string to rule them all",
"7981 string to rule them all",
"7982 string to rule them all",
"7983 string to rule them all",
"7984 string to rule them all",
"7985 string to rule them all",
"7986 string to rule them all",
"7987 string to rule them all",
"7988 string to rule them all",
"7989 string to rule them all",
"7990 string to rule them all",
"7991 string to rule them all",
"7992 string to rule them all",
"7993 string to rule them all",
"7994 string to rule them all",
"7995 string to rule them all",
"7996 string to rule them all",
"7997 string to rule them all",
"7998 string to rule them all",
"7999 string to rule them all",
"8000 string to rule them all",
"8001 string to rule them all",
"8002 string to rule them all",
"8003 string to rule them all",
"8004 string to rule them all",
"8005 string to rule them all",
"8006 string to rule them all",
"8007 string to rule them all",
"8008 string to rule them all",
"8009 string to rule them all",
"8010 string to rule them all",
"8011 string to rule them all",
"8012 string to rule them all",
"8013 string to rule them all",
"8014 string to rule them all",
"8015 string to rule them all",
"8016 string to rule them all",
"8017 string to rule them all",
"8018 string to rule them all",
"8019 string to rule them all",
"8020 string to rule them all",
"8021 string to rule them all",
"8022 string to rule them all",
"8023 string to rule them all",
"8024 string to rule them all",
"8025 string to rule them all",
"8026 string to rule them all",
"8027 string to rule them all",
"8028 string to rule them all",
"8029 string to rule them all",
"8030 string to rule them all",
"8031 string to rule them all",
"8032 string to rule them all",
"8033 string to rule them all",
"8034 string to rule them all",
"8035 string to rule them all",
"8036 string to rule them all",
"8037 string to rule them all",
"8038 string to rule them all",
"8039 string to rule them all",
"8040 string to rule them all",
"8041 string to rule them all",
"8042 string to rule them all",
"8043 string to rule them all",
"8044 string to rule them all",
"8045 string to rule them all",
"8046 string to rule them all",
"8047 string to rule them all",
"8048 string to rule them all",
"8049 string to rule them all",
"8050 string to rule them all",
"8051 string to rule them all",
"8052 string to rule them all",
"8053 string to rule them all",
"8054 string to rule them all",
"8055 string to rule them all",
"8056 string to rule them all",
"8057 string to rule them all",
"8058 string to rule them all",
"8059 string to rule them all",
"8060 string to rule them all",
"8061 string to rule them all",
"8062 string to rule them all",
"8063 string to rule them all",
"8064 string to rule them all",
"8065 string to rule them all",
"8066 string to rule them all",
"8067 string to rule them all",
"8068 string to rule them all",
"8069 string to rule them all",
"8070 string to rule them all",
"8071 string to rule them all",
"8072 string to rule them all",
"8073 string to rule them all",
"8074 string to rule them all",
"8075 string to rule them all",
"8076 string to rule them all",
"8077 string to rule them all",
"8078 string to rule them all",
"8079 string to rule them all",
"8080 string to rule them all",
"8081 string to rule them all",
"8082 string to rule them all",
"8083 string to rule them all",
"8084 string to rule them all",
"8085 string to rule them all",
"8086 string to rule them all",
"8087 string to rule them all",
"8088 string to rule them all",
"8089 string to rule them all",
"8090 string to rule them all",
"8091 string to rule them all",
"8092 string to rule them all",
"8093 string to rule them all",
"8094 string to rule them all",
"8095 string to rule them all",
"8096 string to rule them all",
"8097 string to rule them all",
"8098 string to rule them all",
"8099 string to rule them all",
"8100 string to rule them all",
"8101 string to rule them all",
"8102 string to rule them all",
"8103 string to rule them all",
"8104 string to rule them all",
"8105 string to rule them all",
"8106 string to rule them all",
"8107 string to rule them all",
"8108 string to rule them all",
"8109 string to rule them all",
"8110 string to rule them all",
"8111 string to rule them all",
"8112 string to rule them all",
"8113 string to rule them all",
"8114 string to rule them all",
"8115 string to rule them all",
"8116 string to rule them all",
"8117 string to rule them all",
"8118 string to rule them all",
"8119 string to rule them all",
"8120 string to rule them all",
"8121 string to rule them all",
"8122 string to rule them all",
"8123 string to rule them all",
"8124 string to rule them all",
"8125 string to rule them all",
"8126 string to rule them all",
"8127 string to rule them all",
"8128 string to rule them all",
"8129 string to rule them all",
"8130 string to rule them all",
"8131 string to rule them all",
"8132 string to rule them all",
"8133 string to rule them all",
"8134 string to rule them all",
"8135 string to rule them all",
"8136 string to rule them all",
"8137 string to rule them all",
"8138 string to rule them all",
"8139 string to rule them all",
"8140 string to rule them all",
"8141 string to rule them all",
"8142 string to rule them all",
"8143 string to rule them all",
"8144 string to rule them all",
"8145 string to rule them all",
"8146 string to rule them all",
"8147 string to rule them all",
"8148 string to rule them all",
"8149 string to rule them all",
"8150 string to rule them all",
"8151 string to rule them all",
"8152 string to rule them all",
"8153 string to rule them all",
"8154 string to rule them all",
"8155 string to rule them all",
"8156 string to rule them all",
"8157 string to rule them all",
"8158 string to rule them all",
"8159 string to rule them all",
"8160 string to rule them all",
"8161 string to rule them all",
"8162 string to rule them all",
"8163 string to rule them all",
"8164 string to rule them all",
"8165 string to rule them all",
"8166 string to rule them all",
"8167 string to rule them all",
"8168 string to rule them all",
"8169 string to rule them all",
"8170 string to rule them all",
"8171 string to rule them all",
"8172 string to rule them all",
"8173 string to rule them all",
"8174 string to rule them all",
"8175 string to rule them all",
"8176 string to rule them all",
"8177 string to rule them all",
"8178 string to rule them all",
"8179 string to rule them all",
"8180 string to rule them all",
"8181 string to rule them all",
"8182 string to rule them all",
"8183 string to rule them all",
"8184 string to rule them all",
"8185 string to rule them all",
"8186 string to rule them all",
"8187 string to rule them all",
"8188 string to rule them all",
"8189 string to rule them all",
"8190 string to rule them all",
"8191 string to rule them all",
"8192 string to rule them all",
"8193 string to rule them all",
"8194 string to rule them all",
"8195 string to rule them all",
"8196 string to rule them all",
"8197 string to rule them all",
"8198 string to rule them all",
"8199 string to rule them all",
"8200 string to rule them all",
"8201 string to rule them all",
"8202 string to rule them all",
"8203 string to rule them all",
"8204 string to rule them all",
"8205 string to rule them all",
"8206 string to rule them all",
"8207 string to rule them all",
"8208 string to rule them all",
"8209 string to rule them all",
"8210 string to rule them all",
"8211 string to rule them all",
"8212 string to rule them all",
"8213 string to rule them all",
"8214 string to rule them all",
"8215 string to rule them all",
"8216 string to rule them all",
"8217 string to rule them all",
"8218 string to rule them all",
"8219 string to rule them all",
"8220 string to rule them all",
"8221 string to rule them all",
"8222 string to rule them all",
"8223 string to rule them all",
"8224 string to rule them all",
"8225 string to rule them all",
"8226 string to rule them all",
"8227 string to rule them all",
"8228 string to rule them all",
"8229 string to rule them all",
"8230 string to rule them all",
"8231 string to rule them all",
"8232 string to rule them all",
"8233 string to rule them all",
"8234 string to rule them all",
"8235 string to rule them all",
"8236 string to rule them all",
"8237 string to rule them all",
"8238 string to rule them all",
"8239 string to rule them all",
"8240 string to rule them all",
"8241 string to rule them all",
"8242 string to rule them all",
"8243 string to rule them all",
"8244 string to rule them all",
"8245 string to rule them all",
"8246 string to rule them all",
"8247 string to rule them all",
"8248 string to rule them all",
"8249 string to rule them all",
"8250 string to rule them all",
"8251 string to rule them all",
"8252 string to rule them all",
"8253 string to rule them all",
"8254 string to rule them all",
"8255 string to rule them all",
"8256 string to rule them all",
"8257 string to rule them all",
"8258 string to rule them all",
"8259 string to rule them all",
"8260 string to rule them all",
"8261 string to rule them all",
"8262 string to rule them all",
"8263 string to rule them all",
"8264 string to rule them all",
"8265 string to rule them all",
"8266 string to rule them all",
"8267 string to rule them all",
"8268 string to rule them all",
"8269 string to rule them all",
"8270 string to rule them all",
"8271 string to rule them all",
"8272 string to rule them all",
"8273 string to rule them all",
"8274 string to rule them all",
"8275 string to rule them all",
"8276 string to rule them all",
"8277 string to rule them all",
"8278 string to rule them all",
"8279 string to rule them all",
"8280 string to rule them all",
"8281 string to rule them all",
"8282 string to rule them all",
"8283 string to rule them all",
"8284 string to rule them all",
"8285 string to rule them all",
"8286 string to rule them all",
"8287 string to rule them all",
"8288 string to rule them all",
"8289 string to rule them all",
"8290 string to rule them all",
"8291 string to rule them all",
"8292 string to rule them all",
"8293 string to rule them all",
"8294 string to rule them all",
"8295 string to rule them all",
"8296 string to rule them all",
"8297 string to rule them all",
"8298 string to rule them all",
"8299 string to rule them all",
"8300 string to rule them all",
"8301 string to rule them all",
"8302 string to rule them all",
"8303 string to rule them all",
"8304 string to rule them all",
"8305 string to rule them all",
"8306 string to rule them all",
"8307 string to rule them all",
"8308 string to rule them all",
"8309 string to rule them all",
"8310 string to rule them all",
"8311 string to rule them all",
"8312 string to rule them all",
"8313 string to rule them all",
"8314 string to rule them all",
"8315 string to rule them all",
"8316 string to rule them all",
"8317 string to rule them all",
"8318 string to rule them all",
"8319 string to rule them all",
"8320 string to rule them all",
"8321 string to rule them all",
"8322 string to rule them all",
"8323 string to rule them all",
"8324 string to rule them all",
"8325 string to rule them all",
"8326 string to rule them all",
"8327 string to rule them all",
"8328 string to rule them all",
"8329 string to rule them all",
"8330 string to rule them all",
"8331 string to rule them all",
"8332 string to rule them all",
"8333 string to rule them all",
"8334 string to rule them all",
"8335 string to rule them all",
"8336 string to rule them all",
"8337 string to rule them all",
"8338 string to rule them all",
"8339 string to rule them all",
"8340 string to rule them all",
"8341 string to rule them all",
"8342 string to rule them all",
"8343 string to rule them all",
"8344 string to rule them all",
"8345 string to rule them all",
"8346 string to rule them all",
"8347 string to rule them all",
"8348 string to rule them all",
"8349 string to rule them all",
"8350 string to rule them all",
"8351 string to rule them all",
"8352 string to rule them all",
"8353 string to rule them all",
"8354 string to rule them all",
"8355 string to rule them all",
"8356 string to rule them all",
"8357 string to rule them all",
"8358 string to rule them all",
"8359 string to rule them all",
"8360 string to rule them all",
"8361 string to rule them all",
"8362 string to rule them all",
"8363 string to rule them all",
"8364 string to rule them all",
"8365 string to rule them all",
"8366 string to rule them all",
"8367 string to rule them all",
"8368 string to rule them all",
"8369 string to rule them all",
"8370 string to rule them all",
"8371 string to rule them all",
"8372 string to rule them all",
"8373 string to rule them all",
"8374 string to rule them all",
"8375 string to rule them all",
"8376 string to rule them all",
"8377 string to rule them all",
"8378 string to rule them all",
"8379 string to rule them all",
"8380 string to rule them all",
"8381 string to rule them all",
"8382 string to rule them all",
"8383 string to rule them all",
"8384 string to rule them all",
"8385 string to rule them all",
"8386 string to rule them all",
"8387 string to rule them all",
"8388 string to rule them all",
"8389 string to rule them all",
"8390 string to rule them all",
"8391 string to rule them all",
"8392 string to rule them all",
"8393 string to rule them all",
"8394 string to rule them all",
"8395 string to rule them all",
"8396 string to rule them all",
"8397 string to rule them all",
"8398 string to rule them all",
"8399 string to rule them all",
"8400 string to rule them all",
"8401 string to rule them all",
"8402 string to rule them all",
"8403 string to rule them all",
"8404 string to rule them all",
"8405 string to rule them all",
"8406 string to rule them all",
"8407 string to rule them all",
"8408 string to rule them all",
"8409 string to rule them all",
"8410 string to rule them all",
"8411 string to rule them all",
"8412 string to rule them all",
"8413 string to rule them all",
"8414 string to rule them all",
"8415 string to rule them all",
"8416 string to rule them all",
"8417 string to rule them all",
"8418 string to rule them all",
"8419 string to rule them all",
"8420 string to rule them all",
"8421 string to rule them all",
"8422 string to rule them all",
"8423 string to rule them all",
"8424 string to rule them all",
"8425 string to rule them all",
"8426 string to rule them all",
"8427 string to rule them all",
"8428 string to rule them all",
"8429 string to rule them all",
"8430 string to rule them all",
"8431 string to rule them all",
"8432 string to rule them all",
"8433 string to rule them all",
"8434 string to rule them all",
"8435 string to rule them all",
"8436 string to rule them all",
"8437 string to rule them all",
"8438 string to rule them all",
"8439 string to rule them all",
"8440 string to rule them all",
"8441 string to rule them all",
"8442 string to rule them all",
"8443 string to rule them all",
"8444 string to rule them all",
"8445 string to rule them all",
"8446 string to rule them all",
"8447 string to rule them all",
"8448 string to rule them all",
"8449 string to rule them all",
"8450 string to rule them all",
"8451 string to rule them all",
"8452 string to rule them all",
"8453 string to rule them all",
"8454 string to rule them all",
"8455 string to rule them all",
"8456 string to rule them all",
"8457 string to rule them all",
"8458 string to rule them all",
"8459 string to rule them all",
"8460 string to rule them all",
"8461 string to rule them all",
"8462 string to rule them all",
"8463 string to rule them all",
"8464 string to rule them all",
"8465 string to rule them all",
"8466 string to rule them all",
"8467 string to rule them all",
"8468 string to rule them all",
"8469 string to rule them all",
"8470 string to rule them all",
"8471 string to rule them all",
"8472 string to rule them all",
"8473 string to rule them all",
"8474 string to rule them all",
"8475 string to rule them all",
"8476 string to rule them all",
"8477 string to rule them all",
"8478 string to rule them all",
"8479 string to rule them all",
"8480 string to rule them all",
"8481 string to rule them all",
"8482 string to rule them all",
"8483 string to rule them all",
"8484 string to rule them all",
"8485 string to rule them all",
"8486 string to rule them all",
"8487 string to rule them all",
"8488 string to rule them all",
"8489 string to rule them all",
"8490 string to rule them all",
"8491 string to rule them all",
"8492 string to rule them all",
"8493 string to rule them all",
"8494 string to rule them all",
"8495 string to rule them all",
"8496 string to rule them all",
"8497 string to rule them all",
"8498 string to rule them all",
"8499 string to rule them all",
"8500 string to rule them all",
"8501 string to rule them all",
"8502 string to rule them all",
"8503 string to rule them all",
"8504 string to rule them all",
"8505 string to rule them all",
"8506 string to rule them all",
"8507 string to rule them all",
"8508 string to rule them all",
"8509 string to rule them all",
"8510 string to rule them all",
"8511 string to rule them all",
"8512 string to rule them all",
"8513 string to rule them all",
"8514 string to rule them all",
"8515 string to rule them all",
"8516 string to rule them all",
"8517 string to rule them all",
"8518 string to rule them all",
"8519 string to rule them all",
"8520 string to rule them all",
"8521 string to rule them all",
"8522 string to rule them all",
"8523 string to rule them all",
"8524 string to rule them all",
"8525 string to rule them all",
"8526 string to rule them all",
"8527 string to rule them all",
"8528 string to rule them all",
"8529 string to rule them all",
"8530 string to rule them all",
"8531 string to rule them all",
"8532 string to rule them all",
"8533 string to rule them all",
"8534 string to rule them all",
"8535 string to rule them all",
"8536 string to rule them all",
"8537 string to rule them all",
"8538 string to rule them all",
"8539 string to rule them all",
"8540 string to rule them all",
"8541 string to rule them all",
"8542 string to rule them all",
"8543 string to rule them all",
"8544 string to rule them all",
"8545 string to rule them all",
"8546 string to rule them all",
"8547 string to rule them all",
"8548 string to rule them all",
"8549 string to rule them all",
"8550 string to rule them all",
"8551 string to rule them all",
"8552 string to rule them all",
"8553 string to rule them all",
"8554 string to rule them all",
"8555 string to rule them all",
"8556 string to rule them all",
"8557 string to rule them all",
"8558 string to rule them all",
"8559 string to rule them all",
"8560 string to rule them all",
"8561 string to rule them all",
"8562 string to rule them all",
"8563 string to rule them all",
"8564 string to rule them all",
"8565 string to rule them all",
"8566 string to rule them all",
"8567 string to rule them all",
"8568 string to rule them all",
"8569 string to rule them all",
"8570 string to rule them all",
"8571 string to rule them all",
"8572 string to rule them all",
"8573 string to rule them all",
"8574 string to rule them all",
"8575 string to rule them all",
"8576 string to rule them all",
"8577 string to rule them all",
"8578 string to rule them all",
"8579 string to rule them all",
"8580 string to rule them all",
"8581 string to rule them all",
"8582 string to rule them all",
"8583 string to rule them all",
"8584 string to rule them all",
"8585 string to rule them all",
"8586 string to rule them all",
"8587 string to rule them all",
"8588 string to rule them all",
"8589 string to rule them all",
"8590 string to rule them all",
"8591 string to rule them all",
"8592 string to rule them all",
"8593 string to rule them all",
"8594 string to rule them all",
"8595 string to rule them all",
"8596 string to rule them all",
"8597 string to rule them all",
"8598 string to rule them all",
"8599 string to rule them all",
"8600 string to rule them all",
"8601 string to rule them all",
"8602 string to rule them all",
"8603 string to rule them all",
"8604 string to rule them all",
"8605 string to rule them all",
"8606 string to rule them all",
"8607 string to rule them all",
"8608 string to rule them all",
"8609 string to rule them all",
"8610 string to rule them all",
"8611 string to rule them all",
"8612 string to rule them all",
"8613 string to rule them all",
"8614 string to rule them all",
"8615 string to rule them all",
"8616 string to rule them all",
"8617 string to rule them all",
"8618 string to rule them all",
"8619 string to rule them all",
"8620 string to rule them all",
"8621 string to rule them all",
"8622 string to rule them all",
"8623 string to rule them all",
"8624 string to rule them all",
"8625 string to rule them all",
"8626 string to rule them all",
"8627 string to rule them all",
"8628 string to rule them all",
"8629 string to rule them all",
"8630 string to rule them all",
"8631 string to rule them all",
"8632 string to rule them all",
"8633 string to rule them all",
"8634 string to rule them all",
"8635 string to rule them all",
"8636 string to rule them all",
"8637 string to rule them all",
"8638 string to rule them all",
"8639 string to rule them all",
"8640 string to rule them all",
"8641 string to rule them all",
"8642 string to rule them all",
"8643 string to rule them all",
"8644 string to rule them all",
"8645 string to rule them all",
"8646 string to rule them all",
"8647 string to rule them all",
"8648 string to rule them all",
"8649 string to rule them all",
"8650 string to rule them all",
"8651 string to rule them all",
"8652 string to rule them all",
"8653 string to rule them all",
"8654 string to rule them all",
"8655 string to rule them all",
"8656 string to rule them all",
"8657 string to rule them all",
"8658 string to rule them all",
"8659 string to rule them all",
"8660 string to rule them all",
"8661 string to rule them all",
"8662 string to rule them all",
"8663 string to rule them all",
"8664 string to rule them all",
"8665 string to rule them all",
"8666 string to rule them all",
"8667 string to rule them all",
"8668 string to rule them all",
"8669 string to rule them all",
"8670 string to rule them all",
"8671 string to rule them all",
"8672 string to rule them all",
"8673 string to rule them all",
"8674 string to rule them all",
"8675 string to rule them all",
"8676 string to rule them all",
"8677 string to rule them all",
"8678 string to rule them all",
"8679 string to rule them all",
"8680 string to rule them all",
"8681 string to rule them all",
"8682 string to rule them all",
"8683 string to rule them all",
"8684 string to rule them all",
"8685 string to rule them all",
"8686 string to rule them all",
"8687 string to rule them all",
"8688 string to rule them all",
"8689 string to rule them all",
"8690 string to rule them all",
"8691 string to rule them all",
"8692 string to rule them all",
"8693 string to rule them all",
"8694 string to rule them all",
"8695 string to rule them all",
"8696 string to rule them all",
"8697 string to rule them all",
"8698 string to rule them all",
"8699 string to rule them all",
"8700 string to rule them all",
"8701 string to rule them all",
"8702 string to rule them all",
"8703 string to rule them all",
"8704 string to rule them all",
"8705 string to rule them all",
"8706 string to rule them all",
"8707 string to rule them all",
"8708 string to rule them all",
"8709 string to rule them all",
"8710 string to rule them all",
"8711 string to rule them all",
"8712 string to rule them all",
"8713 string to rule them all",
"8714 string to rule them all",
"8715 string to rule them all",
"8716 string to rule them all",
"8717 string to rule them all",
"8718 string to rule them all",
"8719 string to rule them all",
"8720 string to rule them all",
"8721 string to rule them all",
"8722 string to rule them all",
"8723 string to rule them all",
"8724 string to rule them all",
"8725 string to rule them all",
"8726 string to rule them all",
"8727 string to rule them all",
"8728 string to rule them all",
"8729 string to rule them all",
"8730 string to rule them all",
"8731 string to rule them all",
"8732 string to rule them all",
"8733 string to rule them all",
"8734 string to rule them all",
"8735 string to rule them all",
"8736 string to rule them all",
"8737 string to rule them all",
"8738 string to rule them all",
"8739 string to rule them all",
"8740 string to rule them all",
"8741 string to rule them all",
"8742 string to rule them all",
"8743 string to rule them all",
"8744 string to rule them all",
"8745 string to rule them all",
"8746 string to rule them all",
"8747 string to rule them all",
"8748 string to rule them all",
"8749 string to rule them all",
"8750 string to rule them all",
"8751 string to rule them all",
"8752 string to rule them all",
"8753 string to rule them all",
"8754 string to rule them all",
"8755 string to rule them all",
"8756 string to rule them all",
"8757 string to rule them all",
"8758 string to rule them all",
"8759 string to rule them all",
"8760 string to rule them all",
"8761 string to rule them all",
"8762 string to rule them all",
"8763 string to rule them all",
"8764 string to rule them all",
"8765 string to rule them all",
"8766 string to rule them all",
"8767 string to rule them all",
"8768 string to rule them all",
"8769 string to rule them all",
"8770 string to rule them all",
"8771 string to rule them all",
"8772 string to rule them all",
"8773 string to rule them all",
"8774 string to rule them all",
"8775 string to rule them all",
"8776 string to rule them all",
"8777 string to rule them all",
"8778 string to rule them all",
"8779 string to rule them all",
"8780 string to rule them all",
"8781 string to rule them all",
"8782 string to rule them all",
"8783 string to rule them all",
"8784 string to rule them all",
"8785 string to rule them all",
"8786 string to rule them all",
"8787 string to rule them all",
"8788 string to rule them all",
"8789 string to rule them all",
"8790 string to rule them all",
"8791 string to rule them all",
"8792 string to rule them all",
"8793 string to rule them all",
"8794 string to rule them all",
"8795 string to rule them all",
"8796 string to rule them all",
"8797 string to rule them all",
"8798 string to rule them all",
"8799 string to rule them all",
"8800 string to rule them all",
"8801 string to rule them all",
"8802 string to rule them all",
"8803 string to rule them all",
"8804 string to rule them all",
"8805 string to rule them all",
"8806 string to rule them all",
"8807 string to rule them all",
"8808 string to rule them all",
"8809 string to rule them all",
"8810 string to rule them all",
"8811 string to rule them all",
"8812 string to rule them all",
"8813 string to rule them all",
"8814 string to rule them all",
"8815 string to rule them all",
"8816 string to rule them all",
"8817 string to rule them all",
"8818 string to rule them all",
"8819 string to rule them all",
"8820 string to rule them all",
"8821 string to rule them all",
"8822 string to rule them all",
"8823 string to rule them all",
"8824 string to rule them all",
"8825 string to rule them all",
"8826 string to rule them all",
"8827 string to rule them all",
"8828 string to rule them all",
"8829 string to rule them all",
"8830 string to rule them all",
"8831 string to rule them all",
"8832 string to rule them all",
"8833 string to rule them all",
"8834 string to rule them all",
"8835 string to rule them all",
"8836 string to rule them all",
"8837 string to rule them all",
"8838 string to rule them all",
"8839 string to rule them all",
"8840 string to rule them all",
"8841 string to rule them all",
"8842 string to rule them all",
"8843 string to rule them all",
"8844 string to rule them all",
"8845 string to rule them all",
"8846 string to rule them all",
"8847 string to rule them all",
"8848 string to rule them all",
"8849 string to rule them all",
"8850 string to rule them all",
"8851 string to rule them all",
"8852 string to rule them all",
"8853 string to rule them all",
"8854 string to rule them all",
"8855 string to rule them all",
"8856 string to rule them all",
"8857 string to rule them all",
"8858 string to rule them all",
"8859 string to rule them all",
"8860 string to rule them all",
"8861 string to rule them all",
"8862 string to rule them all",
"8863 string to rule them all",
"8864 string to rule them all",
"8865 string to rule them all",
"8866 string to rule them all",
"8867 string to rule them all",
"8868 string to rule them all",
"8869 string to rule them all",
"8870 string to rule them all",
"8871 string to rule them all",
"8872 string to rule them all",
"8873 string to rule them all",
"8874 string to rule them all",
"8875 string to rule them all",
"8876 string to rule them all",
"8877 string to rule them all",
"8878 string to rule them all",
"8879 string to rule them all",
"8880 string to rule them all",
"8881 string to rule them all",
"8882 string to rule them all",
"8883 string to rule them all",
"8884 string to rule them all",
"8885 string to rule them all",
"8886 string to rule them all",
"8887 string to rule them all",
"8888 string to rule them all",
"8889 string to rule them all",
"8890 string to rule them all",
"8891 string to rule them all",
"8892 string to rule them all",
"8893 string to rule them all",
"8894 string to rule them all",
"8895 string to rule them all",
"8896 string to rule them all",
"8897 string to rule them all",
"8898 string to rule them all",
"8899 string to rule them all",
"8900 string to rule them all",
"8901 string to rule them all",
"8902 string to rule them all",
"8903 string to rule them all",
"8904 string to rule them all",
"8905 string to rule them all",
"8906 string to rule them all",
"8907 string to rule them all",
"8908 string to rule them all",
"8909 string to rule them all",
"8910 string to rule them all",
"8911 string to rule them all",
"8912 string to rule them all",
"8913 string to rule them all",
"8914 string to rule them all",
"8915 string to rule them all",
"8916 string to rule them all",
"8917 string to rule them all",
"8918 string to rule them all",
"8919 string to rule them all",
"8920 string to rule them all",
"8921 string to rule them all",
"8922 string to rule them all",
"8923 string to rule them all",
"8924 string to rule them all",
"8925 string to rule them all",
"8926 string to rule them all",
"8927 string to rule them all",
"8928 string to rule them all",
"8929 string to rule them all",
"8930 string to rule them all",
"8931 string to rule them all",
"8932 string to rule them all",
"8933 string to rule them all",
"8934 string to rule them all",
"8935 string to rule them all",
"8936 string to rule them all",
"8937 string to rule them all",
"8938 string to rule them all",
"8939 string to rule them all",
"8940 string to rule them all",
"8941 string to rule them all",
"8942 string to rule them all",
"8943 string to rule them all",
"8944 string to rule them all",
"8945 string to rule them all",
"8946 string to rule them all",
"8947 string to rule them all",
"8948 string to rule them all",
"8949 string to rule them all",
"8950 string to rule them all",
"8951 string to rule them all",
"8952 string to rule them all",
"8953 string to rule them all",
"8954 string to rule them all",
"8955 string to rule them all",
"8956 string to rule them all",
"8957 string to rule them all",
"8958 string to rule them all",
"8959 string to rule them all",
"8960 string to rule them all",
"8961 string to rule them all",
"8962 string to rule them all",
"8963 string to rule them all",
"8964 string to rule them all",
"8965 string to rule them all",
"8966 string to rule them all",
"8967 string to rule them all",
"8968 string to rule them all",
"8969 string to rule them all",
"8970 string to rule them all",
"8971 string to rule them all",
"8972 string to rule them all",
"8973 string to rule them all",
"8974 string to rule them all",
"8975 string to rule them all",
"8976 string to rule them all",
"8977 string to rule them all",
"8978 string to rule them all",
"8979 string to rule them all",
"8980 string to rule them all",
"8981 string to rule them all",
"8982 string to rule them all",
"8983 string to rule them all",
"8984 string to rule them all",
"8985 string to rule them all",
"8986 string to rule them all",
"8987 string to rule them all",
"8988 string to rule them all",
"8989 string to rule them all",
"8990 string to rule them all",
"8991 string to rule them all",
"8992 string to rule them all",
"8993 string to rule them all",
"8994 string to rule them all",
"8995 string to rule them all",
"8996 string to rule them all",
"8997 string to rule them all",
"8998 string to rule them all",
"8999 string to rule them all",
"9000 string to rule them all",
"9001 string to rule them all",
"9002 string to rule them all",
"9003 string to rule them all",
"9004 string to rule them all",
"9005 string to rule them all",
"9006 string to rule them all",
"9007 string to rule them all",
"9008 string to rule them all",
"9009 string to rule them all",
"9010 string to rule them all",
"9011 string to rule them all",
"9012 string to rule them all",
"9013 string to rule them all",
"9014 string to rule them all",
"9015 string to rule them all",
"9016 string to rule them all",
"9017 string to rule them all",
"9018 string to rule them all",
"9019 string to rule them all",
"9020 string to rule them all",
"9021 string to rule them all",
"9022 string to rule them all",
"9023 string to rule them all",
"9024 string to rule them all",
"9025 string to rule them all",
"9026 string to rule them all",
"9027 string to rule them all",
"9028 string to rule them all",
"9029 string to rule them all",
"9030 string to rule them all",
"9031 string to rule them all",
"9032 string to rule them all",
"9033 string to rule them all",
"9034 string to rule them all",
"9035 string to rule them all",
"9036 string to rule them all",
"9037 string to rule them all",
"9038 string to rule them all",
"9039 string to rule them all",
"9040 string to rule them all",
"9041 string to rule them all",
"9042 string to rule them all",
"9043 string to rule them all",
"9044 string to rule them all",
"9045 string to rule them all",
"9046 string to rule them all",
"9047 string to rule them all",
"9048 string to rule them all",
"9049 string to rule them all",
"9050 string to rule them all",
"9051 string to rule them all",
"9052 string to rule them all",
"9053 string to rule them all",
"9054 string to rule them all",
"9055 string to rule them all",
"9056 string to rule them all",
"9057 string to rule them all",
"9058 string to rule them all",
"9059 string to rule them all",
"9060 string to rule them all",
"9061 string to rule them all",
"9062 string to rule them all",
"9063 string to rule them all",
"9064 string to rule them all",
"9065 string to rule them all",
"9066 string to rule them all",
"9067 string to rule them all",
"9068 string to rule them all",
"9069 string to rule them all",
"9070 string to rule them all",
"9071 string to rule them all",
"9072 string to rule them all",
"9073 string to rule them all",
"9074 string to rule them all",
"9075 string to rule them all",
"9076 string to rule them all",
"9077 string to rule them all",
"9078 string to rule them all",
"9079 string to rule them all",
"9080 string to rule them all",
"9081 string to rule them all",
"9082 string to rule them all",
"9083 string to rule them all",
"9084 string to rule them all",
"9085 string to rule them all",
"9086 string to rule them all",
"9087 string to rule them all",
"9088 string to rule them all",
"9089 string to rule them all",
"9090 string to rule them all",
"9091 string to rule them all",
"9092 string to rule them all",
"9093 string to rule them all",
"9094 string to rule them all",
"9095 string to rule them all",
"9096 string to rule them all",
"9097 string to rule them all",
"9098 string to rule them all",
"9099 string to rule them all",
"9100 string to rule them all",
"9101 string to rule them all",
"9102 string to rule them all",
"9103 string to rule them all",
"9104 string to rule them all",
"9105 string to rule them all",
"9106 string to rule them all",
"9107 string to rule them all",
"9108 string to rule them all",
"9109 string to rule them all",
"9110 string to rule them all",
"9111 string to rule them all",
"9112 string to rule them all",
"9113 string to rule them all",
"9114 string to rule them all",
"9115 string to rule them all",
"9116 string to rule them all",
"9117 string to rule them all",
"9118 string to rule them all",
"9119 string to rule them all",
"9120 string to rule them all",
"9121 string to rule them all",
"9122 string to rule them all",
"9123 string to rule them all",
"9124 string to rule them all",
"9125 string to rule them all",
"9126 string to rule them all",
"9127 string to rule them all",
"9128 string to rule them all",
"9129 string to rule them all",
"9130 string to rule them all",
"9131 string to rule them all",
"9132 string to rule them all",
"9133 string to rule them all",
"9134 string to rule them all",
"9135 string to rule them all",
"9136 string to rule them all",
"9137 string to rule them all",
"9138 string to rule them all",
"9139 string to rule them all",
"9140 string to rule them all",
"9141 string to rule them all",
"9142 string to rule them all",
"9143 string to rule them all",
"9144 string to rule them all",
"9145 string to rule them all",
"9146 string to rule them all",
"9147 string to rule them all",
"9148 string to rule them all",
"9149 string to rule them all",
"9150 string to rule them all",
"9151 string to rule them all",
"9152 string to rule them all",
"9153 string to rule them all",
"9154 string to rule them all",
"9155 string to rule them all",
"9156 string to rule them all",
"9157 string to rule them all",
"9158 string to rule them all",
"9159 string to rule them all",
"9160 string to rule them all",
"9161 string to rule them all",
"9162 string to rule them all",
"9163 string to rule them all",
"9164 string to rule them all",
"9165 string to rule them all",
"9166 string to rule them all",
"9167 string to rule them all",
"9168 string to rule them all",
"9169 string to rule them all",
"9170 string to rule them all",
"9171 string to rule them all",
"9172 string to rule them all",
"9173 string to rule them all",
"9174 string to rule them all",
"9175 string to rule them all",
"9176 string to rule them all",
"9177 string to rule them all",
"9178 string to rule them all",
"9179 string to rule them all",
"9180 string to rule them all",
"9181 string to rule them all",
"9182 string to rule them all",
"9183 string to rule them all",
"9184 string to rule them all",
"9185 string to rule them all",
"9186 string to rule them all",
"9187 string to rule them all",
"9188 string to rule them all",
"9189 string to rule them all",
"9190 string to rule them all",
"9191 string to rule them all",
"9192 string to rule them all",
"9193 string to rule them all",
"9194 string to rule them all",
"9195 string to rule them all",
"9196 string to rule them all",
"9197 string to rule them all",
"9198 string to rule them all",
"9199 string to rule them all",
"9200 string to rule them all",
"9201 string to rule them all",
"9202 string to rule them all",
"9203 string to rule them all",
"9204 string to rule them all",
"9205 string to rule them all",
"9206 string to rule them all",
"9207 string to rule them all",
"9208 string to rule them all",
"9209 string to rule them all",
"9210 string to rule them all",
"9211 string to rule them all",
"9212 string to rule them all",
"9213 string to rule them all",
"9214 string to rule them all",
"9215 string to rule them all",
"9216 string to rule them all",
"9217 string to rule them all",
"9218 string to rule them all",
"9219 string to rule them all",
"9220 string to rule them all",
"9221 string to rule them all",
"9222 string to rule them all",
"9223 string to rule them all",
"9224 string to rule them all",
"9225 string to rule them all",
"9226 string to rule them all",
"9227 string to rule them all",
"9228 string to rule them all",
"9229 string to rule them all",
"9230 string to rule them all",
"9231 string to rule them all",
"9232 string to rule them all",
"9233 string to rule them all",
"9234 string to rule them all",
"9235 string to rule them all",
"9236 string to rule them all",
"9237 string to rule them all",
"9238 string to rule them all",
"9239 string to rule them all",
"9240 string to rule them all",
"9241 string to rule them all",
"9242 string to rule them all",
"9243 string to rule them all",
"9244 string to rule them all",
"9245 string to rule them all",
"9246 string to rule them all",
"9247 string to rule them all",
"9248 string to rule them all",
"9249 string to rule them all",
"9250 string to rule them all",
"9251 string to rule them all",
"9252 string to rule them all",
"9253 string to rule them all",
"9254 string to rule them all",
"9255 string to rule them all",
"9256 string to rule them all",
"9257 string to rule them all",
"9258 string to rule them all",
"9259 string to rule them all",
"9260 string to rule them all",
"9261 string to rule them all",
"9262 string to rule them all",
"9263 string to rule them all",
"9264 string to rule them all",
"9265 string to rule them all",
"9266 string to rule them all",
"9267 string to rule them all",
"9268 string to rule them all",
"9269 string to rule them all",
"9270 string to rule them all",
"9271 string to rule them all",
"9272 string to rule them all",
"9273 string to rule them all",
"9274 string to rule them all",
"9275 string to rule them all",
"9276 string to rule them all",
"9277 string to rule them all",
"9278 string to rule them all",
"9279 string to rule them all",
"9280 string to rule them all",
"9281 string to rule them all",
"9282 string to rule them all",
"9283 string to rule them all",
"9284 string to rule them all",
"9285 string to rule them all",
"9286 string to rule them all",
"9287 string to rule them all",
"9288 string to rule them all",
"9289 string to rule them all",
"9290 string to rule them all",
"9291 string to rule them all",
"9292 string to rule them all",
"9293 string to rule them all",
"9294 string to rule them all",
"9295 string to rule them all",
"9296 string to rule them all",
"9297 string to rule them all",
"9298 string to rule them all",
"9299 string to rule them all",
"9300 string to rule them all",
"9301 string to rule them all",
"9302 string to rule them all",
"9303 string to rule them all",
"9304 string to rule them all",
"9305 string to rule them all",
"9306 string to rule them all",
"9307 string to rule them all",
"9308 string to rule them all",
"9309 string to rule them all",
"9310 string to rule them all",
"9311 string to rule them all",
"9312 string to rule them all",
"9313 string to rule them all",
"9314 string to rule them all",
"9315 string to rule them all",
"9316 string to rule them all",
"9317 string to rule them all",
"9318 string to rule them all",
"9319 string to rule them all",
"9320 string to rule them all",
"9321 string to rule them all",
"9322 string to rule them all",
"9323 string to rule them all",
"9324 string to rule them all",
"9325 string to rule them all",
"9326 string to rule them all",
"9327 string to rule them all",
"9328 string to rule them all",
"9329 string to rule them all",
"9330 string to rule them all",
"9331 string to rule them all",
"9332 string to rule them all",
"9333 string to rule them all",
"9334 string to rule them all",
"9335 string to rule them all",
"9336 string to rule them all",
"9337 string to rule them all",
"9338 string to rule them all",
"9339 string to rule them all",
"9340 string to rule them all",
"9341 string to rule them all",
"9342 string to rule them all",
"9343 string to rule them all",
"9344 string to rule them all",
"9345 string to rule them all",
"9346 string to rule them all",
"9347 string to rule them all",
"9348 string to rule them all",
"9349 string to rule them all",
"9350 string to rule them all",
"9351 string to rule them all",
"9352 string to rule them all",
"9353 string to rule them all",
"9354 string to rule them all",
"9355 string to rule them all",
"9356 string to rule them all",
"9357 string to rule them all",
"9358 string to rule them all",
"9359 string to rule them all",
"9360 string to rule them all",
"9361 string to rule them all",
"9362 string to rule them all",
"9363 string to rule them all",
"9364 string to rule them all",
"9365 string to rule them all",
"9366 string to rule them all",
"9367 string to rule them all",
"9368 string to rule them all",
"9369 string to rule them all",
"9370 string to rule them all",
"9371 string to rule them all",
"9372 string to rule them all",
"9373 string to rule them all",
"9374 string to rule them all",
"9375 string to rule them all",
"9376 string to rule them all",
"9377 string to rule them all",
"9378 string to rule them all",
"9379 string to rule them all",
"9380 string to rule them all",
"9381 string to rule them all",
"9382 string to rule them all",
"9383 string to rule them all",
"9384 string to rule them all",
"9385 string to rule them all",
"9386 string to rule them all",
"9387 string to rule them all",
"9388 string to rule them all",
"9389 string to rule them all",
"9390 string to rule them all",
"9391 string to rule them all",
"9392 string to rule them all",
"9393 string to rule them all",
"9394 string to rule them all",
"9395 string to rule them all",
"9396 string to rule them all",
"9397 string to rule them all",
"9398 string to rule them all",
"9399 string to rule them all",
"9400 string to rule them all",
"9401 string to rule them all",
"9402 string to rule them all",
"9403 string to rule them all",
"9404 string to rule them all",
"9405 string to rule them all",
"9406 string to rule them all",
"9407 string to rule them all",
"9408 string to rule them all",
"9409 string to rule them all",
"9410 string to rule them all",
"9411 string to rule them all",
"9412 string to rule them all",
"9413 string to rule them all",
"9414 string to rule them all",
"9415 string to rule them all",
"9416 string to rule them all",
"9417 string to rule them all",
"9418 string to rule them all",
"9419 string to rule them all",
"9420 string to rule them all",
"9421 string to rule them all",
"9422 string to rule them all",
"9423 string to rule them all",
"9424 string to rule them all",
"9425 string to rule them all",
"9426 string to rule them all",
"9427 string to rule them all",
"9428 string to rule them all",
"9429 string to rule them all",
"9430 string to rule them all",
"9431 string to rule them all",
"9432 string to rule them all",
"9433 string to rule them all",
"9434 string to rule them all",
"9435 string to rule them all",
"9436 string to rule them all",
"9437 string to rule them all",
"9438 string to rule them all",
"9439 string to rule them all",
"9440 string to rule them all",
"9441 string to rule them all",
"9442 string to rule them all",
"9443 string to rule them all",
"9444 string to rule them all",
"9445 string to rule them all",
"9446 string to rule them all",
"9447 string to rule them all",
"9448 string to rule them all",
"9449 string to rule them all",
"9450 string to rule them all",
"9451 string to rule them all",
"9452 string to rule them all",
"9453 string to rule them all",
"9454 string to rule them all",
"9455 string to rule them all",
"9456 string to rule them all",
"9457 string to rule them all",
"9458 string to rule them all",
"9459 string to rule them all",
"9460 string to rule them all",
"9461 string to rule them all",
"9462 string to rule them all",
"9463 string to rule them all",
"9464 string to rule them all",
"9465 string to rule them all",
"9466 string to rule them all",
"9467 string to rule them all",
"9468 string to rule them all",
"9469 string to rule them all",
"9470 string to rule them all",
"9471 string to rule them all",
"9472 string to rule them all",
"9473 string to rule them all",
"9474 string to rule them all",
"9475 string to rule them all",
"9476 string to rule them all",
"9477 string to rule them all",
"9478 string to rule them all",
"9479 string to rule them all",
"9480 string to rule them all",
"9481 string to rule them all",
"9482 string to rule them all",
"9483 string to rule them all",
"9484 string to rule them all",
"9485 string to rule them all",
"9486 string to rule them all",
"9487 string to rule them all",
"9488 string to rule them all",
"9489 string to rule them all",
"9490 string to rule them all",
"9491 string to rule them all",
"9492 string to rule them all",
"9493 string to rule them all",
"9494 string to rule them all",
"9495 string to rule them all",
"9496 string to rule them all",
"9497 string to rule them all",
"9498 string to rule them all",
"9499 string to rule them all",
"9500 string to rule them all",
"9501 string to rule them all",
"9502 string to rule them all",
"9503 string to rule them all",
"9504 string to rule them all",
"9505 string to rule them all",
"9506 string to rule them all",
"9507 string to rule them all",
"9508 string to rule them all",
"9509 string to rule them all",
"9510 string to rule them all",
"9511 string to rule them all",
"9512 string to rule them all",
"9513 string to rule them all",
"9514 string to rule them all",
"9515 string to rule them all",
"9516 string to rule them all",
"9517 string to rule them all",
"9518 string to rule them all",
"9519 string to rule them all",
"9520 string to rule them all",
"9521 string to rule them all",
"9522 string to rule them all",
"9523 string to rule them all",
"9524 string to rule them all",
"9525 string to rule them all",
"9526 string to rule them all",
"9527 string to rule them all",
"9528 string to rule them all",
"9529 string to rule them all",
"9530 string to rule them all",
"9531 string to rule them all",
"9532 string to rule them all",
"9533 string to rule them all",
"9534 string to rule them all",
"9535 string to rule them all",
"9536 string to rule them all",
"9537 string to rule them all",
"9538 string to rule them all",
"9539 string to rule them all",
"9540 string to rule them all",
"9541 string to rule them all",
"9542 string to rule them all",
"9543 string to rule them all",
"9544 string to rule them all",
"9545 string to rule them all",
"9546 string to rule them all",
"9547 string to rule them all",
"9548 string to rule them all",
"9549 string to rule them all",
"9550 string to rule them all",
"9551 string to rule them all",
"9552 string to rule them all",
"9553 string to rule them all",
"9554 string to rule them all",
"9555 string to rule them all",
"9556 string to rule them all",
"9557 string to rule them all",
"9558 string to rule them all",
"9559 string to rule them all",
"9560 string to rule them all",
"9561 string to rule them all",
"9562 string to rule them all",
"9563 string to rule them all",
"9564 string to rule them all",
"9565 string to rule them all",
"9566 string to rule them all",
"9567 string to rule them all",
"9568 string to rule them all",
"9569 string to rule them all",
"9570 string to rule them all",
"9571 string to rule them all",
"9572 string to rule them all",
"9573 string to rule them all",
"9574 string to rule them all",
"9575 string to rule them all",
"9576 string to rule them all",
"9577 string to rule them all",
"9578 string to rule them all",
"9579 string to rule them all",
"9580 string to rule them all",
"9581 string to rule them all",
"9582 string to rule them all",
"9583 string to rule them all",
"9584 string to rule them all",
"9585 string to rule them all",
"9586 string to rule them all",
"9587 string to rule them all",
"9588 string to rule them all",
"9589 string to rule them all",
"9590 string to rule them all",
"9591 string to rule them all",
"9592 string to rule them all",
"9593 string to rule them all",
"9594 string to rule them all",
"9595 string to rule them all",
"9596 string to rule them all",
"9597 string to rule them all",
"9598 string to rule them all",
"9599 string to rule them all",
"9600 string to rule them all",
"9601 string to rule them all",
"9602 string to rule them all",
"9603 string to rule them all",
"9604 string to rule them all",
"9605 string to rule them all",
"9606 string to rule them all",
"9607 string to rule them all",
"9608 string to rule them all",
"9609 string to rule them all",
"9610 string to rule them all",
"9611 string to rule them all",
"9612 string to rule them all",
"9613 string to rule them all",
"9614 string to rule them all",
"9615 string to rule them all",
"9616 string to rule them all",
"9617 string to rule them all",
"9618 string to rule them all",
"9619 string to rule them all",
"9620 string to rule them all",
"9621 string to rule them all",
"9622 string to rule them all",
"9623 string to rule them all",
"9624 string to rule them all",
"9625 string to rule them all",
"9626 string to rule them all",
"9627 string to rule them all",
"9628 string to rule them all",
"9629 string to rule them all",
"9630 string to rule them all",
"9631 string to rule them all",
"9632 string to rule them all",
"9633 string to rule them all",
"9634 string to rule them all",
"9635 string to rule them all",
"9636 string to rule them all",
"9637 string to rule them all",
"9638 string to rule them all",
"9639 string to rule them all",
"9640 string to rule them all",
"9641 string to rule them all",
"9642 string to rule them all",
"9643 string to rule them all",
"9644 string to rule them all",
"9645 string to rule them all",
"9646 string to rule them all",
"9647 string to rule them all",
"9648 string to rule them all",
"9649 string to rule them all",
"9650 string to rule them all",
"9651 string to rule them all",
"9652 string to rule them all",
"9653 string to rule them all",
"9654 string to rule them all",
"9655 string to rule them all",
"9656 string to rule them all",
"9657 string to rule them all",
"9658 string to rule them all",
"9659 string to rule them all",
"9660 string to rule them all",
"9661 string to rule them all",
"9662 string to rule them all",
"9663 string to rule them all",
"9664 string to rule them all",
"9665 string to rule them all",
"9666 string to rule them all",
"9667 string to rule them all",
"9668 string to rule them all",
"9669 string to rule them all",
"9670 string to rule them all",
"9671 string to rule them all",
"9672 string to rule them all",
"9673 string to rule them all",
"9674 string to rule them all",
"9675 string to rule them all",
"9676 string to rule them all",
"9677 string to rule them all",
"9678 string to rule them all",
"9679 string to rule them all",
"9680 string to rule them all",
"9681 string to rule them all",
"9682 string to rule them all",
"9683 string to rule them all",
"9684 string to rule them all",
"9685 string to rule them all",
"9686 string to rule them all",
"9687 string to rule them all",
"9688 string to rule them all",
"9689 string to rule them all",
"9690 string to rule them all",
"9691 string to rule them all",
"9692 string to rule them all",
"9693 string to rule them all",
"9694 string to rule them all",
"9695 string to rule them all",
"9696 string to rule them all",
"9697 string to rule them all",
"9698 string to rule them all",
"9699 string to rule them all",
"9700 string to rule them all",
"9701 string to rule them all",
"9702 string to rule them all",
"9703 string to rule them all",
"9704 string to rule them all",
"9705 string to rule them all",
"9706 string to rule them all",
"9707 string to rule them all",
"9708 string to rule them all",
"9709 string to rule them all",
"9710 string to rule them all",
"9711 string to rule them all",
"9712 string to rule them all",
"9713 string to rule them all",
"9714 string to rule them all",
"9715 string to rule them all",
"9716 string to rule them all",
"9717 string to rule them all",
"9718 string to rule them all",
"9719 string to rule them all",
"9720 string to rule them all",
"9721 string to rule them all",
"9722 string to rule them all",
"9723 string to rule them all",
"9724 string to rule them all",
"9725 string to rule them all",
"9726 string to rule them all",
"9727 string to rule them all",
"9728 string to rule them all",
"9729 string to rule them all",
"9730 string to rule them all",
"9731 string to rule them all",
"9732 string to rule them all",
"9733 string to rule them all",
"9734 string to rule them all",
"9735 string to rule them all",
"9736 string to rule them all",
"9737 string to rule them all",
"9738 string to rule them all",
"9739 string to rule them all",
"9740 string to rule them all",
"9741 string to rule them all",
"9742 string to rule them all",
"9743 string to rule them all",
"9744 string to rule them all",
"9745 string to rule them all",
"9746 string to rule them all",
"9747 string to rule them all",
"9748 string to rule them all",
"9749 string to rule them all",
"9750 string to rule them all",
"9751 string to rule them all",
"9752 string to rule them all",
"9753 string to rule them all",
"9754 string to rule them all",
"9755 string to rule them all",
"9756 string to rule them all",
"9757 string to rule them all",
"9758 string to rule them all",
"9759 string to rule them all",
"9760 string to rule them all",
"9761 string to rule them all",
"9762 string to rule them all",
"9763 string to rule them all",
"9764 string to rule them all",
"9765 string to rule them all",
"9766 string to rule them all",
"9767 string to rule them all",
"9768 string to rule them all",
"9769 string to rule them all",
"9770 string to rule them all",
"9771 string to rule them all",
"9772 string to rule them all",
"9773 string to rule them all",
"9774 string to rule them all",
"9775 string to rule them all",
"9776 string to rule them all",
"9777 string to rule them all",
"9778 string to rule them all",
"9779 string to rule them all",
"9780 string to rule them all",
"9781 string to rule them all",
"9782 string to rule them all",
"9783 string to rule them all",
"9784 string to rule them all",
"9785 string to rule them all",
"9786 string to rule them all",
"9787 string to rule them all",
"9788 string to rule them all",
"9789 string to rule them all",
"9790 string to rule them all",
"9791 string to rule them all",
"9792 string to rule them all",
"9793 string to rule them all",
"9794 string to rule them all",
"9795 string to rule them all",
"9796 string to rule them all",
"9797 string to rule them all",
"9798 string to rule them all",
"9799 string to rule them all",
"9800 string to rule them all",
"9801 string to rule them all",
"9802 string to rule them all",
"9803 string to rule them all",
"9804 string to rule them all",
"9805 string to rule them all",
"9806 string to rule them all",
"9807 string to rule them all",
"9808 string to rule them all",
"9809 string to rule them all",
"9810 string to rule them all",
"9811 string to rule them all",
"9812 string to rule them all",
"9813 string to rule them all",
"9814 string to rule them all",
"9815 string to rule them all",
"9816 string to rule them all",
"9817 string to rule them all",
"9818 string to rule them all",
"9819 string to rule them all",
"9820 string to rule them all",
"9821 string to rule them all",
"9822 string to rule them all",
"9823 string to rule them all",
"9824 string to rule them all",
"9825 string to rule them all",
"9826 string to rule them all",
"9827 string to rule them all",
"9828 string to rule them all",
"9829 string to rule them all",
"9830 string to rule them all",
"9831 string to rule them all",
"9832 string to rule them all",
"9833 string to rule them all",
"9834 string to rule them all",
"9835 string to rule them all",
"9836 string to rule them all",
"9837 string to rule them all",
"9838 string to rule them all",
"9839 string to rule them all",
"9840 string to rule them all",
"9841 string to rule them all",
"9842 string to rule them all",
"9843 string to rule them all",
"9844 string to rule them all",
"9845 string to rule them all",
"9846 string to rule them all",
"9847 string to rule them all",
"9848 string to rule them all",
"9849 string to rule them all",
"9850 string to rule them all",
"9851 string to rule them all",
"9852 string to rule them all",
"9853 string to rule them all",
"9854 string to rule them all",
"9855 string to rule them all",
"9856 string to rule them all",
"9857 string to rule them all",
"9858 string to rule them all",
"9859 string to rule them all",
"9860 string to rule them all",
"9861 string to rule them all",
"9862 string to rule them all",
"9863 string to rule them all",
"9864 string to rule them all",
"9865 string to rule them all",
"9866 string to rule them all",
"9867 string to rule them all",
"9868 string to rule them all",
"9869 string to rule them all",
"9870 string to rule them all",
"9871 string to rule them all",
"9872 string to rule them all",
"9873 string to rule them all",
"9874 string to rule them all",
"9875 string to rule them all",
"9876 string to rule them all",
"9877 string to rule them all",
"9878 string to rule them all",
"9879 string to rule them all",
"9880 string to rule them all",
"9881 string to rule them all",
"9882 string to rule them all",
"9883 string to rule them all",
"9884 string to rule them all",
"9885 string to rule them all",
"9886 string to rule them all",
"9887 string to rule them all",
"9888 string to rule them all",
"9889 string to rule them all",
"9890 string to rule them all",
"9891 string to rule them all",
"9892 string to rule them all",
"9893 string to rule them all",
"9894 string to rule them all",
"9895 string to rule them all",
"9896 string to rule them all",
"9897 string to rule them all",
"9898 string to rule them all",
"9899 string to rule them all",
"9900 string to rule them all",
"9901 string to rule them all",
"9902 string to rule them all",
"9903 string to rule them all",
"9904 string to rule them all",
"9905 string to rule them all",
"9906 string to rule them all",
"9907 string to rule them all",
"9908 string to rule them all",
"9909 string to rule them all",
"9910 string to rule them all",
"9911 string to rule them all",
"9912 string to rule them all",
"9913 string to rule them all",
"9914 string to rule them all",
"9915 string to rule them all",
"9916 string to rule them all",
"9917 string to rule them all",
"9918 string to rule them all",
"9919 string to rule them all",
"9920 string to rule them all",
"9921 string to rule them all",
"9922 string to rule them all",
"9923 string to rule them all",
"9924 string to rule them all",
"9925 string to rule them all",
"9926 string to rule them all",
"9927 string to rule them all",
"9928 string to rule them all",
"9929 string to rule them all",
"9930 string to rule them all",
"9931 string to rule them all",
"9932 string to rule them all",
"9933 string to rule them all",
"9934 string to rule them all",
"9935 string to rule them all",
"9936 string to rule them all",
"9937 string to rule them all",
"9938 string to rule them all",
"9939 string to rule them all",
"9940 string to rule them all",
"9941 string to rule them all",
"9942 string to rule them all",
"9943 string to rule them all",
"9944 string to rule them all",
"9945 string to rule them all",
"9946 string to rule them all",
"9947 string to rule them all",
"9948 string to rule them all",
"9949 string to rule them all",
"9950 string to rule them all",
"9951 string to rule them all",
"9952 string to rule them all",
"9953 string to rule them all",
"9954 string to rule them all",
"9955 string to rule them all",
"9956 string to rule them all",
"9957 string to rule them all",
"9958 string to rule them all",
"9959 string to rule them all",
"9960 string to rule them all",
"9961 string to rule them all",
"9962 string to rule them all",
"9963 string to rule them all",
"9964 string to rule them all",
"9965 string to rule them all",
"9966 string to rule them all",
"9967 string to rule them all",
"9968 string to rule them all",
"9969 string to rule them all",
"9970 string to rule them all",
"9971 string to rule them all",
"9972 string to rule them all",
"9973 string to rule them all",
"9974 string to rule them all",
"9975 string to rule them all",
"9976 string to rule them all",
"9977 string to rule them all",
"9978 string to rule them all",
"9979 string to rule them all",
"9980 string to rule them all",
"9981 string to rule them all",
"9982 string to rule them all",
"9983 string to rule them all",
"9984 string to rule them all",
"9985 string to rule them all",
"9986 string to rule them all",
"9987 string to rule them all",
"9988 string to rule them all",
"9989 string to rule them all",
"9990 string to rule them all",
"9991 string to rule them all",
"9992 string to rule them all",
"9993 string to rule them all",
"9994 string to rule them all",
"9995 string to rule them all",
"9996 string to rule them all",
"9997 string to rule them all",
"9998 string to rule them all",
"9999 string to rule them all",
"10000 string to rule them all",
"10001 string to rule them all",
"10002 string to rule them all",
"10003 string to rule them all",
"10004 string to rule them all",
"10005 string to rule them all",
"10006 string to rule them all",
"10007 string to rule them all",
"10008 string to rule them all",
"10009 string to rule them all",
"10010 string to rule them all",
"10011 string to rule them all",
"10012 string to rule them all",
"10013 string to rule them all",
"10014 string to rule them all",
"10015 string to rule them all",
"10016 string to rule them all",
"10017 string to rule them all",
"10018 string to rule them all",
"10019 string to rule them all",
"10020 string to rule them all",
"10021 string to rule them all",
"10022 string to rule them all",
"10023 string to rule them all",
"10024 string to rule them all",
"10025 string to rule them all",
"10026 string to rule them all",
"10027 string to rule them all",
"10028 string to rule them all",
"10029 string to rule them all",
"10030 string to rule them all",
"10031 string to rule them all",
"10032 string to rule them all",
"10033 string to rule them all",
"10034 string to rule them all",
"10035 string to rule them all",
"10036 string to rule them all",
"10037 string to rule them all",
"10038 string to rule them all",
"10039 string to rule them all",
"10040 string to rule them all",
"10041 string to rule them all",
"10042 string to rule them all",
"10043 string to rule them all",
"10044 string to rule them all",
"10045 string to rule them all",
"10046 string to rule them all",
"10047 string to rule them all",
"10048 string to rule them all",
"10049 string to rule them all",
"10050 string to rule them all",
"10051 string to rule them all",
"10052 string to rule them all",
"10053 string to rule them all",
"10054 string to rule them all",
"10055 string to rule them all",
"10056 string to rule them all",
"10057 string to rule them all",
"10058 string to rule them all",
"10059 string to rule them all",
"10060 string to rule them all",
"10061 string to rule them all",
"10062 string to rule them all",
"10063 string to rule them all",
"10064 string to rule them all",
"10065 string to rule them all",
"10066 string to rule them all",
"10067 string to rule them all",
"10068 string to rule them all",
"10069 string to rule them all",
"10070 string to rule them all",
"10071 string to rule them all",
"10072 string to rule them all",
"10073 string to rule them all",
"10074 string to rule them all",
"10075 string to rule them all",
"10076 string to rule them all",
"10077 string to rule them all",
"10078 string to rule them all",
"10079 string to rule them all",
"10080 string to rule them all",
"10081 string to rule them all",
"10082 string to rule them all",
"10083 string to rule them all",
"10084 string to rule them all",
"10085 string to rule them all",
"10086 string to rule them all",
"10087 string to rule them all",
"10088 string to rule them all",
"10089 string to rule them all",
"10090 string to rule them all",
"10091 string to rule them all",
"10092 string to rule them all",
"10093 string to rule them all",
"10094 string to rule them all",
"10095 string to rule them all",
"10096 string to rule them all",
"10097 string to rule them all",
"10098 string to rule them all",
"10099 string to rule them all",
"10100 string to rule them all",
"10101 string to rule them all",
"10102 string to rule them all",
"10103 string to rule them all",
"10104 string to rule them all",
"10105 string to rule them all",
"10106 string to rule them all",
"10107 string to rule them all",
"10108 string to rule them all",
"10109 string to rule them all",
"10110 string to rule them all",
"10111 string to rule them all",
"10112 string to rule them all",
"10113 string to rule them all",
"10114 string to rule them all",
"10115 string to rule them all",
"10116 string to rule them all",
"10117 string to rule them all",
"10118 string to rule them all",
"10119 string to rule them all",
"10120 string to rule them all",
"10121 string to rule them all",
"10122 string to rule them all",
"10123 string to rule them all",
"10124 string to rule them all",
"10125 string to rule them all",
"10126 string to rule them all",
"10127 string to rule them all",
"10128 string to rule them all",
"10129 string to rule them all",
"10130 string to rule them all",
"10131 string to rule them all",
"10132 string to rule them all",
"10133 string to rule them all",
"10134 string to rule them all",
"10135 string to rule them all",
"10136 string to rule them all",
"10137 string to rule them all",
"10138 string to rule them all",
"10139 string to rule them all",
"10140 string to rule them all",
"10141 string to rule them all",
"10142 string to rule them all",
"10143 string to rule them all",
"10144 string to rule them all",
"10145 string to rule them all",
"10146 string to rule them all",
"10147 string to rule them all",
"10148 string to rule them all",
"10149 string to rule them all",
"10150 string to rule them all",
"10151 string to rule them all",
"10152 string to rule them all",
"10153 string to rule them all",
"10154 string to rule them all",
"10155 string to rule them all",
"10156 string to rule them all",
"10157 string to rule them all",
"10158 string to rule them all",
"10159 string to rule them all",
"10160 string to rule them all",
"10161 string to rule them all",
"10162 string to rule them all",
"10163 string to rule them all",
"10164 string to rule them all",
"10165 string to rule them all",
"10166 string to rule them all",
"10167 string to rule them all",
"10168 string to rule them all",
"10169 string to rule them all",
"10170 string to rule them all",
"10171 string to rule them all",
"10172 string to rule them all",
"10173 string to rule them all",
"10174 string to rule them all",
"10175 string to rule them all",
"10176 string to rule them all",
"10177 string to rule them all",
"10178 string to rule them all",
"10179 string to rule them all",
"10180 string to rule them all",
"10181 string to rule them all",
"10182 string to rule them all",
"10183 string to rule them all",
"10184 string to rule them all",
"10185 string to rule them all",
"10186 string to rule them all",
"10187 string to rule them all",
"10188 string to rule them all",
"10189 string to rule them all",
"10190 string to rule them all",
"10191 string to rule them all",
"10192 string to rule them all",
"10193 string to rule them all",
"10194 string to rule them all",
"10195 string to rule them all",
"10196 string to rule them all",
"10197 string to rule them all",
"10198 string to rule them all",
"10199 string to rule them all",
"10200 string to rule them all",
"10201 string to rule them all",
"10202 string to rule them all",
"10203 string to rule them all",
"10204 string to rule them all",
"10205 string to rule them all",
"10206 string to rule them all",
"10207 string to rule them all",
"10208 string to rule them all",
"10209 string to rule them all",
"10210 string to rule them all",
"10211 string to rule them all",
"10212 string to rule them all",
"10213 string to rule them all",
"10214 string to rule them all",
"10215 string to rule them all",
"10216 string to rule them all",
"10217 string to rule them all",
"10218 string to rule them all",
"10219 string to rule them all",
"10220 string to rule them all",
"10221 string to rule them all",
"10222 string to rule them all",
"10223 string to rule them all",
"10224 string to rule them all",
"10225 string to rule them all",
"10226 string to rule them all",
"10227 string to rule them all",
"10228 string to rule them all",
"10229 string to rule them all",
"10230 string to rule them all",
"10231 string to rule them all",
"10232 string to rule them all",
"10233 string to rule them all",
"10234 string to rule them all",
"10235 string to rule them all",
"10236 string to rule them all",
"10237 string to rule them all",
"10238 string to rule them all",
"10239 string to rule them all",
"10240 string to rule them all",
"10241 string to rule them all",
"10242 string to rule them all",
"10243 string to rule them all",
"10244 string to rule them all",
"10245 string to rule them all",
"10246 string to rule them all",
"10247 string to rule them all",
"10248 string to rule them all",
"10249 string to rule them all",
"10250 string to rule them all",
"10251 string to rule them all",
"10252 string to rule them all",
"10253 string to rule them all",
"10254 string to rule them all",
"10255 string to rule them all",
"10256 string to rule them all",
"10257 string to rule them all",
"10258 string to rule them all",
"10259 string to rule them all",
"10260 string to rule them all",
"10261 string to rule them all",
"10262 string to rule them all",
"10263 string to rule them all",
"10264 string to rule them all",
"10265 string to rule them all",
"10266 string to rule them all",
"10267 string to rule them all",
"10268 string to rule them all",
"10269 string to rule them all",
"10270 string to rule them all",
"10271 string to rule them all",
"10272 string to rule them all",
"10273 string to rule them all",
"10274 string to rule them all",
"10275 string to rule them all",
"10276 string to rule them all",
"10277 string to rule them all",
"10278 string to rule them all",
"10279 string to rule them all",
"10280 string to rule them all",
"10281 string to rule them all",
"10282 string to rule them all",
"10283 string to rule them all",
"10284 string to rule them all",
"10285 string to rule them all",
"10286 string to rule them all",
"10287 string to rule them all",
"10288 string to rule them all",
"10289 string to rule them all",
"10290 string to rule them all",
"10291 string to rule them all",
"10292 string to rule them all",
"10293 string to rule them all",
"10294 string to rule them all",
"10295 string to rule them all",
"10296 string to rule them all",
"10297 string to rule them all",
"10298 string to rule them all",
"10299 string to rule them all",
"10300 string to rule them all",
"10301 string to rule them all",
"10302 string to rule them all",
"10303 string to rule them all",
"10304 string to rule them all",
"10305 string to rule them all",
"10306 string to rule them all",
"10307 string to rule them all",
"10308 string to rule them all",
"10309 string to rule them all",
"10310 string to rule them all",
"10311 string to rule them all",
"10312 string to rule them all",
"10313 string to rule them all",
"10314 string to rule them all",
"10315 string to rule them all",
"10316 string to rule them all",
"10317 string to rule them all",
"10318 string to rule them all",
"10319 string to rule them all",
"10320 string to rule them all",
"10321 string to rule them all",
"10322 string to rule them all",
"10323 string to rule them all",
"10324 string to rule them all",
"10325 string to rule them all",
"10326 string to rule them all",
"10327 string to rule them all",
"10328 string to rule them all",
"10329 string to rule them all",
"10330 string to rule them all",
"10331 string to rule them all",
"10332 string to rule them all",
"10333 string to rule them all",
"10334 string to rule them all",
"10335 string to rule them all",
"10336 string to rule them all",
"10337 string to rule them all",
"10338 string to rule them all",
"10339 string to rule them all",
"10340 string to rule them all",
"10341 string to rule them all",
"10342 string to rule them all",
"10343 string to rule them all",
"10344 string to rule them all",
"10345 string to rule them all",
"10346 string to rule them all",
"10347 string to rule them all",
"10348 string to rule them all",
"10349 string to rule them all",
"10350 string to rule them all",
"10351 string to rule them all",
"10352 string to rule them all",
"10353 string to rule them all",
"10354 string to rule them all",
"10355 string to rule them all",
"10356 string to rule them all",
"10357 string to rule them all",
"10358 string to rule them all",
"10359 string to rule them all",
"10360 string to rule them all",
"10361 string to rule them all",
"10362 string to rule them all",
"10363 string to rule them all",
"10364 string to rule them all",
"10365 string to rule them all",
"10366 string to rule them all",
"10367 string to rule them all",
"10368 string to rule them all",
"10369 string to rule them all",
"10370 string to rule them all",
"10371 string to rule them all",
"10372 string to rule them all",
"10373 string to rule them all",
"10374 string to rule them all",
"10375 string to rule them all",
"10376 string to rule them all",
"10377 string to rule them all",
"10378 string to rule them all",
"10379 string to rule them all",
"10380 string to rule them all",
"10381 string to rule them all",
"10382 string to rule them all",
"10383 string to rule them all",
"10384 string to rule them all",
"10385 string to rule them all",
"10386 string to rule them all",
"10387 string to rule them all",
"10388 string to rule them all",
"10389 string to rule them all",
"10390 string to rule them all",
"10391 string to rule them all",
"10392 string to rule them all",
"10393 string to rule them all",
"10394 string to rule them all",
"10395 string to rule them all",
"10396 string to rule them all",
"10397 string to rule them all",
"10398 string to rule them all",
"10399 string to rule them all",
"10400 string to rule them all",
"10401 string to rule them all",
"10402 string to rule them all",
"10403 string to rule them all",
"10404 string to rule them all",
"10405 string to rule them all",
"10406 string to rule them all",
"10407 string to rule them all",
"10408 string to rule them all",
"10409 string to rule them all",
"10410 string to rule them all",
"10411 string to rule them all",
"10412 string to rule them all",
"10413 string to rule them all",
"10414 string to rule them all",
"10415 string to rule them all",
"10416 string to rule them all",
"10417 string to rule them all",
"10418 string to rule them all",
"10419 string to rule them all",
"10420 string to rule them all",
"10421 string to rule them all",
"10422 string to rule them all",
"10423 string to rule them all",
"10424 string to rule them all",
"10425 string to rule them all",
"10426 string to rule them all",
"10427 string to rule them all",
"10428 string to rule them all",
"10429 string to rule them all",
"10430 string to rule them all",
"10431 string to rule them all",
"10432 string to rule them all",
"10433 string to rule them all",
"10434 string to rule them all",
"10435 string to rule them all",
"10436 string to rule them all",
"10437 string to rule them all",
"10438 string to rule them all",
"10439 string to rule them all",
"10440 string to rule them all",
"10441 string to rule them all",
"10442 string to rule them all",
"10443 string to rule them all",
"10444 string to rule them all",
"10445 string to rule them all",
"10446 string to rule them all",
"10447 string to rule them all",
"10448 string to rule them all",
"10449 string to rule them all",
"10450 string to rule them all",
"10451 string to rule them all",
"10452 string to rule them all",
"10453 string to rule them all",
"10454 string to rule them all",
"10455 string to rule them all",
"10456 string to rule them all",
"10457 string to rule them all",
"10458 string to rule them all",
"10459 string to rule them all",
"10460 string to rule them all",
"10461 string to rule them all",
"10462 string to rule them all",
"10463 string to rule them all",
"10464 string to rule them all",
"10465 string to rule them all",
"10466 string to rule them all",
"10467 string to rule them all",
"10468 string to rule them all",
"10469 string to rule them all",
"10470 string to rule them all",
"10471 string to rule them all",
"10472 string to rule them all",
"10473 string to rule them all",
"10474 string to rule them all",
"10475 string to rule them all",
"10476 string to rule them all",
"10477 string to rule them all",
"10478 string to rule them all",
"10479 string to rule them all",
"10480 string to rule them all",
"10481 string to rule them all",
"10482 string to rule them all",
"10483 string to rule them all",
"10484 string to rule them all",
"10485 string to rule them all",
"10486 string to rule them all",
"10487 string to rule them all",
"10488 string to rule them all",
"10489 string to rule them all",
"10490 string to rule them all",
"10491 string to rule them all",
"10492 string to rule them all",
"10493 string to rule them all",
"10494 string to rule them all",
"10495 string to rule them all",
"10496 string to rule them all",
"10497 string to rule them all",
"10498 string to rule them all",
"10499 string to rule them all",
"10500 string to rule them all",
"10501 string to rule them all",
"10502 string to rule them all",
"10503 string to rule them all",
"10504 string to rule them all",
"10505 string to rule them all",
"10506 string to rule them all",
"10507 string to rule them all",
"10508 string to rule them all",
"10509 string to rule them all",
"10510 string to rule them all",
"10511 string to rule them all",
"10512 string to rule them all",
"10513 string to rule them all",
"10514 string to rule them all",
"10515 string to rule them all",
"10516 string to rule them all",
"10517 string to rule them all",
"10518 string to rule them all",
"10519 string to rule them all",
"10520 string to rule them all",
"10521 string to rule them all",
"10522 string to rule them all",
"10523 string to rule them all",
"10524 string to rule them all",
"10525 string to rule them all",
"10526 string to rule them all",
"10527 string to rule them all",
"10528 string to rule them all",
"10529 string to rule them all",
"10530 string to rule them all",
"10531 string to rule them all",
"10532 string to rule them all",
"10533 string to rule them all",
"10534 string to rule them all",
"10535 string to rule them all",
"10536 string to rule them all",
"10537 string to rule them all",
"10538 string to rule them all",
"10539 string to rule them all",
"10540 string to rule them all",
"10541 string to rule them all",
"10542 string to rule them all",
"10543 string to rule them all",
"10544 string to rule them all",
"10545 string to rule them all",
"10546 string to rule them all",
"10547 string to rule them all",
"10548 string to rule them all",
"10549 string to rule them all",
"10550 string to rule them all",
"10551 string to rule them all",
"10552 string to rule them all",
"10553 string to rule them all",
"10554 string to rule them all",
"10555 string to rule them all",
"10556 string to rule them all",
"10557 string to rule them all",
"10558 string to rule them all",
"10559 string to rule them all",
"10560 string to rule them all",
"10561 string to rule them all",
"10562 string to rule them all",
"10563 string to rule them all",
"10564 string to rule them all",
"10565 string to rule them all",
"10566 string to rule them all",
"10567 string to rule them all",
"10568 string to rule them all",
"10569 string to rule them all",
"10570 string to rule them all",
"10571 string to rule them all",
"10572 string to rule them all",
"10573 string to rule them all",
"10574 string to rule them all",
"10575 string to rule them all",
"10576 string to rule them all",
"10577 string to rule them all",
"10578 string to rule them all",
"10579 string to rule them all",
"10580 string to rule them all",
"10581 string to rule them all",
"10582 string to rule them all",
"10583 string to rule them all",
"10584 string to rule them all",
"10585 string to rule them all",
"10586 string to rule them all",
"10587 string to rule them all",
"10588 string to rule them all",
"10589 string to rule them all",
"10590 string to rule them all",
"10591 string to rule them all",
"10592 string to rule them all",
"10593 string to rule them all",
"10594 string to rule them all",
"10595 string to rule them all",
"10596 string to rule them all",
"10597 string to rule them all",
"10598 string to rule them all",
"10599 string to rule them all",
"10600 string to rule them all",
"10601 string to rule them all",
"10602 string to rule them all",
"10603 string to rule them all",
"10604 string to rule them all",
"10605 string to rule them all",
"10606 string to rule them all",
"10607 string to rule them all",
"10608 string to rule them all",
"10609 string to rule them all",
"10610 string to rule them all",
"10611 string to rule them all",
"10612 string to rule them all",
"10613 string to rule them all",
"10614 string to rule them all",
"10615 string to rule them all",
"10616 string to rule them all",
"10617 string to rule them all",
"10618 string to rule them all",
"10619 string to rule them all",
"10620 string to rule them all",
"10621 string to rule them all",
"10622 string to rule them all",
"10623 string to rule them all",
"10624 string to rule them all",
"10625 string to rule them all",
"10626 string to rule them all",
"10627 string to rule them all",
"10628 string to rule them all",
"10629 string to rule them all",
"10630 string to rule them all",
"10631 string to rule them all",
"10632 string to rule them all",
"10633 string to rule them all",
"10634 string to rule them all",
"10635 string to rule them all",
"10636 string to rule them all",
"10637 string to rule them all",
"10638 string to rule them all",
"10639 string to rule them all",
"10640 string to rule them all",
"10641 string to rule them all",
"10642 string to rule them all",
"10643 string to rule them all",
"10644 string to rule them all",
"10645 string to rule them all",
"10646 string to rule them all",
"10647 string to rule them all",
"10648 string to rule them all",
"10649 string to rule them all",
"10650 string to rule them all",
"10651 string to rule them all",
"10652 string to rule them all",
"10653 string to rule them all",
"10654 string to rule them all",
"10655 string to rule them all",
"10656 string to rule them all",
"10657 string to rule them all",
"10658 string to rule them all",
"10659 string to rule them all",
"10660 string to rule them all",
"10661 string to rule them all",
"10662 string to rule them all",
"10663 string to rule them all",
"10664 string to rule them all",
"10665 string to rule them all",
"10666 string to rule them all",
"10667 string to rule them all",
"10668 string to rule them all",
"10669 string to rule them all",
"10670 string to rule them all",
"10671 string to rule them all",
"10672 string to rule them all",
"10673 string to rule them all",
"10674 string to rule them all",
"10675 string to rule them all",
"10676 string to rule them all",
"10677 string to rule them all",
"10678 string to rule them all",
"10679 string to rule them all",
"10680 string to rule them all",
"10681 string to rule them all",
"10682 string to rule them all",
"10683 string to rule them all",
"10684 string to rule them all",
"10685 string to rule them all",
"10686 string to rule them all",
"10687 string to rule them all",
"10688 string to rule them all",
"10689 string to rule them all",
"10690 string to rule them all",
"10691 string to rule them all",
"10692 string to rule them all",
"10693 string to rule them all",
"10694 string to rule them all",
"10695 string to rule them all",
"10696 string to rule them all",
"10697 string to rule them all",
"10698 string to rule them all",
"10699 string to rule them all",
"10700 string to rule them all",
"10701 string to rule them all",
"10702 string to rule them all",
"10703 string to rule them all",
"10704 string to rule them all",
"10705 string to rule them all",
"10706 string to rule them all",
"10707 string to rule them all",
"10708 string to rule them all",
"10709 string to rule them all",
"10710 string to rule them all",
"10711 string to rule them all",
"10712 string to rule them all",
"10713 string to rule them all",
"10714 string to rule them all",
"10715 string to rule them all",
"10716 string to rule them all",
"10717 string to rule them all",
"10718 string to rule them all",
"10719 string to rule them all",
"10720 string to rule them all",
"10721 string to rule them all",
"10722 string to rule them all",
"10723 string to rule them all",
"10724 string to rule them all",
"10725 string to rule them all",
"10726 string to rule them all",
"10727 string to rule them all",
"10728 string to rule them all",
"10729 string to rule them all",
"10730 string to rule them all",
"10731 string to rule them all",
"10732 string to rule them all",
"10733 string to rule them all",
"10734 string to rule them all",
"10735 string to rule them all",
"10736 string to rule them all",
"10737 string to rule them all",
"10738 string to rule them all",
"10739 string to rule them all",
"10740 string to rule them all",
"10741 string to rule them all",
"10742 string to rule them all",
"10743 string to rule them all",
"10744 string to rule them all",
"10745 string to rule them all",
"10746 string to rule them all",
"10747 string to rule them all",
"10748 string to rule them all",
"10749 string to rule them all",
"10750 string to rule them all",
"10751 string to rule them all",
"10752 string to rule them all",
"10753 string to rule them all",
"10754 string to rule them all",
"10755 string to rule them all",
"10756 string to rule them all",
"10757 string to rule them all",
"10758 string to rule them all",
"10759 string to rule them all",
"10760 string to rule them all",
"10761 string to rule them all",
"10762 string to rule them all",
"10763 string to rule them all",
"10764 string to rule them all",
"10765 string to rule them all",
"10766 string to rule them all",
"10767 string to rule them all",
"10768 string to rule them all",
"10769 string to rule them all",
"10770 string to rule them all",
"10771 string to rule them all",
"10772 string to rule them all",
"10773 string to rule them all",
"10774 string to rule them all",
"10775 string to rule them all",
"10776 string to rule them all",
"10777 string to rule them all",
"10778 string to rule them all",
"10779 string to rule them all",
"10780 string to rule them all",
"10781 string to rule them all",
"10782 string to rule them all",
"10783 string to rule them all",
"10784 string to rule them all",
"10785 string to rule them all",
"10786 string to rule them all",
"10787 string to rule them all",
"10788 string to rule them all",
"10789 string to rule them all",
"10790 string to rule them all",
"10791 string to rule them all",
"10792 string to rule them all",
"10793 string to rule them all",
"10794 string to rule them all",
"10795 string to rule them all",
"10796 string to rule them all",
"10797 string to rule them all",
"10798 string to rule them all",
"10799 string to rule them all",
"10800 string to rule them all",
"10801 string to rule them all",
"10802 string to rule them all",
"10803 string to rule them all",
"10804 string to rule them all",
"10805 string to rule them all",
"10806 string to rule them all",
"10807 string to rule them all",
"10808 string to rule them all",
"10809 string to rule them all",
"10810 string to rule them all",
"10811 string to rule them all",
"10812 string to rule them all",
"10813 string to rule them all",
"10814 string to rule them all",
"10815 string to rule them all",
"10816 string to rule them all",
"10817 string to rule them all",
"10818 string to rule them all",
"10819 string to rule them all",
"10820 string to rule them all",
"10821 string to rule them all",
"10822 string to rule them all",
"10823 string to rule them all",
"10824 string to rule them all",
"10825 string to rule them all",
"10826 string to rule them all",
"10827 string to rule them all",
"10828 string to rule them all",
"10829 string to rule them all",
"10830 string to rule them all",
"10831 string to rule them all",
"10832 string to rule them all",
"10833 string to rule them all",
"10834 string to rule them all",
"10835 string to rule them all",
"10836 string to rule them all",
"10837 string to rule them all",
"10838 string to rule them all",
"10839 string to rule them all",
"10840 string to rule them all",
"10841 string to rule them all",
"10842 string to rule them all",
"10843 string to rule them all",
"10844 string to rule them all",
"10845 string to rule them all",
"10846 string to rule them all",
"10847 string to rule them all",
"10848 string to rule them all",
"10849 string to rule them all",
"10850 string to rule them all",
"10851 string to rule them all",
"10852 string to rule them all",
"10853 string to rule them all",
"10854 string to rule them all",
"10855 string to rule them all",
"10856 string to rule them all",
"10857 string to rule them all",
"10858 string to rule them all",
"10859 string to rule them all",
"10860 string to rule them all",
"10861 string to rule them all",
"10862 string to rule them all",
"10863 string to rule them all",
"10864 string to rule them all",
"10865 string to rule them all",
"10866 string to rule them all",
"10867 string to rule them all",
"10868 string to rule them all",
"10869 string to rule them all",
"10870 string to rule them all",
"10871 string to rule them all",
"10872 string to rule them all",
"10873 string to rule them all",
"10874 string to rule them all",
"10875 string to rule them all",
"10876 string to rule them all",
"10877 string to rule them all",
"10878 string to rule them all",
"10879 string to rule them all",
"10880 string to rule them all",
"10881 string to rule them all",
"10882 string to rule them all",
"10883 string to rule them all",
"10884 string to rule them all",
"10885 string to rule them all",
"10886 string to rule them all",
"10887 string to rule them all",
"10888 string to rule them all",
"10889 string to rule them all",
"10890 string to rule them all",
"10891 string to rule them all",
"10892 string to rule them all",
"10893 string to rule them all",
"10894 string to rule them all",
"10895 string to rule them all",
"10896 string to rule them all",
"10897 string to rule them all",
"10898 string to rule them all",
"10899 string to rule them all",
"10900 string to rule them all",
"10901 string to rule them all",
"10902 string to rule them all",
"10903 string to rule them all",
"10904 string to rule them all",
"10905 string to rule them all",
"10906 string to rule them all",
"10907 string to rule them all",
"10908 string to rule them all",
"10909 string to rule them all",
"10910 string to rule them all",
"10911 string to rule them all",
"10912 string to rule them all",
"10913 string to rule them all",
"10914 string to rule them all",
"10915 string to rule them all",
"10916 string to rule them all",
"10917 string to rule them all",
"10918 string to rule them all",
"10919 string to rule them all",
"10920 string to rule them all",
"10921 string to rule them all",
"10922 string to rule them all",
"10923 string to rule them all",
"10924 string to rule them all",
"10925 string to rule them all",
"10926 string to rule them all",
"10927 string to rule them all",
"10928 string to rule them all",
"10929 string to rule them all",
"10930 string to rule them all",
"10931 string to rule them all",
"10932 string to rule them all",
"10933 string to rule them all",
"10934 string to rule them all",
"10935 string to rule them all",
"10936 string to rule them all",
"10937 string to rule them all",
"10938 string to rule them all",
"10939 string to rule them all",
"10940 string to rule them all",
"10941 string to rule them all",
"10942 string to rule them all",
"10943 string to rule them all",
"10944 string to rule them all",
"10945 string to rule them all",
"10946 string to rule them all",
"10947 string to rule them all",
"10948 string to rule them all",
"10949 string to rule them all",
"10950 string to rule them all",
"10951 string to rule them all",
"10952 string to rule them all",
"10953 string to rule them all",
"10954 string to rule them all",
"10955 string to rule them all",
"10956 string to rule them all",
"10957 string to rule them all",
"10958 string to rule them all",
"10959 string to rule them all",
"10960 string to rule them all",
"10961 string to rule them all",
"10962 string to rule them all",
"10963 string to rule them all",
"10964 string to rule them all",
"10965 string to rule them all",
"10966 string to rule them all",
"10967 string to rule them all",
"10968 string to rule them all",
"10969 string to rule them all",
"10970 string to rule them all",
"10971 string to rule them all",
"10972 string to rule them all",
"10973 string to rule them all",
"10974 string to rule them all",
"10975 string to rule them all",
"10976 string to rule them all",
"10977 string to rule them all",
"10978 string to rule them all",
"10979 string to rule them all",
"10980 string to rule them all",
"10981 string to rule them all",
"10982 string to rule them all",
"10983 string to rule them all",
"10984 string to rule them all",
"10985 string to rule them all",
"10986 string to rule them all",
"10987 string to rule them all",
"10988 string to rule them all",
"10989 string to rule them all",
"10990 string to rule them all",
"10991 string to rule them all",
"10992 string to rule them all",
"10993 string to rule them all",
"10994 string to rule them all",
"10995 string to rule them all",
"10996 string to rule them all",
"10997 string to rule them all",
"10998 string to rule them all",
"10999 string to rule them all",
"11000 string to rule them all",
"11001 string to rule them all",
"11002 string to rule them all",
"11003 string to rule them all",
"11004 string to rule them all",
"11005 string to rule them all",
"11006 string to rule them all",
"11007 string to rule them all",
"11008 string to rule them all",
"11009 string to rule them all",
"11010 string to rule them all",
"11011 string to rule them all",
"11012 string to rule them all",
"11013 string to rule them all",
"11014 string to rule them all",
"11015 string to rule them all",
"11016 string to rule them all",
"11017 string to rule them all",
"11018 string to rule them all",
"11019 string to rule them all",
"11020 string to rule them all",
"11021 string to rule them all",
"11022 string to rule them all",
"11023 string to rule them all",
"11024 string to rule them all",
"11025 string to rule them all",
"11026 string to rule them all",
"11027 string to rule them all",
"11028 string to rule them all",
"11029 string to rule them all",
"11030 string to rule them all",
"11031 string to rule them all",
"11032 string to rule them all",
"11033 string to rule them all",
"11034 string to rule them all",
"11035 string to rule them all",
"11036 string to rule them all",
"11037 string to rule them all",
"11038 string to rule them all",
"11039 string to rule them all",
"11040 string to rule them all",
"11041 string to rule them all",
"11042 string to rule them all",
"11043 string to rule them all",
"11044 string to rule them all",
"11045 string to rule them all",
"11046 string to rule them all",
"11047 string to rule them all",
"11048 string to rule them all",
"11049 string to rule them all",
"11050 string to rule them all",
"11051 string to rule them all",
"11052 string to rule them all",
"11053 string to rule them all",
"11054 string to rule them all",
"11055 string to rule them all",
"11056 string to rule them all",
"11057 string to rule them all",
"11058 string to rule them all",
"11059 string to rule them all",
"11060 string to rule them all",
"11061 string to rule them all",
"11062 string to rule them all",
"11063 string to rule them all",
"11064 string to rule them all",
"11065 string to rule them all",
"11066 string to rule them all",
"11067 string to rule them all",
"11068 string to rule them all",
"11069 string to rule them all",
"11070 string to rule them all",
"11071 string to rule them all",
"11072 string to rule them all",
"11073 string to rule them all",
"11074 string to rule them all",
"11075 string to rule them all",
"11076 string to rule them all",
"11077 string to rule them all",
"11078 string to rule them all",
"11079 string to rule them all",
"11080 string to rule them all",
"11081 string to rule them all",
"11082 string to rule them all",
"11083 string to rule them all",
"11084 string to rule them all",
"11085 string to rule them all",
"11086 string to rule them all",
"11087 string to rule them all",
"11088 string to rule them all",
"11089 string to rule them all",
"11090 string to rule them all",
"11091 string to rule them all",
"11092 string to rule them all",
"11093 string to rule them all",
"11094 string to rule them all",
"11095 string to rule them all",
"11096 string to rule them all",
"11097 string to rule them all",
"11098 string to rule them all",
"11099 string to rule them all",
"11100 string to rule them all",
"11101 string to rule them all",
"11102 string to rule them all",
"11103 string to rule them all",
"11104 string to rule them all",
"11105 string to rule them all",
"11106 string to rule them all",
"11107 string to rule them all",
"11108 string to rule them all",
"11109 string to rule them all",
"11110 string to rule them all",
"11111 string to rule them all",
"11112 string to rule them all",
"11113 string to rule them all",
"11114 string to rule them all",
"11115 string to rule them all",
"11116 string to rule them all",
"11117 string to rule them all",
"11118 string to rule them all",
"11119 string to rule them all",
"11120 string to rule them all",
"11121 string to rule them all",
"11122 string to rule them all",
"11123 string to rule them all",
"11124 string to rule them all",
"11125 string to rule them all",
"11126 string to rule them all",
"11127 string to rule them all",
"11128 string to rule them all",
"11129 string to rule them all",
"11130 string to rule them all",
"11131 string to rule them all",
"11132 string to rule them all",
"11133 string to rule them all",
"11134 string to rule them all",
"11135 string to rule them all",
"11136 string to rule them all",
"11137 string to rule them all",
"11138 string to rule them all",
"11139 string to rule them all",
"11140 string to rule them all",
"11141 string to rule them all",
"11142 string to rule them all",
"11143 string to rule them all",
"11144 string to rule them all",
"11145 string to rule them all",
"11146 string to rule them all",
"11147 string to rule them all",
"11148 string to rule them all",
"11149 string to rule them all",
"11150 string to rule them all",
"11151 string to rule them all",
"11152 string to rule them all",
"11153 string to rule them all",
"11154 string to rule them all",
"11155 string to rule them all",
"11156 string to rule them all",
"11157 string to rule them all",
"11158 string to rule them all",
"11159 string to rule them all",
"11160 string to rule them all",
"11161 string to rule them all",
"11162 string to rule them all",
"11163 string to rule them all",
"11164 string to rule them all",
"11165 string to rule them all",
"11166 string to rule them all",
"11167 string to rule them all",
"11168 string to rule them all",
"11169 string to rule them all",
"11170 string to rule them all",
"11171 string to rule them all",
"11172 string to rule them all",
"11173 string to rule them all",
"11174 string to rule them all",
"11175 string to rule them all",
"11176 string to rule them all",
"11177 string to rule them all",
"11178 string to rule them all",
"11179 string to rule them all",
"11180 string to rule them all",
"11181 string to rule them all",
"11182 string to rule them all",
"11183 string to rule them all",
"11184 string to rule them all",
"11185 string to rule them all",
"11186 string to rule them all",
"11187 string to rule them all",
"11188 string to rule them all",
"11189 string to rule them all",
"11190 string to rule them all",
"11191 string to rule them all",
"11192 string to rule them all",
"11193 string to rule them all",
"11194 string to rule them all",
"11195 string to rule them all",
"11196 string to rule them all",
"11197 string to rule them all",
"11198 string to rule them all",
"11199 string to rule them all",
"11200 string to rule them all",
"11201 string to rule them all",
"11202 string to rule them all",
"11203 string to rule them all",
"11204 string to rule them all",
"11205 string to rule them all",
"11206 string to rule them all",
"11207 string to rule them all",
"11208 string to rule them all",
"11209 string to rule them all",
"11210 string to rule them all",
"11211 string to rule them all",
"11212 string to rule them all",
"11213 string to rule them all",
"11214 string to rule them all",
"11215 string to rule them all",
"11216 string to rule them all",
"11217 string to rule them all",
"11218 string to rule them all",
"11219 string to rule them all",
"11220 string to rule them all",
"11221 string to rule them all",
"11222 string to rule them all",
"11223 string to rule them all",
"11224 string to rule them all",
"11225 string to rule them all",
"11226 string to rule them all",
"11227 string to rule them all",
"11228 string to rule them all",
"11229 string to rule them all",
"11230 string to rule them all",
"11231 string to rule them all",
"11232 string to rule them all",
"11233 string to rule them all",
"11234 string to rule them all",
"11235 string to rule them all",
"11236 string to rule them all",
"11237 string to rule them all",
"11238 string to rule them all",
"11239 string to rule them all",
"11240 string to rule them all",
"11241 string to rule them all",
"11242 string to rule them all",
"11243 string to rule them all",
"11244 string to rule them all",
"11245 string to rule them all",
"11246 string to rule them all",
"11247 string to rule them all",
"11248 string to rule them all",
"11249 string to rule them all",
"11250 string to rule them all",
"11251 string to rule them all",
"11252 string to rule them all",
"11253 string to rule them all",
"11254 string to rule them all",
"11255 string to rule them all",
"11256 string to rule them all",
"11257 string to rule them all",
"11258 string to rule them all",
"11259 string to rule them all",
"11260 string to rule them all",
"11261 string to rule them all",
"11262 string to rule them all",
"11263 string to rule them all",
"11264 string to rule them all",
"11265 string to rule them all",
"11266 string to rule them all",
"11267 string to rule them all",
"11268 string to rule them all",
"11269 string to rule them all",
"11270 string to rule them all",
"11271 string to rule them all",
"11272 string to rule them all",
"11273 string to rule them all",
"11274 string to rule them all",
"11275 string to rule them all",
"11276 string to rule them all",
"11277 string to rule them all",
"11278 string to rule them all",
"11279 string to rule them all",
"11280 string to rule them all",
"11281 string to rule them all",
"11282 string to rule them all",
"11283 string to rule them all",
"11284 string to rule them all",
"11285 string to rule them all",
"11286 string to rule them all",
"11287 string to rule them all",
"11288 string to rule them all",
"11289 string to rule them all",
"11290 string to rule them all",
"11291 string to rule them all",
"11292 string to rule them all",
"11293 string to rule them all",
"11294 string to rule them all",
"11295 string to rule them all",
"11296 string to rule them all",
"11297 string to rule them all",
"11298 string to rule them all",
"11299 string to rule them all",
"11300 string to rule them all",
"11301 string to rule them all",
"11302 string to rule them all",
"11303 string to rule them all",
"11304 string to rule them all",
"11305 string to rule them all",
"11306 string to rule them all",
"11307 string to rule them all",
"11308 string to rule them all",
"11309 string to rule them all",
"11310 string to rule them all",
"11311 string to rule them all",
"11312 string to rule them all",
"11313 string to rule them all",
"11314 string to rule them all",
"11315 string to rule them all",
"11316 string to rule them all",
"11317 string to rule them all",
"11318 string to rule them all",
"11319 string to rule them all",
"11320 string to rule them all",
"11321 string to rule them all",
"11322 string to rule them all",
"11323 string to rule them all",
"11324 string to rule them all",
"11325 string to rule them all",
"11326 string to rule them all",
"11327 string to rule them all",
"11328 string to rule them all",
"11329 string to rule them all",
"11330 string to rule them all",
"11331 string to rule them all",
"11332 string to rule them all",
"11333 string to rule them all",
"11334 string to rule them all",
"11335 string to rule them all",
"11336 string to rule them all",
"11337 string to rule them all",
"11338 string to rule them all",
"11339 string to rule them all",
"11340 string to rule them all",
"11341 string to rule them all",
"11342 string to rule them all",
"11343 string to rule them all",
"11344 string to rule them all",
"11345 string to rule them all",
"11346 string to rule them all",
"11347 string to rule them all",
"11348 string to rule them all",
"11349 string to rule them all",
"11350 string to rule them all",
"11351 string to rule them all",
"11352 string to rule them all",
"11353 string to rule them all",
"11354 string to rule them all",
"11355 string to rule them all",
"11356 string to rule them all",
"11357 string to rule them all",
"11358 string to rule them all",
"11359 string to rule them all",
"11360 string to rule them all",
"11361 string to rule them all",
"11362 string to rule them all",
"11363 string to rule them all",
"11364 string to rule them all",
"11365 string to rule them all",
"11366 string to rule them all",
"11367 string to rule them all",
"11368 string to rule them all",
"11369 string to rule them all",
"11370 string to rule them all",
"11371 string to rule them all",
"11372 string to rule them all",
"11373 string to rule them all",
"11374 string to rule them all",
"11375 string to rule them all",
"11376 string to rule them all",
"11377 string to rule them all",
"11378 string to rule them all",
"11379 string to rule them all",
"11380 string to rule them all",
"11381 string to rule them all",
"11382 string to rule them all",
"11383 string to rule them all",
"11384 string to rule them all",
"11385 string to rule them all",
"11386 string to rule them all",
"11387 string to rule them all",
"11388 string to rule them all",
"11389 string to rule them all",
"11390 string to rule them all",
"11391 string to rule them all",
"11392 string to rule them all",
"11393 string to rule them all",
"11394 string to rule them all",
"11395 string to rule them all",
"11396 string to rule them all",
"11397 string to rule them all",
"11398 string to rule them all",
"11399 string to rule them all",
"11400 string to rule them all",
"11401 string to rule them all",
"11402 string to rule them all",
"11403 string to rule them all",
"11404 string to rule them all",
"11405 string to rule them all",
"11406 string to rule them all",
"11407 string to rule them all",
"11408 string to rule them all",
"11409 string to rule them all",
"11410 string to rule them all",
"11411 string to rule them all",
"11412 string to rule them all",
"11413 string to rule them all",
"11414 string to rule them all",
"11415 string to rule them all",
"11416 string to rule them all",
"11417 string to rule them all",
"11418 string to rule them all",
"11419 string to rule them all",
"11420 string to rule them all",
"11421 string to rule them all",
"11422 string to rule them all",
"11423 string to rule them all",
"11424 string to rule them all",
"11425 string to rule them all",
"11426 string to rule them all",
"11427 string to rule them all",
"11428 string to rule them all",
"11429 string to rule them all",
"11430 string to rule them all",
"11431 string to rule them all",
"11432 string to rule them all",
"11433 string to rule them all",
"11434 string to rule them all",
"11435 string to rule them all",
"11436 string to rule them all",
"11437 string to rule them all",
"11438 string to rule them all",
"11439 string to rule them all",
"11440 string to rule them all",
"11441 string to rule them all",
"11442 string to rule them all",
"11443 string to rule them all",
"11444 string to rule them all",
"11445 string to rule them all",
"11446 string to rule them all",
"11447 string to rule them all",
"11448 string to rule them all",
"11449 string to rule them all",
"11450 string to rule them all",
"11451 string to rule them all",
"11452 string to rule them all",
"11453 string to rule them all",
"11454 string to rule them all",
"11455 string to rule them all",
"11456 string to rule them all",
"11457 string to rule them all",
"11458 string to rule them all",
"11459 string to rule them all",
"11460 string to rule them all",
"11461 string to rule them all",
"11462 string to rule them all",
"11463 string to rule them all",
"11464 string to rule them all",
"11465 string to rule them all",
"11466 string to rule them all",
"11467 string to rule them all",
"11468 string to rule them all",
"11469 string to rule them all",
"11470 string to rule them all",
"11471 string to rule them all",
"11472 string to rule them all",
"11473 string to rule them all",
"11474 string to rule them all",
"11475 string to rule them all",
"11476 string to rule them all",
"11477 string to rule them all",
"11478 string to rule them all",
"11479 string to rule them all",
"11480 string to rule them all",
"11481 string to rule them all",
"11482 string to rule them all",
"11483 string to rule them all",
"11484 string to rule them all",
"11485 string to rule them all",
"11486 string to rule them all",
"11487 string to rule them all",
"11488 string to rule them all",
"11489 string to rule them all",
"11490 string to rule them all",
"11491 string to rule them all",
"11492 string to rule them all",
"11493 string to rule them all",
"11494 string to rule them all",
"11495 string to rule them all",
"11496 string to rule them all",
"11497 string to rule them all",
"11498 string to rule them all",
"11499 string to rule them all",
"11500 string to rule them all",
"11501 string to rule them all",
"11502 string to rule them all",
"11503 string to rule them all",
"11504 string to rule them all",
"11505 string to rule them all",
"11506 string to rule them all",
"11507 string to rule them all",
"11508 string to rule them all",
"11509 string to rule them all",
"11510 string to rule them all",
"11511 string to rule them all",
"11512 string to rule them all",
"11513 string to rule them all",
"11514 string to rule them all",
"11515 string to rule them all",
"11516 string to rule them all",
"11517 string to rule them all",
"11518 string to rule them all",
"11519 string to rule them all",
"11520 string to rule them all",
"11521 string to rule them all",
"11522 string to rule them all",
"11523 string to rule them all",
"11524 string to rule them all",
"11525 string to rule them all",
"11526 string to rule them all",
"11527 string to rule them all",
"11528 string to rule them all",
"11529 string to rule them all",
"11530 string to rule them all",
"11531 string to rule them all",
"11532 string to rule them all",
"11533 string to rule them all",
"11534 string to rule them all",
"11535 string to rule them all",
"11536 string to rule them all",
"11537 string to rule them all",
"11538 string to rule them all",
"11539 string to rule them all",
"11540 string to rule them all",
"11541 string to rule them all",
"11542 string to rule them all",
"11543 string to rule them all",
"11544 string to rule them all",
"11545 string to rule them all",
"11546 string to rule them all",
"11547 string to rule them all",
"11548 string to rule them all",
"11549 string to rule them all",
"11550 string to rule them all",
"11551 string to rule them all",
"11552 string to rule them all",
"11553 string to rule them all",
"11554 string to rule them all",
"11555 string to rule them all",
"11556 string to rule them all",
"11557 string to rule them all",
"11558 string to rule them all",
"11559 string to rule them all",
"11560 string to rule them all",
"11561 string to rule them all",
"11562 string to rule them all",
"11563 string to rule them all",
"11564 string to rule them all",
"11565 string to rule them all",
"11566 string to rule them all",
"11567 string to rule them all",
"11568 string to rule them all",
"11569 string to rule them all",
"11570 string to rule them all",
"11571 string to rule them all",
"11572 string to rule them all",
"11573 string to rule them all",
"11574 string to rule them all",
"11575 string to rule them all",
"11576 string to rule them all",
"11577 string to rule them all",
"11578 string to rule them all",
"11579 string to rule them all",
"11580 string to rule them all",
"11581 string to rule them all",
"11582 string to rule them all",
"11583 string to rule them all",
"11584 string to rule them all",
"11585 string to rule them all",
"11586 string to rule them all",
"11587 string to rule them all",
"11588 string to rule them all",
"11589 string to rule them all",
"11590 string to rule them all",
"11591 string to rule them all",
"11592 string to rule them all",
"11593 string to rule them all",
"11594 string to rule them all",
"11595 string to rule them all",
"11596 string to rule them all",
"11597 string to rule them all",
"11598 string to rule them all",
"11599 string to rule them all",
"11600 string to rule them all",
"11601 string to rule them all",
"11602 string to rule them all",
"11603 string to rule them all",
"11604 string to rule them all",
"11605 string to rule them all",
"11606 string to rule them all",
"11607 string to rule them all",
"11608 string to rule them all",
"11609 string to rule them all",
"11610 string to rule them all",
"11611 string to rule them all",
"11612 string to rule them all",
"11613 string to rule them all",
"11614 string to rule them all",
"11615 string to rule them all",
"11616 string to rule them all",
"11617 string to rule them all",
"11618 string to rule them all",
"11619 string to rule them all",
"11620 string to rule them all",
"11621 string to rule them all",
"11622 string to rule them all",
"11623 string to rule them all",
"11624 string to rule them all",
"11625 string to rule them all",
"11626 string to rule them all",
"11627 string to rule them all",
"11628 string to rule them all",
"11629 string to rule them all",
"11630 string to rule them all",
"11631 string to rule them all",
"11632 string to rule them all",
"11633 string to rule them all",
"11634 string to rule them all",
"11635 string to rule them all",
"11636 string to rule them all",
"11637 string to rule them all",
"11638 string to rule them all",
"11639 string to rule them all",
"11640 string to rule them all",
"11641 string to rule them all",
"11642 string to rule them all",
"11643 string to rule them all",
"11644 string to rule them all",
"11645 string to rule them all",
"11646 string to rule them all",
"11647 string to rule them all",
"11648 string to rule them all",
"11649 string to rule them all",
"11650 string to rule them all",
"11651 string to rule them all",
"11652 string to rule them all",
"11653 string to rule them all",
"11654 string to rule them all",
"11655 string to rule them all",
"11656 string to rule them all",
"11657 string to rule them all",
"11658 string to rule them all",
"11659 string to rule them all",
"11660 string to rule them all",
"11661 string to rule them all",
"11662 string to rule them all",
"11663 string to rule them all",
"11664 string to rule them all",
"11665 string to rule them all",
"11666 string to rule them all",
"11667 string to rule them all",
"11668 string to rule them all",
"11669 string to rule them all",
"11670 string to rule them all",
"11671 string to rule them all",
"11672 string to rule them all",
"11673 string to rule them all",
"11674 string to rule them all",
"11675 string to rule them all",
"11676 string to rule them all",
"11677 string to rule them all",
"11678 string to rule them all",
"11679 string to rule them all",
"11680 string to rule them all",
"11681 string to rule them all",
"11682 string to rule them all",
"11683 string to rule them all",
"11684 string to rule them all",
"11685 string to rule them all",
"11686 string to rule them all",
"11687 string to rule them all",
"11688 string to rule them all",
"11689 string to rule them all",
"11690 string to rule them all",
"11691 string to rule them all",
"11692 string to rule them all",
"11693 string to rule them all",
"11694 string to rule them all",
"11695 string to rule them all",
"11696 string to rule them all",
"11697 string to rule them all",
"11698 string to rule them all",
"11699 string to rule them all",
"11700 string to rule them all",
"11701 string to rule them all",
"11702 string to rule them all",
"11703 string to rule them all",
"11704 string to rule them all",
"11705 string to rule them all",
"11706 string to rule them all",
"11707 string to rule them all",
"11708 string to rule them all",
"11709 string to rule them all",
"11710 string to rule them all",
"11711 string to rule them all",
"11712 string to rule them all",
"11713 string to rule them all",
"11714 string to rule them all",
"11715 string to rule them all",
"11716 string to rule them all",
"11717 string to rule them all",
"11718 string to rule them all",
"11719 string to rule them all",
"11720 string to rule them all",
"11721 string to rule them all",
"11722 string to rule them all",
"11723 string to rule them all",
"11724 string to rule them all",
"11725 string to rule them all",
"11726 string to rule them all",
"11727 string to rule them all",
"11728 string to rule them all",
"11729 string to rule them all",
"11730 string to rule them all",
"11731 string to rule them all",
"11732 string to rule them all",
"11733 string to rule them all",
"11734 string to rule them all",
"11735 string to rule them all",
"11736 string to rule them all",
"11737 string to rule them all",
"11738 string to rule them all",
"11739 string to rule them all",
"11740 string to rule them all",
"11741 string to rule them all",
"11742 string to rule them all",
"11743 string to rule them all",
"11744 string to rule them all",
"11745 string to rule them all",
"11746 string to rule them all",
"11747 string to rule them all",
"11748 string to rule them all",
"11749 string to rule them all",
"11750 string to rule them all",
"11751 string to rule them all",
"11752 string to rule them all",
"11753 string to rule them all",
"11754 string to rule them all",
"11755 string to rule them all",
"11756 string to rule them all",
"11757 string to rule them all",
"11758 string to rule them all",
"11759 string to rule them all",
"11760 string to rule them all",
"11761 string to rule them all",
"11762 string to rule them all",
"11763 string to rule them all",
"11764 string to rule them all",
"11765 string to rule them all",
"11766 string to rule them all",
"11767 string to rule them all",
"11768 string to rule them all",
"11769 string to rule them all",
"11770 string to rule them all",
"11771 string to rule them all",
"11772 string to rule them all",
"11773 string to rule them all",
"11774 string to rule them all",
"11775 string to rule them all",
"11776 string to rule them all",
"11777 string to rule them all",
"11778 string to rule them all",
"11779 string to rule them all",
"11780 string to rule them all",
"11781 string to rule them all",
"11782 string to rule them all",
"11783 string to rule them all",
"11784 string to rule them all",
"11785 string to rule them all",
"11786 string to rule them all",
"11787 string to rule them all",
"11788 string to rule them all",
"11789 string to rule them all",
"11790 string to rule them all",
"11791 string to rule them all",
"11792 string to rule them all",
"11793 string to rule them all",
"11794 string to rule them all",
"11795 string to rule them all",
"11796 string to rule them all",
"11797 string to rule them all",
"11798 string to rule them all",
"11799 string to rule them all",
"11800 string to rule them all",
"11801 string to rule them all",
"11802 string to rule them all",
"11803 string to rule them all",
"11804 string to rule them all",
"11805 string to rule them all",
"11806 string to rule them all",
"11807 string to rule them all",
"11808 string to rule them all",
"11809 string to rule them all",
"11810 string to rule them all",
"11811 string to rule them all",
"11812 string to rule them all",
"11813 string to rule them all",
"11814 string to rule them all",
"11815 string to rule them all",
"11816 string to rule them all",
"11817 string to rule them all",
"11818 string to rule them all",
"11819 string to rule them all",
"11820 string to rule them all",
"11821 string to rule them all",
"11822 string to rule them all",
"11823 string to rule them all",
"11824 string to rule them all",
"11825 string to rule them all",
"11826 string to rule them all",
"11827 string to rule them all",
"11828 string to rule them all",
"11829 string to rule them all",
"11830 string to rule them all",
"11831 string to rule them all",
"11832 string to rule them all",
"11833 string to rule them all",
"11834 string to rule them all",
"11835 string to rule them all",
"11836 string to rule them all",
"11837 string to rule them all",
"11838 string to rule them all",
"11839 string to rule them all",
"11840 string to rule them all",
"11841 string to rule them all",
"11842 string to rule them all",
"11843 string to rule them all",
"11844 string to rule them all",
"11845 string to rule them all",
"11846 string to rule them all",
"11847 string to rule them all",
"11848 string to rule them all",
"11849 string to rule them all",
"11850 string to rule them all",
"11851 string to rule them all",
"11852 string to rule them all",
"11853 string to rule them all",
"11854 string to rule them all",
"11855 string to rule them all",
"11856 string to rule them all",
"11857 string to rule them all",
"11858 string to rule them all",
"11859 string to rule them all",
"11860 string to rule them all",
"11861 string to rule them all",
"11862 string to rule them all",
"11863 string to rule them all",
"11864 string to rule them all",
"11865 string to rule them all",
"11866 string to rule them all",
"11867 string to rule them all",
"11868 string to rule them all",
"11869 string to rule them all",
"11870 string to rule them all",
"11871 string to rule them all",
"11872 string to rule them all",
"11873 string to rule them all",
"11874 string to rule them all",
"11875 string to rule them all",
"11876 string to rule them all",
"11877 string to rule them all",
"11878 string to rule them all",
"11879 string to rule them all",
"11880 string to rule them all",
"11881 string to rule them all",
"11882 string to rule them all",
"11883 string to rule them all",
"11884 string to rule them all",
"11885 string to rule them all",
"11886 string to rule them all",
"11887 string to rule them all",
"11888 string to rule them all",
"11889 string to rule them all",
"11890 string to rule them all",
"11891 string to rule them all",
"11892 string to rule them all",
"11893 string to rule them all",
"11894 string to rule them all",
"11895 string to rule them all",
"11896 string to rule them all",
"11897 string to rule them all",
"11898 string to rule them all",
"11899 string to rule them all",
"11900 string to rule them all",
"11901 string to rule them all",
"11902 string to rule them all",
"11903 string to rule them all",
"11904 string to rule them all",
"11905 string to rule them all",
"11906 string to rule them all",
"11907 string to rule them all",
"11908 string to rule them all",
"11909 string to rule them all",
"11910 string to rule them all",
"11911 string to rule them all",
"11912 string to rule them all",
"11913 string to rule them all",
"11914 string to rule them all",
"11915 string to rule them all",
"11916 string to rule them all",
"11917 string to rule them all",
"11918 string to rule them all",
"11919 string to rule them all",
"11920 string to rule them all",
"11921 string to rule them all",
"11922 string to rule them all",
"11923 string to rule them all",
"11924 string to rule them all",
"11925 string to rule them all",
"11926 string to rule them all",
"11927 string to rule them all",
"11928 string to rule them all",
"11929 string to rule them all",
"11930 string to rule them all",
"11931 string to rule them all",
"11932 string to rule them all",
"11933 string to rule them all",
"11934 string to rule them all",
"11935 string to rule them all",
"11936 string to rule them all",
"11937 string to rule them all",
"11938 string to rule them all",
"11939 string to rule them all",
"11940 string to rule them all",
"11941 string to rule them all",
"11942 string to rule them all",
"11943 string to rule them all",
"11944 string to rule them all",
"11945 string to rule them all",
"11946 string to rule them all",
"11947 string to rule them all",
"11948 string to rule them all",
"11949 string to rule them all",
"11950 string to rule them all",
"11951 string to rule them all",
"11952 string to rule them all",
"11953 string to rule them all",
"11954 string to rule them all",
"11955 string to rule them all",
"11956 string to rule them all",
"11957 string to rule them all",
"11958 string to rule them all",
"11959 string to rule them all",
"11960 string to rule them all",
"11961 string to rule them all",
"11962 string to rule them all",
"11963 string to rule them all",
"11964 string to rule them all",
"11965 string to rule them all",
"11966 string to rule them all",
"11967 string to rule them all",
"11968 string to rule them all",
"11969 string to rule them all",
"11970 string to rule them all",
"11971 string to rule them all",
"11972 string to rule them all",
"11973 string to rule them all",
"11974 string to rule them all",
"11975 string to rule them all",
"11976 string to rule them all",
"11977 string to rule them all",
"11978 string to rule them all",
"11979 string to rule them all",
"11980 string to rule them all",
"11981 string to rule them all",
"11982 string to rule them all",
"11983 string to rule them all",
"11984 string to rule them all",
"11985 string to rule them all",
"11986 string to rule them all",
"11987 string to rule them all",
"11988 string to rule them all",
"11989 string to rule them all",
"11990 string to rule them all",
"11991 string to rule them all",
"11992 string to rule them all",
"11993 string to rule them all",
"11994 string to rule them all",
"11995 string to rule them all",
"11996 string to rule them all",
"11997 string to rule them all",
"11998 string to rule them all",
"11999 string to rule them all",
"12000 string to rule them all",
"12001 string to rule them all",
"12002 string to rule them all",
"12003 string to rule them all",
"12004 string to rule them all",
"12005 string to rule them all",
"12006 string to rule them all",
"12007 string to rule them all",
"12008 string to rule them all",
"12009 string to rule them all",
"12010 string to rule them all",
"12011 string to rule them all",
"12012 string to rule them all",
"12013 string to rule them all",
"12014 string to rule them all",
"12015 string to rule them all",
"12016 string to rule them all",
"12017 string to rule them all",
"12018 string to rule them all",
"12019 string to rule them all",
"12020 string to rule them all",
"12021 string to rule them all",
"12022 string to rule them all",
"12023 string to rule them all",
"12024 string to rule them all",
"12025 string to rule them all",
"12026 string to rule them all",
"12027 string to rule them all",
"12028 string to rule them all",
"12029 string to rule them all",
"12030 string to rule them all",
"12031 string to rule them all",
"12032 string to rule them all",
"12033 string to rule them all",
"12034 string to rule them all",
"12035 string to rule them all",
"12036 string to rule them all",
"12037 string to rule them all",
"12038 string to rule them all",
"12039 string to rule them all",
"12040 string to rule them all",
"12041 string to rule them all",
"12042 string to rule them all",
"12043 string to rule them all",
"12044 string to rule them all",
"12045 string to rule them all",
"12046 string to rule them all",
"12047 string to rule them all",
"12048 string to rule them all",
"12049 string to rule them all",
"12050 string to rule them all",
"12051 string to rule them all",
"12052 string to rule them all",
"12053 string to rule them all",
"12054 string to rule them all",
"12055 string to rule them all",
"12056 string to rule them all",
"12057 string to rule them all",
"12058 string to rule them all",
"12059 string to rule them all",
"12060 string to rule them all",
"12061 string to rule them all",
"12062 string to rule them all",
"12063 string to rule them all",
"12064 string to rule them all",
"12065 string to rule them all",
"12066 string to rule them all",
"12067 string to rule them all",
"12068 string to rule them all",
"12069 string to rule them all",
"12070 string to rule them all",
"12071 string to rule them all",
"12072 string to rule them all",
"12073 string to rule them all",
"12074 string to rule them all",
"12075 string to rule them all",
"12076 string to rule them all",
"12077 string to rule them all",
"12078 string to rule them all",
"12079 string to rule them all",
"12080 string to rule them all",
"12081 string to rule them all",
"12082 string to rule them all",
"12083 string to rule them all",
"12084 string to rule them all",
"12085 string to rule them all",
"12086 string to rule them all",
"12087 string to rule them all",
"12088 string to rule them all",
"12089 string to rule them all",
"12090 string to rule them all",
"12091 string to rule them all",
"12092 string to rule them all",
"12093 string to rule them all",
"12094 string to rule them all",
"12095 string to rule them all",
"12096 string to rule them all",
"12097 string to rule them all",
"12098 string to rule them all",
"12099 string to rule them all",
"12100 string to rule them all",
"12101 string to rule them all",
"12102 string to rule them all",
"12103 string to rule them all",
"12104 string to rule them all",
"12105 string to rule them all",
"12106 string to rule them all",
"12107 string to rule them all",
"12108 string to rule them all",
"12109 string to rule them all",
"12110 string to rule them all",
"12111 string to rule them all",
"12112 string to rule them all",
"12113 string to rule them all",
"12114 string to rule them all",
"12115 string to rule them all",
"12116 string to rule them all",
"12117 string to rule them all",
"12118 string to rule them all",
"12119 string to rule them all",
"12120 string to rule them all",
"12121 string to rule them all",
"12122 string to rule them all",
"12123 string to rule them all",
"12124 string to rule them all",
"12125 string to rule them all",
"12126 string to rule them all",
"12127 string to rule them all",
"12128 string to rule them all",
"12129 string to rule them all",
"12130 string to rule them all",
"12131 string to rule them all",
"12132 string to rule them all",
"12133 string to rule them all",
"12134 string to rule them all",
"12135 string to rule them all",
"12136 string to rule them all",
"12137 string to rule them all",
"12138 string to rule them all",
"12139 string to rule them all",
"12140 string to rule them all",
"12141 string to rule them all",
"12142 string to rule them all",
"12143 string to rule them all",
"12144 string to rule them all",
"12145 string to rule them all",
"12146 string to rule them all",
"12147 string to rule them all",
"12148 string to rule them all",
"12149 string to rule them all",
"12150 string to rule them all",
"12151 string to rule them all",
"12152 string to rule them all",
"12153 string to rule them all",
"12154 string to rule them all",
"12155 string to rule them all",
"12156 string to rule them all",
"12157 string to rule them all",
"12158 string to rule them all",
"12159 string to rule them all",
"12160 string to rule them all",
"12161 string to rule them all",
"12162 string to rule them all",
"12163 string to rule them all",
"12164 string to rule them all",
"12165 string to rule them all",
"12166 string to rule them all",
"12167 string to rule them all",
"12168 string to rule them all",
"12169 string to rule them all",
"12170 string to rule them all",
"12171 string to rule them all",
"12172 string to rule them all",
"12173 string to rule them all",
"12174 string to rule them all",
"12175 string to rule them all",
"12176 string to rule them all",
"12177 string to rule them all",
"12178 string to rule them all",
"12179 string to rule them all",
"12180 string to rule them all",
"12181 string to rule them all",
"12182 string to rule them all",
"12183 string to rule them all",
"12184 string to rule them all",
"12185 string to rule them all",
"12186 string to rule them all",
"12187 string to rule them all",
"12188 string to rule them all",
"12189 string to rule them all",
"12190 string to rule them all",
"12191 string to rule them all",
"12192 string to rule them all",
"12193 string to rule them all",
"12194 string to rule them all",
"12195 string to rule them all",
"12196 string to rule them all",
"12197 string to rule them all",
"12198 string to rule them all",
"12199 string to rule them all",
"12200 string to rule them all",
"12201 string to rule them all",
"12202 string to rule them all",
"12203 string to rule them all",
"12204 string to rule them all",
"12205 string to rule them all",
"12206 string to rule them all",
"12207 string to rule them all",
"12208 string to rule them all",
"12209 string to rule them all",
"12210 string to rule them all",
"12211 string to rule them all",
"12212 string to rule them all",
"12213 string to rule them all",
"12214 string to rule them all",
"12215 string to rule them all",
"12216 string to rule them all",
"12217 string to rule them all",
"12218 string to rule them all",
"12219 string to rule them all",
"12220 string to rule them all",
"12221 string to rule them all",
"12222 string to rule them all",
"12223 string to rule them all",
"12224 string to rule them all",
"12225 string to rule them all",
"12226 string to rule them all",
"12227 string to rule them all",
"12228 string to rule them all",
"12229 string to rule them all",
"12230 string to rule them all",
"12231 string to rule them all",
"12232 string to rule them all",
"12233 string to rule them all",
"12234 string to rule them all",
"12235 string to rule them all",
"12236 string to rule them all",
"12237 string to rule them all",
"12238 string to rule them all",
"12239 string to rule them all",
"12240 string to rule them all",
"12241 string to rule them all",
"12242 string to rule them all",
"12243 string to rule them all",
"12244 string to rule them all",
"12245 string to rule them all",
"12246 string to rule them all",
"12247 string to rule them all",
"12248 string to rule them all",
"12249 string to rule them all",
"12250 string to rule them all",
"12251 string to rule them all",
"12252 string to rule them all",
"12253 string to rule them all",
"12254 string to rule them all",
"12255 string to rule them all",
"12256 string to rule them all",
"12257 string to rule them all",
"12258 string to rule them all",
"12259 string to rule them all",
"12260 string to rule them all",
"12261 string to rule them all",
"12262 string to rule them all",
"12263 string to rule them all",
"12264 string to rule them all",
"12265 string to rule them all",
"12266 string to rule them all",
"12267 string to rule them all",
"12268 string to rule them all",
"12269 string to rule them all",
"12270 string to rule them all",
"12271 string to rule them all",
"12272 string to rule them all",
"12273 string to rule them all",
"12274 string to rule them all",
"12275 string to rule them all",
"12276 string to rule them all",
"12277 string to rule them all",
"12278 string to rule them all",
"12279 string to rule them all",
"12280 string to rule them all",
"12281 string to rule them all",
"12282 string to rule them all",
"12283 string to rule them all",
"12284 string to rule them all",
"12285 string to rule them all",
"12286 string to rule them all",
"12287 string to rule them all",
"12288 string to rule them all",
"12289 string to rule them all",
"12290 string to rule them all",
"12291 string to rule them all",
"12292 string to rule them all",
"12293 string to rule them all",
"12294 string to rule them all",
"12295 string to rule them all",
"12296 string to rule them all",
"12297 string to rule them all",
"12298 string to rule them all",
"12299 string to rule them all",
"12300 string to rule them all",
"12301 string to rule them all",
"12302 string to rule them all",
"12303 string to rule them all",
"12304 string to rule them all",
"12305 string to rule them all",
"12306 string to rule them all",
"12307 string to rule them all",
"12308 string to rule them all",
"12309 string to rule them all",
"12310 string to rule them all",
"12311 string to rule them all",
"12312 string to rule them all",
"12313 string to rule them all",
"12314 string to rule them all",
"12315 string to rule them all",
"12316 string to rule them all",
"12317 string to rule them all",
"12318 string to rule them all",
"12319 string to rule them all",
"12320 string to rule them all",
"12321 string to rule them all",
"12322 string to rule them all",
"12323 string to rule them all",
"12324 string to rule them all",
"12325 string to rule them all",
"12326 string to rule them all",
"12327 string to rule them all",
"12328 string to rule them all",
"12329 string to rule them all",
"12330 string to rule them all",
"12331 string to rule them all",
"12332 string to rule them all",
"12333 string to rule them all",
"12334 string to rule them all",
"12335 string to rule them all",
"12336 string to rule them all",
"12337 string to rule them all",
"12338 string to rule them all",
"12339 string to rule them all",
"12340 string to rule them all",
"12341 string to rule them all",
"12342 string to rule them all",
"12343 string to rule them all",
"12344 string to rule them all",
"12345 string to rule them all",
"12346 string to rule them all",
"12347 string to rule them all",
"12348 string to rule them all",
"12349 string to rule them all",
"12350 string to rule them all",
"12351 string to rule them all",
"12352 string to rule them all",
"12353 string to rule them all",
"12354 string to rule them all",
"12355 string to rule them all",
"12356 string to rule them all",
"12357 string to rule them all",
"12358 string to rule them all",
"12359 string to rule them all",
"12360 string to rule them all",
"12361 string to rule them all",
"12362 string to rule them all",
"12363 string to rule them all",
"12364 string to rule them all",
"12365 string to rule them all",
"12366 string to rule them all",
"12367 string to rule them all",
"12368 string to rule them all",
"12369 string to rule them all",
"12370 string to rule them all",
"12371 string to rule them all",
"12372 string to rule them all",
"12373 string to rule them all",
"12374 string to rule them all",
"12375 string to rule them all",
"12376 string to rule them all",
"12377 string to rule them all",
"12378 string to rule them all",
"12379 string to rule them all",
"12380 string to rule them all",
"12381 string to rule them all",
"12382 string to rule them all",
"12383 string to rule them all",
"12384 string to rule them all",
"12385 string to rule them all",
"12386 string to rule them all",
"12387 string to rule them all",
"12388 string to rule them all",
"12389 string to rule them all",
"12390 string to rule them all",
"12391 string to rule them all",
"12392 string to rule them all",
"12393 string to rule them all",
"12394 string to rule them all",
"12395 string to rule them all",
"12396 string to rule them all",
"12397 string to rule them all",
"12398 string to rule them all",
"12399 string to rule them all",
"12400 string to rule them all",
"12401 string to rule them all",
"12402 string to rule them all",
"12403 string to rule them all",
"12404 string to rule them all",
"12405 string to rule them all",
"12406 string to rule them all",
"12407 string to rule them all",
"12408 string to rule them all",
"12409 string to rule them all",
"12410 string to rule them all",
"12411 string to rule them all",
"12412 string to rule them all",
"12413 string to rule them all",
"12414 string to rule them all",
"12415 string to rule them all",
"12416 string to rule them all",
"12417 string to rule them all",
"12418 string to rule them all",
"12419 string to rule them all",
"12420 string to rule them all",
"12421 string to rule them all",
"12422 string to rule them all",
"12423 string to rule them all",
"12424 string to rule them all",
"12425 string to rule them all",
"12426 string to rule them all",
"12427 string to rule them all",
"12428 string to rule them all",
"12429 string to rule them all",
"12430 string to rule them all",
"12431 string to rule them all",
"12432 string to rule them all",
"12433 string to rule them all",
"12434 string to rule them all",
"12435 string to rule them all",
"12436 string to rule them all",
"12437 string to rule them all",
"12438 string to rule them all",
"12439 string to rule them all",
"12440 string to rule them all",
"12441 string to rule them all",
"12442 string to rule them all",
"12443 string to rule them all",
"12444 string to rule them all",
"12445 string to rule them all",
"12446 string to rule them all",
"12447 string to rule them all",
"12448 string to rule them all",
"12449 string to rule them all",
"12450 string to rule them all",
"12451 string to rule them all",
"12452 string to rule them all",
"12453 string to rule them all",
"12454 string to rule them all",
"12455 string to rule them all",
"12456 string to rule them all",
"12457 string to rule them all",
"12458 string to rule them all",
"12459 string to rule them all",
"12460 string to rule them all",
"12461 string to rule them all",
"12462 string to rule them all",
"12463 string to rule them all",
"12464 string to rule them all",
"12465 string to rule them all",
"12466 string to rule them all",
"12467 string to rule them all",
"12468 string to rule them all",
"12469 string to rule them all",
"12470 string to rule them all",
"12471 string to rule them all",
"12472 string to rule them all",
"12473 string to rule them all",
"12474 string to rule them all",
"12475 string to rule them all",
"12476 string to rule them all",
"12477 string to rule them all",
"12478 string to rule them all",
"12479 string to rule them all",
"12480 string to rule them all",
"12481 string to rule them all",
"12482 string to rule them all",
"12483 string to rule them all",
"12484 string to rule them all",
"12485 string to rule them all",
"12486 string to rule them all",
"12487 string to rule them all",
"12488 string to rule them all",
"12489 string to rule them all",
"12490 string to rule them all",
"12491 string to rule them all",
"12492 string to rule them all",
"12493 string to rule them all",
"12494 string to rule them all",
"12495 string to rule them all",
"12496 string to rule them all",
"12497 string to rule them all",
"12498 string to rule them all",
"12499 string to rule them all",
"12500 string to rule them all",
"12501 string to rule them all",
"12502 string to rule them all",
"12503 string to rule them all",
"12504 string to rule them all",
"12505 string to rule them all",
"12506 string to rule them all",
"12507 string to rule them all",
"12508 string to rule them all",
"12509 string to rule them all",
"12510 string to rule them all",
"12511 string to rule them all",
"12512 string to rule them all",
"12513 string to rule them all",
"12514 string to rule them all",
"12515 string to rule them all",
"12516 string to rule them all",
"12517 string to rule them all",
"12518 string to rule them all",
"12519 string to rule them all",
"12520 string to rule them all",
"12521 string to rule them all",
"12522 string to rule them all",
"12523 string to rule them all",
"12524 string to rule them all",
"12525 string to rule them all",
"12526 string to rule them all",
"12527 string to rule them all",
"12528 string to rule them all",
"12529 string to rule them all",
"12530 string to rule them all",
"12531 string to rule them all",
"12532 string to rule them all",
"12533 string to rule them all",
"12534 string to rule them all",
"12535 string to rule them all",
"12536 string to rule them all",
"12537 string to rule them all",
"12538 string to rule them all",
"12539 string to rule them all",
"12540 string to rule them all",
"12541 string to rule them all",
"12542 string to rule them all",
"12543 string to rule them all",
"12544 string to rule them all",
"12545 string to rule them all",
"12546 string to rule them all",
"12547 string to rule them all",
"12548 string to rule them all",
"12549 string to rule them all",
"12550 string to rule them all",
"12551 string to rule them all",
"12552 string to rule them all",
"12553 string to rule them all",
"12554 string to rule them all",
"12555 string to rule them all",
"12556 string to rule them all",
"12557 string to rule them all",
"12558 string to rule them all",
"12559 string to rule them all",
"12560 string to rule them all",
"12561 string to rule them all",
"12562 string to rule them all",
"12563 string to rule them all",
"12564 string to rule them all",
"12565 string to rule them all",
"12566 string to rule them all",
"12567 string to rule them all",
"12568 string to rule them all",
"12569 string to rule them all",
"12570 string to rule them all",
"12571 string to rule them all",
"12572 string to rule them all",
"12573 string to rule them all",
"12574 string to rule them all",
"12575 string to rule them all",
"12576 string to rule them all",
"12577 string to rule them all",
"12578 string to rule them all",
"12579 string to rule them all",
"12580 string to rule them all",
"12581 string to rule them all",
"12582 string to rule them all",
"12583 string to rule them all",
"12584 string to rule them all",
"12585 string to rule them all",
"12586 string to rule them all",
"12587 string to rule them all",
"12588 string to rule them all",
"12589 string to rule them all",
"12590 string to rule them all",
"12591 string to rule them all",
"12592 string to rule them all",
"12593 string to rule them all",
"12594 string to rule them all",
"12595 string to rule them all",
"12596 string to rule them all",
"12597 string to rule them all",
"12598 string to rule them all",
"12599 string to rule them all",
"12600 string to rule them all",
"12601 string to rule them all",
"12602 string to rule them all",
"12603 string to rule them all",
"12604 string to rule them all",
"12605 string to rule them all",
"12606 string to rule them all",
"12607 string to rule them all",
"12608 string to rule them all",
"12609 string to rule them all",
"12610 string to rule them all",
"12611 string to rule them all",
"12612 string to rule them all",
"12613 string to rule them all",
"12614 string to rule them all",
"12615 string to rule them all",
"12616 string to rule them all",
"12617 string to rule them all",
"12618 string to rule them all",
"12619 string to rule them all",
"12620 string to rule them all",
"12621 string to rule them all",
"12622 string to rule them all",
"12623 string to rule them all",
"12624 string to rule them all",
"12625 string to rule them all",
"12626 string to rule them all",
"12627 string to rule them all",
"12628 string to rule them all",
"12629 string to rule them all",
"12630 string to rule them all",
"12631 string to rule them all",
"12632 string to rule them all",
"12633 string to rule them all",
"12634 string to rule them all",
"12635 string to rule them all",
"12636 string to rule them all",
"12637 string to rule them all",
"12638 string to rule them all",
"12639 string to rule them all",
"12640 string to rule them all",
"12641 string to rule them all",
"12642 string to rule them all",
"12643 string to rule them all",
"12644 string to rule them all",
"12645 string to rule them all",
"12646 string to rule them all",
"12647 string to rule them all",
"12648 string to rule them all",
"12649 string to rule them all",
"12650 string to rule them all",
"12651 string to rule them all",
"12652 string to rule them all",
"12653 string to rule them all",
"12654 string to rule them all",
"12655 string to rule them all",
"12656 string to rule them all",
"12657 string to rule them all",
"12658 string to rule them all",
"12659 string to rule them all",
"12660 string to rule them all",
"12661 string to rule them all",
"12662 string to rule them all",
"12663 string to rule them all",
"12664 string to rule them all",
"12665 string to rule them all",
"12666 string to rule them all",
"12667 string to rule them all",
"12668 string to rule them all",
"12669 string to rule them all",
"12670 string to rule them all",
"12671 string to rule them all",
"12672 string to rule them all",
"12673 string to rule them all",
"12674 string to rule them all",
"12675 string to rule them all",
"12676 string to rule them all",
"12677 string to rule them all",
"12678 string to rule them all",
"12679 string to rule them all",
"12680 string to rule them all",
"12681 string to rule them all",
"12682 string to rule them all",
"12683 string to rule them all",
"12684 string to rule them all",
"12685 string to rule them all",
"12686 string to rule them all",
"12687 string to rule them all",
"12688 string to rule them all",
"12689 string to rule them all",
"12690 string to rule them all",
"12691 string to rule them all",
"12692 string to rule them all",
"12693 string to rule them all",
"12694 string to rule them all",
"12695 string to rule them all",
"12696 string to rule them all",
"12697 string to rule them all",
"12698 string to rule them all",
"12699 string to rule them all",
"12700 string to rule them all",
"12701 string to rule them all",
"12702 string to rule them all",
"12703 string to rule them all",
"12704 string to rule them all",
"12705 string to rule them all",
"12706 string to rule them all",
"12707 string to rule them all",
"12708 string to rule them all",
"12709 string to rule them all",
"12710 string to rule them all",
"12711 string to rule them all",
"12712 string to rule them all",
"12713 string to rule them all",
"12714 string to rule them all",
"12715 string to rule them all",
"12716 string to rule them all",
"12717 string to rule them all",
"12718 string to rule them all",
"12719 string to rule them all",
"12720 string to rule them all",
"12721 string to rule them all",
"12722 string to rule them all",
"12723 string to rule them all",
"12724 string to rule them all",
"12725 string to rule them all",
"12726 string to rule them all",
"12727 string to rule them all",
"12728 string to rule them all",
"12729 string to rule them all",
"12730 string to rule them all",
"12731 string to rule them all",
"12732 string to rule them all",
"12733 string to rule them all",
"12734 string to rule them all",
"12735 string to rule them all",
"12736 string to rule them all",
"12737 string to rule them all",
"12738 string to rule them all",
"12739 string to rule them all",
"12740 string to rule them all",
"12741 string to rule them all",
"12742 string to rule them all",
"12743 string to rule them all",
"12744 string to rule them all",
"12745 string to rule them all",
"12746 string to rule them all",
"12747 string to rule them all",
"12748 string to rule them all",
"12749 string to rule them all",
"12750 string to rule them all",
"12751 string to rule them all",
"12752 string to rule them all",
"12753 string to rule them all",
"12754 string to rule them all",
"12755 string to rule them all",
"12756 string to rule them all",
"12757 string to rule them all",
"12758 string to rule them all",
"12759 string to rule them all",
"12760 string to rule them all",
"12761 string to rule them all",
"12762 string to rule them all",
"12763 string to rule them all",
"12764 string to rule them all",
"12765 string to rule them all",
"12766 string to rule them all",
"12767 string to rule them all",
"12768 string to rule them all",
"12769 string to rule them all",
"12770 string to rule them all",
"12771 string to rule them all",
"12772 string to rule them all",
"12773 string to rule them all",
"12774 string to rule them all",
"12775 string to rule them all",
"12776 string to rule them all",
"12777 string to rule them all",
"12778 string to rule them all",
"12779 string to rule them all",
"12780 string to rule them all",
"12781 string to rule them all",
"12782 string to rule them all",
"12783 string to rule them all",
"12784 string to rule them all",
"12785 string to rule them all",
"12786 string to rule them all",
"12787 string to rule them all",
"12788 string to rule them all",
"12789 string to rule them all",
"12790 string to rule them all",
"12791 string to rule them all",
"12792 string to rule them all",
"12793 string to rule them all",
"12794 string to rule them all",
"12795 string to rule them all",
"12796 string to rule them all",
"12797 string to rule them all",
"12798 string to rule them all",
"12799 string to rule them all",
"12800 string to rule them all",
"12801 string to rule them all",
"12802 string to rule them all",
"12803 string to rule them all",
"12804 string to rule them all",
"12805 string to rule them all",
"12806 string to rule them all",
"12807 string to rule them all",
"12808 string to rule them all",
"12809 string to rule them all",
"12810 string to rule them all",
"12811 string to rule them all",
"12812 string to rule them all",
"12813 string to rule them all",
"12814 string to rule them all",
"12815 string to rule them all",
"12816 string to rule them all",
"12817 string to rule them all",
"12818 string to rule them all",
"12819 string to rule them all",
"12820 string to rule them all",
"12821 string to rule them all",
"12822 string to rule them all",
"12823 string to rule them all",
"12824 string to rule them all",
"12825 string to rule them all",
"12826 string to rule them all",
"12827 string to rule them all",
"12828 string to rule them all",
"12829 string to rule them all",
"12830 string to rule them all",
"12831 string to rule them all",
"12832 string to rule them all",
"12833 string to rule them all",
"12834 string to rule them all",
"12835 string to rule them all",
"12836 string to rule them all",
"12837 string to rule them all",
"12838 string to rule them all",
"12839 string to rule them all",
"12840 string to rule them all",
"12841 string to rule them all",
"12842 string to rule them all",
"12843 string to rule them all",
"12844 string to rule them all",
"12845 string to rule them all",
"12846 string to rule them all",
"12847 string to rule them all",
"12848 string to rule them all",
"12849 string to rule them all",
"12850 string to rule them all",
"12851 string to rule them all",
"12852 string to rule them all",
"12853 string to rule them all",
"12854 string to rule them all",
"12855 string to rule them all",
"12856 string to rule them all",
"12857 string to rule them all",
"12858 string to rule them all",
"12859 string to rule them all",
"12860 string to rule them all",
"12861 string to rule them all",
"12862 string to rule them all",
"12863 string to rule them all",
"12864 string to rule them all",
"12865 string to rule them all",
"12866 string to rule them all",
"12867 string to rule them all",
"12868 string to rule them all",
"12869 string to rule them all",
"12870 string to rule them all",
"12871 string to rule them all",
"12872 string to rule them all",
"12873 string to rule them all",
"12874 string to rule them all",
"12875 string to rule them all",
"12876 string to rule them all",
"12877 string to rule them all",
"12878 string to rule them all",
"12879 string to rule them all",
"12880 string to rule them all",
"12881 string to rule them all",
"12882 string to rule them all",
"12883 string to rule them all",
"12884 string to rule them all",
"12885 string to rule them all",
"12886 string to rule them all",
"12887 string to rule them all",
"12888 string to rule them all",
"12889 string to rule them all",
"12890 string to rule them all",
"12891 string to rule them all",
"12892 string to rule them all",
"12893 string to rule them all",
"12894 string to rule them all",
"12895 string to rule them all",
"12896 string to rule them all",
"12897 string to rule them all",
"12898 string to rule them all",
"12899 string to rule them all",
"12900 string to rule them all",
"12901 string to rule them all",
"12902 string to rule them all",
"12903 string to rule them all",
"12904 string to rule them all",
"12905 string to rule them all",
"12906 string to rule them all",
"12907 string to rule them all",
"12908 string to rule them all",
"12909 string to rule them all",
"12910 string to rule them all",
"12911 string to rule them all",
"12912 string to rule them all",
"12913 string to rule them all",
"12914 string to rule them all",
"12915 string to rule them all",
"12916 string to rule them all",
"12917 string to rule them all",
"12918 string to rule them all",
"12919 string to rule them all",
"12920 string to rule them all",
"12921 string to rule them all",
"12922 string to rule them all",
"12923 string to rule them all",
"12924 string to rule them all",
"12925 string to rule them all",
"12926 string to rule them all",
"12927 string to rule them all",
"12928 string to rule them all",
"12929 string to rule them all",
"12930 string to rule them all",
"12931 string to rule them all",
"12932 string to rule them all",
"12933 string to rule them all",
"12934 string to rule them all",
"12935 string to rule them all",
"12936 string to rule them all",
"12937 string to rule them all",
"12938 string to rule them all",
"12939 string to rule them all",
"12940 string to rule them all",
"12941 string to rule them all",
"12942 string to rule them all",
"12943 string to rule them all",
"12944 string to rule them all",
"12945 string to rule them all",
"12946 string to rule them all",
"12947 string to rule them all",
"12948 string to rule them all",
"12949 string to rule them all",
"12950 string to rule them all",
"12951 string to rule them all",
"12952 string to rule them all",
"12953 string to rule them all",
"12954 string to rule them all",
"12955 string to rule them all",
"12956 string to rule them all",
"12957 string to rule them all",
"12958 string to rule them all",
"12959 string to rule them all",
"12960 string to rule them all",
"12961 string to rule them all",
"12962 string to rule them all",
"12963 string to rule them all",
"12964 string to rule them all",
"12965 string to rule them all",
"12966 string to rule them all",
"12967 string to rule them all",
"12968 string to rule them all",
"12969 string to rule them all",
"12970 string to rule them all",
"12971 string to rule them all",
"12972 string to rule them all",
"12973 string to rule them all",
"12974 string to rule them all",
"12975 string to rule them all",
"12976 string to rule them all",
"12977 string to rule them all",
"12978 string to rule them all",
"12979 string to rule them all",
"12980 string to rule them all",
"12981 string to rule them all",
"12982 string to rule them all",
"12983 string to rule them all",
"12984 string to rule them all",
"12985 string to rule them all",
"12986 string to rule them all",
"12987 string to rule them all",
"12988 string to rule them all",
"12989 string to rule them all",
"12990 string to rule them all",
"12991 string to rule them all",
"12992 string to rule them all",
"12993 string to rule them all",
"12994 string to rule them all",
"12995 string to rule them all",
"12996 string to rule them all",
"12997 string to rule them all",
"12998 string to rule them all",
"12999 string to rule them all",
"13000 string to rule them all",
"13001 string to rule them all",
"13002 string to rule them all",
"13003 string to rule them all",
"13004 string to rule them all",
"13005 string to rule them all",
"13006 string to rule them all",
"13007 string to rule them all",
"13008 string to rule them all",
"13009 string to rule them all",
"13010 string to rule them all",
"13011 string to rule them all",
"13012 string to rule them all",
"13013 string to rule them all",
"13014 string to rule them all",
"13015 string to rule them all",
"13016 string to rule them all",
"13017 string to rule them all",
"13018 string to rule them all",
"13019 string to rule them all",
"13020 string to rule them all",
"13021 string to rule them all",
"13022 string to rule them all",
"13023 string to rule them all",
"13024 string to rule them all",
"13025 string to rule them all",
"13026 string to rule them all",
"13027 string to rule them all",
"13028 string to rule them all",
"13029 string to rule them all",
"13030 string to rule them all",
"13031 string to rule them all",
"13032 string to rule them all",
"13033 string to rule them all",
"13034 string to rule them all",
"13035 string to rule them all",
"13036 string to rule them all",
"13037 string to rule them all",
"13038 string to rule them all",
"13039 string to rule them all",
"13040 string to rule them all",
"13041 string to rule them all",
"13042 string to rule them all",
"13043 string to rule them all",
"13044 string to rule them all",
"13045 string to rule them all",
"13046 string to rule them all",
"13047 string to rule them all",
"13048 string to rule them all",
"13049 string to rule them all",
"13050 string to rule them all",
"13051 string to rule them all",
"13052 string to rule them all",
"13053 string to rule them all",
"13054 string to rule them all",
"13055 string to rule them all",
"13056 string to rule them all",
"13057 string to rule them all",
"13058 string to rule them all",
"13059 string to rule them all",
"13060 string to rule them all",
"13061 string to rule them all",
"13062 string to rule them all",
"13063 string to rule them all",
"13064 string to rule them all",
"13065 string to rule them all",
"13066 string to rule them all",
"13067 string to rule them all",
"13068 string to rule them all",
"13069 string to rule them all",
"13070 string to rule them all",
"13071 string to rule them all",
"13072 string to rule them all",
"13073 string to rule them all",
"13074 string to rule them all",
"13075 string to rule them all",
"13076 string to rule them all",
"13077 string to rule them all",
"13078 string to rule them all",
"13079 string to rule them all",
"13080 string to rule them all",
"13081 string to rule them all",
"13082 string to rule them all",
"13083 string to rule them all",
"13084 string to rule them all",
"13085 string to rule them all",
"13086 string to rule them all",
"13087 string to rule them all",
"13088 string to rule them all",
"13089 string to rule them all",
"13090 string to rule them all",
"13091 string to rule them all",
"13092 string to rule them all",
"13093 string to rule them all",
"13094 string to rule them all",
"13095 string to rule them all",
"13096 string to rule them all",
"13097 string to rule them all",
"13098 string to rule them all",
"13099 string to rule them all",
"13100 string to rule them all",
"13101 string to rule them all",
"13102 string to rule them all",
"13103 string to rule them all",
"13104 string to rule them all",
"13105 string to rule them all",
"13106 string to rule them all",
"13107 string to rule them all",
"13108 string to rule them all",
"13109 string to rule them all",
"13110 string to rule them all",
"13111 string to rule them all",
"13112 string to rule them all",
"13113 string to rule them all",
"13114 string to rule them all",
"13115 string to rule them all",
"13116 string to rule them all",
"13117 string to rule them all",
"13118 string to rule them all",
"13119 string to rule them all",
"13120 string to rule them all",
"13121 string to rule them all",
"13122 string to rule them all",
"13123 string to rule them all",
"13124 string to rule them all",
"13125 string to rule them all",
"13126 string to rule them all",
"13127 string to rule them all",
"13128 string to rule them all",
"13129 string to rule them all",
"13130 string to rule them all",
"13131 string to rule them all",
"13132 string to rule them all",
"13133 string to rule them all",
"13134 string to rule them all",
"13135 string to rule them all",
"13136 string to rule them all",
"13137 string to rule them all",
"13138 string to rule them all",
"13139 string to rule them all",
"13140 string to rule them all",
"13141 string to rule them all",
"13142 string to rule them all",
"13143 string to rule them all",
"13144 string to rule them all",
"13145 string to rule them all",
"13146 string to rule them all",
"13147 string to rule them all",
"13148 string to rule them all",
"13149 string to rule them all",
"13150 string to rule them all",
"13151 string to rule them all",
"13152 string to rule them all",
"13153 string to rule them all",
"13154 string to rule them all",
"13155 string to rule them all",
"13156 string to rule them all",
"13157 string to rule them all",
"13158 string to rule them all",
"13159 string to rule them all",
"13160 string to rule them all",
"13161 string to rule them all",
"13162 string to rule them all",
"13163 string to rule them all",
"13164 string to rule them all",
"13165 string to rule them all",
"13166 string to rule them all",
"13167 string to rule them all",
"13168 string to rule them all",
"13169 string to rule them all",
"13170 string to rule them all",
"13171 string to rule them all",
"13172 string to rule them all",
"13173 string to rule them all",
"13174 string to rule them all",
"13175 string to rule them all",
"13176 string to rule them all",
"13177 string to rule them all",
"13178 string to rule them all",
"13179 string to rule them all",
"13180 string to rule them all",
"13181 string to rule them all",
"13182 string to rule them all",
"13183 string to rule them all",
"13184 string to rule them all",
"13185 string to rule them all",
"13186 string to rule them all",
"13187 string to rule them all",
"13188 string to rule them all",
"13189 string to rule them all",
"13190 string to rule them all",
"13191 string to rule them all",
"13192 string to rule them all",
"13193 string to rule them all",
"13194 string to rule them all",
"13195 string to rule them all",
"13196 string to rule them all",
"13197 string to rule them all",
"13198 string to rule them all",
"13199 string to rule them all",
"13200 string to rule them all",
"13201 string to rule them all",
"13202 string to rule them all",
"13203 string to rule them all",
"13204 string to rule them all",
"13205 string to rule them all",
"13206 string to rule them all",
"13207 string to rule them all",
"13208 string to rule them all",
"13209 string to rule them all",
"13210 string to rule them all",
"13211 string to rule them all",
"13212 string to rule them all",
"13213 string to rule them all",
"13214 string to rule them all",
"13215 string to rule them all",
"13216 string to rule them all",
"13217 string to rule them all",
"13218 string to rule them all",
"13219 string to rule them all",
"13220 string to rule them all",
"13221 string to rule them all",
"13222 string to rule them all",
"13223 string to rule them all",
"13224 string to rule them all",
"13225 string to rule them all",
"13226 string to rule them all",
"13227 string to rule them all",
"13228 string to rule them all",
"13229 string to rule them all",
"13230 string to rule them all",
"13231 string to rule them all",
"13232 string to rule them all",
"13233 string to rule them all",
"13234 string to rule them all",
"13235 string to rule them all",
"13236 string to rule them all",
"13237 string to rule them all",
"13238 string to rule them all",
"13239 string to rule them all",
"13240 string to rule them all",
"13241 string to rule them all",
"13242 string to rule them all",
"13243 string to rule them all",
"13244 string to rule them all",
"13245 string to rule them all",
"13246 string to rule them all",
"13247 string to rule them all",
"13248 string to rule them all",
"13249 string to rule them all",
"13250 string to rule them all",
"13251 string to rule them all",
"13252 string to rule them all",
"13253 string to rule them all",
"13254 string to rule them all",
"13255 string to rule them all",
"13256 string to rule them all",
"13257 string to rule them all",
"13258 string to rule them all",
"13259 string to rule them all",
"13260 string to rule them all",
"13261 string to rule them all",
"13262 string to rule them all",
"13263 string to rule them all",
"13264 string to rule them all",
"13265 string to rule them all",
"13266 string to rule them all",
"13267 string to rule them all",
"13268 string to rule them all",
"13269 string to rule them all",
"13270 string to rule them all",
"13271 string to rule them all",
"13272 string to rule them all",
"13273 string to rule them all",
"13274 string to rule them all",
"13275 string to rule them all",
"13276 string to rule them all",
"13277 string to rule them all",
"13278 string to rule them all",
"13279 string to rule them all",
"13280 string to rule them all",
"13281 string to rule them all",
"13282 string to rule them all",
"13283 string to rule them all",
"13284 string to rule them all",
"13285 string to rule them all",
"13286 string to rule them all",
"13287 string to rule them all",
"13288 string to rule them all",
"13289 string to rule them all",
"13290 string to rule them all",
"13291 string to rule them all",
"13292 string to rule them all",
"13293 string to rule them all",
"13294 string to rule them all",
"13295 string to rule them all",
"13296 string to rule them all",
"13297 string to rule them all",
"13298 string to rule them all",
"13299 string to rule them all",
"13300 string to rule them all",
"13301 string to rule them all",
"13302 string to rule them all",
"13303 string to rule them all",
"13304 string to rule them all",
"13305 string to rule them all",
"13306 string to rule them all",
"13307 string to rule them all",
"13308 string to rule them all",
"13309 string to rule them all",
"13310 string to rule them all",
"13311 string to rule them all",
"13312 string to rule them all",
"13313 string to rule them all",
"13314 string to rule them all",
"13315 string to rule them all",
"13316 string to rule them all",
"13317 string to rule them all",
"13318 string to rule them all",
"13319 string to rule them all",
"13320 string to rule them all",
"13321 string to rule them all",
"13322 string to rule them all",
"13323 string to rule them all",
"13324 string to rule them all",
"13325 string to rule them all",
"13326 string to rule them all",
"13327 string to rule them all",
"13328 string to rule them all",
"13329 string to rule them all",
"13330 string to rule them all",
"13331 string to rule them all",
"13332 string to rule them all",
"13333 string to rule them all",
"13334 string to rule them all",
"13335 string to rule them all",
"13336 string to rule them all",
"13337 string to rule them all",
"13338 string to rule them all",
"13339 string to rule them all",
"13340 string to rule them all",
"13341 string to rule them all",
"13342 string to rule them all",
"13343 string to rule them all",
"13344 string to rule them all",
"13345 string to rule them all",
"13346 string to rule them all",
"13347 string to rule them all",
"13348 string to rule them all",
"13349 string to rule them all",
"13350 string to rule them all",
"13351 string to rule them all",
"13352 string to rule them all",
"13353 string to rule them all",
"13354 string to rule them all",
"13355 string to rule them all",
"13356 string to rule them all",
"13357 string to rule them all",
"13358 string to rule them all",
"13359 string to rule them all",
"13360 string to rule them all",
"13361 string to rule them all",
"13362 string to rule them all",
"13363 string to rule them all",
"13364 string to rule them all",
"13365 string to rule them all",
"13366 string to rule them all",
"13367 string to rule them all",
"13368 string to rule them all",
"13369 string to rule them all",
"13370 string to rule them all",
"13371 string to rule them all",
"13372 string to rule them all",
"13373 string to rule them all",
"13374 string to rule them all",
"13375 string to rule them all",
"13376 string to rule them all",
"13377 string to rule them all",
"13378 string to rule them all",
"13379 string to rule them all",
"13380 string to rule them all",
"13381 string to rule them all",
"13382 string to rule them all",
"13383 string to rule them all",
"13384 string to rule them all",
"13385 string to rule them all",
"13386 string to rule them all",
"13387 string to rule them all",
"13388 string to rule them all",
"13389 string to rule them all",
"13390 string to rule them all",
"13391 string to rule them all",
"13392 string to rule them all",
"13393 string to rule them all",
"13394 string to rule them all",
"13395 string to rule them all",
"13396 string to rule them all",
"13397 string to rule them all",
"13398 string to rule them all",
"13399 string to rule them all",
"13400 string to rule them all",
"13401 string to rule them all",
"13402 string to rule them all",
"13403 string to rule them all",
"13404 string to rule them all",
"13405 string to rule them all",
"13406 string to rule them all",
"13407 string to rule them all",
"13408 string to rule them all",
"13409 string to rule them all",
"13410 string to rule them all",
"13411 string to rule them all",
"13412 string to rule them all",
"13413 string to rule them all",
"13414 string to rule them all",
"13415 string to rule them all",
"13416 string to rule them all",
"13417 string to rule them all",
"13418 string to rule them all",
"13419 string to rule them all",
"13420 string to rule them all",
"13421 string to rule them all",
"13422 string to rule them all",
"13423 string to rule them all",
"13424 string to rule them all",
"13425 string to rule them all",
"13426 string to rule them all",
"13427 string to rule them all",
"13428 string to rule them all",
"13429 string to rule them all",
"13430 string to rule them all",
"13431 string to rule them all",
"13432 string to rule them all",
"13433 string to rule them all",
"13434 string to rule them all",
"13435 string to rule them all",
"13436 string to rule them all",
"13437 string to rule them all",
"13438 string to rule them all",
"13439 string to rule them all",
"13440 string to rule them all",
"13441 string to rule them all",
"13442 string to rule them all",
"13443 string to rule them all",
"13444 string to rule them all",
"13445 string to rule them all",
"13446 string to rule them all",
"13447 string to rule them all",
"13448 string to rule them all",
"13449 string to rule them all",
"13450 string to rule them all",
"13451 string to rule them all",
"13452 string to rule them all",
"13453 string to rule them all",
"13454 string to rule them all",
"13455 string to rule them all",
"13456 string to rule them all",
"13457 string to rule them all",
"13458 string to rule them all",
"13459 string to rule them all",
"13460 string to rule them all",
"13461 string to rule them all",
"13462 string to rule them all",
"13463 string to rule them all",
"13464 string to rule them all",
"13465 string to rule them all",
"13466 string to rule them all",
"13467 string to rule them all",
"13468 string to rule them all",
"13469 string to rule them all",
"13470 string to rule them all",
"13471 string to rule them all",
"13472 string to rule them all",
"13473 string to rule them all",
"13474 string to rule them all",
"13475 string to rule them all",
"13476 string to rule them all",
"13477 string to rule them all",
"13478 string to rule them all",
"13479 string to rule them all",
"13480 string to rule them all",
"13481 string to rule them all",
"13482 string to rule them all",
"13483 string to rule them all",
"13484 string to rule them all",
"13485 string to rule them all",
"13486 string to rule them all",
"13487 string to rule them all",
"13488 string to rule them all",
"13489 string to rule them all",
"13490 string to rule them all",
"13491 string to rule them all",
"13492 string to rule them all",
"13493 string to rule them all",
"13494 string to rule them all",
"13495 string to rule them all",
"13496 string to rule them all",
"13497 string to rule them all",
"13498 string to rule them all",
"13499 string to rule them all",
"13500 string to rule them all",
"13501 string to rule them all",
"13502 string to rule them all",
"13503 string to rule them all",
"13504 string to rule them all",
"13505 string to rule them all",
"13506 string to rule them all",
"13507 string to rule them all",
"13508 string to rule them all",
"13509 string to rule them all",
"13510 string to rule them all",
"13511 string to rule them all",
"13512 string to rule them all",
"13513 string to rule them all",
"13514 string to rule them all",
"13515 string to rule them all",
"13516 string to rule them all",
"13517 string to rule them all",
"13518 string to rule them all",
"13519 string to rule them all",
"13520 string to rule them all",
"13521 string to rule them all",
"13522 string to rule them all",
"13523 string to rule them all",
"13524 string to rule them all",
"13525 string to rule them all",
"13526 string to rule them all",
"13527 string to rule them all",
"13528 string to rule them all",
"13529 string to rule them all",
"13530 string to rule them all",
"13531 string to rule them all",
"13532 string to rule them all",
"13533 string to rule them all",
"13534 string to rule them all",
"13535 string to rule them all",
"13536 string to rule them all",
"13537 string to rule them all",
"13538 string to rule them all",
"13539 string to rule them all",
"13540 string to rule them all",
"13541 string to rule them all",
"13542 string to rule them all",
"13543 string to rule them all",
"13544 string to rule them all",
"13545 string to rule them all",
"13546 string to rule them all",
"13547 string to rule them all",
"13548 string to rule them all",
"13549 string to rule them all",
"13550 string to rule them all",
"13551 string to rule them all",
"13552 string to rule them all",
"13553 string to rule them all",
"13554 string to rule them all",
"13555 string to rule them all",
"13556 string to rule them all",
"13557 string to rule them all",
"13558 string to rule them all",
"13559 string to rule them all",
"13560 string to rule them all",
"13561 string to rule them all",
"13562 string to rule them all",
"13563 string to rule them all",
"13564 string to rule them all",
"13565 string to rule them all",
"13566 string to rule them all",
"13567 string to rule them all",
"13568 string to rule them all",
"13569 string to rule them all",
"13570 string to rule them all",
"13571 string to rule them all",
"13572 string to rule them all",
"13573 string to rule them all",
"13574 string to rule them all",
"13575 string to rule them all",
"13576 string to rule them all",
"13577 string to rule them all",
"13578 string to rule them all",
"13579 string to rule them all",
"13580 string to rule them all",
"13581 string to rule them all",
"13582 string to rule them all",
"13583 string to rule them all",
"13584 string to rule them all",
"13585 string to rule them all",
"13586 string to rule them all",
"13587 string to rule them all",
"13588 string to rule them all",
"13589 string to rule them all",
"13590 string to rule them all",
"13591 string to rule them all",
"13592 string to rule them all",
"13593 string to rule them all",
"13594 string to rule them all",
"13595 string to rule them all",
"13596 string to rule them all",
"13597 string to rule them all",
"13598 string to rule them all",
"13599 string to rule them all",
"13600 string to rule them all",
"13601 string to rule them all",
"13602 string to rule them all",
"13603 string to rule them all",
"13604 string to rule them all",
"13605 string to rule them all",
"13606 string to rule them all",
"13607 string to rule them all",
"13608 string to rule them all",
"13609 string to rule them all",
"13610 string to rule them all",
"13611 string to rule them all",
"13612 string to rule them all",
"13613 string to rule them all",
"13614 string to rule them all",
"13615 string to rule them all",
"13616 string to rule them all",
"13617 string to rule them all",
"13618 string to rule them all",
"13619 string to rule them all",
"13620 string to rule them all",
"13621 string to rule them all",
"13622 string to rule them all",
"13623 string to rule them all",
"13624 string to rule them all",
"13625 string to rule them all",
"13626 string to rule them all",
"13627 string to rule them all",
"13628 string to rule them all",
"13629 string to rule them all",
"13630 string to rule them all",
"13631 string to rule them all",
"13632 string to rule them all",
"13633 string to rule them all",
"13634 string to rule them all",
"13635 string to rule them all",
"13636 string to rule them all",
"13637 string to rule them all",
"13638 string to rule them all",
"13639 string to rule them all",
"13640 string to rule them all",
"13641 string to rule them all",
"13642 string to rule them all",
"13643 string to rule them all",
"13644 string to rule them all",
"13645 string to rule them all",
"13646 string to rule them all",
"13647 string to rule them all",
"13648 string to rule them all",
"13649 string to rule them all",
"13650 string to rule them all",
"13651 string to rule them all",
"13652 string to rule them all",
"13653 string to rule them all",
"13654 string to rule them all",
"13655 string to rule them all",
"13656 string to rule them all",
"13657 string to rule them all",
"13658 string to rule them all",
"13659 string to rule them all",
"13660 string to rule them all",
"13661 string to rule them all",
"13662 string to rule them all",
"13663 string to rule them all",
"13664 string to rule them all",
"13665 string to rule them all",
"13666 string to rule them all",
"13667 string to rule them all",
"13668 string to rule them all",
"13669 string to rule them all",
"13670 string to rule them all",
"13671 string to rule them all",
"13672 string to rule them all",
"13673 string to rule them all",
"13674 string to rule them all",
"13675 string to rule them all",
"13676 string to rule them all",
"13677 string to rule them all",
"13678 string to rule them all",
"13679 string to rule them all",
"13680 string to rule them all",
"13681 string to rule them all",
"13682 string to rule them all",
"13683 string to rule them all",
"13684 string to rule them all",
"13685 string to rule them all",
"13686 string to rule them all",
"13687 string to rule them all",
"13688 string to rule them all",
"13689 string to rule them all",
"13690 string to rule them all",
"13691 string to rule them all",
"13692 string to rule them all",
"13693 string to rule them all",
"13694 string to rule them all",
"13695 string to rule them all",
"13696 string to rule them all",
"13697 string to rule them all",
"13698 string to rule them all",
"13699 string to rule them all",
"13700 string to rule them all",
"13701 string to rule them all",
"13702 string to rule them all",
"13703 string to rule them all",
"13704 string to rule them all",
"13705 string to rule them all",
"13706 string to rule them all",
"13707 string to rule them all",
"13708 string to rule them all",
"13709 string to rule them all",
"13710 string to rule them all",
"13711 string to rule them all",
"13712 string to rule them all",
"13713 string to rule them all",
"13714 string to rule them all",
"13715 string to rule them all",
"13716 string to rule them all",
"13717 string to rule them all",
"13718 string to rule them all",
"13719 string to rule them all",
"13720 string to rule them all",
"13721 string to rule them all",
"13722 string to rule them all",
"13723 string to rule them all",
"13724 string to rule them all",
"13725 string to rule them all",
"13726 string to rule them all",
"13727 string to rule them all",
"13728 string to rule them all",
"13729 string to rule them all",
"13730 string to rule them all",
"13731 string to rule them all",
"13732 string to rule them all",
"13733 string to rule them all",
"13734 string to rule them all",
"13735 string to rule them all",
"13736 string to rule them all",
"13737 string to rule them all",
"13738 string to rule them all",
"13739 string to rule them all",
"13740 string to rule them all",
"13741 string to rule them all",
"13742 string to rule them all",
"13743 string to rule them all",
"13744 string to rule them all",
"13745 string to rule them all",
"13746 string to rule them all",
"13747 string to rule them all",
"13748 string to rule them all",
"13749 string to rule them all",
"13750 string to rule them all",
"13751 string to rule them all",
"13752 string to rule them all",
"13753 string to rule them all",
"13754 string to rule them all",
"13755 string to rule them all",
"13756 string to rule them all",
"13757 string to rule them all",
"13758 string to rule them all",
"13759 string to rule them all",
"13760 string to rule them all",
"13761 string to rule them all",
"13762 string to rule them all",
"13763 string to rule them all",
"13764 string to rule them all",
"13765 string to rule them all",
"13766 string to rule them all",
"13767 string to rule them all",
"13768 string to rule them all",
"13769 string to rule them all",
"13770 string to rule them all",
"13771 string to rule them all",
"13772 string to rule them all",
"13773 string to rule them all",
"13774 string to rule them all",
"13775 string to rule them all",
"13776 string to rule them all",
"13777 string to rule them all",
"13778 string to rule them all",
"13779 string to rule them all",
"13780 string to rule them all",
"13781 string to rule them all",
"13782 string to rule them all",
"13783 string to rule them all",
"13784 string to rule them all",
"13785 string to rule them all",
"13786 string to rule them all",
"13787 string to rule them all",
"13788 string to rule them all",
"13789 string to rule them all",
"13790 string to rule them all",
"13791 string to rule them all",
"13792 string to rule them all",
"13793 string to rule them all",
"13794 string to rule them all",
"13795 string to rule them all",
"13796 string to rule them all",
"13797 string to rule them all",
"13798 string to rule them all",
"13799 string to rule them all",
"13800 string to rule them all",
"13801 string to rule them all",
"13802 string to rule them all",
"13803 string to rule them all",
"13804 string to rule them all",
"13805 string to rule them all",
"13806 string to rule them all",
"13807 string to rule them all",
"13808 string to rule them all",
"13809 string to rule them all",
"13810 string to rule them all",
"13811 string to rule them all",
"13812 string to rule them all",
"13813 string to rule them all",
"13814 string to rule them all",
"13815 string to rule them all",
"13816 string to rule them all",
"13817 string to rule them all",
"13818 string to rule them all",
"13819 string to rule them all",
"13820 string to rule them all",
"13821 string to rule them all",
"13822 string to rule them all",
"13823 string to rule them all",
"13824 string to rule them all",
"13825 string to rule them all",
"13826 string to rule them all",
"13827 string to rule them all",
"13828 string to rule them all",
"13829 string to rule them all",
"13830 string to rule them all",
"13831 string to rule them all",
"13832 string to rule them all",
"13833 string to rule them all",
"13834 string to rule them all",
"13835 string to rule them all",
"13836 string to rule them all",
"13837 string to rule them all",
"13838 string to rule them all",
"13839 string to rule them all",
"13840 string to rule them all",
"13841 string to rule them all",
"13842 string to rule them all",
"13843 string to rule them all",
"13844 string to rule them all",
"13845 string to rule them all",
"13846 string to rule them all",
"13847 string to rule them all",
"13848 string to rule them all",
"13849 string to rule them all",
"13850 string to rule them all",
"13851 string to rule them all",
"13852 string to rule them all",
"13853 string to rule them all",
"13854 string to rule them all",
"13855 string to rule them all",
"13856 string to rule them all",
"13857 string to rule them all",
"13858 string to rule them all",
"13859 string to rule them all",
"13860 string to rule them all",
"13861 string to rule them all",
"13862 string to rule them all",
"13863 string to rule them all",
"13864 string to rule them all",
"13865 string to rule them all",
"13866 string to rule them all",
"13867 string to rule them all",
"13868 string to rule them all",
"13869 string to rule them all",
"13870 string to rule them all",
"13871 string to rule them all",
"13872 string to rule them all",
"13873 string to rule them all",
"13874 string to rule them all",
"13875 string to rule them all",
"13876 string to rule them all",
"13877 string to rule them all",
"13878 string to rule them all",
"13879 string to rule them all",
"13880 string to rule them all",
"13881 string to rule them all",
"13882 string to rule them all",
"13883 string to rule them all",
"13884 string to rule them all",
"13885 string to rule them all",
"13886 string to rule them all",
"13887 string to rule them all",
"13888 string to rule them all",
"13889 string to rule them all",
"13890 string to rule them all",
"13891 string to rule them all",
"13892 string to rule them all",
"13893 string to rule them all",
"13894 string to rule them all",
"13895 string to rule them all",
"13896 string to rule them all",
"13897 string to rule them all",
"13898 string to rule them all",
"13899 string to rule them all",
"13900 string to rule them all",
"13901 string to rule them all",
"13902 string to rule them all",
"13903 string to rule them all",
"13904 string to rule them all",
"13905 string to rule them all",
"13906 string to rule them all",
"13907 string to rule them all",
"13908 string to rule them all",
"13909 string to rule them all",
"13910 string to rule them all",
"13911 string to rule them all",
"13912 string to rule them all",
"13913 string to rule them all",
"13914 string to rule them all",
"13915 string to rule them all",
"13916 string to rule them all",
"13917 string to rule them all",
"13918 string to rule them all",
"13919 string to rule them all",
"13920 string to rule them all",
"13921 string to rule them all",
"13922 string to rule them all",
"13923 string to rule them all",
"13924 string to rule them all",
"13925 string to rule them all",
"13926 string to rule them all",
"13927 string to rule them all",
"13928 string to rule them all",
"13929 string to rule them all",
"13930 string to rule them all",
"13931 string to rule them all",
"13932 string to rule them all",
"13933 string to rule them all",
"13934 string to rule them all",
"13935 string to rule them all",
"13936 string to rule them all",
"13937 string to rule them all",
"13938 string to rule them all",
"13939 string to rule them all",
"13940 string to rule them all",
"13941 string to rule them all",
"13942 string to rule them all",
"13943 string to rule them all",
"13944 string to rule them all",
"13945 string to rule them all",
"13946 string to rule them all",
"13947 string to rule them all",
"13948 string to rule them all",
"13949 string to rule them all",
"13950 string to rule them all",
"13951 string to rule them all",
"13952 string to rule them all",
"13953 string to rule them all",
"13954 string to rule them all",
"13955 string to rule them all",
"13956 string to rule them all",
"13957 string to rule them all",
"13958 string to rule them all",
"13959 string to rule them all",
"13960 string to rule them all",
"13961 string to rule them all",
"13962 string to rule them all",
"13963 string to rule them all",
"13964 string to rule them all",
"13965 string to rule them all",
"13966 string to rule them all",
"13967 string to rule them all",
"13968 string to rule them all",
"13969 string to rule them all",
"13970 string to rule them all",
"13971 string to rule them all",
"13972 string to rule them all",
"13973 string to rule them all",
"13974 string to rule them all",
"13975 string to rule them all",
"13976 string to rule them all",
"13977 string to rule them all",
"13978 string to rule them all",
"13979 string to rule them all",
"13980 string to rule them all",
"13981 string to rule them all",
"13982 string to rule them all",
"13983 string to rule them all",
"13984 string to rule them all",
"13985 string to rule them all",
"13986 string to rule them all",
"13987 string to rule them all",
"13988 string to rule them all",
"13989 string to rule them all",
"13990 string to rule them all",
"13991 string to rule them all",
"13992 string to rule them all",
"13993 string to rule them all",
"13994 string to rule them all",
"13995 string to rule them all",
"13996 string to rule them all",
"13997 string to rule them all",
"13998 string to rule them all",
"13999 string to rule them all",
"14000 string to rule them all",
"14001 string to rule them all",
"14002 string to rule them all",
"14003 string to rule them all",
"14004 string to rule them all",
"14005 string to rule them all",
"14006 string to rule them all",
"14007 string to rule them all",
"14008 string to rule them all",
"14009 string to rule them all",
"14010 string to rule them all",
"14011 string to rule them all",
"14012 string to rule them all",
"14013 string to rule them all",
"14014 string to rule them all",
"14015 string to rule them all",
"14016 string to rule them all",
"14017 string to rule them all",
"14018 string to rule them all",
"14019 string to rule them all",
"14020 string to rule them all",
"14021 string to rule them all",
"14022 string to rule them all",
"14023 string to rule them all",
"14024 string to rule them all",
"14025 string to rule them all",
"14026 string to rule them all",
"14027 string to rule them all",
"14028 string to rule them all",
"14029 string to rule them all",
"14030 string to rule them all",
"14031 string to rule them all",
"14032 string to rule them all",
"14033 string to rule them all",
"14034 string to rule them all",
"14035 string to rule them all",
"14036 string to rule them all",
"14037 string to rule them all",
"14038 string to rule them all",
"14039 string to rule them all",
"14040 string to rule them all",
"14041 string to rule them all",
"14042 string to rule them all",
"14043 string to rule them all",
"14044 string to rule them all",
"14045 string to rule them all",
"14046 string to rule them all",
"14047 string to rule them all",
"14048 string to rule them all",
"14049 string to rule them all",
"14050 string to rule them all",
"14051 string to rule them all",
"14052 string to rule them all",
"14053 string to rule them all",
"14054 string to rule them all",
"14055 string to rule them all",
"14056 string to rule them all",
"14057 string to rule them all",
"14058 string to rule them all",
"14059 string to rule them all",
"14060 string to rule them all",
"14061 string to rule them all",
"14062 string to rule them all",
"14063 string to rule them all",
"14064 string to rule them all",
"14065 string to rule them all",
"14066 string to rule them all",
"14067 string to rule them all",
"14068 string to rule them all",
"14069 string to rule them all",
"14070 string to rule them all",
"14071 string to rule them all",
"14072 string to rule them all",
"14073 string to rule them all",
"14074 string to rule them all",
"14075 string to rule them all",
"14076 string to rule them all",
"14077 string to rule them all",
"14078 string to rule them all",
"14079 string to rule them all",
"14080 string to rule them all",
"14081 string to rule them all",
"14082 string to rule them all",
"14083 string to rule them all",
"14084 string to rule them all",
"14085 string to rule them all",
"14086 string to rule them all",
"14087 string to rule them all",
"14088 string to rule them all",
"14089 string to rule them all",
"14090 string to rule them all",
"14091 string to rule them all",
"14092 string to rule them all",
"14093 string to rule them all",
"14094 string to rule them all",
"14095 string to rule them all",
"14096 string to rule them all",
"14097 string to rule them all",
"14098 string to rule them all",
"14099 string to rule them all",
"14100 string to rule them all",
"14101 string to rule them all",
"14102 string to rule them all",
"14103 string to rule them all",
"14104 string to rule them all",
"14105 string to rule them all",
"14106 string to rule them all",
"14107 string to rule them all",
"14108 string to rule them all",
"14109 string to rule them all",
"14110 string to rule them all",
"14111 string to rule them all",
"14112 string to rule them all",
"14113 string to rule them all",
"14114 string to rule them all",
"14115 string to rule them all",
"14116 string to rule them all",
"14117 string to rule them all",
"14118 string to rule them all",
"14119 string to rule them all",
"14120 string to rule them all",
"14121 string to rule them all",
"14122 string to rule them all",
"14123 string to rule them all",
"14124 string to rule them all",
"14125 string to rule them all",
"14126 string to rule them all",
"14127 string to rule them all",
"14128 string to rule them all",
"14129 string to rule them all",
"14130 string to rule them all",
"14131 string to rule them all",
"14132 string to rule them all",
"14133 string to rule them all",
"14134 string to rule them all",
"14135 string to rule them all",
"14136 string to rule them all",
"14137 string to rule them all",
"14138 string to rule them all",
"14139 string to rule them all",
"14140 string to rule them all",
"14141 string to rule them all",
"14142 string to rule them all",
"14143 string to rule them all",
"14144 string to rule them all",
"14145 string to rule them all",
"14146 string to rule them all",
"14147 string to rule them all",
"14148 string to rule them all",
"14149 string to rule them all",
"14150 string to rule them all",
"14151 string to rule them all",
"14152 string to rule them all",
"14153 string to rule them all",
"14154 string to rule them all",
"14155 string to rule them all",
"14156 string to rule them all",
"14157 string to rule them all",
"14158 string to rule them all",
"14159 string to rule them all",
"14160 string to rule them all",
"14161 string to rule them all",
"14162 string to rule them all",
"14163 string to rule them all",
"14164 string to rule them all",
"14165 string to rule them all",
"14166 string to rule them all",
"14167 string to rule them all",
"14168 string to rule them all",
"14169 string to rule them all",
"14170 string to rule them all",
"14171 string to rule them all",
"14172 string to rule them all",
"14173 string to rule them all",
"14174 string to rule them all",
"14175 string to rule them all",
"14176 string to rule them all",
"14177 string to rule them all",
"14178 string to rule them all",
"14179 string to rule them all",
"14180 string to rule them all",
"14181 string to rule them all",
"14182 string to rule them all",
"14183 string to rule them all",
"14184 string to rule them all",
"14185 string to rule them all",
"14186 string to rule them all",
"14187 string to rule them all",
"14188 string to rule them all",
"14189 string to rule them all",
"14190 string to rule them all",
"14191 string to rule them all",
"14192 string to rule them all",
"14193 string to rule them all",
"14194 string to rule them all",
"14195 string to rule them all",
"14196 string to rule them all",
"14197 string to rule them all",
"14198 string to rule them all",
"14199 string to rule them all",
"14200 string to rule them all",
"14201 string to rule them all",
"14202 string to rule them all",
"14203 string to rule them all",
"14204 string to rule them all",
"14205 string to rule them all",
"14206 string to rule them all",
"14207 string to rule them all",
"14208 string to rule them all",
"14209 string to rule them all",
"14210 string to rule them all",
"14211 string to rule them all",
"14212 string to rule them all",
"14213 string to rule them all",
"14214 string to rule them all",
"14215 string to rule them all",
"14216 string to rule them all",
"14217 string to rule them all",
"14218 string to rule them all",
"14219 string to rule them all",
"14220 string to rule them all",
"14221 string to rule them all",
"14222 string to rule them all",
"14223 string to rule them all",
"14224 string to rule them all",
"14225 string to rule them all",
"14226 string to rule them all",
"14227 string to rule them all",
"14228 string to rule them all",
"14229 string to rule them all",
"14230 string to rule them all",
"14231 string to rule them all",
"14232 string to rule them all",
"14233 string to rule them all",
"14234 string to rule them all",
"14235 string to rule them all",
"14236 string to rule them all",
"14237 string to rule them all",
"14238 string to rule them all",
"14239 string to rule them all",
"14240 string to rule them all",
"14241 string to rule them all",
"14242 string to rule them all",
"14243 string to rule them all",
"14244 string to rule them all",
"14245 string to rule them all",
"14246 string to rule them all",
"14247 string to rule them all",
"14248 string to rule them all",
"14249 string to rule them all",
"14250 string to rule them all",
"14251 string to rule them all",
"14252 string to rule them all",
"14253 string to rule them all",
"14254 string to rule them all",
"14255 string to rule them all",
"14256 string to rule them all",
"14257 string to rule them all",
"14258 string to rule them all",
"14259 string to rule them all",
"14260 string to rule them all",
"14261 string to rule them all",
"14262 string to rule them all",
"14263 string to rule them all",
"14264 string to rule them all",
"14265 string to rule them all",
"14266 string to rule them all",
"14267 string to rule them all",
"14268 string to rule them all",
"14269 string to rule them all",
"14270 string to rule them all",
"14271 string to rule them all",
"14272 string to rule them all",
"14273 string to rule them all",
"14274 string to rule them all",
"14275 string to rule them all",
"14276 string to rule them all",
"14277 string to rule them all",
"14278 string to rule them all",
"14279 string to rule them all",
"14280 string to rule them all",
"14281 string to rule them all",
"14282 string to rule them all",
"14283 string to rule them all",
"14284 string to rule them all",
"14285 string to rule them all",
"14286 string to rule them all",
"14287 string to rule them all",
"14288 string to rule them all",
"14289 string to rule them all",
"14290 string to rule them all",
"14291 string to rule them all",
"14292 string to rule them all",
"14293 string to rule them all",
"14294 string to rule them all",
"14295 string to rule them all",
"14296 string to rule them all",
"14297 string to rule them all",
"14298 string to rule them all",
"14299 string to rule them all",
"14300 string to rule them all",
"14301 string to rule them all",
"14302 string to rule them all",
"14303 string to rule them all",
"14304 string to rule them all",
"14305 string to rule them all",
"14306 string to rule them all",
"14307 string to rule them all",
"14308 string to rule them all",
"14309 string to rule them all",
"14310 string to rule them all",
"14311 string to rule them all",
"14312 string to rule them all",
"14313 string to rule them all",
"14314 string to rule them all",
"14315 string to rule them all",
"14316 string to rule them all",
"14317 string to rule them all",
"14318 string to rule them all",
"14319 string to rule them all",
"14320 string to rule them all",
"14321 string to rule them all",
"14322 string to rule them all",
"14323 string to rule them all",
"14324 string to rule them all",
"14325 string to rule them all",
"14326 string to rule them all",
"14327 string to rule them all",
"14328 string to rule them all",
"14329 string to rule them all",
"14330 string to rule them all",
"14331 string to rule them all",
"14332 string to rule them all",
"14333 string to rule them all",
"14334 string to rule them all",
"14335 string to rule them all",
"14336 string to rule them all",
"14337 string to rule them all",
"14338 string to rule them all",
"14339 string to rule them all",
"14340 string to rule them all",
"14341 string to rule them all",
"14342 string to rule them all",
"14343 string to rule them all",
"14344 string to rule them all",
"14345 string to rule them all",
"14346 string to rule them all",
"14347 string to rule them all",
"14348 string to rule them all",
"14349 string to rule them all",
"14350 string to rule them all",
"14351 string to rule them all",
"14352 string to rule them all",
"14353 string to rule them all",
"14354 string to rule them all",
"14355 string to rule them all",
"14356 string to rule them all",
"14357 string to rule them all",
"14358 string to rule them all",
"14359 string to rule them all",
"14360 string to rule them all",
"14361 string to rule them all",
"14362 string to rule them all",
"14363 string to rule them all",
"14364 string to rule them all",
"14365 string to rule them all",
"14366 string to rule them all",
"14367 string to rule them all",
"14368 string to rule them all",
"14369 string to rule them all",
"14370 string to rule them all",
"14371 string to rule them all",
"14372 string to rule them all",
"14373 string to rule them all",
"14374 string to rule them all",
"14375 string to rule them all",
"14376 string to rule them all",
"14377 string to rule them all",
"14378 string to rule them all",
"14379 string to rule them all",
"14380 string to rule them all",
"14381 string to rule them all",
"14382 string to rule them all",
"14383 string to rule them all",
"14384 string to rule them all",
"14385 string to rule them all",
"14386 string to rule them all",
"14387 string to rule them all",
"14388 string to rule them all",
"14389 string to rule them all",
"14390 string to rule them all",
"14391 string to rule them all",
"14392 string to rule them all",
"14393 string to rule them all",
"14394 string to rule them all",
"14395 string to rule them all",
"14396 string to rule them all",
"14397 string to rule them all",
"14398 string to rule them all",
"14399 string to rule them all",
"14400 string to rule them all",
"14401 string to rule them all",
"14402 string to rule them all",
"14403 string to rule them all",
"14404 string to rule them all",
"14405 string to rule them all",
"14406 string to rule them all",
"14407 string to rule them all",
"14408 string to rule them all",
"14409 string to rule them all",
"14410 string to rule them all",
"14411 string to rule them all",
"14412 string to rule them all",
"14413 string to rule them all",
"14414 string to rule them all",
"14415 string to rule them all",
"14416 string to rule them all",
"14417 string to rule them all",
"14418 string to rule them all",
"14419 string to rule them all",
"14420 string to rule them all",
"14421 string to rule them all",
"14422 string to rule them all",
"14423 string to rule them all",
"14424 string to rule them all",
"14425 string to rule them all",
"14426 string to rule them all",
"14427 string to rule them all",
"14428 string to rule them all",
"14429 string to rule them all",
"14430 string to rule them all",
"14431 string to rule them all",
"14432 string to rule them all",
"14433 string to rule them all",
"14434 string to rule them all",
"14435 string to rule them all",
"14436 string to rule them all",
"14437 string to rule them all",
"14438 string to rule them all",
"14439 string to rule them all",
"14440 string to rule them all",
"14441 string to rule them all",
"14442 string to rule them all",
"14443 string to rule them all",
"14444 string to rule them all",
"14445 string to rule them all",
"14446 string to rule them all",
"14447 string to rule them all",
"14448 string to rule them all",
"14449 string to rule them all",
"14450 string to rule them all",
"14451 string to rule them all",
"14452 string to rule them all",
"14453 string to rule them all",
"14454 string to rule them all",
"14455 string to rule them all",
"14456 string to rule them all",
"14457 string to rule them all",
"14458 string to rule them all",
"14459 string to rule them all",
"14460 string to rule them all",
"14461 string to rule them all",
"14462 string to rule them all",
"14463 string to rule them all",
"14464 string to rule them all",
"14465 string to rule them all",
"14466 string to rule them all",
"14467 string to rule them all",
"14468 string to rule them all",
"14469 string to rule them all",
"14470 string to rule them all",
"14471 string to rule them all",
"14472 string to rule them all",
"14473 string to rule them all",
"14474 string to rule them all",
"14475 string to rule them all",
"14476 string to rule them all",
"14477 string to rule them all",
"14478 string to rule them all",
"14479 string to rule them all",
"14480 string to rule them all",
"14481 string to rule them all",
"14482 string to rule them all",
"14483 string to rule them all",
"14484 string to rule them all",
"14485 string to rule them all",
"14486 string to rule them all",
"14487 string to rule them all",
"14488 string to rule them all",
"14489 string to rule them all",
"14490 string to rule them all",
"14491 string to rule them all",
"14492 string to rule them all",
"14493 string to rule them all",
"14494 string to rule them all",
"14495 string to rule them all",
"14496 string to rule them all",
"14497 string to rule them all",
"14498 string to rule them all",
"14499 string to rule them all",
"14500 string to rule them all",
"14501 string to rule them all",
"14502 string to rule them all",
"14503 string to rule them all",
"14504 string to rule them all",
"14505 string to rule them all",
"14506 string to rule them all",
"14507 string to rule them all",
"14508 string to rule them all",
"14509 string to rule them all",
"14510 string to rule them all",
"14511 string to rule them all",
"14512 string to rule them all",
"14513 string to rule them all",
"14514 string to rule them all",
"14515 string to rule them all",
"14516 string to rule them all",
"14517 string to rule them all",
"14518 string to rule them all",
"14519 string to rule them all",
"14520 string to rule them all",
"14521 string to rule them all",
"14522 string to rule them all",
"14523 string to rule them all",
"14524 string to rule them all",
"14525 string to rule them all",
"14526 string to rule them all",
"14527 string to rule them all",
"14528 string to rule them all",
"14529 string to rule them all",
"14530 string to rule them all",
"14531 string to rule them all",
"14532 string to rule them all",
"14533 string to rule them all",
"14534 string to rule them all",
"14535 string to rule them all",
"14536 string to rule them all",
"14537 string to rule them all",
"14538 string to rule them all",
"14539 string to rule them all",
"14540 string to rule them all",
"14541 string to rule them all",
"14542 string to rule them all",
"14543 string to rule them all",
"14544 string to rule them all",
"14545 string to rule them all",
"14546 string to rule them all",
"14547 string to rule them all",
"14548 string to rule them all",
"14549 string to rule them all",
"14550 string to rule them all",
"14551 string to rule them all",
"14552 string to rule them all",
"14553 string to rule them all",
"14554 string to rule them all",
"14555 string to rule them all",
"14556 string to rule them all",
"14557 string to rule them all",
"14558 string to rule them all",
"14559 string to rule them all",
"14560 string to rule them all",
"14561 string to rule them all",
"14562 string to rule them all",
"14563 string to rule them all",
"14564 string to rule them all",
"14565 string to rule them all",
"14566 string to rule them all",
"14567 string to rule them all",
"14568 string to rule them all",
"14569 string to rule them all",
"14570 string to rule them all",
"14571 string to rule them all",
"14572 string to rule them all",
"14573 string to rule them all",
"14574 string to rule them all",
"14575 string to rule them all",
"14576 string to rule them all",
"14577 string to rule them all",
"14578 string to rule them all",
"14579 string to rule them all",
"14580 string to rule them all",
"14581 string to rule them all",
"14582 string to rule them all",
"14583 string to rule them all",
"14584 string to rule them all",
"14585 string to rule them all",
"14586 string to rule them all",
"14587 string to rule them all",
"14588 string to rule them all",
"14589 string to rule them all",
"14590 string to rule them all",
"14591 string to rule them all",
"14592 string to rule them all",
"14593 string to rule them all",
"14594 string to rule them all",
"14595 string to rule them all",
"14596 string to rule them all",
"14597 string to rule them all",
"14598 string to rule them all",
"14599 string to rule them all",
"14600 string to rule them all",
"14601 string to rule them all",
"14602 string to rule them all",
"14603 string to rule them all",
"14604 string to rule them all",
"14605 string to rule them all",
"14606 string to rule them all",
"14607 string to rule them all",
"14608 string to rule them all",
"14609 string to rule them all",
"14610 string to rule them all",
"14611 string to rule them all",
"14612 string to rule them all",
"14613 string to rule them all",
"14614 string to rule them all",
"14615 string to rule them all",
"14616 string to rule them all",
"14617 string to rule them all",
"14618 string to rule them all",
"14619 string to rule them all",
"14620 string to rule them all",
"14621 string to rule them all",
"14622 string to rule them all",
"14623 string to rule them all",
"14624 string to rule them all",
"14625 string to rule them all",
"14626 string to rule them all",
"14627 string to rule them all",
"14628 string to rule them all",
"14629 string to rule them all",
"14630 string to rule them all",
"14631 string to rule them all",
"14632 string to rule them all",
"14633 string to rule them all",
"14634 string to rule them all",
"14635 string to rule them all",
"14636 string to rule them all",
"14637 string to rule them all",
"14638 string to rule them all",
"14639 string to rule them all",
"14640 string to rule them all",
"14641 string to rule them all",
"14642 string to rule them all",
"14643 string to rule them all",
"14644 string to rule them all",
"14645 string to rule them all",
"14646 string to rule them all",
"14647 string to rule them all",
"14648 string to rule them all",
"14649 string to rule them all",
"14650 string to rule them all",
"14651 string to rule them all",
"14652 string to rule them all",
"14653 string to rule them all",
"14654 string to rule them all",
"14655 string to rule them all",
"14656 string to rule them all",
"14657 string to rule them all",
"14658 string to rule them all",
"14659 string to rule them all",
"14660 string to rule them all",
"14661 string to rule them all",
"14662 string to rule them all",
"14663 string to rule them all",
"14664 string to rule them all",
"14665 string to rule them all",
"14666 string to rule them all",
"14667 string to rule them all",
"14668 string to rule them all",
"14669 string to rule them all",
"14670 string to rule them all",
"14671 string to rule them all",
"14672 string to rule them all",
"14673 string to rule them all",
"14674 string to rule them all",
"14675 string to rule them all",
"14676 string to rule them all",
"14677 string to rule them all",
"14678 string to rule them all",
"14679 string to rule them all",
"14680 string to rule them all",
"14681 string to rule them all",
"14682 string to rule them all",
"14683 string to rule them all",
"14684 string to rule them all",
"14685 string to rule them all",
"14686 string to rule them all",
"14687 string to rule them all",
"14688 string to rule them all",
"14689 string to rule them all",
"14690 string to rule them all",
"14691 string to rule them all",
"14692 string to rule them all",
"14693 string to rule them all",
"14694 string to rule them all",
"14695 string to rule them all",
"14696 string to rule them all",
"14697 string to rule them all",
"14698 string to rule them all",
"14699 string to rule them all",
"14700 string to rule them all",
"14701 string to rule them all",
"14702 string to rule them all",
"14703 string to rule them all",
"14704 string to rule them all",
"14705 string to rule them all",
"14706 string to rule them all",
"14707 string to rule them all",
"14708 string to rule them all",
"14709 string to rule them all",
"14710 string to rule them all",
"14711 string to rule them all",
"14712 string to rule them all",
"14713 string to rule them all",
"14714 string to rule them all",
"14715 string to rule them all",
"14716 string to rule them all",
"14717 string to rule them all",
"14718 string to rule them all",
"14719 string to rule them all",
"14720 string to rule them all",
"14721 string to rule them all",
"14722 string to rule them all",
"14723 string to rule them all",
"14724 string to rule them all",
"14725 string to rule them all",
"14726 string to rule them all",
"14727 string to rule them all",
"14728 string to rule them all",
"14729 string to rule them all",
"14730 string to rule them all",
"14731 string to rule them all",
"14732 string to rule them all",
"14733 string to rule them all",
"14734 string to rule them all",
"14735 string to rule them all",
"14736 string to rule them all",
"14737 string to rule them all",
"14738 string to rule them all",
"14739 string to rule them all",
"14740 string to rule them all",
"14741 string to rule them all",
"14742 string to rule them all",
"14743 string to rule them all",
"14744 string to rule them all",
"14745 string to rule them all",
"14746 string to rule them all",
"14747 string to rule them all",
"14748 string to rule them all",
"14749 string to rule them all",
"14750 string to rule them all",
"14751 string to rule them all",
"14752 string to rule them all",
"14753 string to rule them all",
"14754 string to rule them all",
"14755 string to rule them all",
"14756 string to rule them all",
"14757 string to rule them all",
"14758 string to rule them all",
"14759 string to rule them all",
"14760 string to rule them all",
"14761 string to rule them all",
"14762 string to rule them all",
"14763 string to rule them all",
"14764 string to rule them all",
"14765 string to rule them all",
"14766 string to rule them all",
"14767 string to rule them all",
"14768 string to rule them all",
"14769 string to rule them all",
"14770 string to rule them all",
"14771 string to rule them all",
"14772 string to rule them all",
"14773 string to rule them all",
"14774 string to rule them all",
"14775 string to rule them all",
"14776 string to rule them all",
"14777 string to rule them all",
"14778 string to rule them all",
"14779 string to rule them all",
"14780 string to rule them all",
"14781 string to rule them all",
"14782 string to rule them all",
"14783 string to rule them all",
"14784 string to rule them all",
"14785 string to rule them all",
"14786 string to rule them all",
"14787 string to rule them all",
"14788 string to rule them all",
"14789 string to rule them all",
"14790 string to rule them all",
"14791 string to rule them all",
"14792 string to rule them all",
"14793 string to rule them all",
"14794 string to rule them all",
"14795 string to rule them all",
"14796 string to rule them all",
"14797 string to rule them all",
"14798 string to rule them all",
"14799 string to rule them all",
"14800 string to rule them all",
"14801 string to rule them all",
"14802 string to rule them all",
"14803 string to rule them all",
"14804 string to rule them all",
"14805 string to rule them all",
"14806 string to rule them all",
"14807 string to rule them all",
"14808 string to rule them all",
"14809 string to rule them all",
"14810 string to rule them all",
"14811 string to rule them all",
"14812 string to rule them all",
"14813 string to rule them all",
"14814 string to rule them all",
"14815 string to rule them all",
"14816 string to rule them all",
"14817 string to rule them all",
"14818 string to rule them all",
"14819 string to rule them all",
"14820 string to rule them all",
"14821 string to rule them all",
"14822 string to rule them all",
"14823 string to rule them all",
"14824 string to rule them all",
"14825 string to rule them all",
"14826 string to rule them all",
"14827 string to rule them all",
"14828 string to rule them all",
"14829 string to rule them all",
"14830 string to rule them all",
"14831 string to rule them all",
"14832 string to rule them all",
"14833 string to rule them all",
"14834 string to rule them all",
"14835 string to rule them all",
"14836 string to rule them all",
"14837 string to rule them all",
"14838 string to rule them all",
"14839 string to rule them all",
"14840 string to rule them all",
"14841 string to rule them all",
"14842 string to rule them all",
"14843 string to rule them all",
"14844 string to rule them all",
"14845 string to rule them all",
"14846 string to rule them all",
"14847 string to rule them all",
"14848 string to rule them all",
"14849 string to rule them all",
"14850 string to rule them all",
"14851 string to rule them all",
"14852 string to rule them all",
"14853 string to rule them all",
"14854 string to rule them all",
"14855 string to rule them all",
"14856 string to rule them all",
"14857 string to rule them all",
"14858 string to rule them all",
"14859 string to rule them all",
"14860 string to rule them all",
"14861 string to rule them all",
"14862 string to rule them all",
"14863 string to rule them all",
"14864 string to rule them all",
"14865 string to rule them all",
"14866 string to rule them all",
"14867 string to rule them all",
"14868 string to rule them all",
"14869 string to rule them all",
"14870 string to rule them all",
"14871 string to rule them all",
"14872 string to rule them all",
"14873 string to rule them all",
"14874 string to rule them all",
"14875 string to rule them all",
"14876 string to rule them all",
"14877 string to rule them all",
"14878 string to rule them all",
"14879 string to rule them all",
"14880 string to rule them all",
"14881 string to rule them all",
"14882 string to rule them all",
"14883 string to rule them all",
"14884 string to rule them all",
"14885 string to rule them all",
"14886 string to rule them all",
"14887 string to rule them all",
"14888 string to rule them all",
"14889 string to rule them all",
"14890 string to rule them all",
"14891 string to rule them all",
"14892 string to rule them all",
"14893 string to rule them all",
"14894 string to rule them all",
"14895 string to rule them all",
"14896 string to rule them all",
"14897 string to rule them all",
"14898 string to rule them all",
"14899 string to rule them all",
"14900 string to rule them all",
"14901 string to rule them all",
"14902 string to rule them all",
"14903 string to rule them all",
"14904 string to rule them all",
"14905 string to rule them all",
"14906 string to rule them all",
"14907 string to rule them all",
"14908 string to rule them all",
"14909 string to rule them all",
"14910 string to rule them all",
"14911 string to rule them all",
"14912 string to rule them all",
"14913 string to rule them all",
"14914 string to rule them all",
"14915 string to rule them all",
"14916 string to rule them all",
"14917 string to rule them all",
"14918 string to rule them all",
"14919 string to rule them all",
"14920 string to rule them all",
"14921 string to rule them all",
"14922 string to rule them all",
"14923 string to rule them all",
"14924 string to rule them all",
"14925 string to rule them all",
"14926 string to rule them all",
"14927 string to rule them all",
"14928 string to rule them all",
"14929 string to rule them all",
"14930 string to rule them all",
"14931 string to rule them all",
"14932 string to rule them all",
"14933 string to rule them all",
"14934 string to rule them all",
"14935 string to rule them all",
"14936 string to rule them all",
"14937 string to rule them all",
"14938 string to rule them all",
"14939 string to rule them all",
"14940 string to rule them all",
"14941 string to rule them all",
"14942 string to rule them all",
"14943 string to rule them all",
"14944 string to rule them all",
"14945 string to rule them all",
"14946 string to rule them all",
"14947 string to rule them all",
"14948 string to rule them all",
"14949 string to rule them all",
"14950 string to rule them all",
"14951 string to rule them all",
"14952 string to rule them all",
"14953 string to rule them all",
"14954 string to rule them all",
"14955 string to rule them all",
"14956 string to rule them all",
"14957 string to rule them all",
"14958 string to rule them all",
"14959 string to rule them all",
"14960 string to rule them all",
"14961 string to rule them all",
"14962 string to rule them all",
"14963 string to rule them all",
"14964 string to rule them all",
"14965 string to rule them all",
"14966 string to rule them all",
"14967 string to rule them all",
"14968 string to rule them all",
"14969 string to rule them all",
"14970 string to rule them all",
"14971 string to rule them all",
"14972 string to rule them all",
"14973 string to rule them all",
"14974 string to rule them all",
"14975 string to rule them all",
"14976 string to rule them all",
"14977 string to rule them all",
"14978 string to rule them all",
"14979 string to rule them all",
"14980 string to rule them all",
"14981 string to rule them all",
"14982 string to rule them all",
"14983 string to rule them all",
"14984 string to rule them all",
"14985 string to rule them all",
"14986 string to rule them all",
"14987 string to rule them all",
"14988 string to rule them all",
"14989 string to rule them all",
"14990 string to rule them all",
"14991 string to rule them all",
"14992 string to rule them all",
"14993 string to rule them all",
"14994 string to rule them all",
"14995 string to rule them all",
"14996 string to rule them all",
"14997 string to rule them all",
"14998 string to rule them all",
"14999 string to rule them all",
"15000 string to rule them all",
"15001 string to rule them all",
"15002 string to rule them all",
"15003 string to rule them all",
"15004 string to rule them all",
"15005 string to rule them all",
"15006 string to rule them all",
"15007 string to rule them all",
"15008 string to rule them all",
"15009 string to rule them all",
"15010 string to rule them all",
"15011 string to rule them all",
"15012 string to rule them all",
"15013 string to rule them all",
"15014 string to rule them all",
"15015 string to rule them all",
"15016 string to rule them all",
"15017 string to rule them all",
"15018 string to rule them all",
"15019 string to rule them all",
"15020 string to rule them all",
"15021 string to rule them all",
"15022 string to rule them all",
"15023 string to rule them all",
"15024 string to rule them all",
"15025 string to rule them all",
"15026 string to rule them all",
"15027 string to rule them all",
"15028 string to rule them all",
"15029 string to rule them all",
"15030 string to rule them all",
"15031 string to rule them all",
"15032 string to rule them all",
"15033 string to rule them all",
"15034 string to rule them all",
"15035 string to rule them all",
"15036 string to rule them all",
"15037 string to rule them all",
"15038 string to rule them all",
"15039 string to rule them all",
"15040 string to rule them all",
"15041 string to rule them all",
"15042 string to rule them all",
"15043 string to rule them all",
"15044 string to rule them all",
"15045 string to rule them all",
"15046 string to rule them all",
"15047 string to rule them all",
"15048 string to rule them all",
"15049 string to rule them all",
"15050 string to rule them all",
"15051 string to rule them all",
"15052 string to rule them all",
"15053 string to rule them all",
"15054 string to rule them all",
"15055 string to rule them all",
"15056 string to rule them all",
"15057 string to rule them all",
"15058 string to rule them all",
"15059 string to rule them all",
"15060 string to rule them all",
"15061 string to rule them all",
"15062 string to rule them all",
"15063 string to rule them all",
"15064 string to rule them all",
"15065 string to rule them all",
"15066 string to rule them all",
"15067 string to rule them all",
"15068 string to rule them all",
"15069 string to rule them all",
"15070 string to rule them all",
"15071 string to rule them all",
"15072 string to rule them all",
"15073 string to rule them all",
"15074 string to rule them all",
"15075 string to rule them all",
"15076 string to rule them all",
"15077 string to rule them all",
"15078 string to rule them all",
"15079 string to rule them all",
"15080 string to rule them all",
"15081 string to rule them all",
"15082 string to rule them all",
"15083 string to rule them all",
"15084 string to rule them all",
"15085 string to rule them all",
"15086 string to rule them all",
"15087 string to rule them all",
"15088 string to rule them all",
"15089 string to rule them all",
"15090 string to rule them all",
"15091 string to rule them all",
"15092 string to rule them all",
"15093 string to rule them all",
"15094 string to rule them all",
"15095 string to rule them all",
"15096 string to rule them all",
"15097 string to rule them all",
"15098 string to rule them all",
"15099 string to rule them all",
"15100 string to rule them all",
"15101 string to rule them all",
"15102 string to rule them all",
"15103 string to rule them all",
"15104 string to rule them all",
"15105 string to rule them all",
"15106 string to rule them all",
"15107 string to rule them all",
"15108 string to rule them all",
"15109 string to rule them all",
"15110 string to rule them all",
"15111 string to rule them all",
"15112 string to rule them all",
"15113 string to rule them all",
"15114 string to rule them all",
"15115 string to rule them all",
"15116 string to rule them all",
"15117 string to rule them all",
"15118 string to rule them all",
"15119 string to rule them all",
"15120 string to rule them all",
"15121 string to rule them all",
"15122 string to rule them all",
"15123 string to rule them all",
"15124 string to rule them all",
"15125 string to rule them all",
"15126 string to rule them all",
"15127 string to rule them all",
"15128 string to rule them all",
"15129 string to rule them all",
"15130 string to rule them all",
"15131 string to rule them all",
"15132 string to rule them all",
"15133 string to rule them all",
"15134 string to rule them all",
"15135 string to rule them all",
"15136 string to rule them all",
"15137 string to rule them all",
"15138 string to rule them all",
"15139 string to rule them all",
"15140 string to rule them all",
"15141 string to rule them all",
"15142 string to rule them all",
"15143 string to rule them all",
"15144 string to rule them all",
"15145 string to rule them all",
"15146 string to rule them all",
"15147 string to rule them all",
"15148 string to rule them all",
"15149 string to rule them all",
"15150 string to rule them all",
"15151 string to rule them all",
"15152 string to rule them all",
"15153 string to rule them all",
"15154 string to rule them all",
"15155 string to rule them all",
"15156 string to rule them all",
"15157 string to rule them all",
"15158 string to rule them all",
"15159 string to rule them all",
"15160 string to rule them all",
"15161 string to rule them all",
"15162 string to rule them all",
"15163 string to rule them all",
"15164 string to rule them all",
"15165 string to rule them all",
"15166 string to rule them all",
"15167 string to rule them all",
"15168 string to rule them all",
"15169 string to rule them all",
"15170 string to rule them all",
"15171 string to rule them all",
"15172 string to rule them all",
"15173 string to rule them all",
"15174 string to rule them all",
"15175 string to rule them all",
"15176 string to rule them all",
"15177 string to rule them all",
"15178 string to rule them all",
"15179 string to rule them all",
"15180 string to rule them all",
"15181 string to rule them all",
"15182 string to rule them all",
"15183 string to rule them all",
"15184 string to rule them all",
"15185 string to rule them all",
"15186 string to rule them all",
"15187 string to rule them all",
"15188 string to rule them all",
"15189 string to rule them all",
"15190 string to rule them all",
"15191 string to rule them all",
"15192 string to rule them all",
"15193 string to rule them all",
"15194 string to rule them all",
"15195 string to rule them all",
"15196 string to rule them all",
"15197 string to rule them all",
"15198 string to rule them all",
"15199 string to rule them all",
"15200 string to rule them all",
"15201 string to rule them all",
"15202 string to rule them all",
"15203 string to rule them all",
"15204 string to rule them all",
"15205 string to rule them all",
"15206 string to rule them all",
"15207 string to rule them all",
"15208 string to rule them all",
"15209 string to rule them all",
"15210 string to rule them all",
"15211 string to rule them all",
"15212 string to rule them all",
"15213 string to rule them all",
"15214 string to rule them all",
"15215 string to rule them all",
"15216 string to rule them all",
"15217 string to rule them all",
"15218 string to rule them all",
"15219 string to rule them all",
"15220 string to rule them all",
"15221 string to rule them all",
"15222 string to rule them all",
"15223 string to rule them all",
"15224 string to rule them all",
"15225 string to rule them all",
"15226 string to rule them all",
"15227 string to rule them all",
"15228 string to rule them all",
"15229 string to rule them all",
"15230 string to rule them all",
"15231 string to rule them all",
"15232 string to rule them all",
"15233 string to rule them all",
"15234 string to rule them all",
"15235 string to rule them all",
"15236 string to rule them all",
"15237 string to rule them all",
"15238 string to rule them all",
"15239 string to rule them all",
"15240 string to rule them all",
"15241 string to rule them all",
"15242 string to rule them all",
"15243 string to rule them all",
"15244 string to rule them all",
"15245 string to rule them all",
"15246 string to rule them all",
"15247 string to rule them all",
"15248 string to rule them all",
"15249 string to rule them all",
"15250 string to rule them all",
"15251 string to rule them all",
"15252 string to rule them all",
"15253 string to rule them all",
"15254 string to rule them all",
"15255 string to rule them all",
"15256 string to rule them all",
"15257 string to rule them all",
"15258 string to rule them all",
"15259 string to rule them all",
"15260 string to rule them all",
"15261 string to rule them all",
"15262 string to rule them all",
"15263 string to rule them all",
"15264 string to rule them all",
"15265 string to rule them all",
"15266 string to rule them all",
"15267 string to rule them all",
"15268 string to rule them all",
"15269 string to rule them all",
"15270 string to rule them all",
"15271 string to rule them all",
"15272 string to rule them all",
"15273 string to rule them all",
"15274 string to rule them all",
"15275 string to rule them all",
"15276 string to rule them all",
"15277 string to rule them all",
"15278 string to rule them all",
"15279 string to rule them all",
"15280 string to rule them all",
"15281 string to rule them all",
"15282 string to rule them all",
"15283 string to rule them all",
"15284 string to rule them all",
"15285 string to rule them all",
"15286 string to rule them all",
"15287 string to rule them all",
"15288 string to rule them all",
"15289 string to rule them all",
"15290 string to rule them all",
"15291 string to rule them all",
"15292 string to rule them all",
"15293 string to rule them all",
"15294 string to rule them all",
"15295 string to rule them all",
"15296 string to rule them all",
"15297 string to rule them all",
"15298 string to rule them all",
"15299 string to rule them all",
"15300 string to rule them all",
"15301 string to rule them all",
"15302 string to rule them all",
"15303 string to rule them all",
"15304 string to rule them all",
"15305 string to rule them all",
"15306 string to rule them all",
"15307 string to rule them all",
"15308 string to rule them all",
"15309 string to rule them all",
"15310 string to rule them all",
"15311 string to rule them all",
"15312 string to rule them all",
"15313 string to rule them all",
"15314 string to rule them all",
"15315 string to rule them all",
"15316 string to rule them all",
"15317 string to rule them all",
"15318 string to rule them all",
"15319 string to rule them all",
"15320 string to rule them all",
"15321 string to rule them all",
"15322 string to rule them all",
"15323 string to rule them all",
"15324 string to rule them all",
"15325 string to rule them all",
"15326 string to rule them all",
"15327 string to rule them all",
"15328 string to rule them all",
"15329 string to rule them all",
"15330 string to rule them all",
"15331 string to rule them all",
"15332 string to rule them all",
"15333 string to rule them all",
"15334 string to rule them all",
"15335 string to rule them all",
"15336 string to rule them all",
"15337 string to rule them all",
"15338 string to rule them all",
"15339 string to rule them all",
"15340 string to rule them all",
"15341 string to rule them all",
"15342 string to rule them all",
"15343 string to rule them all",
"15344 string to rule them all",
"15345 string to rule them all",
"15346 string to rule them all",
"15347 string to rule them all",
"15348 string to rule them all",
"15349 string to rule them all",
"15350 string to rule them all",
"15351 string to rule them all",
"15352 string to rule them all",
"15353 string to rule them all",
"15354 string to rule them all",
"15355 string to rule them all",
"15356 string to rule them all",
"15357 string to rule them all",
"15358 string to rule them all",
"15359 string to rule them all",
"15360 string to rule them all",
"15361 string to rule them all",
"15362 string to rule them all",
"15363 string to rule them all",
"15364 string to rule them all",
"15365 string to rule them all",
"15366 string to rule them all",
"15367 string to rule them all",
"15368 string to rule them all",
"15369 string to rule them all",
"15370 string to rule them all",
"15371 string to rule them all",
"15372 string to rule them all",
"15373 string to rule them all",
"15374 string to rule them all",
"15375 string to rule them all",
"15376 string to rule them all",
"15377 string to rule them all",
"15378 string to rule them all",
"15379 string to rule them all",
"15380 string to rule them all",
"15381 string to rule them all",
"15382 string to rule them all",
"15383 string to rule them all",
"15384 string to rule them all",
"15385 string to rule them all",
"15386 string to rule them all",
"15387 string to rule them all",
"15388 string to rule them all",
"15389 string to rule them all",
"15390 string to rule them all",
"15391 string to rule them all",
"15392 string to rule them all",
"15393 string to rule them all",
"15394 string to rule them all",
"15395 string to rule them all",
"15396 string to rule them all",
"15397 string to rule them all",
"15398 string to rule them all",
"15399 string to rule them all",
"15400 string to rule them all",
"15401 string to rule them all",
"15402 string to rule them all",
"15403 string to rule them all",
"15404 string to rule them all",
"15405 string to rule them all",
"15406 string to rule them all",
"15407 string to rule them all",
"15408 string to rule them all",
"15409 string to rule them all",
"15410 string to rule them all",
"15411 string to rule them all",
"15412 string to rule them all",
"15413 string to rule them all",
"15414 string to rule them all",
"15415 string to rule them all",
"15416 string to rule them all",
"15417 string to rule them all",
"15418 string to rule them all",
"15419 string to rule them all",
"15420 string to rule them all",
"15421 string to rule them all",
"15422 string to rule them all",
"15423 string to rule them all",
"15424 string to rule them all",
"15425 string to rule them all",
"15426 string to rule them all",
"15427 string to rule them all",
"15428 string to rule them all",
"15429 string to rule them all",
"15430 string to rule them all",
"15431 string to rule them all",
"15432 string to rule them all",
"15433 string to rule them all",
"15434 string to rule them all",
"15435 string to rule them all",
"15436 string to rule them all",
"15437 string to rule them all",
"15438 string to rule them all",
"15439 string to rule them all",
"15440 string to rule them all",
"15441 string to rule them all",
"15442 string to rule them all",
"15443 string to rule them all",
"15444 string to rule them all",
"15445 string to rule them all",
"15446 string to rule them all",
"15447 string to rule them all",
"15448 string to rule them all",
"15449 string to rule them all",
"15450 string to rule them all",
"15451 string to rule them all",
"15452 string to rule them all",
"15453 string to rule them all",
"15454 string to rule them all",
"15455 string to rule them all",
"15456 string to rule them all",
"15457 string to rule them all",
"15458 string to rule them all",
"15459 string to rule them all",
"15460 string to rule them all",
"15461 string to rule them all",
"15462 string to rule them all",
"15463 string to rule them all",
"15464 string to rule them all",
"15465 string to rule them all",
"15466 string to rule them all",
"15467 string to rule them all",
"15468 string to rule them all",
"15469 string to rule them all",
"15470 string to rule them all",
"15471 string to rule them all",
"15472 string to rule them all",
"15473 string to rule them all",
"15474 string to rule them all",
"15475 string to rule them all",
"15476 string to rule them all",
"15477 string to rule them all",
"15478 string to rule them all",
"15479 string to rule them all",
"15480 string to rule them all",
"15481 string to rule them all",
"15482 string to rule them all",
"15483 string to rule them all",
"15484 string to rule them all",
"15485 string to rule them all",
"15486 string to rule them all",
"15487 string to rule them all",
"15488 string to rule them all",
"15489 string to rule them all",
"15490 string to rule them all",
"15491 string to rule them all",
"15492 string to rule them all",
"15493 string to rule them all",
"15494 string to rule them all",
"15495 string to rule them all",
"15496 string to rule them all",
"15497 string to rule them all",
"15498 string to rule them all",
"15499 string to rule them all",
"15500 string to rule them all",
"15501 string to rule them all",
"15502 string to rule them all",
"15503 string to rule them all",
"15504 string to rule them all",
"15505 string to rule them all",
"15506 string to rule them all",
"15507 string to rule them all",
"15508 string to rule them all",
"15509 string to rule them all",
"15510 string to rule them all",
"15511 string to rule them all",
"15512 string to rule them all",
"15513 string to rule them all",
"15514 string to rule them all",
"15515 string to rule them all",
"15516 string to rule them all",
"15517 string to rule them all",
"15518 string to rule them all",
"15519 string to rule them all",
"15520 string to rule them all",
"15521 string to rule them all",
"15522 string to rule them all",
"15523 string to rule them all",
"15524 string to rule them all",
"15525 string to rule them all",
"15526 string to rule them all",
"15527 string to rule them all",
"15528 string to rule them all",
"15529 string to rule them all",
"15530 string to rule them all",
"15531 string to rule them all",
"15532 string to rule them all",
"15533 string to rule them all",
"15534 string to rule them all",
"15535 string to rule them all",
"15536 string to rule them all",
"15537 string to rule them all",
"15538 string to rule them all",
"15539 string to rule them all",
"15540 string to rule them all",
"15541 string to rule them all",
"15542 string to rule them all",
"15543 string to rule them all",
"15544 string to rule them all",
"15545 string to rule them all",
"15546 string to rule them all",
"15547 string to rule them all",
"15548 string to rule them all",
"15549 string to rule them all",
"15550 string to rule them all",
"15551 string to rule them all",
"15552 string to rule them all",
"15553 string to rule them all",
"15554 string to rule them all",
"15555 string to rule them all",
"15556 string to rule them all",
"15557 string to rule them all",
"15558 string to rule them all",
"15559 string to rule them all",
"15560 string to rule them all",
"15561 string to rule them all",
"15562 string to rule them all",
"15563 string to rule them all",
"15564 string to rule them all",
"15565 string to rule them all",
"15566 string to rule them all",
"15567 string to rule them all",
"15568 string to rule them all",
"15569 string to rule them all",
"15570 string to rule them all",
"15571 string to rule them all",
"15572 string to rule them all",
"15573 string to rule them all",
"15574 string to rule them all",
"15575 string to rule them all",
"15576 string to rule them all",
"15577 string to rule them all",
"15578 string to rule them all",
"15579 string to rule them all",
"15580 string to rule them all",
"15581 string to rule them all",
"15582 string to rule them all",
"15583 string to rule them all",
"15584 string to rule them all",
"15585 string to rule them all",
"15586 string to rule them all",
"15587 string to rule them all",
"15588 string to rule them all",
"15589 string to rule them all",
"15590 string to rule them all",
"15591 string to rule them all",
"15592 string to rule them all",
"15593 string to rule them all",
"15594 string to rule them all",
"15595 string to rule them all",
"15596 string to rule them all",
"15597 string to rule them all",
"15598 string to rule them all",
"15599 string to rule them all",
"15600 string to rule them all",
"15601 string to rule them all",
"15602 string to rule them all",
"15603 string to rule them all",
"15604 string to rule them all",
"15605 string to rule them all",
"15606 string to rule them all",
"15607 string to rule them all",
"15608 string to rule them all",
"15609 string to rule them all",
"15610 string to rule them all",
"15611 string to rule them all",
"15612 string to rule them all",
"15613 string to rule them all",
"15614 string to rule them all",
"15615 string to rule them all",
"15616 string to rule them all",
"15617 string to rule them all",
"15618 string to rule them all",
"15619 string to rule them all",
"15620 string to rule them all",
"15621 string to rule them all",
"15622 string to rule them all",
"15623 string to rule them all",
"15624 string to rule them all",
"15625 string to rule them all",
"15626 string to rule them all",
"15627 string to rule them all",
"15628 string to rule them all",
"15629 string to rule them all",
"15630 string to rule them all",
"15631 string to rule them all",
"15632 string to rule them all",
"15633 string to rule them all",
"15634 string to rule them all",
"15635 string to rule them all",
"15636 string to rule them all",
"15637 string to rule them all",
"15638 string to rule them all",
"15639 string to rule them all",
"15640 string to rule them all",
"15641 string to rule them all",
"15642 string to rule them all",
"15643 string to rule them all",
"15644 string to rule them all",
"15645 string to rule them all",
"15646 string to rule them all",
"15647 string to rule them all",
"15648 string to rule them all",
"15649 string to rule them all",
"15650 string to rule them all",
"15651 string to rule them all",
"15652 string to rule them all",
"15653 string to rule them all",
"15654 string to rule them all",
"15655 string to rule them all",
"15656 string to rule them all",
"15657 string to rule them all",
"15658 string to rule them all",
"15659 string to rule them all",
"15660 string to rule them all",
"15661 string to rule them all",
"15662 string to rule them all",
"15663 string to rule them all",
"15664 string to rule them all",
"15665 string to rule them all",
"15666 string to rule them all",
"15667 string to rule them all",
"15668 string to rule them all",
"15669 string to rule them all",
"15670 string to rule them all",
"15671 string to rule them all",
"15672 string to rule them all",
"15673 string to rule them all",
"15674 string to rule them all",
"15675 string to rule them all",
"15676 string to rule them all",
"15677 string to rule them all",
"15678 string to rule them all",
"15679 string to rule them all",
"15680 string to rule them all",
"15681 string to rule them all",
"15682 string to rule them all",
"15683 string to rule them all",
"15684 string to rule them all",
"15685 string to rule them all",
"15686 string to rule them all",
"15687 string to rule them all",
"15688 string to rule them all",
"15689 string to rule them all",
"15690 string to rule them all",
"15691 string to rule them all",
"15692 string to rule them all",
"15693 string to rule them all",
"15694 string to rule them all",
"15695 string to rule them all",
"15696 string to rule them all",
"15697 string to rule them all",
"15698 string to rule them all",
"15699 string to rule them all",
"15700 string to rule them all",
"15701 string to rule them all",
"15702 string to rule them all",
"15703 string to rule them all",
"15704 string to rule them all",
"15705 string to rule them all",
"15706 string to rule them all",
"15707 string to rule them all",
"15708 string to rule them all",
"15709 string to rule them all",
"15710 string to rule them all",
"15711 string to rule them all",
"15712 string to rule them all",
"15713 string to rule them all",
"15714 string to rule them all",
"15715 string to rule them all",
"15716 string to rule them all",
"15717 string to rule them all",
"15718 string to rule them all",
"15719 string to rule them all",
"15720 string to rule them all",
"15721 string to rule them all",
"15722 string to rule them all",
"15723 string to rule them all",
"15724 string to rule them all",
"15725 string to rule them all",
"15726 string to rule them all",
"15727 string to rule them all",
"15728 string to rule them all",
"15729 string to rule them all",
"15730 string to rule them all",
"15731 string to rule them all",
"15732 string to rule them all",
"15733 string to rule them all",
"15734 string to rule them all",
"15735 string to rule them all",
"15736 string to rule them all",
"15737 string to rule them all",
"15738 string to rule them all",
"15739 string to rule them all",
"15740 string to rule them all",
"15741 string to rule them all",
"15742 string to rule them all",
"15743 string to rule them all",
"15744 string to rule them all",
"15745 string to rule them all",
"15746 string to rule them all",
"15747 string to rule them all",
"15748 string to rule them all",
"15749 string to rule them all",
"15750 string to rule them all",
"15751 string to rule them all",
"15752 string to rule them all",
"15753 string to rule them all",
"15754 string to rule them all",
"15755 string to rule them all",
"15756 string to rule them all",
"15757 string to rule them all",
"15758 string to rule them all",
"15759 string to rule them all",
"15760 string to rule them all",
"15761 string to rule them all",
"15762 string to rule them all",
"15763 string to rule them all",
"15764 string to rule them all",
"15765 string to rule them all",
"15766 string to rule them all",
"15767 string to rule them all",
"15768 string to rule them all",
"15769 string to rule them all",
"15770 string to rule them all",
"15771 string to rule them all",
"15772 string to rule them all",
"15773 string to rule them all",
"15774 string to rule them all",
"15775 string to rule them all",
"15776 string to rule them all",
"15777 string to rule them all",
"15778 string to rule them all",
"15779 string to rule them all",
"15780 string to rule them all",
"15781 string to rule them all",
"15782 string to rule them all",
"15783 string to rule them all",
"15784 string to rule them all",
"15785 string to rule them all",
"15786 string to rule them all",
"15787 string to rule them all",
"15788 string to rule them all",
"15789 string to rule them all",
"15790 string to rule them all",
"15791 string to rule them all",
"15792 string to rule them all",
"15793 string to rule them all",
"15794 string to rule them all",
"15795 string to rule them all",
"15796 string to rule them all",
"15797 string to rule them all",
"15798 string to rule them all",
"15799 string to rule them all",
"15800 string to rule them all",
"15801 string to rule them all",
"15802 string to rule them all",
"15803 string to rule them all",
"15804 string to rule them all",
"15805 string to rule them all",
"15806 string to rule them all",
"15807 string to rule them all",
"15808 string to rule them all",
"15809 string to rule them all",
"15810 string to rule them all",
"15811 string to rule them all",
"15812 string to rule them all",
"15813 string to rule them all",
"15814 string to rule them all",
"15815 string to rule them all",
"15816 string to rule them all",
"15817 string to rule them all",
"15818 string to rule them all",
"15819 string to rule them all",
"15820 string to rule them all",
"15821 string to rule them all",
"15822 string to rule them all",
"15823 string to rule them all",
"15824 string to rule them all",
"15825 string to rule them all",
"15826 string to rule them all",
"15827 string to rule them all",
"15828 string to rule them all",
"15829 string to rule them all",
"15830 string to rule them all",
"15831 string to rule them all",
"15832 string to rule them all",
"15833 string to rule them all",
"15834 string to rule them all",
"15835 string to rule them all",
"15836 string to rule them all",
"15837 string to rule them all",
"15838 string to rule them all",
"15839 string to rule them all",
"15840 string to rule them all",
"15841 string to rule them all",
"15842 string to rule them all",
"15843 string to rule them all",
"15844 string to rule them all",
"15845 string to rule them all",
"15846 string to rule them all",
"15847 string to rule them all",
"15848 string to rule them all",
"15849 string to rule them all",
"15850 string to rule them all",
"15851 string to rule them all",
"15852 string to rule them all",
"15853 string to rule them all",
"15854 string to rule them all",
"15855 string to rule them all",
"15856 string to rule them all",
"15857 string to rule them all",
"15858 string to rule them all",
"15859 string to rule them all",
"15860 string to rule them all",
"15861 string to rule them all",
"15862 string to rule them all",
"15863 string to rule them all",
"15864 string to rule them all",
"15865 string to rule them all",
"15866 string to rule them all",
"15867 string to rule them all",
"15868 string to rule them all",
"15869 string to rule them all",
"15870 string to rule them all",
"15871 string to rule them all",
"15872 string to rule them all",
"15873 string to rule them all",
"15874 string to rule them all",
"15875 string to rule them all",
"15876 string to rule them all",
"15877 string to rule them all",
"15878 string to rule them all",
"15879 string to rule them all",
"15880 string to rule them all",
"15881 string to rule them all",
"15882 string to rule them all",
"15883 string to rule them all",
"15884 string to rule them all",
"15885 string to rule them all",
"15886 string to rule them all",
"15887 string to rule them all",
"15888 string to rule them all",
"15889 string to rule them all",
"15890 string to rule them all",
"15891 string to rule them all",
"15892 string to rule them all",
"15893 string to rule them all",
"15894 string to rule them all",
"15895 string to rule them all",
"15896 string to rule them all",
"15897 string to rule them all",
"15898 string to rule them all",
"15899 string to rule them all",
"15900 string to rule them all",
"15901 string to rule them all",
"15902 string to rule them all",
"15903 string to rule them all",
"15904 string to rule them all",
"15905 string to rule them all",
"15906 string to rule them all",
"15907 string to rule them all",
"15908 string to rule them all",
"15909 string to rule them all",
"15910 string to rule them all",
"15911 string to rule them all",
"15912 string to rule them all",
"15913 string to rule them all",
"15914 string to rule them all",
"15915 string to rule them all",
"15916 string to rule them all",
"15917 string to rule them all",
"15918 string to rule them all",
"15919 string to rule them all",
"15920 string to rule them all",
"15921 string to rule them all",
"15922 string to rule them all",
"15923 string to rule them all",
"15924 string to rule them all",
"15925 string to rule them all",
"15926 string to rule them all",
"15927 string to rule them all",
"15928 string to rule them all",
"15929 string to rule them all",
"15930 string to rule them all",
"15931 string to rule them all",
"15932 string to rule them all",
"15933 string to rule them all",
"15934 string to rule them all",
"15935 string to rule them all",
"15936 string to rule them all",
"15937 string to rule them all",
"15938 string to rule them all",
"15939 string to rule them all",
"15940 string to rule them all",
"15941 string to rule them all",
"15942 string to rule them all",
"15943 string to rule them all",
"15944 string to rule them all",
"15945 string to rule them all",
"15946 string to rule them all",
"15947 string to rule them all",
"15948 string to rule them all",
"15949 string to rule them all",
"15950 string to rule them all",
"15951 string to rule them all",
"15952 string to rule them all",
"15953 string to rule them all",
"15954 string to rule them all",
"15955 string to rule them all",
"15956 string to rule them all",
"15957 string to rule them all",
"15958 string to rule them all",
"15959 string to rule them all",
"15960 string to rule them all",
"15961 string to rule them all",
"15962 string to rule them all",
"15963 string to rule them all",
"15964 string to rule them all",
"15965 string to rule them all",
"15966 string to rule them all",
"15967 string to rule them all",
"15968 string to rule them all",
"15969 string to rule them all",
"15970 string to rule them all",
"15971 string to rule them all",
"15972 string to rule them all",
"15973 string to rule them all",
"15974 string to rule them all",
"15975 string to rule them all",
"15976 string to rule them all",
"15977 string to rule them all",
"15978 string to rule them all",
"15979 string to rule them all",
"15980 string to rule them all",
"15981 string to rule them all",
"15982 string to rule them all",
"15983 string to rule them all",
"15984 string to rule them all",
"15985 string to rule them all",
"15986 string to rule them all",
"15987 string to rule them all",
"15988 string to rule them all",
"15989 string to rule them all",
"15990 string to rule them all",
"15991 string to rule them all",
"15992 string to rule them all",
"15993 string to rule them all",
"15994 string to rule them all",
"15995 string to rule them all",
"15996 string to rule them all",
"15997 string to rule them all",
"15998 string to rule them all",
"15999 string to rule them all",
"16000 string to rule them all",
"16001 string to rule them all",
"16002 string to rule them all",
"16003 string to rule them all",
"16004 string to rule them all",
"16005 string to rule them all",
"16006 string to rule them all",
"16007 string to rule them all",
"16008 string to rule them all",
"16009 string to rule them all",
"16010 string to rule them all",
"16011 string to rule them all",
"16012 string to rule them all",
"16013 string to rule them all",
"16014 string to rule them all",
"16015 string to rule them all",
"16016 string to rule them all",
"16017 string to rule them all",
"16018 string to rule them all",
"16019 string to rule them all",
"16020 string to rule them all",
"16021 string to rule them all",
"16022 string to rule them all",
"16023 string to rule them all",
"16024 string to rule them all",
"16025 string to rule them all",
"16026 string to rule them all",
"16027 string to rule them all",
"16028 string to rule them all",
"16029 string to rule them all",
"16030 string to rule them all",
"16031 string to rule them all",
"16032 string to rule them all",
"16033 string to rule them all",
"16034 string to rule them all",
"16035 string to rule them all",
"16036 string to rule them all",
"16037 string to rule them all",
"16038 string to rule them all",
"16039 string to rule them all",
"16040 string to rule them all",
"16041 string to rule them all",
"16042 string to rule them all",
"16043 string to rule them all",
"16044 string to rule them all",
"16045 string to rule them all",
"16046 string to rule them all",
"16047 string to rule them all",
"16048 string to rule them all",
"16049 string to rule them all",
"16050 string to rule them all",
"16051 string to rule them all",
"16052 string to rule them all",
"16053 string to rule them all",
"16054 string to rule them all",
"16055 string to rule them all",
"16056 string to rule them all",
"16057 string to rule them all",
"16058 string to rule them all",
"16059 string to rule them all",
"16060 string to rule them all",
"16061 string to rule them all",
"16062 string to rule them all",
"16063 string to rule them all",
"16064 string to rule them all",
"16065 string to rule them all",
"16066 string to rule them all",
"16067 string to rule them all",
"16068 string to rule them all",
"16069 string to rule them all",
"16070 string to rule them all",
"16071 string to rule them all",
"16072 string to rule them all",
"16073 string to rule them all",
"16074 string to rule them all",
"16075 string to rule them all",
"16076 string to rule them all",
"16077 string to rule them all",
"16078 string to rule them all",
"16079 string to rule them all",
"16080 string to rule them all",
"16081 string to rule them all",
"16082 string to rule them all",
"16083 string to rule them all",
"16084 string to rule them all",
"16085 string to rule them all",
"16086 string to rule them all",
"16087 string to rule them all",
"16088 string to rule them all",
"16089 string to rule them all",
"16090 string to rule them all",
"16091 string to rule them all",
"16092 string to rule them all",
"16093 string to rule them all",
"16094 string to rule them all",
"16095 string to rule them all",
"16096 string to rule them all",
"16097 string to rule them all",
"16098 string to rule them all",
"16099 string to rule them all",
"16100 string to rule them all",
"16101 string to rule them all",
"16102 string to rule them all",
"16103 string to rule them all",
"16104 string to rule them all",
"16105 string to rule them all",
"16106 string to rule them all",
"16107 string to rule them all",
"16108 string to rule them all",
"16109 string to rule them all",
"16110 string to rule them all",
"16111 string to rule them all",
"16112 string to rule them all",
"16113 string to rule them all",
"16114 string to rule them all",
"16115 string to rule them all",
"16116 string to rule them all",
"16117 string to rule them all",
"16118 string to rule them all",
"16119 string to rule them all",
"16120 string to rule them all",
"16121 string to rule them all",
"16122 string to rule them all",
"16123 string to rule them all",
"16124 string to rule them all",
"16125 string to rule them all",
"16126 string to rule them all",
"16127 string to rule them all",
"16128 string to rule them all",
"16129 string to rule them all",
"16130 string to rule them all",
"16131 string to rule them all",
"16132 string to rule them all",
"16133 string to rule them all",
"16134 string to rule them all",
"16135 string to rule them all",
"16136 string to rule them all",
"16137 string to rule them all",
"16138 string to rule them all",
"16139 string to rule them all",
"16140 string to rule them all",
"16141 string to rule them all",
"16142 string to rule them all",
"16143 string to rule them all",
"16144 string to rule them all",
"16145 string to rule them all",
"16146 string to rule them all",
"16147 string to rule them all",
"16148 string to rule them all",
"16149 string to rule them all",
"16150 string to rule them all",
"16151 string to rule them all",
"16152 string to rule them all",
"16153 string to rule them all",
"16154 string to rule them all",
"16155 string to rule them all",
"16156 string to rule them all",
"16157 string to rule them all",
"16158 string to rule them all",
"16159 string to rule them all",
"16160 string to rule them all",
"16161 string to rule them all",
"16162 string to rule them all",
"16163 string to rule them all",
"16164 string to rule them all",
"16165 string to rule them all",
"16166 string to rule them all",
"16167 string to rule them all",
"16168 string to rule them all",
"16169 string to rule them all",
"16170 string to rule them all",
"16171 string to rule them all",
"16172 string to rule them all",
"16173 string to rule them all",
"16174 string to rule them all",
"16175 string to rule them all",
"16176 string to rule them all",
"16177 string to rule them all",
"16178 string to rule them all",
"16179 string to rule them all",
"16180 string to rule them all",
"16181 string to rule them all",
"16182 string to rule them all",
"16183 string to rule them all",
"16184 string to rule them all",
"16185 string to rule them all",
"16186 string to rule them all",
"16187 string to rule them all",
"16188 string to rule them all",
"16189 string to rule them all",
"16190 string to rule them all",
"16191 string to rule them all",
"16192 string to rule them all",
"16193 string to rule them all",
"16194 string to rule them all",
"16195 string to rule them all",
"16196 string to rule them all",
"16197 string to rule them all",
"16198 string to rule them all",
"16199 string to rule them all",
"16200 string to rule them all",
"16201 string to rule them all",
"16202 string to rule them all",
"16203 string to rule them all",
"16204 string to rule them all",
"16205 string to rule them all",
"16206 string to rule them all",
"16207 string to rule them all",
"16208 string to rule them all",
"16209 string to rule them all",
"16210 string to rule them all",
"16211 string to rule them all",
"16212 string to rule them all",
"16213 string to rule them all",
"16214 string to rule them all",
"16215 string to rule them all",
"16216 string to rule them all",
"16217 string to rule them all",
"16218 string to rule them all",
"16219 string to rule them all",
"16220 string to rule them all",
"16221 string to rule them all",
"16222 string to rule them all",
"16223 string to rule them all",
"16224 string to rule them all",
"16225 string to rule them all",
"16226 string to rule them all",
"16227 string to rule them all",
"16228 string to rule them all",
"16229 string to rule them all",
"16230 string to rule them all",
"16231 string to rule them all",
"16232 string to rule them all",
"16233 string to rule them all",
"16234 string to rule them all",
"16235 string to rule them all",
"16236 string to rule them all",
"16237 string to rule them all",
"16238 string to rule them all",
"16239 string to rule them all",
"16240 string to rule them all",
"16241 string to rule them all",
"16242 string to rule them all",
"16243 string to rule them all",
"16244 string to rule them all",
"16245 string to rule them all",
"16246 string to rule them all",
"16247 string to rule them all",
"16248 string to rule them all",
"16249 string to rule them all",
"16250 string to rule them all",
"16251 string to rule them all",
"16252 string to rule them all",
"16253 string to rule them all",
"16254 string to rule them all",
"16255 string to rule them all",
"16256 string to rule them all",
"16257 string to rule them all",
"16258 string to rule them all",
"16259 string to rule them all",
"16260 string to rule them all",
"16261 string to rule them all",
"16262 string to rule them all",
"16263 string to rule them all",
"16264 string to rule them all",
"16265 string to rule them all",
"16266 string to rule them all",
"16267 string to rule them all",
"16268 string to rule them all",
"16269 string to rule them all",
"16270 string to rule them all",
"16271 string to rule them all",
"16272 string to rule them all",
"16273 string to rule them all",
"16274 string to rule them all",
"16275 string to rule them all",
"16276 string to rule them all",
"16277 string to rule them all",
"16278 string to rule them all",
"16279 string to rule them all",
"16280 string to rule them all",
"16281 string to rule them all",
"16282 string to rule them all",
"16283 string to rule them all",
"16284 string to rule them all",
"16285 string to rule them all",
"16286 string to rule them all",
"16287 string to rule them all",
"16288 string to rule them all",
"16289 string to rule them all",
"16290 string to rule them all",
"16291 string to rule them all",
"16292 string to rule them all",
"16293 string to rule them all",
"16294 string to rule them all",
"16295 string to rule them all",
"16296 string to rule them all",
"16297 string to rule them all",
"16298 string to rule them all",
"16299 string to rule them all",
"16300 string to rule them all",
"16301 string to rule them all",
"16302 string to rule them all",
"16303 string to rule them all",
"16304 string to rule them all",
"16305 string to rule them all",
"16306 string to rule them all",
"16307 string to rule them all",
"16308 string to rule them all",
"16309 string to rule them all",
"16310 string to rule them all",
"16311 string to rule them all",
"16312 string to rule them all",
"16313 string to rule them all",
"16314 string to rule them all",
"16315 string to rule them all",
"16316 string to rule them all",
"16317 string to rule them all",
"16318 string to rule them all",
"16319 string to rule them all",
"16320 string to rule them all",
"16321 string to rule them all",
"16322 string to rule them all",
"16323 string to rule them all",
"16324 string to rule them all",
"16325 string to rule them all",
"16326 string to rule them all",
"16327 string to rule them all",
"16328 string to rule them all",
"16329 string to rule them all",
"16330 string to rule them all",
"16331 string to rule them all",
"16332 string to rule them all",
"16333 string to rule them all",
"16334 string to rule them all",
"16335 string to rule them all",
"16336 string to rule them all",
"16337 string to rule them all",
"16338 string to rule them all",
"16339 string to rule them all",
"16340 string to rule them all",
"16341 string to rule them all",
"16342 string to rule them all",
"16343 string to rule them all",
"16344 string to rule them all",
"16345 string to rule them all",
"16346 string to rule them all",
"16347 string to rule them all",
"16348 string to rule them all",
"16349 string to rule them all",
"16350 string to rule them all",
"16351 string to rule them all",
"16352 string to rule them all",
"16353 string to rule them all",
"16354 string to rule them all",
"16355 string to rule them all",
"16356 string to rule them all",
"16357 string to rule them all",
"16358 string to rule them all",
"16359 string to rule them all",
"16360 string to rule them all",
"16361 string to rule them all",
"16362 string to rule them all",
"16363 string to rule them all",
"16364 string to rule them all",
"16365 string to rule them all",
"16366 string to rule them all",
"16367 string to rule them all",
"16368 string to rule them all",
"16369 string to rule them all",
"16370 string to rule them all",
"16371 string to rule them all",
"16372 string to rule them all",
"16373 string to rule them all",
"16374 string to rule them all",
"16375 string to rule them all",
"16376 string to rule them all",
"16377 string to rule them all",
"16378 string to rule them all",
"16379 string to rule them all",
"16380 string to rule them all",
"16381 string to rule them all",
"16382 string to rule them all",
"16383 string to rule them all",
"16384 string to rule them all",
"16385 string to rule them all",
"16386 string to rule them all",
"16387 string to rule them all",
"16388 string to rule them all",
"16389 string to rule them all",
"16390 string to rule them all",
"16391 string to rule them all",
"16392 string to rule them all",
"16393 string to rule them all",
"16394 string to rule them all",
"16395 string to rule them all",
"16396 string to rule them all",
"16397 string to rule them all",
"16398 string to rule them all",
"16399 string to rule them all",
"16400 string to rule them all",
"16401 string to rule them all",
"16402 string to rule them all",
"16403 string to rule them all",
"16404 string to rule them all",
"16405 string to rule them all",
"Module._load REQUEST ",
"getEvalOrigin",
"noDeprecation",
",null",
"DTRACE_HTTP_CLIENT_REQUEST",
"missing path",
") {\n",
"Unknown API tag <",
"$",
"fun",
"tls_sni",
"isatty",
"$6",
"repl.js",
"function",
"(?:)",
"send",
"_forkChild",
"v8::hidden_stack_trace",
"NODE_NO_READLINE",
"hasOwn",
"Internal error: invalid desc_array",
"openssl",
"Debug",
": ",
"column_offset",
"[",
"setGet",
"package.json",
".code",
"column",
"elements",
"xw+",
"$5",
"$*",
" parent: ",
"ucs2",
"getFunctionName",
"Error parsing ",
"v8debug",
"this",
"..",
"fs.open(O_EXCL)",
"DTRACE_NET_SOCKET_READ",
"MIN_VALUE",
"hasGetter",
"v8",
"illegal execution state",
"illegal access",
"value_and_accessor",
"getSet",
"input",
".catch-var",
"getThis",
"extensions",
"]",
"compilation_type",
"property_desc_object",
"wx+",
"unknown_label",
"to_line",
"illegal_return",
"restrict",
"terminal",
"lib",
"invalid_lhs_in_prefix_op",
"data",
" ",
"hasCachedNameOrSourceURL",
"Object.prototype.__defineGetter__: Expecting function",
";",
"utf8",
")",
"SQRT1_2",
"NODE_DISABLE_COLORS",
"xa",
"$RangeError",
"__proto__",
"_forceRepl",
"getGet",
"redefine_disallowed",
"lineCount",
"$3",
"HOME",
"redeclaration",
"proto_object_or_null",
"LN2",
"(function(",
"_disposed",
"_setupWorker",
"$Error",
"MAX_VALUE",
"KeyedStoreElementMonomorphic",
"called_on_null_or_undefined",
"POSITIVE_INFINITY",
"$TypeError",
"setValue",
"./",
"NODE_MODULE_CONTEXTS",
"unable_to_parse",
"Bad arguments",
"getScriptNameOrSourceURL",
"NODE_PATH",
"Not supported",
"Cannot find module '",
"line_offset",
"illegal_break",
"hasValue",
"line",
"KeyedLoadElementMonomorphic",
"[eval]",
"setSet",
"locationFromPosition",
"xw",
"\n",
"use strict",
"$9",
" from ",
"$'",
"object",
"NODE_DEBUG_TIMEOUT",
"hasEnumerable",
"eval_from_function_name",
"Unknown encoding: ",
"tls_npn",
"$_",
"looking for ",
"\n})",
"}",
"apply_non_function",
"hasConfigurable",
"rs+",
"node_modules",
"x",
"NODE_DEBUG",
"ex",
"from_position",
"_eval",
"native_module",
"getMethodName",
"load ",
"DerivedHasOwnTrap",
".for.",
"E",
"sourceText",
"to_position",
"eval_from_script_position",
"eval_from_script",
"base64",
"ignoreCase",
"invalid_lhs_in_for_in",
"getter_must_be_callable",
"LN10",
"_handle",
"\\",
"StringImpl",
"context_data",
"rs",
"now: ",
"Unknown file open flag: ",
"USERPROFILE",
"regexp_flags",
".node_libraries",
"DTRACE_HTTP_SERVER_REQUEST",
"native",
"errno",
"First argument needs to be a number, ",
"DerivedKeysTrap",
"invalid_regexp_flags",
"getValue",
"binary",
",",
"nameOrSourceURL",
"utf-16le",
"from_line",
"stackTraceLimit",
"win32",
"getFileName",
"lineFromPosition",
"hasSetter",
"===",
"load native module ",
"No such native module ",
"wx",
"getColumnNumber",
"rightContext",
"DTRACE_HTTP_SERVER_RESPONSE",
"(anonymous function)",
"ipv6",
"called_non_callable",
"v8::IdentityHash",
"ax",
"incompatible_method_receiver",
"NaN",
"setBreakPoint",
"Domain",
"generate",
"locationFromLine",
"_charsWritten",
"timeout callback ",
"[]",
"apply_wrong_args",
"setWritable",
"stack",
"NODE_CHANNEL_FD",
"CharAt",
"RELATIVE: requested:",
" for module ",
"(closure)",
"oncomplete",
"ascii",
"isEnumerable",
"{",
"setter_must_be_callable",
" ",
"isConstructor",
"useColors",
"isToplevel",
"addSpecialSlice",
"define_disallowed",
"DTRACE_NET_STREAM_END",
"NODE_UNIQUE_ID",
"called_on_non_object",
"$input",
"getTypeName",
"hex",
"$4",
"lastParen",
"$7",
"Arguments to path.resolve must be strings",
"line_ends",
"out-of-memory",
"syscall",
"sourceLine",
" set ID to: ",
"Path must be a string without null bytes.",
"null_to_object",
"utf16le",
"enter",
"add",
"-Infinity",
"ax+",
"illegal argument",
"SQRT2",
"path must be a string",
"DTRACE_NET_SOCKET_WRITE",
"raw",
"$2",
"NEGATIVE_INFINITY",
"main",
"load root module",
" in ",
"modules",
"tcp_wrap",
"invalid_lhs_in_assignment",
"\"\"",
"sourceSlice",
"$`",
"hasWritable",
"getFunction",
"LOG10E",
"$+",
"callee",
"isEval",
"==",
"special_string",
"a+",
"load submodule",
"LOG2E",
"instanceof_nonobject_proto",
"KeyedStoreAndGrowElementMonomorphic",
"uv",
" list empty",
"illegal_continue",
"instanceof_function_expected",
"Infinity",
"DTRACE_HTTP_CLIENT_RESPONSE",
"wrote snapshot",
"invalid_lhs_in_postfix_op",
"w",
"utf-8",
"xa+",
"cachedNameOrSourceURL",
"array or string.",
"",
"circular_structure",
"isWritable",
"getLineNumber",
"setConfigurable",
"r+",
"isNative",
"invalid_in_operator_use",
"w+",
"$1",
"leftContext",
"ucs-2",
"$&",
"$8",
"_third_party_main",
"PI",
"multiline",
"lastIndex",
"GLOBAL",
"receiver",
".node_modules",
"lastMatch",
" list wait because diff is ",
"MODULE_NOT_FOUND",
"http_parser",
"DTRACE_NET_SERVER_CONNECTION",
"isConfigurable",
"ares",
"getPosition",
"First argument must be a Buffer when slicing",
"setEnumerable",
"$SyntaxError",
"$URIError",
"$ReferenceError",
"$EvalError",
".value_",
".enumerable_",
".writable_",
".h",
".i",
".a",
".c",
".k",
".getCached",
".exists",
".getSource",
".compile",
".cache",
"(code relocation info)",
"^([a-zA-Z]:|[\\\\\\/]{2}[^\\\\\\/]+[\\\\\\/]+[^\\\\\\/]+)?([\\\\\\/])?([\\s\\S]*?)$",
"^([\\s\\S]*?)((?:\\.{1,2}|[^\\\\\\/]+?|)(\\.[^.\\/\\\\]*|))(?:[\\\\\\/]*)$",
"^index\\.\\w+?$",
"(.*?)(?:[\\/\\\\]+|$)",
"^(?:[a-zA-Z]:|[\\\\\\/]{2}[^\\\\\\/]+[\\\\\\/][^\\\\\\/]+)?[\\\\\\/]*",
"[\\/\\\\]",
"byte_array_map",
"free_space_map",
"one_pointer_filler_map",
"two_pointer_filler_map",
"undefined_value",
"instanceof_cache_map",
"null_value",
"true_value",
"false_value",
"global_property_cell_map",
"shared_function_info_map",
"meta_map",
"ascii_symbol_map",
"ascii_string_map",
"heap_number_map",
"native_context_map",
"fixed_array_map",
"code_map",
"scope_info_map",
"fixed_cow_array_map",
"fixed_double_array_map",
"no_interceptor_result_sentinel",
"hash_table_map",
"empty_fixed_array",
"empty_byte_array",
"empty_string",
"empty_descriptor_array",
"arguments_marker",
"number_string_cache",
"single_character_string_cache",
"string_split_cache",
"regexp_multiple_cache",
"termination_exception",
"string_map",
"symbol_map",
"cons_string_map",
"cons_ascii_string_map",
"sliced_string_map",
"sliced_ascii_string_map",
"cons_symbol_map",
"cons_ascii_symbol_map",
"external_symbol_map",
"external_symbol_with_ascii_data_map",
"external_ascii_symbol_map",
"external_string_map",
"external_string_with_ascii_data_map",
"external_ascii_string_map",
"short_external_symbol_map",
"short_external_symbol_with_ascii_data_map",
"short_external_ascii_symbol_map",
"short_external_string_map",
"short_external_string_with_ascii_data_map",
"short_external_ascii_string_map",
"undetectable_string_map",
"undetectable_ascii_string_map",
"external_pixel_array_map",
"external_byte_array_map",
"external_unsigned_byte_array_map",
"external_short_array_map",
"external_unsigned_short_array_map",
"external_int_array_map",
"external_unsigned_int_array_map",
"external_float_array_map",
"external_double_array_map",
"non_strict_arguments_elements_map",
"function_context_map",
"catch_context_map",
"with_context_map",
"block_context_map",
"module_context_map",
"global_context_map",
"oddball_map",
"message_object_map",
"foreign_map",
"nan_value",
"infinity_value",
"minus_zero_value",
"neander_map",
"message_listeners",
"prototype_accessors",
"code_stubs",
"non_monomorphic_cache",
"polymorphic_code_cache",
"js_entry_code",
"js_construct_entry_code",
"natives_source_cache",
"empty_script",
"intrinsic_function_names",
"Array_symbol",
"Object_symbol",
"Proto_symbol",
"StringImpl_symbol",
"arguments_symbol",
"Arguments_symbol",
"call_symbol",
"apply_symbol",
"caller_symbol",
"boolean_symbol",
"Boolean_symbol",
"callee_symbol",
"constructor_symbol",
"code_symbol",
"result_symbol",
"dot_for_symbol",
"catch_var_symbol",
"empty_symbol",
"eval_symbol",
"function_symbol",
"length_symbol",
"module_symbol",
"name_symbol",
"native_symbol",
"null_symbol",
"number_symbol",
"Number_symbol",
"nan_symbol",
"RegExp_symbol",
"source_symbol",
"global_symbol",
"ignore_case_symbol",
"multiline_symbol",
"input_symbol",
"index_symbol",
"last_index_symbol",
"object_symbol",
"prototype_symbol",
"string_symbol",
"String_symbol",
"Date_symbol",
"this_symbol",
"to_string_symbol",
"char_at_symbol",
"undefined_symbol",
"value_of_symbol",
"InitializeVarGlobal_symbol",
"InitializeConstGlobal_symbol",
"KeyedLoadElementMonomorphic_symbol",
"KeyedStoreElementMonomorphic_symbol",
"KeyedStoreAndGrowElementMonomorphic_symbol",
"stack_overflow_symbol",
"illegal_access_symbol",
"out_of_memory_symbol",
"illegal_execution_state_symbol",
"get_symbol",
"set_symbol",
"function_class_symbol",
"illegal_argument_symbol",
"MakeReferenceError_symbol",
"MakeSyntaxError_symbol",
"MakeTypeError_symbol",
"invalid_lhs_in_assignment_symbol",
"invalid_lhs_in_for_in_symbol",
"invalid_lhs_in_postfix_op_symbol",
"invalid_lhs_in_prefix_op_symbol",
"illegal_return_symbol",
"illegal_break_symbol",
"illegal_continue_symbol",
"unknown_label_symbol",
"redeclaration_symbol",
"failure_symbol",
"space_symbol",
"exec_symbol",
"zero_symbol",
"global_eval_symbol",
"identity_hash_symbol",
"closure_symbol",
"use_strict",
"dot_symbol",
"anonymous_function_symbol",
"compare_ic_symbol",
"strict_compare_ic_symbol",
"infinity_symbol",
"minus_infinity_symbol",
"hidden_stack_trace_symbol",
"query_colon_symbol",
"accessor_info_map",
"accessor_pair_map",
"access_check_info_map",
"interceptor_info_map",
"call_handler_info_map",
"function_template_info_map",
"object_template_info_map",
"signature_info_map",
"type_switch_info_map",
"script_map",
"code_cache_map",
"polymorphic_code_cache_map",
"type_feedback_info_map",
"aliased_arguments_entry_map",
"debug_info_map",
"break_point_info_map",
"map",
"name",
"code",
"scope_info",
"instance_class_name",
"construct_stub",
"inferred_name",
"relocation_info",
"type_feedback_info",
"literals",
"shared",
"context",
"closure",
"previous",
"global",
"prototype",
"descriptors",
"constructor",
"transitions",
"script",
"source",
"extension",
"global_proxy_object",
"security_token",
"boolean_function",
"number_function",
"string_function",
"string_function_prototype_map",
"object_function",
"internal_array_function",
"array_function",
"js_array_maps",
"date_function",
"json_object",
"regexp_function",
"initial_object_prototype",
"create_date_fun",
"to_number_fun",
"to_string_fun",
"to_detail_string_fun",
"to_object_fun",
"to_integer_fun",
"to_uint32_fun",
"to_int32_fun",
"global_eval_fun",
"instantiate_fun",
"configure_instance_fun",
"function_map",
"strict_mode_function_map",
"function_without_prototype_map",
"strict_mode_function_without_prototype_map",
"function_instance_map",
"strict_mode_function_instance_map",
"regexp_result_map",
"arguments_boilerplate",
"aliased_arguments_boilerplate",
"strict_mode_arguments_boilerplate",
"get_stack_trace_line_fun",
"function_cache",
"jsfunction_result_caches",
"normalized_map_cache",
"runtime_context",
"call_as_function_delegate",
"call_as_constructor_delegate",
"script_function",
"opaque_reference_function",
"context_extension_function",
"map_cache",
"to_complete_property_descriptor",
"random_seed",
"elements",
"properties",
"builtins",
"native_context",
"global_receiver",
"get-input",
"set-input",
"get-$_",
"set-$_",
"get-$input",
"set-$input",
"get-multiline",
"set-multiline",
"get-$*",
"set-$*",
"get-lastMatch",
"set-lastMatch",
"get-$&",
"set-$&",
"get-lastParen",
"set-lastParen",
"get-$+",
"set-$+",
"get-leftContext",
"set-leftContext",
"get-$`",
"set-$`",
"get-rightContext",
"set-rightContext",
"get-$'",
"set-$'",
"get-$1",
"set-$1",
"get-$2",
"set-$2",
"get-$3",
"set-$3",
"get-$4",
"set-$4",
"get-$5",
"set-$5",
"get-$6",
"set-$6",
"get-$7",
"set-$7",
"get-$8",
"set-$8",
"get-$9",
"set-$9",
"get-stdout",
"set-stdout",
"get-stderr",
"set-stderr",
"get-stdin",
"set-stdin",
"get-message",
"set-message",
"deoptimization_data",
"first",
"second",
"this_property_assignments",
"handler_table",
"function_data",
"backpointer",
"native",
"get-callee",
"set-callee",
"get-caller",
"set-caller",
"value"]}
================================================
FILE: listings/debugging/memory/heapdump-32067948.553924.heapsnapshot
================================================
{"snapshot":{"title":"","uid":1,"meta":{"node_fields":["type","name","id","self_size","edge_count"],"node_types":[["hidden","array","string","object","code","closure","regexp","number","native","synthetic"],"string","number","number","number","number","number"],"edge_fields":["type","name_or_index","to_node"],"edge_types":[["context","element","property","internal","hidden","shortcut","weak"],"string_or_number","node"]},"node_count":47011,"edge_count":138947},
"nodes":[3,1,1,0,3
,3,2,3,0,12
,3,3,9,0,193
,3,4,11,0,1
,3,5,31,0,1
,3,6,15,0,42
,3,7,17,0,3
,3,8,19,0,2
,3,9,21,0,11
,3,10,23,0,85
,3,11,25,0,89
,3,12,27,0,69
,3,13,5,0,2
,3,14,7,0,42
,0,15,33,32,2
,0,16,35,64,1
,2,17,37,32,0
,0,15,39,32,3
,2,18,41,40,0
,7,19,43,16,1
,0,15,45,32,2
,2,20,47,32,0
,0,15,49,32,2
,2,21,51,32,0
,0,15,53,32,2
,2,22,55,32,0
,0,15,57,32,2
,2,23,59,40,0
,0,15,61,32,2
,2,24,63,56,0
,0,15,65,32,2
,2,25,67,48,0
,0,26,69,16,1
,0,16,71,64,1
,1,1,73,24,0
,0,16,75,64,1
,1,1,77,24,0
,1,1,79,1040,23
,2,27,81,32,0
,2,28,83,32,0
,2,29,85,32,0
,2,30,87,32,0
,2,31,89,32,0
,2,32,91,32,0
,2,33,93,32,0
,2,34,95,32,0
,2,35,97,32,0
,2,36,99,32,0
,2,37,101,32,0
,2,38,103,32,0
,2,39,105,32,0
,2,40,107,32,0
,2,41,109,32,0
,2,42,111,32,0
,2,43,113,32,0
,2,44,115,32,0
,2,45,117,32,0
,2,46,119,32,0
,2,47,121,32,0
,2,48,123,32,0
,2,49,125,32,0
,1,1,127,2064,0
,1,1,129,2064,0
,4,50,131,160,7
,2,50,133,32,0
,4,51,135,512,12
,1,52,137,56,2
,4,51,139,544,5
,2,53,141,24,0
,0,16,143,64,1
,5,50,145,72,23
,5,54,147,72,7
,5,55,149,72,7
,5,56,151,72,7
,5,57,153,72,7
,5,58,155,72,7
,5,59,157,72,7
,5,60,159,72,7
,5,61,161,72,7
,5,62,163,72,6
,5,63,165,72,7
,5,64,167,72,7
,5,65,169,72,7
,5,66,171,72,7
,5,67,173,72,7
,5,68,175,72,11
,3,50,177,24,13
,1,69,179,32,1
,0,70,181,48,4
,1,1,183,16,0
,0,16,185,64,3
,0,16,187,64,32
,5,71,189,72,6
,5,72,191,72,7
,5,73,193,72,6
,5,74,195,72,6
,5,75,197,72,7
,5,76,199,72,6
,5,77,201,72,6
,5,78,203,72,6
,5,79,205,72,6
,5,80,207,72,6
,0,16,209,64,3
,4,68,211,160,7
,2,68,213,32,0
,4,51,215,128,3
,4,1,217,120,3
,5,81,219,72,9
,5,82,221,72,6
,5,71,223,72,6
,5,83,225,72,6
,5,84,227,72,6
,0,85,229,544,55
,0,16,231,64,3
,2,86,233,32,0
,0,16,235,64,1
,0,87,237,16,1
,0,88,239,24,3
,0,16,241,64,1
,5,89,243,72,7
,0,88,245,24,3
,0,88,247,24,3
,0,88,249,24,3
,0,88,251,24,3
,0,88,253,24,3
,4,89,255,160,6
,2,89,257,40,0
,4,51,259,128,3
,1,90,261,824,1
,0,16,263,64,3
,4,91,265,160,6
,2,53,267,24,0
,4,51,269,128,3
,5,53,271,72,8
,3,50,273,24,4
,0,16,275,64,5
,0,16,277,64,3
,3,50,279,56,69
,5,53,281,72,8
,5,92,283,72,8
,5,93,285,72,9
,5,94,287,72,9
,5,95,289,72,9
,7,19,291,16,1
,3,96,293,24,4
,3,50,295,32,2
,5,97,297,72,9
,5,98,299,72,6
,5,53,301,72,8
,5,53,303,72,14
,5,99,305,72,6
,5,53,307,72,14
,5,53,309,72,8
,5,100,311,72,8
,5,101,313,72,6
,5,102,315,72,9
,5,53,317,72,8
,5,53,319,72,8
,5,103,321,72,9
,5,104,323,72,11
,5,105,325,72,8
,5,53,327,72,14
,5,53,329,72,8
,5,106,331,72,8
,5,107,333,72,16
,5,53,335,72,14
,5,108,337,72,9
,5,109,339,72,9
,5,110,341,72,9
,5,111,343,72,52
,3,112,345,104,28
,5,113,347,72,8
,5,53,349,72,14
,5,114,351,72,6
,5,115,353,72,6
,5,116,355,72,6
,5,117,357,72,11
,5,118,359,72,8
,5,119,361,72,8
,5,120,363,72,9
,5,53,365,72,14
,5,53,367,72,8
,5,121,369,72,8
,3,122,371,24,64
,5,123,373,72,9
,5,124,375,72,9
,0,88,377,24,2
,5,125,379,72,6
,5,126,381,72,6
,5,127,383,72,6
,5,128,385,72,30
,5,53,387,72,8
,5,129,389,72,6
,5,130,391,72,6
,3,50,393,552,507
,1,131,395,3128,125
,0,16,397,64,3
,4,91,399,160,6
,2,132,401,32,0
,5,53,403,72,8
,3,50,405,24,3
,0,16,407,64,3
,0,16,409,64,3
,4,81,411,160,7
,2,81,413,32,0
,4,51,415,1216,60
,1,52,417,112,9
,1,69,419,32,1
,0,16,421,64,3
,4,120,423,160,6
,2,120,425,32,0
,4,51,427,800,5
,4,51,429,800,5
,5,133,431,72,6
,3,120,433,32,24
,0,16,435,64,3
,0,16,437,64,6
,4,107,439,160,7
,2,107,441,32,0
,4,51,443,480,11
,1,52,445,64,3
,7,19,447,16,1
,7,19,449,16,1
,7,19,451,16,1
,7,19,453,16,1
,5,98,455,72,6
,5,114,457,72,6
,3,107,459,32,9
,1,131,461,56,5
,0,16,463,64,3
,0,16,465,64,3
,4,113,467,160,7
,2,113,469,32,0
,4,51,471,416,12
,1,52,473,56,2
,3,113,475,32,5
,0,16,477,64,3
,4,110,479,160,7
,2,110,481,32,0
,4,51,483,544,12
,1,52,485,64,3
,4,51,487,512,6
,5,134,489,72,6
,3,110,491,32,39
,0,16,493,64,3
,0,16,495,64,4
,4,117,497,160,7
,2,117,499,32,0
,4,51,501,2080,77
,1,52,503,144,13
,5,135,505,72,6
,5,136,507,72,6
,5,137,509,72,6
,3,117,511,96,58
,0,16,513,64,3
,0,16,515,64,3
,4,111,517,160,7
,2,111,519,32,0
,4,51,521,480,13
,1,52,523,64,3
,5,53,525,72,7
,5,53,527,72,7
,5,53,529,72,7
,5,53,531,72,7
,5,138,533,72,6
,5,53,535,72,7
,5,139,537,72,6
,5,140,539,72,6
,5,141,541,72,6
,5,53,543,72,6
,5,53,545,72,6
,5,53,547,72,6
,5,53,549,72,6
,5,53,551,72,6
,5,53,553,72,6
,5,53,555,72,6
,5,53,557,72,6
,5,53,559,72,6
,6,53,561,72,12
,0,16,563,64,3
,0,16,565,64,4
,4,96,567,160,6
,2,96,569,32,0
,5,96,571,72,8
,0,16,573,64,3
,5,136,575,72,7
,5,142,577,72,7
,0,16,579,64,4
,4,143,581,160,6
,2,143,583,40,0
,4,51,585,640,6
,0,16,587,64,5
,5,143,589,72,8
,0,88,591,24,3
,0,88,593,24,3
,4,91,595,160,6
,2,144,597,48,0
,5,53,599,72,8
,3,50,601,24,3
,0,16,603,64,3
,4,91,605,160,6
,4,51,607,128,3
,5,53,609,72,8
,3,50,611,24,3
,0,16,613,64,3
,4,91,615,160,6
,4,51,617,128,3
,5,53,619,72,8
,3,50,621,24,3
,0,16,623,64,3
,1,145,625,24,1
,1,1,627,304,1
,1,146,629,528,0
,4,91,631,160,6
,2,147,633,32,0
,5,53,635,72,8
,0,16,637,64,2
,5,148,639,72,7
,5,149,641,72,6
,5,150,643,72,6
,5,151,645,72,6
,5,152,647,72,6
,5,153,649,72,7
,5,154,651,72,7
,5,155,653,72,6
,5,156,655,72,7
,5,135,657,72,6
,5,157,659,72,6
,5,158,661,72,7
,5,159,663,72,6
,3,120,665,32,3
,5,160,667,72,6
,5,161,669,72,6
,5,162,671,72,6
,5,163,673,72,6
,5,164,675,72,6
,5,165,677,72,6
,3,166,679,32,3
,5,167,681,72,6
,5,168,683,72,6
,5,169,685,72,6
,5,170,687,72,7
,5,171,689,72,6
,3,166,691,32,154
,5,172,693,72,6
,5,173,695,72,6
,5,174,697,72,6
,5,175,699,72,7
,5,176,701,72,6
,5,177,703,72,6
,5,178,705,72,6
,5,179,707,72,7
,5,180,709,72,6
,5,181,711,72,6
,5,182,713,72,7
,5,183,715,72,7
,5,184,717,72,6
,5,185,719,72,7
,5,186,721,72,6
,5,187,723,72,6
,5,188,725,72,6
,5,189,727,72,6
,5,190,729,72,6
,5,191,731,72,7
,5,73,733,72,6
,5,192,735,72,6
,5,193,737,72,6
,3,97,739,104,7
,5,194,741,72,7
,5,195,743,72,6
,5,196,745,72,6
,5,197,747,72,6
,5,198,749,72,6
,5,199,751,72,6
,5,200,753,72,6
,5,201,755,72,7
,5,202,757,72,7
,5,203,759,72,6
,5,204,761,72,6
,5,205,763,72,6
,5,206,765,72,7
,5,207,767,72,6
,5,208,769,72,6
,5,209,771,72,6
,5,210,773,72,6
,5,211,775,72,6
,5,212,777,72,7
,5,213,779,72,6
,5,214,781,72,6
,5,215,783,72,7
,5,216,785,72,6
,5,217,787,72,7
,5,218,789,72,6
,5,219,791,72,7
,5,220,793,72,6
,5,221,795,72,6
,5,222,797,72,7
,5,223,799,72,6
,5,224,801,72,7
,5,225,803,72,6
,5,226,805,72,6
,5,227,807,72,6
,5,228,809,72,6
,5,229,811,72,6
,5,230,813,72,6
,5,231,815,72,6
,5,232,817,72,6
,5,233,819,72,7
,5,234,821,72,6
,5,235,823,72,6
,5,73,825,72,6
,5,236,827,72,6
,5,237,829,72,6
,5,238,831,72,6
,5,239,833,72,6
,5,71,835,72,6
,5,240,837,72,6
,5,241,839,72,6
,5,242,841,72,6
,5,243,843,72,6
,5,244,845,72,6
,5,245,847,72,6
,5,246,849,72,6
,5,247,851,72,7
,5,248,853,72,6
,5,249,855,72,6
,5,250,857,72,6
,5,251,859,72,7
,5,252,861,72,6
,5,253,863,72,6
,5,254,865,72,6
,5,255,867,72,6
,5,256,869,72,6
,5,257,871,72,6
,5,258,873,72,6
,5,259,875,72,6
,5,260,877,72,6
,5,261,879,72,7
,5,262,881,72,6
,5,263,883,72,7
,5,264,885,72,6
,5,265,887,72,6
,5,266,889,72,6
,5,267,891,72,6
,5,268,893,72,7
,5,73,895,72,6
,5,269,897,72,6
,5,270,899,72,7
,5,271,901,72,7
,5,272,903,72,6
,5,273,905,72,6
,5,274,907,72,6
,5,275,909,72,6
,5,276,911,72,6
,5,277,913,72,6
,5,278,915,72,7
,5,279,917,72,6
,5,280,919,72,6
,5,281,921,72,6
,5,282,923,72,6
,5,283,925,72,6
,5,284,927,72,6
,5,285,929,72,6
,5,286,931,72,7
,5,287,933,72,6
,3,166,935,32,2
,5,288,937,72,6
,5,289,939,72,7
,5,290,941,72,6
,5,291,943,72,7
,5,292,945,72,7
,5,293,947,72,6
,5,294,949,72,7
,5,295,951,72,7
,5,296,953,72,6
,5,297,955,72,6
,5,298,957,72,6
,5,299,959,72,6
,5,300,961,72,7
,5,301,963,72,6
,5,302,965,72,6
,5,303,967,72,6
,5,304,969,72,7
,5,305,971,72,6
,5,306,973,72,7
,5,307,975,72,6
,5,308,977,72,6
,5,309,979,72,6
,5,310,981,72,6
,5,311,983,72,6
,3,166,985,32,5
,5,71,987,72,6
,5,312,989,72,6
,5,313,991,72,6
,5,314,993,72,6
,3,120,995,32,10
,5,315,997,72,6
,5,316,999,72,6
,5,317,1001,72,6
,5,318,1003,72,6
,5,319,1005,72,6
,5,320,1007,72,6
,5,321,1009,72,7
,5,322,1011,72,6
,5,71,1013,72,6
,5,323,1015,72,6
,5,324,1017,72,6
,5,325,1019,72,6
,5,326,1021,72,6
,3,120,1023,32,15
,5,327,1025,72,7
,5,328,1027,72,6
,5,329,1029,72,6
,5,112,1031,72,8
,5,72,1033,72,6
,5,330,1035,72,7
,5,331,1037,72,6
,5,71,1039,72,7
,5,332,1041,72,6
,5,333,1043,72,6
,5,334,1045,72,6
,5,335,1047,72,6
,5,336,1049,72,6
,5,337,1051,72,7
,5,338,1053,72,6
,5,339,1055,72,6
,5,340,1057,72,6
,5,341,1059,72,7
,5,342,1061,72,6
,5,343,1063,72,7
,5,344,1065,72,6
,5,345,1067,72,7
,5,346,1069,72,6
,5,347,1071,72,6
,5,71,1073,72,6
,5,348,1075,72,7
,5,349,1077,72,7
,5,350,1079,72,6
,5,351,1081,72,6
,5,352,1083,72,7
,5,353,1085,72,7
,5,354,1087,72,6
,5,355,1089,72,6
,5,356,1091,72,6
,5,357,1093,72,7
,5,358,1095,72,6
,5,359,1097,72,7
,5,360,1099,72,6
,5,361,1101,72,8
,5,362,1103,72,7
,5,363,1105,72,7
,5,364,1107,72,7
,5,365,1109,72,6
,5,166,1111,72,8
,5,366,1113,72,6
,5,367,1115,72,6
,5,278,1117,72,7
,5,368,1119,72,6
,5,369,1121,72,6
,5,370,1123,72,6
,5,371,1125,72,7
,5,372,1127,72,7
,3,50,1129,40,4
,5,373,1131,72,6
,5,374,1133,72,6
,5,375,1135,72,6
,5,376,1137,72,6
,5,377,1139,72,7
,5,378,1141,72,6
,5,379,1143,72,6
,5,380,1145,72,6
,5,381,1147,72,6
,5,382,1149,72,6
,3,166,1151,32,3
,5,383,1153,72,6
,5,384,1155,72,6
,5,385,1157,72,6
,5,386,1159,72,6
,5,387,1161,72,6
,5,388,1163,72,6
,5,72,1165,72,7
,5,389,1167,72,7
,5,390,1169,72,6
,5,391,1171,72,6
,5,392,1173,72,6
,5,393,1175,72,6
,5,394,1177,72,6
,3,120,1179,32,15
,5,395,1181,72,7
,5,396,1183,72,7
,5,397,1185,72,8
,5,398,1187,72,7
,5,399,1189,72,6
,5,400,1191,72,6
,5,401,1193,72,7
,5,71,1195,72,7
,5,402,1197,72,7
,5,403,1199,72,7
,5,404,1201,72,8
,5,405,1203,72,6
,5,406,1205,72,6
,5,407,1207,72,6
,5,408,1209,72,6
,5,409,1211,72,6
,5,410,1213,72,6
,5,411,1215,72,6
,5,412,1217,72,7
,5,413,1219,72,6
,5,414,1221,72,7
,5,415,1223,72,6
,3,166,1225,32,3
,5,416,1227,72,6
,5,417,1229,72,6
,5,418,1231,72,7
,5,419,1233,72,6
,5,72,1235,72,6
,5,420,1237,72,6
,5,421,1239,72,6
,5,422,1241,72,6
,5,423,1243,72,6
,5,424,1245,72,6
,5,425,1247,72,6
,5,426,1249,72,6
,5,427,1251,72,6
,5,428,1253,72,6
,5,429,1255,72,6
,5,430,1257,72,6
,5,175,1259,72,7
,5,431,1261,72,6
,3,50,1263,24,2
,5,432,1265,72,7
,5,433,1267,72,6
,5,434,1269,72,6
,5,71,1271,72,6
,5,435,1273,72,6
,5,436,1275,72,7
,5,437,1277,72,6
,5,438,1279,72,6
,5,439,1281,72,6
,5,440,1283,72,6
,5,441,1285,72,6
,5,442,1287,72,6
,5,443,1289,72,7
,5,444,1291,72,7
,5,445,1293,72,6
,5,446,1295,72,6
,5,447,1297,72,7
,5,448,1299,72,6
,5,449,1301,72,6
,5,450,1303,72,7
,5,451,1305,72,7
,5,452,1307,72,6
,5,453,1309,72,6
,5,454,1311,72,7
,5,455,1313,72,7
,3,120,1315,32,5
,5,456,1317,72,7
,5,457,1319,72,7
,5,458,1321,72,6
,5,459,1323,72,6
,5,460,1325,72,6
,5,461,1327,72,6
,5,73,1329,72,6
,5,462,1331,72,6
,5,463,1333,72,6
,5,464,1335,72,6
,3,50,1337,24,3
,5,465,1339,72,6
,3,120,1341,32,10
,5,466,1343,72,7
,5,467,1345,72,6
,5,468,1347,72,6
,5,469,1349,72,7
,5,470,1351,72,6
,5,471,1353,72,6
,1,131,1355,24632,885
,0,16,1357,64,2
,4,51,1359,2336,50
,4,51,1361,544,9
,4,51,1363,1312,25
,4,51,1365,800,24
,4,51,1367,416,12
,4,51,1369,416,12
,4,51,1371,416,12
,4,51,1373,416,12
,4,51,1375,416,12
,4,51,1377,576,15
,4,51,1379,416,12
,4,51,1381,320,10
,4,51,1383,320,10
,4,51,1385,416,12
,4,51,1387,576,15
,4,51,1389,416,12
,4,51,1391,288,12
,4,51,1393,576,20
,4,51,1395,896,32
,4,51,1397,320,11
,4,51,1399,544,18
,4,51,1401,544,18
,4,51,1403,352,12
,4,51,1405,320,10
,4,51,1407,256,9
,4,51,1409,256,9
,4,51,1411,256,9
,4,51,1413,800,19
,4,51,1415,800,18
,4,51,1417,1440,48
,4,51,1419,288,13
,4,91,1421,160,6
,5,53,1423,72,7
,4,361,1425,160,7
,2,361,1427,32,0
,4,51,1429,288,13
,1,52,1431,56,2
,3,361,1433,24,18
,0,16,1435,64,4
,1,131,1437,72,0
,0,16,1439,64,3
,4,1,1441,120,3
,0,87,1443,16,1
,4,404,1445,160,6
,2,404,1447,40,0
,3,50,1449,24,2
,0,16,1451,64,3
,0,16,1453,64,3
,4,166,1455,160,6
,2,166,1457,40,0
,4,51,1459,800,5
,3,50,1461,24,5
,0,16,1463,64,4
,5,472,1465,72,6
,5,473,1467,72,6
,0,16,1469,64,3
,4,474,1471,120,4
,2,475,1473,40,0
,2,474,1475,48,0
,0,87,1477,16,1
,4,384,1479,160,8
,2,384,1481,32,0
,1,52,1483,64,3
,4,467,1485,160,8
,2,467,1487,40,0
,1,52,1489,56,2
,4,173,1491,160,8
,2,173,1493,32,0
,1,52,1495,96,7
,4,393,1497,160,8
,2,393,1499,32,0
,1,52,1501,72,4
,4,329,1503,160,8
,2,329,1505,40,0
,1,52,1507,56,2
,4,326,1509,160,8
,2,326,1511,40,0
,1,52,1513,64,3
,4,355,1515,160,8
,2,355,1517,32,0
,1,52,1519,64,3
,4,246,1521,160,8
,2,246,1523,32,0
,1,52,1525,64,3
,4,423,1527,160,8
,2,423,1529,32,0
,1,52,1531,64,3
,4,283,1533,160,8
,2,283,1535,32,0
,1,52,1537,64,3
,4,214,1539,160,8
,2,214,1541,32,0
,1,52,1543,64,3
,4,244,1545,160,8
,2,244,1547,32,0
,1,52,1549,64,3
,4,452,1551,160,8
,2,452,1553,32,0
,1,52,1555,64,3
,4,248,1557,160,8
,2,248,1559,40,0
,1,52,1561,56,2
,4,415,1563,160,8
,2,415,1565,32,0
,1,52,1567,56,2
,4,186,1569,160,8
,2,186,1571,32,0
,1,52,1573,64,3
,4,368,1575,160,8
,2,368,1577,32,0
,1,52,1579,64,3
,4,180,1581,160,8
,2,180,1583,32,0
,1,52,1585,64,3
,4,416,1587,160,8
,2,416,1589,32,0
,1,52,1591,64,3
,4,466,1593,160,8
,2,466,1595,32,0
,1,52,1597,56,2
,4,371,1599,160,8
,2,371,1601,40,0
,1,52,1603,80,5
,4,242,1605,160,8
,2,242,1607,40,0
,1,52,1609,64,3
,4,182,1611,160,8
,2,182,1613,48,0
,1,52,1615,64,3
,4,353,1617,160,8
,2,353,1619,56,0
,1,52,1621,64,3
,4,264,1623,160,8
,2,264,1625,48,0
,1,52,1627,80,5
,4,254,1629,160,8
,2,254,1631,64,0
,1,52,1633,72,4
,4,291,1635,160,8
,2,291,1637,40,0
,1,52,1639,64,3
,4,362,1641,160,8
,2,362,1643,40,0
,1,52,1645,56,2
,4,421,1647,160,8
,2,421,1649,40,0
,1,52,1651,48,1
,4,437,1653,160,8
,2,437,1655,40,0
,1,52,1657,48,1
,4,277,1659,160,8
,2,277,1661,40,0
,1,52,1663,48,1
,4,419,1665,160,8
,2,419,1667,40,0
,4,51,1669,640,17
,1,52,1671,64,3
,4,213,1673,160,8
,2,213,1675,40,0
,4,51,1677,640,12
,1,52,1679,56,2
,4,305,1681,160,8
,2,305,1683,32,0
,4,51,1685,640,15
,1,52,1687,56,2
,4,405,1689,160,7
,2,405,1691,48,0
,4,51,1693,160,4
,4,149,1695,160,8
,2,149,1697,32,0
,4,51,1699,608,17
,1,52,1701,56,2
,4,369,1703,160,8
,2,369,1705,48,0
,4,51,1707,544,18
,1,52,1709,56,2
,4,389,1711,160,8
,2,389,1713,32,0
,4,51,1715,704,25
,1,52,1717,56,2
,4,197,1719,160,7
,2,197,1721,40,0
,4,317,1723,160,8
,2,317,1725,32,0
,4,51,1727,352,11
,1,52,1729,56,2
,4,281,1731,160,7
,2,281,1733,32,0
,4,267,1735,160,7
,2,267,1737,40,0
,4,275,1739,160,7
,2,275,1741,40,0
,4,154,1743,160,7
,2,154,1745,40,0
,4,215,1747,160,7
,2,215,1749,40,0
,1,1,1751,864,98
,2,476,1753,32,0
,2,477,1755,32,0
,2,478,1757,32,0
,2,479,1759,32,0
,2,480,1761,40,0
,2,481,1763,32,0
,2,482,1765,32,0
,0,483,1767,32,2
,0,16,1769,64,1
,1,1,1771,32,1
,0,484,1773,16,0
,1,52,1775,56,2
,0,16,1777,64,1
,2,485,1779,32,0
,4,53,1781,160,8
,4,51,1783,864,57
,1,69,1785,32,1
,1,69,1787,40,1
,1,69,1789,32,1
,1,69,1791,32,1
,1,69,1793,48,1
,1,69,1795,32,1
,1,69,1797,32,1
,1,69,1799,32,1
,1,69,1801,32,1
,0,483,1803,32,1
,2,486,1805,32,0
,0,483,1807,32,1
,0,483,1809,32,1
,2,487,1811,32,0
,2,488,1813,32,0
,2,489,1815,32,0
,2,490,1817,32,0
,0,483,1819,32,1
,0,483,1821,32,1
,0,483,1823,32,1
,0,483,1825,32,1
,0,483,1827,32,1
,0,483,1829,32,1
,0,483,1831,32,1
,0,483,1833,32,1
,0,483,1835,32,1
,0,483,1837,32,1
,0,483,1839,32,1
,0,483,1841,32,1
,0,483,1843,32,1
,0,483,1845,32,1
,1,1,1847,32,0
,1,1,1849,32,1
,0,483,1851,32,1
,1,1,1853,24,0
,1,1,1855,32,1
,1,1,1857,24,0
,1,1,1859,32,1
,0,483,1861,32,1
,0,483,1863,32,1
,1,1,1865,24,0
,1,1,1867,32,1
,0,483,1869,32,1
,2,491,1871,40,0
,1,1,1873,24,0
,1,1,1875,32,1
,0,483,1877,32,1
,0,483,1879,32,1
,0,483,1881,32,1
,0,483,1883,32,1
,0,483,1885,32,1
,0,483,1887,32,1
,0,483,1889,32,1
,0,483,1891,32,1
,1,1,1893,32,0
,1,1,1895,32,0
,1,1,1897,32,1
,1,1,1899,32,0
,0,483,1901,32,1
,1,1,1903,32,0
,0,483,1905,32,1
,4,492,1907,120,4
,2,493,1909,40,0
,2,492,1911,48,0
,0,87,1913,16,1
,4,162,1915,160,8
,2,162,1917,40,0
,4,51,1919,736,29
,1,52,1921,96,7
,4,245,1923,160,8
,2,245,1925,48,0
,4,51,1927,1056,45
,1,52,1929,112,9
,4,114,1931,160,7
,2,114,1933,32,0
,4,98,1935,160,7
,2,98,1937,32,0
,4,115,1939,160,7
,2,115,1941,32,0
,4,99,1943,160,7
,2,99,1945,40,0
,4,129,1947,160,7
,2,129,1949,32,0
,4,417,1951,160,8
,2,417,1953,40,0
,4,51,1955,672,44
,1,52,1957,48,1
,4,71,1959,160,7
,2,71,1961,32,0
,4,72,1963,160,7
,2,72,1965,40,0
,4,73,1967,160,7
,2,73,1969,32,0
,4,74,1971,160,8
,2,74,1973,40,0
,4,51,1975,608,22
,1,52,1977,64,3
,4,75,1979,160,7
,2,75,1981,40,0
,4,76,1983,160,7
,2,76,1985,48,0
,4,77,1987,160,8
,2,77,1989,40,0
,4,51,1991,832,36
,1,52,1993,80,5
,4,78,1995,160,7
,2,78,1997,40,0
,4,79,1999,160,7
,2,79,2001,40,0
,4,80,2003,160,7
,2,80,2005,40,0
,4,54,2007,160,8
,2,54,2009,32,0
,4,51,2011,544,25
,1,52,2013,72,4
,4,273,2015,160,8
,2,273,2017,48,0
,4,51,2019,352,12
,1,52,2021,56,2
,4,379,2023,160,8
,2,379,2025,40,0
,4,51,2027,352,12
,1,52,2029,56,2
,4,249,2031,160,8
,2,249,2033,48,0
,4,51,2035,384,13
,1,52,2037,56,2
,4,394,2039,160,8
,2,394,2041,48,0
,4,51,2043,288,12
,1,52,2045,56,2
,4,401,2047,160,7
,2,401,2049,48,0
,4,460,2051,160,7
,2,460,2053,56,0
,4,212,2055,160,8
,2,212,2057,48,0
,4,51,2059,1984,86
,1,52,2061,80,5
,4,324,2063,160,7
,2,324,2065,56,0
,4,397,2067,160,8
,2,397,2069,48,0
,4,51,2071,544,31
,1,52,2073,48,1
,4,274,2075,160,8
,2,274,2077,64,0
,4,51,2079,672,34
,1,52,2081,64,3
,4,377,2083,160,7
,2,377,2085,32,0
,4,413,2087,160,7
,2,413,2089,40,0
,4,299,2091,160,7
,2,299,2093,40,0
,4,342,2095,160,7
,2,342,2097,40,0
,4,414,2099,160,7
,2,414,2101,40,0
,4,170,2103,160,7
,2,170,2105,32,0
,4,398,2107,160,7
,2,398,2109,48,0
,4,300,2111,160,8
,2,300,2113,48,0
,4,51,2115,5024,283
,1,52,2117,136,12
,4,263,2119,160,7
,2,263,2121,48,0
,4,334,2123,160,8
,2,334,2125,48,0
,4,51,2127,448,17
,1,52,2129,88,6
,4,59,2131,160,7
,2,59,2133,40,0
,4,60,2135,160,7
,2,60,2137,48,0
,4,183,2139,160,7
,2,183,2141,40,0
,4,61,2143,160,7
,2,61,2145,48,0
,4,55,2147,160,8
,2,55,2149,32,0
,4,51,2151,576,22
,1,52,2153,72,4
,4,56,2155,160,8
,2,56,2157,40,0
,4,51,2159,1088,31
,1,52,2161,104,8
,4,311,2163,160,8
,2,311,2165,56,0
,4,51,2167,832,20
,1,52,2169,72,4
,4,57,2171,160,8
,2,57,2173,40,0
,4,51,2175,960,47
,1,52,2177,96,7
,4,357,2179,160,7
,2,357,2181,32,0
,4,67,2183,160,7
,2,67,2185,32,0
,4,58,2187,160,7
,2,58,2189,32,0
,4,66,2191,160,7
,2,66,2193,48,0
,4,65,2195,160,7
,2,65,2197,32,0
,4,64,2199,160,7
,2,64,2201,32,0
,4,63,2203,160,7
,2,63,2205,40,0
,4,62,2207,160,7
,2,62,2209,32,0
,4,367,2211,160,8
,2,367,2213,40,0
,4,51,2215,1152,94
,1,52,2217,48,1
,4,71,2219,160,7
,4,73,2221,160,7
,4,411,2223,160,8
,2,411,2225,40,0
,4,51,2227,384,22
,1,52,2229,48,1
,4,71,2231,160,7
,4,72,2233,160,7
,4,73,2235,160,7
,4,447,2237,160,7
,2,447,2239,32,0
,4,247,2241,160,7
,2,247,2243,40,0
,4,341,2245,160,7
,2,341,2247,40,0
,4,98,2249,160,7
,4,114,2251,160,7
,4,193,2253,160,8
,2,193,2255,40,0
,4,51,2257,1280,91
,1,52,2259,48,1
,4,204,2261,160,7
,2,204,2263,48,0
,4,71,2265,160,7
,4,82,2267,160,8
,2,82,2269,32,0
,4,51,2271,1024,36
,1,52,2273,104,7
,4,349,2275,160,8
,2,349,2277,40,0
,4,181,2279,160,8
,2,181,2281,40,0
,4,51,2283,384,22
,1,52,2285,48,1
,1,1,2287,1216,148
,2,494,2289,32,0
,2,495,2291,40,0
,2,496,2293,40,0
,2,497,2295,40,0
,2,498,2297,40,0
,2,499,2299,40,0
,2,500,2301,40,0
,2,501,2303,40,0
,2,502,2305,48,0
,2,503,2307,40,0
,2,504,2309,48,0
,2,505,2311,48,0
,2,506,2313,56,0
,2,507,2315,48,0
,2,508,2317,48,0
,2,509,2319,48,0
,2,510,2321,48,0
,2,511,2323,40,0
,2,512,2325,48,0
,2,513,2327,56,0
,2,514,2329,56,0
,2,515,2331,40,0
,2,516,2333,48,0
,2,517,2335,48,0
,2,518,2337,40,0
,2,519,2339,40,0
,2,520,2341,48,0
,2,521,2343,40,0
,2,522,2345,40,0
,2,523,2347,48,0
,2,524,2349,32,0
,2,525,2351,40,0
,2,526,2353,40,0
,2,527,2355,40,0
,2,528,2357,48,0
,2,529,2359,40,0
,2,530,2361,40,0
,2,531,2363,48,0
,2,532,2365,48,0
,2,533,2367,40,0
,2,534,2369,40,0
,2,535,2371,40,0
,2,536,2373,40,0
,4,53,2375,160,8
,4,91,2377,160,7
,2,537,2379,40,2
,4,91,2381,160,9
,4,51,2383,256,11
,1,52,2385,56,2
,2,538,2387,40,2
,1,1,2389,64,2
,4,91,2391,160,8
,4,51,2393,224,9
,1,52,2395,48,1
,4,91,2397,160,8
,4,51,2399,224,9
,1,52,2401,48,1
,4,91,2403,160,9
,4,51,2405,256,11
,1,52,2407,56,2
,2,539,2409,40,2
,1,1,2411,64,2
,4,91,2413,160,8
,4,51,2415,224,9
,1,52,2417,48,1
,4,91,2419,160,8
,4,51,2421,224,9
,1,52,2423,48,1
,4,91,2425,160,9
,4,51,2427,256,11
,1,52,2429,56,2
,2,540,2431,40,2
,1,1,2433,64,2
,4,91,2435,160,8
,4,51,2437,224,9
,1,52,2439,48,1
,4,91,2441,160,8
,4,51,2443,224,9
,1,52,2445,48,1
,4,91,2447,160,9
,4,51,2449,256,11
,1,52,2451,56,2
,2,541,2453,40,0
,1,1,2455,64,2
,4,91,2457,160,8
,4,51,2459,224,9
,1,52,2461,48,1
,4,91,2463,160,8
,4,51,2465,224,9
,1,52,2467,48,1
,4,91,2469,160,9
,4,51,2471,256,11
,1,52,2473,56,2
,2,542,2475,40,0
,1,1,2477,64,2
,4,91,2479,160,8
,4,51,2481,224,9
,1,52,2483,48,1
,4,91,2485,160,8
,4,51,2487,224,9
,1,52,2489,48,1
,4,91,2491,160,8
,1,1,2493,64,2
,4,91,2495,160,7
,4,91,2497,160,8
,4,51,2499,224,9
,1,52,2501,48,1
,4,53,2503,160,8
,4,53,2505,160,8
,0,483,2507,32,2
,1,1,2509,48,2
,0,484,2511,16,0
,0,484,2513,16,0
,1,52,2515,56,2
,4,53,2517,160,8
,4,51,2519,2592,165
,0,16,2521,64,3
,1,69,2523,32,1
,1,69,2525,32,1
,1,69,2527,32,1
,1,69,2529,40,1
,1,69,2531,56,1
,3,397,2533,24,35
,0,16,2535,64,5
,1,69,2537,40,1
,1,69,2539,32,1
,1,69,2541,32,1
,1,69,2543,32,1
,1,69,2545,80,1
,1,69,2547,48,1
,1,69,2549,32,1
,1,69,2551,32,1
,1,69,2553,48,1
,1,69,2555,40,1
,1,69,2557,32,1
,1,69,2559,40,1
,1,69,2561,32,1
,1,69,2563,40,1
,1,69,2565,32,1
,1,69,2567,32,1
,1,69,2569,32,1
,1,69,2571,32,1
,1,69,2573,32,1
,1,69,2575,32,1
,1,69,2577,32,1
,1,69,2579,32,1
,1,69,2581,32,1
,1,69,2583,32,1
,1,69,2585,32,1
,0,483,2587,32,1
,0,483,2589,32,1
,0,483,2591,32,1
,0,483,2593,32,1
,0,483,2595,32,1
,0,483,2597,32,1
,0,483,2599,32,1
,0,483,2601,32,1
,0,483,2603,32,1
,0,483,2605,32,1
,0,483,2607,32,1
,1,1,2609,32,0
,0,483,2611,32,2
,1,1,2613,32,1
,0,484,2615,16,0
,0,483,2617,32,1
,4,543,2619,120,4
,2,544,2621,40,0
,2,543,2623,40,0
,0,87,2625,16,1
,4,271,2627,160,7
,2,271,2629,48,0
,4,387,2631,160,7
,2,387,2633,48,0
,4,445,2635,160,7
,2,445,2637,40,0
,4,209,2639,160,8
,2,209,2641,40,0
,4,51,2643,480,14
,1,52,2645,72,4
,4,198,2647,160,8
,2,198,2649,32,0
,4,51,2651,4096,91
,1,52,2653,128,11
,4,350,2655,160,7
,2,350,2657,40,0
,4,164,2659,160,7
,2,164,2661,48,0
,4,184,2663,160,7
,2,184,2665,40,0
,4,199,2667,160,7
,2,199,2669,40,0
,4,172,2671,160,8
,2,172,2673,40,0
,4,51,2675,576,16
,1,52,2677,112,9
,4,243,2679,160,7
,2,243,2681,40,0
,4,71,2683,160,7
,4,72,2685,160,7
,4,402,2687,160,8
,2,402,2689,32,0
,4,51,2691,1472,23
,1,52,2693,64,3
,4,348,2695,160,7
,2,348,2697,32,0
,4,185,2699,160,7
,2,185,2701,40,0
,4,450,2703,160,8
,2,450,2705,40,0
,4,51,2707,800,31
,1,52,2709,88,6
,4,226,2711,160,7
,2,226,2713,40,0
,4,148,2715,160,7
,2,148,2717,32,0
,4,436,2719,160,7
,2,436,2721,40,0
,4,469,2723,160,7
,2,469,2725,40,0
,4,363,2727,160,8
,2,363,2729,40,0
,4,51,2731,1344,45
,1,52,2733,96,7
,4,289,2735,160,7
,2,289,2737,40,0
,4,359,2739,160,7
,2,359,2741,32,0
,4,352,2743,160,8
,2,352,2745,32,0
,4,51,2747,1984,72
,1,52,2749,120,10
,4,432,2751,160,8
,2,432,2753,32,0
,4,51,2755,1696,54
,1,52,2757,96,7
,4,418,2759,160,7
,2,418,2761,32,0
,4,395,2763,160,7
,2,395,2765,32,0
,4,456,2767,160,7
,2,456,2769,32,0
,4,278,2771,160,7
,2,278,2773,32,0
,4,175,2775,160,7
,2,175,2777,40,0
,4,191,2779,160,7
,2,191,2781,32,0
,4,327,2783,160,7
,2,327,2785,40,0
,4,133,2787,160,7
,2,133,2789,32,0
,4,295,2791,160,8
,2,295,2793,40,0
,4,51,2795,2784,196
,1,52,2797,72,3
,1,1,2799,592,71
,2,545,2801,40,0
,2,546,2803,40,0
,2,547,2805,48,0
,2,548,2807,40,0
,2,549,2809,40,0
,2,550,2811,40,0
,2,551,2813,40,0
,2,552,2815,40,0
,2,553,2817,40,0
,2,554,2819,40,0
,2,555,2821,32,0
,2,556,2823,40,0
,2,557,2825,40,0
,2,558,2827,40,0
,2,559,2829,40,0
,2,560,2831,40,0
,0,483,2833,32,2
,1,1,2835,32,1
,0,484,2837,16,0
,1,52,2839,56,2
,4,53,2841,160,8
,4,51,2843,352,17
,1,69,2845,32,1
,1,69,2847,32,1
,1,69,2849,32,1
,1,69,2851,32,1
,1,69,2853,32,1
,1,69,2855,32,1
,1,69,2857,32,1
,1,69,2859,32,1
,1,69,2861,40,2
,3,120,2863,32,2
,1,69,2865,40,1
,1,69,2867,32,1
,1,69,2869,40,1
,1,69,2871,40,1
,1,69,2873,40,1
,1,69,2875,40,1
,1,69,2877,40,1
,1,69,2879,32,1
,1,69,2881,32,1
,1,69,2883,48,1
,1,69,2885,48,1
,1,69,2887,32,2
,3,50,2889,24,2
,4,53,2891,160,8
,4,51,2893,384,12
,1,52,2895,80,5
,2,561,2897,40,0
,0,483,2899,32,2
,1,1,2901,400,24
,0,484,2903,16,0
,0,484,2905,16,0
,0,484,2907,16,0
,0,484,2909,16,0
,0,484,2911,16,0
,0,484,2913,16,0
,0,484,2915,16,0
,0,484,2917,16,0
,0,484,2919,16,0
,0,484,2921,16,0
,0,484,2923,16,0
,0,484,2925,16,0
,0,484,2927,16,0
,0,484,2929,16,0
,0,484,2931,16,0
,0,484,2933,16,0
,0,484,2935,16,0
,0,484,2937,16,0
,0,484,2939,16,0
,0,484,2941,16,0
,0,484,2943,16,0
,0,484,2945,16,0
,0,484,2947,16,0
,0,484,2949,16,0
,4,472,2951,160,6
,2,472,2953,32,0
,4,51,2955,128,3
,4,473,2957,160,6
,2,473,2959,32,0
,4,51,2961,128,3
,4,562,2963,160,6
,2,562,2965,32,0
,4,51,2967,128,3
,5,562,2969,72,6
,4,563,2971,160,6
,2,563,2973,32,0
,4,51,2975,128,3
,5,563,2977,72,6
,4,294,2979,160,6
,2,294,2981,32,0
,4,51,2983,128,3
,5,294,2985,72,6
,4,564,2987,160,6
,2,564,2989,32,0
,4,51,2991,128,3
,5,564,2993,72,6
,4,251,2995,160,6
,2,251,2997,32,0
,4,51,2999,128,3
,5,251,3001,72,6
,0,483,3003,32,1
,0,483,3005,32,1
,4,565,3007,120,4
,2,566,3009,40,0
,2,565,3011,40,0
,0,87,3013,16,1
,1,90,3015,56,3
,0,16,3017,64,1
,1,1,3019,32,1
,4,71,3021,160,7
,4,73,3023,160,7
,4,222,3025,160,8
,2,222,3027,32,0
,4,51,3029,1728,34
,1,52,3031,64,3
,4,451,3033,160,8
,2,451,3035,40,0
,4,51,3037,1376,28
,1,52,3039,64,3
,4,251,3041,160,7
,4,278,3043,160,8
,4,51,3045,928,29
,1,52,3047,72,4
,4,175,3049,160,7
,4,153,3051,160,7
,2,153,3053,40,0
,4,304,3055,160,7
,2,304,3057,32,0
,4,459,3059,160,8
,2,459,3061,40,0
,4,51,3063,832,18
,1,52,3065,72,4
,4,343,3067,160,8
,2,343,3069,32,0
,4,51,3071,2496,97
,1,52,3073,120,10
,4,374,3075,160,7
,2,374,3077,48,0
,4,461,3079,160,7
,2,461,3081,40,0
,4,424,3083,160,8
,2,424,3085,64,0
,4,51,3087,2112,87
,1,52,3089,160,15
,4,332,3091,160,7
,2,332,3093,64,0
,4,455,3095,160,7
,2,455,3097,32,0
,4,294,3099,160,8
,4,51,3101,1152,37
,1,52,3103,96,7
,4,372,3105,160,8
,2,372,3107,32,0
,4,51,3109,1216,37
,1,52,3111,96,7
,4,443,3113,160,8
,2,443,3115,48,0
,4,51,3117,3232,89
,1,52,3119,160,15
,4,224,3121,160,8
,2,224,3123,40,0
,4,51,3125,1664,39
,1,52,3127,104,8
,4,444,3129,160,8
,2,444,3131,32,0
,4,51,3133,1728,51
,1,52,3135,88,6
,4,206,3137,160,8
,2,206,3139,40,0
,4,51,3141,512,16
,1,52,3143,48,1
,4,194,3145,160,7
,2,194,3147,48,0
,4,321,3149,160,7
,2,321,3151,40,0
,4,261,3153,160,7
,2,261,3155,48,0
,4,457,3157,160,7
,2,457,3159,32,0
,4,306,3161,160,7
,2,306,3163,32,0
,4,412,3165,160,7
,2,412,3167,40,0
,4,134,3169,160,7
,2,134,3171,40,0
,4,268,3173,160,7
,2,268,3175,40,0
,4,390,3177,160,7
,2,390,3179,32,0
,4,318,3181,160,7
,2,318,3183,32,0
,4,309,3185,160,7
,2,309,3187,40,0
,4,431,3189,160,7
,2,431,3191,32,0
,4,308,3193,160,7
,2,308,3195,32,0
,4,380,3197,160,7
,2,380,3199,32,0
,4,229,3201,160,7
,2,229,3203,32,0
,4,400,3205,160,7
,2,400,3207,32,0
,4,163,3209,160,7
,2,163,3211,32,0
,4,338,3213,160,7
,2,338,3215,32,0
,4,239,3217,160,7
,2,239,3219,32,0
,4,320,3221,160,7
,2,320,3223,32,0
,4,161,3225,160,7
,2,161,3227,32,0
,4,202,3229,160,7
,2,202,3231,48,0
,4,178,3233,160,8
,2,178,3235,40,0
,4,51,3237,1632,138
,1,52,3239,48,1
,1,1,3241,784,93
,2,567,3243,40,0
,2,568,3245,40,0
,2,569,3247,40,0
,2,570,3249,40,0
,2,571,3251,40,0
,2,572,3253,40,0
,2,573,3255,48,0
,2,574,3257,48,0
,2,575,3259,40,0
,2,576,3261,48,0
,2,577,3263,40,0
,2,578,3265,48,0
,2,579,3267,40,0
,2,580,3269,40,0
,2,581,3271,40,0
,2,582,3273,40,0
,2,583,3275,40,0
,2,584,3277,48,0
,2,585,3279,48,0
,2,586,3281,48,0
,2,587,3283,48,0
,2,588,3285,40,0
,2,589,3287,40,0
,2,590,3289,40,0
,2,591,3291,48,0
,2,592,3293,48,0
,2,593,3295,40,0
,2,594,3297,40,0
,2,595,3299,40,0
,2,596,3301,40,0
,2,597,3303,40,0
,2,598,3305,40,0
,2,599,3307,40,0
,2,600,3309,40,0
,2,601,3311,40,0
,2,602,3313,40,0
,2,603,3315,40,0
,2,604,3317,40,0
,2,605,3319,40,0
,4,53,3321,160,8
,4,91,3323,160,7
,4,91,3325,160,7
,4,91,3327,160,7
,0,483,3329,32,2
,1,1,3331,64,3
,0,484,3333,16,0
,0,484,3335,16,0
,0,484,3337,16,0
,1,52,3339,56,2
,4,53,3341,160,8
,4,51,3343,1024,61
,1,69,3345,32,1
,1,69,3347,32,1
,1,69,3349,32,1
,1,69,3351,32,1
,1,69,3353,32,1
,1,69,3355,32,1
,1,69,3357,40,1
,1,69,3359,40,2
,5,53,3361,72,10
,4,1,3363,3648,86
,3,120,3365,32,4
,1,69,3367,32,1
,1,69,3369,32,1
,1,69,3371,56,1
,1,69,3373,56,2
,3,120,3375,32,2
,1,69,3377,32,1
,1,69,3379,32,1
,1,69,3381,32,1
,1,69,3383,32,1
,1,69,3385,32,1
,1,69,3387,32,1
,1,69,3389,32,1
,1,69,3391,32,1
,1,69,3393,32,1
,1,69,3395,56,1
,3,202,3397,24,9
,0,483,3399,32,1
,0,483,3401,32,1
,4,606,3403,120,4
,2,607,3405,40,0
,2,606,3407,40,0
,0,87,3409,16,1
,4,220,3411,160,7
,2,220,3413,56,0
,4,270,3415,160,7
,2,270,3417,40,0
,4,381,3419,160,7
,2,381,3421,40,0
,4,382,3423,160,7
,2,382,3425,40,0
,4,312,3427,160,7
,2,312,3429,48,0
,4,195,3431,160,7
,2,195,3433,40,0
,4,439,3435,160,7
,2,439,3437,32,0
,4,240,3439,160,7
,2,240,3441,32,0
,4,101,3443,160,7
,2,101,3445,40,0
,4,130,3447,160,7
,2,130,3449,48,0
,4,205,3451,160,7
,2,205,3453,40,0
,4,125,3455,160,7
,2,125,3457,40,0
,4,126,3459,160,7
,2,126,3461,48,0
,4,284,3463,160,7
,2,284,3465,40,0
,4,158,3467,160,7
,2,158,3469,48,0
,4,433,3471,160,7
,2,433,3473,40,0
,4,116,3475,160,7
,2,116,3477,32,0
,4,127,3479,160,7
,2,127,3481,32,0
,4,256,3483,160,8
,2,256,3485,32,0
,4,51,3487,480,32
,1,52,3489,48,1
,1,1,3491,352,40
,2,608,3493,40,0
,2,609,3495,40,0
,2,610,3497,40,0
,2,611,3499,48,0
,2,612,3501,40,0
,2,613,3503,48,0
,2,614,3505,40,0
,2,615,3507,40,0
,0,483,3509,32,1
,1,52,3511,56,2
,4,53,3513,160,8
,4,51,3515,352,15
,1,69,3517,32,1
,1,69,3519,32,1
,0,483,3521,32,1
,4,616,3523,120,4
,2,617,3525,40,0
,2,616,3527,40,0
,0,87,3529,16,1
,4,112,3531,160,8
,2,112,3533,40,0
,4,51,3535,224,7
,1,52,3537,48,1
,2,618,3539,32,0
,0,16,3541,64,5
,4,250,3543,160,7
,2,250,3545,32,0
,4,262,3547,160,7
,2,262,3549,32,0
,4,325,3551,160,7
,2,325,3553,32,0
,4,440,3555,160,7
,2,440,3557,32,0
,4,252,3559,160,7
,2,252,3561,32,0
,4,171,3563,160,8
,2,171,3565,32,0
,4,51,3567,320,10
,1,52,3569,56,2
,4,442,3571,160,7
,2,442,3573,32,0
,4,151,3575,160,7
,2,151,3577,32,0
,4,227,3579,160,7
,2,227,3581,32,0
,4,200,3583,160,7
,2,200,3585,32,0
,4,370,3587,160,7
,2,370,3589,32,0
,4,150,3591,160,7
,2,150,3593,32,0
,4,257,3595,160,7
,2,257,3597,32,0
,4,383,3599,160,7
,2,383,3601,32,0
,4,296,3603,160,7
,2,296,3605,32,0
,4,420,3607,160,7
,2,420,3609,32,0
,4,468,3611,160,7
,2,468,3613,32,0
,4,290,3615,160,7
,2,290,3617,32,0
,4,319,3619,160,8
,2,319,3621,40,0
,4,51,3623,1568,114
,1,52,3625,48,1
,1,1,3627,384,43
,2,619,3629,32,0
,2,620,3631,32,0
,2,621,3633,32,0
,2,622,3635,32,0
,2,623,3637,32,0
,2,624,3639,32,0
,2,625,3641,32,0
,2,626,3643,40,0
,2,627,3645,32,0
,2,628,3647,32,0
,2,629,3649,32,0
,2,630,3651,40,0
,2,631,3653,32,0
,2,632,3655,32,0
,2,633,3657,32,0
,2,634,3659,32,0
,2,635,3661,40,0
,2,636,3663,40,0
,2,637,3665,32,0
,2,638,3667,32,0
,2,639,3669,32,0
,0,483,3671,32,2
,1,1,3673,32,1
,0,484,3675,16,0
,1,52,3677,56,2
,4,53,3679,160,8
,4,51,3681,672,43
,3,112,3683,24,4
,0,483,3685,32,1
,0,483,3687,32,1
,4,640,3689,120,4
,2,641,3691,40,0
,2,640,3693,48,0
,0,87,3695,16,1
,1,1,3697,32,1
,1,1,3699,32,1
,1,1,3701,32,0
,4,298,3703,160,7
,2,298,3705,40,0
,4,410,3707,160,7
,2,410,3709,48,0
,4,425,3711,160,7
,2,425,3713,48,0
,4,331,3715,160,7
,2,331,3717,40,0
,4,233,3719,160,8
,2,233,3721,40,0
,4,51,3723,416,17
,1,52,3725,80,5
,4,156,3727,160,7
,2,156,3729,40,0
,4,347,3731,160,7
,2,347,3733,40,0
,4,293,3735,160,7
,2,293,3737,40,0
,4,282,3739,160,7
,2,282,3741,40,0
,4,272,3743,160,8
,2,272,3745,40,0
,4,51,3747,256,11
,1,52,3749,64,3
,4,463,3751,160,7
,2,463,3753,40,0
,4,307,3755,160,7
,2,307,3757,48,0
,4,230,3759,160,7
,2,230,3761,40,0
,4,441,3763,160,7
,2,441,3765,40,0
,4,351,3767,160,7
,2,351,3769,48,0
,4,237,3771,160,7
,2,237,3773,56,0
,4,465,3775,160,7
,2,465,3777,48,0
,4,188,3779,160,7
,2,188,3781,48,0
,4,177,3783,160,7
,2,177,3785,40,0
,4,315,3787,160,7
,2,315,3789,40,0
,4,179,3791,160,7
,2,179,3793,48,0
,4,337,3795,160,8
,2,337,3797,40,0
,1,1,3799,160,6
,4,386,3801,160,7
,2,386,3803,48,0
,4,458,3805,160,7
,2,458,3807,48,0
,4,330,3809,160,8
,2,330,3811,40,0
,1,1,3813,136,5
,4,328,3815,160,7
,2,328,3817,48,0
,4,336,3819,160,7
,2,336,3821,48,0
,4,210,3823,160,7
,2,210,3825,48,0
,4,392,3827,160,8
,2,392,3829,48,0
,4,51,3831,416,15
,1,52,3833,136,9
,4,219,3835,160,8
,2,219,3837,32,0
,1,1,3839,88,3
,4,265,3841,160,7
,2,265,3843,40,0
,4,470,3845,160,7
,2,470,3847,48,0
,4,388,3849,160,7
,2,388,3851,48,0
,4,196,3853,160,7
,2,196,3855,40,0
,4,322,3857,160,7
,2,322,3859,48,0
,4,276,3861,160,7
,2,276,3863,56,0
,4,169,3865,160,7
,2,169,3867,48,0
,4,187,3869,160,7
,2,187,3871,48,0
,4,462,3873,160,7
,2,462,3875,48,0
,4,258,3877,160,7
,2,258,3879,48,0
,4,378,3881,160,7
,2,378,3883,48,0
,4,422,3885,160,7
,2,422,3887,48,0
,4,165,3889,160,7
,2,165,3891,40,0
,4,280,3893,160,7
,2,280,3895,48,0
,4,266,3897,160,7
,2,266,3899,48,0
,4,231,3901,160,7
,2,231,3903,40,0
,4,207,3905,160,7
,2,207,3907,40,0
,4,364,3909,160,7
,2,364,3911,40,0
,4,201,3913,160,7
,2,201,3915,48,0
,4,340,3917,160,7
,2,340,3919,40,0
,4,176,3921,160,8
,2,176,3923,48,0
,4,51,3925,608,25
,1,52,3927,88,5
,4,235,3929,160,8
,2,235,3931,40,0
,4,51,3933,640,37
,1,52,3935,56,2
,4,253,3937,160,7
,2,253,3939,64,0
,4,446,3941,160,7
,2,446,3943,48,0
,4,71,3945,160,7
,1,1,3947,992,116
,2,642,3949,56,0
,2,643,3951,40,0
,2,644,3953,40,0
,2,645,3955,40,0
,2,646,3957,48,0
,2,647,3959,40,0
,2,648,3961,56,0
,4,53,3963,160,8
,0,483,3965,32,2
,1,1,3967,48,2
,0,484,3969,16,0
,0,484,3971,16,0
,1,52,3973,56,2
,4,53,3975,160,8
,4,51,3977,2656,209
,1,69,3979,32,1
,1,69,3981,968,1
,1,69,3983,32,1
,3,337,3985,24,12
,3,330,3987,24,10
,3,219,3989,24,23
,1,69,3991,32,1
,1,69,3993,32,1
,1,69,3995,32,1
,0,483,3997,32,2
,1,1,3999,32,1
,0,484,4001,16,0
,4,91,4003,160,8
,4,51,4005,960,52
,1,52,4007,88,5
,2,649,4009,40,0
,4,104,4011,160,7
,2,104,4013,32,0
,4,51,4015,704,29
,1,52,4017,56,2
,4,118,4019,160,7
,2,118,4021,40,0
,4,97,4023,160,7
,2,97,4025,40,0
,0,16,4027,64,5
,4,105,4029,160,7
,2,105,4031,40,0
,4,119,4033,160,7
,2,119,4035,40,0
,4,106,4037,160,7
,2,106,4039,40,0
,4,121,4041,160,7
,2,121,4043,32,0
,0,483,4045,32,2
,1,1,4047,128,7
,0,484,4049,16,0
,0,484,4051,16,0
,0,484,4053,16,0
,0,484,4055,16,0
,0,484,4057,16,0
,0,484,4059,16,0
,0,484,4061,16,0
,4,91,4063,160,8
,4,51,4065,224,7
,1,52,4067,48,1
,0,16,4069,64,3
,4,53,4071,160,8
,0,483,4073,32,2
,1,1,4075,48,2
,0,484,4077,16,0
,0,484,4079,16,0
,0,483,4081,32,1
,4,91,4083,160,7
,0,483,4085,32,2
,1,1,4087,32,1
,0,484,4089,16,0
,4,53,4091,160,7
,0,483,4093,32,1
,0,483,4095,32,1
,1,1,4097,32,0
,0,483,4099,32,2
,1,1,4101,32,1
,0,484,4103,16,0
,4,91,4105,160,7
,2,650,4107,40,2
,4,91,4109,160,7
,2,651,4111,40,2
,0,483,4113,32,1
,2,652,4115,32,0
,0,88,4117,24,2
,5,53,4119,72,9
,0,88,4121,24,3
,5,53,4123,72,9
,4,653,4125,120,4
,2,654,4127,40,0
,2,653,4129,48,0
,0,87,4131,16,1
,4,189,4133,160,8
,2,189,4135,40,0
,4,51,4137,288,13
,1,52,4139,64,3
,4,292,4141,160,8
,2,292,4143,40,0
,4,51,4145,704,28
,1,52,4147,88,6
,4,396,4149,160,8
,2,396,4151,48,0
,4,51,4153,1248,51
,1,52,4155,128,11
,4,216,4157,160,8
,2,216,4159,56,0
,4,51,4161,928,32
,1,52,4163,120,10
,1,1,4165,112,10
,2,655,4167,48,0
,2,656,4169,40,0
,0,483,4171,32,2
,1,1,4173,32,1
,0,484,4175,16,0
,1,52,4177,56,2
,4,53,4179,160,8
,4,51,4181,384,19
,1,69,4183,32,2
,3,50,4185,24,2
,1,69,4187,32,2
,3,50,4189,24,2
,4,657,4191,120,4
,2,658,4193,40,0
,2,657,4195,40,0
,0,87,4197,16,1
,1,1,4199,48,2
,2,659,4201,32,0
,2,660,4203,32,0
,1,90,4205,72,8
,2,661,4207,32,0
,2,662,4209,32,0
,2,663,4211,32,0
,2,664,4213,32,0
,2,665,4215,32,0
,2,666,4217,32,0
,2,667,4219,32,0
,1,1,4221,32,1
,1,90,4223,112,13
,2,668,4225,32,0
,2,669,4227,32,0
,2,670,4229,32,0
,2,671,4231,32,0
,2,672,4233,32,0
,2,673,4235,32,0
,2,674,4237,32,0
,2,675,4239,32,0
,2,676,4241,32,0
,2,677,4243,32,0
,2,678,4245,32,0
,2,679,4247,32,0
,1,1,4249,32,1
,1,90,4251,72,8
,2,680,4253,32,0
,2,681,4255,32,0
,2,682,4257,32,0
,2,683,4259,40,0
,2,684,4261,32,0
,2,685,4263,32,0
,2,686,4265,32,0
,1,1,4267,32,1
,1,90,4269,112,13
,2,687,4271,32,0
,2,688,4273,32,0
,2,689,4275,32,0
,2,690,4277,32,0
,2,691,4279,32,0
,2,692,4281,32,0
,2,693,4283,32,0
,2,694,4285,40,0
,2,695,4287,32,0
,2,696,4289,32,0
,2,697,4291,32,0
,1,1,4293,32,1
,4,223,4295,160,7
,2,223,4297,48,0
,4,339,4299,160,7
,2,339,4301,40,0
,4,135,4303,160,7
,2,135,4305,32,0
,4,218,4307,160,7
,2,218,4309,32,0
,4,174,4311,160,7
,2,174,4313,40,0
,4,391,4315,160,7
,2,391,4317,32,0
,4,438,4319,160,7
,2,438,4321,32,0
,4,228,4323,160,7
,2,228,4325,32,0
,4,358,4327,160,7
,2,358,4329,40,0
,4,406,4331,160,7
,2,406,4333,40,0
,4,365,4335,160,7
,2,365,4337,40,0
,4,333,4339,160,7
,2,333,4341,40,0
,4,238,4343,160,7
,2,238,4345,40,0
,4,449,4347,160,7
,2,449,4349,48,0
,4,335,4351,160,7
,2,335,4353,40,0
,4,136,4355,160,7
,2,136,4357,32,0
,4,135,4359,160,7
,4,137,4361,160,8
,2,137,4363,32,0
,4,51,4365,224,9
,1,52,4367,48,1
,4,71,4369,160,7
,4,448,4371,160,7
,2,448,4373,40,0
,4,356,4375,160,7
,2,356,4377,40,0
,4,72,4379,160,7
,4,409,4381,160,7
,2,409,4383,48,0
,4,376,4385,160,7
,2,376,4387,48,0
,4,73,4389,160,7
,4,429,4391,160,7
,2,429,4393,32,0
,4,236,4395,160,7
,2,236,4397,40,0
,4,260,4399,160,7
,2,260,4401,40,0
,4,385,4403,160,7
,2,385,4405,32,0
,4,323,4407,160,7
,2,323,4409,40,0
,4,427,4411,160,7
,2,427,4413,32,0
,4,434,4415,160,7
,2,434,4417,40,0
,4,302,4419,160,7
,2,302,4421,32,0
,4,310,4423,160,7
,2,310,4425,40,0
,4,471,4427,160,7
,2,471,4429,32,0
,4,301,4431,160,7
,2,301,4433,40,0
,4,192,4435,160,7
,2,192,4437,40,0
,4,255,4439,160,7
,2,255,4441,40,0
,4,279,4443,160,7
,2,279,4445,40,0
,4,160,4447,160,7
,2,160,4449,40,0
,4,159,4451,160,7
,2,159,4453,40,0
,4,287,4455,160,7
,2,287,4457,48,0
,4,155,4459,160,7
,2,155,4461,48,0
,4,399,4463,160,8
,2,399,4465,32,0
,4,51,4467,480,17
,1,52,4469,56,2
,4,407,4471,160,7
,2,407,4473,40,0
,4,303,4475,160,7
,2,303,4477,48,0
,4,408,4479,160,7
,2,408,4481,40,0
,4,285,4483,160,7
,2,285,4485,40,0
,4,314,4487,160,7
,2,314,4489,40,0
,4,152,4491,160,7
,2,152,4493,40,0
,4,269,4495,160,7
,2,269,4497,32,0
,4,373,4499,160,7
,2,373,4501,40,0
,4,208,4503,160,7
,2,208,4505,32,0
,4,313,4507,160,7
,2,313,4509,40,0
,4,211,4511,160,7
,2,211,4513,32,0
,4,234,4515,160,7
,2,234,4517,40,0
,4,232,4519,160,7
,2,232,4521,40,0
,4,259,4523,160,7
,2,259,4525,40,0
,4,354,4527,160,7
,2,354,4529,40,0
,4,297,4531,160,7
,2,297,4533,32,0
,4,464,4535,160,7
,2,464,4537,32,0
,4,167,4539,160,7
,2,167,4541,40,0
,4,344,4543,160,7
,2,344,4545,32,0
,4,217,4547,160,7
,2,217,4549,40,0
,4,428,4551,160,7
,2,428,4553,32,0
,4,346,4555,160,7
,2,346,4557,40,0
,4,360,4559,160,8
,2,360,4561,40,0
,4,51,4563,2048,177
,1,52,4565,48,1
,1,1,4567,1232,143
,2,698,4569,32,0
,2,699,4571,48,0
,2,700,4573,48,0
,2,701,4575,40,0
,2,702,4577,32,0
,2,703,4579,32,0
,2,704,4581,40,0
,2,705,4583,40,0
,2,706,4585,40,0
,2,707,4587,40,0
,2,708,4589,32,0
,2,709,4591,32,0
,2,710,4593,40,0
,2,711,4595,40,0
,2,712,4597,40,0
,2,713,4599,48,0
,2,714,4601,48,0
,2,715,4603,48,0
,2,716,4605,40,0
,2,717,4607,40,0
,2,718,4609,40,0
,2,719,4611,48,0
,2,720,4613,40,0
,2,721,4615,40,0
,2,722,4617,40,0
,2,723,4619,40,0
,2,724,4621,40,0
,2,725,4623,40,0
,2,726,4625,40,0
,2,727,4627,40,0
,2,728,4629,40,0
,2,729,4631,48,0
,2,730,4633,40,0
,2,731,4635,48,0
,2,732,4637,48,0
,2,733,4639,48,0
,2,734,4641,48,0
,2,735,4643,40,0
,2,736,4645,48,0
,2,737,4647,48,0
,2,738,4649,40,0
,2,739,4651,48,0
,2,740,4653,40,0
,2,741,4655,48,0
,2,742,4657,40,0
,2,743,4659,40,0
,2,744,4661,40,0
,2,745,4663,40,0
,2,746,4665,40,0
,2,747,4667,40,0
,2,748,4669,40,0
,2,749,4671,48,0
,2,750,4673,40,0
,2,751,4675,40,0
,2,752,4677,40,0
,2,753,4679,40,0
,2,754,4681,40,0
,2,755,4683,40,0
,4,53,4685,160,8
,0,483,4687,32,2
,1,1,4689,32,1
,0,484,4691,16,0
,1,52,4693,56,2
,4,53,4695,160,8
,4,51,4697,1056,65
,5,756,4699,72,30
,4,1,4701,224,5
,1,69,4703,32,1
,0,483,4705,32,2
,1,1,4707,32,1
,0,484,4709,16,0
,2,757,4711,32,0
,2,758,4713,32,0
,2,759,4715,32,0
,2,760,4717,32,0
,0,483,4719,32,1
,4,761,4721,120,4
,2,762,4723,40,0
,2,761,4725,40,0
,0,87,4727,16,1
,4,168,4729,160,8
,2,168,4731,32,0
,4,51,4733,1536,36
,1,52,4735,112,9
,4,136,4737,160,8
,4,51,4739,576,21
,1,52,4741,72,4
,4,225,4743,160,7
,2,225,4745,40,0
,4,430,4747,160,7
,2,430,4749,40,0
,4,288,4751,160,7
,2,288,4753,40,0
,4,157,4755,160,8
,2,157,4757,48,0
,4,51,4759,2752,125
,1,52,4761,112,9
,4,221,4763,160,8
,2,221,4765,48,0
,4,51,4767,1056,56
,1,52,4769,120,10
,4,435,4771,160,8
,2,435,4773,48,0
,4,51,4775,2112,71
,1,52,4777,88,6
,4,142,4779,160,8
,2,142,4781,40,0
,4,51,4783,2336,66
,1,52,4785,96,7
,4,426,4787,160,8
,2,426,4789,40,0
,4,51,4791,352,20
,1,52,4793,48,1
,1,1,4795,192,21
,2,763,4797,32,0
,2,764,4799,40,0
,2,765,4801,40,0
,0,483,4803,32,1
,1,52,4805,56,2
,4,53,4807,160,8
,4,51,4809,352,17
,1,69,4811,32,2
,3,50,4813,24,4
,1,69,4815,32,1
,0,483,4817,32,1
,4,766,4819,120,4
,2,767,4821,40,0
,2,766,4823,40,0
,0,87,4825,16,1
,4,345,4827,160,8
,2,345,4829,48,0
,4,51,4831,2144,89
,1,52,4833,112,9
,4,366,4835,160,8
,2,366,4837,48,0
,4,286,4839,160,7
,2,286,4841,32,0
,4,203,4843,160,8
,2,203,4845,40,0
,4,51,4847,320,12
,1,52,4849,80,5
,4,453,4851,160,8
,2,453,4853,48,0
,4,51,4855,2016,51
,1,52,4857,112,9
,4,375,4859,160,7
,2,375,4861,48,0
,4,454,4863,160,8
,2,454,4865,32,0
,4,51,4867,1056,46
,1,52,4869,88,6
,4,403,4871,160,7
,2,403,4873,32,0
,4,316,4875,160,7
,2,316,4877,40,0
,4,71,4879,160,7
,4,138,4881,160,7
,2,138,4883,48,0
,4,139,4885,160,7
,2,139,4887,48,0
,4,140,4889,160,7
,2,140,4891,48,0
,4,141,4893,160,7
,2,141,4895,48,0
,4,241,4897,160,8
,2,241,4899,48,0
,4,51,4901,288,11
,1,52,4903,72,3
,4,190,4905,160,8
,2,190,4907,40,0
,4,51,4909,2336,151
,1,52,4911,112,8
,1,1,4913,352,37
,2,768,4915,32,0
,2,769,4917,40,0
,2,770,4919,40,0
,2,771,4921,40,0
,2,772,4923,40,0
,2,773,4925,40,0
,2,774,4927,40,0
,2,775,4929,40,0
,2,776,4931,48,0
,0,483,4933,32,2
,1,1,4935,32,1
,0,484,4937,16,0
,1,52,4939,56,2
,4,53,4941,160,8
,4,51,4943,576,30
,1,69,4945,64,1
,1,69,4947,32,1
,1,69,4949,40,1
,1,69,4951,48,1
,1,69,4953,32,1
,4,91,4955,160,7
,2,777,4957,40,2
,4,91,4959,160,7
,2,778,4961,40,2
,4,91,4963,160,7
,2,779,4965,40,2
,4,91,4967,160,7
,2,780,4969,40,2
,4,91,4971,160,7
,2,781,4973,40,2
,0,483,4975,32,1
,0,483,4977,32,2
,1,1,4979,32,1
,0,484,4981,16,0
,0,88,4983,24,3
,0,88,4985,24,3
,0,88,4987,24,3
,0,88,4989,24,3
,0,88,4991,24,3
,0,88,4993,24,3
,0,88,4995,24,3
,0,88,4997,24,3
,0,88,4999,24,3
,0,88,5001,24,3
,0,88,5003,24,3
,0,88,5005,24,3
,0,88,5007,24,3
,0,483,5009,32,1
,0,483,5011,32,1
,4,91,5013,160,7
,0,483,5015,32,1
,0,88,5017,24,3
,0,88,5019,24,3
,0,88,5021,24,3
,0,88,5023,24,3
,0,88,5025,24,3
,0,88,5027,24,3
,0,88,5029,24,3
,0,88,5031,24,3
,0,88,5033,24,3
,4,83,5035,160,6
,2,83,5037,32,0
,4,51,5039,512,6
,4,84,5041,160,6
,2,84,5043,32,0
,4,51,5045,512,6
,0,782,5047,128,2
,0,16,5049,64,1
,2,122,5051,32,0
,0,483,5053,32,2
,1,1,5055,32,1
,0,484,5057,16,0
,1,1,5059,24,0
,0,483,5061,32,1
,4,122,5063,160,7
,4,51,5065,128,3
,4,51,5067,544,5
,5,122,5069,72,8
,3,122,5071,24,3
,0,16,5073,64,32
,0,16,5075,64,3
,1,1,5077,24,0
,0,483,5079,32,1
,0,783,5081,56,4
,0,16,5083,64,1
,0,87,5085,16,1
,0,87,5087,16,1
,2,784,5089,32,0
,0,785,5091,40,2
,0,16,5093,64,1
,0,782,5095,128,3
,0,786,5097,56,7
,0,16,5099,64,1
,0,87,5101,16,1
,0,87,5103,16,1
,0,87,5105,16,1
,0,87,5107,16,1
,0,87,5109,16,1
,3,50,5111,24,3
,4,91,5113,160,7
,5,53,5115,72,8
,3,50,5117,24,3
,0,16,5119,64,3
,0,783,5121,56,4
,0,87,5123,16,1
,0,87,5125,16,1
,2,787,5127,48,0
,0,783,5129,56,4
,0,87,5131,16,1
,0,87,5133,16,1
,2,788,5135,40,0
,0,782,5137,128,2
,0,789,5139,24,2
,0,16,5141,64,1
,0,87,5143,16,1
,4,91,5145,160,7
,5,53,5147,72,8
,3,50,5149,24,3
,0,16,5151,64,3
,0,782,5153,128,2
,0,789,5155,24,2
,0,87,5157,16,1
,4,91,5159,160,7
,5,53,5161,72,8
,3,50,5163,24,3
,0,16,5165,64,3
,0,782,5167,128,2
,0,789,5169,24,2
,0,87,5171,16,1
,4,91,5173,160,7
,5,53,5175,72,8
,3,50,5177,24,3
,0,16,5179,64,3
,0,782,5181,128,2
,0,789,5183,24,2
,0,87,5185,16,1
,4,91,5187,160,7
,5,53,5189,72,8
,3,50,5191,24,3
,0,16,5193,64,3
,0,782,5195,128,2
,0,789,5197,24,2
,0,87,5199,16,1
,4,91,5201,160,7
,5,53,5203,72,8
,3,50,5205,24,3
,0,16,5207,64,3
,0,782,5209,128,2
,0,789,5211,24,2
,0,87,5213,16,1
,4,91,5215,160,7
,5,53,5217,72,8
,3,50,5219,24,3
,0,16,5221,64,3
,0,782,5223,128,2
,0,789,5225,24,2
,0,87,5227,16,1
,4,91,5229,160,7
,5,53,5231,72,8
,3,50,5233,24,3
,0,16,5235,64,3
,0,782,5237,128,2
,0,789,5239,24,2
,0,87,5241,16,1
,4,91,5243,160,7
,5,53,5245,72,8
,3,50,5247,24,3
,0,16,5249,64,3
,0,782,5251,128,2
,0,789,5253,24,2
,0,87,5255,16,1
,4,91,5257,160,7
,5,53,5259,72,8
,3,50,5261,24,3
,0,16,5263,64,3
,0,782,5265,128,2
,0,789,5267,24,2
,0,87,5269,16,1
,4,91,5271,160,7
,5,53,5273,72,8
,3,50,5275,24,3
,0,16,5277,64,3
,0,782,5279,128,2
,0,789,5281,24,2
,0,87,5283,16,1
,4,91,5285,160,7
,5,53,5287,72,8
,3,50,5289,24,3
,0,16,5291,64,3
,0,782,5293,128,2
,0,789,5295,24,2
,0,87,5297,16,1
,4,91,5299,160,7
,5,53,5301,72,8
,3,50,5303,24,3
,0,16,5305,64,3
,0,782,5307,128,2
,0,789,5309,24,2
,0,87,5311,16,1
,4,91,5313,160,7
,5,53,5315,72,8
,3,50,5317,24,3
,0,16,5319,64,3
,0,782,5321,128,2
,0,789,5323,24,2
,0,87,5325,16,1
,4,91,5327,160,7
,5,53,5329,72,8
,3,50,5331,24,3
,0,16,5333,64,3
,0,782,5335,128,2
,0,789,5337,24,2
,0,87,5339,16,1
,4,91,5341,160,7
,5,53,5343,72,8
,3,50,5345,24,3
,0,16,5347,64,3
,0,782,5349,128,2
,0,789,5351,24,2
,0,87,5353,16,1
,4,91,5355,160,7
,5,53,5357,72,8
,3,50,5359,24,3
,0,16,5361,64,3
,0,782,5363,128,2
,0,789,5365,24,2
,0,87,5367,16,1
,4,91,5369,160,7
,5,53,5371,72,8
,3,50,5373,24,3
,0,16,5375,64,3
,0,782,5377,128,2
,0,789,5379,24,2
,0,87,5381,16,1
,4,91,5383,160,7
,5,53,5385,72,8
,3,50,5387,24,3
,0,16,5389,64,3
,0,782,5391,128,2
,0,789,5393,24,2
,0,87,5395,16,1
,4,91,5397,160,7
,5,53,5399,72,8
,3,50,5401,24,3
,0,16,5403,64,3
,0,782,5405,128,2
,0,789,5407,24,2
,0,87,5409,16,1
,4,91,5411,160,7
,5,53,5413,72,8
,3,50,5415,24,3
,0,16,5417,64,3
,0,782,5419,128,2
,0,789,5421,24,2
,0,87,5423,16,1
,4,91,5425,160,7
,5,53,5427,72,8
,3,50,5429,24,3
,0,16,5431,64,3
,0,782,5433,128,2
,0,789,5435,24,2
,0,87,5437,16,1
,4,91,5439,160,7
,5,53,5441,72,8
,3,50,5443,24,3
,0,16,5445,64,3
,0,782,5447,128,2
,0,789,5449,24,2
,0,87,5451,16,1
,4,91,5453,160,7
,5,53,5455,72,8
,3,50,5457,24,3
,0,16,5459,64,3
,0,782,5461,128,2
,0,789,5463,24,2
,0,87,5465,16,1
,4,91,5467,160,7
,5,53,5469,72,8
,3,50,5471,24,3
,0,16,5473,64,3
,0,782,5475,128,2
,0,789,5477,24,2
,0,87,5479,16,1
,4,91,5481,160,7
,5,53,5483,72,8
,3,50,5485,24,3
,0,16,5487,64,3
,0,782,5489,128,4
,0,789,5491,24,2
,0,785,5493,40,3
,2,92,5495,40,0
,0,87,5497,16,1
,3,50,5499,24,5
,0,790,5501,24,2
,0,16,5503,64,1
,0,782,5505,128,3
,0,789,5507,24,2
,0,87,5509,16,1
,4,92,5511,160,7
,3,92,5513,24,3
,0,16,5515,64,3
,0,782,5517,128,5
,3,50,5519,24,4
,0,789,5521,24,2
,0,785,5523,40,3
,2,102,5525,40,0
,0,87,5527,16,1
,3,50,5529,24,12
,0,790,5531,24,2
,0,782,5533,128,3
,0,789,5535,24,2
,0,87,5537,16,1
,0,782,5539,128,3
,0,789,5541,24,2
,0,87,5543,16,1
,0,782,5545,128,3
,0,789,5547,24,2
,0,87,5549,16,1
,0,782,5551,128,3
,0,789,5553,24,2
,0,87,5555,16,1
,4,102,5557,160,7
,3,102,5559,24,3
,1,131,5561,40,0
,0,16,5563,64,4
,0,16,5565,64,3
,0,782,5567,128,5
,3,50,5569,24,4
,0,789,5571,24,2
,0,785,5573,40,3
,2,103,5575,40,0
,0,87,5577,16,1
,3,50,5579,24,12
,0,790,5581,24,2
,0,782,5583,128,3
,0,789,5585,24,2
,0,87,5587,16,1
,0,782,5589,128,3
,0,789,5591,24,2
,0,87,5593,16,1
,0,782,5595,128,3
,0,789,5597,24,2
,0,87,5599,16,1
,0,782,5601,128,3
,0,789,5603,24,2
,0,87,5605,16,1
,4,103,5607,160,7
,3,103,5609,24,3
,1,131,5611,40,0
,0,16,5613,64,3
,0,782,5615,128,5
,3,50,5617,24,4
,0,789,5619,24,2
,0,785,5621,40,3
,2,94,5623,48,0
,0,87,5625,16,1
,3,50,5627,24,12
,0,790,5629,24,2
,0,782,5631,128,3
,0,789,5633,24,2
,0,87,5635,16,1
,0,782,5637,128,3
,0,789,5639,24,2
,0,87,5641,16,1
,0,782,5643,128,3
,0,789,5645,24,2
,0,87,5647,16,1
,0,782,5649,128,3
,0,789,5651,24,2
,0,87,5653,16,1
,4,94,5655,160,7
,3,94,5657,24,3
,1,131,5659,40,0
,0,16,5661,64,3
,0,782,5663,128,5
,3,50,5665,24,4
,0,789,5667,24,2
,0,785,5669,40,3
,2,108,5671,40,0
,0,87,5673,16,1
,3,50,5675,24,12
,0,790,5677,24,2
,0,782,5679,128,3
,0,789,5681,24,2
,0,87,5683,16,1
,0,782,5685,128,3
,0,789,5687,24,2
,0,87,5689,16,1
,0,782,5691,128,3
,0,789,5693,24,2
,0,87,5695,16,1
,0,782,5697,128,3
,0,789,5699,24,2
,0,87,5701,16,1
,4,108,5703,160,7
,3,108,5705,24,3
,1,131,5707,40,0
,0,16,5709,64,3
,0,782,5711,128,5
,3,50,5713,24,4
,0,789,5715,24,2
,0,785,5717,40,3
,2,124,5719,40,0
,0,87,5721,16,1
,3,50,5723,24,12
,0,790,5725,24,2
,0,782,5727,128,3
,0,789,5729,24,2
,0,87,5731,16,1
,0,782,5733,128,3
,0,789,5735,24,2
,0,87,5737,16,1
,0,782,5739,128,3
,0,789,5741,24,2
,0,87,5743,16,1
,0,782,5745,128,3
,0,789,5747,24,2
,0,87,5749,16,1
,4,124,5751,160,7
,3,124,5753,24,3
,1,131,5755,40,0
,0,16,5757,64,3
,0,782,5759,128,5
,3,50,5761,24,4
,0,789,5763,24,2
,0,785,5765,40,3
,2,109,5767,40,0
,0,87,5769,16,1
,3,50,5771,24,12
,0,790,5773,24,2
,0,782,5775,128,3
,0,789,5777,24,2
,0,87,5779,16,1
,0,782,5781,128,3
,0,789,5783,24,2
,0,87,5785,16,1
,0,782,5787,128,3
,0,789,5789,24,2
,0,87,5791,16,1
,0,782,5793,128,3
,0,789,5795,24,2
,0,87,5797,16,1
,4,109,5799,160,7
,3,109,5801,24,3
,1,131,5803,40,0
,0,16,5805,64,3
,0,782,5807,128,5
,3,50,5809,24,4
,0,789,5811,24,2
,0,785,5813,40,3
,2,123,5815,40,0
,0,87,5817,16,1
,3,50,5819,24,12
,0,790,5821,24,2
,0,782,5823,128,3
,0,789,5825,24,2
,0,87,5827,16,1
,0,782,5829,128,3
,0,789,5831,24,2
,0,87,5833,16,1
,0,782,5835,128,3
,0,789,5837,24,2
,0,87,5839,16,1
,0,782,5841,128,3
,0,789,5843,24,2
,0,87,5845,16,1
,4,123,5847,160,7
,3,123,5849,24,3
,1,131,5851,40,0
,0,16,5853,64,3
,0,782,5855,128,5
,3,50,5857,24,4
,0,789,5859,24,2
,0,785,5861,40,3
,2,95,5863,40,0
,0,87,5865,16,1
,3,50,5867,24,12
,0,790,5869,24,2
,0,782,5871,128,3
,0,789,5873,24,2
,0,87,5875,16,1
,0,782,5877,128,3
,0,789,5879,24,2
,0,87,5881,16,1
,0,782,5883,128,3
,0,789,5885,24,2
,0,87,5887,16,1
,0,782,5889,128,3
,0,789,5891,24,2
,0,87,5893,16,1
,4,95,5895,160,7
,3,95,5897,24,3
,1,131,5899,40,0
,0,16,5901,64,3
,0,782,5903,128,5
,3,50,5905,24,4
,0,789,5907,24,2
,0,785,5909,40,3
,2,93,5911,40,0
,0,87,5913,16,1
,3,50,5915,24,12
,0,790,5917,24,2
,0,782,5919,128,3
,0,789,5921,24,2
,0,87,5923,16,1
,0,782,5925,128,3
,0,789,5927,24,2
,0,87,5929,16,1
,0,782,5931,128,3
,0,789,5933,24,2
,0,87,5935,16,1
,0,782,5937,128,3
,0,789,5939,24,2
,0,87,5941,16,1
,4,93,5943,160,7
,3,93,5945,24,3
,1,131,5947,40,0
,0,16,5949,64,3
,0,782,5951,128,4
,0,789,5953,24,2
,0,785,5955,40,3
,2,100,5957,32,0
,0,87,5959,16,1
,3,50,5961,24,50
,0,790,5963,24,2
,0,782,5965,128,3
,0,789,5967,24,2
,0,87,5969,16,1
,0,782,5971,128,3
,0,789,5973,24,2
,0,87,5975,16,1
,0,782,5977,128,3
,0,789,5979,24,2
,0,87,5981,16,1
,0,782,5983,128,3
,0,789,5985,24,2
,0,87,5987,16,1
,0,782,5989,128,3
,0,789,5991,24,2
,0,87,5993,16,1
,0,782,5995,128,3
,0,789,5997,24,2
,0,87,5999,16,1
,0,782,6001,128,3
,0,789,6003,24,2
,0,87,6005,16,1
,0,782,6007,128,3
,0,789,6009,24,2
,0,87,6011,16,1
,0,782,6013,128,3
,0,789,6015,24,2
,0,87,6017,16,1
,0,782,6019,128,3
,0,789,6021,24,2
,0,87,6023,16,1
,0,782,6025,128,3
,0,789,6027,24,2
,0,87,6029,16,1
,0,782,6031,128,3
,0,789,6033,24,2
,0,87,6035,16,1
,0,782,6037,128,3
,0,789,6039,24,2
,0,87,6041,16,1
,0,782,6043,128,3
,0,789,6045,24,2
,0,87,6047,16,1
,0,782,6049,128,3
,0,789,6051,24,2
,0,87,6053,16,1
,0,782,6055,128,3
,0,789,6057,24,2
,0,87,6059,16,1
,4,100,6061,160,7
,3,100,6063,24,3
,0,16,6065,64,3
,4,791,6067,120,4
,2,792,6069,40,0
,2,791,6071,40,0
,0,87,6073,16,1
,1,90,6075,32,3
,2,793,6077,88,0
,2,794,6079,32,0
,1,1,6081,32,1
,4,795,6083,160,8
,2,795,6085,32,0
,4,51,6087,2784,199
,1,52,6089,128,10
,4,796,6091,160,7
,2,796,6093,40,0
,4,797,6095,160,7
,2,797,6097,40,0
,4,798,6099,160,8
,2,798,6101,56,0
,4,51,6103,1312,92
,1,52,6105,96,7
,4,799,6107,160,8
,2,799,6109,40,0
,4,51,6111,320,18
,1,52,6113,56,2
,4,91,6115,160,8
,4,51,6117,640,51
,1,52,6119,48,1
,2,800,6121,40,2
,4,91,6123,160,8
,4,51,6125,672,43
,1,52,6127,48,1
,2,801,6129,40,2
,4,91,6131,160,8
,4,51,6133,256,14
,1,52,6135,48,1
,2,802,6137,40,2
,4,91,6139,160,8
,4,51,6141,320,17
,1,52,6143,48,1
,2,803,6145,40,2
,4,91,6147,160,8
,4,51,6149,256,11
,1,52,6151,48,1
,2,804,6153,40,2
,4,91,6155,160,8
,4,51,6157,320,12
,1,52,6159,48,1
,2,805,6161,40,2
,4,91,6163,160,8
,4,51,6165,736,37
,1,52,6167,56,2
,2,806,6169,40,2
,4,91,6171,160,8
,4,51,6173,1248,50
,1,52,6175,248,16
,2,807,6177,40,2
,4,91,6179,160,8
,4,51,6181,480,27
,1,52,6183,96,4
,2,808,6185,40,2
,4,91,6187,160,8
,4,51,6189,320,15
,1,52,6191,48,1
,2,809,6193,40,2
,4,91,6195,160,8
,4,51,6197,672,29
,1,52,6199,112,5
,2,810,6201,40,2
,4,91,6203,160,8
,4,51,6205,640,36
,1,52,6207,64,3
,2,811,6209,40,2
,4,91,6211,160,8
,4,51,6213,640,36
,1,52,6215,80,5
,2,812,6217,40,2
,4,91,6219,160,8
,4,51,6221,640,38
,1,52,6223,72,4
,2,813,6225,40,2
,4,91,6227,160,8
,4,51,6229,224,10
,1,52,6231,56,2
,2,814,6233,40,2
,4,91,6235,160,8
,4,51,6237,256,11
,1,52,6239,56,2
,2,815,6241,40,2
,4,91,6243,160,8
,4,51,6245,224,10
,1,52,6247,56,2
,2,816,6249,40,2
,4,91,6251,160,8
,4,51,6253,288,15
,1,52,6255,56,2
,2,817,6257,40,2
,4,91,6259,160,8
,4,51,6261,512,27
,1,52,6263,64,3
,2,818,6265,40,2
,4,91,6267,160,8
,4,51,6269,256,12
,1,52,6271,48,1
,2,819,6273,40,2
,0,483,6275,32,2
,1,1,6277,32,1
,0,484,6279,16,0
,1,52,6281,192,11
,2,820,6283,32,0
,2,821,6285,40,0
,4,91,6287,160,8
,4,51,6289,2400,134
,0,483,6291,32,1
,1,52,6293,56,2
,4,53,6295,160,8
,4,51,6297,256,9
,0,782,6299,128,2
,0,789,6301,24,2
,0,87,6303,16,1
,4,91,6305,160,7
,3,50,6307,24,3
,0,16,6309,64,3
,0,782,6311,128,2
,0,789,6313,24,2
,0,87,6315,16,1
,4,91,6317,160,7
,3,50,6319,24,3
,0,16,6321,64,3
,0,782,6323,128,2
,0,789,6325,24,2
,0,87,6327,16,1
,4,91,6329,160,7
,3,50,6331,24,3
,0,16,6333,64,3
,0,782,6335,128,2
,0,789,6337,24,2
,0,87,6339,16,1
,4,91,6341,160,7
,3,50,6343,24,3
,0,16,6345,64,3
,0,782,6347,128,2
,0,789,6349,24,2
,0,87,6351,16,1
,4,91,6353,160,7
,3,50,6355,24,3
,0,16,6357,64,3
,0,782,6359,128,2
,0,789,6361,24,2
,0,87,6363,16,1
,4,91,6365,160,7
,3,50,6367,24,3
,0,16,6369,64,3
,0,782,6371,128,2
,0,789,6373,24,2
,0,87,6375,16,1
,4,91,6377,160,7
,3,50,6379,24,3
,0,16,6381,64,3
,0,782,6383,128,2
,0,789,6385,24,2
,0,87,6387,16,1
,4,91,6389,160,7
,3,50,6391,24,3
,0,16,6393,64,3
,5,53,6395,72,14
,5,795,6397,72,30
,5,53,6399,72,14
,5,796,6401,72,14
,5,797,6403,72,14
,5,798,6405,72,15
,5,53,6407,72,8
,5,799,6409,72,26
,0,70,6411,112,12
,5,53,6413,72,14
,5,53,6415,72,14
,5,53,6417,72,14
,5,53,6419,72,14
,5,53,6421,72,14
,5,53,6423,72,15
,1,69,6425,32,2
,6,28,6427,72,7
,5,53,6429,72,15
,1,69,6431,32,2
,3,120,6433,32,2
,5,53,6435,72,14
,5,53,6437,72,14
,5,53,6439,72,15
,1,69,6441,32,2
,3,50,6443,24,2
,5,53,6445,72,14
,5,53,6447,72,14
,0,782,6449,128,4
,0,789,6451,24,2
,0,785,6453,40,2
,2,822,6455,32,0
,0,87,6457,16,1
,4,822,6459,160,7
,5,822,6461,72,8
,3,822,6463,24,3
,0,16,6465,64,3
,0,782,6467,128,6
,3,50,6469,24,14
,0,789,6471,24,2
,0,785,6473,40,2
,0,785,6475,40,2
,2,823,6477,40,0
,0,87,6479,16,1
,0,782,6481,128,2
,0,789,6483,24,2
,0,87,6485,16,1
,3,50,6487,24,14
,0,782,6489,128,2
,0,789,6491,24,2
,0,87,6493,16,1
,0,782,6495,128,2
,0,789,6497,24,2
,0,87,6499,16,1
,0,782,6501,128,2
,0,789,6503,24,2
,0,87,6505,16,1
,0,782,6507,128,2
,0,789,6509,24,2
,0,87,6511,16,1
,4,91,6513,160,7
,5,53,6515,72,8
,3,50,6517,24,3
,0,16,6519,64,3
,0,782,6521,128,2
,0,789,6523,24,2
,0,87,6525,16,1
,4,91,6527,160,7
,5,53,6529,72,8
,3,50,6531,24,3
,0,16,6533,64,3
,0,782,6535,128,2
,0,789,6537,24,2
,0,87,6539,16,1
,4,91,6541,160,7
,3,50,6543,24,3
,0,16,6545,64,3
,0,782,6547,128,2
,0,789,6549,24,2
,0,87,6551,16,1
,4,91,6553,160,7
,5,53,6555,72,8
,3,50,6557,24,3
,0,16,6559,64,3
,4,823,6561,160,7
,5,823,6563,72,12
,3,823,6565,24,7
,0,16,6567,64,4
,0,16,6569,64,3
,4,824,6571,160,7
,2,824,6573,40,0
,5,824,6575,72,8
,3,824,6577,24,3
,0,16,6579,64,3
,4,825,6581,160,7
,2,825,6583,40,0
,5,825,6585,72,8
,3,825,6587,24,3
,0,16,6589,64,3
,4,821,6591,160,7
,5,821,6593,72,8
,3,821,6595,24,3
,0,16,6597,64,3
,4,826,6599,160,7
,2,826,6601,40,0
,5,826,6603,72,8
,3,826,6605,24,3
,0,16,6607,64,3
,5,53,6609,72,14
,5,53,6611,72,14
,5,53,6613,72,14
,5,53,6615,72,14
,5,53,6617,72,14
,5,53,6619,72,14
,5,53,6621,72,14
,1,1,6623,32,1
,2,827,6625,32,0
,1,1,6627,32,1
,2,828,6629,40,0
,1,1,6631,48,2
,2,829,6633,40,0
,2,830,6635,40,0
,4,53,6637,160,7
,4,53,6639,160,7
,4,53,6641,160,7
,4,53,6643,160,7
,4,53,6645,160,7
,0,483,6647,32,2
,1,1,6649,32,1
,0,484,6651,16,0
,2,831,6653,40,0
,2,832,6655,32,0
,2,833,6657,32,0
,2,834,6659,32,0
,2,835,6661,40,0
,2,836,6663,32,0
,2,837,6665,32,0
,2,838,6667,32,0
,0,483,6669,32,2
,1,1,6671,48,2
,0,484,6673,16,0
,0,484,6675,16,0
,2,839,6677,32,0
,2,840,6679,32,0
,2,841,6681,40,0
,0,483,6683,32,1
,0,483,6685,32,1
,0,483,6687,32,1
,0,483,6689,32,1
,0,483,6691,32,2
,1,1,6693,48,2
,0,484,6695,16,0
,0,484,6697,16,0
,2,842,6699,32,0
,2,843,6701,32,0
,0,483,6703,32,1
,0,483,6705,32,1
,2,844,6707,32,0
,4,845,6709,120,4
,2,846,6711,8584,0
,2,845,6713,40,0
,0,87,6715,16,1
,4,831,6717,160,8
,4,51,6719,704,38
,1,52,6721,48,1
,4,91,6723,160,7
,2,847,6725,40,2
,4,91,6727,160,7
,2,848,6729,40,2
,4,91,6731,160,8
,4,51,6733,1568,96
,1,52,6735,72,4
,2,849,6737,40,2
,4,91,6739,160,8
,4,51,6741,608,22
,1,52,6743,128,7
,2,850,6745,40,2
,4,91,6747,160,7
,2,851,6749,40,2
,4,91,6751,160,7
,2,852,6753,40,2
,4,91,6755,160,7
,2,853,6757,40,2
,4,91,6759,160,7
,2,854,6761,40,2
,0,483,6763,32,1
,1,52,6765,160,11
,2,855,6767,32,0
,2,856,6769,32,0
,2,857,6771,32,0
,2,858,6773,40,0
,2,859,6775,40,0
,2,860,6777,32,0
,2,861,6779,48,0
,4,91,6781,160,8
,4,51,6783,1184,71
,0,483,6785,32,1
,1,52,6787,56,2
,4,53,6789,160,8
,4,51,6791,256,9
,5,53,6793,72,9
,3,50,6795,24,5
,0,70,6797,80,6
,5,53,6799,72,10
,1,69,6801,32,1
,5,53,6803,72,10
,1,69,6805,40,1
,5,53,6807,72,9
,5,53,6809,72,9
,5,53,6811,72,10
,1,69,6813,40,1
,5,53,6815,72,10
,1,69,6817,40,1
,5,53,6819,72,9
,1,1,6821,24,0
,1,1,6823,32,1
,0,483,6825,32,2
,1,1,6827,32,1
,0,484,6829,16,0
,1,1,6831,24,2
,2,862,6833,48,0
,1,1,6835,32,1
,0,483,6837,32,2
,1,1,6839,32,1
,0,484,6841,16,0
,1,1,6843,32,0
,0,483,6845,32,2
,1,1,6847,64,3
,0,484,6849,16,0
,0,484,6851,16,0
,0,484,6853,16,0
,0,483,6855,32,2
,1,1,6857,48,2
,0,484,6859,16,0
,0,484,6861,16,0
,1,1,6863,24,0
,1,1,6865,32,1
,1,1,6867,24,0
,1,1,6869,32,1
,1,1,6871,24,0
,1,1,6873,32,1
,1,1,6875,24,0
,1,1,6877,32,1
,0,483,6879,32,2
,1,1,6881,32,1
,0,484,6883,16,0
,0,483,6885,32,1
,0,483,6887,32,1
,0,483,6889,32,1
,0,483,6891,32,1
,0,483,6893,32,1
,0,483,6895,32,1
,0,483,6897,32,1
,1,1,6899,24,0
,1,1,6901,32,1
,1,1,6903,24,0
,1,1,6905,32,1
,1,1,6907,24,0
,1,1,6909,32,1
,1,1,6911,24,0
,1,1,6913,32,1
,1,1,6915,24,0
,1,1,6917,32,1
,1,1,6919,24,0
,1,1,6921,32,1
,1,1,6923,24,0
,1,1,6925,32,1
,0,483,6927,32,1
,0,483,6929,32,2
,1,1,6931,32,1
,0,484,6933,16,0
,0,483,6935,32,1
,0,483,6937,32,1
,0,483,6939,32,1
,0,483,6941,32,1
,0,483,6943,32,1
,0,483,6945,32,1
,0,483,6947,32,2
,1,1,6949,32,1
,0,484,6951,16,0
,4,91,6953,160,7
,2,863,6955,40,2
,0,483,6957,32,1
,5,53,6959,72,14
,0,483,6961,32,1
,4,864,6963,120,4
,2,846,6965,25864,0
,2,864,6967,40,0
,0,87,6969,16,1
,4,865,6971,160,7
,2,865,6973,32,0
,4,866,6975,160,7
,2,866,6977,32,0
,4,128,6979,160,8
,2,128,6981,32,0
,4,51,6983,2784,182
,1,52,6985,88,6
,0,16,6987,64,5
,4,867,6989,160,7
,2,867,6991,40,0
,4,868,6993,160,8
,2,868,6995,40,0
,4,51,6997,320,14
,1,52,6999,48,1
,4,869,7001,160,7
,2,869,7003,40,0
,4,870,7005,160,7
,2,870,7007,40,0
,4,871,7009,160,7
,2,871,7011,40,0
,4,872,7013,160,7
,2,872,7015,40,0
,4,873,7017,160,7
,2,873,7019,40,0
,4,874,7021,160,7
,2,874,7023,32,0
,4,875,7025,160,7
,2,875,7027,40,0
,4,876,7029,160,7
,2,876,7031,40,0
,4,91,7033,160,7
,2,877,7035,40,2
,4,91,7037,160,7
,2,878,7039,40,2
,4,91,7041,160,7
,2,879,7043,40,2
,4,91,7045,160,8
,4,51,7047,704,32
,1,52,7049,56,2
,2,880,7051,40,2
,4,881,7053,160,8
,2,881,7055,32,0
,4,51,7057,288,8
,1,52,7059,72,3
,4,882,7061,160,7
,2,882,7063,32,0
,4,883,7065,160,7
,2,883,7067,32,0
,4,884,7069,160,7
,2,884,7071,32,0
,4,91,7073,160,7
,2,885,7075,40,0
,4,91,7077,160,7
,2,886,7079,40,2
,4,91,7081,160,8
,4,51,7083,1472,82
,1,52,7085,72,4
,2,887,7087,40,2
,4,888,7089,160,7
,2,888,7091,32,0
,4,91,7093,160,7
,2,889,7095,40,2
,4,91,7097,160,7
,2,890,7099,40,0
,4,91,7101,160,7
,2,891,7103,40,0
,4,91,7105,160,7
,2,892,7107,40,2
,4,91,7109,160,7
,2,893,7111,40,2
,4,91,7113,160,7
,2,894,7115,40,2
,4,91,7117,160,7
,2,895,7119,40,2
,4,91,7121,160,7
,2,896,7123,40,2
,4,91,7125,160,7
,2,897,7127,40,2
,4,91,7129,160,7
,2,898,7131,40,2
,4,91,7133,160,7
,2,899,7135,40,2
,4,91,7137,160,7
,2,900,7139,40,2
,4,91,7141,160,7
,2,901,7143,40,2
,4,91,7145,160,7
,2,902,7147,40,2
,4,91,7149,160,7
,2,903,7151,40,2
,4,91,7153,160,7
,2,904,7155,40,2
,4,91,7157,160,7
,2,905,7159,40,2
,4,91,7161,160,7
,2,906,7163,40,2
,4,91,7165,160,7
,2,907,7167,40,2
,4,91,7169,160,7
,2,908,7171,40,2
,4,91,7173,160,7
,2,909,7175,40,2
,4,91,7177,160,7
,2,910,7179,40,2
,4,91,7181,160,7
,2,911,7183,40,2
,4,91,7185,160,7
,2,912,7187,40,2
,4,91,7189,160,7
,2,913,7191,40,2
,4,91,7193,160,7
,2,914,7195,40,2
,4,91,7197,160,7
,2,915,7199,40,2
,4,91,7201,160,7
,2,916,7203,40,2
,4,91,7205,160,7
,2,917,7207,40,2
,4,91,7209,160,7
,2,918,7211,40,2
,4,91,7213,160,7
,2,919,7215,40,2
,4,91,7217,160,7
,2,920,7219,40,2
,4,91,7221,160,7
,2,921,7223,40,2
,4,91,7225,160,7
,2,922,7227,40,2
,4,91,7229,160,7
,2,923,7231,40,2
,4,91,7233,160,7
,2,924,7235,40,2
,4,91,7237,160,7
,2,925,7239,40,2
,0,483,7241,32,2
,1,1,7243,48,2
,0,484,7245,16,0
,0,484,7247,16,0
,1,52,7249,368,24
,2,926,7251,40,0
,2,927,7253,40,0
,2,928,7255,32,0
,4,91,7257,160,8
,4,51,7259,5600,368
,0,483,7261,32,1
,1,52,7263,56,2
,4,53,7265,160,8
,4,51,7267,256,9
,0,782,7269,128,5
,0,789,7271,24,2
,0,785,7273,40,2
,0,785,7275,40,2
,0,87,7277,16,1
,0,782,7279,128,2
,0,789,7281,24,2
,0,87,7283,16,1
,3,50,7285,24,108
,0,782,7287,128,2
,0,789,7289,24,2
,0,87,7291,16,1
,0,782,7293,128,2
,0,789,7295,24,2
,0,87,7297,16,1
,0,782,7299,128,2
,0,789,7301,24,2
,0,87,7303,16,1
,0,782,7305,128,2
,0,789,7307,24,2
,0,87,7309,16,1
,0,782,7311,128,2
,0,789,7313,24,2
,0,87,7315,16,1
,0,782,7317,128,2
,0,789,7319,24,2
,0,87,7321,16,1
,0,782,7323,128,2
,0,789,7325,24,2
,0,87,7327,16,1
,0,782,7329,128,2
,0,789,7331,24,2
,0,87,7333,16,1
,0,782,7335,128,2
,0,789,7337,24,2
,0,87,7339,16,1
,0,782,7341,128,2
,0,789,7343,24,2
,0,87,7345,16,1
,0,782,7347,128,2
,0,789,7349,24,2
,0,87,7351,16,1
,0,782,7353,128,2
,0,789,7355,24,2
,0,87,7357,16,1
,0,782,7359,128,2
,0,789,7361,24,2
,0,87,7363,16,1
,0,782,7365,128,2
,0,789,7367,24,2
,0,87,7369,16,1
,0,782,7371,128,2
,0,789,7373,24,2
,0,87,7375,16,1
,0,782,7377,128,2
,0,789,7379,24,2
,0,87,7381,16,1
,0,782,7383,128,2
,0,789,7385,24,2
,0,87,7387,16,1
,0,782,7389,128,2
,0,789,7391,24,2
,0,87,7393,16,1
,0,782,7395,128,2
,0,789,7397,24,2
,0,87,7399,16,1
,0,782,7401,128,2
,0,789,7403,24,2
,0,87,7405,16,1
,0,782,7407,128,2
,0,789,7409,24,2
,0,87,7411,16,1
,4,926,7413,160,7
,5,926,7415,72,10
,5,53,7417,72,8
,5,53,7419,72,8
,3,926,7421,24,28
,0,16,7423,64,4
,0,16,7425,64,5
,4,929,7427,160,7
,2,929,7429,40,0
,5,929,7431,72,8
,3,929,7433,24,3
,0,16,7435,64,3
,4,930,7437,160,7
,2,930,7439,40,0
,5,930,7441,72,8
,3,930,7443,24,3
,0,16,7445,64,3
,4,931,7447,160,7
,2,931,7449,40,0
,5,931,7451,72,8
,3,931,7453,24,3
,0,16,7455,64,3
,4,932,7457,160,7
,2,932,7459,40,0
,5,932,7461,72,8
,3,932,7463,24,3
,0,16,7465,64,3
,4,933,7467,160,7
,2,933,7469,32,0
,5,933,7471,72,8
,3,933,7473,24,3
,0,16,7475,64,3
,4,934,7477,160,7
,2,934,7479,40,0
,5,934,7481,72,8
,3,934,7483,24,3
,0,16,7485,64,3
,4,935,7487,160,7
,2,935,7489,40,0
,5,935,7491,72,8
,3,935,7493,24,3
,0,16,7495,64,3
,4,936,7497,160,7
,2,936,7499,40,0
,5,936,7501,72,8
,3,936,7503,24,3
,0,16,7505,64,3
,4,937,7507,160,7
,2,937,7509,40,0
,5,937,7511,72,8
,3,937,7513,24,3
,0,16,7515,64,3
,4,938,7517,160,7
,2,938,7519,40,0
,5,938,7521,72,8
,3,938,7523,24,3
,0,16,7525,64,3
,4,939,7527,160,7
,2,939,7529,40,0
,5,939,7531,72,8
,3,939,7533,24,3
,0,16,7535,64,3
,4,940,7537,160,7
,2,940,7539,32,0
,5,940,7541,72,8
,3,940,7543,24,3
,0,16,7545,64,3
,4,941,7547,160,7
,2,941,7549,40,0
,5,941,7551,72,8
,3,941,7553,24,3
,0,16,7555,64,3
,4,942,7557,160,7
,2,942,7559,40,0
,5,942,7561,72,8
,3,942,7563,24,3
,0,16,7565,64,3
,4,943,7567,160,7
,2,943,7569,40,0
,5,943,7571,72,8
,3,943,7573,24,3
,0,16,7575,64,3
,4,944,7577,160,7
,2,944,7579,40,0
,5,944,7581,72,8
,3,944,7583,24,3
,0,16,7585,64,3
,4,945,7587,160,7
,2,945,7589,40,0
,5,945,7591,72,8
,3,945,7593,24,3
,0,16,7595,64,3
,4,946,7597,160,7
,2,946,7599,40,0
,5,946,7601,72,8
,3,946,7603,24,3
,0,16,7605,64,3
,4,947,7607,160,7
,2,947,7609,40,0
,5,947,7611,72,8
,3,947,7613,24,3
,0,16,7615,64,3
,4,948,7617,160,7
,2,948,7619,40,0
,5,948,7621,72,8
,3,948,7623,24,3
,0,16,7625,64,3
,4,888,7627,160,7
,5,888,7629,72,8
,3,888,7631,24,3
,0,16,7633,64,3
,4,949,7635,160,7
,2,949,7637,32,0
,5,949,7639,72,8
,3,949,7641,24,3
,0,16,7643,64,3
,0,782,7645,128,2
,0,789,7647,24,2
,0,87,7649,16,1
,4,91,7651,160,7
,3,50,7653,24,3
,0,16,7655,64,3
,0,782,7657,128,2
,0,789,7659,24,2
,0,87,7661,16,1
,4,91,7663,160,7
,3,50,7665,24,3
,0,16,7667,64,3
,0,782,7669,128,2
,0,789,7671,24,2
,0,87,7673,16,1
,4,91,7675,160,7
,5,53,7677,72,8
,3,50,7679,24,3
,0,16,7681,64,3
,4,950,7683,120,4
,2,951,7685,10856,0
,2,950,7687,40,0
,0,87,7689,16,1
,4,952,7691,160,7
,2,952,7693,32,0
,4,953,7695,160,7
,2,953,7697,32,0
,4,954,7699,160,7
,2,954,7701,40,0
,4,955,7703,160,7
,2,955,7705,32,0
,4,756,7707,160,8
,2,756,7709,32,0
,4,51,7711,320,14
,1,52,7713,64,3
,4,956,7715,160,7
,2,956,7717,40,0
,4,957,7719,160,7
,2,957,7721,48,0
,4,958,7723,160,7
,2,958,7725,40,0
,4,959,7727,160,7
,2,959,7729,32,0
,4,960,7731,160,7
,2,960,7733,48,0
,4,961,7735,160,7
,2,961,7737,32,0
,4,962,7739,160,7
,2,962,7741,40,0
,4,963,7743,160,7
,2,963,7745,32,0
,4,964,7747,160,7
,2,964,7749,32,0
,4,965,7751,160,7
,2,965,7753,40,0
,4,966,7755,160,7
,2,966,7757,40,0
,4,967,7759,160,7
,2,967,7761,40,0
,4,968,7763,160,7
,2,968,7765,40,0
,4,91,7767,160,7
,2,969,7769,40,2
,4,91,7771,160,7
,2,970,7773,40,2
,4,91,7775,160,7
,2,971,7777,40,2
,0,483,7779,32,2
,1,1,7781,32,1
,0,484,7783,16,0
,1,52,7785,296,20
,2,972,7787,32,0
,2,973,7789,32,0
,4,91,7791,160,8
,4,51,7793,1920,103
,0,483,7795,32,1
,1,52,7797,56,2
,4,53,7799,160,8
,4,51,7801,256,9
,4,974,7803,120,4
,2,846,7805,15352,0
,2,974,7807,32,0
,0,87,7809,16,1
,1,90,7811,32,1
,1,1,7813,32,1
,1,90,7815,32,1
,1,1,7817,32,1
,1,90,7819,32,1
,1,1,7821,32,1
,1,90,7823,32,1
,1,1,7825,32,1
,1,90,7827,32,1
,1,1,7829,32,1
,1,90,7831,32,1
,1,1,7833,32,1
,1,90,7835,32,1
,1,1,7837,32,1
,1,90,7839,32,1
,1,1,7841,32,1
,1,90,7843,32,1
,1,1,7845,32,1
,1,90,7847,32,1
,1,1,7849,32,1
,1,90,7851,32,1
,1,1,7853,32,1
,1,90,7855,32,1
,1,1,7857,32,1
,1,90,7859,32,1
,1,1,7861,32,1
,1,1,7863,224,26
,1,1,7865,32,1
,2,975,7867,32,0
,1,1,7869,32,1
,2,976,7871,40,0
,1,1,7873,32,1
,2,977,7875,32,0
,1,1,7877,32,1
,2,978,7879,32,0
,1,1,7881,32,1
,2,979,7883,32,0
,1,1,7885,32,1
,2,980,7887,32,0
,1,1,7889,32,1
,2,981,7891,32,0
,1,1,7893,32,1
,2,982,7895,32,0
,1,1,7897,32,1
,2,983,7899,32,0
,1,1,7901,32,1
,2,984,7903,32,0
,1,1,7905,32,1
,2,985,7907,32,0
,1,1,7909,32,1
,2,986,7911,32,0
,1,1,7913,32,1
,1,1,7915,144,16
,2,987,7917,32,0
,2,988,7919,32,0
,2,989,7921,32,0
,2,990,7923,32,0
,2,991,7925,32,0
,1,90,7927,112,13
,1,1,7929,32,1
,4,882,7931,160,7
,4,992,7933,160,7
,2,992,7935,40,0
,4,993,7937,160,7
,2,993,7939,40,0
,4,994,7941,160,7
,2,994,7943,40,0
,4,995,7945,160,7
,2,995,7947,40,0
,4,996,7949,160,7
,2,996,7951,40,0
,4,997,7953,160,7
,2,997,7955,40,0
,4,998,7957,160,7
,2,998,7959,40,0
,4,999,7961,160,7
,2,999,7963,40,0
,4,1000,7965,160,7
,2,1000,7967,48,0
,4,133,7969,160,7
,4,1001,7971,160,7
,2,1001,7973,32,0
,4,1002,7975,160,7
,2,1002,7977,32,0
,4,1003,7979,160,7
,2,1003,7981,32,0
,4,1004,7983,160,7
,2,1004,7985,40,0
,4,1005,7987,160,7
,2,1005,7989,32,0
,4,1006,7991,160,7
,2,1006,7993,40,0
,4,1007,7995,160,7
,2,1007,7997,32,0
,4,74,7999,160,7
,4,91,8001,160,8
,4,51,8003,1696,58
,1,52,8005,152,10
,2,1008,8007,40,2
,4,91,8009,160,8
,4,51,8011,512,18
,1,52,8013,120,7
,2,1009,8015,40,2
,4,91,8017,160,7
,2,1010,8019,40,2
,4,91,8021,160,7
,2,1011,8023,40,0
,4,91,8025,160,7
,2,1012,8027,40,2
,4,91,8029,160,7
,2,1013,8031,40,2
,4,91,8033,160,7
,4,91,8035,160,7
,2,1014,8037,40,0
,4,91,8039,160,7
,4,91,8041,160,8
,4,51,8043,416,25
,1,52,8045,64,3
,2,1015,8047,40,2
,4,91,8049,160,7
,2,1016,8051,40,2
,0,483,8053,32,1
,1,52,8055,464,30
,2,1017,8057,40,0
,2,1018,8059,32,0
,2,1019,8061,32,0
,4,91,8063,160,8
,4,51,8065,3200,148
,0,483,8067,32,1
,1,52,8069,56,2
,4,53,8071,160,8
,4,51,8073,256,9
,1,1,8075,32,0
,1,1,8077,24,0
,1,1,8079,32,1
,1,1,8081,24,0
,1,1,8083,32,1
,1,1,8085,24,0
,1,1,8087,32,1
,1,1,8089,24,0
,1,1,8091,32,1
,0,483,8093,32,1
,1,1,8095,24,2
,2,1020,8097,48,0
,1,1,8099,32,1
,0,483,8101,32,1
,5,53,8103,72,30
,3,50,8105,24,19
,6,1021,8107,72,7
,5,53,8109,72,29
,5,882,8111,72,33
,5,992,8113,72,29
,5,993,8115,72,29
,5,994,8117,72,30
,5,995,8119,72,30
,5,996,8121,72,30
,5,997,8123,72,29
,5,998,8125,72,30
,5,999,8127,72,30
,5,1000,8129,72,29
,5,133,8131,72,29
,5,1001,8133,72,29
,5,1002,8135,72,29
,5,1003,8137,72,29
,5,1004,8139,72,29
,5,1005,8141,72,29
,3,120,8143,32,15
,5,1006,8145,72,30
,5,74,8147,72,29
,1,69,8149,32,1
,0,70,8151,232,27
,5,53,8153,72,29
,5,53,8155,72,29
,5,53,8157,72,29
,5,53,8159,72,29
,4,1022,8161,160,7
,2,1022,8163,40,0
,0,483,8165,32,1
,2,1023,8167,32,0
,2,1024,8169,32,0
,5,53,8171,72,29
,5,53,8173,72,30
,1,69,8175,40,3
,3,50,8177,56,6
,3,50,8179,32,3
,5,53,8181,72,29
,5,962,8183,72,20
,5,952,8185,72,18
,5,953,8187,72,18
,5,954,8189,72,18
,5,955,8191,72,19
,5,956,8193,72,18
,5,957,8195,72,18
,5,958,8197,72,18
,5,959,8199,72,18
,5,960,8201,72,19
,5,961,8203,72,18
,3,962,8205,24,4
,0,70,8207,144,16
,0,16,8209,64,4
,1,1,8211,80,4
,2,1025,8213,40,0
,2,1026,8215,32,0
,2,1027,8217,40,0
,1,1,8219,32,1
,0,483,8221,32,1
,2,1028,8223,32,0
,2,1029,8225,40,0
,0,483,8227,32,1
,0,483,8229,32,1
,0,483,8231,32,1
,0,483,8233,32,1
,0,483,8235,32,1
,0,483,8237,32,1
,5,963,8239,72,18
,5,964,8241,72,18
,5,965,8243,72,18
,5,966,8245,72,18
,5,967,8247,72,18
,5,968,8249,72,18
,5,53,8251,72,19
,1,69,8253,32,1
,5,53,8255,72,19
,1,69,8257,32,1
,5,53,8259,72,18
,5,53,8261,72,23
,3,50,8263,24,5
,5,865,8265,72,23
,5,866,8267,72,23
,3,926,8269,32,5
,5,867,8271,72,23
,3,926,8273,32,5
,5,868,8275,72,23
,5,869,8277,72,23
,5,870,8279,72,23
,5,871,8281,72,23
,5,872,8283,72,23
,5,873,8285,72,23
,5,874,8287,72,23
,5,875,8289,72,23
,5,876,8291,72,23
,0,70,8293,184,21
,5,53,8295,72,23
,5,53,8297,72,23
,5,53,8299,72,23
,5,881,8301,72,23
,5,882,8303,72,24
,1,69,8305,32,1
,5,883,8307,72,23
,5,884,8309,72,23
,5,53,8311,72,23
,5,53,8313,72,23
,5,53,8315,72,23
,5,888,8317,72,23
,5,53,8319,72,23
,5,53,8321,72,23
,5,53,8323,72,23
,5,53,8325,72,23
,5,53,8327,72,23
,5,53,8329,72,23
,5,53,8331,72,23
,5,53,8333,72,23
,5,53,8335,72,23
,5,53,8337,72,23
,5,53,8339,72,23
,5,53,8341,72,23
,5,53,8343,72,23
,5,53,8345,72,23
,5,53,8347,72,23
,5,53,8349,72,23
,5,53,8351,72,23
,5,53,8353,72,23
,5,53,8355,72,23
,5,53,8357,72,23
,5,53,8359,72,23
,5,53,8361,72,23
,5,53,8363,72,23
,5,53,8365,72,23
,5,53,8367,72,23
,5,53,8369,72,23
,5,53,8371,72,23
,5,53,8373,72,23
,5,53,8375,72,23
,5,53,8377,72,23
,5,53,8379,72,23
,5,53,8381,72,23
,5,53,8383,72,23
,5,53,8385,72,23
,5,53,8387,72,23
,5,53,8389,72,23
,5,53,8391,72,23
,4,91,8393,160,7
,2,1030,8395,40,2
,4,91,8397,160,8
,4,51,8399,320,15
,1,52,8401,64,3
,2,1031,8403,40,2
,4,91,8405,160,7
,2,1032,8407,40,2
,4,91,8409,160,7
,2,1033,8411,40,2
,4,91,8413,160,7
,2,1034,8415,40,2
,4,91,8417,160,7
,2,1035,8419,40,2
,0,483,8421,32,1
,4,91,8423,160,8
,4,51,8425,224,10
,1,52,8427,48,1
,0,483,8429,32,1
,0,483,8431,32,2
,1,1,8433,48,2
,0,484,8435,16,0
,0,484,8437,16,0
,0,483,8439,32,1
,0,483,8441,32,1
,0,483,8443,32,1
,5,53,8445,72,14
,4,91,8447,160,7
,2,1036,8449,40,2
,0,483,8451,32,1
,4,53,8453,160,8
,4,51,8455,320,11
,1,52,8457,64,3
,0,483,8459,32,1
,2,1037,8461,32,0
,1,1,8463,24,2
,2,1038,8465,48,0
,1,1,8467,32,1
,1,1,8469,24,0
,1,1,8471,32,1
,1,1,8473,32,0
,1,1,8475,32,0
,0,483,8477,32,1
,1,1,8479,24,2
,2,1039,8481,48,0
,1,1,8483,32,1
,0,483,8485,32,1
,1,1,8487,24,0
,0,483,8489,32,2
,1,1,8491,96,5
,0,484,8493,16,0
,0,484,8495,16,0
,0,484,8497,16,0
,0,484,8499,16,0
,0,484,8501,16,0
,0,483,8503,32,1
,0,483,8505,32,1
,1,1,8507,24,2
,2,1040,8509,48,0
,1,1,8511,32,1
,0,483,8513,32,1
,1,1,8515,32,1
,0,483,8517,32,1
,0,483,8519,32,2
,1,1,8521,32,1
,0,484,8523,16,0
,0,483,8525,32,1
,2,1041,8527,32,0
,1,1,8529,32,0
,4,1042,8531,160,8
,2,1042,8533,32,0
,4,51,8535,768,29
,1,52,8537,56,2
,4,1043,8539,160,7
,2,1043,8541,40,0
,4,1044,8543,160,8
,2,1044,8545,40,0
,4,51,8547,480,17
,1,52,8549,48,1
,4,1045,8551,160,8
,2,1045,8553,40,0
,4,51,8555,1376,53
,1,52,8557,72,4
,4,1046,8559,160,7
,2,1046,8561,48,0
,4,1047,8563,160,8
,2,1047,8565,32,0
,4,51,8567,640,30
,1,52,8569,64,3
,4,1048,8571,160,7
,2,1048,8573,40,0
,0,483,8575,32,1
,2,1049,8577,48,0
,2,1050,8579,40,0
,2,1051,8581,40,0
,2,1052,8583,32,0
,2,1053,8585,32,0
,2,1054,8587,32,0
,2,1055,8589,32,0
,2,1056,8591,32,0
,4,91,8593,160,8
,4,51,8595,512,25
,1,52,8597,48,1
,4,91,8599,160,8
,4,51,8601,448,17
,1,52,8603,48,1
,4,91,8605,160,7
,4,91,8607,160,7
,2,1057,8609,40,2
,0,483,8611,32,1
,2,1058,8613,32,0
,2,1059,8615,32,0
,2,1060,8617,32,0
,0,88,8619,24,2
,5,53,8621,72,9
,0,88,8623,24,2
,5,53,8625,72,9
,0,88,8627,24,2
,5,53,8629,72,10
,5,53,8631,72,9
,3,1061,8633,104,21
,3,1061,8635,104,21
,0,70,8637,72,6
,4,91,8639,160,7
,2,1062,8641,40,0
,4,91,8643,160,7
,2,1063,8645,40,0
,0,483,8647,32,1
,5,53,8649,72,14
,5,53,8651,72,14
,4,1064,8653,160,8
,2,1064,8655,32,0
,4,51,8657,352,16
,1,52,8659,56,2
,4,91,8661,160,8
,4,51,8663,928,47
,1,52,8665,136,10
,2,1065,8667,40,2
,4,91,8669,160,7
,2,1066,8671,40,2
,0,483,8673,32,1
,2,1067,8675,40,0
,2,1068,8677,40,0
,2,1069,8679,40,0
,5,53,8681,72,10
,3,50,8683,24,4
,5,1064,8685,72,10
,0,70,8687,80,8
,5,53,8689,72,10
,0,483,8691,32,2
,1,1,8693,48,2
,0,484,8695,16,0
,0,484,8697,16,0
,2,1070,8699,32,0
,2,1071,8701,32,0
,0,483,8703,32,1
,2,1072,8705,32,0
,2,1073,8707,40,0
,2,1074,8709,32,0
,1,1,8711,24,2
,2,1075,8713,48,0
,1,1,8715,32,1
,0,483,8717,32,1
,4,1076,8719,120,4
,2,846,8721,14376,0
,2,1076,8723,32,0
,0,87,8725,16,1
,4,1077,8727,160,8
,2,1077,8729,40,0
,4,51,8731,928,42
,1,52,8733,88,6
,4,53,8735,160,7
,2,1078,8737,40,0
,4,53,8739,160,7
,2,1079,8741,40,0
,4,53,8743,160,7
,2,1080,8745,40,2
,4,53,8747,160,7
,2,1081,8749,40,2
,4,53,8751,160,7
,2,1082,8753,40,0
,4,53,8755,160,7
,2,1083,8757,40,2
,4,91,8759,160,8
,4,51,8761,256,11
,1,52,8763,56,2
,4,91,8765,160,8
,4,51,8767,1248,58
,1,52,8769,88,6
,2,1080,8771,40,2
,4,91,8773,160,7
,2,1081,8775,40,2
,4,91,8777,160,7
,2,1082,8779,40,0
,4,91,8781,160,7
,2,1083,8783,40,2
,4,91,8785,160,8
,4,51,8787,448,21
,1,52,8789,80,5
,2,1084,8791,40,2
,4,91,8793,160,7
,2,1085,8795,40,2
,4,91,8797,160,8
,4,51,8799,256,10
,1,52,8801,56,2
,2,1086,8803,40,2
,4,91,8805,160,7
,4,91,8807,160,7
,4,53,8809,160,7
,2,1087,8811,40,2
,4,91,8813,160,8
,4,51,8815,192,7
,1,52,8817,56,2
,2,1087,8819,40,2
,0,483,8821,32,2
,1,1,8823,32,1
,0,484,8825,16,0
,1,52,8827,232,16
,2,1088,8829,40,0
,2,1089,8831,40,0
,2,1090,8833,40,0
,4,91,8835,160,8
,4,51,8837,2848,126
,0,483,8839,32,1
,1,52,8841,56,2
,4,53,8843,160,8
,4,51,8845,256,9
,5,53,8847,72,14
,3,50,8849,24,15
,5,1077,8851,72,14
,5,53,8853,72,14
,6,1091,8855,72,7
,0,70,8857,112,9
,5,53,8859,72,14
,5,53,8861,72,14
,5,53,8863,72,15
,1,69,8865,32,1
,5,53,8867,72,14
,5,53,8869,72,14
,5,53,8871,72,14
,5,53,8873,72,14
,4,53,8875,160,8
,4,51,8877,224,8
,1,52,8879,56,2
,0,483,8881,32,2
,1,1,8883,48,2
,0,484,8885,16,0
,0,484,8887,16,0
,2,1092,8889,40,0
,2,1093,8891,40,0
,1,1,8893,24,2
,2,1094,8895,48,0
,1,1,8897,32,1
,1,1,8899,24,0
,1,1,8901,32,1
,0,483,8903,32,2
,1,1,8905,48,2
,0,484,8907,16,0
,0,484,8909,16,0
,0,483,8911,32,1
,0,483,8913,32,1
,2,1095,8915,32,0
,2,1096,8917,40,0
,2,1097,8919,32,0
,2,1098,8921,32,0
,4,1099,8923,120,4
,2,846,8925,14936,0
,2,1099,8927,40,0
,0,87,8929,16,1
,1,1,8931,32,0
,1,1,8933,32,0
,4,74,8935,160,8
,4,51,8937,288,15
,1,52,8939,64,3
,4,834,8941,160,8
,4,51,8943,480,30
,1,52,8945,64,3
,0,16,8947,64,5
,4,1100,8949,160,8
,2,1100,8951,32,0
,4,51,8953,384,16
,1,52,8955,64,3
,4,1101,8957,160,8
,2,1101,8959,40,0
,4,51,8961,864,46
,1,52,8963,88,6
,4,1102,8965,160,8
,2,1102,8967,40,0
,4,51,8969,576,23
,1,52,8971,80,5
,4,1103,8973,160,8
,2,1103,8975,32,0
,4,51,8977,416,20
,1,52,8979,72,4
,4,1104,8981,160,8
,2,1104,8983,40,0
,4,51,8985,544,20
,1,52,8987,88,6
,4,1105,8989,160,8
,2,1105,8991,32,0
,4,51,8993,288,12
,1,52,8995,56,2
,4,91,8997,160,8
,4,51,8999,192,7
,1,52,9001,48,1
,2,1106,9003,40,2
,4,53,9005,160,7
,2,1106,9007,40,2
,4,91,9009,160,8
,4,51,9011,1344,71
,1,52,9013,120,10
,2,1107,9015,40,2
,4,91,9017,160,8
,4,51,9019,1408,57
,1,52,9021,104,8
,2,1108,9023,40,2
,4,91,9025,160,8
,4,51,9027,2208,105
,1,52,9029,112,9
,2,1109,9031,40,2
,4,91,9033,160,8
,4,51,9035,1312,76
,1,52,9037,112,9
,2,1110,9039,40,0
,4,91,9041,160,8
,4,51,9043,704,44
,1,52,9045,104,8
,2,1111,9047,40,2
,4,91,9049,160,8
,4,51,9051,768,51
,1,52,9053,64,3
,2,1112,9055,40,0
,4,91,9057,160,8
,4,51,9059,416,15
,1,52,9061,56,2
,2,1113,9063,40,2
,4,91,9065,160,8
,4,51,9067,3168,170
,1,52,9069,136,11
,2,1114,9071,40,2
,4,91,9073,160,8
,4,51,9075,352,17
,1,52,9077,72,4
,2,1115,9079,40,2
,4,91,9081,160,7
,2,1116,9083,40,2
,4,91,9085,160,8
,4,51,9087,320,18
,1,52,9089,48,1
,2,1117,9091,40,2
,4,91,9093,160,8
,4,51,9095,1088,75
,1,52,9097,80,5
,2,1118,9099,40,2
,4,91,9101,160,7
,2,1119,9103,40,2
,0,483,9105,32,2
,1,1,9107,48,2
,0,484,9109,16,0
,0,484,9111,16,0
,1,52,9113,368,24
,2,1120,9115,40,0
,2,1121,9117,32,0
,2,1122,9119,40,0
,2,1123,9121,40,0
,4,91,9123,160,8
,4,51,9125,3648,205
,0,483,9127,32,1
,1,52,9129,56,2
,4,53,9131,160,8
,4,51,9133,256,9
,5,53,9135,72,23
,5,74,9137,72,23
,5,834,9139,72,45
,3,120,9141,32,6
,5,1100,9143,72,23
,3,50,9145,24,4
,5,1101,9147,72,23
,5,1102,9149,72,23
,5,1103,9151,72,23
,5,1104,9153,72,23
,5,1105,9155,72,23
,0,70,9157,184,20
,5,53,9159,72,24
,1,69,9161,40,3
,3,120,9163,32,4
,3,50,9165,40,4
,5,53,9167,72,24
,1,69,9169,48,3
,6,1124,9171,72,7
,3,120,9173,32,2
,5,53,9175,72,24
,1,69,9177,96,2
,3,120,9179,32,3
,5,53,9181,72,23
,5,53,9183,72,23
,5,53,9185,72,23
,5,53,9187,72,23
,5,53,9189,72,24
,1,69,9191,56,4
,6,1125,9193,72,7
,3,50,9195,32,3
,3,120,9197,32,3
,5,53,9199,72,23
,5,53,9201,72,23
,5,53,9203,72,23
,5,53,9205,72,24
,1,69,9207,32,2
,3,120,9209,32,3
,5,53,9211,72,23
,1,1,9213,24,0
,1,1,9215,32,1
,0,483,9217,32,1
,2,1126,9219,32,0
,2,1127,9221,32,0
,2,1128,9223,32,0
,0,483,9225,32,1
,1,1,9227,24,0
,0,483,9229,32,2
,1,1,9231,80,4
,0,484,9233,16,0
,0,484,9235,16,0
,0,484,9237,16,0
,0,484,9239,16,0
,2,1129,9241,32,0
,2,1130,9243,32,0
,2,1131,9245,32,0
,2,1132,9247,32,0
,2,1133,9249,40,0
,2,1134,9251,40,0
,2,1135,9253,40,0
,0,483,9255,32,2
,1,1,9257,48,2
,0,484,9259,16,0
,0,484,9261,16,0
,2,1136,9263,40,0
,2,1137,9265,32,0
,1,1,9267,32,0
,1,1,9269,32,1
,1,1,9271,32,1
,1,1,9273,32,1
,1,1,9275,32,0
,1,1,9277,32,0
,1,1,9279,32,1
,1,1,9281,24,2
,1,1,9283,32,1
,1,1,9285,32,0
,1,1,9287,32,1
,1,1,9289,24,0
,1,1,9291,32,1
,1,1,9293,32,0
,1,1,9295,32,1
,0,483,9297,32,2
,1,1,9299,32,1
,0,484,9301,16,0
,2,1138,9303,32,0
,2,1139,9305,40,0
,2,1140,9307,32,0
,2,1141,9309,40,0
,1,1,9311,24,2
,2,1142,9313,56,0
,1,1,9315,32,1
,0,483,9317,32,1
,1,1,9319,32,1
,0,483,9321,32,2
,1,1,9323,64,3
,0,484,9325,16,0
,0,484,9327,16,0
,0,484,9329,16,0
,0,483,9331,32,1
,0,483,9333,32,1
,0,483,9335,32,1
,1,90,9337,24,2
,1,1,9339,32,1
,1,1,9341,48,2
,0,483,9343,32,2
,1,1,9345,80,4
,0,484,9347,16,0
,0,484,9349,16,0
,0,484,9351,16,0
,0,484,9353,16,0
,2,1143,9355,32,0
,2,1144,9357,40,0
,2,1145,9359,32,0
,2,1146,9361,32,0
,2,1147,9363,32,0
,1,1,9365,24,2
,2,1148,9367,40,0
,1,1,9369,32,1
,0,483,9371,32,1
,1,1,9373,24,2
,2,1149,9375,48,0
,1,1,9377,32,1
,0,483,9379,32,1
,0,483,9381,32,1
,0,483,9383,32,1
,0,483,9385,32,2
,1,1,9387,32,1
,0,484,9389,16,0
,2,1150,9391,40,0
,2,1151,9393,32,0
,2,1152,9395,32,0
,4,1153,9397,120,4
,2,846,9399,45376,0
,2,1153,9401,32,0
,0,87,9403,16,1
,1,1,9405,48,2
,4,1154,9407,160,7
,2,1154,9409,32,0
,4,1155,9411,160,7
,2,1155,9413,40,0
,4,1156,9415,160,7
,2,1156,9417,40,0
,4,1157,9419,160,8
,2,1157,9421,40,0
,4,51,9423,352,20
,1,52,9425,56,2
,4,1158,9427,160,8
,2,1158,9429,40,0
,4,51,9431,608,29
,1,52,9433,96,5
,4,1159,9435,160,8
,2,1159,9437,40,0
,4,51,9439,1664,79
,1,52,9441,56,2
,4,1160,9443,160,8
,2,1160,9445,32,0
,4,51,9447,448,19
,1,52,9449,64,3
,4,1161,9451,160,7
,2,1161,9453,56,0
,4,1162,9455,160,7
,2,1162,9457,40,0
,4,1163,9459,160,7
,2,1163,9461,32,0
,4,797,9463,160,7
,4,1164,9465,160,7
,2,1164,9467,40,0
,4,1165,9469,160,7
,2,1165,9471,40,0
,4,1166,9473,160,7
,2,1166,9475,40,0
,4,1167,9477,160,7
,2,1167,9479,40,0
,4,1168,9481,160,7
,2,1168,9483,40,0
,4,1061,9485,160,7
,2,1061,9487,40,0
,4,1169,9489,160,7
,2,1169,9491,40,0
,4,91,9493,160,8
,4,51,9495,288,13
,1,52,9497,56,2
,2,1170,9499,40,2
,4,91,9501,160,8
,4,51,9503,256,11
,1,52,9505,48,1
,2,1171,9507,40,2
,4,91,9509,160,7
,2,1172,9511,40,2
,4,91,9513,160,7
,2,1173,9515,40,2
,4,91,9517,160,7
,2,1174,9519,40,2
,4,91,9521,160,8
,4,51,9523,256,11
,1,52,9525,48,1
,2,1175,9527,40,2
,4,91,9529,160,7
,2,1176,9531,40,2
,4,91,9533,160,7
,2,1177,9535,40,2
,4,91,9537,160,7
,2,1178,9539,40,0
,4,91,9541,160,7
,2,1179,9543,40,2
,4,91,9545,160,7
,2,1180,9547,40,0
,4,91,9549,160,8
,4,51,9551,2400,94
,1,52,9553,144,13
,2,1181,9555,40,2
,4,91,9557,160,7
,2,1182,9559,32,0
,4,91,9561,160,8
,4,51,9563,224,9
,1,52,9565,56,2
,2,1183,9567,40,0
,4,91,9569,160,7
,2,1184,9571,32,0
,4,91,9573,160,8
,4,51,9575,416,17
,1,52,9577,72,4
,2,1185,9579,40,0
,4,91,9581,160,7
,2,1186,9583,32,0
,4,91,9585,160,8
,4,51,9587,1280,43
,1,52,9589,208,16
,2,1187,9591,40,0
,4,91,9593,160,7
,2,1188,9595,32,0
,4,91,9597,160,7
,2,1189,9599,40,0
,4,91,9601,160,7
,2,1190,9603,40,0
,4,91,9605,160,7
,2,1191,9607,40,2
,4,91,9609,160,7
,2,1192,9611,40,0
,4,91,9613,160,7
,2,1193,9615,40,2
,4,91,9617,160,7
,2,1194,9619,40,0
,4,91,9621,160,7
,2,1195,9623,40,2
,4,91,9625,160,7
,2,1196,9627,32,0
,4,91,9629,160,7
,2,1197,9631,40,0
,4,91,9633,160,7
,2,1198,9635,40,0
,4,91,9637,160,7
,2,1199,9639,40,2
,4,91,9641,160,7
,2,1200,9643,32,0
,4,91,9645,160,7
,2,1201,9647,40,0
,4,91,9649,160,7
,2,1202,9651,32,0
,4,91,9653,160,7
,2,1203,9655,40,0
,4,91,9657,160,7
,2,1204,9659,40,0
,4,91,9661,160,7
,2,1205,9663,40,2
,4,91,9665,160,7
,2,1206,9667,32,0
,4,91,9669,160,7
,2,1207,9671,32,0
,4,91,9673,160,7
,2,1208,9675,32,0
,4,91,9677,160,8
,4,51,9679,224,9
,1,52,9681,56,2
,2,1209,9683,40,0
,4,91,9685,160,8
,4,51,9687,288,13
,1,52,9689,56,2
,2,1210,9691,40,0
,4,91,9693,160,8
,4,51,9695,288,13
,1,52,9697,56,2
,2,1211,9699,40,0
,4,91,9701,160,7
,2,1212,9703,40,0
,4,91,9705,160,7
,2,1213,9707,40,2
,4,91,9709,160,7
,2,1214,9711,40,0
,4,91,9713,160,7
,2,1215,9715,40,2
,4,91,9717,160,7
,2,1216,9719,32,0
,4,91,9721,160,7
,2,1217,9723,40,0
,4,91,9725,160,7
,2,1218,9727,40,0
,4,91,9729,160,7
,2,1219,9731,40,2
,4,91,9733,160,7
,2,1220,9735,40,0
,4,91,9737,160,7
,2,1221,9739,40,2
,4,91,9741,160,7
,2,1222,9743,40,0
,4,91,9745,160,7
,2,1223,9747,40,2
,4,91,9749,160,7
,2,1224,9751,32,0
,4,91,9753,160,7
,2,1225,9755,40,0
,4,91,9757,160,7
,2,1226,9759,40,0
,4,91,9761,160,7
,2,1227,9763,40,2
,4,91,9765,160,7
,2,1228,9767,40,0
,4,91,9769,160,7
,2,1229,9771,40,2
,4,91,9773,160,7
,2,1230,9775,32,0
,4,91,9777,160,7
,2,1231,9779,40,0
,4,91,9781,160,7
,2,1232,9783,40,0
,4,91,9785,160,7
,2,1233,9787,40,2
,4,91,9789,160,7
,2,1234,9791,40,0
,4,91,9793,160,7
,2,1235,9795,40,2
,4,91,9797,160,7
,2,1236,9799,40,0
,4,91,9801,160,7
,2,1237,9803,40,2
,4,91,9805,160,7
,2,1238,9807,40,2
,4,91,9809,160,7
,2,1239,9811,40,2
,4,91,9813,160,7
,2,1240,9815,40,2
,4,91,9817,160,7
,2,1241,9819,40,2
,4,91,9821,160,7
,2,1242,9823,32,0
,4,91,9825,160,7
,2,1243,9827,40,2
,4,91,9829,160,7
,2,1244,9831,40,2
,4,91,9833,160,7
,2,1245,9835,40,0
,4,91,9837,160,7
,2,1246,9839,40,2
,4,1247,9841,160,8
,2,1247,9843,40,0
,4,51,9845,2432,109
,1,52,9847,240,18
,4,1248,9849,160,7
,2,1248,9851,32,0
,4,91,9853,160,7
,2,1249,9855,40,2
,4,91,9857,160,7
,2,1250,9859,40,2
,4,91,9861,160,7
,2,1251,9863,40,2
,4,91,9865,160,7
,2,1252,9867,40,2
,4,91,9869,160,7
,2,1253,9871,40,2
,4,91,9873,160,7
,2,1254,9875,40,2
,4,91,9877,160,7
,2,1255,9879,40,2
,4,91,9881,160,7
,2,1256,9883,40,2
,4,91,9885,160,7
,2,1257,9887,40,2
,4,91,9889,160,7
,2,1258,9891,40,2
,4,91,9893,160,7
,2,1259,9895,40,2
,0,483,9897,32,2
,1,1,9899,80,4
,0,484,9901,16,0
,0,484,9903,16,0
,0,484,9905,16,0
,0,484,9907,16,0
,1,52,9909,792,53
,2,1260,9911,40,0
,2,1261,9913,32,0
,2,1262,9915,40,0
,2,1263,9917,40,0
,2,1264,9919,40,0
,2,1265,9921,40,0
,2,1266,9923,32,0
,2,1267,9925,40,0
,2,1268,9927,32,0
,2,1269,9929,32,0
,2,1270,9931,32,0
,2,1271,9933,40,0
,2,1272,9935,32,0
,2,1273,9937,32,0
,2,1274,9939,32,0
,2,1275,9941,32,0
,2,1276,9943,32,0
,2,1277,9945,32,0
,2,1278,9947,32,0
,2,1279,9949,32,0
,2,1280,9951,32,0
,2,1281,9953,40,0
,2,1282,9955,40,0
,2,1283,9957,40,0
,4,91,9959,160,8
,4,51,9961,12928,695
,0,483,9963,32,1
,1,52,9965,56,2
,4,53,9967,160,8
,4,51,9969,256,9
,0,782,9971,128,1
,4,91,9973,160,7
,5,53,9975,72,8
,3,50,9977,24,11
,0,16,9979,64,5
,0,782,9981,128,2
,0,789,9983,24,2
,0,87,9985,16,1
,4,91,9987,160,7
,5,53,9989,72,8
,3,50,9991,24,3
,0,16,9993,64,3
,0,782,9995,128,2
,0,789,9997,24,2
,0,87,9999,16,1
,4,91,10001,160,7
,5,53,10003,72,8
,3,50,10005,24,3
,0,16,10007,64,3
,0,782,10009,128,2
,0,789,10011,24,2
,0,87,10013,16,1
,4,91,10015,160,7
,5,53,10017,72,8
,3,50,10019,24,3
,0,16,10021,64,3
,0,782,10023,128,2
,0,789,10025,24,2
,0,87,10027,16,1
,4,91,10029,160,7
,5,53,10031,72,8
,3,50,10033,24,3
,0,16,10035,64,3
,0,782,10037,128,2
,0,789,10039,24,2
,0,87,10041,16,1
,4,91,10043,160,7
,5,53,10045,72,8
,3,50,10047,24,3
,0,16,10049,64,3
,0,782,10051,128,2
,0,789,10053,24,2
,0,87,10055,16,1
,4,91,10057,160,7
,5,53,10059,72,8
,3,50,10061,24,3
,0,16,10063,64,3
,0,782,10065,128,2
,0,789,10067,24,2
,0,87,10069,16,1
,4,91,10071,160,7
,5,53,10073,72,8
,3,50,10075,24,3
,0,16,10077,64,3
,0,782,10079,128,2
,0,789,10081,24,2
,0,87,10083,16,1
,4,91,10085,160,7
,5,53,10087,72,8
,3,50,10089,24,3
,0,16,10091,64,3
,0,782,10093,128,2
,0,789,10095,24,2
,0,87,10097,16,1
,4,91,10099,160,7
,5,53,10101,72,8
,3,50,10103,24,3
,0,16,10105,64,3
,0,782,10107,128,2
,0,789,10109,24,2
,0,87,10111,16,1
,4,91,10113,160,7
,5,53,10115,72,8
,3,50,10117,24,3
,0,16,10119,64,3
,0,782,10121,128,2
,0,789,10123,24,2
,0,87,10125,16,1
,4,91,10127,160,7
,5,53,10129,72,8
,3,50,10131,24,3
,0,16,10133,64,3
,0,782,10135,128,2
,0,789,10137,24,2
,0,87,10139,16,1
,4,91,10141,160,7
,5,53,10143,72,8
,3,50,10145,24,3
,0,16,10147,64,3
,0,782,10149,128,2
,0,789,10151,24,2
,0,87,10153,16,1
,4,91,10155,160,7
,5,53,10157,72,8
,3,50,10159,24,3
,0,16,10161,64,3
,0,782,10163,128,2
,0,789,10165,24,2
,0,87,10167,16,1
,4,91,10169,160,7
,5,53,10171,72,8
,3,50,10173,24,3
,0,16,10175,64,3
,0,782,10177,128,2
,0,789,10179,24,2
,0,87,10181,16,1
,4,91,10183,160,7
,5,53,10185,72,8
,3,50,10187,24,3
,0,16,10189,64,3
,0,782,10191,128,2
,0,789,10193,24,2
,0,87,10195,16,1
,4,91,10197,160,7
,5,53,10199,72,8
,3,50,10201,24,3
,0,16,10203,64,3
,0,782,10205,128,2
,0,789,10207,24,2
,0,87,10209,16,1
,4,91,10211,160,7
,5,53,10213,72,8
,3,50,10215,24,3
,0,16,10217,64,3
,0,782,10219,128,2
,0,789,10221,24,2
,0,87,10223,16,1
,4,91,10225,160,7
,5,53,10227,72,8
,3,50,10229,24,3
,0,16,10231,64,3
,0,782,10233,128,2
,0,789,10235,24,2
,0,87,10237,16,1
,4,91,10239,160,7
,5,53,10241,72,8
,3,50,10243,24,3
,0,16,10245,64,3
,0,782,10247,128,2
,0,789,10249,24,2
,0,87,10251,16,1
,4,91,10253,160,7
,5,53,10255,72,8
,3,50,10257,24,3
,0,16,10259,64,3
,0,782,10261,128,2
,0,789,10263,24,2
,0,87,10265,16,1
,4,91,10267,160,7
,5,53,10269,72,8
,3,50,10271,24,3
,0,16,10273,64,3
,0,782,10275,128,2
,0,789,10277,24,2
,0,87,10279,16,1
,4,91,10281,160,7
,5,53,10283,72,8
,3,50,10285,24,3
,0,16,10287,64,3
,0,782,10289,128,2
,0,789,10291,24,2
,0,87,10293,16,1
,4,91,10295,160,7
,5,53,10297,72,8
,3,50,10299,24,3
,0,16,10301,64,3
,0,782,10303,128,2
,0,789,10305,24,2
,0,87,10307,16,1
,4,91,10309,160,7
,5,53,10311,72,8
,3,50,10313,24,3
,0,16,10315,64,3
,0,782,10317,128,5
,0,789,10319,24,2
,0,785,10321,40,2
,0,785,10323,40,2
,0,87,10325,16,1
,0,782,10327,128,2
,0,789,10329,24,2
,0,87,10331,16,1
,3,50,10333,24,8
,0,782,10335,128,2
,0,789,10337,24,2
,0,87,10339,16,1
,4,1165,10341,160,7
,5,1165,10343,72,8
,3,1165,10345,24,5
,0,16,10347,64,3
,4,1138,10349,160,7
,5,1138,10351,72,8
,3,1138,10353,24,3
,0,16,10355,64,3
,4,1284,10357,160,7
,2,1284,10359,32,0
,5,1284,10361,72,8
,3,1284,10363,24,3
,0,16,10365,64,3
,4,1285,10367,120,4
,2,846,10369,3664,0
,2,1285,10371,40,0
,0,87,10373,16,1
,4,1268,10375,160,8
,4,51,10377,224,9
,1,52,10379,48,1
,4,91,10381,160,7
,2,1286,10383,40,0
,0,483,10385,32,2
,1,1,10387,128,7
,0,484,10389,16,0
,0,484,10391,16,0
,0,484,10393,16,0
,0,484,10395,16,0
,0,484,10397,16,0
,0,484,10399,16,0
,0,484,10401,16,0
,1,52,10403,120,9
,2,1287,10405,32,0
,4,91,10407,160,8
,4,51,10409,928,56
,0,483,10411,32,1
,1,52,10413,56,2
,4,53,10415,160,8
,4,51,10417,256,9
,4,1288,10419,120,4
,2,846,10421,25648,0
,2,1288,10423,40,2
,0,87,10425,16,1
,4,1289,10427,160,8
,2,1289,10429,40,0
,4,51,10431,1376,90
,1,52,10433,72,4
,0,16,10435,64,5
,4,1269,10437,160,8
,4,51,10439,384,18
,1,52,10441,56,2
,4,1290,10443,160,7
,2,1290,10445,40,0
,4,1291,10447,160,7
,2,1291,10449,40,0
,4,1292,10451,160,7
,2,1292,10453,48,0
,4,1293,10455,160,7
,2,1293,10457,40,0
,4,1294,10459,160,7
,2,1294,10461,40,0
,4,1295,10463,160,7
,2,1295,10465,40,0
,4,1296,10467,160,7
,2,1296,10469,40,0
,4,1297,10471,160,7
,2,1297,10473,40,0
,4,1298,10475,160,7
,2,1298,10477,40,0
,4,1299,10479,160,7
,2,1299,10481,40,0
,4,1300,10483,160,7
,2,1300,10485,40,0
,4,1301,10487,160,7
,2,1301,10489,32,0
,4,1302,10491,160,7
,2,1302,10493,40,0
,4,1303,10495,160,7
,2,1303,10497,40,0
,4,1304,10499,160,7
,2,1304,10501,32,0
,4,1305,10503,160,7
,2,1305,10505,40,0
,4,91,10507,160,7
,2,1306,10509,40,2
,4,91,10511,160,7
,2,1307,10513,40,2
,4,91,10515,160,7
,2,1308,10517,40,2
,4,91,10519,160,7
,2,1309,10521,40,2
,4,91,10523,160,7
,2,1310,10525,40,2
,4,91,10527,160,7
,2,1311,10529,40,2
,4,91,10531,160,7
,2,1312,10533,40,2
,4,91,10535,160,8
,4,51,10537,800,48
,1,52,10539,80,5
,2,1313,10541,40,0
,4,91,10543,160,7
,2,1314,10545,40,2
,4,91,10547,160,7
,2,1315,10549,40,2
,4,91,10551,160,7
,2,1316,10553,40,2
,0,483,10555,32,2
,1,1,10557,64,3
,0,484,10559,16,0
,0,484,10561,16,0
,0,484,10563,16,0
,1,52,10565,464,30
,2,1317,10567,40,0
,2,1318,10569,32,0
,4,91,10571,160,8
,4,51,10573,2912,159
,0,483,10575,32,1
,1,52,10577,56,2
,4,53,10579,160,8
,4,51,10581,256,9
,5,53,10583,72,28
,5,831,10585,72,12
,5,1268,10587,72,16
,5,1289,10589,72,31
,5,1269,10591,72,32
,5,1290,10593,72,28
,5,1291,10595,72,28
,5,1292,10597,72,28
,5,1293,10599,72,28
,5,1294,10601,72,28
,5,1295,10603,72,28
,5,1296,10605,72,28
,5,1297,10607,72,28
,5,1298,10609,72,28
,5,1299,10611,72,28
,5,1300,10613,72,28
,5,1301,10615,72,28
,5,1302,10617,72,28
,5,1303,10619,72,28
,5,1304,10621,72,28
,5,1305,10623,72,28
,0,70,10625,232,25
,5,53,10627,72,28
,5,53,10629,72,28
,5,53,10631,72,28
,5,53,10633,72,28
,5,53,10635,72,29
,1,69,10637,40,1
,5,53,10639,72,28
,5,53,10641,72,28
,5,53,10643,72,28
,5,53,10645,72,28
,5,53,10647,72,29
,1,69,10649,32,1
,4,1319,10651,120,4
,2,846,10653,10680,0
,2,1319,10655,40,2
,0,87,10657,16,1
,4,1320,10659,160,8
,2,1320,10661,32,0
,1,1,10663,88,3
,4,1321,10665,160,8
,2,1321,10667,40,0
,4,51,10669,1152,68
,1,52,10671,96,6
,0,16,10673,64,5
,4,1270,10675,160,8
,4,51,10677,448,21
,1,52,10679,56,2
,4,1322,10681,160,7
,2,1322,10683,40,0
,4,1323,10685,160,8
,2,1323,10687,40,0
,4,51,10689,736,35
,1,52,10691,120,8
,4,1324,10693,160,8
,2,1324,10695,40,0
,4,51,10697,416,17
,1,52,10699,72,4
,4,1325,10701,160,8
,2,1325,10703,40,0
,4,51,10705,768,44
,1,52,10707,104,8
,4,1326,10709,160,8
,2,1326,10711,32,0
,4,51,10713,384,21
,1,52,10715,96,7
,4,1327,10717,160,7
,2,1327,10719,40,0
,4,1328,10721,160,8
,2,1328,10723,48,0
,4,51,10725,352,20
,1,52,10727,56,2
,4,1329,10729,160,8
,2,1329,10731,32,0
,4,51,10733,1024,45
,1,52,10735,136,8
,4,1330,10737,160,8
,2,1330,10739,40,0
,4,51,10741,384,15
,1,52,10743,80,5
,4,1331,10745,160,8
,2,1331,10747,40,0
,4,51,10749,352,18
,1,52,10751,64,3
,4,1332,10753,160,7
,2,1332,10755,40,0
,4,1333,10757,160,8
,2,1333,10759,40,0
,4,51,10761,448,21
,1,52,10763,64,3
,4,1334,10765,160,7
,2,1334,10767,40,0
,4,1335,10769,160,7
,2,1335,10771,40,0
,4,91,10773,160,7
,2,1336,10775,40,2
,4,91,10777,160,8
,4,51,10779,736,30
,1,52,10781,88,6
,2,1337,10783,40,2
,4,91,10785,160,7
,2,1338,10787,40,2
,4,91,10789,160,7
,2,1339,10791,40,0
,0,483,10793,32,2
,1,1,10795,64,3
,0,484,10797,16,0
,0,484,10799,16,0
,0,484,10801,16,0
,1,52,10803,392,26
,4,91,10805,160,8
,4,51,10807,1920,99
,0,483,10809,32,1
,1,52,10811,56,2
,4,53,10813,160,8
,4,51,10815,256,9
,5,53,10817,72,24
,5,1320,10819,72,24
,5,1321,10821,72,27
,5,1270,10823,72,27
,5,1322,10825,72,24
,5,1323,10827,72,24
,5,1324,10829,72,24
,5,1325,10831,72,24
,5,1326,10833,72,24
,5,1327,10835,72,24
,5,1328,10837,72,24
,5,1329,10839,72,24
,5,1330,10841,72,24
,5,1331,10843,72,24
,5,1332,10845,72,24
,5,1333,10847,72,24
,5,1334,10849,72,24
,5,1335,10851,72,24
,0,70,10853,192,22
,5,53,10855,72,24
,5,53,10857,72,24
,5,53,10859,72,24
,4,1340,10861,120,4
,2,846,10863,2560,0
,2,1340,10865,40,2
,0,87,10867,16,1
,4,1341,10869,160,8
,2,1341,10871,32,0
,4,51,10873,736,37
,1,52,10875,56,2
,4,1342,10877,160,7
,2,1342,10879,32,0
,4,53,10881,160,8
,4,51,10883,320,17
,1,52,10885,56,2
,2,1343,10887,32,0
,0,483,10889,32,2
,1,1,10891,64,3
,0,484,10893,16,0
,0,484,10895,16,0
,0,484,10897,16,0
,1,52,10899,160,11
,4,91,10901,160,8
,4,51,10903,768,39
,0,483,10905,32,1
,1,52,10907,56,2
,4,53,10909,160,8
,4,51,10911,256,9
,1,1,10913,24,2
,2,1344,10915,48,0
,1,1,10917,32,1
,1,1,10919,24,0
,1,1,10921,32,1
,0,483,10923,32,1
,0,483,10925,32,1
,2,1345,10927,32,0
,4,1346,10929,120,4
,2,846,10931,7400,0
,2,1346,10933,40,2
,0,87,10935,16,1
,4,1347,10937,160,7
,2,1347,10939,40,0
,4,1348,10941,160,7
,2,1348,10943,40,0
,4,1349,10945,160,7
,2,1349,10947,40,0
,4,1350,10949,160,7
,2,1350,10951,32,0
,4,91,10953,160,7
,2,1351,10955,40,2
,4,91,10957,160,7
,2,1352,10959,40,2
,4,91,10961,160,7
,2,1353,10963,40,2
,4,91,10965,160,7
,2,1354,10967,40,2
,0,483,10969,32,2
,1,1,10971,48,2
,0,484,10973,16,0
,0,484,10975,16,0
,1,52,10977,176,12
,4,91,10979,160,8
,4,51,10981,992,55
,0,483,10983,32,1
,1,52,10985,56,2
,4,53,10987,160,8
,4,51,10989,256,9
,5,53,10991,72,11
,5,1341,10993,72,13
,5,1347,10995,72,11
,5,1348,10997,72,11
,5,1349,10999,72,14
,5,1350,11001,72,11
,0,70,11003,88,9
,5,53,11005,72,11
,5,53,11007,72,11
,5,53,11009,72,11
,4,1355,11011,120,4
,2,846,11013,1736,0
,2,1355,11015,40,2
,0,87,11017,16,1
,4,1356,11019,160,7
,2,1356,11021,40,0
,4,91,11023,160,7
,2,1357,11025,40,2
,0,483,11027,32,2
,1,1,11029,48,2
,0,484,11031,16,0
,0,484,11033,16,0
,1,52,11035,128,9
,4,91,11037,160,8
,4,51,11039,576,28
,0,483,11041,32,1
,1,52,11043,56,2
,4,53,11045,160,8
,4,51,11047,256,9
,5,53,11049,72,8
,5,1356,11051,72,11
,0,70,11053,64,6
,5,53,11055,72,7
,0,70,11057,56,5
,5,53,11059,72,38
,3,50,11061,24,29
,3,50,11063,24,5
,3,50,11065,24,79
,5,1154,11067,72,38
,5,1155,11069,72,38
,5,1156,11071,72,38
,5,1157,11073,72,38
,5,1158,11075,72,38
,5,1159,11077,72,38
,5,1160,11079,72,38
,5,1161,11081,72,39
,5,1162,11083,72,38
,5,1163,11085,72,38
,5,797,11087,72,38
,5,1164,11089,72,41
,5,1165,11091,72,41
,3,50,11093,24,2
,5,1166,11095,72,38
,6,1358,11097,72,7
,6,1359,11099,72,7
,5,1167,11101,72,38
,5,1168,11103,72,42
,5,1061,11105,72,42
,0,70,11107,376,33
,5,53,11109,72,38
,5,53,11111,72,38
,5,53,11113,72,38
,5,53,11115,72,38
,5,53,11117,72,38
,5,53,11119,72,38
,5,53,11121,72,38
,5,53,11123,72,38
,5,53,11125,72,38
,5,53,11127,72,39
,1,69,11129,48,1
,5,53,11131,72,39
,1,69,11133,48,2
,3,50,11135,40,4
,1,1,11137,24,2
,2,1360,11139,48,0
,1,1,11141,32,1
,0,483,11143,32,2
,1,1,11145,32,1
,0,484,11147,16,0
,5,53,11149,72,38
,5,53,11151,72,38
,5,53,11153,72,38
,5,53,11155,72,38
,5,53,11157,72,38
,5,53,11159,72,39
,1,69,11161,32,1
,5,53,11163,72,38
,5,53,11165,72,38
,5,53,11167,72,38
,5,53,11169,72,38
,5,53,11171,72,38
,5,53,11173,72,38
,5,53,11175,72,38
,5,53,11177,72,38
,5,53,11179,72,38
,5,53,11181,72,38
,5,53,11183,72,38
,5,53,11185,72,38
,5,53,11187,72,38
,5,53,11189,72,38
,5,53,11191,72,38
,5,53,11193,72,38
,5,53,11195,72,38
,5,53,11197,72,38
,5,53,11199,72,38
,5,53,11201,72,38
,5,53,11203,72,38
,5,53,11205,72,38
,5,53,11207,72,38
,5,53,11209,72,38
,5,53,11211,72,38
,5,53,11213,72,38
,5,53,11215,72,38
,5,53,11217,72,38
,5,53,11219,72,38
,5,53,11221,72,38
,5,53,11223,72,38
,5,53,11225,72,38
,5,53,11227,72,38
,5,53,11229,72,38
,5,53,11231,72,38
,5,53,11233,72,38
,5,53,11235,72,38
,5,53,11237,72,38
,5,53,11239,72,38
,5,53,11241,72,38
,5,53,11243,72,38
,5,53,11245,72,38
,5,53,11247,72,38
,5,53,11249,72,38
,5,53,11251,72,38
,5,53,11253,72,38
,5,53,11255,72,38
,5,53,11257,72,38
,5,53,11259,72,39
,1,69,11261,48,1
,5,53,11263,72,39
,1,69,11265,48,1
,5,53,11267,72,39
,1,69,11269,56,1
,5,53,11271,72,39
,1,69,11273,48,1
,5,53,11275,72,38
,5,53,11277,72,38
,5,53,11279,72,39
,1,69,11281,32,1
,5,53,11283,72,38
,5,53,11285,72,38
,5,53,11287,72,39
,1,69,11289,32,1
,5,53,11291,72,38
,5,1247,11293,72,39
,1,69,11295,40,3
,3,50,11297,24,2
,3,50,11299,24,2
,5,1248,11301,72,39
,1,69,11303,40,1
,5,53,11305,72,38
,5,53,11307,72,38
,5,53,11309,72,38
,5,53,11311,72,38
,5,53,11313,72,38
,5,53,11315,72,38
,5,53,11317,72,38
,5,53,11319,72,38
,5,53,11321,72,38
,5,53,11323,72,38
,5,53,11325,72,38
,1,1,11327,24,0
,0,483,11329,32,1
,0,483,11331,32,2
,1,1,11333,32,1
,0,484,11335,16,0
,4,53,11337,160,7
,0,483,11339,32,2
,1,1,11341,32,1
,0,484,11343,16,0
,2,1361,11345,32,0
,2,1362,11347,32,0
,0,483,11349,32,1
,0,483,11351,32,2
,1,1,11353,32,1
,0,484,11355,16,0
,0,483,11357,32,1
,0,483,11359,32,1
,0,483,11361,32,1
,2,1363,11363,32,0
,4,1138,11365,160,8
,4,51,11367,640,25
,1,52,11369,56,2
,0,483,11371,32,2
,1,1,11373,48,2
,0,484,11375,16,0
,0,484,11377,16,0
,2,1364,11379,32,0
,2,1365,11381,32,0
,2,1366,11383,40,0
,2,1367,11385,32,0
,2,1368,11387,40,0
,2,1369,11389,32,0
,2,1370,11391,40,0
,2,1371,11393,40,0
,2,1372,11395,32,0
,2,1373,11397,32,0
,2,1374,11399,32,0
,2,1375,11401,32,0
,0,483,11403,32,1
,1,1,11405,32,1
,2,1376,11407,48,0
,1,1,11409,32,1
,0,483,11411,32,1
,0,483,11413,32,1
,0,483,11415,32,2
,1,1,11417,32,1
,0,484,11419,16,0
,0,483,11421,32,1
,1,1,11423,32,0
,0,483,11425,32,1
,0,483,11427,32,2
,1,1,11429,48,2
,0,484,11431,16,0
,0,484,11433,16,0
,2,1377,11435,40,0
,0,483,11437,32,2
,1,1,11439,32,1
,0,484,11441,16,0
,2,1378,11443,32,0
,0,483,11445,32,2
,1,1,11447,32,1
,0,484,11449,16,0
,2,1379,11451,32,0
,2,1380,11453,32,0
,0,483,11455,32,1
,1,1,11457,24,2
,2,1381,11459,48,0
,1,1,11461,32,1
,0,483,11463,32,1
,1,1,11465,32,0
,0,483,11467,32,1
,2,1382,11469,32,0
,2,1383,11471,32,0
,2,1384,11473,32,0
,2,1385,11475,32,0
,1,1,11477,32,0
,1,1,11479,24,0
,1,1,11481,32,1
,1,1,11483,32,0
,0,483,11485,32,1
,2,1386,11487,32,0
,0,483,11489,32,1
,1,1,11491,24,2
,2,1387,11493,48,0
,1,1,11495,32,1
,0,483,11497,32,2
,1,1,11499,32,1
,0,484,11501,16,0
,0,483,11503,32,2
,1,1,11505,32,1
,0,484,11507,16,0
,0,483,11509,32,2
,1,1,11511,32,1
,0,484,11513,16,0
,2,1388,11515,32,0
,1,1,11517,48,3
,2,1389,11519,32,0
,2,1390,11521,32,0
,2,1391,11523,32,0
,1,1,11525,48,3
,1,1,11527,32,0
,1,1,11529,32,0
,0,483,11531,32,2
,1,1,11533,80,4
,0,484,11535,16,0
,0,484,11537,16,0
,0,484,11539,16,0
,0,484,11541,16,0
,2,1392,11543,32,0
,2,1393,11545,32,0
,2,1394,11547,32,0
,2,1395,11549,32,0
,2,1396,11551,32,0
,2,1397,11553,40,0
,0,483,11555,32,2
,1,1,11557,32,1
,0,484,11559,16,0
,0,483,11561,32,1
,1,1,11563,24,2
,2,1398,11565,56,0
,1,1,11567,32,1
,0,483,11569,32,1
,0,483,11571,32,2
,1,1,11573,64,3
,0,484,11575,16,0
,0,484,11577,16,0
,0,484,11579,16,0
,2,1399,11581,32,0
,2,1400,11583,32,0
,0,483,11585,32,2
,1,1,11587,32,1
,0,484,11589,16,0
,2,1401,11591,32,0
,0,483,11593,32,2
,1,1,11595,48,2
,0,484,11597,16,0
,0,484,11599,16,0
,0,483,11601,32,1
,0,483,11603,32,2
,1,1,11605,112,6
,0,484,11607,16,0
,0,484,11609,16,0
,0,484,11611,16,0
,0,484,11613,16,0
,0,484,11615,16,0
,0,484,11617,16,0
,2,1402,11619,32,0
,2,1403,11621,32,0
,2,1404,11623,32,0
,0,483,11625,32,1
,0,483,11627,32,2
,1,1,11629,32,1
,0,484,11631,16,0
,1,1,11633,32,0
,1,1,11635,32,1
,0,483,11637,32,2
,1,1,11639,48,2
,0,484,11641,16,0
,0,484,11643,16,0
,2,1405,11645,32,0
,2,1406,11647,32,0
,2,1407,11649,32,0
,0,483,11651,32,1
,0,483,11653,32,1
,0,483,11655,32,2
,1,1,11657,32,1
,0,484,11659,16,0
,2,1408,11661,32,0
,0,483,11663,32,1
,1,1,11665,24,2
,2,1409,11667,56,0
,1,1,11669,32,1
,0,483,11671,32,1
,1,1,11673,32,1
,1,1,11675,56,0
,1,1,11677,32,1
,4,856,11679,160,8
,4,51,11681,224,9
,1,52,11683,56,2
,4,53,11685,160,7
,2,1410,11687,40,2
,4,53,11689,160,7
,2,1411,11691,40,2
,4,53,11693,160,7
,2,1412,11695,40,2
,0,483,11697,32,2
,1,1,11699,112,6
,0,484,11701,16,0
,0,484,11703,16,0
,0,484,11705,16,0
,0,484,11707,16,0
,0,484,11709,16,0
,0,484,11711,16,0
,2,1413,11713,32,0
,2,1414,11715,32,0
,2,1415,11717,32,0
,2,1416,11719,40,0
,2,1417,11721,32,0
,2,1418,11723,32,0
,4,1419,11725,120,4
,2,1420,11727,384,0
,2,1419,11729,184,0
,0,87,11731,16,1
,1,1,11733,32,0
,4,91,11735,160,8
,4,51,11737,544,19
,1,52,11739,48,1
,4,91,11741,160,8
,4,51,11743,288,15
,1,52,11745,48,1
,0,483,11747,32,2
,1,1,11749,32,1
,0,484,11751,16,0
,1,52,11753,152,10
,2,1421,11755,32,0
,2,1422,11757,32,0
,2,1423,11759,32,0
,4,91,11761,160,8
,4,51,11763,640,26
,0,483,11765,32,1
,1,52,11767,56,2
,4,53,11769,160,8
,4,51,11771,256,9
,0,483,11773,32,1
,0,483,11775,32,2
,1,1,11777,48,2
,0,484,11779,16,0
,0,484,11781,16,0
,0,483,11783,32,2
,1,1,11785,32,1
,0,484,11787,16,0
,2,1424,11789,32,0
,0,483,11791,32,2
,1,1,11793,80,4
,0,484,11795,16,0
,0,484,11797,16,0
,0,484,11799,16,0
,0,484,11801,16,0
,2,1425,11803,32,0
,1,1,11805,32,0
,0,483,11807,32,2
,1,1,11809,32,1
,0,484,11811,16,0
,2,1426,11813,32,0
,2,1427,11815,32,0
,0,483,11817,32,1
,2,1428,11819,32,0
,2,1429,11821,32,0
,0,782,11823,128,2
,0,789,11825,24,2
,0,87,11827,16,1
,4,91,11829,160,7
,5,53,11831,72,8
,3,50,11833,24,3
,0,16,11835,64,3
,0,483,11837,32,1
,2,1430,11839,32,0
,4,1431,11841,120,4
,2,846,11843,11608,0
,2,1431,11845,40,0
,0,87,11847,16,1
,4,1432,11849,160,8
,2,1432,11851,32,0
,4,51,11853,672,38
,1,52,11855,72,4
,4,1433,11857,160,8
,2,1433,11859,40,0
,4,51,11861,1824,87
,1,52,11863,112,8
,4,1434,11865,160,7
,2,1434,11867,40,0
,4,1435,11869,160,7
,2,1435,11871,40,0
,4,53,11873,160,7
,4,91,11875,160,8
,4,51,11877,192,8
,1,52,11879,48,1
,4,91,11881,160,7
,2,1436,11883,40,2
,4,91,11885,160,7
,2,1437,11887,40,2
,4,91,11889,160,8
,4,51,11891,480,26
,1,52,11893,72,4
,2,1438,11895,40,2
,4,91,11897,160,7
,2,1439,11899,40,2
,4,91,11901,160,7
,2,1440,11903,40,2
,4,91,11905,160,8
,4,51,11907,1024,47
,1,52,11909,144,9
,2,1441,11911,40,2
,4,91,11913,160,7
,2,1442,11915,40,2
,4,91,11917,160,8
,4,51,11919,352,19
,1,52,11921,56,2
,2,1443,11923,32,0
,0,16,11925,64,5
,4,91,11927,160,7
,2,1444,11929,40,2
,4,91,11931,160,7
,2,1445,11933,40,0
,4,91,11935,160,7
,2,1446,11937,40,2
,4,91,11939,160,7
,2,1447,11941,40,2
,4,91,11943,160,7
,2,1448,11945,40,2
,4,91,11947,160,8
,4,51,11949,1984,96
,1,52,11951,96,7
,2,1449,11953,40,2
,0,483,11955,32,2
,1,1,11957,48,2
,0,484,11959,16,0
,0,484,11961,16,0
,1,52,11963,360,23
,2,1450,11965,32,0
,2,1451,11967,32,0
,2,1452,11969,40,0
,2,1453,11971,32,0
,2,1454,11973,32,0
,2,1455,11975,40,0
,2,1456,11977,40,0
,2,1457,11979,40,0
,4,91,11981,160,8
,4,51,11983,2816,135
,0,483,11985,32,1
,1,52,11987,56,2
,4,53,11989,160,8
,4,51,11991,256,9
,0,782,11993,128,5
,0,789,11995,24,2
,0,785,11997,40,2
,0,785,11999,40,2
,0,87,12001,16,1
,0,782,12003,128,2
,0,789,12005,24,2
,0,87,12007,16,1
,3,50,12009,24,26
,0,782,12011,128,2
,0,789,12013,24,2
,0,87,12015,16,1
,0,782,12017,128,2
,0,789,12019,24,2
,0,87,12021,16,1
,0,782,12023,128,2
,0,789,12025,24,2
,0,87,12027,16,1
,0,782,12029,128,2
,0,789,12031,24,2
,0,87,12033,16,1
,0,782,12035,128,2
,0,789,12037,24,2
,0,87,12039,16,1
,0,782,12041,128,2
,0,789,12043,24,2
,0,87,12045,16,1
,0,782,12047,128,2
,0,789,12049,24,2
,0,87,12051,16,1
,4,1450,12053,160,7
,5,1450,12055,72,8
,3,1450,12057,24,11
,0,16,12059,64,5
,4,1458,12061,160,7
,2,1458,12063,32,0
,5,1458,12065,72,8
,3,1458,12067,24,3
,0,16,12069,64,3
,4,1459,12071,160,7
,2,1459,12073,32,0
,5,1459,12075,72,8
,3,1459,12077,24,3
,0,16,12079,64,3
,4,1460,12081,160,7
,2,1460,12083,32,0
,5,1460,12085,72,8
,3,1460,12087,24,3
,0,16,12089,64,3
,4,1138,12091,160,7
,5,1138,12093,72,8
,3,1138,12095,24,3
,0,16,12097,64,3
,4,1284,12099,160,7
,5,1284,12101,72,8
,3,1284,12103,24,3
,0,16,12105,64,3
,4,1461,12107,160,7
,2,1461,12109,40,0
,5,1461,12111,72,8
,3,1461,12113,24,3
,0,16,12115,64,3
,4,1462,12117,160,7
,2,1462,12119,40,0
,5,1462,12121,72,8
,3,1462,12123,24,3
,0,16,12125,64,3
,4,1463,12127,160,7
,2,1463,12129,32,0
,5,1463,12131,72,8
,3,1463,12133,24,3
,0,16,12135,64,3
,4,1464,12137,120,4
,2,846,12139,2248,0
,2,1464,12141,40,0
,0,87,12143,16,1
,4,1465,12145,160,8
,2,1465,12147,32,0
,4,51,12149,256,11
,1,52,12151,56,2
,4,1466,12153,160,8
,2,1466,12155,32,0
,4,51,12157,288,13
,1,52,12159,56,2
,4,562,12161,160,7
,4,1467,12163,160,8
,2,1467,12165,32,0
,4,51,12167,448,30
,1,52,12169,56,2
,4,1468,12171,160,8
,2,1468,12173,32,0
,4,51,12175,352,22
,1,52,12177,64,3
,4,1469,12179,160,8
,2,1469,12181,32,0
,4,51,12183,256,11
,1,52,12185,56,2
,0,483,12187,32,1
,1,52,12189,144,12
,4,91,12191,160,8
,4,51,12193,512,33
,0,483,12195,32,1
,1,52,12197,56,2
,4,53,12199,160,8
,4,51,12201,256,9
,5,53,12203,72,22
,3,50,12205,24,12
,3,50,12207,24,8
,5,53,12209,72,22
,3,50,12211,24,5
,5,1432,12213,72,22
,5,1433,12215,72,22
,5,53,12217,72,24
,3,50,12219,24,5
,5,1434,12221,72,22
,5,1435,12223,72,22
,0,70,12225,184,18
,5,53,12227,72,22
,5,53,12229,72,22
,4,1,12231,2208,47
,5,53,12233,72,22
,5,53,12235,72,22
,5,53,12237,72,22
,5,53,12239,72,22
,5,53,12241,72,22
,5,53,12243,72,22
,5,53,12245,72,22
,0,483,12247,32,1
,2,1470,12249,32,0
,5,53,12251,72,23
,1,69,12253,32,1
,5,53,12255,72,22
,5,53,12257,72,23
,1,69,12259,32,1
,4,1415,12261,160,8
,4,51,12263,448,24
,1,52,12265,48,1
,0,483,12267,32,2
,1,1,12269,32,1
,0,484,12271,16,0
,2,1471,12273,32,0
,2,1472,12275,32,0
,0,483,12277,32,1
,2,1473,12279,32,0
,1,1,12281,24,2
,2,1474,12283,48,0
,1,1,12285,32,1
,1,1,12287,32,0
,0,483,12289,32,1
,0,483,12291,32,1
,0,483,12293,32,2
,1,1,12295,32,1
,0,484,12297,16,0
,2,1475,12299,32,0
,2,1476,12301,32,0
,0,483,12303,32,2
,1,1,12305,48,2
,0,484,12307,16,0
,0,484,12309,16,0
,0,483,12311,32,1
,0,483,12313,32,2
,1,1,12315,32,1
,0,484,12317,16,0
,0,483,12319,32,1
,0,483,12321,32,1
,1,1,12323,24,0
,0,483,12325,32,2
,1,1,12327,80,4
,0,484,12329,16,0
,0,484,12331,16,0
,0,484,12333,16,0
,0,484,12335,16,0
,2,1477,12337,40,0
,1,1,12339,24,0
,4,53,12341,160,7
,0,483,12343,32,2
,1,1,12345,112,6
,0,484,12347,16,0
,0,484,12349,16,0
,0,484,12351,16,0
,0,484,12353,16,0
,0,484,12355,16,0
,0,484,12357,16,0
,2,1478,12359,32,0
,2,1479,12361,32,0
,0,483,12363,32,1
,1,90,12365,271152,32815
,2,1480,12367,56,0
,2,1481,12369,56,0
,2,1482,12371,56,0
,2,1483,12373,56,0
,2,1484,12375,56,0
,2,1485,12377,56,0
,2,1486,12379,56,0
,2,1487,12381,56,0
,2,1488,12383,56,0
,2,1489,12385,56,0
,2,1490,12387,56,0
,2,1491,12389,56,0
,2,1492,12391,56,0
,2,1493,12393,56,0
,2,1494,12395,56,0
,2,1495,12397,56,0
,2,1496,12399,56,0
,2,1497,12401,56,0
,2,1498,12403,56,0
,2,1499,12405,56,0
,2,1500,12407,56,0
,2,1501,12409,56,0
,2,1502,12411,56,0
,2,1503,12413,56,0
,2,1504,12415,56,0
,2,1505,12417,56,0
,2,1506,12419,56,0
,2,1507,12421,56,0
,2,1508,12423,56,0
,2,1509,12425,56,0
,2,1510,12427,56,0
,2,1511,12429,56,0
,2,1512,12431,56,0
,2,1513,12433,56,0
,2,1514,12435,56,0
,2,1515,12437,56,0
,2,1516,12439,56,0
,2,1517,12441,56,0
,2,1518,12443,56,0
,2,1519,12445,56,0
,2,1520,12447,56,0
,2,1521,12449,56,0
,2,1522,12451,56,0
,2,1523,12453,56,0
,2,1524,12455,56,0
,2,1525,12457,56,0
,2,1526,12459,56,0
,2,1527,12461,56,0
,2,1528,12463,56,0
,2,1529,12465,56,0
,2,1530,12467,56,0
,2,1531,12469,56,0
,2,1532,12471,56,0
,2,1533,12473,56,0
,2,1534,12475,56,0
,2,1535,12477,56,0
,2,1536,12479,56,0
,2,1537,12481,56,0
,2,1538,12483,56,0
,2,1539,12485,56,0
,2,1540,12487,56,0
,2,1541,12489,56,0
,2,1542,12491,56,0
,2,1543,12493,56,0
,2,1544,12495,56,0
,2,1545,12497,56,0
,2,1546,12499,56,0
,2,1547,12501,56,0
,2,1548,12503,56,0
,2,1549,12505,56,0
,2,1550,12507,56,0
,2,1551,12509,56,0
,2,1552,12511,56,0
,2,1553,12513,56,0
,2,1554,12515,56,0
,2,1555,12517,56,0
,2,1556,12519,56,0
,2,1557,12521,56,0
,2,1558,12523,56,0
,2,1559,12525,56,0
,2,1560,12527,56,0
,2,1561,12529,56,0
,2,1562,12531,56,0
,2,1563,12533,56,0
,2,1564,12535,56,0
,2,1565,12537,56,0
,2,1566,12539,56,0
,2,1567,12541,56,0
,2,1568,12543,56,0
,2,1569,12545,56,0
,2,1570,12547,56,0
,2,1571,12549,56,0
,2,1572,12551,56,0
,2,1573,12553,56,0
,2,1574,12555,56,0
,2,1575,12557,56,0
,2,1576,12559,56,0
,2,1577,12561,56,0
,2,1578,12563,56,0
,2,1579,12565,56,0
,2,1580,12567,56,0
,2,1581,12569,56,0
,2,1582,12571,56,0
,2,1583,12573,56,0
,2,1584,12575,56,0
,2,1585,12577,56,0
,2,1586,12579,56,0
,2,1587,12581,56,0
,2,1588,12583,56,0
,2,1589,12585,56,0
,2,1590,12587,56,0
,2,1591,12589,56,0
,2,1592,12591,56,0
,2,1593,12593,56,0
,2,1594,12595,56,0
,2,1595,12597,56,0
,2,1596,12599,56,0
,2,1597,12601,56,0
,2,1598,12603,56,0
,2,1599,12605,56,0
,2,1600,12607,56,0
,2,1601,12609,56,0
,2,1602,12611,56,0
,2,1603,12613,56,0
,2,1604,12615,56,0
,2,1605,12617,56,0
,2,1606,12619,56,0
,2,1607,12621,56,0
,2,1608,12623,56,0
,2,1609,12625,56,0
,2,1610,12627,56,0
,2,1611,12629,56,0
,2,1612,12631,56,0
,2,1613,12633,56,0
,2,1614,12635,56,0
,2,1615,12637,56,0
,2,1616,12639,56,0
,2,1617,12641,56,0
,2,1618,12643,56,0
,2,1619,12645,56,0
,2,1620,12647,56,0
,2,1621,12649,56,0
,2,1622,12651,56,0
,2,1623,12653,56,0
,2,1624,12655,56,0
,2,1625,12657,56,0
,2,1626,12659,56,0
,2,1627,12661,56,0
,2,1628,12663,56,0
,2,1629,12665,56,0
,2,1630,12667,56,0
,2,1631,12669,56,0
,2,1632,12671,56,0
,2,1633,12673,56,0
,2,1634,12675,56,0
,2,1635,12677,56,0
,2,1636,12679,56,0
,2,1637,12681,56,0
,2,1638,12683,56,0
,2,1639,12685,56,0
,2,1640,12687,56,0
,2,1641,12689,56,0
,2,1642,12691,56,0
,2,1643,12693,56,0
,2,1644,12695,56,0
,2,1645,12697,56,0
,2,1646,12699,56,0
,2,1647,12701,56,0
,2,1648,12703,56,0
,2,1649,12705,56,0
,2,1650,12707,56,0
,2,1651,12709,56,0
,2,1652,12711,56,0
,2,1653,12713,56,0
,2,1654,12715,56,0
,2,1655,12717,56,0
,2,1656,12719,56,0
,2,1657,12721,56,0
,2,1658,12723,56,0
,2,1659,12725,56,0
,2,1660,12727,56,0
,2,1661,12729,56,0
,2,1662,12731,56,0
,2,1663,12733,56,0
,2,1664,12735,56,0
,2,1665,12737,56,0
,2,1666,12739,56,0
,2,1667,12741,56,0
,2,1668,12743,56,0
,2,1669,12745,56,0
,2,1670,12747,56,0
,2,1671,12749,56,0
,2,1672,12751,56,0
,2,1673,12753,56,0
,2,1674,12755,56,0
,2,1675,12757,56,0
,2,1676,12759,56,0
,2,1677,12761,56,0
,2,1678,12763,56,0
,2,1679,12765,56,0
,2,1680,12767,56,0
,2,1681,12769,56,0
,2,1682,12771,56,0
,2,1683,12773,56,0
,2,1684,12775,56,0
,2,1685,12777,56,0
,2,1686,12779,56,0
,2,1687,12781,56,0
,2,1688,12783,56,0
,2,1689,12785,56,0
,2,1690,12787,56,0
,2,1691,12789,56,0
,2,1692,12791,56,0
,2,1693,12793,56,0
,2,1694,12795,56,0
,2,1695,12797,56,0
,2,1696,12799,56,0
,2,1697,12801,56,0
,2,1698,12803,56,0
,2,1699,12805,56,0
,2,1700,12807,56,0
,2,1701,12809,56,0
,2,1702,12811,56,0
,2,1703,12813,56,0
,2,1704,12815,56,0
,2,1705,12817,56,0
,2,1706,12819,56,0
,2,1707,12821,56,0
,2,1708,12823,56,0
,2,1709,12825,56,0
,2,1710,12827,56,0
,2,1711,12829,56,0
,2,1712,12831,56,0
,2,1713,12833,56,0
,2,1714,12835,56,0
,2,1715,12837,56,0
,2,1716,12839,56,0
,2,1717,12841,56,0
,2,1718,12843,56,0
,2,1719,12845,56,0
,2,1720,12847,56,0
,2,1721,12849,56,0
,2,1722,12851,56,0
,2,1723,12853,56,0
,2,1724,12855,56,0
,2,1725,12857,56,0
,2,1726,12859,56,0
,2,1727,12861,56,0
,2,1728,12863,56,0
,2,1729,12865,56,0
,2,1730,12867,56,0
,2,1731,12869,56,0
,2,1732,12871,56,0
,2,1733,12873,56,0
,2,1734,12875,56,0
,2,1735,12877,56,0
,2,1736,12879,56,0
,2,1737,12881,56,0
,2,1738,12883,56,0
,2,1739,12885,56,0
,2,1740,12887,56,0
,2,1741,12889,56,0
,2,1742,12891,56,0
,2,1743,12893,56,0
,2,1744,12895,56,0
,2,1745,12897,56,0
,2,1746,12899,56,0
,2,1747,12901,56,0
,2,1748,12903,56,0
,2,1749,12905,56,0
,2,1750,12907,56,0
,2,1751,12909,56,0
,2,1752,12911,56,0
,2,1753,12913,56,0
,2,1754,12915,56,0
,2,1755,12917,56,0
,2,1756,12919,56,0
,2,1757,12921,56,0
,2,1758,12923,56,0
,2,1759,12925,56,0
,2,1760,12927,56,0
,2,1761,12929,56,0
,2,1762,12931,56,0
,2,1763,12933,56,0
,2,1764,12935,56,0
,2,1765,12937,56,0
,2,1766,12939,56,0
,2,1767,12941,56,0
,2,1768,12943,56,0
,2,1769,12945,56,0
,2,1770,12947,56,0
,2,1771,12949,56,0
,2,1772,12951,56,0
,2,1773,12953,56,0
,2,1774,12955,56,0
,2,1775,12957,56,0
,2,1776,12959,56,0
,2,1777,12961,56,0
,2,1778,12963,56,0
,2,1779,12965,56,0
,2,1780,12967,56,0
,2,1781,12969,56,0
,2,1782,12971,56,0
,2,1783,12973,56,0
,2,1784,12975,56,0
,2,1785,12977,56,0
,2,1786,12979,56,0
,2,1787,12981,56,0
,2,1788,12983,56,0
,2,1789,12985,56,0
,2,1790,12987,56,0
,2,1791,12989,56,0
,2,1792,12991,56,0
,2,1793,12993,56,0
,2,1794,12995,56,0
,2,1795,12997,56,0
,2,1796,12999,56,0
,2,1797,13001,56,0
,2,1798,13003,56,0
,2,1799,13005,56,0
,2,1800,13007,56,0
,2,1801,13009,56,0
,2,1802,13011,56,0
,2,1803,13013,56,0
,2,1804,13015,56,0
,2,1805,13017,56,0
,2,1806,13019,56,0
,2,1807,13021,56,0
,2,1808,13023,56,0
,2,1809,13025,56,0
,2,1810,13027,56,0
,2,1811,13029,56,0
,2,1812,13031,56,0
,2,1813,13033,56,0
,2,1814,13035,56,0
,2,1815,13037,56,0
,2,1816,13039,56,0
,2,1817,13041,56,0
,2,1818,13043,56,0
,2,1819,13045,56,0
,2,1820,13047,56,0
,2,1821,13049,56,0
,2,1822,13051,56,0
,2,1823,13053,56,0
,2,1824,13055,56,0
,2,1825,13057,56,0
,2,1826,13059,56,0
,2,1827,13061,56,0
,2,1828,13063,56,0
,2,1829,13065,56,0
,2,1830,13067,56,0
,2,1831,13069,56,0
,2,1832,13071,56,0
,2,1833,13073,56,0
,2,1834,13075,56,0
,2,1835,13077,56,0
,2,1836,13079,56,0
,2,1837,13081,56,0
,2,1838,13083,56,0
,2,1839,13085,56,0
,2,1840,13087,56,0
,2,1841,13089,56,0
,2,1842,13091,56,0
,2,1843,13093,56,0
,2,1844,13095,56,0
,2,1845,13097,56,0
,2,1846,13099,56,0
,2,1847,13101,56,0
,2,1848,13103,56,0
,2,1849,13105,56,0
,2,1850,13107,56,0
,2,1851,13109,56,0
,2,1852,13111,56,0
,2,1853,13113,56,0
,2,1854,13115,56,0
,2,1855,13117,56,0
,2,1856,13119,56,0
,2,1857,13121,56,0
,2,1858,13123,56,0
,2,1859,13125,56,0
,2,1860,13127,56,0
,2,1861,13129,56,0
,2,1862,13131,56,0
,2,1863,13133,56,0
,2,1864,13135,56,0
,2,1865,13137,56,0
,2,1866,13139,56,0
,2,1867,13141,56,0
,2,1868,13143,56,0
,2,1869,13145,56,0
,2,1870,13147,56,0
,2,1871,13149,56,0
,2,1872,13151,56,0
,2,1873,13153,56,0
,2,1874,13155,56,0
,2,1875,13157,56,0
,2,1876,13159,56,0
,2,1877,13161,56,0
,2,1878,13163,56,0
,2,1879,13165,56,0
,2,1880,13167,56,0
,2,1881,13169,56,0
,2,1882,13171,56,0
,2,1883,13173,56,0
,2,1884,13175,56,0
,2,1885,13177,56,0
,2,1886,13179,56,0
,2,1887,13181,56,0
,2,1888,13183,56,0
,2,1889,13185,56,0
,2,1890,13187,56,0
,2,1891,13189,56,0
,2,1892,13191,56,0
,2,1893,13193,56,0
,2,1894,13195,56,0
,2,1895,13197,56,0
,2,1896,13199,56,0
,2,1897,13201,56,0
,2,1898,13203,56,0
,2,1899,13205,56,0
,2,1900,13207,56,0
,2,1901,13209,56,0
,2,1902,13211,56,0
,2,1903,13213,56,0
,2,1904,13215,56,0
,2,1905,13217,56,0
,2,1906,13219,56,0
,2,1907,13221,56,0
,2,1908,13223,56,0
,2,1909,13225,56,0
,2,1910,13227,56,0
,2,1911,13229,56,0
,2,1912,13231,56,0
,2,1913,13233,56,0
,2,1914,13235,56,0
,2,1915,13237,56,0
,2,1916,13239,56,0
,2,1917,13241,56,0
,2,1918,13243,56,0
,2,1919,13245,56,0
,2,1920,13247,56,0
,2,1921,13249,56,0
,2,1922,13251,56,0
,2,1923,13253,56,0
,2,1924,13255,56,0
,2,1925,13257,56,0
,2,1926,13259,56,0
,2,1927,13261,56,0
,2,1928,13263,56,0
,2,1929,13265,56,0
,2,1930,13267,56,0
,2,1931,13269,56,0
,2,1932,13271,56,0
,2,1933,13273,56,0
,2,1934,13275,56,0
,2,1935,13277,56,0
,2,1936,13279,56,0
,2,1937,13281,56,0
,2,1938,13283,56,0
,2,1939,13285,56,0
,2,1940,13287,56,0
,2,1941,13289,56,0
,2,1942,13291,56,0
,2,1943,13293,56,0
,2,1944,13295,56,0
,2,1945,13297,56,0
,2,1946,13299,56,0
,2,1947,13301,56,0
,2,1948,13303,56,0
,2,1949,13305,56,0
,2,1950,13307,56,0
,2,1951,13309,56,0
,2,1952,13311,56,0
,2,1953,13313,56,0
,2,1954,13315,56,0
,2,1955,13317,56,0
,2,1956,13319,56,0
,2,1957,13321,56,0
,2,1958,13323,56,0
,2,1959,13325,56,0
,2,1960,13327,56,0
,2,1961,13329,56,0
,2,1962,13331,56,0
,2,1963,13333,56,0
,2,1964,13335,56,0
,2,1965,13337,56,0
,2,1966,13339,56,0
,2,1967,13341,56,0
,2,1968,13343,56,0
,2,1969,13345,56,0
,2,1970,13347,56,0
,2,1971,13349,56,0
,2,1972,13351,56,0
,2,1973,13353,56,0
,2,1974,13355,56,0
,2,1975,13357,56,0
,2,1976,13359,56,0
,2,1977,13361,56,0
,2,1978,13363,56,0
,2,1979,13365,56,0
,2,1980,13367,56,0
,2,1981,13369,56,0
,2,1982,13371,56,0
,2,1983,13373,56,0
,2,1984,13375,56,0
,2,1985,13377,56,0
,2,1986,13379,56,0
,2,1987,13381,56,0
,2,1988,13383,56,0
,2,1989,13385,56,0
,2,1990,13387,56,0
,2,1991,13389,56,0
,2,1992,13391,56,0
,2,1993,13393,56,0
,2,1994,13395,56,0
,2,1995,13397,56,0
,2,1996,13399,56,0
,2,1997,13401,56,0
,2,1998,13403,56,0
,2,1999,13405,56,0
,2,2000,13407,56,0
,2,2001,13409,56,0
,2,2002,13411,56,0
,2,2003,13413,56,0
,2,2004,13415,56,0
,2,2005,13417,56,0
,2,2006,13419,56,0
,2,2007,13421,56,0
,2,2008,13423,56,0
,2,2009,13425,56,0
,2,2010,13427,56,0
,2,2011,13429,56,0
,2,2012,13431,56,0
,2,2013,13433,56,0
,2,2014,13435,56,0
,2,2015,13437,56,0
,2,2016,13439,56,0
,2,2017,13441,56,0
,2,2018,13443,56,0
,2,2019,13445,56,0
,2,2020,13447,56,0
,2,2021,13449,56,0
,2,2022,13451,56,0
,2,2023,13453,56,0
,2,2024,13455,56,0
,2,2025,13457,56,0
,2,2026,13459,56,0
,2,2027,13461,56,0
,2,2028,13463,56,0
,2,2029,13465,56,0
,2,2030,13467,56,0
,2,2031,13469,56,0
,2,2032,13471,56,0
,2,2033,13473,56,0
,2,2034,13475,56,0
,2,2035,13477,56,0
,2,2036,13479,56,0
,2,2037,13481,56,0
,2,2038,13483,56,0
,2,2039,13485,56,0
,2,2040,13487,56,0
,2,2041,13489,56,0
,2,2042,13491,56,0
,2,2043,13493,56,0
,2,2044,13495,56,0
,2,2045,13497,56,0
,2,2046,13499,56,0
,2,2047,13501,56,0
,2,2048,13503,56,0
,2,2049,13505,56,0
,2,2050,13507,56,0
,2,2051,13509,56,0
,2,2052,13511,56,0
,2,2053,13513,56,0
,2,2054,13515,56,0
,2,2055,13517,56,0
,2,2056,13519,56,0
,2,2057,13521,56,0
,2,2058,13523,56,0
,2,2059,13525,56,0
,2,2060,13527,56,0
,2,2061,13529,56,0
,2,2062,13531,56,0
,2,2063,13533,56,0
,2,2064,13535,56,0
,2,2065,13537,56,0
,2,2066,13539,56,0
,2,2067,13541,56,0
,2,2068,13543,56,0
,2,2069,13545,56,0
,2,2070,13547,56,0
,2,2071,13549,56,0
,2,2072,13551,56,0
,2,2073,13553,56,0
,2,2074,13555,56,0
,2,2075,13557,56,0
,2,2076,13559,56,0
,2,2077,13561,56,0
,2,2078,13563,56,0
,2,2079,13565,56,0
,2,2080,13567,56,0
,2,2081,13569,56,0
,2,2082,13571,56,0
,2,2083,13573,56,0
,2,2084,13575,56,0
,2,2085,13577,56,0
,2,2086,13579,56,0
,2,2087,13581,56,0
,2,2088,13583,56,0
,2,2089,13585,56,0
,2,2090,13587,56,0
,2,2091,13589,56,0
,2,2092,13591,56,0
,2,2093,13593,56,0
,2,2094,13595,56,0
,2,2095,13597,56,0
,2,2096,13599,56,0
,2,2097,13601,56,0
,2,2098,13603,56,0
,2,2099,13605,56,0
,2,2100,13607,56,0
,2,2101,13609,56,0
,2,2102,13611,56,0
,2,2103,13613,56,0
,2,2104,13615,56,0
,2,2105,13617,56,0
,2,2106,13619,56,0
,2,2107,13621,56,0
,2,2108,13623,56,0
,2,2109,13625,56,0
,2,2110,13627,56,0
,2,2111,13629,56,0
,2,2112,13631,56,0
,2,2113,13633,56,0
,2,2114,13635,56,0
,2,2115,13637,56,0
,2,2116,13639,56,0
,2,2117,13641,56,0
,2,2118,13643,56,0
,2,2119,13645,56,0
,2,2120,13647,56,0
,2,2121,13649,56,0
,2,2122,13651,56,0
,2,2123,13653,56,0
,2,2124,13655,56,0
,2,2125,13657,56,0
,2,2126,13659,56,0
,2,2127,13661,56,0
,2,2128,13663,56,0
,2,2129,13665,56,0
,2,2130,13667,56,0
,2,2131,13669,56,0
,2,2132,13671,56,0
,2,2133,13673,56,0
,2,2134,13675,56,0
,2,2135,13677,56,0
,2,2136,13679,56,0
,2,2137,13681,56,0
,2,2138,13683,56,0
,2,2139,13685,56,0
,2,2140,13687,56,0
,2,2141,13689,56,0
,2,2142,13691,56,0
,2,2143,13693,56,0
,2,2144,13695,56,0
,2,2145,13697,56,0
,2,2146,13699,56,0
,2,2147,13701,56,0
,2,2148,13703,56,0
,2,2149,13705,56,0
,2,2150,13707,56,0
,2,2151,13709,56,0
,2,2152,13711,56,0
,2,2153,13713,56,0
,2,2154,13715,56,0
,2,2155,13717,56,0
,2,2156,13719,56,0
,2,2157,13721,56,0
,2,2158,13723,56,0
,2,2159,13725,56,0
,2,2160,13727,56,0
,2,2161,13729,56,0
,2,2162,13731,56,0
,2,2163,13733,56,0
,2,2164,13735,56,0
,2,2165,13737,56,0
,2,2166,13739,56,0
,2,2167,13741,56,0
,2,2168,13743,56,0
,2,2169,13745,56,0
,2,2170,13747,56,0
,2,2171,13749,56,0
,2,2172,13751,56,0
,2,2173,13753,56,0
,2,2174,13755,56,0
,2,2175,13757,56,0
,2,2176,13759,56,0
,2,2177,13761,56,0
,2,2178,13763,56,0
,2,2179,13765,56,0
,2,2180,13767,56,0
,2,2181,13769,56,0
,2,2182,13771,56,0
,2,2183,13773,56,0
,2,2184,13775,56,0
,2,2185,13777,56,0
,2,2186,13779,56,0
,2,2187,13781,56,0
,2,2188,13783,56,0
,2,2189,13785,56,0
,2,2190,13787,56,0
,2,2191,13789,56,0
,2,2192,13791,56,0
,2,2193,13793,56,0
,2,2194,13795,56,0
,2,2195,13797,56,0
,2,2196,13799,56,0
,2,2197,13801,56,0
,2,2198,13803,56,0
,2,2199,13805,56,0
,2,2200,13807,56,0
,2,2201,13809,56,0
,2,2202,13811,56,0
,2,2203,13813,56,0
,2,2204,13815,56,0
,2,2205,13817,56,0
,2,2206,13819,56,0
,2,2207,13821,56,0
,2,2208,13823,56,0
,2,2209,13825,56,0
,2,2210,13827,56,0
,2,2211,13829,56,0
,2,2212,13831,56,0
,2,2213,13833,56,0
,2,2214,13835,56,0
,2,2215,13837,56,0
,2,2216,13839,56,0
,2,2217,13841,56,0
,2,2218,13843,56,0
,2,2219,13845,56,0
,2,2220,13847,56,0
,2,2221,13849,56,0
,2,2222,13851,56,0
,2,2223,13853,56,0
,2,2224,13855,56,0
,2,2225,13857,56,0
,2,2226,13859,56,0
,2,2227,13861,56,0
,2,2228,13863,56,0
,2,2229,13865,56,0
,2,2230,13867,56,0
,2,2231,13869,56,0
,2,2232,13871,56,0
,2,2233,13873,56,0
,2,2234,13875,56,0
,2,2235,13877,56,0
,2,2236,13879,56,0
,2,2237,13881,56,0
,2,2238,13883,56,0
,2,2239,13885,56,0
,2,2240,13887,56,0
,2,2241,13889,56,0
,2,2242,13891,56,0
,2,2243,13893,56,0
,2,2244,13895,56,0
,2,2245,13897,56,0
,2,2246,13899,56,0
,2,2247,13901,56,0
,2,2248,13903,56,0
,2,2249,13905,56,0
,2,2250,13907,56,0
,2,2251,13909,56,0
,2,2252,13911,56,0
,2,2253,13913,56,0
,2,2254,13915,56,0
,2,2255,13917,56,0
,2,2256,13919,56,0
,2,2257,13921,56,0
,2,2258,13923,56,0
,2,2259,13925,56,0
,2,2260,13927,56,0
,2,2261,13929,56,0
,2,2262,13931,56,0
,2,2263,13933,56,0
,2,2264,13935,56,0
,2,2265,13937,56,0
,2,2266,13939,56,0
,2,2267,13941,56,0
,2,2268,13943,56,0
,2,2269,13945,56,0
,2,2270,13947,56,0
,2,2271,13949,56,0
,2,2272,13951,56,0
,2,2273,13953,56,0
,2,2274,13955,56,0
,2,2275,13957,56,0
,2,2276,13959,56,0
,2,2277,13961,56,0
,2,2278,13963,56,0
,2,2279,13965,56,0
,2,2280,13967,56,0
,2,2281,13969,56,0
,2,2282,13971,56,0
,2,2283,13973,56,0
,2,2284,13975,56,0
,2,2285,13977,56,0
,2,2286,13979,56,0
,2,2287,13981,56,0
,2,2288,13983,56,0
,2,2289,13985,56,0
,2,2290,13987,56,0
,2,2291,13989,56,0
,2,2292,13991,56,0
,2,2293,13993,56,0
,2,2294,13995,56,0
,2,2295,13997,56,0
,2,2296,13999,56,0
,2,2297,14001,56,0
,2,2298,14003,56,0
,2,2299,14005,56,0
,2,2300,14007,56,0
,2,2301,14009,56,0
,2,2302,14011,56,0
,2,2303,14013,56,0
,2,2304,14015,56,0
,2,2305,14017,56,0
,2,2306,14019,56,0
,2,2307,14021,56,0
,2,2308,14023,56,0
,2,2309,14025,56,0
,2,2310,14027,56,0
,2,2311,14029,56,0
,2,2312,14031,56,0
,2,2313,14033,56,0
,2,2314,14035,56,0
,2,2315,14037,56,0
,2,2316,14039,56,0
,2,2317,14041,56,0
,2,2318,14043,56,0
,2,2319,14045,56,0
,2,2320,14047,56,0
,2,2321,14049,56,0
,2,2322,14051,56,0
,2,2323,14053,56,0
,2,2324,14055,56,0
,2,2325,14057,56,0
,2,2326,14059,56,0
,2,2327,14061,56,0
,2,2328,14063,56,0
,2,2329,14065,56,0
,2,2330,14067,56,0
,2,2331,14069,56,0
,2,2332,14071,56,0
,2,2333,14073,56,0
,2,2334,14075,56,0
,2,2335,14077,56,0
,2,2336,14079,56,0
,2,2337,14081,56,0
,2,2338,14083,56,0
,2,2339,14085,56,0
,2,2340,14087,56,0
,2,2341,14089,56,0
,2,2342,14091,56,0
,2,2343,14093,56,0
,2,2344,14095,56,0
,2,2345,14097,56,0
,2,2346,14099,56,0
,2,2347,14101,56,0
,2,2348,14103,56,0
,2,2349,14105,56,0
,2,2350,14107,56,0
,2,2351,14109,56,0
,2,2352,14111,56,0
,2,2353,14113,56,0
,2,2354,14115,56,0
,2,2355,14117,56,0
,2,2356,14119,56,0
,2,2357,14121,56,0
,2,2358,14123,56,0
,2,2359,14125,56,0
,2,2360,14127,56,0
,2,2361,14129,56,0
,2,2362,14131,56,0
,2,2363,14133,56,0
,2,2364,14135,56,0
,2,2365,14137,56,0
,2,2366,14139,56,0
,2,2367,14141,56,0
,2,2368,14143,56,0
,2,2369,14145,56,0
,2,2370,14147,56,0
,2,2371,14149,56,0
,2,2372,14151,56,0
,2,2373,14153,56,0
,2,2374,14155,56,0
,2,2375,14157,56,0
,2,2376,14159,56,0
,2,2377,14161,56,0
,2,2378,14163,56,0
,2,2379,14165,56,0
,2,2380,14167,56,0
,2,2381,14169,56,0
,2,2382,14171,56,0
,2,2383,14173,56,0
,2,2384,14175,56,0
,2,2385,14177,56,0
,2,2386,14179,56,0
,2,2387,14181,56,0
,2,2388,14183,56,0
,2,2389,14185,56,0
,2,2390,14187,56,0
,2,2391,14189,56,0
,2,2392,14191,56,0
,2,2393,14193,56,0
,2,2394,14195,56,0
,2,2395,14197,56,0
,2,2396,14199,56,0
,2,2397,14201,56,0
,2,2398,14203,56,0
,2,2399,14205,56,0
,2,2400,14207,56,0
,2,2401,14209,56,0
,2,2402,14211,56,0
,2,2403,14213,56,0
,2,2404,14215,56,0
,2,2405,14217,56,0
,2,2406,14219,56,0
,2,2407,14221,56,0
,2,2408,14223,56,0
,2,2409,14225,56,0
,2,2410,14227,56,0
,2,2411,14229,56,0
,2,2412,14231,56,0
,2,2413,14233,56,0
,2,2414,14235,56,0
,2,2415,14237,56,0
,2,2416,14239,56,0
,2,2417,14241,56,0
,2,2418,14243,56,0
,2,2419,14245,56,0
,2,2420,14247,56,0
,2,2421,14249,56,0
,2,2422,14251,56,0
,2,2423,14253,56,0
,2,2424,14255,56,0
,2,2425,14257,56,0
,2,2426,14259,56,0
,2,2427,14261,56,0
,2,2428,14263,56,0
,2,2429,14265,56,0
,2,2430,14267,56,0
,2,2431,14269,56,0
,2,2432,14271,56,0
,2,2433,14273,56,0
,2,2434,14275,56,0
,2,2435,14277,56,0
,2,2436,14279,56,0
,2,2437,14281,56,0
,2,2438,14283,56,0
,2,2439,14285,56,0
,2,2440,14287,56,0
,2,2441,14289,56,0
,2,2442,14291,56,0
,2,2443,14293,56,0
,2,2444,14295,56,0
,2,2445,14297,56,0
,2,2446,14299,56,0
,2,2447,14301,56,0
,2,2448,14303,56,0
,2,2449,14305,56,0
,2,2450,14307,56,0
,2,2451,14309,56,0
,2,2452,14311,56,0
,2,2453,14313,56,0
,2,2454,14315,56,0
,2,2455,14317,56,0
,2,2456,14319,56,0
,2,2457,14321,56,0
,2,2458,14323,56,0
,2,2459,14325,56,0
,2,2460,14327,56,0
,2,2461,14329,56,0
,2,2462,14331,56,0
,2,2463,14333,56,0
,2,2464,14335,56,0
,2,2465,14337,56,0
,2,2466,14339,56,0
,2,2467,14341,56,0
,2,2468,14343,56,0
,2,2469,14345,56,0
,2,2470,14347,56,0
,2,2471,14349,56,0
,2,2472,14351,56,0
,2,2473,14353,56,0
,2,2474,14355,56,0
,2,2475,14357,56,0
,2,2476,14359,56,0
,2,2477,14361,56,0
,2,2478,14363,56,0
,2,2479,14365,56,0
,2,2480,14367,56,0
,2,2481,14369,56,0
,2,2482,14371,56,0
,2,2483,14373,56,0
,2,2484,14375,56,0
,2,2485,14377,56,0
,2,2486,14379,56,0
,2,2487,14381,56,0
,2,2488,14383,56,0
,2,2489,14385,56,0
,2,2490,14387,56,0
,2,2491,14389,56,0
,2,2492,14391,56,0
,2,2493,14393,56,0
,2,2494,14395,56,0
,2,2495,14397,56,0
,2,2496,14399,56,0
,2,2497,14401,56,0
,2,2498,14403,56,0
,2,2499,14405,56,0
,2,2500,14407,56,0
,2,2501,14409,56,0
,2,2502,14411,56,0
,2,2503,14413,56,0
,2,2504,14415,56,0
,2,2505,14417,56,0
,2,2506,14419,56,0
,2,2507,14421,56,0
,2,2508,14423,56,0
,2,2509,14425,56,0
,2,2510,14427,56,0
,2,2511,14429,56,0
,2,2512,14431,56,0
,2,2513,14433,56,0
,2,2514,14435,56,0
,2,2515,14437,56,0
,2,2516,14439,56,0
,2,2517,14441,56,0
,2,2518,14443,56,0
,2,2519,14445,56,0
,2,2520,14447,56,0
,2,2521,14449,56,0
,2,2522,14451,56,0
,2,2523,14453,56,0
,2,2524,14455,56,0
,2,2525,14457,56,0
,2,2526,14459,56,0
,2,2527,14461,56,0
,2,2528,14463,56,0
,2,2529,14465,56,0
,2,2530,14467,56,0
,2,2531,14469,56,0
,2,2532,14471,56,0
,2,2533,14473,56,0
,2,2534,14475,56,0
,2,2535,14477,56,0
,2,2536,14479,56,0
,2,2537,14481,56,0
,2,2538,14483,56,0
,2,2539,14485,56,0
,2,2540,14487,56,0
,2,2541,14489,56,0
,2,2542,14491,56,0
,2,2543,14493,56,0
,2,2544,14495,56,0
,2,2545,14497,56,0
,2,2546,14499,56,0
,2,2547,14501,56,0
,2,2548,14503,56,0
,2,2549,14505,56,0
,2,2550,14507,56,0
,2,2551,14509,56,0
,2,2552,14511,56,0
,2,2553,14513,56,0
,2,2554,14515,56,0
,2,2555,14517,56,0
,2,2556,14519,56,0
,2,2557,14521,56,0
,2,2558,14523,56,0
,2,2559,14525,56,0
,2,2560,14527,56,0
,2,2561,14529,56,0
,2,2562,14531,56,0
,2,2563,14533,56,0
,2,2564,14535,56,0
,2,2565,14537,56,0
,2,2566,14539,56,0
,2,2567,14541,56,0
,2,2568,14543,56,0
,2,2569,14545,56,0
,2,2570,14547,56,0
,2,2571,14549,56,0
,2,2572,14551,56,0
,2,2573,14553,56,0
,2,2574,14555,56,0
,2,2575,14557,56,0
,2,2576,14559,56,0
,2,2577,14561,56,0
,2,2578,14563,56,0
,2,2579,14565,56,0
,2,2580,14567,56,0
,2,2581,14569,56,0
,2,2582,14571,56,0
,2,2583,14573,56,0
,2,2584,14575,56,0
,2,2585,14577,56,0
,2,2586,14579,56,0
,2,2587,14581,56,0
,2,2588,14583,56,0
,2,2589,14585,56,0
,2,2590,14587,56,0
,2,2591,14589,56,0
,2,2592,14591,56,0
,2,2593,14593,56,0
,2,2594,14595,56,0
,2,2595,14597,56,0
,2,2596,14599,56,0
,2,2597,14601,56,0
,2,2598,14603,56,0
,2,2599,14605,56,0
,2,2600,14607,56,0
,2,2601,14609,56,0
,2,2602,14611,56,0
,2,2603,14613,56,0
,2,2604,14615,56,0
,2,2605,14617,56,0
,2,2606,14619,56,0
,2,2607,14621,56,0
,2,2608,14623,56,0
,2,2609,14625,56,0
,2,2610,14627,56,0
,2,2611,14629,56,0
,2,2612,14631,56,0
,2,2613,14633,56,0
,2,2614,14635,56,0
,2,2615,14637,56,0
,2,2616,14639,56,0
,2,2617,14641,56,0
,2,2618,14643,56,0
,2,2619,14645,56,0
,2,2620,14647,56,0
,2,2621,14649,56,0
,2,2622,14651,56,0
,2,2623,14653,56,0
,2,2624,14655,56,0
,2,2625,14657,56,0
,2,2626,14659,56,0
,2,2627,14661,56,0
,2,2628,14663,56,0
,2,2629,14665,56,0
,2,2630,14667,56,0
,2,2631,14669,56,0
,2,2632,14671,56,0
,2,2633,14673,56,0
,2,2634,14675,56,0
,2,2635,14677,56,0
,2,2636,14679,56,0
,2,2637,14681,56,0
,2,2638,14683,56,0
,2,2639,14685,56,0
,2,2640,14687,56,0
,2,2641,14689,56,0
,2,2642,14691,56,0
,2,2643,14693,56,0
,2,2644,14695,56,0
,2,2645,14697,56,0
,2,2646,14699,56,0
,2,2647,14701,56,0
,2,2648,14703,56,0
,2,2649,14705,56,0
,2,2650,14707,56,0
,2,2651,14709,56,0
,2,2652,14711,56,0
,2,2653,14713,56,0
,2,2654,14715,56,0
,2,2655,14717,56,0
,2,2656,14719,56,0
,2,2657,14721,56,0
,2,2658,14723,56,0
,2,2659,14725,56,0
,2,2660,14727,56,0
,2,2661,14729,56,0
,2,2662,14731,56,0
,2,2663,14733,56,0
,2,2664,14735,56,0
,2,2665,14737,56,0
,2,2666,14739,56,0
,2,2667,14741,56,0
,2,2668,14743,56,0
,2,2669,14745,56,0
,2,2670,14747,56,0
,2,2671,14749,56,0
,2,2672,14751,56,0
,2,2673,14753,56,0
,2,2674,14755,56,0
,2,2675,14757,56,0
,2,2676,14759,56,0
,2,2677,14761,56,0
,2,2678,14763,56,0
,2,2679,14765,56,0
,2,2680,14767,56,0
,2,2681,14769,56,0
,2,2682,14771,56,0
,2,2683,14773,56,0
,2,2684,14775,56,0
,2,2685,14777,56,0
,2,2686,14779,56,0
,2,2687,14781,56,0
,2,2688,14783,56,0
,2,2689,14785,56,0
,2,2690,14787,56,0
,2,2691,14789,56,0
,2,2692,14791,56,0
,2,2693,14793,56,0
,2,2694,14795,56,0
,2,2695,14797,56,0
,2,2696,14799,56,0
,2,2697,14801,56,0
,2,2698,14803,56,0
,2,2699,14805,56,0
,2,2700,14807,56,0
,2,2701,14809,56,0
,2,2702,14811,56,0
,2,2703,14813,56,0
,2,2704,14815,56,0
,2,2705,14817,56,0
,2,2706,14819,56,0
,2,2707,14821,56,0
,2,2708,14823,56,0
,2,2709,14825,56,0
,2,2710,14827,56,0
,2,2711,14829,56,0
,2,2712,14831,56,0
,2,2713,14833,56,0
,2,2714,14835,56,0
,2,2715,14837,56,0
,2,2716,14839,56,0
,2,2717,14841,56,0
,2,2718,14843,56,0
,2,2719,14845,56,0
,2,2720,14847,56,0
,2,2721,14849,56,0
,2,2722,14851,56,0
,2,2723,14853,56,0
,2,2724,14855,56,0
,2,2725,14857,56,0
,2,2726,14859,56,0
,2,2727,14861,56,0
,2,2728,14863,56,0
,2,2729,14865,56,0
,2,2730,14867,56,0
,2,2731,14869,56,0
,2,2732,14871,56,0
,2,2733,14873,56,0
,2,2734,14875,56,0
,2,2735,14877,56,0
,2,2736,14879,56,0
,2,2737,14881,56,0
,2,2738,14883,56,0
,2,2739,14885,56,0
,2,2740,14887,56,0
,2,2741,14889,56,0
,2,2742,14891,56,0
,2,2743,14893,56,0
,2,2744,14895,56,0
,2,2745,14897,56,0
,2,2746,14899,56,0
,2,2747,14901,56,0
,2,2748,14903,56,0
,2,2749,14905,56,0
,2,2750,14907,56,0
,2,2751,14909,56,0
,2,2752,14911,56,0
,2,2753,14913,56,0
,2,2754,14915,56,0
,2,2755,14917,56,0
,2,2756,14919,56,0
,2,2757,14921,56,0
,2,2758,14923,56,0
,2,2759,14925,56,0
,2,2760,14927,56,0
,2,2761,14929,56,0
,2,2762,14931,56,0
,2,2763,14933,56,0
,2,2764,14935,56,0
,2,2765,14937,56,0
,2,2766,14939,56,0
,2,2767,14941,56,0
,2,2768,14943,56,0
,2,2769,14945,56,0
,2,2770,14947,56,0
,2,2771,14949,56,0
,2,2772,14951,56,0
,2,2773,14953,56,0
,2,2774,14955,56,0
,2,2775,14957,56,0
,2,2776,14959,56,0
,2,2777,14961,56,0
,2,2778,14963,56,0
,2,2779,14965,56,0
,2,2780,14967,56,0
,2,2781,14969,56,0
,2,2782,14971,56,0
,2,2783,14973,56,0
,2,2784,14975,56,0
,2,2785,14977,56,0
,2,2786,14979,56,0
,2,2787,14981,56,0
,2,2788,14983,56,0
,2,2789,14985,56,0
,2,2790,14987,56,0
,2,2791,14989,56,0
,2,2792,14991,56,0
,2,2793,14993,56,0
,2,2794,14995,56,0
,2,2795,14997,56,0
,2,2796,14999,56,0
,2,2797,15001,56,0
,2,2798,15003,56,0
,2,2799,15005,56,0
,2,2800,15007,56,0
,2,2801,15009,56,0
,2,2802,15011,56,0
,2,2803,15013,56,0
,2,2804,15015,56,0
,2,2805,15017,56,0
,2,2806,15019,56,0
,2,2807,15021,56,0
,2,2808,15023,56,0
,2,2809,15025,56,0
,2,2810,15027,56,0
,2,2811,15029,56,0
,2,2812,15031,56,0
,2,2813,15033,56,0
,2,2814,15035,56,0
,2,2815,15037,56,0
,2,2816,15039,56,0
,2,2817,15041,56,0
,2,2818,15043,56,0
,2,2819,15045,56,0
,2,2820,15047,56,0
,2,2821,15049,56,0
,2,2822,15051,56,0
,2,2823,15053,56,0
,2,2824,15055,56,0
,2,2825,15057,56,0
,2,2826,15059,56,0
,2,2827,15061,56,0
,2,2828,15063,56,0
,2,2829,15065,56,0
,2,2830,15067,56,0
,2,2831,15069,56,0
,2,2832,15071,56,0
,2,2833,15073,56,0
,2,2834,15075,56,0
,2,2835,15077,56,0
,2,2836,15079,56,0
,2,2837,15081,56,0
,2,2838,15083,56,0
,2,2839,15085,56,0
,2,2840,15087,56,0
,2,2841,15089,56,0
,2,2842,15091,56,0
,2,2843,15093,56,0
,2,2844,15095,56,0
,2,2845,15097,56,0
,2,2846,15099,56,0
,2,2847,15101,56,0
,2,2848,15103,56,0
,2,2849,15105,56,0
,2,2850,15107,56,0
,2,2851,15109,56,0
,2,2852,15111,56,0
,2,2853,15113,56,0
,2,2854,15115,56,0
,2,2855,15117,56,0
,2,2856,15119,56,0
,2,2857,15121,56,0
,2,2858,15123,56,0
,2,2859,15125,56,0
,2,2860,15127,56,0
,2,2861,15129,56,0
,2,2862,15131,56,0
,2,2863,15133,56,0
,2,2864,15135,56,0
,2,2865,15137,56,0
,2,2866,15139,56,0
,2,2867,15141,56,0
,2,2868,15143,56,0
,2,2869,15145,56,0
,2,2870,15147,56,0
,2,2871,15149,56,0
,2,2872,15151,56,0
,2,2873,15153,56,0
,2,2874,15155,56,0
,2,2875,15157,56,0
,2,2876,15159,56,0
,2,2877,15161,56,0
,2,2878,15163,56,0
,2,2879,15165,56,0
,2,2880,15167,56,0
,2,2881,15169,56,0
,2,2882,15171,56,0
,2,2883,15173,56,0
,2,2884,15175,56,0
,2,2885,15177,56,0
,2,2886,15179,56,0
,2,2887,15181,56,0
,2,2888,15183,56,0
,2,2889,15185,56,0
,2,2890,15187,56,0
,2,2891,15189,56,0
,2,2892,15191,56,0
,2,2893,15193,56,0
,2,2894,15195,56,0
,2,2895,15197,56,0
,2,2896,15199,56,0
,2,2897,15201,56,0
,2,2898,15203,56,0
,2,2899,15205,56,0
,2,2900,15207,56,0
,2,2901,15209,56,0
,2,2902,15211,56,0
,2,2903,15213,56,0
,2,2904,15215,56,0
,2,2905,15217,56,0
,2,2906,15219,56,0
,2,2907,15221,56,0
,2,2908,15223,56,0
,2,2909,15225,56,0
,2,2910,15227,56,0
,2,2911,15229,56,0
,2,2912,15231,56,0
,2,2913,15233,56,0
,2,2914,15235,56,0
,2,2915,15237,56,0
,2,2916,15239,56,0
,2,2917,15241,56,0
,2,2918,15243,56,0
,2,2919,15245,56,0
,2,2920,15247,56,0
,2,2921,15249,56,0
,2,2922,15251,56,0
,2,2923,15253,56,0
,2,2924,15255,56,0
,2,2925,15257,56,0
,2,2926,15259,56,0
,2,2927,15261,56,0
,2,2928,15263,56,0
,2,2929,15265,56,0
,2,2930,15267,56,0
,2,2931,15269,56,0
,2,2932,15271,56,0
,2,2933,15273,56,0
,2,2934,15275,56,0
,2,2935,15277,56,0
,2,2936,15279,56,0
,2,2937,15281,56,0
,2,2938,15283,56,0
,2,2939,15285,56,0
,2,2940,15287,56,0
,2,2941,15289,56,0
,2,2942,15291,56,0
,2,2943,15293,56,0
,2,2944,15295,56,0
,2,2945,15297,56,0
,2,2946,15299,56,0
,2,2947,15301,56,0
,2,2948,15303,56,0
,2,2949,15305,56,0
,2,2950,15307,56,0
,2,2951,15309,56,0
,2,2952,15311,56,0
,2,2953,15313,56,0
,2,2954,15315,56,0
,2,2955,15317,56,0
,2,2956,15319,56,0
,2,2957,15321,56,0
,2,2958,15323,56,0
,2,2959,15325,56,0
,2,2960,15327,56,0
,2,2961,15329,56,0
,2,2962,15331,56,0
,2,2963,15333,56,0
,2,2964,15335,56,0
,2,2965,15337,56,0
,2,2966,15339,56,0
,2,2967,15341,56,0
,2,2968,15343,56,0
,2,2969,15345,56,0
,2,2970,15347,56,0
,2,2971,15349,56,0
,2,2972,15351,56,0
,2,2973,15353,56,0
,2,2974,15355,56,0
,2,2975,15357,56,0
,2,2976,15359,56,0
,2,2977,15361,56,0
,2,2978,15363,56,0
,2,2979,15365,56,0
,2,2980,15367,56,0
,2,2981,15369,56,0
,2,2982,15371,56,0
,2,2983,15373,56,0
,2,2984,15375,56,0
,2,2985,15377,56,0
,2,2986,15379,56,0
,2,2987,15381,56,0
,2,2988,15383,56,0
,2,2989,15385,56,0
,2,2990,15387,56,0
,2,2991,15389,56,0
,2,2992,15391,56,0
,2,2993,15393,56,0
,2,2994,15395,56,0
,2,2995,15397,56,0
,2,2996,15399,56,0
,2,2997,15401,56,0
,2,2998,15403,56,0
,2,2999,15405,56,0
,2,3000,15407,56,0
,2,3001,15409,56,0
,2,3002,15411,56,0
,2,3003,15413,56,0
,2,3004,15415,56,0
,2,3005,15417,56,0
,2,3006,15419,56,0
,2,3007,15421,56,0
,2,3008,15423,56,0
,2,3009,15425,56,0
,2,3010,15427,56,0
,2,3011,15429,56,0
,2,3012,15431,56,0
,2,3013,15433,56,0
,2,3014,15435,56,0
,2,3015,15437,56,0
,2,3016,15439,56,0
,2,3017,15441,56,0
,2,3018,15443,56,0
,2,3019,15445,56,0
,2,3020,15447,56,0
,2,3021,15449,56,0
,2,3022,15451,56,0
,2,3023,15453,56,0
,2,3024,15455,56,0
,2,3025,15457,56,0
,2,3026,15459,56,0
,2,3027,15461,56,0
,2,3028,15463,56,0
,2,3029,15465,56,0
,2,3030,15467,56,0
,2,3031,15469,56,0
,2,3032,15471,56,0
,2,3033,15473,56,0
,2,3034,15475,56,0
,2,3035,15477,56,0
,2,3036,15479,56,0
,2,3037,15481,56,0
,2,3038,15483,56,0
,2,3039,15485,56,0
,2,3040,15487,56,0
,2,3041,15489,56,0
,2,3042,15491,56,0
,2,3043,15493,56,0
,2,3044,15495,56,0
,2,3045,15497,56,0
,2,3046,15499,56,0
,2,3047,15501,56,0
,2,3048,15503,56,0
,2,3049,15505,56,0
,2,3050,15507,56,0
,2,3051,15509,56,0
,2,3052,15511,56,0
,2,3053,15513,56,0
,2,3054,15515,56,0
,2,3055,15517,56,0
,2,3056,15519,56,0
,2,3057,15521,56,0
,2,3058,15523,56,0
,2,3059,15525,56,0
,2,3060,15527,56,0
,2,3061,15529,56,0
,2,3062,15531,56,0
,2,3063,15533,56,0
,2,3064,15535,56,0
,2,3065,15537,56,0
,2,3066,15539,56,0
,2,3067,15541,56,0
,2,3068,15543,56,0
,2,3069,15545,56,0
,2,3070,15547,56,0
,2,3071,15549,56,0
,2,3072,15551,56,0
,2,3073,15553,56,0
,2,3074,15555,56,0
,2,3075,15557,56,0
,2,3076,15559,56,0
,2,3077,15561,56,0
,2,3078,15563,56,0
,2,3079,15565,56,0
,2,3080,15567,56,0
,2,3081,15569,56,0
,2,3082,15571,56,0
,2,3083,15573,56,0
,2,3084,15575,56,0
,2,3085,15577,56,0
,2,3086,15579,56,0
,2,3087,15581,56,0
,2,3088,15583,56,0
,2,3089,15585,56,0
,2,3090,15587,56,0
,2,3091,15589,56,0
,2,3092,15591,56,0
,2,3093,15593,56,0
,2,3094,15595,56,0
,2,3095,15597,56,0
,2,3096,15599,56,0
,2,3097,15601,56,0
,2,3098,15603,56,0
,2,3099,15605,56,0
,2,3100,15607,56,0
,2,3101,15609,56,0
,2,3102,15611,56,0
,2,3103,15613,56,0
,2,3104,15615,56,0
,2,3105,15617,56,0
,2,3106,15619,56,0
,2,3107,15621,56,0
,2,3108,15623,56,0
,2,3109,15625,56,0
,2,3110,15627,56,0
,2,3111,15629,56,0
,2,3112,15631,56,0
,2,3113,15633,56,0
,2,3114,15635,56,0
,2,3115,15637,56,0
,2,3116,15639,56,0
,2,3117,15641,56,0
,2,3118,15643,56,0
,2,3119,15645,56,0
,2,3120,15647,56,0
,2,3121,15649,56,0
,2,3122,15651,56,0
,2,3123,15653,56,0
,2,3124,15655,56,0
,2,3125,15657,56,0
,2,3126,15659,56,0
,2,3127,15661,56,0
,2,3128,15663,56,0
,2,3129,15665,56,0
,2,3130,15667,56,0
,2,3131,15669,56,0
,2,3132,15671,56,0
,2,3133,15673,56,0
,2,3134,15675,56,0
,2,3135,15677,56,0
,2,3136,15679,56,0
,2,3137,15681,56,0
,2,3138,15683,56,0
,2,3139,15685,56,0
,2,3140,15687,56,0
,2,3141,15689,56,0
,2,3142,15691,56,0
,2,3143,15693,56,0
,2,3144,15695,56,0
,2,3145,15697,56,0
,2,3146,15699,56,0
,2,3147,15701,56,0
,2,3148,15703,56,0
,2,3149,15705,56,0
,2,3150,15707,56,0
,2,3151,15709,56,0
,2,3152,15711,56,0
,2,3153,15713,56,0
,2,3154,15715,56,0
,2,3155,15717,56,0
,2,3156,15719,56,0
,2,3157,15721,56,0
,2,3158,15723,56,0
,2,3159,15725,56,0
,2,3160,15727,56,0
,2,3161,15729,56,0
,2,3162,15731,56,0
,2,3163,15733,56,0
,2,3164,15735,56,0
,2,3165,15737,56,0
,2,3166,15739,56,0
,2,3167,15741,56,0
,2,3168,15743,56,0
,2,3169,15745,56,0
,2,3170,15747,56,0
,2,3171,15749,56,0
,2,3172,15751,56,0
,2,3173,15753,56,0
,2,3174,15755,56,0
,2,3175,15757,56,0
,2,3176,15759,56,0
,2,3177,15761,56,0
,2,3178,15763,56,0
,2,3179,15765,56,0
,2,3180,15767,56,0
,2,3181,15769,56,0
,2,3182,15771,56,0
,2,3183,15773,56,0
,2,3184,15775,56,0
,2,3185,15777,56,0
,2,3186,15779,56,0
,2,3187,15781,56,0
,2,3188,15783,56,0
,2,3189,15785,56,0
,2,3190,15787,56,0
,2,3191,15789,56,0
,2,3192,15791,56,0
,2,3193,15793,56,0
,2,3194,15795,56,0
,2,3195,15797,56,0
,2,3196,15799,56,0
,2,3197,15801,56,0
,2,3198,15803,56,0
,2,3199,15805,56,0
,2,3200,15807,56,0
,2,3201,15809,56,0
,2,3202,15811,56,0
,2,3203,15813,56,0
,2,3204,15815,56,0
,2,3205,15817,56,0
,2,3206,15819,56,0
,2,3207,15821,56,0
,2,3208,15823,56,0
,2,3209,15825,56,0
,2,3210,15827,56,0
,2,3211,15829,56,0
,2,3212,15831,56,0
,2,3213,15833,56,0
,2,3214,15835,56,0
,2,3215,15837,56,0
,2,3216,15839,56,0
,2,3217,15841,56,0
,2,3218,15843,56,0
,2,3219,15845,56,0
,2,3220,15847,56,0
,2,3221,15849,56,0
,2,3222,15851,56,0
,2,3223,15853,56,0
,2,3224,15855,56,0
,2,3225,15857,56,0
,2,3226,15859,56,0
,2,3227,15861,56,0
,2,3228,15863,56,0
,2,3229,15865,56,0
,2,3230,15867,56,0
,2,3231,15869,56,0
,2,3232,15871,56,0
,2,3233,15873,56,0
,2,3234,15875,56,0
,2,3235,15877,56,0
,2,3236,15879,56,0
,2,3237,15881,56,0
,2,3238,15883,56,0
,2,3239,15885,56,0
,2,3240,15887,56,0
,2,3241,15889,56,0
,2,3242,15891,56,0
,2,3243,15893,56,0
,2,3244,15895,56,0
,2,3245,15897,56,0
,2,3246,15899,56,0
,2,3247,15901,56,0
,2,3248,15903,56,0
,2,3249,15905,56,0
,2,3250,15907,56,0
,2,3251,15909,56,0
,2,3252,15911,56,0
,2,3253,15913,56,0
,2,3254,15915,56,0
,2,3255,15917,56,0
,2,3256,15919,56,0
,2,3257,15921,56,0
,2,3258,15923,56,0
,2,3259,15925,56,0
,2,3260,15927,56,0
,2,3261,15929,56,0
,2,3262,15931,56,0
,2,3263,15933,56,0
,2,3264,15935,56,0
,2,3265,15937,56,0
,2,3266,15939,56,0
,2,3267,15941,56,0
,2,3268,15943,56,0
,2,3269,15945,56,0
,2,3270,15947,56,0
,2,3271,15949,56,0
,2,3272,15951,56,0
,2,3273,15953,56,0
,2,3274,15955,56,0
,2,3275,15957,56,0
,2,3276,15959,56,0
,2,3277,15961,56,0
,2,3278,15963,56,0
,2,3279,15965,56,0
,2,3280,15967,56,0
,2,3281,15969,56,0
,2,3282,15971,56,0
,2,3283,15973,56,0
,2,3284,15975,56,0
,2,3285,15977,56,0
,2,3286,15979,56,0
,2,3287,15981,56,0
,2,3288,15983,56,0
,2,3289,15985,56,0
,2,3290,15987,56,0
,2,3291,15989,56,0
,2,3292,15991,56,0
,2,3293,15993,56,0
,2,3294,15995,56,0
,2,3295,15997,56,0
,2,3296,15999,56,0
,2,3297,16001,56,0
,2,3298,16003,56,0
,2,3299,16005,56,0
,2,3300,16007,56,0
,2,3301,16009,56,0
,2,3302,16011,56,0
,2,3303,16013,56,0
,2,3304,16015,56,0
,2,3305,16017,56,0
,2,3306,16019,56,0
,2,3307,16021,56,0
,2,3308,16023,56,0
,2,3309,16025,56,0
,2,3310,16027,56,0
,2,3311,16029,56,0
,2,3312,16031,56,0
,2,3313,16033,56,0
,2,3314,16035,56,0
,2,3315,16037,56,0
,2,3316,16039,56,0
,2,3317,16041,56,0
,2,3318,16043,56,0
,2,3319,16045,56,0
,2,3320,16047,56,0
,2,3321,16049,56,0
,2,3322,16051,56,0
,2,3323,16053,56,0
,2,3324,16055,56,0
,2,3325,16057,56,0
,2,3326,16059,56,0
,2,3327,16061,56,0
,2,3328,16063,56,0
,2,3329,16065,56,0
,2,3330,16067,56,0
,2,3331,16069,56,0
,2,3332,16071,56,0
,2,3333,16073,56,0
,2,3334,16075,56,0
,2,3335,16077,56,0
,2,3336,16079,56,0
,2,3337,16081,56,0
,2,3338,16083,56,0
,2,3339,16085,56,0
,2,3340,16087,56,0
,2,3341,16089,56,0
,2,3342,16091,56,0
,2,3343,16093,56,0
,2,3344,16095,56,0
,2,3345,16097,56,0
,2,3346,16099,56,0
,2,3347,16101,56,0
,2,3348,16103,56,0
,2,3349,16105,56,0
,2,3350,16107,56,0
,2,3351,16109,56,0
,2,3352,16111,56,0
,2,3353,16113,56,0
,2,3354,16115,56,0
,2,3355,16117,56,0
,2,3356,16119,56,0
,2,3357,16121,56,0
,2,3358,16123,56,0
,2,3359,16125,56,0
,2,3360,16127,56,0
,2,3361,16129,56,0
,2,3362,16131,56,0
,2,3363,16133,56,0
,2,3364,16135,56,0
,2,3365,16137,56,0
,2,3366,16139,56,0
,2,3367,16141,56,0
,2,3368,16143,56,0
,2,3369,16145,56,0
,2,3370,16147,56,0
,2,3371,16149,56,0
,2,3372,16151,56,0
,2,3373,16153,56,0
,2,3374,16155,56,0
,2,3375,16157,56,0
,2,3376,16159,56,0
,2,3377,16161,56,0
,2,3378,16163,56,0
,2,3379,16165,56,0
,2,3380,16167,56,0
,2,3381,16169,56,0
,2,3382,16171,56,0
,2,3383,16173,56,0
,2,3384,16175,56,0
,2,3385,16177,56,0
,2,3386,16179,56,0
,2,3387,16181,56,0
,2,3388,16183,56,0
,2,3389,16185,56,0
,2,3390,16187,56,0
,2,3391,16189,56,0
,2,3392,16191,56,0
,2,3393,16193,56,0
,2,3394,16195,56,0
,2,3395,16197,56,0
,2,3396,16199,56,0
,2,3397,16201,56,0
,2,3398,16203,56,0
,2,3399,16205,56,0
,2,3400,16207,56,0
,2,3401,16209,56,0
,2,3402,16211,56,0
,2,3403,16213,56,0
,2,3404,16215,56,0
,2,3405,16217,56,0
,2,3406,16219,56,0
,2,3407,16221,56,0
,2,3408,16223,56,0
,2,3409,16225,56,0
,2,3410,16227,56,0
,2,3411,16229,56,0
,2,3412,16231,56,0
,2,3413,16233,56,0
,2,3414,16235,56,0
,2,3415,16237,56,0
,2,3416,16239,56,0
,2,3417,16241,56,0
,2,3418,16243,56,0
,2,3419,16245,56,0
,2,3420,16247,56,0
,2,3421,16249,56,0
,2,3422,16251,56,0
,2,3423,16253,56,0
,2,3424,16255,56,0
,2,3425,16257,56,0
,2,3426,16259,56,0
,2,3427,16261,56,0
,2,3428,16263,56,0
,2,3429,16265,56,0
,2,3430,16267,56,0
,2,3431,16269,56,0
,2,3432,16271,56,0
,2,3433,16273,56,0
,2,3434,16275,56,0
,2,3435,16277,56,0
,2,3436,16279,56,0
,2,3437,16281,56,0
,2,3438,16283,56,0
,2,3439,16285,56,0
,2,3440,16287,56,0
,2,3441,16289,56,0
,2,3442,16291,56,0
,2,3443,16293,56,0
,2,3444,16295,56,0
,2,3445,16297,56,0
,2,3446,16299,56,0
,2,3447,16301,56,0
,2,3448,16303,56,0
,2,3449,16305,56,0
,2,3450,16307,56,0
,2,3451,16309,56,0
,2,3452,16311,56,0
,2,3453,16313,56,0
,2,3454,16315,56,0
,2,3455,16317,56,0
,2,3456,16319,56,0
,2,3457,16321,56,0
,2,3458,16323,56,0
,2,3459,16325,56,0
,2,3460,16327,56,0
,2,3461,16329,56,0
,2,3462,16331,56,0
,2,3463,16333,56,0
,2,3464,16335,56,0
,2,3465,16337,56,0
,2,3466,16339,56,0
,2,3467,16341,56,0
,2,3468,16343,56,0
,2,3469,16345,56,0
,2,3470,16347,56,0
,2,3471,16349,56,0
,2,3472,16351,56,0
,2,3473,16353,56,0
,2,3474,16355,56,0
,2,3475,16357,56,0
,2,3476,16359,56,0
,2,3477,16361,56,0
,2,3478,16363,56,0
,2,3479,16365,56,0
,2,3480,16367,56,0
,2,3481,16369,56,0
,2,3482,16371,56,0
,2,3483,16373,56,0
,2,3484,16375,56,0
,2,3485,16377,56,0
,2,3486,16379,56,0
,2,3487,16381,56,0
,2,3488,16383,56,0
,2,3489,16385,56,0
,2,3490,16387,56,0
,2,3491,16389,56,0
,2,3492,16391,56,0
,2,3493,16393,56,0
,2,3494,16395,56,0
,2,3495,16397,56,0
,2,3496,16399,56,0
,2,3497,16401,56,0
,2,3498,16403,56,0
,2,3499,16405,56,0
,2,3500,16407,56,0
,2,3501,16409,56,0
,2,3502,16411,56,0
,2,3503,16413,56,0
,2,3504,16415,56,0
,2,3505,16417,56,0
,2,3506,16419,56,0
,2,3507,16421,56,0
,2,3508,16423,56,0
,2,3509,16425,56,0
,2,3510,16427,56,0
,2,3511,16429,56,0
,2,3512,16431,56,0
,2,3513,16433,56,0
,2,3514,16435,56,0
,2,3515,16437,56,0
,2,3516,16439,56,0
,2,3517,16441,56,0
,2,3518,16443,56,0
,2,3519,16445,56,0
,2,3520,16447,56,0
,2,3521,16449,56,0
,2,3522,16451,56,0
,2,3523,16453,56,0
,2,3524,16455,56,0
,2,3525,16457,56,0
,2,3526,16459,56,0
,2,3527,16461,56,0
,2,3528,16463,56,0
,2,3529,16465,56,0
,2,3530,16467,56,0
,2,3531,16469,56,0
,2,3532,16471,56,0
,2,3533,16473,56,0
,2,3534,16475,56,0
,2,3535,16477,56,0
,2,3536,16479,56,0
,2,3537,16481,56,0
,2,3538,16483,56,0
,2,3539,16485,56,0
,2,3540,16487,56,0
,2,3541,16489,56,0
,2,3542,16491,56,0
,2,3543,16493,56,0
,2,3544,16495,56,0
,2,3545,16497,56,0
,2,3546,16499,56,0
,2,3547,16501,56,0
,2,3548,16503,56,0
,2,3549,16505,56,0
,2,3550,16507,56,0
,2,3551,16509,56,0
,2,3552,16511,56,0
,2,3553,16513,56,0
,2,3554,16515,56,0
,2,3555,16517,56,0
,2,3556,16519,56,0
,2,3557,16521,56,0
,2,3558,16523,56,0
,2,3559,16525,56,0
,2,3560,16527,56,0
,2,3561,16529,56,0
,2,3562,16531,56,0
,2,3563,16533,56,0
,2,3564,16535,56,0
,2,3565,16537,56,0
,2,3566,16539,56,0
,2,3567,16541,56,0
,2,3568,16543,56,0
,2,3569,16545,56,0
,2,3570,16547,56,0
,2,3571,16549,56,0
,2,3572,16551,56,0
,2,3573,16553,56,0
,2,3574,16555,56,0
,2,3575,16557,56,0
,2,3576,16559,56,0
,2,3577,16561,56,0
,2,3578,16563,56,0
,2,3579,16565,56,0
,2,3580,16567,56,0
,2,3581,16569,56,0
,2,3582,16571,56,0
,2,3583,16573,56,0
,2,3584,16575,56,0
,2,3585,16577,56,0
,2,3586,16579,56,0
,2,3587,16581,56,0
,2,3588,16583,56,0
,2,3589,16585,56,0
,2,3590,16587,56,0
,2,3591,16589,56,0
,2,3592,16591,56,0
,2,3593,16593,56,0
,2,3594,16595,56,0
,2,3595,16597,56,0
,2,3596,16599,56,0
,2,3597,16601,56,0
,2,3598,16603,56,0
,2,3599,16605,56,0
,2,3600,16607,56,0
,2,3601,16609,56,0
,2,3602,16611,56,0
,2,3603,16613,56,0
,2,3604,16615,56,0
,2,3605,16617,56,0
,2,3606,16619,56,0
,2,3607,16621,56,0
,2,3608,16623,56,0
,2,3609,16625,56,0
,2,3610,16627,56,0
,2,3611,16629,56,0
,2,3612,16631,56,0
,2,3613,16633,56,0
,2,3614,16635,56,0
,2,3615,16637,56,0
,2,3616,16639,56,0
,2,3617,16641,56,0
,2,3618,16643,56,0
,2,3619,16645,56,0
,2,3620,16647,56,0
,2,3621,16649,56,0
,2,3622,16651,56,0
,2,3623,16653,56,0
,2,3624,16655,56,0
,2,3625,16657,56,0
,2,3626,16659,56,0
,2,3627,16661,56,0
,2,3628,16663,56,0
,2,3629,16665,56,0
,2,3630,16667,56,0
,2,3631,16669,56,0
,2,3632,16671,56,0
,2,3633,16673,56,0
,2,3634,16675,56,0
,2,3635,16677,56,0
,2,3636,16679,56,0
,2,3637,16681,56,0
,2,3638,16683,56,0
,2,3639,16685,56,0
,2,3640,16687,56,0
,2,3641,16689,56,0
,2,3642,16691,56,0
,2,3643,16693,56,0
,2,3644,16695,56,0
,2,3645,16697,56,0
,2,3646,16699,56,0
,2,3647,16701,56,0
,2,3648,16703,56,0
,2,3649,16705,56,0
,2,3650,16707,56,0
,2,3651,16709,56,0
,2,3652,16711,56,0
,2,3653,16713,56,0
,2,3654,16715,56,0
,2,3655,16717,56,0
,2,3656,16719,56,0
,2,3657,16721,56,0
,2,3658,16723,56,0
,2,3659,16725,56,0
,2,3660,16727,56,0
,2,3661,16729,56,0
,2,3662,16731,56,0
,2,3663,16733,56,0
,2,3664,16735,56,0
,2,3665,16737,56,0
,2,3666,16739,56,0
,2,3667,16741,56,0
,2,3668,16743,56,0
,2,3669,16745,56,0
,2,3670,16747,56,0
,2,3671,16749,56,0
,2,3672,16751,56,0
,2,3673,16753,56,0
,2,3674,16755,56,0
,2,3675,16757,56,0
,2,3676,16759,56,0
,2,3677,16761,56,0
,2,3678,16763,56,0
,2,3679,16765,56,0
,2,3680,16767,56,0
,2,3681,16769,56,0
,2,3682,16771,56,0
,2,3683,16773,56,0
,2,3684,16775,56,0
,2,3685,16777,56,0
,2,3686,16779,56,0
,2,3687,16781,56,0
,2,3688,16783,56,0
,2,3689,16785,56,0
,2,3690,16787,56,0
,2,3691,16789,56,0
,2,3692,16791,56,0
,2,3693,16793,56,0
,2,3694,16795,56,0
,2,3695,16797,56,0
,2,3696,16799,56,0
,2,3697,16801,56,0
,2,3698,16803,56,0
,2,3699,16805,56,0
,2,3700,16807,56,0
,2,3701,16809,56,0
,2,3702,16811,56,0
,2,3703,16813,56,0
,2,3704,16815,56,0
,2,3705,16817,56,0
,2,3706,16819,56,0
,2,3707,16821,56,0
,2,3708,16823,56,0
,2,3709,16825,56,0
,2,3710,16827,56,0
,2,3711,16829,56,0
,2,3712,16831,56,0
,2,3713,16833,56,0
,2,3714,16835,56,0
,2,3715,16837,56,0
,2,3716,16839,56,0
,2,3717,16841,56,0
,2,3718,16843,56,0
,2,3719,16845,56,0
,2,3720,16847,56,0
,2,3721,16849,56,0
,2,3722,16851,56,0
,2,3723,16853,56,0
,2,3724,16855,56,0
,2,3725,16857,56,0
,2,3726,16859,56,0
,2,3727,16861,56,0
,2,3728,16863,56,0
,2,3729,16865,56,0
,2,3730,16867,56,0
,2,3731,16869,56,0
,2,3732,16871,56,0
,2,3733,16873,56,0
,2,3734,16875,56,0
,2,3735,16877,56,0
,2,3736,16879,56,0
,2,3737,16881,56,0
,2,3738,16883,56,0
,2,3739,16885,56,0
,2,3740,16887,56,0
,2,3741,16889,56,0
,2,3742,16891,56,0
,2,3743,16893,56,0
,2,3744,16895,56,0
,2,3745,16897,56,0
,2,3746,16899,56,0
,2,3747,16901,56,0
,2,3748,16903,56,0
,2,3749,16905,56,0
,2,3750,16907,56,0
,2,3751,16909,56,0
,2,3752,16911,56,0
,2,3753,16913,56,0
,2,3754,16915,56,0
,2,3755,16917,56,0
,2,3756,16919,56,0
,2,3757,16921,56,0
,2,3758,16923,56,0
,2,3759,16925,56,0
,2,3760,16927,56,0
,2,3761,16929,56,0
,2,3762,16931,56,0
,2,3763,16933,56,0
,2,3764,16935,56,0
,2,3765,16937,56,0
,2,3766,16939,56,0
,2,3767,16941,56,0
,2,3768,16943,56,0
,2,3769,16945,56,0
,2,3770,16947,56,0
,2,3771,16949,56,0
,2,3772,16951,56,0
,2,3773,16953,56,0
,2,3774,16955,56,0
,2,3775,16957,56,0
,2,3776,16959,56,0
,2,3777,16961,56,0
,2,3778,16963,56,0
,2,3779,16965,56,0
,2,3780,16967,56,0
,2,3781,16969,56,0
,2,3782,16971,56,0
,2,3783,16973,56,0
,2,3784,16975,56,0
,2,3785,16977,56,0
,2,3786,16979,56,0
,2,3787,16981,56,0
,2,3788,16983,56,0
,2,3789,16985,56,0
,2,3790,16987,56,0
,2,3791,16989,56,0
,2,3792,16991,56,0
,2,3793,16993,56,0
,2,3794,16995,56,0
,2,3795,16997,56,0
,2,3796,16999,56,0
,2,3797,17001,56,0
,2,3798,17003,56,0
,2,3799,17005,56,0
,2,3800,17007,56,0
,2,3801,17009,56,0
,2,3802,17011,56,0
,2,3803,17013,56,0
,2,3804,17015,56,0
,2,3805,17017,56,0
,2,3806,17019,56,0
,2,3807,17021,56,0
,2,3808,17023,56,0
,2,3809,17025,56,0
,2,3810,17027,56,0
,2,3811,17029,56,0
,2,3812,17031,56,0
,2,3813,17033,56,0
,2,3814,17035,56,0
,2,3815,17037,56,0
,2,3816,17039,56,0
,2,3817,17041,56,0
,2,3818,17043,56,0
,2,3819,17045,56,0
,2,3820,17047,56,0
,2,3821,17049,56,0
,2,3822,17051,56,0
,2,3823,17053,56,0
,2,3824,17055,56,0
,2,3825,17057,56,0
,2,3826,17059,56,0
,2,3827,17061,56,0
,2,3828,17063,56,0
,2,3829,17065,56,0
,2,3830,17067,56,0
,2,3831,17069,56,0
,2,3832,17071,56,0
,2,3833,17073,56,0
,2,3834,17075,56,0
,2,3835,17077,56,0
,2,3836,17079,56,0
,2,3837,17081,56,0
,2,3838,17083,56,0
,2,3839,17085,56,0
,2,3840,17087,56,0
,2,3841,17089,56,0
,2,3842,17091,56,0
,2,3843,17093,56,0
,2,3844,17095,56,0
,2,3845,17097,56,0
,2,3846,17099,56,0
,2,3847,17101,56,0
,2,3848,17103,56,0
,2,3849,17105,56,0
,2,3850,17107,56,0
,2,3851,17109,56,0
,2,3852,17111,56,0
,2,3853,17113,56,0
,2,3854,17115,56,0
,2,3855,17117,56,0
,2,3856,17119,56,0
,2,3857,17121,56,0
,2,3858,17123,56,0
,2,3859,17125,56,0
,2,3860,17127,56,0
,2,3861,17129,56,0
,2,3862,17131,56,0
,2,3863,17133,56,0
,2,3864,17135,56,0
,2,3865,17137,56,0
,2,3866,17139,56,0
,2,3867,17141,56,0
,2,3868,17143,56,0
,2,3869,17145,56,0
,2,3870,17147,56,0
,2,3871,17149,56,0
,2,3872,17151,56,0
,2,3873,17153,56,0
,2,3874,17155,56,0
,2,3875,17157,56,0
,2,3876,17159,56,0
,2,3877,17161,56,0
,2,3878,17163,56,0
,2,3879,17165,56,0
,2,3880,17167,56,0
,2,3881,17169,56,0
,2,3882,17171,56,0
,2,3883,17173,56,0
,2,3884,17175,56,0
,2,3885,17177,56,0
,2,3886,17179,56,0
,2,3887,17181,56,0
,2,3888,17183,56,0
,2,3889,17185,56,0
,2,3890,17187,56,0
,2,3891,17189,56,0
,2,3892,17191,56,0
,2,3893,17193,56,0
,2,3894,17195,56,0
,2,3895,17197,56,0
,2,3896,17199,56,0
,2,3897,17201,56,0
,2,3898,17203,56,0
,2,3899,17205,56,0
,2,3900,17207,56,0
,2,3901,17209,56,0
,2,3902,17211,56,0
,2,3903,17213,56,0
,2,3904,17215,56,0
,2,3905,17217,56,0
,2,3906,17219,56,0
,2,3907,17221,56,0
,2,3908,17223,56,0
,2,3909,17225,56,0
,2,3910,17227,56,0
,2,3911,17229,56,0
,2,3912,17231,56,0
,2,3913,17233,56,0
,2,3914,17235,56,0
,2,3915,17237,56,0
,2,3916,17239,56,0
,2,3917,17241,56,0
,2,3918,17243,56,0
,2,3919,17245,56,0
,2,3920,17247,56,0
,2,3921,17249,56,0
,2,3922,17251,56,0
,2,3923,17253,56,0
,2,3924,17255,56,0
,2,3925,17257,56,0
,2,3926,17259,56,0
,2,3927,17261,56,0
,2,3928,17263,56,0
,2,3929,17265,56,0
,2,3930,17267,56,0
,2,3931,17269,56,0
,2,3932,17271,56,0
,2,3933,17273,56,0
,2,3934,17275,56,0
,2,3935,17277,56,0
,2,3936,17279,56,0
,2,3937,17281,56,0
,2,3938,17283,56,0
,2,3939,17285,56,0
,2,3940,17287,56,0
,2,3941,17289,56,0
,2,3942,17291,56,0
,2,3943,17293,56,0
,2,3944,17295,56,0
,2,3945,17297,56,0
,2,3946,17299,56,0
,2,3947,17301,56,0
,2,3948,17303,56,0
,2,3949,17305,56,0
,2,3950,17307,56,0
,2,3951,17309,56,0
,2,3952,17311,56,0
,2,3953,17313,56,0
,2,3954,17315,56,0
,2,3955,17317,56,0
,2,3956,17319,56,0
,2,3957,17321,56,0
,2,3958,17323,56,0
,2,3959,17325,56,0
,2,3960,17327,56,0
,2,3961,17329,56,0
,2,3962,17331,56,0
,2,3963,17333,56,0
,2,3964,17335,56,0
,2,3965,17337,56,0
,2,3966,17339,56,0
,2,3967,17341,56,0
,2,3968,17343,56,0
,2,3969,17345,56,0
,2,3970,17347,56,0
,2,3971,17349,56,0
,2,3972,17351,56,0
,2,3973,17353,56,0
,2,3974,17355,56,0
,2,3975,17357,56,0
,2,3976,17359,56,0
,2,3977,17361,56,0
,2,3978,17363,56,0
,2,3979,17365,56,0
,2,3980,17367,56,0
,2,3981,17369,56,0
,2,3982,17371,56,0
,2,3983,17373,56,0
,2,3984,17375,56,0
,2,3985,17377,56,0
,2,3986,17379,56,0
,2,3987,17381,56,0
,2,3988,17383,56,0
,2,3989,17385,56,0
,2,3990,17387,56,0
,2,3991,17389,56,0
,2,3992,17391,56,0
,2,3993,17393,56,0
,2,3994,17395,56,0
,2,3995,17397,56,0
,2,3996,17399,56,0
,2,3997,17401,56,0
,2,3998,17403,56,0
,2,3999,17405,56,0
,2,4000,17407,56,0
,2,4001,17409,56,0
,2,4002,17411,56,0
,2,4003,17413,56,0
,2,4004,17415,56,0
,2,4005,17417,56,0
,2,4006,17419,56,0
,2,4007,17421,56,0
,2,4008,17423,56,0
,2,4009,17425,56,0
,2,4010,17427,56,0
,2,4011,17429,56,0
,2,4012,17431,56,0
,2,4013,17433,56,0
,2,4014,17435,56,0
,2,4015,17437,56,0
,2,4016,17439,56,0
,2,4017,17441,56,0
,2,4018,17443,56,0
,2,4019,17445,56,0
,2,4020,17447,56,0
,2,4021,17449,56,0
,2,4022,17451,56,0
,2,4023,17453,56,0
,2,4024,17455,56,0
,2,4025,17457,56,0
,2,4026,17459,56,0
,2,4027,17461,56,0
,2,4028,17463,56,0
,2,4029,17465,56,0
,2,4030,17467,56,0
,2,4031,17469,56,0
,2,4032,17471,56,0
,2,4033,17473,56,0
,2,4034,17475,56,0
,2,4035,17477,56,0
,2,4036,17479,56,0
,2,4037,17481,56,0
,2,4038,17483,56,0
,2,4039,17485,56,0
,2,4040,17487,56,0
,2,4041,17489,56,0
,2,4042,17491,56,0
,2,4043,17493,56,0
,2,4044,17495,56,0
,2,4045,17497,56,0
,2,4046,17499,56,0
,2,4047,17501,56,0
,2,4048,17503,56,0
,2,4049,17505,56,0
,2,4050,17507,56,0
,2,4051,17509,56,0
,2,4052,17511,56,0
,2,4053,17513,56,0
,2,4054,17515,56,0
,2,4055,17517,56,0
,2,4056,17519,56,0
,2,4057,17521,56,0
,2,4058,17523,56,0
,2,4059,17525,56,0
,2,4060,17527,56,0
,2,4061,17529,56,0
,2,4062,17531,56,0
,2,4063,17533,56,0
,2,4064,17535,56,0
,2,4065,17537,56,0
,2,4066,17539,56,0
,2,4067,17541,56,0
,2,4068,17543,56,0
,2,4069,17545,56,0
,2,4070,17547,56,0
,2,4071,17549,56,0
,2,4072,17551,56,0
,2,4073,17553,56,0
,2,4074,17555,56,0
,2,4075,17557,56,0
,2,4076,17559,56,0
,2,4077,17561,56,0
,2,4078,17563,56,0
,2,4079,17565,56,0
,2,4080,17567,56,0
,2,4081,17569,56,0
,2,4082,17571,56,0
,2,4083,17573,56,0
,2,4084,17575,56,0
,2,4085,17577,56,0
,2,4086,17579,56,0
,2,4087,17581,56,0
,2,4088,17583,56,0
,2,4089,17585,56,0
,2,4090,17587,56,0
,2,4091,17589,56,0
,2,4092,17591,56,0
,2,4093,17593,56,0
,2,4094,17595,56,0
,2,4095,17597,56,0
,2,4096,17599,56,0
,2,4097,17601,56,0
,2,4098,17603,56,0
,2,4099,17605,56,0
,2,4100,17607,56,0
,2,4101,17609,56,0
,2,4102,17611,56,0
,2,4103,17613,56,0
,2,4104,17615,56,0
,2,4105,17617,56,0
,2,4106,17619,56,0
,2,4107,17621,56,0
,2,4108,17623,56,0
,2,4109,17625,56,0
,2,4110,17627,56,0
,2,4111,17629,56,0
,2,4112,17631,56,0
,2,4113,17633,56,0
,2,4114,17635,56,0
,2,4115,17637,56,0
,2,4116,17639,56,0
,2,4117,17641,56,0
,2,4118,17643,56,0
,2,4119,17645,56,0
,2,4120,17647,56,0
,2,4121,17649,56,0
,2,4122,17651,56,0
,2,4123,17653,56,0
,2,4124,17655,56,0
,2,4125,17657,56,0
,2,4126,17659,56,0
,2,4127,17661,56,0
,2,4128,17663,56,0
,2,4129,17665,56,0
,2,4130,17667,56,0
,2,4131,17669,56,0
,2,4132,17671,56,0
,2,4133,17673,56,0
,2,4134,17675,56,0
,2,4135,17677,56,0
,2,4136,17679,56,0
,2,4137,17681,56,0
,2,4138,17683,56,0
,2,4139,17685,56,0
,2,4140,17687,56,0
,2,4141,17689,56,0
,2,4142,17691,56,0
,2,4143,17693,56,0
,2,4144,17695,56,0
,2,4145,17697,56,0
,2,4146,17699,56,0
,2,4147,17701,56,0
,2,4148,17703,56,0
,2,4149,17705,56,0
,2,4150,17707,56,0
,2,4151,17709,56,0
,2,4152,17711,56,0
,2,4153,17713,56,0
,2,4154,17715,56,0
,2,4155,17717,56,0
,2,4156,17719,56,0
,2,4157,17721,56,0
,2,4158,17723,56,0
,2,4159,17725,56,0
,2,4160,17727,56,0
,2,4161,17729,56,0
,2,4162,17731,56,0
,2,4163,17733,56,0
,2,4164,17735,56,0
,2,4165,17737,56,0
,2,4166,17739,56,0
,2,4167,17741,56,0
,2,4168,17743,56,0
,2,4169,17745,56,0
,2,4170,17747,56,0
,2,4171,17749,56,0
,2,4172,17751,56,0
,2,4173,17753,56,0
,2,4174,17755,56,0
,2,4175,17757,56,0
,2,4176,17759,56,0
,2,4177,17761,56,0
,2,4178,17763,56,0
,2,4179,17765,56,0
,2,4180,17767,56,0
,2,4181,17769,56,0
,2,4182,17771,56,0
,2,4183,17773,56,0
,2,4184,17775,56,0
,2,4185,17777,56,0
,2,4186,17779,56,0
,2,4187,17781,56,0
,2,4188,17783,56,0
,2,4189,17785,56,0
,2,4190,17787,56,0
,2,4191,17789,56,0
,2,4192,17791,56,0
,2,4193,17793,56,0
,2,4194,17795,56,0
,2,4195,17797,56,0
,2,4196,17799,56,0
,2,4197,17801,56,0
,2,4198,17803,56,0
,2,4199,17805,56,0
,2,4200,17807,56,0
,2,4201,17809,56,0
,2,4202,17811,56,0
,2,4203,17813,56,0
,2,4204,17815,56,0
,2,4205,17817,56,0
,2,4206,17819,56,0
,2,4207,17821,56,0
,2,4208,17823,56,0
,2,4209,17825,56,0
,2,4210,17827,56,0
,2,4211,17829,56,0
,2,4212,17831,56,0
,2,4213,17833,56,0
,2,4214,17835,56,0
,2,4215,17837,56,0
,2,4216,17839,56,0
,2,4217,17841,56,0
,2,4218,17843,56,0
,2,4219,17845,56,0
,2,4220,17847,56,0
,2,4221,17849,56,0
,2,4222,17851,56,0
,2,4223,17853,56,0
,2,4224,17855,56,0
,2,4225,17857,56,0
,2,4226,17859,56,0
,2,4227,17861,56,0
,2,4228,17863,56,0
,2,4229,17865,56,0
,2,4230,17867,56,0
,2,4231,17869,56,0
,2,4232,17871,56,0
,2,4233,17873,56,0
,2,4234,17875,56,0
,2,4235,17877,56,0
,2,4236,17879,56,0
,2,4237,17881,56,0
,2,4238,17883,56,0
,2,4239,17885,56,0
,2,4240,17887,56,0
,2,4241,17889,56,0
,2,4242,17891,56,0
,2,4243,17893,56,0
,2,4244,17895,56,0
,2,4245,17897,56,0
,2,4246,17899,56,0
,2,4247,17901,56,0
,2,4248,17903,56,0
,2,4249,17905,56,0
,2,4250,17907,56,0
,2,4251,17909,56,0
,2,4252,17911,56,0
,2,4253,17913,56,0
,2,4254,17915,56,0
,2,4255,17917,56,0
,2,4256,17919,56,0
,2,4257,17921,56,0
,2,4258,17923,56,0
,2,4259,17925,56,0
,2,4260,17927,56,0
,2,4261,17929,56,0
,2,4262,17931,56,0
,2,4263,17933,56,0
,2,4264,17935,56,0
,2,4265,17937,56,0
,2,4266,17939,56,0
,2,4267,17941,56,0
,2,4268,17943,56,0
,2,4269,17945,56,0
,2,4270,17947,56,0
,2,4271,17949,56,0
,2,4272,17951,56,0
,2,4273,17953,56,0
,2,4274,17955,56,0
,2,4275,17957,56,0
,2,4276,17959,56,0
,2,4277,17961,56,0
,2,4278,17963,56,0
,2,4279,17965,56,0
,2,4280,17967,56,0
,2,4281,17969,56,0
,2,4282,17971,56,0
,2,4283,17973,56,0
,2,4284,17975,56,0
,2,4285,17977,56,0
,2,4286,17979,56,0
,2,4287,17981,56,0
,2,4288,17983,56,0
,2,4289,17985,56,0
,2,4290,17987,56,0
,2,4291,17989,56,0
,2,4292,17991,56,0
,2,4293,17993,56,0
,2,4294,17995,56,0
,2,4295,17997,56,0
,2,4296,17999,56,0
,2,4297,18001,56,0
,2,4298,18003,56,0
,2,4299,18005,56,0
,2,4300,18007,56,0
,2,4301,18009,56,0
,2,4302,18011,56,0
,2,4303,18013,56,0
,2,4304,18015,56,0
,2,4305,18017,56,0
,2,4306,18019,56,0
,2,4307,18021,56,0
,2,4308,18023,56,0
,2,4309,18025,56,0
,2,4310,18027,56,0
,2,4311,18029,56,0
,2,4312,18031,56,0
,2,4313,18033,56,0
,2,4314,18035,56,0
,2,4315,18037,56,0
,2,4316,18039,56,0
,2,4317,18041,56,0
,2,4318,18043,56,0
,2,4319,18045,56,0
,2,4320,18047,56,0
,2,4321,18049,56,0
,2,4322,18051,56,0
,2,4323,18053,56,0
,2,4324,18055,56,0
,2,4325,18057,56,0
,2,4326,18059,56,0
,2,4327,18061,56,0
,2,4328,18063,56,0
,2,4329,18065,56,0
,2,4330,18067,56,0
,2,4331,18069,56,0
,2,4332,18071,56,0
,2,4333,18073,56,0
,2,4334,18075,56,0
,2,4335,18077,56,0
,2,4336,18079,56,0
,2,4337,18081,56,0
,2,4338,18083,56,0
,2,4339,18085,56,0
,2,4340,18087,56,0
,2,4341,18089,56,0
,2,4342,18091,56,0
,2,4343,18093,56,0
,2,4344,18095,56,0
,2,4345,18097,56,0
,2,4346,18099,56,0
,2,4347,18101,56,0
,2,4348,18103,56,0
,2,4349,18105,56,0
,2,4350,18107,56,0
,2,4351,18109,56,0
,2,4352,18111,56,0
,2,4353,18113,56,0
,2,4354,18115,56,0
,2,4355,18117,56,0
,2,4356,18119,56,0
,2,4357,18121,56,0
,2,4358,18123,56,0
,2,4359,18125,56,0
,2,4360,18127,56,0
,2,4361,18129,56,0
,2,4362,18131,56,0
,2,4363,18133,56,0
,2,4364,18135,56,0
,2,4365,18137,56,0
,2,4366,18139,56,0
,2,4367,18141,56,0
,2,4368,18143,56,0
,2,4369,18145,56,0
,2,4370,18147,56,0
,2,4371,18149,56,0
,2,4372,18151,56,0
,2,4373,18153,56,0
,2,4374,18155,56,0
,2,4375,18157,56,0
,2,4376,18159,56,0
,2,4377,18161,56,0
,2,4378,18163,56,0
,2,4379,18165,56,0
,2,4380,18167,56,0
,2,4381,18169,56,0
,2,4382,18171,56,0
,2,4383,18173,56,0
,2,4384,18175,56,0
,2,4385,18177,56,0
,2,4386,18179,56,0
,2,4387,18181,56,0
,2,4388,18183,56,0
,2,4389,18185,56,0
,2,4390,18187,56,0
,2,4391,18189,56,0
,2,4392,18191,56,0
,2,4393,18193,56,0
,2,4394,18195,56,0
,2,4395,18197,56,0
,2,4396,18199,56,0
,2,4397,18201,56,0
,2,4398,18203,56,0
,2,4399,18205,56,0
,2,4400,18207,56,0
,2,4401,18209,56,0
,2,4402,18211,56,0
,2,4403,18213,56,0
,2,4404,18215,56,0
,2,4405,18217,56,0
,2,4406,18219,56,0
,2,4407,18221,56,0
,2,4408,18223,56,0
,2,4409,18225,56,0
,2,4410,18227,56,0
,2,4411,18229,56,0
,2,4412,18231,56,0
,2,4413,18233,56,0
,2,4414,18235,56,0
,2,4415,18237,56,0
,2,4416,18239,56,0
,2,4417,18241,56,0
,2,4418,18243,56,0
,2,4419,18245,56,0
,2,4420,18247,56,0
,2,4421,18249,56,0
,2,4422,18251,56,0
,2,4423,18253,56,0
,2,4424,18255,56,0
,2,4425,18257,56,0
,2,4426,18259,56,0
,2,4427,18261,56,0
,2,4428,18263,56,0
,2,4429,18265,56,0
,2,4430,18267,56,0
,2,4431,18269,56,0
,2,4432,18271,56,0
,2,4433,18273,56,0
,2,4434,18275,56,0
,2,4435,18277,56,0
,2,4436,18279,56,0
,2,4437,18281,56,0
,2,4438,18283,56,0
,2,4439,18285,56,0
,2,4440,18287,56,0
,2,4441,18289,56,0
,2,4442,18291,56,0
,2,4443,18293,56,0
,2,4444,18295,56,0
,2,4445,18297,56,0
,2,4446,18299,56,0
,2,4447,18301,56,0
,2,4448,18303,56,0
,2,4449,18305,56,0
,2,4450,18307,56,0
,2,4451,18309,56,0
,2,4452,18311,56,0
,2,4453,18313,56,0
,2,4454,18315,56,0
,2,4455,18317,56,0
,2,4456,18319,56,0
,2,4457,18321,56,0
,2,4458,18323,56,0
,2,4459,18325,56,0
,2,4460,18327,56,0
,2,4461,18329,56,0
,2,4462,18331,56,0
,2,4463,18333,56,0
,2,4464,18335,56,0
,2,4465,18337,56,0
,2,4466,18339,56,0
,2,4467,18341,56,0
,2,4468,18343,56,0
,2,4469,18345,56,0
,2,4470,18347,56,0
,2,4471,18349,56,0
,2,4472,18351,56,0
,2,4473,18353,56,0
,2,4474,18355,56,0
,2,4475,18357,56,0
,2,4476,18359,56,0
,2,4477,18361,56,0
,2,4478,18363,56,0
,2,4479,18365,56,0
,2,4480,18367,56,0
,2,4481,18369,56,0
,2,4482,18371,56,0
,2,4483,18373,56,0
,2,4484,18375,56,0
,2,4485,18377,56,0
,2,4486,18379,56,0
,2,4487,18381,56,0
,2,4488,18383,56,0
,2,4489,18385,56,0
,2,4490,18387,56,0
,2,4491,18389,56,0
,2,4492,18391,56,0
,2,4493,18393,56,0
,2,4494,18395,56,0
,2,4495,18397,56,0
,2,4496,18399,56,0
,2,4497,18401,56,0
,2,4498,18403,56,0
,2,4499,18405,56,0
,2,4500,18407,56,0
,2,4501,18409,56,0
,2,4502,18411,56,0
,2,4503,18413,56,0
,2,4504,18415,56,0
,2,4505,18417,56,0
,2,4506,18419,56,0
,2,4507,18421,56,0
,2,4508,18423,56,0
,2,4509,18425,56,0
,2,4510,18427,56,0
,2,4511,18429,56,0
,2,4512,18431,56,0
,2,4513,18433,56,0
,2,4514,18435,56,0
,2,4515,18437,56,0
,2,4516,18439,56,0
,2,4517,18441,56,0
,2,4518,18443,56,0
,2,4519,18445,56,0
,2,4520,18447,56,0
,2,4521,18449,56,0
,2,4522,18451,56,0
,2,4523,18453,56,0
,2,4524,18455,56,0
,2,4525,18457,56,0
,2,4526,18459,56,0
,2,4527,18461,56,0
,2,4528,18463,56,0
,2,4529,18465,56,0
,2,4530,18467,56,0
,2,4531,18469,56,0
,2,4532,18471,56,0
,2,4533,18473,56,0
,2,4534,18475,56,0
,2,4535,18477,56,0
,2,4536,18479,56,0
,2,4537,18481,56,0
,2,4538,18483,56,0
,2,4539,18485,56,0
,2,4540,18487,56,0
,2,4541,18489,56,0
,2,4542,18491,56,0
,2,4543,18493,56,0
,2,4544,18495,56,0
,2,4545,18497,56,0
,2,4546,18499,56,0
,2,4547,18501,56,0
,2,4548,18503,56,0
,2,4549,18505,56,0
,2,4550,18507,56,0
,2,4551,18509,56,0
,2,4552,18511,56,0
,2,4553,18513,56,0
,2,4554,18515,56,0
,2,4555,18517,56,0
,2,4556,18519,56,0
,2,4557,18521,56,0
,2,4558,18523,56,0
,2,4559,18525,56,0
,2,4560,18527,56,0
,2,4561,18529,56,0
,2,4562,18531,56,0
,2,4563,18533,56,0
,2,4564,18535,56,0
,2,4565,18537,56,0
,2,4566,18539,56,0
,2,4567,18541,56,0
,2,4568,18543,56,0
,2,4569,18545,56,0
,2,4570,18547,56,0
,2,4571,18549,56,0
,2,4572,18551,56,0
,2,4573,18553,56,0
,2,4574,18555,56,0
,2,4575,18557,56,0
,2,4576,18559,56,0
,2,4577,18561,56,0
,2,4578,18563,56,0
,2,4579,18565,56,0
,2,4580,18567,56,0
,2,4581,18569,56,0
,2,4582,18571,56,0
,2,4583,18573,56,0
,2,4584,18575,56,0
,2,4585,18577,56,0
,2,4586,18579,56,0
,2,4587,18581,56,0
,2,4588,18583,56,0
,2,4589,18585,56,0
,2,4590,18587,56,0
,2,4591,18589,56,0
,2,4592,18591,56,0
,2,4593,18593,56,0
,2,4594,18595,56,0
,2,4595,18597,56,0
,2,4596,18599,56,0
,2,4597,18601,56,0
,2,4598,18603,56,0
,2,4599,18605,56,0
,2,4600,18607,56,0
,2,4601,18609,56,0
,2,4602,18611,56,0
,2,4603,18613,56,0
,2,4604,18615,56,0
,2,4605,18617,56,0
,2,4606,18619,56,0
,2,4607,18621,56,0
,2,4608,18623,56,0
,2,4609,18625,56,0
,2,4610,18627,56,0
,2,4611,18629,56,0
,2,4612,18631,56,0
,2,4613,18633,56,0
,2,4614,18635,56,0
,2,4615,18637,56,0
,2,4616,18639,56,0
,2,4617,18641,56,0
,2,4618,18643,56,0
,2,4619,18645,56,0
,2,4620,18647,56,0
,2,4621,18649,56,0
,2,4622,18651,56,0
,2,4623,18653,56,0
,2,4624,18655,56,0
,2,4625,18657,56,0
,2,4626,18659,56,0
,2,4627,18661,56,0
,2,4628,18663,56,0
,2,4629,18665,56,0
,2,4630,18667,56,0
,2,4631,18669,56,0
,2,4632,18671,56,0
,2,4633,18673,56,0
,2,4634,18675,56,0
,2,4635,18677,56,0
,2,4636,18679,56,0
,2,4637,18681,56,0
,2,4638,18683,56,0
,2,4639,18685,56,0
,2,4640,18687,56,0
,2,4641,18689,56,0
,2,4642,18691,56,0
,2,4643,18693,56,0
,2,4644,18695,56,0
,2,4645,18697,56,0
,2,4646,18699,56,0
,2,4647,18701,56,0
,2,4648,18703,56,0
,2,4649,18705,56,0
,2,4650,18707,56,0
,2,4651,18709,56,0
,2,4652,18711,56,0
,2,4653,18713,56,0
,2,4654,18715,56,0
,2,4655,18717,56,0
,2,4656,18719,56,0
,2,4657,18721,56,0
,2,4658,18723,56,0
,2,4659,18725,56,0
,2,4660,18727,56,0
,2,4661,18729,56,0
,2,4662,18731,56,0
,2,4663,18733,56,0
,2,4664,18735,56,0
,2,4665,18737,56,0
,2,4666,18739,56,0
,2,4667,18741,56,0
,2,4668,18743,56,0
,2,4669,18745,56,0
,2,4670,18747,56,0
,2,4671,18749,56,0
,2,4672,18751,56,0
,2,4673,18753,56,0
,2,4674,18755,56,0
,2,4675,18757,56,0
,2,4676,18759,56,0
,2,4677,18761,56,0
,2,4678,18763,56,0
,2,4679,18765,56,0
,2,4680,18767,56,0
,2,4681,18769,56,0
,2,4682,18771,56,0
,2,4683,18773,56,0
,2,4684,18775,56,0
,2,4685,18777,56,0
,2,4686,18779,56,0
,2,4687,18781,56,0
,2,4688,18783,56,0
,2,4689,18785,56,0
,2,4690,18787,56,0
,2,4691,18789,56,0
,2,4692,18791,56,0
,2,4693,18793,56,0
,2,4694,18795,56,0
,2,4695,18797,56,0
,2,4696,18799,56,0
,2,4697,18801,56,0
,2,4698,18803,56,0
,2,4699,18805,56,0
,2,4700,18807,56,0
,2,4701,18809,56,0
,2,4702,18811,56,0
,2,4703,18813,56,0
,2,4704,18815,56,0
,2,4705,18817,56,0
,2,4706,18819,56,0
,2,4707,18821,56,0
,2,4708,18823,56,0
,2,4709,18825,56,0
,2,4710,18827,56,0
,2,4711,18829,56,0
,2,4712,18831,56,0
,2,4713,18833,56,0
,2,4714,18835,56,0
,2,4715,18837,56,0
,2,4716,18839,56,0
,2,4717,18841,56,0
,2,4718,18843,56,0
,2,4719,18845,56,0
,2,4720,18847,56,0
,2,4721,18849,56,0
,2,4722,18851,56,0
,2,4723,18853,56,0
,2,4724,18855,56,0
,2,4725,18857,56,0
,2,4726,18859,56,0
,2,4727,18861,56,0
,2,4728,18863,56,0
,2,4729,18865,56,0
,2,4730,18867,56,0
,2,4731,18869,56,0
,2,4732,18871,56,0
,2,4733,18873,56,0
,2,4734,18875,56,0
,2,4735,18877,56,0
,2,4736,18879,56,0
,2,4737,18881,56,0
,2,4738,18883,56,0
,2,4739,18885,56,0
,2,4740,18887,56,0
,2,4741,18889,56,0
,2,4742,18891,56,0
,2,4743,18893,56,0
,2,4744,18895,56,0
,2,4745,18897,56,0
,2,4746,18899,56,0
,2,4747,18901,56,0
,2,4748,18903,56,0
,2,4749,18905,56,0
,2,4750,18907,56,0
,2,4751,18909,56,0
,2,4752,18911,56,0
,2,4753,18913,56,0
,2,4754,18915,56,0
,2,4755,18917,56,0
,2,4756,18919,56,0
,2,4757,18921,56,0
,2,4758,18923,56,0
,2,4759,18925,56,0
,2,4760,18927,56,0
,2,4761,18929,56,0
,2,4762,18931,56,0
,2,4763,18933,56,0
,2,4764,18935,56,0
,2,4765,18937,56,0
,2,4766,18939,56,0
,2,4767,18941,56,0
,2,4768,18943,56,0
,2,4769,18945,56,0
,2,4770,18947,56,0
,2,4771,18949,56,0
,2,4772,18951,56,0
,2,4773,18953,56,0
,2,4774,18955,56,0
,2,4775,18957,56,0
,2,4776,18959,56,0
,2,4777,18961,56,0
,2,4778,18963,56,0
,2,4779,18965,56,0
,2,4780,18967,56,0
,2,4781,18969,56,0
,2,4782,18971,56,0
,2,4783,18973,56,0
,2,4784,18975,56,0
,2,4785,18977,56,0
,2,4786,18979,56,0
,2,4787,18981,56,0
,2,4788,18983,56,0
,2,4789,18985,56,0
,2,4790,18987,56,0
,2,4791,18989,56,0
,2,4792,18991,56,0
,2,4793,18993,56,0
,2,4794,18995,56,0
,2,4795,18997,56,0
,2,4796,18999,56,0
,2,4797,19001,56,0
,2,4798,19003,56,0
,2,4799,19005,56,0
,2,4800,19007,56,0
,2,4801,19009,56,0
,2,4802,19011,56,0
,2,4803,19013,56,0
,2,4804,19015,56,0
,2,4805,19017,56,0
,2,4806,19019,56,0
,2,4807,19021,56,0
,2,4808,19023,56,0
,2,4809,19025,56,0
,2,4810,19027,56,0
,2,4811,19029,56,0
,2,4812,19031,56,0
,2,4813,19033,56,0
,2,4814,19035,56,0
,2,4815,19037,56,0
,2,4816,19039,56,0
,2,4817,19041,56,0
,2,4818,19043,56,0
,2,4819,19045,56,0
,2,4820,19047,56,0
,2,4821,19049,56,0
,2,4822,19051,56,0
,2,4823,19053,56,0
,2,4824,19055,56,0
,2,4825,19057,56,0
,2,4826,19059,56,0
,2,4827,19061,56,0
,2,4828,19063,56,0
,2,4829,19065,56,0
,2,4830,19067,56,0
,2,4831,19069,56,0
,2,4832,19071,56,0
,2,4833,19073,56,0
,2,4834,19075,56,0
,2,4835,19077,56,0
,2,4836,19079,56,0
,2,4837,19081,56,0
,2,4838,19083,56,0
,2,4839,19085,56,0
,2,4840,19087,56,0
,2,4841,19089,56,0
,2,4842,19091,56,0
,2,4843,19093,56,0
,2,4844,19095,56,0
,2,4845,19097,56,0
,2,4846,19099,56,0
,2,4847,19101,56,0
,2,4848,19103,56,0
,2,4849,19105,56,0
,2,4850,19107,56,0
,2,4851,19109,56,0
,2,4852,19111,56,0
,2,4853,19113,56,0
,2,4854,19115,56,0
,2,4855,19117,56,0
,2,4856,19119,56,0
,2,4857,19121,56,0
,2,4858,19123,56,0
,2,4859,19125,56,0
,2,4860,19127,56,0
,2,4861,19129,56,0
,2,4862,19131,56,0
,2,4863,19133,56,0
,2,4864,19135,56,0
,2,4865,19137,56,0
,2,4866,19139,56,0
,2,4867,19141,56,0
,2,4868,19143,56,0
,2,4869,19145,56,0
,2,4870,19147,56,0
,2,4871,19149,56,0
,2,4872,19151,56,0
,2,4873,19153,56,0
,2,4874,19155,56,0
,2,4875,19157,56,0
,2,4876,19159,56,0
,2,4877,19161,56,0
,2,4878,19163,56,0
,2,4879,19165,56,0
,2,4880,19167,56,0
,2,4881,19169,56,0
,2,4882,19171,56,0
,2,4883,19173,56,0
,2,4884,19175,56,0
,2,4885,19177,56,0
,2,4886,19179,56,0
,2,4887,19181,56,0
,2,4888,19183,56,0
,2,4889,19185,56,0
,2,4890,19187,56,0
,2,4891,19189,56,0
,2,4892,19191,56,0
,2,4893,19193,56,0
,2,4894,19195,56,0
,2,4895,19197,56,0
,2,4896,19199,56,0
,2,4897,19201,56,0
,2,4898,19203,56,0
,2,4899,19205,56,0
,2,4900,19207,56,0
,2,4901,19209,56,0
,2,4902,19211,56,0
,2,4903,19213,56,0
,2,4904,19215,56,0
,2,4905,19217,56,0
,2,4906,19219,56,0
,2,4907,19221,56,0
,2,4908,19223,56,0
,2,4909,19225,56,0
,2,4910,19227,56,0
,2,4911,19229,56,0
,2,4912,19231,56,0
,2,4913,19233,56,0
,2,4914,19235,56,0
,2,4915,19237,56,0
,2,4916,19239,56,0
,2,4917,19241,56,0
,2,4918,19243,56,0
,2,4919,19245,56,0
,2,4920,19247,56,0
,2,4921,19249,56,0
,2,4922,19251,56,0
,2,4923,19253,56,0
,2,4924,19255,56,0
,2,4925,19257,56,0
,2,4926,19259,56,0
,2,4927,19261,56,0
,2,4928,19263,56,0
,2,4929,19265,56,0
,2,4930,19267,56,0
,2,4931,19269,56,0
,2,4932,19271,56,0
,2,4933,19273,56,0
,2,4934,19275,56,0
,2,4935,19277,56,0
,2,4936,19279,56,0
,2,4937,19281,56,0
,2,4938,19283,56,0
,2,4939,19285,56,0
,2,4940,19287,56,0
,2,4941,19289,56,0
,2,4942,19291,56,0
,2,4943,19293,56,0
,2,4944,19295,56,0
,2,4945,19297,56,0
,2,4946,19299,56,0
,2,4947,19301,56,0
,2,4948,19303,56,0
,2,4949,19305,56,0
,2,4950,19307,56,0
,2,4951,19309,56,0
,2,4952,19311,56,0
,2,4953,19313,56,0
,2,4954,19315,56,0
,2,4955,19317,56,0
,2,4956,19319,56,0
,2,4957,19321,56,0
,2,4958,19323,56,0
,2,4959,19325,56,0
,2,4960,19327,56,0
,2,4961,19329,56,0
,2,4962,19331,56,0
,2,4963,19333,56,0
,2,4964,19335,56,0
,2,4965,19337,56,0
,2,4966,19339,56,0
,2,4967,19341,56,0
,2,4968,19343,56,0
,2,4969,19345,56,0
,2,4970,19347,56,0
,2,4971,19349,56,0
,2,4972,19351,56,0
,2,4973,19353,56,0
,2,4974,19355,56,0
,2,4975,19357,56,0
,2,4976,19359,56,0
,2,4977,19361,56,0
,2,4978,19363,56,0
,2,4979,19365,56,0
,2,4980,19367,56,0
,2,4981,19369,56,0
,2,4982,19371,56,0
,2,4983,19373,56,0
,2,4984,19375,56,0
,2,4985,19377,56,0
,2,4986,19379,56,0
,2,4987,19381,56,0
,2,4988,19383,56,0
,2,4989,19385,56,0
,2,4990,19387,56,0
,2,4991,19389,56,0
,2,4992,19391,56,0
,2,4993,19393,56,0
,2,4994,19395,56,0
,2,4995,19397,56,0
,2,4996,19399,56,0
,2,4997,19401,56,0
,2,4998,19403,56,0
,2,4999,19405,56,0
,2,5000,19407,56,0
,2,5001,19409,56,0
,2,5002,19411,56,0
,2,5003,19413,56,0
,2,5004,19415,56,0
,2,5005,19417,56,0
,2,5006,19419,56,0
,2,5007,19421,56,0
,2,5008,19423,56,0
,2,5009,19425,56,0
,2,5010,19427,56,0
,2,5011,19429,56,0
,2,5012,19431,56,0
,2,5013,19433,56,0
,2,5014,19435,56,0
,2,5015,19437,56,0
,2,5016,19439,56,0
,2,5017,19441,56,0
,2,5018,19443,56,0
,2,5019,19445,56,0
,2,5020,19447,56,0
,2,5021,19449,56,0
,2,5022,19451,56,0
,2,5023,19453,56,0
,2,5024,19455,56,0
,2,5025,19457,56,0
,2,5026,19459,56,0
,2,5027,19461,56,0
,2,5028,19463,56,0
,2,5029,19465,56,0
,2,5030,19467,56,0
,2,5031,19469,56,0
,2,5032,19471,56,0
,2,5033,19473,56,0
,2,5034,19475,56,0
,2,5035,19477,56,0
,2,5036,19479,56,0
,2,5037,19481,56,0
,2,5038,19483,56,0
,2,5039,19485,56,0
,2,5040,19487,56,0
,2,5041,19489,56,0
,2,5042,19491,56,0
,2,5043,19493,56,0
,2,5044,19495,56,0
,2,5045,19497,56,0
,2,5046,19499,56,0
,2,5047,19501,56,0
,2,5048,19503,56,0
,2,5049,19505,56,0
,2,5050,19507,56,0
,2,5051,19509,56,0
,2,5052,19511,56,0
,2,5053,19513,56,0
,2,5054,19515,56,0
,2,5055,19517,56,0
,2,5056,19519,56,0
,2,5057,19521,56,0
,2,5058,19523,56,0
,2,5059,19525,56,0
,2,5060,19527,56,0
,2,5061,19529,56,0
,2,5062,19531,56,0
,2,5063,19533,56,0
,2,5064,19535,56,0
,2,5065,19537,56,0
,2,5066,19539,56,0
,2,5067,19541,56,0
,2,5068,19543,56,0
,2,5069,19545,56,0
,2,5070,19547,56,0
,2,5071,19549,56,0
,2,5072,19551,56,0
,2,5073,19553,56,0
,2,5074,19555,56,0
,2,5075,19557,56,0
,2,5076,19559,56,0
,2,5077,19561,56,0
,2,5078,19563,56,0
,2,5079,19565,56,0
,2,5080,19567,56,0
,2,5081,19569,56,0
,2,5082,19571,56,0
,2,5083,19573,56,0
,2,5084,19575,56,0
,2,5085,19577,56,0
,2,5086,19579,56,0
,2,5087,19581,56,0
,2,5088,19583,56,0
,2,5089,19585,56,0
,2,5090,19587,56,0
,2,5091,19589,56,0
,2,5092,19591,56,0
,2,5093,19593,56,0
,2,5094,19595,56,0
,2,5095,19597,56,0
,2,5096,19599,56,0
,2,5097,19601,56,0
,2,5098,19603,56,0
,2,5099,19605,56,0
,2,5100,19607,56,0
,2,5101,19609,56,0
,2,5102,19611,56,0
,2,5103,19613,56,0
,2,5104,19615,56,0
,2,5105,19617,56,0
,2,5106,19619,56,0
,2,5107,19621,56,0
,2,5108,19623,56,0
,2,5109,19625,56,0
,2,5110,19627,56,0
,2,5111,19629,56,0
,2,5112,19631,56,0
,2,5113,19633,56,0
,2,5114,19635,56,0
,2,5115,19637,56,0
,2,5116,19639,56,0
,2,5117,19641,56,0
,2,5118,19643,56,0
,2,5119,19645,56,0
,2,5120,19647,56,0
,2,5121,19649,56,0
,2,5122,19651,56,0
,2,5123,19653,56,0
,2,5124,19655,56,0
,2,5125,19657,56,0
,2,5126,19659,56,0
,2,5127,19661,56,0
,2,5128,19663,56,0
,2,5129,19665,56,0
,2,5130,19667,56,0
,2,5131,19669,56,0
,2,5132,19671,56,0
,2,5133,19673,56,0
,2,5134,19675,56,0
,2,5135,19677,56,0
,2,5136,19679,56,0
,2,5137,19681,56,0
,2,5138,19683,56,0
,2,5139,19685,56,0
,2,5140,19687,56,0
,2,5141,19689,56,0
,2,5142,19691,56,0
,2,5143,19693,56,0
,2,5144,19695,56,0
,2,5145,19697,56,0
,2,5146,19699,56,0
,2,5147,19701,56,0
,2,5148,19703,56,0
,2,5149,19705,56,0
,2,5150,19707,56,0
,2,5151,19709,56,0
,2,5152,19711,56,0
,2,5153,19713,56,0
,2,5154,19715,56,0
,2,5155,19717,56,0
,2,5156,19719,56,0
,2,5157,19721,56,0
,2,5158,19723,56,0
,2,5159,19725,56,0
,2,5160,19727,56,0
,2,5161,19729,56,0
,2,5162,19731,56,0
,2,5163,19733,56,0
,2,5164,19735,56,0
,2,5165,19737,56,0
,2,5166,19739,56,0
,2,5167,19741,56,0
,2,5168,19743,56,0
,2,5169,19745,56,0
,2,5170,19747,56,0
,2,5171,19749,56,0
,2,5172,19751,56,0
,2,5173,19753,56,0
,2,5174,19755,56,0
,2,5175,19757,56,0
,2,5176,19759,56,0
,2,5177,19761,56,0
,2,5178,19763,56,0
,2,5179,19765,56,0
,2,5180,19767,56,0
,2,5181,19769,56,0
,2,5182,19771,56,0
,2,5183,19773,56,0
,2,5184,19775,56,0
,2,5185,19777,56,0
,2,5186,19779,56,0
,2,5187,19781,56,0
,2,5188,19783,56,0
,2,5189,19785,56,0
,2,5190,19787,56,0
,2,5191,19789,56,0
,2,5192,19791,56,0
,2,5193,19793,56,0
,2,5194,19795,56,0
,2,5195,19797,56,0
,2,5196,19799,56,0
,2,5197,19801,56,0
,2,5198,19803,56,0
,2,5199,19805,56,0
,2,5200,19807,56,0
,2,5201,19809,56,0
,2,5202,19811,56,0
,2,5203,19813,56,0
,2,5204,19815,56,0
,2,5205,19817,56,0
,2,5206,19819,56,0
,2,5207,19821,56,0
,2,5208,19823,56,0
,2,5209,19825,56,0
,2,5210,19827,56,0
,2,5211,19829,56,0
,2,5212,19831,56,0
,2,5213,19833,56,0
,2,5214,19835,56,0
,2,5215,19837,56,0
,2,5216,19839,56,0
,2,5217,19841,56,0
,2,5218,19843,56,0
,2,5219,19845,56,0
,2,5220,19847,56,0
,2,5221,19849,56,0
,2,5222,19851,56,0
,2,5223,19853,56,0
,2,5224,19855,56,0
,2,5225,19857,56,0
,2,5226,19859,56,0
,2,5227,19861,56,0
,2,5228,19863,56,0
,2,5229,19865,56,0
,2,5230,19867,56,0
,2,5231,19869,56,0
,2,5232,19871,56,0
,2,5233,19873,56,0
,2,5234,19875,56,0
,2,5235,19877,56,0
,2,5236,19879,56,0
,2,5237,19881,56,0
,2,5238,19883,56,0
,2,5239,19885,56,0
,2,5240,19887,56,0
,2,5241,19889,56,0
,2,5242,19891,56,0
,2,5243,19893,56,0
,2,5244,19895,56,0
,2,5245,19897,56,0
,2,5246,19899,56,0
,2,5247,19901,56,0
,2,5248,19903,56,0
,2,5249,19905,56,0
,2,5250,19907,56,0
,2,5251,19909,56,0
,2,5252,19911,56,0
,2,5253,19913,56,0
,2,5254,19915,56,0
,2,5255,19917,56,0
,2,5256,19919,56,0
,2,5257,19921,56,0
,2,5258,19923,56,0
,2,5259,19925,56,0
,2,5260,19927,56,0
,2,5261,19929,56,0
,2,5262,19931,56,0
,2,5263,19933,56,0
,2,5264,19935,56,0
,2,5265,19937,56,0
,2,5266,19939,56,0
,2,5267,19941,56,0
,2,5268,19943,56,0
,2,5269,19945,56,0
,2,5270,19947,56,0
,2,5271,19949,56,0
,2,5272,19951,56,0
,2,5273,19953,56,0
,2,5274,19955,56,0
,2,5275,19957,56,0
,2,5276,19959,56,0
,2,5277,19961,56,0
,2,5278,19963,56,0
,2,5279,19965,56,0
,2,5280,19967,56,0
,2,5281,19969,56,0
,2,5282,19971,56,0
,2,5283,19973,56,0
,2,5284,19975,56,0
,2,5285,19977,56,0
,2,5286,19979,56,0
,2,5287,19981,56,0
,2,5288,19983,56,0
,2,5289,19985,56,0
,2,5290,19987,56,0
,2,5291,19989,56,0
,2,5292,19991,56,0
,2,5293,19993,56,0
,2,5294,19995,56,0
,2,5295,19997,56,0
,2,5296,19999,56,0
,2,5297,20001,56,0
,2,5298,20003,56,0
,2,5299,20005,56,0
,2,5300,20007,56,0
,2,5301,20009,56,0
,2,5302,20011,56,0
,2,5303,20013,56,0
,2,5304,20015,56,0
,2,5305,20017,56,0
,2,5306,20019,56,0
,2,5307,20021,56,0
,2,5308,20023,56,0
,2,5309,20025,56,0
,2,5310,20027,56,0
,2,5311,20029,56,0
,2,5312,20031,56,0
,2,5313,20033,56,0
,2,5314,20035,56,0
,2,5315,20037,56,0
,2,5316,20039,56,0
,2,5317,20041,56,0
,2,5318,20043,56,0
,2,5319,20045,56,0
,2,5320,20047,56,0
,2,5321,20049,56,0
,2,5322,20051,56,0
,2,5323,20053,56,0
,2,5324,20055,56,0
,2,5325,20057,56,0
,2,5326,20059,56,0
,2,5327,20061,56,0
,2,5328,20063,56,0
,2,5329,20065,56,0
,2,5330,20067,56,0
,2,5331,20069,56,0
,2,5332,20071,56,0
,2,5333,20073,56,0
,2,5334,20075,56,0
,2,5335,20077,56,0
,2,5336,20079,56,0
,2,5337,20081,56,0
,2,5338,20083,56,0
,2,5339,20085,56,0
,2,5340,20087,56,0
,2,5341,20089,56,0
,2,5342,20091,56,0
,2,5343,20093,56,0
,2,5344,20095,56,0
,2,5345,20097,56,0
,2,5346,20099,56,0
,2,5347,20101,56,0
,2,5348,20103,56,0
,2,5349,20105,56,0
,2,5350,20107,56,0
,2,5351,20109,56,0
,2,5352,20111,56,0
,2,5353,20113,56,0
,2,5354,20115,56,0
,2,5355,20117,56,0
,2,5356,20119,56,0
,2,5357,20121,56,0
,2,5358,20123,56,0
,2,5359,20125,56,0
,2,5360,20127,56,0
,2,5361,20129,56,0
,2,5362,20131,56,0
,2,5363,20133,56,0
,2,5364,20135,56,0
,2,5365,20137,56,0
,2,5366,20139,56,0
,2,5367,20141,56,0
,2,5368,20143,56,0
,2,5369,20145,56,0
,2,5370,20147,56,0
,2,5371,20149,56,0
,2,5372,20151,56,0
,2,5373,20153,56,0
,2,5374,20155,56,0
,2,5375,20157,56,0
,2,5376,20159,56,0
,2,5377,20161,56,0
,2,5378,20163,56,0
,2,5379,20165,56,0
,2,5380,20167,56,0
,2,5381,20169,56,0
,2,5382,20171,56,0
,2,5383,20173,56,0
,2,5384,20175,56,0
,2,5385,20177,56,0
,2,5386,20179,56,0
,2,5387,20181,56,0
,2,5388,20183,56,0
,2,5389,20185,56,0
,2,5390,20187,56,0
,2,5391,20189,56,0
,2,5392,20191,56,0
,2,5393,20193,56,0
,2,5394,20195,56,0
,2,5395,20197,56,0
,2,5396,20199,56,0
,2,5397,20201,56,0
,2,5398,20203,56,0
,2,5399,20205,56,0
,2,5400,20207,56,0
,2,5401,20209,56,0
,2,5402,20211,56,0
,2,5403,20213,56,0
,2,5404,20215,56,0
,2,5405,20217,56,0
,2,5406,20219,56,0
,2,5407,20221,56,0
,2,5408,20223,56,0
,2,5409,20225,56,0
,2,5410,20227,56,0
,2,5411,20229,56,0
,2,5412,20231,56,0
,2,5413,20233,56,0
,2,5414,20235,56,0
,2,5415,20237,56,0
,2,5416,20239,56,0
,2,5417,20241,56,0
,2,5418,20243,56,0
,2,5419,20245,56,0
,2,5420,20247,56,0
,2,5421,20249,56,0
,2,5422,20251,56,0
,2,5423,20253,56,0
,2,5424,20255,56,0
,2,5425,20257,56,0
,2,5426,20259,56,0
,2,5427,20261,56,0
,2,5428,20263,56,0
,2,5429,20265,56,0
,2,5430,20267,56,0
,2,5431,20269,56,0
,2,5432,20271,56,0
,2,5433,20273,56,0
,2,5434,20275,56,0
,2,5435,20277,56,0
,2,5436,20279,56,0
,2,5437,20281,56,0
,2,5438,20283,56,0
,2,5439,20285,56,0
,2,5440,20287,56,0
,2,5441,20289,56,0
,2,5442,20291,56,0
,2,5443,20293,56,0
,2,5444,20295,56,0
,2,5445,20297,56,0
,2,5446,20299,56,0
,2,5447,20301,56,0
,2,5448,20303,56,0
,2,5449,20305,56,0
,2,5450,20307,56,0
,2,5451,20309,56,0
,2,5452,20311,56,0
,2,5453,20313,56,0
,2,5454,20315,56,0
,2,5455,20317,56,0
,2,5456,20319,56,0
,2,5457,20321,56,0
,2,5458,20323,56,0
,2,5459,20325,56,0
,2,5460,20327,56,0
,2,5461,20329,56,0
,2,5462,20331,56,0
,2,5463,20333,56,0
,2,5464,20335,56,0
,2,5465,20337,56,0
,2,5466,20339,56,0
,2,5467,20341,56,0
,2,5468,20343,56,0
,2,5469,20345,56,0
,2,5470,20347,56,0
,2,5471,20349,56,0
,2,5472,20351,56,0
,2,5473,20353,56,0
,2,5474,20355,56,0
,2,5475,20357,56,0
,2,5476,20359,56,0
,2,5477,20361,56,0
,2,5478,20363,56,0
,2,5479,20365,56,0
,2,5480,20367,56,0
,2,5481,20369,56,0
,2,5482,20371,56,0
,2,5483,20373,56,0
,2,5484,20375,56,0
,2,5485,20377,56,0
,2,5486,20379,56,0
,2,5487,20381,56,0
,2,5488,20383,56,0
,2,5489,20385,56,0
,2,5490,20387,56,0
,2,5491,20389,56,0
,2,5492,20391,56,0
,2,5493,20393,56,0
,2,5494,20395,56,0
,2,5495,20397,56,0
,2,5496,20399,56,0
,2,5497,20401,56,0
,2,5498,20403,56,0
,2,5499,20405,56,0
,2,5500,20407,56,0
,2,5501,20409,56,0
,2,5502,20411,56,0
,2,5503,20413,56,0
,2,5504,20415,56,0
,2,5505,20417,56,0
,2,5506,20419,56,0
,2,5507,20421,56,0
,2,5508,20423,56,0
,2,5509,20425,56,0
,2,5510,20427,56,0
,2,5511,20429,56,0
,2,5512,20431,56,0
,2,5513,20433,56,0
,2,5514,20435,56,0
,2,5515,20437,56,0
,2,5516,20439,56,0
,2,5517,20441,56,0
,2,5518,20443,56,0
,2,5519,20445,56,0
,2,5520,20447,56,0
,2,5521,20449,56,0
,2,5522,20451,56,0
,2,5523,20453,56,0
,2,5524,20455,56,0
,2,5525,20457,56,0
,2,5526,20459,56,0
,2,5527,20461,56,0
,2,5528,20463,56,0
,2,5529,20465,56,0
,2,5530,20467,56,0
,2,5531,20469,56,0
,2,5532,20471,56,0
,2,5533,20473,56,0
,2,5534,20475,56,0
,2,5535,20477,56,0
,2,5536,20479,56,0
,2,5537,20481,56,0
,2,5538,20483,56,0
,2,5539,20485,56,0
,2,5540,20487,56,0
,2,5541,20489,56,0
,2,5542,20491,56,0
,2,5543,20493,56,0
,2,5544,20495,56,0
,2,5545,20497,56,0
,2,5546,20499,56,0
,2,5547,20501,56,0
,2,5548,20503,56,0
,2,5549,20505,56,0
,2,5550,20507,56,0
,2,5551,20509,56,0
,2,5552,20511,56,0
,2,5553,20513,56,0
,2,5554,20515,56,0
,2,5555,20517,56,0
,2,5556,20519,56,0
,2,5557,20521,56,0
,2,5558,20523,56,0
,2,5559,20525,56,0
,2,5560,20527,56,0
,2,5561,20529,56,0
,2,5562,20531,56,0
,2,5563,20533,56,0
,2,5564,20535,56,0
,2,5565,20537,56,0
,2,5566,20539,56,0
,2,5567,20541,56,0
,2,5568,20543,56,0
,2,5569,20545,56,0
,2,5570,20547,56,0
,2,5571,20549,56,0
,2,5572,20551,56,0
,2,5573,20553,56,0
,2,5574,20555,56,0
,2,5575,20557,56,0
,2,5576,20559,56,0
,2,5577,20561,56,0
,2,5578,20563,56,0
,2,5579,20565,56,0
,2,5580,20567,56,0
,2,5581,20569,56,0
,2,5582,20571,56,0
,2,5583,20573,56,0
,2,5584,20575,56,0
,2,5585,20577,56,0
,2,5586,20579,56,0
,2,5587,20581,56,0
,2,5588,20583,56,0
,2,5589,20585,56,0
,2,5590,20587,56,0
,2,5591,20589,56,0
,2,5592,20591,56,0
,2,5593,20593,56,0
,2,5594,20595,56,0
,2,5595,20597,56,0
,2,5596,20599,56,0
,2,5597,20601,56,0
,2,5598,20603,56,0
,2,5599,20605,56,0
,2,5600,20607,56,0
,2,5601,20609,56,0
,2,5602,20611,56,0
,2,5603,20613,56,0
,2,5604,20615,56,0
,2,5605,20617,56,0
,2,5606,20619,56,0
,2,5607,20621,56,0
,2,5608,20623,56,0
,2,5609,20625,56,0
,2,5610,20627,56,0
,2,5611,20629,56,0
,2,5612,20631,56,0
,2,5613,20633,56,0
,2,5614,20635,56,0
,2,5615,20637,56,0
,2,5616,20639,56,0
,2,5617,20641,56,0
,2,5618,20643,56,0
,2,5619,20645,56,0
,2,5620,20647,56,0
,2,5621,20649,56,0
,2,5622,20651,56,0
,2,5623,20653,56,0
,2,5624,20655,56,0
,2,5625,20657,56,0
,2,5626,20659,56,0
,2,5627,20661,56,0
,2,5628,20663,56,0
,2,5629,20665,56,0
,2,5630,20667,56,0
,2,5631,20669,56,0
,2,5632,20671,56,0
,2,5633,20673,56,0
,2,5634,20675,56,0
,2,5635,20677,56,0
,2,5636,20679,56,0
,2,5637,20681,56,0
,2,5638,20683,56,0
,2,5639,20685,56,0
,2,5640,20687,56,0
,2,5641,20689,56,0
,2,5642,20691,56,0
,2,5643,20693,56,0
,2,5644,20695,56,0
,2,5645,20697,56,0
,2,5646,20699,56,0
,2,5647,20701,56,0
,2,5648,20703,56,0
,2,5649,20705,56,0
,2,5650,20707,56,0
,2,5651,20709,56,0
,2,5652,20711,56,0
,2,5653,20713,56,0
,2,5654,20715,56,0
,2,5655,20717,56,0
,2,5656,20719,56,0
,2,5657,20721,56,0
,2,5658,20723,56,0
,2,5659,20725,56,0
,2,5660,20727,56,0
,2,5661,20729,56,0
,2,5662,20731,56,0
,2,5663,20733,56,0
,2,5664,20735,56,0
,2,5665,20737,56,0
,2,5666,20739,56,0
,2,5667,20741,56,0
,2,5668,20743,56,0
,2,5669,20745,56,0
,2,5670,20747,56,0
,2,5671,20749,56,0
,2,5672,20751,56,0
,2,5673,20753,56,0
,2,5674,20755,56,0
,2,5675,20757,56,0
,2,5676,20759,56,0
,2,5677,20761,56,0
,2,5678,20763,56,0
,2,5679,20765,56,0
,2,5680,20767,56,0
,2,5681,20769,56,0
,2,5682,20771,56,0
,2,5683,20773,56,0
,2,5684,20775,56,0
,2,5685,20777,56,0
,2,5686,20779,56,0
,2,5687,20781,56,0
,2,5688,20783,56,0
,2,5689,20785,56,0
,2,5690,20787,56,0
,2,5691,20789,56,0
,2,5692,20791,56,0
,2,5693,20793,56,0
,2,5694,20795,56,0
,2,5695,20797,56,0
,2,5696,20799,56,0
,2,5697,20801,56,0
,2,5698,20803,56,0
,2,5699,20805,56,0
,2,5700,20807,56,0
,2,5701,20809,56,0
,2,5702,20811,56,0
,2,5703,20813,56,0
,2,5704,20815,56,0
,2,5705,20817,56,0
,2,5706,20819,56,0
,2,5707,20821,56,0
,2,5708,20823,56,0
,2,5709,20825,56,0
,2,5710,20827,56,0
,2,5711,20829,56,0
,2,5712,20831,56,0
,2,5713,20833,56,0
,2,5714,20835,56,0
,2,5715,20837,56,0
,2,5716,20839,56,0
,2,5717,20841,56,0
,2,5718,20843,56,0
,2,5719,20845,56,0
,2,5720,20847,56,0
,2,5721,20849,56,0
,2,5722,20851,56,0
,2,5723,20853,56,0
,2,5724,20855,56,0
,2,5725,20857,56,0
,2,5726,20859,56,0
,2,5727,20861,56,0
,2,5728,20863,56,0
,2,5729,20865,56,0
,2,5730,20867,56,0
,2,5731,20869,56,0
,2,5732,20871,56,0
,2,5733,20873,56,0
,2,5734,20875,56,0
,2,5735,20877,56,0
,2,5736,20879,56,0
,2,5737,20881,56,0
,2,5738,20883,56,0
,2,5739,20885,56,0
,2,5740,20887,56,0
,2,5741,20889,56,0
,2,5742,20891,56,0
,2,5743,20893,56,0
,2,5744,20895,56,0
,2,5745,20897,56,0
,2,5746,20899,56,0
,2,5747,20901,56,0
,2,5748,20903,56,0
,2,5749,20905,56,0
,2,5750,20907,56,0
,2,5751,20909,56,0
,2,5752,20911,56,0
,2,5753,20913,56,0
,2,5754,20915,56,0
,2,5755,20917,56,0
,2,5756,20919,56,0
,2,5757,20921,56,0
,2,5758,20923,56,0
,2,5759,20925,56,0
,2,5760,20927,56,0
,2,5761,20929,56,0
,2,5762,20931,56,0
,2,5763,20933,56,0
,2,5764,20935,56,0
,2,5765,20937,56,0
,2,5766,20939,56,0
,2,5767,20941,56,0
,2,5768,20943,56,0
,2,5769,20945,56,0
,2,5770,20947,56,0
,2,5771,20949,56,0
,2,5772,20951,56,0
,2,5773,20953,56,0
,2,5774,20955,56,0
,2,5775,20957,56,0
,2,5776,20959,56,0
,2,5777,20961,56,0
,2,5778,20963,56,0
,2,5779,20965,56,0
,2,5780,20967,56,0
,2,5781,20969,56,0
,2,5782,20971,56,0
,2,5783,20973,56,0
,2,5784,20975,56,0
,2,5785,20977,56,0
,2,5786,20979,56,0
,2,5787,20981,56,0
,2,5788,20983,56,0
,2,5789,20985,56,0
,2,5790,20987,56,0
,2,5791,20989,56,0
,2,5792,20991,56,0
,2,5793,20993,56,0
,2,5794,20995,56,0
,2,5795,20997,56,0
,2,5796,20999,56,0
,2,5797,21001,56,0
,2,5798,21003,56,0
,2,5799,21005,56,0
,2,5800,21007,56,0
,2,5801,21009,56,0
,2,5802,21011,56,0
,2,5803,21013,56,0
,2,5804,21015,56,0
,2,5805,21017,56,0
,2,5806,21019,56,0
,2,5807,21021,56,0
,2,5808,21023,56,0
,2,5809,21025,56,0
,2,5810,21027,56,0
,2,5811,21029,56,0
,2,5812,21031,56,0
,2,5813,21033,56,0
,2,5814,21035,56,0
,2,5815,21037,56,0
,2,5816,21039,56,0
,2,5817,21041,56,0
,2,5818,21043,56,0
,2,5819,21045,56,0
,2,5820,21047,56,0
,2,5821,21049,56,0
,2,5822,21051,56,0
,2,5823,21053,56,0
,2,5824,21055,56,0
,2,5825,21057,56,0
,2,5826,21059,56,0
,2,5827,21061,56,0
,2,5828,21063,56,0
,2,5829,21065,56,0
,2,5830,21067,56,0
,2,5831,21069,56,0
,2,5832,21071,56,0
,2,5833,21073,56,0
,2,5834,21075,56,0
,2,5835,21077,56,0
,2,5836,21079,56,0
,2,5837,21081,56,0
,2,5838,21083,56,0
,2,5839,21085,56,0
,2,5840,21087,56,0
,2,5841,21089,56,0
,2,5842,21091,56,0
,2,5843,21093,56,0
,2,5844,21095,56,0
,2,5845,21097,56,0
,2,5846,21099,56,0
,2,5847,21101,56,0
,2,5848,21103,56,0
,2,5849,21105,56,0
,2,5850,21107,56,0
,2,5851,21109,56,0
,2,5852,21111,56,0
,2,5853,21113,56,0
,2,5854,21115,56,0
,2,5855,21117,56,0
,2,5856,21119,56,0
,2,5857,21121,56,0
,2,5858,21123,56,0
,2,5859,21125,56,0
,2,5860,21127,56,0
,2,5861,21129,56,0
,2,5862,21131,56,0
,2,5863,21133,56,0
,2,5864,21135,56,0
,2,5865,21137,56,0
,2,5866,21139,56,0
,2,5867,21141,56,0
,2,5868,21143,56,0
,2,5869,21145,56,0
,2,5870,21147,56,0
,2,5871,21149,56,0
,2,5872,21151,56,0
,2,5873,21153,56,0
,2,5874,21155,56,0
,2,5875,21157,56,0
,2,5876,21159,56,0
,2,5877,21161,56,0
,2,5878,21163,56,0
,2,5879,21165,56,0
,2,5880,21167,56,0
,2,5881,21169,56,0
,2,5882,21171,56,0
,2,5883,21173,56,0
,2,5884,21175,56,0
,2,5885,21177,56,0
,2,5886,21179,56,0
,2,5887,21181,56,0
,2,5888,21183,56,0
,2,5889,21185,56,0
,2,5890,21187,56,0
,2,5891,21189,56,0
,2,5892,21191,56,0
,2,5893,21193,56,0
,2,5894,21195,56,0
,2,5895,21197,56,0
,2,5896,21199,56,0
,2,5897,21201,56,0
,2,5898,21203,56,0
,2,5899,21205,56,0
,2,5900,21207,56,0
,2,5901,21209,56,0
,2,5902,21211,56,0
,2,5903,21213,56,0
,2,5904,21215,56,0
,2,5905,21217,56,0
,2,5906,21219,56,0
,2,5907,21221,56,0
,2,5908,21223,56,0
,2,5909,21225,56,0
,2,5910,21227,56,0
,2,5911,21229,56,0
,2,5912,21231,56,0
,2,5913,21233,56,0
,2,5914,21235,56,0
,2,5915,21237,56,0
,2,5916,21239,56,0
,2,5917,21241,56,0
,2,5918,21243,56,0
,2,5919,21245,56,0
,2,5920,21247,56,0
,2,5921,21249,56,0
,2,5922,21251,56,0
,2,5923,21253,56,0
,2,5924,21255,56,0
,2,5925,21257,56,0
,2,5926,21259,56,0
,2,5927,21261,56,0
,2,5928,21263,56,0
,2,5929,21265,56,0
,2,5930,21267,56,0
,2,5931,21269,56,0
,2,5932,21271,56,0
,2,5933,21273,56,0
,2,5934,21275,56,0
,2,5935,21277,56,0
,2,5936,21279,56,0
,2,5937,21281,56,0
,2,5938,21283,56,0
,2,5939,21285,56,0
,2,5940,21287,56,0
,2,5941,21289,56,0
,2,5942,21291,56,0
,2,5943,21293,56,0
,2,5944,21295,56,0
,2,5945,21297,56,0
,2,5946,21299,56,0
,2,5947,21301,56,0
,2,5948,21303,56,0
,2,5949,21305,56,0
,2,5950,21307,56,0
,2,5951,21309,56,0
,2,5952,21311,56,0
,2,5953,21313,56,0
,2,5954,21315,56,0
,2,5955,21317,56,0
,2,5956,21319,56,0
,2,5957,21321,56,0
,2,5958,21323,56,0
,2,5959,21325,56,0
,2,5960,21327,56,0
,2,5961,21329,56,0
,2,5962,21331,56,0
,2,5963,21333,56,0
,2,5964,21335,56,0
,2,5965,21337,56,0
,2,5966,21339,56,0
,2,5967,21341,56,0
,2,5968,21343,56,0
,2,5969,21345,56,0
,2,5970,21347,56,0
,2,5971,21349,56,0
,2,5972,21351,56,0
,2,5973,21353,56,0
,2,5974,21355,56,0
,2,5975,21357,56,0
,2,5976,21359,56,0
,2,5977,21361,56,0
,2,5978,21363,56,0
,2,5979,21365,56,0
,2,5980,21367,56,0
,2,5981,21369,56,0
,2,5982,21371,56,0
,2,5983,21373,56,0
,2,5984,21375,56,0
,2,5985,21377,56,0
,2,5986,21379,56,0
,2,5987,21381,56,0
,2,5988,21383,56,0
,2,5989,21385,56,0
,2,5990,21387,56,0
,2,5991,21389,56,0
,2,5992,21391,56,0
,2,5993,21393,56,0
,2,5994,21395,56,0
,2,5995,21397,56,0
,2,5996,21399,56,0
,2,5997,21401,56,0
,2,5998,21403,56,0
,2,5999,21405,56,0
,2,6000,21407,56,0
,2,6001,21409,56,0
,2,6002,21411,56,0
,2,6003,21413,56,0
,2,6004,21415,56,0
,2,6005,21417,56,0
,2,6006,21419,56,0
,2,6007,21421,56,0
,2,6008,21423,56,0
,2,6009,21425,56,0
,2,6010,21427,56,0
,2,6011,21429,56,0
,2,6012,21431,56,0
,2,6013,21433,56,0
,2,6014,21435,56,0
,2,6015,21437,56,0
,2,6016,21439,56,0
,2,6017,21441,56,0
,2,6018,21443,56,0
,2,6019,21445,56,0
,2,6020,21447,56,0
,2,6021,21449,56,0
,2,6022,21451,56,0
,2,6023,21453,56,0
,2,6024,21455,56,0
,2,6025,21457,56,0
,2,6026,21459,56,0
,2,6027,21461,56,0
,2,6028,21463,56,0
,2,6029,21465,56,0
,2,6030,21467,56,0
,2,6031,21469,56,0
,2,6032,21471,56,0
,2,6033,21473,56,0
,2,6034,21475,56,0
,2,6035,21477,56,0
,2,6036,21479,56,0
,2,6037,21481,56,0
,2,6038,21483,56,0
,2,6039,21485,56,0
,2,6040,21487,56,0
,2,6041,21489,56,0
,2,6042,21491,56,0
,2,6043,21493,56,0
,2,6044,21495,56,0
,2,6045,21497,56,0
,2,6046,21499,56,0
,2,6047,21501,56,0
,2,6048,21503,56,0
,2,6049,21505,56,0
,2,6050,21507,56,0
,2,6051,21509,56,0
,2,6052,21511,56,0
,2,6053,21513,56,0
,2,6054,21515,56,0
,2,6055,21517,56,0
,2,6056,21519,56,0
,2,6057,21521,56,0
,2,6058,21523,56,0
,2,6059,21525,56,0
,2,6060,21527,56,0
,2,6061,21529,56,0
,2,6062,21531,56,0
,2,6063,21533,56,0
,2,6064,21535,56,0
,2,6065,21537,56,0
,2,6066,21539,56,0
,2,6067,21541,56,0
,2,6068,21543,56,0
,2,6069,21545,56,0
,2,6070,21547,56,0
,2,6071,21549,56,0
,2,6072,21551,56,0
,2,6073,21553,56,0
,2,6074,21555,56,0
,2,6075,21557,56,0
,2,6076,21559,56,0
,2,6077,21561,56,0
,2,6078,21563,56,0
,2,6079,21565,56,0
,2,6080,21567,56,0
,2,6081,21569,56,0
,2,6082,21571,56,0
,2,6083,21573,56,0
,2,6084,21575,56,0
,2,6085,21577,56,0
,2,6086,21579,56,0
,2,6087,21581,56,0
,2,6088,21583,56,0
,2,6089,21585,56,0
,2,6090,21587,56,0
,2,6091,21589,56,0
,2,6092,21591,56,0
,2,6093,21593,56,0
,2,6094,21595,56,0
,2,6095,21597,56,0
,2,6096,21599,56,0
,2,6097,21601,56,0
,2,6098,21603,56,0
,2,6099,21605,56,0
,2,6100,21607,56,0
,2,6101,21609,56,0
,2,6102,21611,56,0
,2,6103,21613,56,0
,2,6104,21615,56,0
,2,6105,21617,56,0
,2,6106,21619,56,0
,2,6107,21621,56,0
,2,6108,21623,56,0
,2,6109,21625,56,0
,2,6110,21627,56,0
,2,6111,21629,56,0
,2,6112,21631,56,0
,2,6113,21633,56,0
,2,6114,21635,56,0
,2,6115,21637,56,0
,2,6116,21639,56,0
,2,6117,21641,56,0
,2,6118,21643,56,0
,2,6119,21645,56,0
,2,6120,21647,56,0
,2,6121,21649,56,0
,2,6122,21651,56,0
,2,6123,21653,56,0
,2,6124,21655,56,0
,2,6125,21657,56,0
,2,6126,21659,56,0
,2,6127,21661,56,0
,2,6128,21663,56,0
,2,6129,21665,56,0
,2,6130,21667,56,0
,2,6131,21669,56,0
,2,6132,21671,56,0
,2,6133,21673,56,0
,2,6134,21675,56,0
,2,6135,21677,56,0
,2,6136,21679,56,0
,2,6137,21681,56,0
,2,6138,21683,56,0
,2,6139,21685,56,0
,2,6140,21687,56,0
,2,6141,21689,56,0
,2,6142,21691,56,0
,2,6143,21693,56,0
,2,6144,21695,56,0
,2,6145,21697,56,0
,2,6146,21699,56,0
,2,6147,21701,56,0
,2,6148,21703,56,0
,2,6149,21705,56,0
,2,6150,21707,56,0
,2,6151,21709,56,0
,2,6152,21711,56,0
,2,6153,21713,56,0
,2,6154,21715,56,0
,2,6155,21717,56,0
,2,6156,21719,56,0
,2,6157,21721,56,0
,2,6158,21723,56,0
,2,6159,21725,56,0
,2,6160,21727,56,0
,2,6161,21729,56,0
,2,6162,21731,56,0
,2,6163,21733,56,0
,2,6164,21735,56,0
,2,6165,21737,56,0
,2,6166,21739,56,0
,2,6167,21741,56,0
,2,6168,21743,56,0
,2,6169,21745,56,0
,2,6170,21747,56,0
,2,6171,21749,56,0
,2,6172,21751,56,0
,2,6173,21753,56,0
,2,6174,21755,56,0
,2,6175,21757,56,0
,2,6176,21759,56,0
,2,6177,21761,56,0
,2,6178,21763,56,0
,2,6179,21765,56,0
,2,6180,21767,56,0
,2,6181,21769,56,0
,2,6182,21771,56,0
,2,6183,21773,56,0
,2,6184,21775,56,0
,2,6185,21777,56,0
,2,6186,21779,56,0
,2,6187,21781,56,0
,2,6188,21783,56,0
,2,6189,21785,56,0
,2,6190,21787,56,0
,2,6191,21789,56,0
,2,6192,21791,56,0
,2,6193,21793,56,0
,2,6194,21795,56,0
,2,6195,21797,56,0
,2,6196,21799,56,0
,2,6197,21801,56,0
,2,6198,21803,56,0
,2,6199,21805,56,0
,2,6200,21807,56,0
,2,6201,21809,56,0
,2,6202,21811,56,0
,2,6203,21813,56,0
,2,6204,21815,56,0
,2,6205,21817,56,0
,2,6206,21819,56,0
,2,6207,21821,56,0
,2,6208,21823,56,0
,2,6209,21825,56,0
,2,6210,21827,56,0
,2,6211,21829,56,0
,2,6212,21831,56,0
,2,6213,21833,56,0
,2,6214,21835,56,0
,2,6215,21837,56,0
,2,6216,21839,56,0
,2,6217,21841,56,0
,2,6218,21843,56,0
,2,6219,21845,56,0
,2,6220,21847,56,0
,2,6221,21849,56,0
,2,6222,21851,56,0
,2,6223,21853,56,0
,2,6224,21855,56,0
,2,6225,21857,56,0
,2,6226,21859,56,0
,2,6227,21861,56,0
,2,6228,21863,56,0
,2,6229,21865,56,0
,2,6230,21867,56,0
,2,6231,21869,56,0
,2,6232,21871,56,0
,2,6233,21873,56,0
,2,6234,21875,56,0
,2,6235,21877,56,0
,2,6236,21879,56,0
,2,6237,21881,56,0
,2,6238,21883,56,0
,2,6239,21885,56,0
,2,6240,21887,56,0
,2,6241,21889,56,0
,2,6242,21891,56,0
,2,6243,21893,56,0
,2,6244,21895,56,0
,2,6245,21897,56,0
,2,6246,21899,56,0
,2,6247,21901,56,0
,2,6248,21903,56,0
,2,6249,21905,56,0
,2,6250,21907,56,0
,2,6251,21909,56,0
,2,6252,21911,56,0
,2,6253,21913,56,0
,2,6254,21915,56,0
,2,6255,21917,56,0
,2,6256,21919,56,0
,2,6257,21921,56,0
,2,6258,21923,56,0
,2,6259,21925,56,0
,2,6260,21927,56,0
,2,6261,21929,56,0
,2,6262,21931,56,0
,2,6263,21933,56,0
,2,6264,21935,56,0
,2,6265,21937,56,0
,2,6266,21939,56,0
,2,6267,21941,56,0
,2,6268,21943,56,0
,2,6269,21945,56,0
,2,6270,21947,56,0
,2,6271,21949,56,0
,2,6272,21951,56,0
,2,6273,21953,56,0
,2,6274,21955,56,0
,2,6275,21957,56,0
,2,6276,21959,56,0
,2,6277,21961,56,0
,2,6278,21963,56,0
,2,6279,21965,56,0
,2,6280,21967,56,0
,2,6281,21969,56,0
,2,6282,21971,56,0
,2,6283,21973,56,0
,2,6284,21975,56,0
,2,6285,21977,56,0
,2,6286,21979,56,0
,2,6287,21981,56,0
,2,6288,21983,56,0
,2,6289,21985,56,0
,2,6290,21987,56,0
,2,6291,21989,56,0
,2,6292,21991,56,0
,2,6293,21993,56,0
,2,6294,21995,56,0
,2,6295,21997,56,0
,2,6296,21999,56,0
,2,6297,22001,56,0
,2,6298,22003,56,0
,2,6299,22005,56,0
,2,6300,22007,56,0
,2,6301,22009,56,0
,2,6302,22011,56,0
,2,6303,22013,56,0
,2,6304,22015,56,0
,2,6305,22017,56,0
,2,6306,22019,56,0
,2,6307,22021,56,0
,2,6308,22023,56,0
,2,6309,22025,56,0
,2,6310,22027,56,0
,2,6311,22029,56,0
,2,6312,22031,56,0
,2,6313,22033,56,0
,2,6314,22035,56,0
,2,6315,22037,56,0
,2,6316,22039,56,0
,2,6317,22041,56,0
,2,6318,22043,56,0
,2,6319,22045,56,0
,2,6320,22047,56,0
,2,6321,22049,56,0
,2,6322,22051,56,0
,2,6323,22053,56,0
,2,6324,22055,56,0
,2,6325,22057,56,0
,2,6326,22059,56,0
,2,6327,22061,56,0
,2,6328,22063,56,0
,2,6329,22065,56,0
,2,6330,22067,56,0
,2,6331,22069,56,0
,2,6332,22071,56,0
,2,6333,22073,56,0
,2,6334,22075,56,0
,2,6335,22077,56,0
,2,6336,22079,56,0
,2,6337,22081,56,0
,2,6338,22083,56,0
,2,6339,22085,56,0
,2,6340,22087,56,0
,2,6341,22089,56,0
,2,6342,22091,56,0
,2,6343,22093,56,0
,2,6344,22095,56,0
,2,6345,22097,56,0
,2,6346,22099,56,0
,2,6347,22101,56,0
,2,6348,22103,56,0
,2,6349,22105,56,0
,2,6350,22107,56,0
,2,6351,22109,56,0
,2,6352,22111,56,0
,2,6353,22113,56,0
,2,6354,22115,56,0
,2,6355,22117,56,0
,2,6356,22119,56,0
,2,6357,22121,56,0
,2,6358,22123,56,0
,2,6359,22125,56,0
,2,6360,22127,56,0
,2,6361,22129,56,0
,2,6362,22131,56,0
,2,6363,22133,56,0
,2,6364,22135,56,0
,2,6365,22137,56,0
,2,6366,22139,56,0
,2,6367,22141,56,0
,2,6368,22143,56,0
,2,6369,22145,56,0
,2,6370,22147,56,0
,2,6371,22149,56,0
,2,6372,22151,56,0
,2,6373,22153,56,0
,2,6374,22155,56,0
,2,6375,22157,56,0
,2,6376,22159,56,0
,2,6377,22161,56,0
,2,6378,22163,56,0
,2,6379,22165,56,0
,2,6380,22167,56,0
,2,6381,22169,56,0
,2,6382,22171,56,0
,2,6383,22173,56,0
,2,6384,22175,56,0
,2,6385,22177,56,0
,2,6386,22179,56,0
,2,6387,22181,56,0
,2,6388,22183,56,0
,2,6389,22185,56,0
,2,6390,22187,56,0
,2,6391,22189,56,0
,2,6392,22191,56,0
,2,6393,22193,56,0
,2,6394,22195,56,0
,2,6395,22197,56,0
,2,6396,22199,56,0
,2,6397,22201,56,0
,2,6398,22203,56,0
,2,6399,22205,56,0
,2,6400,22207,56,0
,2,6401,22209,56,0
,2,6402,22211,56,0
,2,6403,22213,56,0
,2,6404,22215,56,0
,2,6405,22217,56,0
,2,6406,22219,56,0
,2,6407,22221,56,0
,2,6408,22223,56,0
,2,6409,22225,56,0
,2,6410,22227,56,0
,2,6411,22229,56,0
,2,6412,22231,56,0
,2,6413,22233,56,0
,2,6414,22235,56,0
,2,6415,22237,56,0
,2,6416,22239,56,0
,2,6417,22241,56,0
,2,6418,22243,56,0
,2,6419,22245,56,0
,2,6420,22247,56,0
,2,6421,22249,56,0
,2,6422,22251,56,0
,2,6423,22253,56,0
,2,6424,22255,56,0
,2,6425,22257,56,0
,2,6426,22259,56,0
,2,6427,22261,56,0
,2,6428,22263,56,0
,2,6429,22265,56,0
,2,6430,22267,56,0
,2,6431,22269,56,0
,2,6432,22271,56,0
,2,6433,22273,56,0
,2,6434,22275,56,0
,2,6435,22277,56,0
,2,6436,22279,56,0
,2,6437,22281,56,0
,2,6438,22283,56,0
,2,6439,22285,56,0
,2,6440,22287,56,0
,2,6441,22289,56,0
,2,6442,22291,56,0
,2,6443,22293,56,0
,2,6444,22295,56,0
,2,6445,22297,56,0
,2,6446,22299,56,0
,2,6447,22301,56,0
,2,6448,22303,56,0
,2,6449,22305,56,0
,2,6450,22307,56,0
,2,6451,22309,56,0
,2,6452,22311,56,0
,2,6453,22313,56,0
,2,6454,22315,56,0
,2,6455,22317,56,0
,2,6456,22319,56,0
,2,6457,22321,56,0
,2,6458,22323,56,0
,2,6459,22325,56,0
,2,6460,22327,56,0
,2,6461,22329,56,0
,2,6462,22331,56,0
,2,6463,22333,56,0
,2,6464,22335,56,0
,2,6465,22337,56,0
,2,6466,22339,56,0
,2,6467,22341,56,0
,2,6468,22343,56,0
,2,6469,22345,56,0
,2,6470,22347,56,0
,2,6471,22349,56,0
,2,6472,22351,56,0
,2,6473,22353,56,0
,2,6474,22355,56,0
,2,6475,22357,56,0
,2,6476,22359,56,0
,2,6477,22361,56,0
,2,6478,22363,56,0
,2,6479,22365,56,0
,2,6480,22367,56,0
,2,6481,22369,56,0
,2,6482,22371,56,0
,2,6483,22373,56,0
,2,6484,22375,56,0
,2,6485,22377,56,0
,2,6486,22379,56,0
,2,6487,22381,56,0
,2,6488,22383,56,0
,2,6489,22385,56,0
,2,6490,22387,56,0
,2,6491,22389,56,0
,2,6492,22391,56,0
,2,6493,22393,56,0
,2,6494,22395,56,0
,2,6495,22397,56,0
,2,6496,22399,56,0
,2,6497,22401,56,0
,2,6498,22403,56,0
,2,6499,22405,56,0
,2,6500,22407,56,0
,2,6501,22409,56,0
,2,6502,22411,56,0
,2,6503,22413,56,0
,2,6504,22415,56,0
,2,6505,22417,56,0
,2,6506,22419,56,0
,2,6507,22421,56,0
,2,6508,22423,56,0
,2,6509,22425,56,0
,2,6510,22427,56,0
,2,6511,22429,56,0
,2,6512,22431,56,0
,2,6513,22433,56,0
,2,6514,22435,56,0
,2,6515,22437,56,0
,2,6516,22439,56,0
,2,6517,22441,56,0
,2,6518,22443,56,0
,2,6519,22445,56,0
,2,6520,22447,56,0
,2,6521,22449,56,0
,2,6522,22451,56,0
,2,6523,22453,56,0
,2,6524,22455,56,0
,2,6525,22457,56,0
,2,6526,22459,56,0
,2,6527,22461,56,0
,2,6528,22463,56,0
,2,6529,22465,56,0
,2,6530,22467,56,0
,2,6531,22469,56,0
,2,6532,22471,56,0
,2,6533,22473,56,0
,2,6534,22475,56,0
,2,6535,22477,56,0
,2,6536,22479,56,0
,2,6537,22481,56,0
,2,6538,22483,56,0
,2,6539,22485,56,0
,2,6540,22487,56,0
,2,6541,22489,56,0
,2,6542,22491,56,0
,2,6543,22493,56,0
,2,6544,22495,56,0
,2,6545,22497,56,0
,2,6546,22499,56,0
,2,6547,22501,56,0
,2,6548,22503,56,0
,2,6549,22505,56,0
,2,6550,22507,56,0
,2,6551,22509,56,0
,2,6552,22511,56,0
,2,6553,22513,56,0
,2,6554,22515,56,0
,2,6555,22517,56,0
,2,6556,22519,56,0
,2,6557,22521,56,0
,2,6558,22523,56,0
,2,6559,22525,56,0
,2,6560,22527,56,0
,2,6561,22529,56,0
,2,6562,22531,56,0
,2,6563,22533,56,0
,2,6564,22535,56,0
,2,6565,22537,56,0
,2,6566,22539,56,0
,2,6567,22541,56,0
,2,6568,22543,56,0
,2,6569,22545,56,0
,2,6570,22547,56,0
,2,6571,22549,56,0
,2,6572,22551,56,0
,2,6573,22553,56,0
,2,6574,22555,56,0
,2,6575,22557,56,0
,2,6576,22559,56,0
,2,6577,22561,56,0
,2,6578,22563,56,0
,2,6579,22565,56,0
,2,6580,22567,56,0
,2,6581,22569,56,0
,2,6582,22571,56,0
,2,6583,22573,56,0
,2,6584,22575,56,0
,2,6585,22577,56,0
,2,6586,22579,56,0
,2,6587,22581,56,0
,2,6588,22583,56,0
,2,6589,22585,56,0
,2,6590,22587,56,0
,2,6591,22589,56,0
,2,6592,22591,56,0
,2,6593,22593,56,0
,2,6594,22595,56,0
,2,6595,22597,56,0
,2,6596,22599,56,0
,2,6597,22601,56,0
,2,6598,22603,56,0
,2,6599,22605,56,0
,2,6600,22607,56,0
,2,6601,22609,56,0
,2,6602,22611,56,0
,2,6603,22613,56,0
,2,6604,22615,56,0
,2,6605,22617,56,0
,2,6606,22619,56,0
,2,6607,22621,56,0
,2,6608,22623,56,0
,2,6609,22625,56,0
,2,6610,22627,56,0
,2,6611,22629,56,0
,2,6612,22631,56,0
,2,6613,22633,56,0
,2,6614,22635,56,0
,2,6615,22637,56,0
,2,6616,22639,56,0
,2,6617,22641,56,0
,2,6618,22643,56,0
,2,6619,22645,56,0
,2,6620,22647,56,0
,2,6621,22649,56,0
,2,6622,22651,56,0
,2,6623,22653,56,0
,2,6624,22655,56,0
,2,6625,22657,56,0
,2,6626,22659,56,0
,2,6627,22661,56,0
,2,6628,22663,56,0
,2,6629,22665,56,0
,2,6630,22667,56,0
,2,6631,22669,56,0
,2,6632,22671,56,0
,2,6633,22673,56,0
,2,6634,22675,56,0
,2,6635,22677,56,0
,2,6636,22679,56,0
,2,6637,22681,56,0
,2,6638,22683,56,0
,2,6639,22685,56,0
,2,6640,22687,56,0
,2,6641,22689,56,0
,2,6642,22691,56,0
,2,6643,22693,56,0
,2,6644,22695,56,0
,2,6645,22697,56,0
,2,6646,22699,56,0
,2,6647,22701,56,0
,2,6648,22703,56,0
,2,6649,22705,56,0
,2,6650,22707,56,0
,2,6651,22709,56,0
,2,6652,22711,56,0
,2,6653,22713,56,0
,2,6654,22715,56,0
,2,6655,22717,56,0
,2,6656,22719,56,0
,2,6657,22721,56,0
,2,6658,22723,56,0
,2,6659,22725,56,0
,2,6660,22727,56,0
,2,6661,22729,56,0
,2,6662,22731,56,0
,2,6663,22733,56,0
,2,6664,22735,56,0
,2,6665,22737,56,0
,2,6666,22739,56,0
,2,6667,22741,56,0
,2,6668,22743,56,0
,2,6669,22745,56,0
,2,6670,22747,56,0
,2,6671,22749,56,0
,2,6672,22751,56,0
,2,6673,22753,56,0
,2,6674,22755,56,0
,2,6675,22757,56,0
,2,6676,22759,56,0
,2,6677,22761,56,0
,2,6678,22763,56,0
,2,6679,22765,56,0
,2,6680,22767,56,0
,2,6681,22769,56,0
,2,6682,22771,56,0
,2,6683,22773,56,0
,2,6684,22775,56,0
,2,6685,22777,56,0
,2,6686,22779,56,0
,2,6687,22781,56,0
,2,6688,22783,56,0
,2,6689,22785,56,0
,2,6690,22787,56,0
,2,6691,22789,56,0
,2,6692,22791,56,0
,2,6693,22793,56,0
,2,6694,22795,56,0
,2,6695,22797,56,0
,2,6696,22799,56,0
,2,6697,22801,56,0
,2,6698,22803,56,0
,2,6699,22805,56,0
,2,6700,22807,56,0
,2,6701,22809,56,0
,2,6702,22811,56,0
,2,6703,22813,56,0
,2,6704,22815,56,0
,2,6705,22817,56,0
,2,6706,22819,56,0
,2,6707,22821,56,0
,2,6708,22823,56,0
,2,6709,22825,56,0
,2,6710,22827,56,0
,2,6711,22829,56,0
,2,6712,22831,56,0
,2,6713,22833,56,0
,2,6714,22835,56,0
,2,6715,22837,56,0
,2,6716,22839,56,0
,2,6717,22841,56,0
,2,6718,22843,56,0
,2,6719,22845,56,0
,2,6720,22847,56,0
,2,6721,22849,56,0
,2,6722,22851,56,0
,2,6723,22853,56,0
,2,6724,22855,56,0
,2,6725,22857,56,0
,2,6726,22859,56,0
,2,6727,22861,56,0
,2,6728,22863,56,0
,2,6729,22865,56,0
,2,6730,22867,56,0
,2,6731,22869,56,0
,2,6732,22871,56,0
,2,6733,22873,56,0
,2,6734,22875,56,0
,2,6735,22877,56,0
,2,6736,22879,56,0
,2,6737,22881,56,0
,2,6738,22883,56,0
,2,6739,22885,56,0
,2,6740,22887,56,0
,2,6741,22889,56,0
,2,6742,22891,56,0
,2,6743,22893,56,0
,2,6744,22895,56,0
,2,6745,22897,56,0
,2,6746,22899,56,0
,2,6747,22901,56,0
,2,6748,22903,56,0
,2,6749,22905,56,0
,2,6750,22907,56,0
,2,6751,22909,56,0
,2,6752,22911,56,0
,2,6753,22913,56,0
,2,6754,22915,56,0
,2,6755,22917,56,0
,2,6756,22919,56,0
,2,6757,22921,56,0
,2,6758,22923,56,0
,2,6759,22925,56,0
,2,6760,22927,56,0
,2,6761,22929,56,0
,2,6762,22931,56,0
,2,6763,22933,56,0
,2,6764,22935,56,0
,2,6765,22937,56,0
,2,6766,22939,56,0
,2,6767,22941,56,0
,2,6768,22943,56,0
,2,6769,22945,56,0
,2,6770,22947,56,0
,2,6771,22949,56,0
,2,6772,22951,56,0
,2,6773,22953,56,0
,2,6774,22955,56,0
,2,6775,22957,56,0
,2,6776,22959,56,0
,2,6777,22961,56,0
,2,6778,22963,56,0
,2,6779,22965,56,0
,2,6780,22967,56,0
,2,6781,22969,56,0
,2,6782,22971,56,0
,2,6783,22973,56,0
,2,6784,22975,56,0
,2,6785,22977,56,0
,2,6786,22979,56,0
,2,6787,22981,56,0
,2,6788,22983,56,0
,2,6789,22985,56,0
,2,6790,22987,56,0
,2,6791,22989,56,0
,2,6792,22991,56,0
,2,6793,22993,56,0
,2,6794,22995,56,0
,2,6795,22997,56,0
,2,6796,22999,56,0
,2,6797,23001,56,0
,2,6798,23003,56,0
,2,6799,23005,56,0
,2,6800,23007,56,0
,2,6801,23009,56,0
,2,6802,23011,56,0
,2,6803,23013,56,0
,2,6804,23015,56,0
,2,6805,23017,56,0
,2,6806,23019,56,0
,2,6807,23021,56,0
,2,6808,23023,56,0
,2,6809,23025,56,0
,2,6810,23027,56,0
,2,6811,23029,56,0
,2,6812,23031,56,0
,2,6813,23033,56,0
,2,6814,23035,56,0
,2,6815,23037,56,0
,2,6816,23039,56,0
,2,6817,23041,56,0
,2,6818,23043,56,0
,2,6819,23045,56,0
,2,6820,23047,56,0
,2,6821,23049,56,0
,2,6822,23051,56,0
,2,6823,23053,56,0
,2,6824,23055,56,0
,2,6825,23057,56,0
,2,6826,23059,56,0
,2,6827,23061,56,0
,2,6828,23063,56,0
,2,6829,23065,56,0
,2,6830,23067,56,0
,2,6831,23069,56,0
,2,6832,23071,56,0
,2,6833,23073,56,0
,2,6834,23075,56,0
,2,6835,23077,56,0
,2,6836,23079,56,0
,2,6837,23081,56,0
,2,6838,23083,56,0
,2,6839,23085,56,0
,2,6840,23087,56,0
,2,6841,23089,56,0
,2,6842,23091,56,0
,2,6843,23093,56,0
,2,6844,23095,56,0
,2,6845,23097,56,0
,2,6846,23099,56,0
,2,6847,23101,56,0
,2,6848,23103,56,0
,2,6849,23105,56,0
,2,6850,23107,56,0
,2,6851,23109,56,0
,2,6852,23111,56,0
,2,6853,23113,56,0
,2,6854,23115,56,0
,2,6855,23117,56,0
,2,6856,23119,56,0
,2,6857,23121,56,0
,2,6858,23123,56,0
,2,6859,23125,56,0
,2,6860,23127,56,0
,2,6861,23129,56,0
,2,6862,23131,56,0
,2,6863,23133,56,0
,2,6864,23135,56,0
,2,6865,23137,56,0
,2,6866,23139,56,0
,2,6867,23141,56,0
,2,6868,23143,56,0
,2,6869,23145,56,0
,2,6870,23147,56,0
,2,6871,23149,56,0
,2,6872,23151,56,0
,2,6873,23153,56,0
,2,6874,23155,56,0
,2,6875,23157,56,0
,2,6876,23159,56,0
,2,6877,23161,56,0
,2,6878,23163,56,0
,2,6879,23165,56,0
,2,6880,23167,56,0
,2,6881,23169,56,0
,2,6882,23171,56,0
,2,6883,23173,56,0
,2,6884,23175,56,0
,2,6885,23177,56,0
,2,6886,23179,56,0
,2,6887,23181,56,0
,2,6888,23183,56,0
,2,6889,23185,56,0
,2,6890,23187,56,0
,2,6891,23189,56,0
,2,6892,23191,56,0
,2,6893,23193,56,0
,2,6894,23195,56,0
,2,6895,23197,56,0
,2,6896,23199,56,0
,2,6897,23201,56,0
,2,6898,23203,56,0
,2,6899,23205,56,0
,2,6900,23207,56,0
,2,6901,23209,56,0
,2,6902,23211,56,0
,2,6903,23213,56,0
,2,6904,23215,56,0
,2,6905,23217,56,0
,2,6906,23219,56,0
,2,6907,23221,56,0
,2,6908,23223,56,0
,2,6909,23225,56,0
,2,6910,23227,56,0
,2,6911,23229,56,0
,2,6912,23231,56,0
,2,6913,23233,56,0
,2,6914,23235,56,0
,2,6915,23237,56,0
,2,6916,23239,56,0
,2,6917,23241,56,0
,2,6918,23243,56,0
,2,6919,23245,56,0
,2,6920,23247,56,0
,2,6921,23249,56,0
,2,6922,23251,56,0
,2,6923,23253,56,0
,2,6924,23255,56,0
,2,6925,23257,56,0
,2,6926,23259,56,0
,2,6927,23261,56,0
,2,6928,23263,56,0
,2,6929,23265,56,0
,2,6930,23267,56,0
,2,6931,23269,56,0
,2,6932,23271,56,0
,2,6933,23273,56,0
,2,6934,23275,56,0
,2,6935,23277,56,0
,2,6936,23279,56,0
,2,6937,23281,56,0
,2,6938,23283,56,0
,2,6939,23285,56,0
,2,6940,23287,56,0
,2,6941,23289,56,0
,2,6942,23291,56,0
,2,6943,23293,56,0
,2,6944,23295,56,0
,2,6945,23297,56,0
,2,6946,23299,56,0
,2,6947,23301,56,0
,2,6948,23303,56,0
,2,6949,23305,56,0
,2,6950,23307,56,0
,2,6951,23309,56,0
,2,6952,23311,56,0
,2,6953,23313,56,0
,2,6954,23315,56,0
,2,6955,23317,56,0
,2,6956,23319,56,0
,2,6957,23321,56,0
,2,6958,23323,56,0
,2,6959,23325,56,0
,2,6960,23327,56,0
,2,6961,23329,56,0
,2,6962,23331,56,0
,2,6963,23333,56,0
,2,6964,23335,56,0
,2,6965,23337,56,0
,2,6966,23339,56,0
,2,6967,23341,56,0
,2,6968,23343,56,0
,2,6969,23345,56,0
,2,6970,23347,56,0
,2,6971,23349,56,0
,2,6972,23351,56,0
,2,6973,23353,56,0
,2,6974,23355,56,0
,2,6975,23357,56,0
,2,6976,23359,56,0
,2,6977,23361,56,0
,2,6978,23363,56,0
,2,6979,23365,56,0
,2,6980,23367,56,0
,2,6981,23369,56,0
,2,6982,23371,56,0
,2,6983,23373,56,0
,2,6984,23375,56,0
,2,6985,23377,56,0
,2,6986,23379,56,0
,2,6987,23381,56,0
,2,6988,23383,56,0
,2,6989,23385,56,0
,2,6990,23387,56,0
,2,6991,23389,56,0
,2,6992,23391,56,0
,2,6993,23393,56,0
,2,6994,23395,56,0
,2,6995,23397,56,0
,2,6996,23399,56,0
,2,6997,23401,56,0
,2,6998,23403,56,0
,2,6999,23405,56,0
,2,7000,23407,56,0
,2,7001,23409,56,0
,2,7002,23411,56,0
,2,7003,23413,56,0
,2,7004,23415,56,0
,2,7005,23417,56,0
,2,7006,23419,56,0
,2,7007,23421,56,0
,2,7008,23423,56,0
,2,7009,23425,56,0
,2,7010,23427,56,0
,2,7011,23429,56,0
,2,7012,23431,56,0
,2,7013,23433,56,0
,2,7014,23435,56,0
,2,7015,23437,56,0
,2,7016,23439,56,0
,2,7017,23441,56,0
,2,7018,23443,56,0
,2,7019,23445,56,0
,2,7020,23447,56,0
,2,7021,23449,56,0
,2,7022,23451,56,0
,2,7023,23453,56,0
,2,7024,23455,56,0
,2,7025,23457,56,0
,2,7026,23459,56,0
,2,7027,23461,56,0
,2,7028,23463,56,0
,2,7029,23465,56,0
,2,7030,23467,56,0
,2,7031,23469,56,0
,2,7032,23471,56,0
,2,7033,23473,56,0
,2,7034,23475,56,0
,2,7035,23477,56,0
,2,7036,23479,56,0
,2,7037,23481,56,0
,2,7038,23483,56,0
,2,7039,23485,56,0
,2,7040,23487,56,0
,2,7041,23489,56,0
,2,7042,23491,56,0
,2,7043,23493,56,0
,2,7044,23495,56,0
,2,7045,23497,56,0
,2,7046,23499,56,0
,2,7047,23501,56,0
,2,7048,23503,56,0
,2,7049,23505,56,0
,2,7050,23507,56,0
,2,7051,23509,56,0
,2,7052,23511,56,0
,2,7053,23513,56,0
,2,7054,23515,56,0
,2,7055,23517,56,0
,2,7056,23519,56,0
,2,7057,23521,56,0
,2,7058,23523,56,0
,2,7059,23525,56,0
,2,7060,23527,56,0
,2,7061,23529,56,0
,2,7062,23531,56,0
,2,7063,23533,56,0
,2,7064,23535,56,0
,2,7065,23537,56,0
,2,7066,23539,56,0
,2,7067,23541,56,0
,2,7068,23543,56,0
,2,7069,23545,56,0
,2,7070,23547,56,0
,2,7071,23549,56,0
,2,7072,23551,56,0
,2,7073,23553,56,0
,2,7074,23555,56,0
,2,7075,23557,56,0
,2,7076,23559,56,0
,2,7077,23561,56,0
,2,7078,23563,56,0
,2,7079,23565,56,0
,2,7080,23567,56,0
,2,7081,23569,56,0
,2,7082,23571,56,0
,2,7083,23573,56,0
,2,7084,23575,56,0
,2,7085,23577,56,0
,2,7086,23579,56,0
,2,7087,23581,56,0
,2,7088,23583,56,0
,2,7089,23585,56,0
,2,7090,23587,56,0
,2,7091,23589,56,0
,2,7092,23591,56,0
,2,7093,23593,56,0
,2,7094,23595,56,0
,2,7095,23597,56,0
,2,7096,23599,56,0
,2,7097,23601,56,0
,2,7098,23603,56,0
,2,7099,23605,56,0
,2,7100,23607,56,0
,2,7101,23609,56,0
,2,7102,23611,56,0
,2,7103,23613,56,0
,2,7104,23615,56,0
,2,7105,23617,56,0
,2,7106,23619,56,0
,2,7107,23621,56,0
,2,7108,23623,56,0
,2,7109,23625,56,0
,2,7110,23627,56,0
,2,7111,23629,56,0
,2,7112,23631,56,0
,2,7113,23633,56,0
,2,7114,23635,56,0
,2,7115,23637,56,0
,2,7116,23639,56,0
,2,7117,23641,56,0
,2,7118,23643,56,0
,2,7119,23645,56,0
,2,7120,23647,56,0
,2,7121,23649,56,0
,2,7122,23651,56,0
,2,7123,23653,56,0
,2,7124,23655,56,0
,2,7125,23657,56,0
,2,7126,23659,56,0
,2,7127,23661,56,0
,2,7128,23663,56,0
,2,7129,23665,56,0
,2,7130,23667,56,0
,2,7131,23669,56,0
,2,7132,23671,56,0
,2,7133,23673,56,0
,2,7134,23675,56,0
,2,7135,23677,56,0
,2,7136,23679,56,0
,2,7137,23681,56,0
,2,7138,23683,56,0
,2,7139,23685,56,0
,2,7140,23687,56,0
,2,7141,23689,56,0
,2,7142,23691,56,0
,2,7143,23693,56,0
,2,7144,23695,56,0
,2,7145,23697,56,0
,2,7146,23699,56,0
,2,7147,23701,56,0
,2,7148,23703,56,0
,2,7149,23705,56,0
,2,7150,23707,56,0
,2,7151,23709,56,0
,2,7152,23711,56,0
,2,7153,23713,56,0
,2,7154,23715,56,0
,2,7155,23717,56,0
,2,7156,23719,56,0
,2,7157,23721,56,0
,2,7158,23723,56,0
,2,7159,23725,56,0
,2,7160,23727,56,0
,2,7161,23729,56,0
,2,7162,23731,56,0
,2,7163,23733,56,0
,2,7164,23735,56,0
,2,7165,23737,56,0
,2,7166,23739,56,0
,2,7167,23741,56,0
,2,7168,23743,56,0
,2,7169,23745,56,0
,2,7170,23747,56,0
,2,7171,23749,56,0
,2,7172,23751,56,0
,2,7173,23753,56,0
,2,7174,23755,56,0
,2,7175,23757,56,0
,2,7176,23759,56,0
,2,7177,23761,56,0
,2,7178,23763,56,0
,2,7179,23765,56,0
,2,7180,23767,56,0
,2,7181,23769,56,0
,2,7182,23771,56,0
,2,7183,23773,56,0
,2,7184,23775,56,0
,2,7185,23777,56,0
,2,7186,23779,56,0
,2,7187,23781,56,0
,2,7188,23783,56,0
,2,7189,23785,56,0
,2,7190,23787,56,0
,2,7191,23789,56,0
,2,7192,23791,56,0
,2,7193,23793,56,0
,2,7194,23795,56,0
,2,7195,23797,56,0
,2,7196,23799,56,0
,2,7197,23801,56,0
,2,7198,23803,56,0
,2,7199,23805,56,0
,2,7200,23807,56,0
,2,7201,23809,56,0
,2,7202,23811,56,0
,2,7203,23813,56,0
,2,7204,23815,56,0
,2,7205,23817,56,0
,2,7206,23819,56,0
,2,7207,23821,56,0
,2,7208,23823,56,0
,2,7209,23825,56,0
,2,7210,23827,56,0
,2,7211,23829,56,0
,2,7212,23831,56,0
,2,7213,23833,56,0
,2,7214,23835,56,0
,2,7215,23837,56,0
,2,7216,23839,56,0
,2,7217,23841,56,0
,2,7218,23843,56,0
,2,7219,23845,56,0
,2,7220,23847,56,0
,2,7221,23849,56,0
,2,7222,23851,56,0
,2,7223,23853,56,0
,2,7224,23855,56,0
,2,7225,23857,56,0
,2,7226,23859,56,0
,2,7227,23861,56,0
,2,7228,23863,56,0
,2,7229,23865,56,0
,2,7230,23867,56,0
,2,7231,23869,56,0
,2,7232,23871,56,0
,2,7233,23873,56,0
,2,7234,23875,56,0
,2,7235,23877,56,0
,2,7236,23879,56,0
,2,7237,23881,56,0
,2,7238,23883,56,0
,2,7239,23885,56,0
,2,7240,23887,56,0
,2,7241,23889,56,0
,2,7242,23891,56,0
,2,7243,23893,56,0
,2,7244,23895,56,0
,2,7245,23897,56,0
,2,7246,23899,56,0
,2,7247,23901,56,0
,2,7248,23903,56,0
,2,7249,23905,56,0
,2,7250,23907,56,0
,2,7251,23909,56,0
,2,7252,23911,56,0
,2,7253,23913,56,0
,2,7254,23915,56,0
,2,7255,23917,56,0
,2,7256,23919,56,0
,2,7257,23921,56,0
,2,7258,23923,56,0
,2,7259,23925,56,0
,2,7260,23927,56,0
,2,7261,23929,56,0
,2,7262,23931,56,0
,2,7263,23933,56,0
,2,7264,23935,56,0
,2,7265,23937,56,0
,2,7266,23939,56,0
,2,7267,23941,56,0
,2,7268,23943,56,0
,2,7269,23945,56,0
,2,7270,23947,56,0
,2,7271,23949,56,0
,2,7272,23951,56,0
,2,7273,23953,56,0
,2,7274,23955,56,0
,2,7275,23957,56,0
,2,7276,23959,56,0
,2,7277,23961,56,0
,2,7278,23963,56,0
,2,7279,23965,56,0
,2,7280,23967,56,0
,2,7281,23969,56,0
,2,7282,23971,56,0
,2,7283,23973,56,0
,2,7284,23975,56,0
,2,7285,23977,56,0
,2,7286,23979,56,0
,2,7287,23981,56,0
,2,7288,23983,56,0
,2,7289,23985,56,0
,2,7290,23987,56,0
,2,7291,23989,56,0
,2,7292,23991,56,0
,2,7293,23993,56,0
,2,7294,23995,56,0
,2,7295,23997,56,0
,2,7296,23999,56,0
,2,7297,24001,56,0
,2,7298,24003,56,0
,2,7299,24005,56,0
,2,7300,24007,56,0
,2,7301,24009,56,0
,2,7302,24011,56,0
,2,7303,24013,56,0
,2,7304,24015,56,0
,2,7305,24017,56,0
,2,7306,24019,56,0
,2,7307,24021,56,0
,2,7308,24023,56,0
,2,7309,24025,56,0
,2,7310,24027,56,0
,2,7311,24029,56,0
,2,7312,24031,56,0
,2,7313,24033,56,0
,2,7314,24035,56,0
,2,7315,24037,56,0
,2,7316,24039,56,0
,2,7317,24041,56,0
,2,7318,24043,56,0
,2,7319,24045,56,0
,2,7320,24047,56,0
,2,7321,24049,56,0
,2,7322,24051,56,0
,2,7323,24053,56,0
,2,7324,24055,56,0
,2,7325,24057,56,0
,2,7326,24059,56,0
,2,7327,24061,56,0
,2,7328,24063,56,0
,2,7329,24065,56,0
,2,7330,24067,56,0
,2,7331,24069,56,0
,2,7332,24071,56,0
,2,7333,24073,56,0
,2,7334,24075,56,0
,2,7335,24077,56,0
,2,7336,24079,56,0
,2,7337,24081,56,0
,2,7338,24083,56,0
,2,7339,24085,56,0
,2,7340,24087,56,0
,2,7341,24089,56,0
,2,7342,24091,56,0
,2,7343,24093,56,0
,2,7344,24095,56,0
,2,7345,24097,56,0
,2,7346,24099,56,0
,2,7347,24101,56,0
,2,7348,24103,56,0
,2,7349,24105,56,0
,2,7350,24107,56,0
,2,7351,24109,56,0
,2,7352,24111,56,0
,2,7353,24113,56,0
,2,7354,24115,56,0
,2,7355,24117,56,0
,2,7356,24119,56,0
,2,7357,24121,56,0
,2,7358,24123,56,0
,2,7359,24125,56,0
,2,7360,24127,56,0
,2,7361,24129,56,0
,2,7362,24131,56,0
,2,7363,24133,56,0
,2,7364,24135,56,0
,2,7365,24137,56,0
,2,7366,24139,56,0
,2,7367,24141,56,0
,2,7368,24143,56,0
,2,7369,24145,56,0
,2,7370,24147,56,0
,2,7371,24149,56,0
,2,7372,24151,56,0
,2,7373,24153,56,0
,2,7374,24155,56,0
,2,7375,24157,56,0
,2,7376,24159,56,0
,2,7377,24161,56,0
,2,7378,24163,56,0
,2,7379,24165,56,0
,2,7380,24167,56,0
,2,7381,24169,56,0
,2,7382,24171,56,0
,2,7383,24173,56,0
,2,7384,24175,56,0
,2,7385,24177,56,0
,2,7386,24179,56,0
,2,7387,24181,56,0
,2,7388,24183,56,0
,2,7389,24185,56,0
,2,7390,24187,56,0
,2,7391,24189,56,0
,2,7392,24191,56,0
,2,7393,24193,56,0
,2,7394,24195,56,0
,2,7395,24197,56,0
,2,7396,24199,56,0
,2,7397,24201,56,0
,2,7398,24203,56,0
,2,7399,24205,56,0
,2,7400,24207,56,0
,2,7401,24209,56,0
,2,7402,24211,56,0
,2,7403,24213,56,0
,2,7404,24215,56,0
,2,7405,24217,56,0
,2,7406,24219,56,0
,2,7407,24221,56,0
,2,7408,24223,56,0
,2,7409,24225,56,0
,2,7410,24227,56,0
,2,7411,24229,56,0
,2,7412,24231,56,0
,2,7413,24233,56,0
,2,7414,24235,56,0
,2,7415,24237,56,0
,2,7416,24239,56,0
,2,7417,24241,56,0
,2,7418,24243,56,0
,2,7419,24245,56,0
,2,7420,24247,56,0
,2,7421,24249,56,0
,2,7422,24251,56,0
,2,7423,24253,56,0
,2,7424,24255,56,0
,2,7425,24257,56,0
,2,7426,24259,56,0
,2,7427,24261,56,0
,2,7428,24263,56,0
,2,7429,24265,56,0
,2,7430,24267,56,0
,2,7431,24269,56,0
,2,7432,24271,56,0
,2,7433,24273,56,0
,2,7434,24275,56,0
,2,7435,24277,56,0
,2,7436,24279,56,0
,2,7437,24281,56,0
,2,7438,24283,56,0
,2,7439,24285,56,0
,2,7440,24287,56,0
,2,7441,24289,56,0
,2,7442,24291,56,0
,2,7443,24293,56,0
,2,7444,24295,56,0
,2,7445,24297,56,0
,2,7446,24299,56,0
,2,7447,24301,56,0
,2,7448,24303,56,0
,2,7449,24305,56,0
,2,7450,24307,56,0
,2,7451,24309,56,0
,2,7452,24311,56,0
,2,7453,24313,56,0
,2,7454,24315,56,0
,2,7455,24317,56,0
,2,7456,24319,56,0
,2,7457,24321,56,0
,2,7458,24323,56,0
,2,7459,24325,56,0
,2,7460,24327,56,0
,2,7461,24329,56,0
,2,7462,24331,56,0
,2,7463,24333,56,0
,2,7464,24335,56,0
,2,7465,24337,56,0
,2,7466,24339,56,0
,2,7467,24341,56,0
,2,7468,24343,56,0
,2,7469,24345,56,0
,2,7470,24347,56,0
,2,7471,24349,56,0
,2,7472,24351,56,0
,2,7473,24353,56,0
,2,7474,24355,56,0
,2,7475,24357,56,0
,2,7476,24359,56,0
,2,7477,24361,56,0
,2,7478,24363,56,0
,2,7479,24365,56,0
,2,7480,24367,56,0
,2,7481,24369,56,0
,2,7482,24371,56,0
,2,7483,24373,56,0
,2,7484,24375,56,0
,2,7485,24377,56,0
,2,7486,24379,56,0
,2,7487,24381,56,0
,2,7488,24383,56,0
,2,7489,24385,56,0
,2,7490,24387,56,0
,2,7491,24389,56,0
,2,7492,24391,56,0
,2,7493,24393,56,0
,2,7494,24395,56,0
,2,7495,24397,56,0
,2,7496,24399,56,0
,2,7497,24401,56,0
,2,7498,24403,56,0
,2,7499,24405,56,0
,2,7500,24407,56,0
,2,7501,24409,56,0
,2,7502,24411,56,0
,2,7503,24413,56,0
,2,7504,24415,56,0
,2,7505,24417,56,0
,2,7506,24419,56,0
,2,7507,24421,56,0
,2,7508,24423,56,0
,2,7509,24425,56,0
,2,7510,24427,56,0
,2,7511,24429,56,0
,2,7512,24431,56,0
,2,7513,24433,56,0
,2,7514,24435,56,0
,2,7515,24437,56,0
,2,7516,24439,56,0
,2,7517,24441,56,0
,2,7518,24443,56,0
,2,7519,24445,56,0
,2,7520,24447,56,0
,2,7521,24449,56,0
,2,7522,24451,56,0
,2,7523,24453,56,0
,2,7524,24455,56,0
,2,7525,24457,56,0
,2,7526,24459,56,0
,2,7527,24461,56,0
,2,7528,24463,56,0
,2,7529,24465,56,0
,2,7530,24467,56,0
,2,7531,24469,56,0
,2,7532,24471,56,0
,2,7533,24473,56,0
,2,7534,24475,56,0
,2,7535,24477,56,0
,2,7536,24479,56,0
,2,7537,24481,56,0
,2,7538,24483,56,0
,2,7539,24485,56,0
,2,7540,24487,56,0
,2,7541,24489,56,0
,2,7542,24491,56,0
,2,7543,24493,56,0
,2,7544,24495,56,0
,2,7545,24497,56,0
,2,7546,24499,56,0
,2,7547,24501,56,0
,2,7548,24503,56,0
,2,7549,24505,56,0
,2,7550,24507,56,0
,2,7551,24509,56,0
,2,7552,24511,56,0
,2,7553,24513,56,0
,2,7554,24515,56,0
,2,7555,24517,56,0
,2,7556,24519,56,0
,2,7557,24521,56,0
,2,7558,24523,56,0
,2,7559,24525,56,0
,2,7560,24527,56,0
,2,7561,24529,56,0
,2,7562,24531,56,0
,2,7563,24533,56,0
,2,7564,24535,56,0
,2,7565,24537,56,0
,2,7566,24539,56,0
,2,7567,24541,56,0
,2,7568,24543,56,0
,2,7569,24545,56,0
,2,7570,24547,56,0
,2,7571,24549,56,0
,2,7572,24551,56,0
,2,7573,24553,56,0
,2,7574,24555,56,0
,2,7575,24557,56,0
,2,7576,24559,56,0
,2,7577,24561,56,0
,2,7578,24563,56,0
,2,7579,24565,56,0
,2,7580,24567,56,0
,2,7581,24569,56,0
,2,7582,24571,56,0
,2,7583,24573,56,0
,2,7584,24575,56,0
,2,7585,24577,56,0
,2,7586,24579,56,0
,2,7587,24581,56,0
,2,7588,24583,56,0
,2,7589,24585,56,0
,2,7590,24587,56,0
,2,7591,24589,56,0
,2,7592,24591,56,0
,2,7593,24593,56,0
,2,7594,24595,56,0
,2,7595,24597,56,0
,2,7596,24599,56,0
,2,7597,24601,56,0
,2,7598,24603,56,0
,2,7599,24605,56,0
,2,7600,24607,56,0
,2,7601,24609,56,0
,2,7602,24611,56,0
,2,7603,24613,56,0
,2,7604,24615,56,0
,2,7605,24617,56,0
,2,7606,24619,56,0
,2,7607,24621,56,0
,2,7608,24623,56,0
,2,7609,24625,56,0
,2,7610,24627,56,0
,2,7611,24629,56,0
,2,7612,24631,56,0
,2,7613,24633,56,0
,2,7614,24635,56,0
,2,7615,24637,56,0
,2,7616,24639,56,0
,2,7617,24641,56,0
,2,7618,24643,56,0
,2,7619,24645,56,0
,2,7620,24647,56,0
,2,7621,24649,56,0
,2,7622,24651,56,0
,2,7623,24653,56,0
,2,7624,24655,56,0
,2,7625,24657,56,0
,2,7626,24659,56,0
,2,7627,24661,56,0
,2,7628,24663,56,0
,2,7629,24665,56,0
,2,7630,24667,56,0
,2,7631,24669,56,0
,2,7632,24671,56,0
,2,7633,24673,56,0
,2,7634,24675,56,0
,2,7635,24677,56,0
,2,7636,24679,56,0
,2,7637,24681,56,0
,2,7638,24683,56,0
,2,7639,24685,56,0
,2,7640,24687,56,0
,2,7641,24689,56,0
,2,7642,24691,56,0
,2,7643,24693,56,0
,2,7644,24695,56,0
,2,7645,24697,56,0
,2,7646,24699,56,0
,2,7647,24701,56,0
,2,7648,24703,56,0
,2,7649,24705,56,0
,2,7650,24707,56,0
,2,7651,24709,56,0
,2,7652,24711,56,0
,2,7653,24713,56,0
,2,7654,24715,56,0
,2,7655,24717,56,0
,2,7656,24719,56,0
,2,7657,24721,56,0
,2,7658,24723,56,0
,2,7659,24725,56,0
,2,7660,24727,56,0
,2,7661,24729,56,0
,2,7662,24731,56,0
,2,7663,24733,56,0
,2,7664,24735,56,0
,2,7665,24737,56,0
,2,7666,24739,56,0
,2,7667,24741,56,0
,2,7668,24743,56,0
,2,7669,24745,56,0
,2,7670,24747,56,0
,2,7671,24749,56,0
,2,7672,24751,56,0
,2,7673,24753,56,0
,2,7674,24755,56,0
,2,7675,24757,56,0
,2,7676,24759,56,0
,2,7677,24761,56,0
,2,7678,24763,56,0
,2,7679,24765,56,0
,2,7680,24767,56,0
,2,7681,24769,56,0
,2,7682,24771,56,0
,2,7683,24773,56,0
,2,7684,24775,56,0
,2,7685,24777,56,0
,2,7686,24779,56,0
,2,7687,24781,56,0
,2,7688,24783,56,0
,2,7689,24785,56,0
,2,7690,24787,56,0
,2,7691,24789,56,0
,2,7692,24791,56,0
,2,7693,24793,56,0
,2,7694,24795,56,0
,2,7695,24797,56,0
,2,7696,24799,56,0
,2,7697,24801,56,0
,2,7698,24803,56,0
,2,7699,24805,56,0
,2,7700,24807,56,0
,2,7701,24809,56,0
,2,7702,24811,56,0
,2,7703,24813,56,0
,2,7704,24815,56,0
,2,7705,24817,56,0
,2,7706,24819,56,0
,2,7707,24821,56,0
,2,7708,24823,56,0
,2,7709,24825,56,0
,2,7710,24827,56,0
,2,7711,24829,56,0
,2,7712,24831,56,0
,2,7713,24833,56,0
,2,7714,24835,56,0
,2,7715,24837,56,0
,2,7716,24839,56,0
,2,7717,24841,56,0
,2,7718,24843,56,0
,2,7719,24845,56,0
,2,7720,24847,56,0
,2,7721,24849,56,0
,2,7722,24851,56,0
,2,7723,24853,56,0
,2,7724,24855,56,0
,2,7725,24857,56,0
,2,7726,24859,56,0
,2,7727,24861,56,0
,2,7728,24863,56,0
,2,7729,24865,56,0
,2,7730,24867,56,0
,2,7731,24869,56,0
,2,7732,24871,56,0
,2,7733,24873,56,0
,2,7734,24875,56,0
,2,7735,24877,56,0
,2,7736,24879,56,0
,2,7737,24881,56,0
,2,7738,24883,56,0
,2,7739,24885,56,0
,2,7740,24887,56,0
,2,7741,24889,56,0
,2,7742,24891,56,0
,2,7743,24893,56,0
,2,7744,24895,56,0
,2,7745,24897,56,0
,2,7746,24899,56,0
,2,7747,24901,56,0
,2,7748,24903,56,0
,2,7749,24905,56,0
,2,7750,24907,56,0
,2,7751,24909,56,0
,2,7752,24911,56,0
,2,7753,24913,56,0
,2,7754,24915,56,0
,2,7755,24917,56,0
,2,7756,24919,56,0
,2,7757,24921,56,0
,2,7758,24923,56,0
,2,7759,24925,56,0
,2,7760,24927,56,0
,2,7761,24929,56,0
,2,7762,24931,56,0
,2,7763,24933,56,0
,2,7764,24935,56,0
,2,7765,24937,56,0
,2,7766,24939,56,0
,2,7767,24941,56,0
,2,7768,24943,56,0
,2,7769,24945,56,0
,2,7770,24947,56,0
,2,7771,24949,56,0
,2,7772,24951,56,0
,2,7773,24953,56,0
,2,7774,24955,56,0
,2,7775,24957,56,0
,2,7776,24959,56,0
,2,7777,24961,56,0
,2,7778,24963,56,0
,2,7779,24965,56,0
,2,7780,24967,56,0
,2,7781,24969,56,0
,2,7782,24971,56,0
,2,7783,24973,56,0
,2,7784,24975,56,0
,2,7785,24977,56,0
,2,7786,24979,56,0
,2,7787,24981,56,0
,2,7788,24983,56,0
,2,7789,24985,56,0
,2,7790,24987,56,0
,2,7791,24989,56,0
,2,7792,24991,56,0
,2,7793,24993,56,0
,2,7794,24995,56,0
,2,7795,24997,56,0
,2,7796,24999,56,0
,2,7797,25001,56,0
,2,7798,25003,56,0
,2,7799,25005,56,0
,2,7800,25007,56,0
,2,7801,25009,56,0
,2,7802,25011,56,0
,2,7803,25013,56,0
,2,7804,25015,56,0
,2,7805,25017,56,0
,2,7806,25019,56,0
,2,7807,25021,56,0
,2,7808,25023,56,0
,2,7809,25025,56,0
,2,7810,25027,56,0
,2,7811,25029,56,0
,2,7812,25031,56,0
,2,7813,25033,56,0
,2,7814,25035,56,0
,2,7815,25037,56,0
,2,7816,25039,56,0
,2,7817,25041,56,0
,2,7818,25043,56,0
,2,7819,25045,56,0
,2,7820,25047,56,0
,2,7821,25049,56,0
,2,7822,25051,56,0
,2,7823,25053,56,0
,2,7824,25055,56,0
,2,7825,25057,56,0
,2,7826,25059,56,0
,2,7827,25061,56,0
,2,7828,25063,56,0
,2,7829,25065,56,0
,2,7830,25067,56,0
,2,7831,25069,56,0
,2,7832,25071,56,0
,2,7833,25073,56,0
,2,7834,25075,56,0
,2,7835,25077,56,0
,2,7836,25079,56,0
,2,7837,25081,56,0
,2,7838,25083,56,0
,2,7839,25085,56,0
,2,7840,25087,56,0
,2,7841,25089,56,0
,2,7842,25091,56,0
,2,7843,25093,56,0
,2,7844,25095,56,0
,2,7845,25097,56,0
,2,7846,25099,56,0
,2,7847,25101,56,0
,2,7848,25103,56,0
,2,7849,25105,56,0
,2,7850,25107,56,0
,2,7851,25109,56,0
,2,7852,25111,56,0
,2,7853,25113,56,0
,2,7854,25115,56,0
,2,7855,25117,56,0
,2,7856,25119,56,0
,2,7857,25121,56,0
,2,7858,25123,56,0
,2,7859,25125,56,0
,2,7860,25127,56,0
,2,7861,25129,56,0
,2,7862,25131,56,0
,2,7863,25133,56,0
,2,7864,25135,56,0
,2,7865,25137,56,0
,2,7866,25139,56,0
,2,7867,25141,56,0
,2,7868,25143,56,0
,2,7869,25145,56,0
,2,7870,25147,56,0
,2,7871,25149,56,0
,2,7872,25151,56,0
,2,7873,25153,56,0
,2,7874,25155,56,0
,2,7875,25157,56,0
,2,7876,25159,56,0
,2,7877,25161,56,0
,2,7878,25163,56,0
,2,7879,25165,56,0
,2,7880,25167,56,0
,2,7881,25169,56,0
,2,7882,25171,56,0
,2,7883,25173,56,0
,2,7884,25175,56,0
,2,7885,25177,56,0
,2,7886,25179,56,0
,2,7887,25181,56,0
,2,7888,25183,56,0
,2,7889,25185,56,0
,2,7890,25187,56,0
,2,7891,25189,56,0
,2,7892,25191,56,0
,2,7893,25193,56,0
,2,7894,25195,56,0
,2,7895,25197,56,0
,2,7896,25199,56,0
,2,7897,25201,56,0
,2,7898,25203,56,0
,2,7899,25205,56,0
,2,7900,25207,56,0
,2,7901,25209,56,0
,2,7902,25211,56,0
,2,7903,25213,56,0
,2,7904,25215,56,0
,2,7905,25217,56,0
,2,7906,25219,56,0
,2,7907,25221,56,0
,2,7908,25223,56,0
,2,7909,25225,56,0
,2,7910,25227,56,0
,2,7911,25229,56,0
,2,7912,25231,56,0
,2,7913,25233,56,0
,2,7914,25235,56,0
,2,7915,25237,56,0
,2,7916,25239,56,0
,2,7917,25241,56,0
,2,7918,25243,56,0
,2,7919,25245,56,0
,2,7920,25247,56,0
,2,7921,25249,56,0
,2,7922,25251,56,0
,2,7923,25253,56,0
,2,7924,25255,56,0
,2,7925,25257,56,0
,2,7926,25259,56,0
,2,7927,25261,56,0
,2,7928,25263,56,0
,2,7929,25265,56,0
,2,7930,25267,56,0
,2,7931,25269,56,0
,2,7932,25271,56,0
,2,7933,25273,56,0
,2,7934,25275,56,0
,2,7935,25277,56,0
,2,7936,25279,56,0
,2,7937,25281,56,0
,2,7938,25283,56,0
,2,7939,25285,56,0
,2,7940,25287,56,0
,2,7941,25289,56,0
,2,7942,25291,56,0
,2,7943,25293,56,0
,2,7944,25295,56,0
,2,7945,25297,56,0
,2,7946,25299,56,0
,2,7947,25301,56,0
,2,7948,25303,56,0
,2,7949,25305,56,0
,2,7950,25307,56,0
,2,7951,25309,56,0
,2,7952,25311,56,0
,2,7953,25313,56,0
,2,7954,25315,56,0
,2,7955,25317,56,0
,2,7956,25319,56,0
,2,7957,25321,56,0
,2,7958,25323,56,0
,2,7959,25325,56,0
,2,7960,25327,56,0
,2,7961,25329,56,0
,2,7962,25331,56,0
,2,7963,25333,56,0
,2,7964,25335,56,0
,2,7965,25337,56,0
,2,7966,25339,56,0
,2,7967,25341,56,0
,2,7968,25343,56,0
,2,7969,25345,56,0
,2,7970,25347,56,0
,2,7971,25349,56,0
,2,7972,25351,56,0
,2,7973,25353,56,0
,2,7974,25355,56,0
,2,7975,25357,56,0
,2,7976,25359,56,0
,2,7977,25361,56,0
,2,7978,25363,56,0
,2,7979,25365,56,0
,2,7980,25367,56,0
,2,7981,25369,56,0
,2,7982,25371,56,0
,2,7983,25373,56,0
,2,7984,25375,56,0
,2,7985,25377,56,0
,2,7986,25379,56,0
,2,7987,25381,56,0
,2,7988,25383,56,0
,2,7989,25385,56,0
,2,7990,25387,56,0
,2,7991,25389,56,0
,2,7992,25391,56,0
,2,7993,25393,56,0
,2,7994,25395,56,0
,2,7995,25397,56,0
,2,7996,25399,56,0
,2,7997,25401,56,0
,2,7998,25403,56,0
,2,7999,25405,56,0
,2,8000,25407,56,0
,2,8001,25409,56,0
,2,8002,25411,56,0
,2,8003,25413,56,0
,2,8004,25415,56,0
,2,8005,25417,56,0
,2,8006,25419,56,0
,2,8007,25421,56,0
,2,8008,25423,56,0
,2,8009,25425,56,0
,2,8010,25427,56,0
,2,8011,25429,56,0
,2,8012,25431,56,0
,2,8013,25433,56,0
,2,8014,25435,56,0
,2,8015,25437,56,0
,2,8016,25439,56,0
,2,8017,25441,56,0
,2,8018,25443,56,0
,2,8019,25445,56,0
,2,8020,25447,56,0
,2,8021,25449,56,0
,2,8022,25451,56,0
,2,8023,25453,56,0
,2,8024,25455,56,0
,2,8025,25457,56,0
,2,8026,25459,56,0
,2,8027,25461,56,0
,2,8028,25463,56,0
,2,8029,25465,56,0
,2,8030,25467,56,0
,2,8031,25469,56,0
,2,8032,25471,56,0
,2,8033,25473,56,0
,2,8034,25475,56,0
,2,8035,25477,56,0
,2,8036,25479,56,0
,2,8037,25481,56,0
,2,8038,25483,56,0
,2,8039,25485,56,0
,2,8040,25487,56,0
,2,8041,25489,56,0
,2,8042,25491,56,0
,2,8043,25493,56,0
,2,8044,25495,56,0
,2,8045,25497,56,0
,2,8046,25499,56,0
,2,8047,25501,56,0
,2,8048,25503,56,0
,2,8049,25505,56,0
,2,8050,25507,56,0
,2,8051,25509,56,0
,2,8052,25511,56,0
,2,8053,25513,56,0
,2,8054,25515,56,0
,2,8055,25517,56,0
,2,8056,25519,56,0
,2,8057,25521,56,0
,2,8058,25523,56,0
,2,8059,25525,56,0
,2,8060,25527,56,0
,2,8061,25529,56,0
,2,8062,25531,56,0
,2,8063,25533,56,0
,2,8064,25535,56,0
,2,8065,25537,56,0
,2,8066,25539,56,0
,2,8067,25541,56,0
,2,8068,25543,56,0
,2,8069,25545,56,0
,2,8070,25547,56,0
,2,8071,25549,56,0
,2,8072,25551,56,0
,2,8073,25553,56,0
,2,8074,25555,56,0
,2,8075,25557,56,0
,2,8076,25559,56,0
,2,8077,25561,56,0
,2,8078,25563,56,0
,2,8079,25565,56,0
,2,8080,25567,56,0
,2,8081,25569,56,0
,2,8082,25571,56,0
,2,8083,25573,56,0
,2,8084,25575,56,0
,2,8085,25577,56,0
,2,8086,25579,56,0
,2,8087,25581,56,0
,2,8088,25583,56,0
,2,8089,25585,56,0
,2,8090,25587,56,0
,2,8091,25589,56,0
,2,8092,25591,56,0
,2,8093,25593,56,0
,2,8094,25595,56,0
,2,8095,25597,56,0
,2,8096,25599,56,0
,2,8097,25601,56,0
,2,8098,25603,56,0
,2,8099,25605,56,0
,2,8100,25607,56,0
,2,8101,25609,56,0
,2,8102,25611,56,0
,2,8103,25613,56,0
,2,8104,25615,56,0
,2,8105,25617,56,0
,2,8106,25619,56,0
,2,8107,25621,56,0
,2,8108,25623,56,0
,2,8109,25625,56,0
,2,8110,25627,56,0
,2,8111,25629,56,0
,2,8112,25631,56,0
,2,8113,25633,56,0
,2,8114,25635,56,0
,2,8115,25637,56,0
,2,8116,25639,56,0
,2,8117,25641,56,0
,2,8118,25643,56,0
,2,8119,25645,56,0
,2,8120,25647,56,0
,2,8121,25649,56,0
,2,8122,25651,56,0
,2,8123,25653,56,0
,2,8124,25655,56,0
,2,8125,25657,56,0
,2,8126,25659,56,0
,2,8127,25661,56,0
,2,8128,25663,56,0
,2,8129,25665,56,0
,2,8130,25667,56,0
,2,8131,25669,56,0
,2,8132,25671,56,0
,2,8133,25673,56,0
,2,8134,25675,56,0
,2,8135,25677,56,0
,2,8136,25679,56,0
,2,8137,25681,56,0
,2,8138,25683,56,0
,2,8139,25685,56,0
,2,8140,25687,56,0
,2,8141,25689,56,0
,2,8142,25691,56,0
,2,8143,25693,56,0
,2,8144,25695,56,0
,2,8145,25697,56,0
,2,8146,25699,56,0
,2,8147,25701,56,0
,2,8148,25703,56,0
,2,8149,25705,56,0
,2,8150,25707,56,0
,2,8151,25709,56,0
,2,8152,25711,56,0
,2,8153,25713,56,0
,2,8154,25715,56,0
,2,8155,25717,56,0
,2,8156,25719,56,0
,2,8157,25721,56,0
,2,8158,25723,56,0
,2,8159,25725,56,0
,2,8160,25727,56,0
,2,8161,25729,56,0
,2,8162,25731,56,0
,2,8163,25733,56,0
,2,8164,25735,56,0
,2,8165,25737,56,0
,2,8166,25739,56,0
,2,8167,25741,56,0
,2,8168,25743,56,0
,2,8169,25745,56,0
,2,8170,25747,56,0
,2,8171,25749,56,0
,2,8172,25751,56,0
,2,8173,25753,56,0
,2,8174,25755,56,0
,2,8175,25757,56,0
,2,8176,25759,56,0
,2,8177,25761,56,0
,2,8178,25763,56,0
,2,8179,25765,56,0
,2,8180,25767,56,0
,2,8181,25769,56,0
,2,8182,25771,56,0
,2,8183,25773,56,0
,2,8184,25775,56,0
,2,8185,25777,56,0
,2,8186,25779,56,0
,2,8187,25781,56,0
,2,8188,25783,56,0
,2,8189,25785,56,0
,2,8190,25787,56,0
,2,8191,25789,56,0
,2,8192,25791,56,0
,2,8193,25793,56,0
,2,8194,25795,56,0
,2,8195,25797,56,0
,2,8196,25799,56,0
,2,8197,25801,56,0
,2,8198,25803,56,0
,2,8199,25805,56,0
,2,8200,25807,56,0
,2,8201,25809,56,0
,2,8202,25811,56,0
,2,8203,25813,56,0
,2,8204,25815,56,0
,2,8205,25817,56,0
,2,8206,25819,56,0
,2,8207,25821,56,0
,2,8208,25823,56,0
,2,8209,25825,56,0
,2,8210,25827,56,0
,2,8211,25829,56,0
,2,8212,25831,56,0
,2,8213,25833,56,0
,2,8214,25835,56,0
,2,8215,25837,56,0
,2,8216,25839,56,0
,2,8217,25841,56,0
,2,8218,25843,56,0
,2,8219,25845,56,0
,2,8220,25847,56,0
,2,8221,25849,56,0
,2,8222,25851,56,0
,2,8223,25853,56,0
,2,8224,25855,56,0
,2,8225,25857,56,0
,2,8226,25859,56,0
,2,8227,25861,56,0
,2,8228,25863,56,0
,2,8229,25865,56,0
,2,8230,25867,56,0
,2,8231,25869,56,0
,2,8232,25871,56,0
,2,8233,25873,56,0
,2,8234,25875,56,0
,2,8235,25877,56,0
,2,8236,25879,56,0
,2,8237,25881,56,0
,2,8238,25883,56,0
,2,8239,25885,56,0
,2,8240,25887,56,0
,2,8241,25889,56,0
,2,8242,25891,56,0
,2,8243,25893,56,0
,2,8244,25895,56,0
,2,8245,25897,56,0
,2,8246,25899,56,0
,2,8247,25901,56,0
,2,8248,25903,56,0
,2,8249,25905,56,0
,2,8250,25907,56,0
,2,8251,25909,56,0
,2,8252,25911,56,0
,2,8253,25913,56,0
,2,8254,25915,56,0
,2,8255,25917,56,0
,2,8256,25919,56,0
,2,8257,25921,56,0
,2,8258,25923,56,0
,2,8259,25925,56,0
,2,8260,25927,56,0
,2,8261,25929,56,0
,2,8262,25931,56,0
,2,8263,25933,56,0
,2,8264,25935,56,0
,2,8265,25937,56,0
,2,8266,25939,56,0
,2,8267,25941,56,0
,2,8268,25943,56,0
,2,8269,25945,56,0
,2,8270,25947,56,0
,2,8271,25949,56,0
,2,8272,25951,56,0
,2,8273,25953,56,0
,2,8274,25955,56,0
,2,8275,25957,56,0
,2,8276,25959,56,0
,2,8277,25961,56,0
,2,8278,25963,56,0
,2,8279,25965,56,0
,2,8280,25967,56,0
,2,8281,25969,56,0
,2,8282,25971,56,0
,2,8283,25973,56,0
,2,8284,25975,56,0
,2,8285,25977,56,0
,2,8286,25979,56,0
,2,8287,25981,56,0
,2,8288,25983,56,0
,2,8289,25985,56,0
,2,8290,25987,56,0
,2,8291,25989,56,0
,2,8292,25991,56,0
,2,8293,25993,56,0
,2,8294,25995,56,0
,2,8295,25997,56,0
,2,8296,25999,56,0
,2,8297,26001,56,0
,2,8298,26003,56,0
,2,8299,26005,56,0
,2,8300,26007,56,0
,2,8301,26009,56,0
,2,8302,26011,56,0
,2,8303,26013,56,0
,2,8304,26015,56,0
,2,8305,26017,56,0
,2,8306,26019,56,0
,2,8307,26021,56,0
,2,8308,26023,56,0
,2,8309,26025,56,0
,2,8310,26027,56,0
,2,8311,26029,56,0
,2,8312,26031,56,0
,2,8313,26033,56,0
,2,8314,26035,56,0
,2,8315,26037,56,0
,2,8316,26039,56,0
,2,8317,26041,56,0
,2,8318,26043,56,0
,2,8319,26045,56,0
,2,8320,26047,56,0
,2,8321,26049,56,0
,2,8322,26051,56,0
,2,8323,26053,56,0
,2,8324,26055,56,0
,2,8325,26057,56,0
,2,8326,26059,56,0
,2,8327,26061,56,0
,2,8328,26063,56,0
,2,8329,26065,56,0
,2,8330,26067,56,0
,2,8331,26069,56,0
,2,8332,26071,56,0
,2,8333,26073,56,0
,2,8334,26075,56,0
,2,8335,26077,56,0
,2,8336,26079,56,0
,2,8337,26081,56,0
,2,8338,26083,56,0
,2,8339,26085,56,0
,2,8340,26087,56,0
,2,8341,26089,56,0
,2,8342,26091,56,0
,2,8343,26093,56,0
,2,8344,26095,56,0
,2,8345,26097,56,0
,2,8346,26099,56,0
,2,8347,26101,56,0
,2,8348,26103,56,0
,2,8349,26105,56,0
,2,8350,26107,56,0
,2,8351,26109,56,0
,2,8352,26111,56,0
,2,8353,26113,56,0
,2,8354,26115,56,0
,2,8355,26117,56,0
,2,8356,26119,56,0
,2,8357,26121,56,0
,2,8358,26123,56,0
,2,8359,26125,56,0
,2,8360,26127,56,0
,2,8361,26129,56,0
,2,8362,26131,56,0
,2,8363,26133,56,0
,2,8364,26135,56,0
,2,8365,26137,56,0
,2,8366,26139,56,0
,2,8367,26141,56,0
,2,8368,26143,56,0
,2,8369,26145,56,0
,2,8370,26147,56,0
,2,8371,26149,56,0
,2,8372,26151,56,0
,2,8373,26153,56,0
,2,8374,26155,56,0
,2,8375,26157,56,0
,2,8376,26159,56,0
,2,8377,26161,56,0
,2,8378,26163,56,0
,2,8379,26165,56,0
,2,8380,26167,56,0
,2,8381,26169,56,0
,2,8382,26171,56,0
,2,8383,26173,56,0
,2,8384,26175,56,0
,2,8385,26177,56,0
,2,8386,26179,56,0
,2,8387,26181,56,0
,2,8388,26183,56,0
,2,8389,26185,56,0
,2,8390,26187,56,0
,2,8391,26189,56,0
,2,8392,26191,56,0
,2,8393,26193,56,0
,2,8394,26195,56,0
,2,8395,26197,56,0
,2,8396,26199,56,0
,2,8397,26201,56,0
,2,8398,26203,56,0
,2,8399,26205,56,0
,2,8400,26207,56,0
,2,8401,26209,56,0
,2,8402,26211,56,0
,2,8403,26213,56,0
,2,8404,26215,56,0
,2,8405,26217,56,0
,2,8406,26219,56,0
,2,8407,26221,56,0
,2,8408,26223,56,0
,2,8409,26225,56,0
,2,8410,26227,56,0
,2,8411,26229,56,0
,2,8412,26231,56,0
,2,8413,26233,56,0
,2,8414,26235,56,0
,2,8415,26237,56,0
,2,8416,26239,56,0
,2,8417,26241,56,0
,2,8418,26243,56,0
,2,8419,26245,56,0
,2,8420,26247,56,0
,2,8421,26249,56,0
,2,8422,26251,56,0
,2,8423,26253,56,0
,2,8424,26255,56,0
,2,8425,26257,56,0
,2,8426,26259,56,0
,2,8427,26261,56,0
,2,8428,26263,56,0
,2,8429,26265,56,0
,2,8430,26267,56,0
,2,8431,26269,56,0
,2,8432,26271,56,0
,2,8433,26273,56,0
,2,8434,26275,56,0
,2,8435,26277,56,0
,2,8436,26279,56,0
,2,8437,26281,56,0
,2,8438,26283,56,0
,2,8439,26285,56,0
,2,8440,26287,56,0
,2,8441,26289,56,0
,2,8442,26291,56,0
,2,8443,26293,56,0
,2,8444,26295,56,0
,2,8445,26297,56,0
,2,8446,26299,56,0
,2,8447,26301,56,0
,2,8448,26303,56,0
,2,8449,26305,56,0
,2,8450,26307,56,0
,2,8451,26309,56,0
,2,8452,26311,56,0
,2,8453,26313,56,0
,2,8454,26315,56,0
,2,8455,26317,56,0
,2,8456,26319,56,0
,2,8457,26321,56,0
,2,8458,26323,56,0
,2,8459,26325,56,0
,2,8460,26327,56,0
,2,8461,26329,56,0
,2,8462,26331,56,0
,2,8463,26333,56,0
,2,8464,26335,56,0
,2,8465,26337,56,0
,2,8466,26339,56,0
,2,8467,26341,56,0
,2,8468,26343,56,0
,2,8469,26345,56,0
,2,8470,26347,56,0
,2,8471,26349,56,0
,2,8472,26351,56,0
,2,8473,26353,56,0
,2,8474,26355,56,0
,2,8475,26357,56,0
,2,8476,26359,56,0
,2,8477,26361,56,0
,2,8478,26363,56,0
,2,8479,26365,56,0
,2,8480,26367,56,0
,2,8481,26369,56,0
,2,8482,26371,56,0
,2,8483,26373,56,0
,2,8484,26375,56,0
,2,8485,26377,56,0
,2,8486,26379,56,0
,2,8487,26381,56,0
,2,8488,26383,56,0
,2,8489,26385,56,0
,2,8490,26387,56,0
,2,8491,26389,56,0
,2,8492,26391,56,0
,2,8493,26393,56,0
,2,8494,26395,56,0
,2,8495,26397,56,0
,2,8496,26399,56,0
,2,8497,26401,56,0
,2,8498,26403,56,0
,2,8499,26405,56,0
,2,8500,26407,56,0
,2,8501,26409,56,0
,2,8502,26411,56,0
,2,8503,26413,56,0
,2,8504,26415,56,0
,2,8505,26417,56,0
,2,8506,26419,56,0
,2,8507,26421,56,0
,2,8508,26423,56,0
,2,8509,26425,56,0
,2,8510,26427,56,0
,2,8511,26429,56,0
,2,8512,26431,56,0
,2,8513,26433,56,0
,2,8514,26435,56,0
,2,8515,26437,56,0
,2,8516,26439,56,0
,2,8517,26441,56,0
,2,8518,26443,56,0
,2,8519,26445,56,0
,2,8520,26447,56,0
,2,8521,26449,56,0
,2,8522,26451,56,0
,2,8523,26453,56,0
,2,8524,26455,56,0
,2,8525,26457,56,0
,2,8526,26459,56,0
,2,8527,26461,56,0
,2,8528,26463,56,0
,2,8529,26465,56,0
,2,8530,26467,56,0
,2,8531,26469,56,0
,2,8532,26471,56,0
,2,8533,26473,56,0
,2,8534,26475,56,0
,2,8535,26477,56,0
,2,8536,26479,56,0
,2,8537,26481,56,0
,2,8538,26483,56,0
,2,8539,26485,56,0
,2,8540,26487,56,0
,2,8541,26489,56,0
,2,8542,26491,56,0
,2,8543,26493,56,0
,2,8544,26495,56,0
,2,8545,26497,56,0
,2,8546,26499,56,0
,2,8547,26501,56,0
,2,8548,26503,56,0
,2,8549,26505,56,0
,2,8550,26507,56,0
,2,8551,26509,56,0
,2,8552,26511,56,0
,2,8553,26513,56,0
,2,8554,26515,56,0
,2,8555,26517,56,0
,2,8556,26519,56,0
,2,8557,26521,56,0
,2,8558,26523,56,0
,2,8559,26525,56,0
,2,8560,26527,56,0
,2,8561,26529,56,0
,2,8562,26531,56,0
,2,8563,26533,56,0
,2,8564,26535,56,0
,2,8565,26537,56,0
,2,8566,26539,56,0
,2,8567,26541,56,0
,2,8568,26543,56,0
,2,8569,26545,56,0
,2,8570,26547,56,0
,2,8571,26549,56,0
,2,8572,26551,56,0
,2,8573,26553,56,0
,2,8574,26555,56,0
,2,8575,26557,56,0
,2,8576,26559,56,0
,2,8577,26561,56,0
,2,8578,26563,56,0
,2,8579,26565,56,0
,2,8580,26567,56,0
,2,8581,26569,56,0
,2,8582,26571,56,0
,2,8583,26573,56,0
,2,8584,26575,56,0
,2,8585,26577,56,0
,2,8586,26579,56,0
,2,8587,26581,56,0
,2,8588,26583,56,0
,2,8589,26585,56,0
,2,8590,26587,56,0
,2,8591,26589,56,0
,2,8592,26591,56,0
,2,8593,26593,56,0
,2,8594,26595,56,0
,2,8595,26597,56,0
,2,8596,26599,56,0
,2,8597,26601,56,0
,2,8598,26603,56,0
,2,8599,26605,56,0
,2,8600,26607,56,0
,2,8601,26609,56,0
,2,8602,26611,56,0
,2,8603,26613,56,0
,2,8604,26615,56,0
,2,8605,26617,56,0
,2,8606,26619,56,0
,2,8607,26621,56,0
,2,8608,26623,56,0
,2,8609,26625,56,0
,2,8610,26627,56,0
,2,8611,26629,56,0
,2,8612,26631,56,0
,2,8613,26633,56,0
,2,8614,26635,56,0
,2,8615,26637,56,0
,2,8616,26639,56,0
,2,8617,26641,56,0
,2,8618,26643,56,0
,2,8619,26645,56,0
,2,8620,26647,56,0
,2,8621,26649,56,0
,2,8622,26651,56,0
,2,8623,26653,56,0
,2,8624,26655,56,0
,2,8625,26657,56,0
,2,8626,26659,56,0
,2,8627,26661,56,0
,2,8628,26663,56,0
,2,8629,26665,56,0
,2,8630,26667,56,0
,2,8631,26669,56,0
,2,8632,26671,56,0
,2,8633,26673,56,0
,2,8634,26675,56,0
,2,8635,26677,56,0
,2,8636,26679,56,0
,2,8637,26681,56,0
,2,8638,26683,56,0
,2,8639,26685,56,0
,2,8640,26687,56,0
,2,8641,26689,56,0
,2,8642,26691,56,0
,2,8643,26693,56,0
,2,8644,26695,56,0
,2,8645,26697,56,0
,2,8646,26699,56,0
,2,8647,26701,56,0
,2,8648,26703,56,0
,2,8649,26705,56,0
,2,8650,26707,56,0
,2,8651,26709,56,0
,2,8652,26711,56,0
,2,8653,26713,56,0
,2,8654,26715,56,0
,2,8655,26717,56,0
,2,8656,26719,56,0
,2,8657,26721,56,0
,2,8658,26723,56,0
,2,8659,26725,56,0
,2,8660,26727,56,0
,2,8661,26729,56,0
,2,8662,26731,56,0
,2,8663,26733,56,0
,2,8664,26735,56,0
,2,8665,26737,56,0
,2,8666,26739,56,0
,2,8667,26741,56,0
,2,8668,26743,56,0
,2,8669,26745,56,0
,2,8670,26747,56,0
,2,8671,26749,56,0
,2,8672,26751,56,0
,2,8673,26753,56,0
,2,8674,26755,56,0
,2,8675,26757,56,0
,2,8676,26759,56,0
,2,8677,26761,56,0
,2,8678,26763,56,0
,2,8679,26765,56,0
,2,8680,26767,56,0
,2,8681,26769,56,0
,2,8682,26771,56,0
,2,8683,26773,56,0
,2,8684,26775,56,0
,2,8685,26777,56,0
,2,8686,26779,56,0
,2,8687,26781,56,0
,2,8688,26783,56,0
,2,8689,26785,56,0
,2,8690,26787,56,0
,2,8691,26789,56,0
,2,8692,26791,56,0
,2,8693,26793,56,0
,2,8694,26795,56,0
,2,8695,26797,56,0
,2,8696,26799,56,0
,2,8697,26801,56,0
,2,8698,26803,56,0
,2,8699,26805,56,0
,2,8700,26807,56,0
,2,8701,26809,56,0
,2,8702,26811,56,0
,2,8703,26813,56,0
,2,8704,26815,56,0
,2,8705,26817,56,0
,2,8706,26819,56,0
,2,8707,26821,56,0
,2,8708,26823,56,0
,2,8709,26825,56,0
,2,8710,26827,56,0
,2,8711,26829,56,0
,2,8712,26831,56,0
,2,8713,26833,56,0
,2,8714,26835,56,0
,2,8715,26837,56,0
,2,8716,26839,56,0
,2,8717,26841,56,0
,2,8718,26843,56,0
,2,8719,26845,56,0
,2,8720,26847,56,0
,2,8721,26849,56,0
,2,8722,26851,56,0
,2,8723,26853,56,0
,2,8724,26855,56,0
,2,8725,26857,56,0
,2,8726,26859,56,0
,2,8727,26861,56,0
,2,8728,26863,56,0
,2,8729,26865,56,0
,2,8730,26867,56,0
,2,8731,26869,56,0
,2,8732,26871,56,0
,2,8733,26873,56,0
,2,8734,26875,56,0
,2,8735,26877,56,0
,2,8736,26879,56,0
,2,8737,26881,56,0
,2,8738,26883,56,0
,2,8739,26885,56,0
,2,8740,26887,56,0
,2,8741,26889,56,0
,2,8742,26891,56,0
,2,8743,26893,56,0
,2,8744,26895,56,0
,2,8745,26897,56,0
,2,8746,26899,56,0
,2,8747,26901,56,0
,2,8748,26903,56,0
,2,8749,26905,56,0
,2,8750,26907,56,0
,2,8751,26909,56,0
,2,8752,26911,56,0
,2,8753,26913,56,0
,2,8754,26915,56,0
,2,8755,26917,56,0
,2,8756,26919,56,0
,2,8757,26921,56,0
,2,8758,26923,56,0
,2,8759,26925,56,0
,2,8760,26927,56,0
,2,8761,26929,56,0
,2,8762,26931,56,0
,2,8763,26933,56,0
,2,8764,26935,56,0
,2,8765,26937,56,0
,2,8766,26939,56,0
,2,8767,26941,56,0
,2,8768,26943,56,0
,2,8769,26945,56,0
,2,8770,26947,56,0
,2,8771,26949,56,0
,2,8772,26951,56,0
,2,8773,26953,56,0
,2,8774,26955,56,0
,2,8775,26957,56,0
,2,8776,26959,56,0
,2,8777,26961,56,0
,2,8778,26963,56,0
,2,8779,26965,56,0
,2,8780,26967,56,0
,2,8781,26969,56,0
,2,8782,26971,56,0
,2,8783,26973,56,0
,2,8784,26975,56,0
,2,8785,26977,56,0
,2,8786,26979,56,0
,2,8787,26981,56,0
,2,8788,26983,56,0
,2,8789,26985,56,0
,2,8790,26987,56,0
,2,8791,26989,56,0
,2,8792,26991,56,0
,2,8793,26993,56,0
,2,8794,26995,56,0
,2,8795,26997,56,0
,2,8796,26999,56,0
,2,8797,27001,56,0
,2,8798,27003,56,0
,2,8799,27005,56,0
,2,8800,27007,56,0
,2,8801,27009,56,0
,2,8802,27011,56,0
,2,8803,27013,56,0
,2,8804,27015,56,0
,2,8805,27017,56,0
,2,8806,27019,56,0
,2,8807,27021,56,0
,2,8808,27023,56,0
,2,8809,27025,56,0
,2,8810,27027,56,0
,2,8811,27029,56,0
,2,8812,27031,56,0
,2,8813,27033,56,0
,2,8814,27035,56,0
,2,8815,27037,56,0
,2,8816,27039,56,0
,2,8817,27041,56,0
,2,8818,27043,56,0
,2,8819,27045,56,0
,2,8820,27047,56,0
,2,8821,27049,56,0
,2,8822,27051,56,0
,2,8823,27053,56,0
,2,8824,27055,56,0
,2,8825,27057,56,0
,2,8826,27059,56,0
,2,8827,27061,56,0
,2,8828,27063,56,0
,2,8829,27065,56,0
,2,8830,27067,56,0
,2,8831,27069,56,0
,2,8832,27071,56,0
,2,8833,27073,56,0
,2,8834,27075,56,0
,2,8835,27077,56,0
,2,8836,27079,56,0
,2,8837,27081,56,0
,2,8838,27083,56,0
,2,8839,27085,56,0
,2,8840,27087,56,0
,2,8841,27089,56,0
,2,8842,27091,56,0
,2,8843,27093,56,0
,2,8844,27095,56,0
,2,8845,27097,56,0
,2,8846,27099,56,0
,2,8847,27101,56,0
,2,8848,27103,56,0
,2,8849,27105,56,0
,2,8850,27107,56,0
,2,8851,27109,56,0
,2,8852,27111,56,0
,2,8853,27113,56,0
,2,8854,27115,56,0
,2,8855,27117,56,0
,2,8856,27119,56,0
,2,8857,27121,56,0
,2,8858,27123,56,0
,2,8859,27125,56,0
,2,8860,27127,56,0
,2,8861,27129,56,0
,2,8862,27131,56,0
,2,8863,27133,56,0
,2,8864,27135,56,0
,2,8865,27137,56,0
,2,8866,27139,56,0
,2,8867,27141,56,0
,2,8868,27143,56,0
,2,8869,27145,56,0
,2,8870,27147,56,0
,2,8871,27149,56,0
,2,8872,27151,56,0
,2,8873,27153,56,0
,2,8874,27155,56,0
,2,8875,27157,56,0
,2,8876,27159,56,0
,2,8877,27161,56,0
,2,8878,27163,56,0
,2,8879,27165,56,0
,2,8880,27167,56,0
,2,8881,27169,56,0
,2,8882,27171,56,0
,2,8883,27173,56,0
,2,8884,27175,56,0
,2,8885,27177,56,0
,2,8886,27179,56,0
,2,8887,27181,56,0
,2,8888,27183,56,0
,2,8889,27185,56,0
,2,8890,27187,56,0
,2,8891,27189,56,0
,2,8892,27191,56,0
,2,8893,27193,56,0
,2,8894,27195,56,0
,2,8895,27197,56,0
,2,8896,27199,56,0
,2,8897,27201,56,0
,2,8898,27203,56,0
,2,8899,27205,56,0
,2,8900,27207,56,0
,2,8901,27209,56,0
,2,8902,27211,56,0
,2,8903,27213,56,0
,2,8904,27215,56,0
,2,8905,27217,56,0
,2,8906,27219,56,0
,2,8907,27221,56,0
,2,8908,27223,56,0
,2,8909,27225,56,0
,2,8910,27227,56,0
,2,8911,27229,56,0
,2,8912,27231,56,0
,2,8913,27233,56,0
,2,8914,27235,56,0
,2,8915,27237,56,0
,2,8916,27239,56,0
,2,8917,27241,56,0
,2,8918,27243,56,0
,2,8919,27245,56,0
,2,8920,27247,56,0
,2,8921,27249,56,0
,2,8922,27251,56,0
,2,8923,27253,56,0
,2,8924,27255,56,0
,2,8925,27257,56,0
,2,8926,27259,56,0
,2,8927,27261,56,0
,2,8928,27263,56,0
,2,8929,27265,56,0
,2,8930,27267,56,0
,2,8931,27269,56,0
,2,8932,27271,56,0
,2,8933,27273,56,0
,2,8934,27275,56,0
,2,8935,27277,56,0
,2,8936,27279,56,0
,2,8937,27281,56,0
,2,8938,27283,56,0
,2,8939,27285,56,0
,2,8940,27287,56,0
,2,8941,27289,56,0
,2,8942,27291,56,0
,2,8943,27293,56,0
,2,8944,27295,56,0
,2,8945,27297,56,0
,2,8946,27299,56,0
,2,8947,27301,56,0
,2,8948,27303,56,0
,2,8949,27305,56,0
,2,8950,27307,56,0
,2,8951,27309,56,0
,2,8952,27311,56,0
,2,8953,27313,56,0
,2,8954,27315,56,0
,2,8955,27317,56,0
,2,8956,27319,56,0
,2,8957,27321,56,0
,2,8958,27323,56,0
,2,8959,27325,56,0
,2,8960,27327,56,0
,2,8961,27329,56,0
,2,8962,27331,56,0
,2,8963,27333,56,0
,2,8964,27335,56,0
,2,8965,27337,56,0
,2,8966,27339,56,0
,2,8967,27341,56,0
,2,8968,27343,56,0
,2,8969,27345,56,0
,2,8970,27347,56,0
,2,8971,27349,56,0
,2,8972,27351,56,0
,2,8973,27353,56,0
,2,8974,27355,56,0
,2,8975,27357,56,0
,2,8976,27359,56,0
,2,8977,27361,56,0
,2,8978,27363,56,0
,2,8979,27365,56,0
,2,8980,27367,56,0
,2,8981,27369,56,0
,2,8982,27371,56,0
,2,8983,27373,56,0
,2,8984,27375,56,0
,2,8985,27377,56,0
,2,8986,27379,56,0
,2,8987,27381,56,0
,2,8988,27383,56,0
,2,8989,27385,56,0
,2,8990,27387,56,0
,2,8991,27389,56,0
,2,8992,27391,56,0
,2,8993,27393,56,0
,2,8994,27395,56,0
,2,8995,27397,56,0
,2,8996,27399,56,0
,2,8997,27401,56,0
,2,8998,27403,56,0
,2,8999,27405,56,0
,2,9000,27407,56,0
,2,9001,27409,56,0
,2,9002,27411,56,0
,2,9003,27413,56,0
,2,9004,27415,56,0
,2,9005,27417,56,0
,2,9006,27419,56,0
,2,9007,27421,56,0
,2,9008,27423,56,0
,2,9009,27425,56,0
,2,9010,27427,56,0
,2,9011,27429,56,0
,2,9012,27431,56,0
,2,9013,27433,56,0
,2,9014,27435,56,0
,2,9015,27437,56,0
,2,9016,27439,56,0
,2,9017,27441,56,0
,2,9018,27443,56,0
,2,9019,27445,56,0
,2,9020,27447,56,0
,2,9021,27449,56,0
,2,9022,27451,56,0
,2,9023,27453,56,0
,2,9024,27455,56,0
,2,9025,27457,56,0
,2,9026,27459,56,0
,2,9027,27461,56,0
,2,9028,27463,56,0
,2,9029,27465,56,0
,2,9030,27467,56,0
,2,9031,27469,56,0
,2,9032,27471,56,0
,2,9033,27473,56,0
,2,9034,27475,56,0
,2,9035,27477,56,0
,2,9036,27479,56,0
,2,9037,27481,56,0
,2,9038,27483,56,0
,2,9039,27485,56,0
,2,9040,27487,56,0
,2,9041,27489,56,0
,2,9042,27491,56,0
,2,9043,27493,56,0
,2,9044,27495,56,0
,2,9045,27497,56,0
,2,9046,27499,56,0
,2,9047,27501,56,0
,2,9048,27503,56,0
,2,9049,27505,56,0
,2,9050,27507,56,0
,2,9051,27509,56,0
,2,9052,27511,56,0
,2,9053,27513,56,0
,2,9054,27515,56,0
,2,9055,27517,56,0
,2,9056,27519,56,0
,2,9057,27521,56,0
,2,9058,27523,56,0
,2,9059,27525,56,0
,2,9060,27527,56,0
,2,9061,27529,56,0
,2,9062,27531,56,0
,2,9063,27533,56,0
,2,9064,27535,56,0
,2,9065,27537,56,0
,2,9066,27539,56,0
,2,9067,27541,56,0
,2,9068,27543,56,0
,2,9069,27545,56,0
,2,9070,27547,56,0
,2,9071,27549,56,0
,2,9072,27551,56,0
,2,9073,27553,56,0
,2,9074,27555,56,0
,2,9075,27557,56,0
,2,9076,27559,56,0
,2,9077,27561,56,0
,2,9078,27563,56,0
,2,9079,27565,56,0
,2,9080,27567,56,0
,2,9081,27569,56,0
,2,9082,27571,56,0
,2,9083,27573,56,0
,2,9084,27575,56,0
,2,9085,27577,56,0
,2,9086,27579,56,0
,2,9087,27581,56,0
,2,9088,27583,56,0
,2,9089,27585,56,0
,2,9090,27587,56,0
,2,9091,27589,56,0
,2,9092,27591,56,0
,2,9093,27593,56,0
,2,9094,27595,56,0
,2,9095,27597,56,0
,2,9096,27599,56,0
,2,9097,27601,56,0
,2,9098,27603,56,0
,2,9099,27605,56,0
,2,9100,27607,56,0
,2,9101,27609,56,0
,2,9102,27611,56,0
,2,9103,27613,56,0
,2,9104,27615,56,0
,2,9105,27617,56,0
,2,9106,27619,56,0
,2,9107,27621,56,0
,2,9108,27623,56,0
,2,9109,27625,56,0
,2,9110,27627,56,0
,2,9111,27629,56,0
,2,9112,27631,56,0
,2,9113,27633,56,0
,2,9114,27635,56,0
,2,9115,27637,56,0
,2,9116,27639,56,0
,2,9117,27641,56,0
,2,9118,27643,56,0
,2,9119,27645,56,0
,2,9120,27647,56,0
,2,9121,27649,56,0
,2,9122,27651,56,0
,2,9123,27653,56,0
,2,9124,27655,56,0
,2,9125,27657,56,0
,2,9126,27659,56,0
,2,9127,27661,56,0
,2,9128,27663,56,0
,2,9129,27665,56,0
,2,9130,27667,56,0
,2,9131,27669,56,0
,2,9132,27671,56,0
,2,9133,27673,56,0
,2,9134,27675,56,0
,2,9135,27677,56,0
,2,9136,27679,56,0
,2,9137,27681,56,0
,2,9138,27683,56,0
,2,9139,27685,56,0
,2,9140,27687,56,0
,2,9141,27689,56,0
,2,9142,27691,56,0
,2,9143,27693,56,0
,2,9144,27695,56,0
,2,9145,27697,56,0
,2,9146,27699,56,0
,2,9147,27701,56,0
,2,9148,27703,56,0
,2,9149,27705,56,0
,2,9150,27707,56,0
,2,9151,27709,56,0
,2,9152,27711,56,0
,2,9153,27713,56,0
,2,9154,27715,56,0
,2,9155,27717,56,0
,2,9156,27719,56,0
,2,9157,27721,56,0
,2,9158,27723,56,0
,2,9159,27725,56,0
,2,9160,27727,56,0
,2,9161,27729,56,0
,2,9162,27731,56,0
,2,9163,27733,56,0
,2,9164,27735,56,0
,2,9165,27737,56,0
,2,9166,27739,56,0
,2,9167,27741,56,0
,2,9168,27743,56,0
,2,9169,27745,56,0
,2,9170,27747,56,0
,2,9171,27749,56,0
,2,9172,27751,56,0
,2,9173,27753,56,0
,2,9174,27755,56,0
,2,9175,27757,56,0
,2,9176,27759,56,0
,2,9177,27761,56,0
,2,9178,27763,56,0
,2,9179,27765,56,0
,2,9180,27767,56,0
,2,9181,27769,56,0
,2,9182,27771,56,0
,2,9183,27773,56,0
,2,9184,27775,56,0
,2,9185,27777,56,0
,2,9186,27779,56,0
,2,9187,27781,56,0
,2,9188,27783,56,0
,2,9189,27785,56,0
,2,9190,27787,56,0
,2,9191,27789,56,0
,2,9192,27791,56,0
,2,9193,27793,56,0
,2,9194,27795,56,0
,2,9195,27797,56,0
,2,9196,27799,56,0
,2,9197,27801,56,0
,2,9198,27803,56,0
,2,9199,27805,56,0
,2,9200,27807,56,0
,2,9201,27809,56,0
,2,9202,27811,56,0
,2,9203,27813,56,0
,2,9204,27815,56,0
,2,9205,27817,56,0
,2,9206,27819,56,0
,2,9207,27821,56,0
,2,9208,27823,56,0
,2,9209,27825,56,0
,2,9210,27827,56,0
,2,9211,27829,56,0
,2,9212,27831,56,0
,2,9213,27833,56,0
,2,9214,27835,56,0
,2,9215,27837,56,0
,2,9216,27839,56,0
,2,9217,27841,56,0
,2,9218,27843,56,0
,2,9219,27845,56,0
,2,9220,27847,56,0
,2,9221,27849,56,0
,2,9222,27851,56,0
,2,9223,27853,56,0
,2,9224,27855,56,0
,2,9225,27857,56,0
,2,9226,27859,56,0
,2,9227,27861,56,0
,2,9228,27863,56,0
,2,9229,27865,56,0
,2,9230,27867,56,0
,2,9231,27869,56,0
,2,9232,27871,56,0
,2,9233,27873,56,0
,2,9234,27875,56,0
,2,9235,27877,56,0
,2,9236,27879,56,0
,2,9237,27881,56,0
,2,9238,27883,56,0
,2,9239,27885,56,0
,2,9240,27887,56,0
,2,9241,27889,56,0
,2,9242,27891,56,0
,2,9243,27893,56,0
,2,9244,27895,56,0
,2,9245,27897,56,0
,2,9246,27899,56,0
,2,9247,27901,56,0
,2,9248,27903,56,0
,2,9249,27905,56,0
,2,9250,27907,56,0
,2,9251,27909,56,0
,2,9252,27911,56,0
,2,9253,27913,56,0
,2,9254,27915,56,0
,2,9255,27917,56,0
,2,9256,27919,56,0
,2,9257,27921,56,0
,2,9258,27923,56,0
,2,9259,27925,56,0
,2,9260,27927,56,0
,2,9261,27929,56,0
,2,9262,27931,56,0
,2,9263,27933,56,0
,2,9264,27935,56,0
,2,9265,27937,56,0
,2,9266,27939,56,0
,2,9267,27941,56,0
,2,9268,27943,56,0
,2,9269,27945,56,0
,2,9270,27947,56,0
,2,9271,27949,56,0
,2,9272,27951,56,0
,2,9273,27953,56,0
,2,9274,27955,56,0
,2,9275,27957,56,0
,2,9276,27959,56,0
,2,9277,27961,56,0
,2,9278,27963,56,0
,2,9279,27965,56,0
,2,9280,27967,56,0
,2,9281,27969,56,0
,2,9282,27971,56,0
,2,9283,27973,56,0
,2,9284,27975,56,0
,2,9285,27977,56,0
,2,9286,27979,56,0
,2,9287,27981,56,0
,2,9288,27983,56,0
,2,9289,27985,56,0
,2,9290,27987,56,0
,2,9291,27989,56,0
,2,9292,27991,56,0
,2,9293,27993,56,0
,2,9294,27995,56,0
,2,9295,27997,56,0
,2,9296,27999,56,0
,2,9297,28001,56,0
,2,9298,28003,56,0
,2,9299,28005,56,0
,2,9300,28007,56,0
,2,9301,28009,56,0
,2,9302,28011,56,0
,2,9303,28013,56,0
,2,9304,28015,56,0
,2,9305,28017,56,0
,2,9306,28019,56,0
,2,9307,28021,56,0
,2,9308,28023,56,0
,2,9309,28025,56,0
,2,9310,28027,56,0
,2,9311,28029,56,0
,2,9312,28031,56,0
,2,9313,28033,56,0
,2,9314,28035,56,0
,2,9315,28037,56,0
,2,9316,28039,56,0
,2,9317,28041,56,0
,2,9318,28043,56,0
,2,9319,28045,56,0
,2,9320,28047,56,0
,2,9321,28049,56,0
,2,9322,28051,56,0
,2,9323,28053,56,0
,2,9324,28055,56,0
,2,9325,28057,56,0
,2,9326,28059,56,0
,2,9327,28061,56,0
,2,9328,28063,56,0
,2,9329,28065,56,0
,2,9330,28067,56,0
,2,9331,28069,56,0
,2,9332,28071,56,0
,2,9333,28073,56,0
,2,9334,28075,56,0
,2,9335,28077,56,0
,2,9336,28079,56,0
,2,9337,28081,56,0
,2,9338,28083,56,0
,2,9339,28085,56,0
,2,9340,28087,56,0
,2,9341,28089,56,0
,2,9342,28091,56,0
,2,9343,28093,56,0
,2,9344,28095,56,0
,2,9345,28097,56,0
,2,9346,28099,56,0
,2,9347,28101,56,0
,2,9348,28103,56,0
,2,9349,28105,56,0
,2,9350,28107,56,0
,2,9351,28109,56,0
,2,9352,28111,56,0
,2,9353,28113,56,0
,2,9354,28115,56,0
,2,9355,28117,56,0
,2,9356,28119,56,0
,2,9357,28121,56,0
,2,9358,28123,56,0
,2,9359,28125,56,0
,2,9360,28127,56,0
,2,9361,28129,56,0
,2,9362,28131,56,0
,2,9363,28133,56,0
,2,9364,28135,56,0
,2,9365,28137,56,0
,2,9366,28139,56,0
,2,9367,28141,56,0
,2,9368,28143,56,0
,2,9369,28145,56,0
,2,9370,28147,56,0
,2,9371,28149,56,0
,2,9372,28151,56,0
,2,9373,28153,56,0
,2,9374,28155,56,0
,2,9375,28157,56,0
,2,9376,28159,56,0
,2,9377,28161,56,0
,2,9378,28163,56,0
,2,9379,28165,56,0
,2,9380,28167,56,0
,2,9381,28169,56,0
,2,9382,28171,56,0
,2,9383,28173,56,0
,2,9384,28175,56,0
,2,9385,28177,56,0
,2,9386,28179,56,0
,2,9387,28181,56,0
,2,9388,28183,56,0
,2,9389,28185,56,0
,2,9390,28187,56,0
,2,9391,28189,56,0
,2,9392,28191,56,0
,2,9393,28193,56,0
,2,9394,28195,56,0
,2,9395,28197,56,0
,2,9396,28199,56,0
,2,9397,28201,56,0
,2,9398,28203,56,0
,2,9399,28205,56,0
,2,9400,28207,56,0
,2,9401,28209,56,0
,2,9402,28211,56,0
,2,9403,28213,56,0
,2,9404,28215,56,0
,2,9405,28217,56,0
,2,9406,28219,56,0
,2,9407,28221,56,0
,2,9408,28223,56,0
,2,9409,28225,56,0
,2,9410,28227,56,0
,2,9411,28229,56,0
,2,9412,28231,56,0
,2,9413,28233,56,0
,2,9414,28235,56,0
,2,9415,28237,56,0
,2,9416,28239,56,0
,2,9417,28241,56,0
,2,9418,28243,56,0
,2,9419,28245,56,0
,2,9420,28247,56,0
,2,9421,28249,56,0
,2,9422,28251,56,0
,2,9423,28253,56,0
,2,9424,28255,56,0
,2,9425,28257,56,0
,2,9426,28259,56,0
,2,9427,28261,56,0
,2,9428,28263,56,0
,2,9429,28265,56,0
,2,9430,28267,56,0
,2,9431,28269,56,0
,2,9432,28271,56,0
,2,9433,28273,56,0
,2,9434,28275,56,0
,2,9435,28277,56,0
,2,9436,28279,56,0
,2,9437,28281,56,0
,2,9438,28283,56,0
,2,9439,28285,56,0
,2,9440,28287,56,0
,2,9441,28289,56,0
,2,9442,28291,56,0
,2,9443,28293,56,0
,2,9444,28295,56,0
,2,9445,28297,56,0
,2,9446,28299,56,0
,2,9447,28301,56,0
,2,9448,28303,56,0
,2,9449,28305,56,0
,2,9450,28307,56,0
,2,9451,28309,56,0
,2,9452,28311,56,0
,2,9453,28313,56,0
,2,9454,28315,56,0
,2,9455,28317,56,0
,2,9456,28319,56,0
,2,9457,28321,56,0
,2,9458,28323,56,0
,2,9459,28325,56,0
,2,9460,28327,56,0
,2,9461,28329,56,0
,2,9462,28331,56,0
,2,9463,28333,56,0
,2,9464,28335,56,0
,2,9465,28337,56,0
,2,9466,28339,56,0
,2,9467,28341,56,0
,2,9468,28343,56,0
,2,9469,28345,56,0
,2,9470,28347,56,0
,2,9471,28349,56,0
,2,9472,28351,56,0
,2,9473,28353,56,0
,2,9474,28355,56,0
,2,9475,28357,56,0
,2,9476,28359,56,0
,2,9477,28361,56,0
,2,9478,28363,56,0
,2,9479,28365,56,0
,2,9480,28367,56,0
,2,9481,28369,56,0
,2,9482,28371,56,0
,2,9483,28373,56,0
,2,9484,28375,56,0
,2,9485,28377,56,0
,2,9486,28379,56,0
,2,9487,28381,56,0
,2,9488,28383,56,0
,2,9489,28385,56,0
,2,9490,28387,56,0
,2,9491,28389,56,0
,2,9492,28391,56,0
,2,9493,28393,56,0
,2,9494,28395,56,0
,2,9495,28397,56,0
,2,9496,28399,56,0
,2,9497,28401,56,0
,2,9498,28403,56,0
,2,9499,28405,56,0
,2,9500,28407,56,0
,2,9501,28409,56,0
,2,9502,28411,56,0
,2,9503,28413,56,0
,2,9504,28415,56,0
,2,9505,28417,56,0
,2,9506,28419,56,0
,2,9507,28421,56,0
,2,9508,28423,56,0
,2,9509,28425,56,0
,2,9510,28427,56,0
,2,9511,28429,56,0
,2,9512,28431,56,0
,2,9513,28433,56,0
,2,9514,28435,56,0
,2,9515,28437,56,0
,2,9516,28439,56,0
,2,9517,28441,56,0
,2,9518,28443,56,0
,2,9519,28445,56,0
,2,9520,28447,56,0
,2,9521,28449,56,0
,2,9522,28451,56,0
,2,9523,28453,56,0
,2,9524,28455,56,0
,2,9525,28457,56,0
,2,9526,28459,56,0
,2,9527,28461,56,0
,2,9528,28463,56,0
,2,9529,28465,56,0
,2,9530,28467,56,0
,2,9531,28469,56,0
,2,9532,28471,56,0
,2,9533,28473,56,0
,2,9534,28475,56,0
,2,9535,28477,56,0
,2,9536,28479,56,0
,2,9537,28481,56,0
,2,9538,28483,56,0
,2,9539,28485,56,0
,2,9540,28487,56,0
,2,9541,28489,56,0
,2,9542,28491,56,0
,2,9543,28493,56,0
,2,9544,28495,56,0
,2,9545,28497,56,0
,2,9546,28499,56,0
,2,9547,28501,56,0
,2,9548,28503,56,0
,2,9549,28505,56,0
,2,9550,28507,56,0
,2,9551,28509,56,0
,2,9552,28511,56,0
,2,9553,28513,56,0
,2,9554,28515,56,0
,2,9555,28517,56,0
,2,9556,28519,56,0
,2,9557,28521,56,0
,2,9558,28523,56,0
,2,9559,28525,56,0
,2,9560,28527,56,0
,2,9561,28529,56,0
,2,9562,28531,56,0
,2,9563,28533,56,0
,2,9564,28535,56,0
,2,9565,28537,56,0
,2,9566,28539,56,0
,2,9567,28541,56,0
,2,9568,28543,56,0
,2,9569,28545,56,0
,2,9570,28547,56,0
,2,9571,28549,56,0
,2,9572,28551,56,0
,2,9573,28553,56,0
,2,9574,28555,56,0
,2,9575,28557,56,0
,2,9576,28559,56,0
,2,9577,28561,56,0
,2,9578,28563,56,0
,2,9579,28565,56,0
,2,9580,28567,56,0
,2,9581,28569,56,0
,2,9582,28571,56,0
,2,9583,28573,56,0
,2,9584,28575,56,0
,2,9585,28577,56,0
,2,9586,28579,56,0
,2,9587,28581,56,0
,2,9588,28583,56,0
,2,9589,28585,56,0
,2,9590,28587,56,0
,2,9591,28589,56,0
,2,9592,28591,56,0
,2,9593,28593,56,0
,2,9594,28595,56,0
,2,9595,28597,56,0
,2,9596,28599,56,0
,2,9597,28601,56,0
,2,9598,28603,56,0
,2,9599,28605,56,0
,2,9600,28607,56,0
,2,9601,28609,56,0
,2,9602,28611,56,0
,2,9603,28613,56,0
,2,9604,28615,56,0
,2,9605,28617,56,0
,2,9606,28619,56,0
,2,9607,28621,56,0
,2,9608,28623,56,0
,2,9609,28625,56,0
,2,9610,28627,56,0
,2,9611,28629,56,0
,2,9612,28631,56,0
,2,9613,28633,56,0
,2,9614,28635,56,0
,2,9615,28637,56,0
,2,9616,28639,56,0
,2,9617,28641,56,0
,2,9618,28643,56,0
,2,9619,28645,56,0
,2,9620,28647,56,0
,2,9621,28649,56,0
,2,9622,28651,56,0
,2,9623,28653,56,0
,2,9624,28655,56,0
,2,9625,28657,56,0
,2,9626,28659,56,0
,2,9627,28661,56,0
,2,9628,28663,56,0
,2,9629,28665,56,0
,2,9630,28667,56,0
,2,9631,28669,56,0
,2,9632,28671,56,0
,2,9633,28673,56,0
,2,9634,28675,56,0
,2,9635,28677,56,0
,2,9636,28679,56,0
,2,9637,28681,56,0
,2,9638,28683,56,0
,2,9639,28685,56,0
,2,9640,28687,56,0
,2,9641,28689,56,0
,2,9642,28691,56,0
,2,9643,28693,56,0
,2,9644,28695,56,0
,2,9645,28697,56,0
,2,9646,28699,56,0
,2,9647,28701,56,0
,2,9648,28703,56,0
,2,9649,28705,56,0
,2,9650,28707,56,0
,2,9651,28709,56,0
,2,9652,28711,56,0
,2,9653,28713,56,0
,2,9654,28715,56,0
,2,9655,28717,56,0
,2,9656,28719,56,0
,2,9657,28721,56,0
,2,9658,28723,56,0
,2,9659,28725,56,0
,2,9660,28727,56,0
,2,9661,28729,56,0
,2,9662,28731,56,0
,2,9663,28733,56,0
,2,9664,28735,56,0
,2,9665,28737,56,0
,2,9666,28739,56,0
,2,9667,28741,56,0
,2,9668,28743,56,0
,2,9669,28745,56,0
,2,9670,28747,56,0
,2,9671,28749,56,0
,2,9672,28751,56,0
,2,9673,28753,56,0
,2,9674,28755,56,0
,2,9675,28757,56,0
,2,9676,28759,56,0
,2,9677,28761,56,0
,2,9678,28763,56,0
,2,9679,28765,56,0
,2,9680,28767,56,0
,2,9681,28769,56,0
,2,9682,28771,56,0
,2,9683,28773,56,0
,2,9684,28775,56,0
,2,9685,28777,56,0
,2,9686,28779,56,0
,2,9687,28781,56,0
,2,9688,28783,56,0
,2,9689,28785,56,0
,2,9690,28787,56,0
,2,9691,28789,56,0
,2,9692,28791,56,0
,2,9693,28793,56,0
,2,9694,28795,56,0
,2,9695,28797,56,0
,2,9696,28799,56,0
,2,9697,28801,56,0
,2,9698,28803,56,0
,2,9699,28805,56,0
,2,9700,28807,56,0
,2,9701,28809,56,0
,2,9702,28811,56,0
,2,9703,28813,56,0
,2,9704,28815,56,0
,2,9705,28817,56,0
,2,9706,28819,56,0
,2,9707,28821,56,0
,2,9708,28823,56,0
,2,9709,28825,56,0
,2,9710,28827,56,0
,2,9711,28829,56,0
,2,9712,28831,56,0
,2,9713,28833,56,0
,2,9714,28835,56,0
,2,9715,28837,56,0
,2,9716,28839,56,0
,2,9717,28841,56,0
,2,9718,28843,56,0
,2,9719,28845,56,0
,2,9720,28847,56,0
,2,9721,28849,56,0
,2,9722,28851,56,0
,2,9723,28853,56,0
,2,9724,28855,56,0
,2,9725,28857,56,0
,2,9726,28859,56,0
,2,9727,28861,56,0
,2,9728,28863,56,0
,2,9729,28865,56,0
,2,9730,28867,56,0
,2,9731,28869,56,0
,2,9732,28871,56,0
,2,9733,28873,56,0
,2,9734,28875,56,0
,2,9735,28877,56,0
,2,9736,28879,56,0
,2,9737,28881,56,0
,2,9738,28883,56,0
,2,9739,28885,56,0
,2,9740,28887,56,0
,2,9741,28889,56,0
,2,9742,28891,56,0
,2,9743,28893,56,0
,2,9744,28895,56,0
,2,9745,28897,56,0
,2,9746,28899,56,0
,2,9747,28901,56,0
,2,9748,28903,56,0
,2,9749,28905,56,0
,2,9750,28907,56,0
,2,9751,28909,56,0
,2,9752,28911,56,0
,2,9753,28913,56,0
,2,9754,28915,56,0
,2,9755,28917,56,0
,2,9756,28919,56,0
,2,9757,28921,56,0
,2,9758,28923,56,0
,2,9759,28925,56,0
,2,9760,28927,56,0
,2,9761,28929,56,0
,2,9762,28931,56,0
,2,9763,28933,56,0
,2,9764,28935,56,0
,2,9765,28937,56,0
,2,9766,28939,56,0
,2,9767,28941,56,0
,2,9768,28943,56,0
,2,9769,28945,56,0
,2,9770,28947,56,0
,2,9771,28949,56,0
,2,9772,28951,56,0
,2,9773,28953,56,0
,2,9774,28955,56,0
,2,9775,28957,56,0
,2,9776,28959,56,0
,2,9777,28961,56,0
,2,9778,28963,56,0
,2,9779,28965,56,0
,2,9780,28967,56,0
,2,9781,28969,56,0
,2,9782,28971,56,0
,2,9783,28973,56,0
,2,9784,28975,56,0
,2,9785,28977,56,0
,2,9786,28979,56,0
,2,9787,28981,56,0
,2,9788,28983,56,0
,2,9789,28985,56,0
,2,9790,28987,56,0
,2,9791,28989,56,0
,2,9792,28991,56,0
,2,9793,28993,56,0
,2,9794,28995,56,0
,2,9795,28997,56,0
,2,9796,28999,56,0
,2,9797,29001,56,0
,2,9798,29003,56,0
,2,9799,29005,56,0
,2,9800,29007,56,0
,2,9801,29009,56,0
,2,9802,29011,56,0
,2,9803,29013,56,0
,2,9804,29015,56,0
,2,9805,29017,56,0
,2,9806,29019,56,0
,2,9807,29021,56,0
,2,9808,29023,56,0
,2,9809,29025,56,0
,2,9810,29027,56,0
,2,9811,29029,56,0
,2,9812,29031,56,0
,2,9813,29033,56,0
,2,9814,29035,56,0
,2,9815,29037,56,0
,2,9816,29039,56,0
,2,9817,29041,56,0
,2,9818,29043,56,0
,2,9819,29045,56,0
,2,9820,29047,56,0
,2,9821,29049,56,0
,2,9822,29051,56,0
,2,9823,29053,56,0
,2,9824,29055,56,0
,2,9825,29057,56,0
,2,9826,29059,56,0
,2,9827,29061,56,0
,2,9828,29063,56,0
,2,9829,29065,56,0
,2,9830,29067,56,0
,2,9831,29069,56,0
,2,9832,29071,56,0
,2,9833,29073,56,0
,2,9834,29075,56,0
,2,9835,29077,56,0
,2,9836,29079,56,0
,2,9837,29081,56,0
,2,9838,29083,56,0
,2,9839,29085,56,0
,2,9840,29087,56,0
,2,9841,29089,56,0
,2,9842,29091,56,0
,2,9843,29093,56,0
,2,9844,29095,56,0
,2,9845,29097,56,0
,2,9846,29099,56,0
,2,9847,29101,56,0
,2,9848,29103,56,0
,2,9849,29105,56,0
,2,9850,29107,56,0
,2,9851,29109,56,0
,2,9852,29111,56,0
,2,9853,29113,56,0
,2,9854,29115,56,0
,2,9855,29117,56,0
,2,9856,29119,56,0
,2,9857,29121,56,0
,2,9858,29123,56,0
,2,9859,29125,56,0
,2,9860,29127,56,0
,2,9861,29129,56,0
,2,9862,29131,56,0
,2,9863,29133,56,0
,2,9864,29135,56,0
,2,9865,29137,56,0
,2,9866,29139,56,0
,2,9867,29141,56,0
,2,9868,29143,56,0
,2,9869,29145,56,0
,2,9870,29147,56,0
,2,9871,29149,56,0
,2,9872,29151,56,0
,2,9873,29153,56,0
,2,9874,29155,56,0
,2,9875,29157,56,0
,2,9876,29159,56,0
,2,9877,29161,56,0
,2,9878,29163,56,0
,2,9879,29165,56,0
,2,9880,29167,56,0
,2,9881,29169,56,0
,2,9882,29171,56,0
,2,9883,29173,56,0
,2,9884,29175,56,0
,2,9885,29177,56,0
,2,9886,29179,56,0
,2,9887,29181,56,0
,2,9888,29183,56,0
,2,9889,29185,56,0
,2,9890,29187,56,0
,2,9891,29189,56,0
,2,9892,29191,56,0
,2,9893,29193,56,0
,2,9894,29195,56,0
,2,9895,29197,56,0
,2,9896,29199,56,0
,2,9897,29201,56,0
,2,9898,29203,56,0
,2,9899,29205,56,0
,2,9900,29207,56,0
,2,9901,29209,56,0
,2,9902,29211,56,0
,2,9903,29213,56,0
,2,9904,29215,56,0
,2,9905,29217,56,0
,2,9906,29219,56,0
,2,9907,29221,56,0
,2,9908,29223,56,0
,2,9909,29225,56,0
,2,9910,29227,56,0
,2,9911,29229,56,0
,2,9912,29231,56,0
,2,9913,29233,56,0
,2,9914,29235,56,0
,2,9915,29237,56,0
,2,9916,29239,56,0
,2,9917,29241,56,0
,2,9918,29243,56,0
,2,9919,29245,56,0
,2,9920,29247,56,0
,2,9921,29249,56,0
,2,9922,29251,56,0
,2,9923,29253,56,0
,2,9924,29255,56,0
,2,9925,29257,56,0
,2,9926,29259,56,0
,2,9927,29261,56,0
,2,9928,29263,56,0
,2,9929,29265,56,0
,2,9930,29267,56,0
,2,9931,29269,56,0
,2,9932,29271,56,0
,2,9933,29273,56,0
,2,9934,29275,56,0
,2,9935,29277,56,0
,2,9936,29279,56,0
,2,9937,29281,56,0
,2,9938,29283,56,0
,2,9939,29285,56,0
,2,9940,29287,56,0
,2,9941,29289,56,0
,2,9942,29291,56,0
,2,9943,29293,56,0
,2,9944,29295,56,0
,2,9945,29297,56,0
,2,9946,29299,56,0
,2,9947,29301,56,0
,2,9948,29303,56,0
,2,9949,29305,56,0
,2,9950,29307,56,0
,2,9951,29309,56,0
,2,9952,29311,56,0
,2,9953,29313,56,0
,2,9954,29315,56,0
,2,9955,29317,56,0
,2,9956,29319,56,0
,2,9957,29321,56,0
,2,9958,29323,56,0
,2,9959,29325,56,0
,2,9960,29327,56,0
,2,9961,29329,56,0
,2,9962,29331,56,0
,2,9963,29333,56,0
,2,9964,29335,56,0
,2,9965,29337,56,0
,2,9966,29339,56,0
,2,9967,29341,56,0
,2,9968,29343,56,0
,2,9969,29345,56,0
,2,9970,29347,56,0
,2,9971,29349,56,0
,2,9972,29351,56,0
,2,9973,29353,56,0
,2,9974,29355,56,0
,2,9975,29357,56,0
,2,9976,29359,56,0
,2,9977,29361,56,0
,2,9978,29363,56,0
,2,9979,29365,56,0
,2,9980,29367,56,0
,2,9981,29369,56,0
,2,9982,29371,56,0
,2,9983,29373,56,0
,2,9984,29375,56,0
,2,9985,29377,56,0
,2,9986,29379,56,0
,2,9987,29381,56,0
,2,9988,29383,56,0
,2,9989,29385,56,0
,2,9990,29387,56,0
,2,9991,29389,56,0
,2,9992,29391,56,0
,2,9993,29393,56,0
,2,9994,29395,56,0
,2,9995,29397,56,0
,2,9996,29399,56,0
,2,9997,29401,56,0
,2,9998,29403,56,0
,2,9999,29405,56,0
,2,10000,29407,56,0
,2,10001,29409,56,0
,2,10002,29411,56,0
,2,10003,29413,56,0
,2,10004,29415,56,0
,2,10005,29417,56,0
,2,10006,29419,56,0
,2,10007,29421,56,0
,2,10008,29423,56,0
,2,10009,29425,56,0
,2,10010,29427,56,0
,2,10011,29429,56,0
,2,10012,29431,56,0
,2,10013,29433,56,0
,2,10014,29435,56,0
,2,10015,29437,56,0
,2,10016,29439,56,0
,2,10017,29441,56,0
,2,10018,29443,56,0
,2,10019,29445,56,0
,2,10020,29447,56,0
,2,10021,29449,56,0
,2,10022,29451,56,0
,2,10023,29453,56,0
,2,10024,29455,56,0
,2,10025,29457,56,0
,2,10026,29459,56,0
,2,10027,29461,56,0
,2,10028,29463,56,0
,2,10029,29465,56,0
,2,10030,29467,56,0
,2,10031,29469,56,0
,2,10032,29471,56,0
,2,10033,29473,56,0
,2,10034,29475,56,0
,2,10035,29477,56,0
,2,10036,29479,56,0
,2,10037,29481,56,0
,2,10038,29483,56,0
,2,10039,29485,56,0
,2,10040,29487,56,0
,2,10041,29489,56,0
,2,10042,29491,56,0
,2,10043,29493,56,0
,2,10044,29495,56,0
,2,10045,29497,56,0
,2,10046,29499,56,0
,2,10047,29501,56,0
,2,10048,29503,56,0
,2,10049,29505,56,0
,2,10050,29507,56,0
,2,10051,29509,56,0
,2,10052,29511,56,0
,2,10053,29513,56,0
,2,10054,29515,56,0
,2,10055,29517,56,0
,2,10056,29519,56,0
,2,10057,29521,56,0
,2,10058,29523,56,0
,2,10059,29525,56,0
,2,10060,29527,56,0
,2,10061,29529,56,0
,2,10062,29531,56,0
,2,10063,29533,56,0
,2,10064,29535,56,0
,2,10065,29537,56,0
,2,10066,29539,56,0
,2,10067,29541,56,0
,2,10068,29543,56,0
,2,10069,29545,56,0
,2,10070,29547,56,0
,2,10071,29549,56,0
,2,10072,29551,56,0
,2,10073,29553,56,0
,2,10074,29555,56,0
,2,10075,29557,56,0
,2,10076,29559,56,0
,2,10077,29561,56,0
,2,10078,29563,56,0
,2,10079,29565,56,0
,2,10080,29567,56,0
,2,10081,29569,56,0
,2,10082,29571,56,0
,2,10083,29573,56,0
,2,10084,29575,56,0
,2,10085,29577,56,0
,2,10086,29579,56,0
,2,10087,29581,56,0
,2,10088,29583,56,0
,2,10089,29585,56,0
,2,10090,29587,56,0
,2,10091,29589,56,0
,2,10092,29591,56,0
,2,10093,29593,56,0
,2,10094,29595,56,0
,2,10095,29597,56,0
,2,10096,29599,56,0
,2,10097,29601,56,0
,2,10098,29603,56,0
,2,10099,29605,56,0
,2,10100,29607,56,0
,2,10101,29609,56,0
,2,10102,29611,56,0
,2,10103,29613,56,0
,2,10104,29615,56,0
,2,10105,29617,56,0
,2,10106,29619,56,0
,2,10107,29621,56,0
,2,10108,29623,56,0
,2,10109,29625,56,0
,2,10110,29627,56,0
,2,10111,29629,56,0
,2,10112,29631,56,0
,2,10113,29633,56,0
,2,10114,29635,56,0
,2,10115,29637,56,0
,2,10116,29639,56,0
,2,10117,29641,56,0
,2,10118,29643,56,0
,2,10119,29645,56,0
,2,10120,29647,56,0
,2,10121,29649,56,0
,2,10122,29651,56,0
,2,10123,29653,56,0
,2,10124,29655,56,0
,2,10125,29657,56,0
,2,10126,29659,56,0
,2,10127,29661,56,0
,2,10128,29663,56,0
,2,10129,29665,56,0
,2,10130,29667,56,0
,2,10131,29669,56,0
,2,10132,29671,56,0
,2,10133,29673,56,0
,2,10134,29675,56,0
,2,10135,29677,56,0
,2,10136,29679,56,0
,2,10137,29681,56,0
,2,10138,29683,56,0
,2,10139,29685,56,0
,2,10140,29687,56,0
,2,10141,29689,56,0
,2,10142,29691,56,0
,2,10143,29693,56,0
,2,10144,29695,56,0
,2,10145,29697,56,0
,2,10146,29699,56,0
,2,10147,29701,56,0
,2,10148,29703,56,0
,2,10149,29705,56,0
,2,10150,29707,56,0
,2,10151,29709,56,0
,2,10152,29711,56,0
,2,10153,29713,56,0
,2,10154,29715,56,0
,2,10155,29717,56,0
,2,10156,29719,56,0
,2,10157,29721,56,0
,2,10158,29723,56,0
,2,10159,29725,56,0
,2,10160,29727,56,0
,2,10161,29729,56,0
,2,10162,29731,56,0
,2,10163,29733,56,0
,2,10164,29735,56,0
,2,10165,29737,56,0
,2,10166,29739,56,0
,2,10167,29741,56,0
,2,10168,29743,56,0
,2,10169,29745,56,0
,2,10170,29747,56,0
,2,10171,29749,56,0
,2,10172,29751,56,0
,2,10173,29753,56,0
,2,10174,29755,56,0
,2,10175,29757,56,0
,2,10176,29759,56,0
,2,10177,29761,56,0
,2,10178,29763,56,0
,2,10179,29765,56,0
,2,10180,29767,56,0
,2,10181,29769,56,0
,2,10182,29771,56,0
,2,10183,29773,56,0
,2,10184,29775,56,0
,2,10185,29777,56,0
,2,10186,29779,56,0
,2,10187,29781,56,0
,2,10188,29783,56,0
,2,10189,29785,56,0
,2,10190,29787,56,0
,2,10191,29789,56,0
,2,10192,29791,56,0
,2,10193,29793,56,0
,2,10194,29795,56,0
,2,10195,29797,56,0
,2,10196,29799,56,0
,2,10197,29801,56,0
,2,10198,29803,56,0
,2,10199,29805,56,0
,2,10200,29807,56,0
,2,10201,29809,56,0
,2,10202,29811,56,0
,2,10203,29813,56,0
,2,10204,29815,56,0
,2,10205,29817,56,0
,2,10206,29819,56,0
,2,10207,29821,56,0
,2,10208,29823,56,0
,2,10209,29825,56,0
,2,10210,29827,56,0
,2,10211,29829,56,0
,2,10212,29831,56,0
,2,10213,29833,56,0
,2,10214,29835,56,0
,2,10215,29837,56,0
,2,10216,29839,56,0
,2,10217,29841,56,0
,2,10218,29843,56,0
,2,10219,29845,56,0
,2,10220,29847,56,0
,2,10221,29849,56,0
,2,10222,29851,56,0
,2,10223,29853,56,0
,2,10224,29855,56,0
,2,10225,29857,56,0
,2,10226,29859,56,0
,2,10227,29861,56,0
,2,10228,29863,56,0
,2,10229,29865,56,0
,2,10230,29867,56,0
,2,10231,29869,56,0
,2,10232,29871,56,0
,2,10233,29873,56,0
,2,10234,29875,56,0
,2,10235,29877,56,0
,2,10236,29879,56,0
,2,10237,29881,56,0
,2,10238,29883,56,0
,2,10239,29885,56,0
,2,10240,29887,56,0
,2,10241,29889,56,0
,2,10242,29891,56,0
,2,10243,29893,56,0
,2,10244,29895,56,0
,2,10245,29897,56,0
,2,10246,29899,56,0
,2,10247,29901,56,0
,2,10248,29903,56,0
,2,10249,29905,56,0
,2,10250,29907,56,0
,2,10251,29909,56,0
,2,10252,29911,56,0
,2,10253,29913,56,0
,2,10254,29915,56,0
,2,10255,29917,56,0
,2,10256,29919,56,0
,2,10257,29921,56,0
,2,10258,29923,56,0
,2,10259,29925,56,0
,2,10260,29927,56,0
,2,10261,29929,56,0
,2,10262,29931,56,0
,2,10263,29933,56,0
,2,10264,29935,56,0
,2,10265,29937,56,0
,2,10266,29939,56,0
,2,10267,29941,56,0
,2,10268,29943,56,0
,2,10269,29945,56,0
,2,10270,29947,56,0
,2,10271,29949,56,0
,2,10272,29951,56,0
,2,10273,29953,56,0
,2,10274,29955,56,0
,2,10275,29957,56,0
,2,10276,29959,56,0
,2,10277,29961,56,0
,2,10278,29963,56,0
,2,10279,29965,56,0
,2,10280,29967,56,0
,2,10281,29969,56,0
,2,10282,29971,56,0
,2,10283,29973,56,0
,2,10284,29975,56,0
,2,10285,29977,56,0
,2,10286,29979,56,0
,2,10287,29981,56,0
,2,10288,29983,56,0
,2,10289,29985,56,0
,2,10290,29987,56,0
,2,10291,29989,56,0
,2,10292,29991,56,0
,2,10293,29993,56,0
,2,10294,29995,56,0
,2,10295,29997,56,0
,2,10296,29999,56,0
,2,10297,30001,56,0
,2,10298,30003,56,0
,2,10299,30005,56,0
,2,10300,30007,56,0
,2,10301,30009,56,0
,2,10302,30011,56,0
,2,10303,30013,56,0
,2,10304,30015,56,0
,2,10305,30017,56,0
,2,10306,30019,56,0
,2,10307,30021,56,0
,2,10308,30023,56,0
,2,10309,30025,56,0
,2,10310,30027,56,0
,2,10311,30029,56,0
,2,10312,30031,56,0
,2,10313,30033,56,0
,2,10314,30035,56,0
,2,10315,30037,56,0
,2,10316,30039,56,0
,2,10317,30041,56,0
,2,10318,30043,56,0
,2,10319,30045,56,0
,2,10320,30047,56,0
,2,10321,30049,56,0
,2,10322,30051,56,0
,2,10323,30053,56,0
,2,10324,30055,56,0
,2,10325,30057,56,0
,2,10326,30059,56,0
,2,10327,30061,56,0
,2,10328,30063,56,0
,2,10329,30065,56,0
,2,10330,30067,56,0
,2,10331,30069,56,0
,2,10332,30071,56,0
,2,10333,30073,56,0
,2,10334,30075,56,0
,2,10335,30077,56,0
,2,10336,30079,56,0
,2,10337,30081,56,0
,2,10338,30083,56,0
,2,10339,30085,56,0
,2,10340,30087,56,0
,2,10341,30089,56,0
,2,10342,30091,56,0
,2,10343,30093,56,0
,2,10344,30095,56,0
,2,10345,30097,56,0
,2,10346,30099,56,0
,2,10347,30101,56,0
,2,10348,30103,56,0
,2,10349,30105,56,0
,2,10350,30107,56,0
,2,10351,30109,56,0
,2,10352,30111,56,0
,2,10353,30113,56,0
,2,10354,30115,56,0
,2,10355,30117,56,0
,2,10356,30119,56,0
,2,10357,30121,56,0
,2,10358,30123,56,0
,2,10359,30125,56,0
,2,10360,30127,56,0
,2,10361,30129,56,0
,2,10362,30131,56,0
,2,10363,30133,56,0
,2,10364,30135,56,0
,2,10365,30137,56,0
,2,10366,30139,56,0
,2,10367,30141,56,0
,2,10368,30143,56,0
,2,10369,30145,56,0
,2,10370,30147,56,0
,2,10371,30149,56,0
,2,10372,30151,56,0
,2,10373,30153,56,0
,2,10374,30155,56,0
,2,10375,30157,56,0
,2,10376,30159,56,0
,2,10377,30161,56,0
,2,10378,30163,56,0
,2,10379,30165,56,0
,2,10380,30167,56,0
,2,10381,30169,56,0
,2,10382,30171,56,0
,2,10383,30173,56,0
,2,10384,30175,56,0
,2,10385,30177,56,0
,2,10386,30179,56,0
,2,10387,30181,56,0
,2,10388,30183,56,0
,2,10389,30185,56,0
,2,10390,30187,56,0
,2,10391,30189,56,0
,2,10392,30191,56,0
,2,10393,30193,56,0
,2,10394,30195,56,0
,2,10395,30197,56,0
,2,10396,30199,56,0
,2,10397,30201,56,0
,2,10398,30203,56,0
,2,10399,30205,56,0
,2,10400,30207,56,0
,2,10401,30209,56,0
,2,10402,30211,56,0
,2,10403,30213,56,0
,2,10404,30215,56,0
,2,10405,30217,56,0
,2,10406,30219,56,0
,2,10407,30221,56,0
,2,10408,30223,56,0
,2,10409,30225,56,0
,2,10410,30227,56,0
,2,10411,30229,56,0
,2,10412,30231,56,0
,2,10413,30233,56,0
,2,10414,30235,56,0
,2,10415,30237,56,0
,2,10416,30239,56,0
,2,10417,30241,56,0
,2,10418,30243,56,0
,2,10419,30245,56,0
,2,10420,30247,56,0
,2,10421,30249,56,0
,2,10422,30251,56,0
,2,10423,30253,56,0
,2,10424,30255,56,0
,2,10425,30257,56,0
,2,10426,30259,56,0
,2,10427,30261,56,0
,2,10428,30263,56,0
,2,10429,30265,56,0
,2,10430,30267,56,0
,2,10431,30269,56,0
,2,10432,30271,56,0
,2,10433,30273,56,0
,2,10434,30275,56,0
,2,10435,30277,56,0
,2,10436,30279,56,0
,2,10437,30281,56,0
,2,10438,30283,56,0
,2,10439,30285,56,0
,2,10440,30287,56,0
,2,10441,30289,56,0
,2,10442,30291,56,0
,2,10443,30293,56,0
,2,10444,30295,56,0
,2,10445,30297,56,0
,2,10446,30299,56,0
,2,10447,30301,56,0
,2,10448,30303,56,0
,2,10449,30305,56,0
,2,10450,30307,56,0
,2,10451,30309,56,0
,2,10452,30311,56,0
,2,10453,30313,56,0
,2,10454,30315,56,0
,2,10455,30317,56,0
,2,10456,30319,56,0
,2,10457,30321,56,0
,2,10458,30323,56,0
,2,10459,30325,56,0
,2,10460,30327,56,0
,2,10461,30329,56,0
,2,10462,30331,56,0
,2,10463,30333,56,0
,2,10464,30335,56,0
,2,10465,30337,56,0
,2,10466,30339,56,0
,2,10467,30341,56,0
,2,10468,30343,56,0
,2,10469,30345,56,0
,2,10470,30347,56,0
,2,10471,30349,56,0
,2,10472,30351,56,0
,2,10473,30353,56,0
,2,10474,30355,56,0
,2,10475,30357,56,0
,2,10476,30359,56,0
,2,10477,30361,56,0
,2,10478,30363,56,0
,2,10479,30365,56,0
,2,10480,30367,56,0
,2,10481,30369,56,0
,2,10482,30371,56,0
,2,10483,30373,56,0
,2,10484,30375,56,0
,2,10485,30377,56,0
,2,10486,30379,56,0
,2,10487,30381,56,0
,2,10488,30383,56,0
,2,10489,30385,56,0
,2,10490,30387,56,0
,2,10491,30389,56,0
,2,10492,30391,56,0
,2,10493,30393,56,0
,2,10494,30395,56,0
,2,10495,30397,56,0
,2,10496,30399,56,0
,2,10497,30401,56,0
,2,10498,30403,56,0
,2,10499,30405,56,0
,2,10500,30407,56,0
,2,10501,30409,56,0
,2,10502,30411,56,0
,2,10503,30413,56,0
,2,10504,30415,56,0
,2,10505,30417,56,0
,2,10506,30419,56,0
,2,10507,30421,56,0
,2,10508,30423,56,0
,2,10509,30425,56,0
,2,10510,30427,56,0
,2,10511,30429,56,0
,2,10512,30431,56,0
,2,10513,30433,56,0
,2,10514,30435,56,0
,2,10515,30437,56,0
,2,10516,30439,56,0
,2,10517,30441,56,0
,2,10518,30443,56,0
,2,10519,30445,56,0
,2,10520,30447,56,0
,2,10521,30449,56,0
,2,10522,30451,56,0
,2,10523,30453,56,0
,2,10524,30455,56,0
,2,10525,30457,56,0
,2,10526,30459,56,0
,2,10527,30461,56,0
,2,10528,30463,56,0
,2,10529,30465,56,0
,2,10530,30467,56,0
,2,10531,30469,56,0
,2,10532,30471,56,0
,2,10533,30473,56,0
,2,10534,30475,56,0
,2,10535,30477,56,0
,2,10536,30479,56,0
,2,10537,30481,56,0
,2,10538,30483,56,0
,2,10539,30485,56,0
,2,10540,30487,56,0
,2,10541,30489,56,0
,2,10542,30491,56,0
,2,10543,30493,56,0
,2,10544,30495,56,0
,2,10545,30497,56,0
,2,10546,30499,56,0
,2,10547,30501,56,0
,2,10548,30503,56,0
,2,10549,30505,56,0
,2,10550,30507,56,0
,2,10551,30509,56,0
,2,10552,30511,56,0
,2,10553,30513,56,0
,2,10554,30515,56,0
,2,10555,30517,56,0
,2,10556,30519,56,0
,2,10557,30521,56,0
,2,10558,30523,56,0
,2,10559,30525,56,0
,2,10560,30527,56,0
,2,10561,30529,56,0
,2,10562,30531,56,0
,2,10563,30533,56,0
,2,10564,30535,56,0
,2,10565,30537,56,0
,2,10566,30539,56,0
,2,10567,30541,56,0
,2,10568,30543,56,0
,2,10569,30545,56,0
,2,10570,30547,56,0
,2,10571,30549,56,0
,2,10572,30551,56,0
,2,10573,30553,56,0
,2,10574,30555,56,0
,2,10575,30557,56,0
,2,10576,30559,56,0
,2,10577,30561,56,0
,2,10578,30563,56,0
,2,10579,30565,56,0
,2,10580,30567,56,0
,2,10581,30569,56,0
,2,10582,30571,56,0
,2,10583,30573,56,0
,2,10584,30575,56,0
,2,10585,30577,56,0
,2,10586,30579,56,0
,2,10587,30581,56,0
,2,10588,30583,56,0
,2,10589,30585,56,0
,2,10590,30587,56,0
,2,10591,30589,56,0
,2,10592,30591,56,0
,2,10593,30593,56,0
,2,10594,30595,56,0
,2,10595,30597,56,0
,2,10596,30599,56,0
,2,10597,30601,56,0
,2,10598,30603,56,0
,2,10599,30605,56,0
,2,10600,30607,56,0
,2,10601,30609,56,0
,2,10602,30611,56,0
,2,10603,30613,56,0
,2,10604,30615,56,0
,2,10605,30617,56,0
,2,10606,30619,56,0
,2,10607,30621,56,0
,2,10608,30623,56,0
,2,10609,30625,56,0
,2,10610,30627,56,0
,2,10611,30629,56,0
,2,10612,30631,56,0
,2,10613,30633,56,0
,2,10614,30635,56,0
,2,10615,30637,56,0
,2,10616,30639,56,0
,2,10617,30641,56,0
,2,10618,30643,56,0
,2,10619,30645,56,0
,2,10620,30647,56,0
,2,10621,30649,56,0
,2,10622,30651,56,0
,2,10623,30653,56,0
,2,10624,30655,56,0
,2,10625,30657,56,0
,2,10626,30659,56,0
,2,10627,30661,56,0
,2,10628,30663,56,0
,2,10629,30665,56,0
,2,10630,30667,56,0
,2,10631,30669,56,0
,2,10632,30671,56,0
,2,10633,30673,56,0
,2,10634,30675,56,0
,2,10635,30677,56,0
,2,10636,30679,56,0
,2,10637,30681,56,0
,2,10638,30683,56,0
,2,10639,30685,56,0
,2,10640,30687,56,0
,2,10641,30689,56,0
,2,10642,30691,56,0
,2,10643,30693,56,0
,2,10644,30695,56,0
,2,10645,30697,56,0
,2,10646,30699,56,0
,2,10647,30701,56,0
,2,10648,30703,56,0
,2,10649,30705,56,0
,2,10650,30707,56,0
,2,10651,30709,56,0
,2,10652,30711,56,0
,2,10653,30713,56,0
,2,10654,30715,56,0
,2,10655,30717,56,0
,2,10656,30719,56,0
,2,10657,30721,56,0
,2,10658,30723,56,0
,2,10659,30725,56,0
,2,10660,30727,56,0
,2,10661,30729,56,0
,2,10662,30731,56,0
,2,10663,30733,56,0
,2,10664,30735,56,0
,2,10665,30737,56,0
,2,10666,30739,56,0
,2,10667,30741,56,0
,2,10668,30743,56,0
,2,10669,30745,56,0
,2,10670,30747,56,0
,2,10671,30749,56,0
,2,10672,30751,56,0
,2,10673,30753,56,0
,2,10674,30755,56,0
,2,10675,30757,56,0
,2,10676,30759,56,0
,2,10677,30761,56,0
,2,10678,30763,56,0
,2,10679,30765,56,0
,2,10680,30767,56,0
,2,10681,30769,56,0
,2,10682,30771,56,0
,2,10683,30773,56,0
,2,10684,30775,56,0
,2,10685,30777,56,0
,2,10686,30779,56,0
,2,10687,30781,56,0
,2,10688,30783,56,0
,2,10689,30785,56,0
,2,10690,30787,56,0
,2,10691,30789,56,0
,2,10692,30791,56,0
,2,10693,30793,56,0
,2,10694,30795,56,0
,2,10695,30797,56,0
,2,10696,30799,56,0
,2,10697,30801,56,0
,2,10698,30803,56,0
,2,10699,30805,56,0
,2,10700,30807,56,0
,2,10701,30809,56,0
,2,10702,30811,56,0
,2,10703,30813,56,0
,2,10704,30815,56,0
,2,10705,30817,56,0
,2,10706,30819,56,0
,2,10707,30821,56,0
,2,10708,30823,56,0
,2,10709,30825,56,0
,2,10710,30827,56,0
,2,10711,30829,56,0
,2,10712,30831,56,0
,2,10713,30833,56,0
,2,10714,30835,56,0
,2,10715,30837,56,0
,2,10716,30839,56,0
,2,10717,30841,56,0
,2,10718,30843,56,0
,2,10719,30845,56,0
,2,10720,30847,56,0
,2,10721,30849,56,0
,2,10722,30851,56,0
,2,10723,30853,56,0
,2,10724,30855,56,0
,2,10725,30857,56,0
,2,10726,30859,56,0
,2,10727,30861,56,0
,2,10728,30863,56,0
,2,10729,30865,56,0
,2,10730,30867,56,0
,2,10731,30869,56,0
,2,10732,30871,56,0
,2,10733,30873,56,0
,2,10734,30875,56,0
,2,10735,30877,56,0
,2,10736,30879,56,0
,2,10737,30881,56,0
,2,10738,30883,56,0
,2,10739,30885,56,0
,2,10740,30887,56,0
,2,10741,30889,56,0
,2,10742,30891,56,0
,2,10743,30893,56,0
,2,10744,30895,56,0
,2,10745,30897,56,0
,2,10746,30899,56,0
,2,10747,30901,56,0
,2,10748,30903,56,0
,2,10749,30905,56,0
,2,10750,30907,56,0
,2,10751,30909,56,0
,2,10752,30911,56,0
,2,10753,30913,56,0
,2,10754,30915,56,0
,2,10755,30917,56,0
,2,10756,30919,56,0
,2,10757,30921,56,0
,2,10758,30923,56,0
,2,10759,30925,56,0
,2,10760,30927,56,0
,2,10761,30929,56,0
,2,10762,30931,56,0
,2,10763,30933,56,0
,2,10764,30935,56,0
,2,10765,30937,56,0
,2,10766,30939,56,0
,2,10767,30941,56,0
,2,10768,30943,56,0
,2,10769,30945,56,0
,2,10770,30947,56,0
,2,10771,30949,56,0
,2,10772,30951,56,0
,2,10773,30953,56,0
,2,10774,30955,56,0
,2,10775,30957,56,0
,2,10776,30959,56,0
,2,10777,30961,56,0
,2,10778,30963,56,0
,2,10779,30965,56,0
,2,10780,30967,56,0
,2,10781,30969,56,0
,2,10782,30971,56,0
,2,10783,30973,56,0
,2,10784,30975,56,0
,2,10785,30977,56,0
,2,10786,30979,56,0
,2,10787,30981,56,0
,2,10788,30983,56,0
,2,10789,30985,56,0
,2,10790,30987,56,0
,2,10791,30989,56,0
,2,10792,30991,56,0
,2,10793,30993,56,0
,2,10794,30995,56,0
,2,10795,30997,56,0
,2,10796,30999,56,0
,2,10797,31001,56,0
,2,10798,31003,56,0
,2,10799,31005,56,0
,2,10800,31007,56,0
,2,10801,31009,56,0
,2,10802,31011,56,0
,2,10803,31013,56,0
,2,10804,31015,56,0
,2,10805,31017,56,0
,2,10806,31019,56,0
,2,10807,31021,56,0
,2,10808,31023,56,0
,2,10809,31025,56,0
,2,10810,31027,56,0
,2,10811,31029,56,0
,2,10812,31031,56,0
,2,10813,31033,56,0
,2,10814,31035,56,0
,2,10815,31037,56,0
,2,10816,31039,56,0
,2,10817,31041,56,0
,2,10818,31043,56,0
,2,10819,31045,56,0
,2,10820,31047,56,0
,2,10821,31049,56,0
,2,10822,31051,56,0
,2,10823,31053,56,0
,2,10824,31055,56,0
,2,10825,31057,56,0
,2,10826,31059,56,0
,2,10827,31061,56,0
,2,10828,31063,56,0
,2,10829,31065,56,0
,2,10830,31067,56,0
,2,10831,31069,56,0
,2,10832,31071,56,0
,2,10833,31073,56,0
,2,10834,31075,56,0
,2,10835,31077,56,0
,2,10836,31079,56,0
,2,10837,31081,56,0
,2,10838,31083,56,0
,2,10839,31085,56,0
,2,10840,31087,56,0
,2,10841,31089,56,0
,2,10842,31091,56,0
,2,10843,31093,56,0
,2,10844,31095,56,0
,2,10845,31097,56,0
,2,10846,31099,56,0
,2,10847,31101,56,0
,2,10848,31103,56,0
,2,10849,31105,56,0
,2,10850,31107,56,0
,2,10851,31109,56,0
,2,10852,31111,56,0
,2,10853,31113,56,0
,2,10854,31115,56,0
,2,10855,31117,56,0
,2,10856,31119,56,0
,2,10857,31121,56,0
,2,10858,31123,56,0
,2,10859,31125,56,0
,2,10860,31127,56,0
,2,10861,31129,56,0
,2,10862,31131,56,0
,2,10863,31133,56,0
,2,10864,31135,56,0
,2,10865,31137,56,0
,2,10866,31139,56,0
,2,10867,31141,56,0
,2,10868,31143,56,0
,2,10869,31145,56,0
,2,10870,31147,56,0
,2,10871,31149,56,0
,2,10872,31151,56,0
,2,10873,31153,56,0
,2,10874,31155,56,0
,2,10875,31157,56,0
,2,10876,31159,56,0
,2,10877,31161,56,0
,2,10878,31163,56,0
,2,10879,31165,56,0
,2,10880,31167,56,0
,2,10881,31169,56,0
,2,10882,31171,56,0
,2,10883,31173,56,0
,2,10884,31175,56,0
,2,10885,31177,56,0
,2,10886,31179,56,0
,2,10887,31181,56,0
,2,10888,31183,56,0
,2,10889,31185,56,0
,2,10890,31187,56,0
,2,10891,31189,56,0
,2,10892,31191,56,0
,2,10893,31193,56,0
,2,10894,31195,56,0
,2,10895,31197,56,0
,2,10896,31199,56,0
,2,10897,31201,56,0
,2,10898,31203,56,0
,2,10899,31205,56,0
,2,10900,31207,56,0
,2,10901,31209,56,0
,2,10902,31211,56,0
,2,10903,31213,56,0
,2,10904,31215,56,0
,2,10905,31217,56,0
,2,10906,31219,56,0
,2,10907,31221,56,0
,2,10908,31223,56,0
,2,10909,31225,56,0
,2,10910,31227,56,0
,2,10911,31229,56,0
,2,10912,31231,56,0
,2,10913,31233,56,0
,2,10914,31235,56,0
,2,10915,31237,56,0
,2,10916,31239,56,0
,2,10917,31241,56,0
,2,10918,31243,56,0
,2,10919,31245,56,0
,2,10920,31247,56,0
,2,10921,31249,56,0
,2,10922,31251,56,0
,2,10923,31253,56,0
,2,10924,31255,56,0
,2,10925,31257,56,0
,2,10926,31259,56,0
,2,10927,31261,56,0
,2,10928,31263,56,0
,2,10929,31265,56,0
,2,10930,31267,56,0
,2,10931,31269,56,0
,2,10932,31271,56,0
,2,10933,31273,56,0
,2,10934,31275,56,0
,2,10935,31277,56,0
,2,10936,31279,56,0
,2,10937,31281,56,0
,2,10938,31283,56,0
,2,10939,31285,56,0
,2,10940,31287,56,0
,2,10941,31289,56,0
,2,10942,31291,56,0
,2,10943,31293,56,0
,2,10944,31295,56,0
,2,10945,31297,56,0
,2,10946,31299,56,0
,2,10947,31301,56,0
,2,10948,31303,56,0
,2,10949,31305,56,0
,2,10950,31307,56,0
,2,10951,31309,56,0
,2,10952,31311,56,0
,2,10953,31313,56,0
,2,10954,31315,56,0
,2,10955,31317,56,0
,2,10956,31319,56,0
,2,10957,31321,56,0
,2,10958,31323,56,0
,2,10959,31325,56,0
,2,10960,31327,56,0
,2,10961,31329,56,0
,2,10962,31331,56,0
,2,10963,31333,56,0
,2,10964,31335,56,0
,2,10965,31337,56,0
,2,10966,31339,56,0
,2,10967,31341,56,0
,2,10968,31343,56,0
,2,10969,31345,56,0
,2,10970,31347,56,0
,2,10971,31349,56,0
,2,10972,31351,56,0
,2,10973,31353,56,0
,2,10974,31355,56,0
,2,10975,31357,56,0
,2,10976,31359,56,0
,2,10977,31361,56,0
,2,10978,31363,56,0
,2,10979,31365,56,0
,2,10980,31367,56,0
,2,10981,31369,56,0
,2,10982,31371,56,0
,2,10983,31373,56,0
,2,10984,31375,56,0
,2,10985,31377,56,0
,2,10986,31379,56,0
,2,10987,31381,56,0
,2,10988,31383,56,0
,2,10989,31385,56,0
,2,10990,31387,56,0
,2,10991,31389,56,0
,2,10992,31391,56,0
,2,10993,31393,56,0
,2,10994,31395,56,0
,2,10995,31397,56,0
,2,10996,31399,56,0
,2,10997,31401,56,0
,2,10998,31403,56,0
,2,10999,31405,56,0
,2,11000,31407,56,0
,2,11001,31409,56,0
,2,11002,31411,56,0
,2,11003,31413,56,0
,2,11004,31415,56,0
,2,11005,31417,56,0
,2,11006,31419,56,0
,2,11007,31421,56,0
,2,11008,31423,56,0
,2,11009,31425,56,0
,2,11010,31427,56,0
,2,11011,31429,56,0
,2,11012,31431,56,0
,2,11013,31433,56,0
,2,11014,31435,56,0
,2,11015,31437,56,0
,2,11016,31439,56,0
,2,11017,31441,56,0
,2,11018,31443,56,0
,2,11019,31445,56,0
,2,11020,31447,56,0
,2,11021,31449,56,0
,2,11022,31451,56,0
,2,11023,31453,56,0
,2,11024,31455,56,0
,2,11025,31457,56,0
,2,11026,31459,56,0
,2,11027,31461,56,0
,2,11028,31463,56,0
,2,11029,31465,56,0
,2,11030,31467,56,0
,2,11031,31469,56,0
,2,11032,31471,56,0
,2,11033,31473,56,0
,2,11034,31475,56,0
,2,11035,31477,56,0
,2,11036,31479,56,0
,2,11037,31481,56,0
,2,11038,31483,56,0
,2,11039,31485,56,0
,2,11040,31487,56,0
,2,11041,31489,56,0
,2,11042,31491,56,0
,2,11043,31493,56,0
,2,11044,31495,56,0
,2,11045,31497,56,0
,2,11046,31499,56,0
,2,11047,31501,56,0
,2,11048,31503,56,0
,2,11049,31505,56,0
,2,11050,31507,56,0
,2,11051,31509,56,0
,2,11052,31511,56,0
,2,11053,31513,56,0
,2,11054,31515,56,0
,2,11055,31517,56,0
,2,11056,31519,56,0
,2,11057,31521,56,0
,2,11058,31523,56,0
,2,11059,31525,56,0
,2,11060,31527,56,0
,2,11061,31529,56,0
,2,11062,31531,56,0
,2,11063,31533,56,0
,2,11064,31535,56,0
,2,11065,31537,56,0
,2,11066,31539,56,0
,2,11067,31541,56,0
,2,11068,31543,56,0
,2,11069,31545,56,0
,2,11070,31547,56,0
,2,11071,31549,56,0
,2,11072,31551,56,0
,2,11073,31553,56,0
,2,11074,31555,56,0
,2,11075,31557,56,0
,2,11076,31559,56,0
,2,11077,31561,56,0
,2,11078,31563,56,0
,2,11079,31565,56,0
,2,11080,31567,56,0
,2,11081,31569,56,0
,2,11082,31571,56,0
,2,11083,31573,56,0
,2,11084,31575,56,0
,2,11085,31577,56,0
,2,11086,31579,56,0
,2,11087,31581,56,0
,2,11088,31583,56,0
,2,11089,31585,56,0
,2,11090,31587,56,0
,2,11091,31589,56,0
,2,11092,31591,56,0
,2,11093,31593,56,0
,2,11094,31595,56,0
,2,11095,31597,56,0
,2,11096,31599,56,0
,2,11097,31601,56,0
,2,11098,31603,56,0
,2,11099,31605,56,0
,2,11100,31607,56,0
,2,11101,31609,56,0
,2,11102,31611,56,0
,2,11103,31613,56,0
,2,11104,31615,56,0
,2,11105,31617,56,0
,2,11106,31619,56,0
,2,11107,31621,56,0
,2,11108,31623,56,0
,2,11109,31625,56,0
,2,11110,31627,56,0
,2,11111,31629,56,0
,2,11112,31631,56,0
,2,11113,31633,56,0
,2,11114,31635,56,0
,2,11115,31637,56,0
,2,11116,31639,56,0
,2,11117,31641,56,0
,2,11118,31643,56,0
,2,11119,31645,56,0
,2,11120,31647,56,0
,2,11121,31649,56,0
,2,11122,31651,56,0
,2,11123,31653,56,0
,2,11124,31655,56,0
,2,11125,31657,56,0
,2,11126,31659,56,0
,2,11127,31661,56,0
,2,11128,31663,56,0
,2,11129,31665,56,0
,2,11130,31667,56,0
,2,11131,31669,56,0
,2,11132,31671,56,0
,2,11133,31673,56,0
,2,11134,31675,56,0
,2,11135,31677,56,0
,2,11136,31679,56,0
,2,11137,31681,56,0
,2,11138,31683,56,0
,2,11139,31685,56,0
,2,11140,31687,56,0
,2,11141,31689,56,0
,2,11142,31691,56,0
,2,11143,31693,56,0
,2,11144,31695,56,0
,2,11145,31697,56,0
,2,11146,31699,56,0
,2,11147,31701,56,0
,2,11148,31703,56,0
,2,11149,31705,56,0
,2,11150,31707,56,0
,2,11151,31709,56,0
,2,11152,31711,56,0
,2,11153,31713,56,0
,2,11154,31715,56,0
,2,11155,31717,56,0
,2,11156,31719,56,0
,2,11157,31721,56,0
,2,11158,31723,56,0
,2,11159,31725,56,0
,2,11160,31727,56,0
,2,11161,31729,56,0
,2,11162,31731,56,0
,2,11163,31733,56,0
,2,11164,31735,56,0
,2,11165,31737,56,0
,2,11166,31739,56,0
,2,11167,31741,56,0
,2,11168,31743,56,0
,2,11169,31745,56,0
,2,11170,31747,56,0
,2,11171,31749,56,0
,2,11172,31751,56,0
,2,11173,31753,56,0
,2,11174,31755,56,0
,2,11175,31757,56,0
,2,11176,31759,56,0
,2,11177,31761,56,0
,2,11178,31763,56,0
,2,11179,31765,56,0
,2,11180,31767,56,0
,2,11181,31769,56,0
,2,11182,31771,56,0
,2,11183,31773,56,0
,2,11184,31775,56,0
,2,11185,31777,56,0
,2,11186,31779,56,0
,2,11187,31781,56,0
,2,11188,31783,56,0
,2,11189,31785,56,0
,2,11190,31787,56,0
,2,11191,31789,56,0
,2,11192,31791,56,0
,2,11193,31793,56,0
,2,11194,31795,56,0
,2,11195,31797,56,0
,2,11196,31799,56,0
,2,11197,31801,56,0
,2,11198,31803,56,0
,2,11199,31805,56,0
,2,11200,31807,56,0
,2,11201,31809,56,0
,2,11202,31811,56,0
,2,11203,31813,56,0
,2,11204,31815,56,0
,2,11205,31817,56,0
,2,11206,31819,56,0
,2,11207,31821,56,0
,2,11208,31823,56,0
,2,11209,31825,56,0
,2,11210,31827,56,0
,2,11211,31829,56,0
,2,11212,31831,56,0
,2,11213,31833,56,0
,2,11214,31835,56,0
,2,11215,31837,56,0
,2,11216,31839,56,0
,2,11217,31841,56,0
,2,11218,31843,56,0
,2,11219,31845,56,0
,2,11220,31847,56,0
,2,11221,31849,56,0
,2,11222,31851,56,0
,2,11223,31853,56,0
,2,11224,31855,56,0
,2,11225,31857,56,0
,2,11226,31859,56,0
,2,11227,31861,56,0
,2,11228,31863,56,0
,2,11229,31865,56,0
,2,11230,31867,56,0
,2,11231,31869,56,0
,2,11232,31871,56,0
,2,11233,31873,56,0
,2,11234,31875,56,0
,2,11235,31877,56,0
,2,11236,31879,56,0
,2,11237,31881,56,0
,2,11238,31883,56,0
,2,11239,31885,56,0
,2,11240,31887,56,0
,2,11241,31889,56,0
,2,11242,31891,56,0
,2,11243,31893,56,0
,2,11244,31895,56,0
,2,11245,31897,56,0
,2,11246,31899,56,0
,2,11247,31901,56,0
,2,11248,31903,56,0
,2,11249,31905,56,0
,2,11250,31907,56,0
,2,11251,31909,56,0
,2,11252,31911,56,0
,2,11253,31913,56,0
,2,11254,31915,56,0
,2,11255,31917,56,0
,2,11256,31919,56,0
,2,11257,31921,56,0
,2,11258,31923,56,0
,2,11259,31925,56,0
,2,11260,31927,56,0
,2,11261,31929,56,0
,2,11262,31931,56,0
,2,11263,31933,56,0
,2,11264,31935,56,0
,2,11265,31937,56,0
,2,11266,31939,56,0
,2,11267,31941,56,0
,2,11268,31943,56,0
,2,11269,31945,56,0
,2,11270,31947,56,0
,2,11271,31949,56,0
,2,11272,31951,56,0
,2,11273,31953,56,0
,2,11274,31955,56,0
,2,11275,31957,56,0
,2,11276,31959,56,0
,2,11277,31961,56,0
,2,11278,31963,56,0
,2,11279,31965,56,0
,2,11280,31967,56,0
,2,11281,31969,56,0
,2,11282,31971,56,0
,2,11283,31973,56,0
,2,11284,31975,56,0
,2,11285,31977,56,0
,2,11286,31979,56,0
,2,11287,31981,56,0
,2,11288,31983,56,0
,2,11289,31985,56,0
,2,11290,31987,56,0
,2,11291,31989,56,0
,2,11292,31991,56,0
,2,11293,31993,56,0
,2,11294,31995,56,0
,2,11295,31997,56,0
,2,11296,31999,56,0
,2,11297,32001,56,0
,2,11298,32003,56,0
,2,11299,32005,56,0
,2,11300,32007,56,0
,2,11301,32009,56,0
,2,11302,32011,56,0
,2,11303,32013,56,0
,2,11304,32015,56,0
,2,11305,32017,56,0
,2,11306,32019,56,0
,2,11307,32021,56,0
,2,11308,32023,56,0
,2,11309,32025,56,0
,2,11310,32027,56,0
,2,11311,32029,56,0
,2,11312,32031,56,0
,2,11313,32033,56,0
,2,11314,32035,56,0
,2,11315,32037,56,0
,2,11316,32039,56,0
,2,11317,32041,56,0
,2,11318,32043,56,0
,2,11319,32045,56,0
,2,11320,32047,56,0
,2,11321,32049,56,0
,2,11322,32051,56,0
,2,11323,32053,56,0
,2,11324,32055,56,0
,2,11325,32057,56,0
,2,11326,32059,56,0
,2,11327,32061,56,0
,2,11328,32063,56,0
,2,11329,32065,56,0
,2,11330,32067,56,0
,2,11331,32069,56,0
,2,11332,32071,56,0
,2,11333,32073,56,0
,2,11334,32075,56,0
,2,11335,32077,56,0
,2,11336,32079,56,0
,2,11337,32081,56,0
,2,11338,32083,56,0
,2,11339,32085,56,0
,2,11340,32087,56,0
,2,11341,32089,56,0
,2,11342,32091,56,0
,2,11343,32093,56,0
,2,11344,32095,56,0
,2,11345,32097,56,0
,2,11346,32099,56,0
,2,11347,32101,56,0
,2,11348,32103,56,0
,2,11349,32105,56,0
,2,11350,32107,56,0
,2,11351,32109,56,0
,2,11352,32111,56,0
,2,11353,32113,56,0
,2,11354,32115,56,0
,2,11355,32117,56,0
,2,11356,32119,56,0
,2,11357,32121,56,0
,2,11358,32123,56,0
,2,11359,32125,56,0
,2,11360,32127,56,0
,2,11361,32129,56,0
,2,11362,32131,56,0
,2,11363,32133,56,0
,2,11364,32135,56,0
,2,11365,32137,56,0
,2,11366,32139,56,0
,2,11367,32141,56,0
,2,11368,32143,56,0
,2,11369,32145,56,0
,2,11370,32147,56,0
,2,11371,32149,56,0
,2,11372,32151,56,0
,2,11373,32153,56,0
,2,11374,32155,56,0
,2,11375,32157,56,0
,2,11376,32159,56,0
,2,11377,32161,56,0
,2,11378,32163,56,0
,2,11379,32165,56,0
,2,11380,32167,56,0
,2,11381,32169,56,0
,2,11382,32171,56,0
,2,11383,32173,56,0
,2,11384,32175,56,0
,2,11385,32177,56,0
,2,11386,32179,56,0
,2,11387,32181,56,0
,2,11388,32183,56,0
,2,11389,32185,56,0
,2,11390,32187,56,0
,2,11391,32189,56,0
,2,11392,32191,56,0
,2,11393,32193,56,0
,2,11394,32195,56,0
,2,11395,32197,56,0
,2,11396,32199,56,0
,2,11397,32201,56,0
,2,11398,32203,56,0
,2,11399,32205,56,0
,2,11400,32207,56,0
,2,11401,32209,56,0
,2,11402,32211,56,0
,2,11403,32213,56,0
,2,11404,32215,56,0
,2,11405,32217,56,0
,2,11406,32219,56,0
,2,11407,32221,56,0
,2,11408,32223,56,0
,2,11409,32225,56,0
,2,11410,32227,56,0
,2,11411,32229,56,0
,2,11412,32231,56,0
,2,11413,32233,56,0
,2,11414,32235,56,0
,2,11415,32237,56,0
,2,11416,32239,56,0
,2,11417,32241,56,0
,2,11418,32243,56,0
,2,11419,32245,56,0
,2,11420,32247,56,0
,2,11421,32249,56,0
,2,11422,32251,56,0
,2,11423,32253,56,0
,2,11424,32255,56,0
,2,11425,32257,56,0
,2,11426,32259,56,0
,2,11427,32261,56,0
,2,11428,32263,56,0
,2,11429,32265,56,0
,2,11430,32267,56,0
,2,11431,32269,56,0
,2,11432,32271,56,0
,2,11433,32273,56,0
,2,11434,32275,56,0
,2,11435,32277,56,0
,2,11436,32279,56,0
,2,11437,32281,56,0
,2,11438,32283,56,0
,2,11439,32285,56,0
,2,11440,32287,56,0
,2,11441,32289,56,0
,2,11442,32291,56,0
,2,11443,32293,56,0
,2,11444,32295,56,0
,2,11445,32297,56,0
,2,11446,32299,56,0
,2,11447,32301,56,0
,2,11448,32303,56,0
,2,11449,32305,56,0
,2,11450,32307,56,0
,2,11451,32309,56,0
,2,11452,32311,56,0
,2,11453,32313,56,0
,2,11454,32315,56,0
,2,11455,32317,56,0
,2,11456,32319,56,0
,2,11457,32321,56,0
,2,11458,32323,56,0
,2,11459,32325,56,0
,2,11460,32327,56,0
,2,11461,32329,56,0
,2,11462,32331,56,0
,2,11463,32333,56,0
,2,11464,32335,56,0
,2,11465,32337,56,0
,2,11466,32339,56,0
,2,11467,32341,56,0
,2,11468,32343,56,0
,2,11469,32345,56,0
,2,11470,32347,56,0
,2,11471,32349,56,0
,2,11472,32351,56,0
,2,11473,32353,56,0
,2,11474,32355,56,0
,2,11475,32357,56,0
,2,11476,32359,56,0
,2,11477,32361,56,0
,2,11478,32363,56,0
,2,11479,32365,56,0
,2,11480,32367,56,0
,2,11481,32369,56,0
,2,11482,32371,56,0
,2,11483,32373,56,0
,2,11484,32375,56,0
,2,11485,32377,56,0
,2,11486,32379,56,0
,2,11487,32381,56,0
,2,11488,32383,56,0
,2,11489,32385,56,0
,2,11490,32387,56,0
,2,11491,32389,56,0
,2,11492,32391,56,0
,2,11493,32393,56,0
,2,11494,32395,56,0
,2,11495,32397,56,0
,2,11496,32399,56,0
,2,11497,32401,56,0
,2,11498,32403,56,0
,2,11499,32405,56,0
,2,11500,32407,56,0
,2,11501,32409,56,0
,2,11502,32411,56,0
,2,11503,32413,56,0
,2,11504,32415,56,0
,2,11505,32417,56,0
,2,11506,32419,56,0
,2,11507,32421,56,0
,2,11508,32423,56,0
,2,11509,32425,56,0
,2,11510,32427,56,0
,2,11511,32429,56,0
,2,11512,32431,56,0
,2,11513,32433,56,0
,2,11514,32435,56,0
,2,11515,32437,56,0
,2,11516,32439,56,0
,2,11517,32441,56,0
,2,11518,32443,56,0
,2,11519,32445,56,0
,2,11520,32447,56,0
,2,11521,32449,56,0
,2,11522,32451,56,0
,2,11523,32453,56,0
,2,11524,32455,56,0
,2,11525,32457,56,0
,2,11526,32459,56,0
,2,11527,32461,56,0
,2,11528,32463,56,0
,2,11529,32465,56,0
,2,11530,32467,56,0
,2,11531,32469,56,0
,2,11532,32471,56,0
,2,11533,32473,56,0
,2,11534,32475,56,0
,2,11535,32477,56,0
,2,11536,32479,56,0
,2,11537,32481,56,0
,2,11538,32483,56,0
,2,11539,32485,56,0
,2,11540,32487,56,0
,2,11541,32489,56,0
,2,11542,32491,56,0
,2,11543,32493,56,0
,2,11544,32495,56,0
,2,11545,32497,56,0
,2,11546,32499,56,0
,2,11547,32501,56,0
,2,11548,32503,56,0
,2,11549,32505,56,0
,2,11550,32507,56,0
,2,11551,32509,56,0
,2,11552,32511,56,0
,2,11553,32513,56,0
,2,11554,32515,56,0
,2,11555,32517,56,0
,2,11556,32519,56,0
,2,11557,32521,56,0
,2,11558,32523,56,0
,2,11559,32525,56,0
,2,11560,32527,56,0
,2,11561,32529,56,0
,2,11562,32531,56,0
,2,11563,32533,56,0
,2,11564,32535,56,0
,2,11565,32537,56,0
,2,11566,32539,56,0
,2,11567,32541,56,0
,2,11568,32543,56,0
,2,11569,32545,56,0
,2,11570,32547,56,0
,2,11571,32549,56,0
,2,11572,32551,56,0
,2,11573,32553,56,0
,2,11574,32555,56,0
,2,11575,32557,56,0
,2,11576,32559,56,0
,2,11577,32561,56,0
,2,11578,32563,56,0
,2,11579,32565,56,0
,2,11580,32567,56,0
,2,11581,32569,56,0
,2,11582,32571,56,0
,2,11583,32573,56,0
,2,11584,32575,56,0
,2,11585,32577,56,0
,2,11586,32579,56,0
,2,11587,32581,56,0
,2,11588,32583,56,0
,2,11589,32585,56,0
,2,11590,32587,56,0
,2,11591,32589,56,0
,2,11592,32591,56,0
,2,11593,32593,56,0
,2,11594,32595,56,0
,2,11595,32597,56,0
,2,11596,32599,56,0
,2,11597,32601,56,0
,2,11598,32603,56,0
,2,11599,32605,56,0
,2,11600,32607,56,0
,2,11601,32609,56,0
,2,11602,32611,56,0
,2,11603,32613,56,0
,2,11604,32615,56,0
,2,11605,32617,56,0
,2,11606,32619,56,0
,2,11607,32621,56,0
,2,11608,32623,56,0
,2,11609,32625,56,0
,2,11610,32627,56,0
,2,11611,32629,56,0
,2,11612,32631,56,0
,2,11613,32633,56,0
,2,11614,32635,56,0
,2,11615,32637,56,0
,2,11616,32639,56,0
,2,11617,32641,56,0
,2,11618,32643,56,0
,2,11619,32645,56,0
,2,11620,32647,56,0
,2,11621,32649,56,0
,2,11622,32651,56,0
,2,11623,32653,56,0
,2,11624,32655,56,0
,2,11625,32657,56,0
,2,11626,32659,56,0
,2,11627,32661,56,0
,2,11628,32663,56,0
,2,11629,32665,56,0
,2,11630,32667,56,0
,2,11631,32669,56,0
,2,11632,32671,56,0
,2,11633,32673,56,0
,2,11634,32675,56,0
,2,11635,32677,56,0
,2,11636,32679,56,0
,2,11637,32681,56,0
,2,11638,32683,56,0
,2,11639,32685,56,0
,2,11640,32687,56,0
,2,11641,32689,56,0
,2,11642,32691,56,0
,2,11643,32693,56,0
,2,11644,32695,56,0
,2,11645,32697,56,0
,2,11646,32699,56,0
,2,11647,32701,56,0
,2,11648,32703,56,0
,2,11649,32705,56,0
,2,11650,32707,56,0
,2,11651,32709,56,0
,2,11652,32711,56,0
,2,11653,32713,56,0
,2,11654,32715,56,0
,2,11655,32717,56,0
,2,11656,32719,56,0
,2,11657,32721,56,0
,2,11658,32723,56,0
,2,11659,32725,56,0
,2,11660,32727,56,0
,2,11661,32729,56,0
,2,11662,32731,56,0
,2,11663,32733,56,0
,2,11664,32735,56,0
,2,11665,32737,56,0
,2,11666,32739,56,0
,2,11667,32741,56,0
,2,11668,32743,56,0
,2,11669,32745,56,0
,2,11670,32747,56,0
,2,11671,32749,56,0
,2,11672,32751,56,0
,2,11673,32753,56,0
,2,11674,32755,56,0
,2,11675,32757,56,0
,2,11676,32759,56,0
,2,11677,32761,56,0
,2,11678,32763,56,0
,2,11679,32765,56,0
,2,11680,32767,56,0
,2,11681,32769,56,0
,2,11682,32771,56,0
,2,11683,32773,56,0
,2,11684,32775,56,0
,2,11685,32777,56,0
,2,11686,32779,56,0
,2,11687,32781,56,0
,2,11688,32783,56,0
,2,11689,32785,56,0
,2,11690,32787,56,0
,2,11691,32789,56,0
,2,11692,32791,56,0
,2,11693,32793,56,0
,2,11694,32795,56,0
,2,11695,32797,56,0
,2,11696,32799,56,0
,2,11697,32801,56,0
,2,11698,32803,56,0
,2,11699,32805,56,0
,2,11700,32807,56,0
,2,11701,32809,56,0
,2,11702,32811,56,0
,2,11703,32813,56,0
,2,11704,32815,56,0
,2,11705,32817,56,0
,2,11706,32819,56,0
,2,11707,32821,56,0
,2,11708,32823,56,0
,2,11709,32825,56,0
,2,11710,32827,56,0
,2,11711,32829,56,0
,2,11712,32831,56,0
,2,11713,32833,56,0
,2,11714,32835,56,0
,2,11715,32837,56,0
,2,11716,32839,56,0
,2,11717,32841,56,0
,2,11718,32843,56,0
,2,11719,32845,56,0
,2,11720,32847,56,0
,2,11721,32849,56,0
,2,11722,32851,56,0
,2,11723,32853,56,0
,2,11724,32855,56,0
,2,11725,32857,56,0
,2,11726,32859,56,0
,2,11727,32861,56,0
,2,11728,32863,56,0
,2,11729,32865,56,0
,2,11730,32867,56,0
,2,11731,32869,56,0
,2,11732,32871,56,0
,2,11733,32873,56,0
,2,11734,32875,56,0
,2,11735,32877,56,0
,2,11736,32879,56,0
,2,11737,32881,56,0
,2,11738,32883,56,0
,2,11739,32885,56,0
,2,11740,32887,56,0
,2,11741,32889,56,0
,2,11742,32891,56,0
,2,11743,32893,56,0
,2,11744,32895,56,0
,2,11745,32897,56,0
,2,11746,32899,56,0
,2,11747,32901,56,0
,2,11748,32903,56,0
,2,11749,32905,56,0
,2,11750,32907,56,0
,2,11751,32909,56,0
,2,11752,32911,56,0
,2,11753,32913,56,0
,2,11754,32915,56,0
,2,11755,32917,56,0
,2,11756,32919,56,0
,2,11757,32921,56,0
,2,11758,32923,56,0
,2,11759,32925,56,0
,2,11760,32927,56,0
,2,11761,32929,56,0
,2,11762,32931,56,0
,2,11763,32933,56,0
,2,11764,32935,56,0
,2,11765,32937,56,0
,2,11766,32939,56,0
,2,11767,32941,56,0
,2,11768,32943,56,0
,2,11769,32945,56,0
,2,11770,32947,56,0
,2,11771,32949,56,0
,2,11772,32951,56,0
,2,11773,32953,56,0
,2,11774,32955,56,0
,2,11775,32957,56,0
,2,11776,32959,56,0
,2,11777,32961,56,0
,2,11778,32963,56,0
,2,11779,32965,56,0
,2,11780,32967,56,0
,2,11781,32969,56,0
,2,11782,32971,56,0
,2,11783,32973,56,0
,2,11784,32975,56,0
,2,11785,32977,56,0
,2,11786,32979,56,0
,2,11787,32981,56,0
,2,11788,32983,56,0
,2,11789,32985,56,0
,2,11790,32987,56,0
,2,11791,32989,56,0
,2,11792,32991,56,0
,2,11793,32993,56,0
,2,11794,32995,56,0
,2,11795,32997,56,0
,2,11796,32999,56,0
,2,11797,33001,56,0
,2,11798,33003,56,0
,2,11799,33005,56,0
,2,11800,33007,56,0
,2,11801,33009,56,0
,2,11802,33011,56,0
,2,11803,33013,56,0
,2,11804,33015,56,0
,2,11805,33017,56,0
,2,11806,33019,56,0
,2,11807,33021,56,0
,2,11808,33023,56,0
,2,11809,33025,56,0
,2,11810,33027,56,0
,2,11811,33029,56,0
,2,11812,33031,56,0
,2,11813,33033,56,0
,2,11814,33035,56,0
,2,11815,33037,56,0
,2,11816,33039,56,0
,2,11817,33041,56,0
,2,11818,33043,56,0
,2,11819,33045,56,0
,2,11820,33047,56,0
,2,11821,33049,56,0
,2,11822,33051,56,0
,2,11823,33053,56,0
,2,11824,33055,56,0
,2,11825,33057,56,0
,2,11826,33059,56,0
,2,11827,33061,56,0
,2,11828,33063,56,0
,2,11829,33065,56,0
,2,11830,33067,56,0
,2,11831,33069,56,0
,2,11832,33071,56,0
,2,11833,33073,56,0
,2,11834,33075,56,0
,2,11835,33077,56,0
,2,11836,33079,56,0
,2,11837,33081,56,0
,2,11838,33083,56,0
,2,11839,33085,56,0
,2,11840,33087,56,0
,2,11841,33089,56,0
,2,11842,33091,56,0
,2,11843,33093,56,0
,2,11844,33095,56,0
,2,11845,33097,56,0
,2,11846,33099,56,0
,2,11847,33101,56,0
,2,11848,33103,56,0
,2,11849,33105,56,0
,2,11850,33107,56,0
,2,11851,33109,56,0
,2,11852,33111,56,0
,2,11853,33113,56,0
,2,11854,33115,56,0
,2,11855,33117,56,0
,2,11856,33119,56,0
,2,11857,33121,56,0
,2,11858,33123,56,0
,2,11859,33125,56,0
,2,11860,33127,56,0
,2,11861,33129,56,0
,2,11862,33131,56,0
,2,11863,33133,56,0
,2,11864,33135,56,0
,2,11865,33137,56,0
,2,11866,33139,56,0
,2,11867,33141,56,0
,2,11868,33143,56,0
,2,11869,33145,56,0
,2,11870,33147,56,0
,2,11871,33149,56,0
,2,11872,33151,56,0
,2,11873,33153,56,0
,2,11874,33155,56,0
,2,11875,33157,56,0
,2,11876,33159,56,0
,2,11877,33161,56,0
,2,11878,33163,56,0
,2,11879,33165,56,0
,2,11880,33167,56,0
,2,11881,33169,56,0
,2,11882,33171,56,0
,2,11883,33173,56,0
,2,11884,33175,56,0
,2,11885,33177,56,0
,2,11886,33179,56,0
,2,11887,33181,56,0
,2,11888,33183,56,0
,2,11889,33185,56,0
,2,11890,33187,56,0
,2,11891,33189,56,0
,2,11892,33191,56,0
,2,11893,33193,56,0
,2,11894,33195,56,0
,2,11895,33197,56,0
,2,11896,33199,56,0
,2,11897,33201,56,0
,2,11898,33203,56,0
,2,11899,33205,56,0
,2,11900,33207,56,0
,2,11901,33209,56,0
,2,11902,33211,56,0
,2,11903,33213,56,0
,2,11904,33215,56,0
,2,11905,33217,56,0
,2,11906,33219,56,0
,2,11907,33221,56,0
,2,11908,33223,56,0
,2,11909,33225,56,0
,2,11910,33227,56,0
,2,11911,33229,56,0
,2,11912,33231,56,0
,2,11913,33233,56,0
,2,11914,33235,56,0
,2,11915,33237,56,0
,2,11916,33239,56,0
,2,11917,33241,56,0
,2,11918,33243,56,0
,2,11919,33245,56,0
,2,11920,33247,56,0
,2,11921,33249,56,0
,2,11922,33251,56,0
,2,11923,33253,56,0
,2,11924,33255,56,0
,2,11925,33257,56,0
,2,11926,33259,56,0
,2,11927,33261,56,0
,2,11928,33263,56,0
,2,11929,33265,56,0
,2,11930,33267,56,0
,2,11931,33269,56,0
,2,11932,33271,56,0
,2,11933,33273,56,0
,2,11934,33275,56,0
,2,11935,33277,56,0
,2,11936,33279,56,0
,2,11937,33281,56,0
,2,11938,33283,56,0
,2,11939,33285,56,0
,2,11940,33287,56,0
,2,11941,33289,56,0
,2,11942,33291,56,0
,2,11943,33293,56,0
,2,11944,33295,56,0
,2,11945,33297,56,0
,2,11946,33299,56,0
,2,11947,33301,56,0
,2,11948,33303,56,0
,2,11949,33305,56,0
,2,11950,33307,56,0
,2,11951,33309,56,0
,2,11952,33311,56,0
,2,11953,33313,56,0
,2,11954,33315,56,0
,2,11955,33317,56,0
,2,11956,33319,56,0
,2,11957,33321,56,0
,2,11958,33323,56,0
,2,11959,33325,56,0
,2,11960,33327,56,0
,2,11961,33329,56,0
,2,11962,33331,56,0
,2,11963,33333,56,0
,2,11964,33335,56,0
,2,11965,33337,56,0
,2,11966,33339,56,0
,2,11967,33341,56,0
,2,11968,33343,56,0
,2,11969,33345,56,0
,2,11970,33347,56,0
,2,11971,33349,56,0
,2,11972,33351,56,0
,2,11973,33353,56,0
,2,11974,33355,56,0
,2,11975,33357,56,0
,2,11976,33359,56,0
,2,11977,33361,56,0
,2,11978,33363,56,0
,2,11979,33365,56,0
,2,11980,33367,56,0
,2,11981,33369,56,0
,2,11982,33371,56,0
,2,11983,33373,56,0
,2,11984,33375,56,0
,2,11985,33377,56,0
,2,11986,33379,56,0
,2,11987,33381,56,0
,2,11988,33383,56,0
,2,11989,33385,56,0
,2,11990,33387,56,0
,2,11991,33389,56,0
,2,11992,33391,56,0
,2,11993,33393,56,0
,2,11994,33395,56,0
,2,11995,33397,56,0
,2,11996,33399,56,0
,2,11997,33401,56,0
,2,11998,33403,56,0
,2,11999,33405,56,0
,2,12000,33407,56,0
,2,12001,33409,56,0
,2,12002,33411,56,0
,2,12003,33413,56,0
,2,12004,33415,56,0
,2,12005,33417,56,0
,2,12006,33419,56,0
,2,12007,33421,56,0
,2,12008,33423,56,0
,2,12009,33425,56,0
,2,12010,33427,56,0
,2,12011,33429,56,0
,2,12012,33431,56,0
,2,12013,33433,56,0
,2,12014,33435,56,0
,2,12015,33437,56,0
,2,12016,33439,56,0
,2,12017,33441,56,0
,2,12018,33443,56,0
,2,12019,33445,56,0
,2,12020,33447,56,0
,2,12021,33449,56,0
,2,12022,33451,56,0
,2,12023,33453,56,0
,2,12024,33455,56,0
,2,12025,33457,56,0
,2,12026,33459,56,0
,2,12027,33461,56,0
,2,12028,33463,56,0
,2,12029,33465,56,0
,2,12030,33467,56,0
,2,12031,33469,56,0
,2,12032,33471,56,0
,2,12033,33473,56,0
,2,12034,33475,56,0
,2,12035,33477,56,0
,2,12036,33479,56,0
,2,12037,33481,56,0
,2,12038,33483,56,0
,2,12039,33485,56,0
,2,12040,33487,56,0
,2,12041,33489,56,0
,2,12042,33491,56,0
,2,12043,33493,56,0
,2,12044,33495,56,0
,2,12045,33497,56,0
,2,12046,33499,56,0
,2,12047,33501,56,0
,2,12048,33503,56,0
,2,12049,33505,56,0
,2,12050,33507,56,0
,2,12051,33509,56,0
,2,12052,33511,56,0
,2,12053,33513,56,0
,2,12054,33515,56,0
,2,12055,33517,56,0
,2,12056,33519,56,0
,2,12057,33521,56,0
,2,12058,33523,56,0
,2,12059,33525,56,0
,2,12060,33527,56,0
,2,12061,33529,56,0
,2,12062,33531,56,0
,2,12063,33533,56,0
,2,12064,33535,56,0
,2,12065,33537,56,0
,2,12066,33539,56,0
,2,12067,33541,56,0
,2,12068,33543,56,0
,2,12069,33545,56,0
,2,12070,33547,56,0
,2,12071,33549,56,0
,2,12072,33551,56,0
,2,12073,33553,56,0
,2,12074,33555,56,0
,2,12075,33557,56,0
,2,12076,33559,56,0
,2,12077,33561,56,0
,2,12078,33563,56,0
,2,12079,33565,56,0
,2,12080,33567,56,0
,2,12081,33569,56,0
,2,12082,33571,56,0
,2,12083,33573,56,0
,2,12084,33575,56,0
,2,12085,33577,56,0
,2,12086,33579,56,0
,2,12087,33581,56,0
,2,12088,33583,56,0
,2,12089,33585,56,0
,2,12090,33587,56,0
,2,12091,33589,56,0
,2,12092,33591,56,0
,2,12093,33593,56,0
,2,12094,33595,56,0
,2,12095,33597,56,0
,2,12096,33599,56,0
,2,12097,33601,56,0
,2,12098,33603,56,0
,2,12099,33605,56,0
,2,12100,33607,56,0
,2,12101,33609,56,0
,2,12102,33611,56,0
,2,12103,33613,56,0
,2,12104,33615,56,0
,2,12105,33617,56,0
,2,12106,33619,56,0
,2,12107,33621,56,0
,2,12108,33623,56,0
,2,12109,33625,56,0
,2,12110,33627,56,0
,2,12111,33629,56,0
,2,12112,33631,56,0
,2,12113,33633,56,0
,2,12114,33635,56,0
,2,12115,33637,56,0
,2,12116,33639,56,0
,2,12117,33641,56,0
,2,12118,33643,56,0
,2,12119,33645,56,0
,2,12120,33647,56,0
,2,12121,33649,56,0
,2,12122,33651,56,0
,2,12123,33653,56,0
,2,12124,33655,56,0
,2,12125,33657,56,0
,2,12126,33659,56,0
,2,12127,33661,56,0
,2,12128,33663,56,0
,2,12129,33665,56,0
,2,12130,33667,56,0
,2,12131,33669,56,0
,2,12132,33671,56,0
,2,12133,33673,56,0
,2,12134,33675,56,0
,2,12135,33677,56,0
,2,12136,33679,56,0
,2,12137,33681,56,0
,2,12138,33683,56,0
,2,12139,33685,56,0
,2,12140,33687,56,0
,2,12141,33689,56,0
,2,12142,33691,56,0
,2,12143,33693,56,0
,2,12144,33695,56,0
,2,12145,33697,56,0
,2,12146,33699,56,0
,2,12147,33701,56,0
,2,12148,33703,56,0
,2,12149,33705,56,0
,2,12150,33707,56,0
,2,12151,33709,56,0
,2,12152,33711,56,0
,2,12153,33713,56,0
,2,12154,33715,56,0
,2,12155,33717,56,0
,2,12156,33719,56,0
,2,12157,33721,56,0
,2,12158,33723,56,0
,2,12159,33725,56,0
,2,12160,33727,56,0
,2,12161,33729,56,0
,2,12162,33731,56,0
,2,12163,33733,56,0
,2,12164,33735,56,0
,2,12165,33737,56,0
,2,12166,33739,56,0
,2,12167,33741,56,0
,2,12168,33743,56,0
,2,12169,33745,56,0
,2,12170,33747,56,0
,2,12171,33749,56,0
,2,12172,33751,56,0
,2,12173,33753,56,0
,2,12174,33755,56,0
,2,12175,33757,56,0
,2,12176,33759,56,0
,2,12177,33761,56,0
,2,12178,33763,56,0
,2,12179,33765,56,0
,2,12180,33767,56,0
,2,12181,33769,56,0
,2,12182,33771,56,0
,2,12183,33773,56,0
,2,12184,33775,56,0
,2,12185,33777,56,0
,2,12186,33779,56,0
,2,12187,33781,56,0
,2,12188,33783,56,0
,2,12189,33785,56,0
,2,12190,33787,56,0
,2,12191,33789,56,0
,2,12192,33791,56,0
,2,12193,33793,56,0
,2,12194,33795,56,0
,2,12195,33797,56,0
,2,12196,33799,56,0
,2,12197,33801,56,0
,2,12198,33803,56,0
,2,12199,33805,56,0
,2,12200,33807,56,0
,2,12201,33809,56,0
,2,12202,33811,56,0
,2,12203,33813,56,0
,2,12204,33815,56,0
,2,12205,33817,56,0
,2,12206,33819,56,0
,2,12207,33821,56,0
,2,12208,33823,56,0
,2,12209,33825,56,0
,2,12210,33827,56,0
,2,12211,33829,56,0
,2,12212,33831,56,0
,2,12213,33833,56,0
,2,12214,33835,56,0
,2,12215,33837,56,0
,2,12216,33839,56,0
,2,12217,33841,56,0
,2,12218,33843,56,0
,2,12219,33845,56,0
,2,12220,33847,56,0
,2,12221,33849,56,0
,2,12222,33851,56,0
,2,12223,33853,56,0
,2,12224,33855,56,0
,2,12225,33857,56,0
,2,12226,33859,56,0
,2,12227,33861,56,0
,2,12228,33863,56,0
,2,12229,33865,56,0
,2,12230,33867,56,0
,2,12231,33869,56,0
,2,12232,33871,56,0
,2,12233,33873,56,0
,2,12234,33875,56,0
,2,12235,33877,56,0
,2,12236,33879,56,0
,2,12237,33881,56,0
,2,12238,33883,56,0
,2,12239,33885,56,0
,2,12240,33887,56,0
,2,12241,33889,56,0
,2,12242,33891,56,0
,2,12243,33893,56,0
,2,12244,33895,56,0
,2,12245,33897,56,0
,2,12246,33899,56,0
,2,12247,33901,56,0
,2,12248,33903,56,0
,2,12249,33905,56,0
,2,12250,33907,56,0
,2,12251,33909,56,0
,2,12252,33911,56,0
,2,12253,33913,56,0
,2,12254,33915,56,0
,2,12255,33917,56,0
,2,12256,33919,56,0
,2,12257,33921,56,0
,2,12258,33923,56,0
,2,12259,33925,56,0
,2,12260,33927,56,0
,2,12261,33929,56,0
,2,12262,33931,56,0
,2,12263,33933,56,0
,2,12264,33935,56,0
,2,12265,33937,56,0
,2,12266,33939,56,0
,2,12267,33941,56,0
,2,12268,33943,56,0
,2,12269,33945,56,0
,2,12270,33947,56,0
,2,12271,33949,56,0
,2,12272,33951,56,0
,2,12273,33953,56,0
,2,12274,33955,56,0
,2,12275,33957,56,0
,2,12276,33959,56,0
,2,12277,33961,56,0
,2,12278,33963,56,0
,2,12279,33965,56,0
,2,12280,33967,56,0
,2,12281,33969,56,0
,2,12282,33971,56,0
,2,12283,33973,56,0
,2,12284,33975,56,0
,2,12285,33977,56,0
,2,12286,33979,56,0
,2,12287,33981,56,0
,2,12288,33983,56,0
,2,12289,33985,56,0
,2,12290,33987,56,0
,2,12291,33989,56,0
,2,12292,33991,56,0
,2,12293,33993,56,0
,2,12294,33995,56,0
,2,12295,33997,56,0
,2,12296,33999,56,0
,2,12297,34001,56,0
,2,12298,34003,56,0
,2,12299,34005,56,0
,2,12300,34007,56,0
,2,12301,34009,56,0
,2,12302,34011,56,0
,2,12303,34013,56,0
,2,12304,34015,56,0
,2,12305,34017,56,0
,2,12306,34019,56,0
,2,12307,34021,56,0
,2,12308,34023,56,0
,2,12309,34025,56,0
,2,12310,34027,56,0
,2,12311,34029,56,0
,2,12312,34031,56,0
,2,12313,34033,56,0
,2,12314,34035,56,0
,2,12315,34037,56,0
,2,12316,34039,56,0
,2,12317,34041,56,0
,2,12318,34043,56,0
,2,12319,34045,56,0
,2,12320,34047,56,0
,2,12321,34049,56,0
,2,12322,34051,56,0
,2,12323,34053,56,0
,2,12324,34055,56,0
,2,12325,34057,56,0
,2,12326,34059,56,0
,2,12327,34061,56,0
,2,12328,34063,56,0
,2,12329,34065,56,0
,2,12330,34067,56,0
,2,12331,34069,56,0
,2,12332,34071,56,0
,2,12333,34073,56,0
,2,12334,34075,56,0
,2,12335,34077,56,0
,2,12336,34079,56,0
,2,12337,34081,56,0
,2,12338,34083,56,0
,2,12339,34085,56,0
,2,12340,34087,56,0
,2,12341,34089,56,0
,2,12342,34091,56,0
,2,12343,34093,56,0
,2,12344,34095,56,0
,2,12345,34097,56,0
,2,12346,34099,56,0
,2,12347,34101,56,0
,2,12348,34103,56,0
,2,12349,34105,56,0
,2,12350,34107,56,0
,2,12351,34109,56,0
,2,12352,34111,56,0
,2,12353,34113,56,0
,2,12354,34115,56,0
,2,12355,34117,56,0
,2,12356,34119,56,0
,2,12357,34121,56,0
,2,12358,34123,56,0
,2,12359,34125,56,0
,2,12360,34127,56,0
,2,12361,34129,56,0
,2,12362,34131,56,0
,2,12363,34133,56,0
,2,12364,34135,56,0
,2,12365,34137,56,0
,2,12366,34139,56,0
,2,12367,34141,56,0
,2,12368,34143,56,0
,2,12369,34145,56,0
,2,12370,34147,56,0
,2,12371,34149,56,0
,2,12372,34151,56,0
,2,12373,34153,56,0
,2,12374,34155,56,0
,2,12375,34157,56,0
,2,12376,34159,56,0
,2,12377,34161,56,0
,2,12378,34163,56,0
,2,12379,34165,56,0
,2,12380,34167,56,0
,2,12381,34169,56,0
,2,12382,34171,56,0
,2,12383,34173,56,0
,2,12384,34175,56,0
,2,12385,34177,56,0
,2,12386,34179,56,0
,2,12387,34181,56,0
,2,12388,34183,56,0
,2,12389,34185,56,0
,2,12390,34187,56,0
,2,12391,34189,56,0
,2,12392,34191,56,0
,2,12393,34193,56,0
,2,12394,34195,56,0
,2,12395,34197,56,0
,2,12396,34199,56,0
,2,12397,34201,56,0
,2,12398,34203,56,0
,2,12399,34205,56,0
,2,12400,34207,56,0
,2,12401,34209,56,0
,2,12402,34211,56,0
,2,12403,34213,56,0
,2,12404,34215,56,0
,2,12405,34217,56,0
,2,12406,34219,56,0
,2,12407,34221,56,0
,2,12408,34223,56,0
,2,12409,34225,56,0
,2,12410,34227,56,0
,2,12411,34229,56,0
,2,12412,34231,56,0
,2,12413,34233,56,0
,2,12414,34235,56,0
,2,12415,34237,56,0
,2,12416,34239,56,0
,2,12417,34241,56,0
,2,12418,34243,56,0
,2,12419,34245,56,0
,2,12420,34247,56,0
,2,12421,34249,56,0
,2,12422,34251,56,0
,2,12423,34253,56,0
,2,12424,34255,56,0
,2,12425,34257,56,0
,2,12426,34259,56,0
,2,12427,34261,56,0
,2,12428,34263,56,0
,2,12429,34265,56,0
,2,12430,34267,56,0
,2,12431,34269,56,0
,2,12432,34271,56,0
,2,12433,34273,56,0
,2,12434,34275,56,0
,2,12435,34277,56,0
,2,12436,34279,56,0
,2,12437,34281,56,0
,2,12438,34283,56,0
,2,12439,34285,56,0
,2,12440,34287,56,0
,2,12441,34289,56,0
,2,12442,34291,56,0
,2,12443,34293,56,0
,2,12444,34295,56,0
,2,12445,34297,56,0
,2,12446,34299,56,0
,2,12447,34301,56,0
,2,12448,34303,56,0
,2,12449,34305,56,0
,2,12450,34307,56,0
,2,12451,34309,56,0
,2,12452,34311,56,0
,2,12453,34313,56,0
,2,12454,34315,56,0
,2,12455,34317,56,0
,2,12456,34319,56,0
,2,12457,34321,56,0
,2,12458,34323,56,0
,2,12459,34325,56,0
,2,12460,34327,56,0
,2,12461,34329,56,0
,2,12462,34331,56,0
,2,12463,34333,56,0
,2,12464,34335,56,0
,2,12465,34337,56,0
,2,12466,34339,56,0
,2,12467,34341,56,0
,2,12468,34343,56,0
,2,12469,34345,56,0
,2,12470,34347,56,0
,2,12471,34349,56,0
,2,12472,34351,56,0
,2,12473,34353,56,0
,2,12474,34355,56,0
,2,12475,34357,56,0
,2,12476,34359,56,0
,2,12477,34361,56,0
,2,12478,34363,56,0
,2,12479,34365,56,0
,2,12480,34367,56,0
,2,12481,34369,56,0
,2,12482,34371,56,0
,2,12483,34373,56,0
,2,12484,34375,56,0
,2,12485,34377,56,0
,2,12486,34379,56,0
,2,12487,34381,56,0
,2,12488,34383,56,0
,2,12489,34385,56,0
,2,12490,34387,56,0
,2,12491,34389,56,0
,2,12492,34391,56,0
,2,12493,34393,56,0
,2,12494,34395,56,0
,2,12495,34397,56,0
,2,12496,34399,56,0
,2,12497,34401,56,0
,2,12498,34403,56,0
,2,12499,34405,56,0
,2,12500,34407,56,0
,2,12501,34409,56,0
,2,12502,34411,56,0
,2,12503,34413,56,0
,2,12504,34415,56,0
,2,12505,34417,56,0
,2,12506,34419,56,0
,2,12507,34421,56,0
,2,12508,34423,56,0
,2,12509,34425,56,0
,2,12510,34427,56,0
,2,12511,34429,56,0
,2,12512,34431,56,0
,2,12513,34433,56,0
,2,12514,34435,56,0
,2,12515,34437,56,0
,2,12516,34439,56,0
,2,12517,34441,56,0
,2,12518,34443,56,0
,2,12519,34445,56,0
,2,12520,34447,56,0
,2,12521,34449,56,0
,2,12522,34451,56,0
,2,12523,34453,56,0
,2,12524,34455,56,0
,2,12525,34457,56,0
,2,12526,34459,56,0
,2,12527,34461,56,0
,2,12528,34463,56,0
,2,12529,34465,56,0
,2,12530,34467,56,0
,2,12531,34469,56,0
,2,12532,34471,56,0
,2,12533,34473,56,0
,2,12534,34475,56,0
,2,12535,34477,56,0
,2,12536,34479,56,0
,2,12537,34481,56,0
,2,12538,34483,56,0
,2,12539,34485,56,0
,2,12540,34487,56,0
,2,12541,34489,56,0
,2,12542,34491,56,0
,2,12543,34493,56,0
,2,12544,34495,56,0
,2,12545,34497,56,0
,2,12546,34499,56,0
,2,12547,34501,56,0
,2,12548,34503,56,0
,2,12549,34505,56,0
,2,12550,34507,56,0
,2,12551,34509,56,0
,2,12552,34511,56,0
,2,12553,34513,56,0
,2,12554,34515,56,0
,2,12555,34517,56,0
,2,12556,34519,56,0
,2,12557,34521,56,0
,2,12558,34523,56,0
,2,12559,34525,56,0
,2,12560,34527,56,0
,2,12561,34529,56,0
,2,12562,34531,56,0
,2,12563,34533,56,0
,2,12564,34535,56,0
,2,12565,34537,56,0
,2,12566,34539,56,0
,2,12567,34541,56,0
,2,12568,34543,56,0
,2,12569,34545,56,0
,2,12570,34547,56,0
,2,12571,34549,56,0
,2,12572,34551,56,0
,2,12573,34553,56,0
,2,12574,34555,56,0
,2,12575,34557,56,0
,2,12576,34559,56,0
,2,12577,34561,56,0
,2,12578,34563,56,0
,2,12579,34565,56,0
,2,12580,34567,56,0
,2,12581,34569,56,0
,2,12582,34571,56,0
,2,12583,34573,56,0
,2,12584,34575,56,0
,2,12585,34577,56,0
,2,12586,34579,56,0
,2,12587,34581,56,0
,2,12588,34583,56,0
,2,12589,34585,56,0
,2,12590,34587,56,0
,2,12591,34589,56,0
,2,12592,34591,56,0
,2,12593,34593,56,0
,2,12594,34595,56,0
,2,12595,34597,56,0
,2,12596,34599,56,0
,2,12597,34601,56,0
,2,12598,34603,56,0
,2,12599,34605,56,0
,2,12600,34607,56,0
,2,12601,34609,56,0
,2,12602,34611,56,0
,2,12603,34613,56,0
,2,12604,34615,56,0
,2,12605,34617,56,0
,2,12606,34619,56,0
,2,12607,34621,56,0
,2,12608,34623,56,0
,2,12609,34625,56,0
,2,12610,34627,56,0
,2,12611,34629,56,0
,2,12612,34631,56,0
,2,12613,34633,56,0
,2,12614,34635,56,0
,2,12615,34637,56,0
,2,12616,34639,56,0
,2,12617,34641,56,0
,2,12618,34643,56,0
,2,12619,34645,56,0
,2,12620,34647,56,0
,2,12621,34649,56,0
,2,12622,34651,56,0
,2,12623,34653,56,0
,2,12624,34655,56,0
,2,12625,34657,56,0
,2,12626,34659,56,0
,2,12627,34661,56,0
,2,12628,34663,56,0
,2,12629,34665,56,0
,2,12630,34667,56,0
,2,12631,34669,56,0
,2,12632,34671,56,0
,2,12633,34673,56,0
,2,12634,34675,56,0
,2,12635,34677,56,0
,2,12636,34679,56,0
,2,12637,34681,56,0
,2,12638,34683,56,0
,2,12639,34685,56,0
,2,12640,34687,56,0
,2,12641,34689,56,0
,2,12642,34691,56,0
,2,12643,34693,56,0
,2,12644,34695,56,0
,2,12645,34697,56,0
,2,12646,34699,56,0
,2,12647,34701,56,0
,2,12648,34703,56,0
,2,12649,34705,56,0
,2,12650,34707,56,0
,2,12651,34709,56,0
,2,12652,34711,56,0
,2,12653,34713,56,0
,2,12654,34715,56,0
,2,12655,34717,56,0
,2,12656,34719,56,0
,2,12657,34721,56,0
,2,12658,34723,56,0
,2,12659,34725,56,0
,2,12660,34727,56,0
,2,12661,34729,56,0
,2,12662,34731,56,0
,2,12663,34733,56,0
,2,12664,34735,56,0
,2,12665,34737,56,0
,2,12666,34739,56,0
,2,12667,34741,56,0
,2,12668,34743,56,0
,2,12669,34745,56,0
,2,12670,34747,56,0
,2,12671,34749,56,0
,2,12672,34751,56,0
,2,12673,34753,56,0
,2,12674,34755,56,0
,2,12675,34757,56,0
,2,12676,34759,56,0
,2,12677,34761,56,0
,2,12678,34763,56,0
,2,12679,34765,56,0
,2,12680,34767,56,0
,2,12681,34769,56,0
,2,12682,34771,56,0
,2,12683,34773,56,0
,2,12684,34775,56,0
,2,12685,34777,56,0
,2,12686,34779,56,0
,2,12687,34781,56,0
,2,12688,34783,56,0
,2,12689,34785,56,0
,2,12690,34787,56,0
,2,12691,34789,56,0
,2,12692,34791,56,0
,2,12693,34793,56,0
,2,12694,34795,56,0
,2,12695,34797,56,0
,2,12696,34799,56,0
,2,12697,34801,56,0
,2,12698,34803,56,0
,2,12699,34805,56,0
,2,12700,34807,56,0
,2,12701,34809,56,0
,2,12702,34811,56,0
,2,12703,34813,56,0
,2,12704,34815,56,0
,2,12705,34817,56,0
,2,12706,34819,56,0
,2,12707,34821,56,0
,2,12708,34823,56,0
,2,12709,34825,56,0
,2,12710,34827,56,0
,2,12711,34829,56,0
,2,12712,34831,56,0
,2,12713,34833,56,0
,2,12714,34835,56,0
,2,12715,34837,56,0
,2,12716,34839,56,0
,2,12717,34841,56,0
,2,12718,34843,56,0
,2,12719,34845,56,0
,2,12720,34847,56,0
,2,12721,34849,56,0
,2,12722,34851,56,0
,2,12723,34853,56,0
,2,12724,34855,56,0
,2,12725,34857,56,0
,2,12726,34859,56,0
,2,12727,34861,56,0
,2,12728,34863,56,0
,2,12729,34865,56,0
,2,12730,34867,56,0
,2,12731,34869,56,0
,2,12732,34871,56,0
,2,12733,34873,56,0
,2,12734,34875,56,0
,2,12735,34877,56,0
,2,12736,34879,56,0
,2,12737,34881,56,0
,2,12738,34883,56,0
,2,12739,34885,56,0
,2,12740,34887,56,0
,2,12741,34889,56,0
,2,12742,34891,56,0
,2,12743,34893,56,0
,2,12744,34895,56,0
,2,12745,34897,56,0
,2,12746,34899,56,0
,2,12747,34901,56,0
,2,12748,34903,56,0
,2,12749,34905,56,0
,2,12750,34907,56,0
,2,12751,34909,56,0
,2,12752,34911,56,0
,2,12753,34913,56,0
,2,12754,34915,56,0
,2,12755,34917,56,0
,2,12756,34919,56,0
,2,12757,34921,56,0
,2,12758,34923,56,0
,2,12759,34925,56,0
,2,12760,34927,56,0
,2,12761,34929,56,0
,2,12762,34931,56,0
,2,12763,34933,56,0
,2,12764,34935,56,0
,2,12765,34937,56,0
,2,12766,34939,56,0
,2,12767,34941,56,0
,2,12768,34943,56,0
,2,12769,34945,56,0
,2,12770,34947,56,0
,2,12771,34949,56,0
,2,12772,34951,56,0
,2,12773,34953,56,0
,2,12774,34955,56,0
,2,12775,34957,56,0
,2,12776,34959,56,0
,2,12777,34961,56,0
,2,12778,34963,56,0
,2,12779,34965,56,0
,2,12780,34967,56,0
,2,12781,34969,56,0
,2,12782,34971,56,0
,2,12783,34973,56,0
,2,12784,34975,56,0
,2,12785,34977,56,0
,2,12786,34979,56,0
,2,12787,34981,56,0
,2,12788,34983,56,0
,2,12789,34985,56,0
,2,12790,34987,56,0
,2,12791,34989,56,0
,2,12792,34991,56,0
,2,12793,34993,56,0
,2,12794,34995,56,0
,2,12795,34997,56,0
,2,12796,34999,56,0
,2,12797,35001,56,0
,2,12798,35003,56,0
,2,12799,35005,56,0
,2,12800,35007,56,0
,2,12801,35009,56,0
,2,12802,35011,56,0
,2,12803,35013,56,0
,2,12804,35015,56,0
,2,12805,35017,56,0
,2,12806,35019,56,0
,2,12807,35021,56,0
,2,12808,35023,56,0
,2,12809,35025,56,0
,2,12810,35027,56,0
,2,12811,35029,56,0
,2,12812,35031,56,0
,2,12813,35033,56,0
,2,12814,35035,56,0
,2,12815,35037,56,0
,2,12816,35039,56,0
,2,12817,35041,56,0
,2,12818,35043,56,0
,2,12819,35045,56,0
,2,12820,35047,56,0
,2,12821,35049,56,0
,2,12822,35051,56,0
,2,12823,35053,56,0
,2,12824,35055,56,0
,2,12825,35057,56,0
,2,12826,35059,56,0
,2,12827,35061,56,0
,2,12828,35063,56,0
,2,12829,35065,56,0
,2,12830,35067,56,0
,2,12831,35069,56,0
,2,12832,35071,56,0
,2,12833,35073,56,0
,2,12834,35075,56,0
,2,12835,35077,56,0
,2,12836,35079,56,0
,2,12837,35081,56,0
,2,12838,35083,56,0
,2,12839,35085,56,0
,2,12840,35087,56,0
,2,12841,35089,56,0
,2,12842,35091,56,0
,2,12843,35093,56,0
,2,12844,35095,56,0
,2,12845,35097,56,0
,2,12846,35099,56,0
,2,12847,35101,56,0
,2,12848,35103,56,0
,2,12849,35105,56,0
,2,12850,35107,56,0
,2,12851,35109,56,0
,2,12852,35111,56,0
,2,12853,35113,56,0
,2,12854,35115,56,0
,2,12855,35117,56,0
,2,12856,35119,56,0
,2,12857,35121,56,0
,2,12858,35123,56,0
,2,12859,35125,56,0
,2,12860,35127,56,0
,2,12861,35129,56,0
,2,12862,35131,56,0
,2,12863,35133,56,0
,2,12864,35135,56,0
,2,12865,35137,56,0
,2,12866,35139,56,0
,2,12867,35141,56,0
,2,12868,35143,56,0
,2,12869,35145,56,0
,2,12870,35147,56,0
,2,12871,35149,56,0
,2,12872,35151,56,0
,2,12873,35153,56,0
,2,12874,35155,56,0
,2,12875,35157,56,0
,2,12876,35159,56,0
,2,12877,35161,56,0
,2,12878,35163,56,0
,2,12879,35165,56,0
,2,12880,35167,56,0
,2,12881,35169,56,0
,2,12882,35171,56,0
,2,12883,35173,56,0
,2,12884,35175,56,0
,2,12885,35177,56,0
,2,12886,35179,56,0
,2,12887,35181,56,0
,2,12888,35183,56,0
,2,12889,35185,56,0
,2,12890,35187,56,0
,2,12891,35189,56,0
,2,12892,35191,56,0
,2,12893,35193,56,0
,2,12894,35195,56,0
,2,12895,35197,56,0
,2,12896,35199,56,0
,2,12897,35201,56,0
,2,12898,35203,56,0
,2,12899,35205,56,0
,2,12900,35207,56,0
,2,12901,35209,56,0
,2,12902,35211,56,0
,2,12903,35213,56,0
,2,12904,35215,56,0
,2,12905,35217,56,0
,2,12906,35219,56,0
,2,12907,35221,56,0
,2,12908,35223,56,0
,2,12909,35225,56,0
,2,12910,35227,56,0
,2,12911,35229,56,0
,2,12912,35231,56,0
,2,12913,35233,56,0
,2,12914,35235,56,0
,2,12915,35237,56,0
,2,12916,35239,56,0
,2,12917,35241,56,0
,2,12918,35243,56,0
,2,12919,35245,56,0
,2,12920,35247,56,0
,2,12921,35249,56,0
,2,12922,35251,56,0
,2,12923,35253,56,0
,2,12924,35255,56,0
,2,12925,35257,56,0
,2,12926,35259,56,0
,2,12927,35261,56,0
,2,12928,35263,56,0
,2,12929,35265,56,0
,2,12930,35267,56,0
,2,12931,35269,56,0
,2,12932,35271,56,0
,2,12933,35273,56,0
,2,12934,35275,56,0
,2,12935,35277,56,0
,2,12936,35279,56,0
,2,12937,35281,56,0
,2,12938,35283,56,0
,2,12939,35285,56,0
,2,12940,35287,56,0
,2,12941,35289,56,0
,2,12942,35291,56,0
,2,12943,35293,56,0
,2,12944,35295,56,0
,2,12945,35297,56,0
,2,12946,35299,56,0
,2,12947,35301,56,0
,2,12948,35303,56,0
,2,12949,35305,56,0
,2,12950,35307,56,0
,2,12951,35309,56,0
,2,12952,35311,56,0
,2,12953,35313,56,0
,2,12954,35315,56,0
,2,12955,35317,56,0
,2,12956,35319,56,0
,2,12957,35321,56,0
,2,12958,35323,56,0
,2,12959,35325,56,0
,2,12960,35327,56,0
,2,12961,35329,56,0
,2,12962,35331,56,0
,2,12963,35333,56,0
,2,12964,35335,56,0
,2,12965,35337,56,0
,2,12966,35339,56,0
,2,12967,35341,56,0
,2,12968,35343,56,0
,2,12969,35345,56,0
,2,12970,35347,56,0
,2,12971,35349,56,0
,2,12972,35351,56,0
,2,12973,35353,56,0
,2,12974,35355,56,0
,2,12975,35357,56,0
,2,12976,35359,56,0
,2,12977,35361,56,0
,2,12978,35363,56,0
,2,12979,35365,56,0
,2,12980,35367,56,0
,2,12981,35369,56,0
,2,12982,35371,56,0
,2,12983,35373,56,0
,2,12984,35375,56,0
,2,12985,35377,56,0
,2,12986,35379,56,0
,2,12987,35381,56,0
,2,12988,35383,56,0
,2,12989,35385,56,0
,2,12990,35387,56,0
,2,12991,35389,56,0
,2,12992,35391,56,0
,2,12993,35393,56,0
,2,12994,35395,56,0
,2,12995,35397,56,0
,2,12996,35399,56,0
,2,12997,35401,56,0
,2,12998,35403,56,0
,2,12999,35405,56,0
,2,13000,35407,56,0
,2,13001,35409,56,0
,2,13002,35411,56,0
,2,13003,35413,56,0
,2,13004,35415,56,0
,2,13005,35417,56,0
,2,13006,35419,56,0
,2,13007,35421,56,0
,2,13008,35423,56,0
,2,13009,35425,56,0
,2,13010,35427,56,0
,2,13011,35429,56,0
,2,13012,35431,56,0
,2,13013,35433,56,0
,2,13014,35435,56,0
,2,13015,35437,56,0
,2,13016,35439,56,0
,2,13017,35441,56,0
,2,13018,35443,56,0
,2,13019,35445,56,0
,2,13020,35447,56,0
,2,13021,35449,56,0
,2,13022,35451,56,0
,2,13023,35453,56,0
,2,13024,35455,56,0
,2,13025,35457,56,0
,2,13026,35459,56,0
,2,13027,35461,56,0
,2,13028,35463,56,0
,2,13029,35465,56,0
,2,13030,35467,56,0
,2,13031,35469,56,0
,2,13032,35471,56,0
,2,13033,35473,56,0
,2,13034,35475,56,0
,2,13035,35477,56,0
,2,13036,35479,56,0
,2,13037,35481,56,0
,2,13038,35483,56,0
,2,13039,35485,56,0
,2,13040,35487,56,0
,2,13041,35489,56,0
,2,13042,35491,56,0
,2,13043,35493,56,0
,2,13044,35495,56,0
,2,13045,35497,56,0
,2,13046,35499,56,0
,2,13047,35501,56,0
,2,13048,35503,56,0
,2,13049,35505,56,0
,2,13050,35507,56,0
,2,13051,35509,56,0
,2,13052,35511,56,0
,2,13053,35513,56,0
,2,13054,35515,56,0
,2,13055,35517,56,0
,2,13056,35519,56,0
,2,13057,35521,56,0
,2,13058,35523,56,0
,2,13059,35525,56,0
,2,13060,35527,56,0
,2,13061,35529,56,0
,2,13062,35531,56,0
,2,13063,35533,56,0
,2,13064,35535,56,0
,2,13065,35537,56,0
,2,13066,35539,56,0
,2,13067,35541,56,0
,2,13068,35543,56,0
,2,13069,35545,56,0
,2,13070,35547,56,0
,2,13071,35549,56,0
,2,13072,35551,56,0
,2,13073,35553,56,0
,2,13074,35555,56,0
,2,13075,35557,56,0
,2,13076,35559,56,0
,2,13077,35561,56,0
,2,13078,35563,56,0
,2,13079,35565,56,0
,2,13080,35567,56,0
,2,13081,35569,56,0
,2,13082,35571,56,0
,2,13083,35573,56,0
,2,13084,35575,56,0
,2,13085,35577,56,0
,2,13086,35579,56,0
,2,13087,35581,56,0
,2,13088,35583,56,0
,2,13089,35585,56,0
,2,13090,35587,56,0
,2,13091,35589,56,0
,2,13092,35591,56,0
,2,13093,35593,56,0
,2,13094,35595,56,0
,2,13095,35597,56,0
,2,13096,35599,56,0
,2,13097,35601,56,0
,2,13098,35603,56,0
,2,13099,35605,56,0
,2,13100,35607,56,0
,2,13101,35609,56,0
,2,13102,35611,56,0
,2,13103,35613,56,0
,2,13104,35615,56,0
,2,13105,35617,56,0
,2,13106,35619,56,0
,2,13107,35621,56,0
,2,13108,35623,56,0
,2,13109,35625,56,0
,2,13110,35627,56,0
,2,13111,35629,56,0
,2,13112,35631,56,0
,2,13113,35633,56,0
,2,13114,35635,56,0
,2,13115,35637,56,0
,2,13116,35639,56,0
,2,13117,35641,56,0
,2,13118,35643,56,0
,2,13119,35645,56,0
,2,13120,35647,56,0
,2,13121,35649,56,0
,2,13122,35651,56,0
,2,13123,35653,56,0
,2,13124,35655,56,0
,2,13125,35657,56,0
,2,13126,35659,56,0
,2,13127,35661,56,0
,2,13128,35663,56,0
,2,13129,35665,56,0
,2,13130,35667,56,0
,2,13131,35669,56,0
,2,13132,35671,56,0
,2,13133,35673,56,0
,2,13134,35675,56,0
,2,13135,35677,56,0
,2,13136,35679,56,0
,2,13137,35681,56,0
,2,13138,35683,56,0
,2,13139,35685,56,0
,2,13140,35687,56,0
,2,13141,35689,56,0
,2,13142,35691,56,0
,2,13143,35693,56,0
,2,13144,35695,56,0
,2,13145,35697,56,0
,2,13146,35699,56,0
,2,13147,35701,56,0
,2,13148,35703,56,0
,2,13149,35705,56,0
,2,13150,35707,56,0
,2,13151,35709,56,0
,2,13152,35711,56,0
,2,13153,35713,56,0
,2,13154,35715,56,0
,2,13155,35717,56,0
,2,13156,35719,56,0
,2,13157,35721,56,0
,2,13158,35723,56,0
,2,13159,35725,56,0
,2,13160,35727,56,0
,2,13161,35729,56,0
,2,13162,35731,56,0
,2,13163,35733,56,0
,2,13164,35735,56,0
,2,13165,35737,56,0
,2,13166,35739,56,0
,2,13167,35741,56,0
,2,13168,35743,56,0
,2,13169,35745,56,0
,2,13170,35747,56,0
,2,13171,35749,56,0
,2,13172,35751,56,0
,2,13173,35753,56,0
,2,13174,35755,56,0
,2,13175,35757,56,0
,2,13176,35759,56,0
,2,13177,35761,56,0
,2,13178,35763,56,0
,2,13179,35765,56,0
,2,13180,35767,56,0
,2,13181,35769,56,0
,2,13182,35771,56,0
,2,13183,35773,56,0
,2,13184,35775,56,0
,2,13185,35777,56,0
,2,13186,35779,56,0
,2,13187,35781,56,0
,2,13188,35783,56,0
,2,13189,35785,56,0
,2,13190,35787,56,0
,2,13191,35789,56,0
,2,13192,35791,56,0
,2,13193,35793,56,0
,2,13194,35795,56,0
,2,13195,35797,56,0
,2,13196,35799,56,0
,2,13197,35801,56,0
,2,13198,35803,56,0
,2,13199,35805,56,0
,2,13200,35807,56,0
,2,13201,35809,56,0
,2,13202,35811,56,0
,2,13203,35813,56,0
,2,13204,35815,56,0
,2,13205,35817,56,0
,2,13206,35819,56,0
,2,13207,35821,56,0
,2,13208,35823,56,0
,2,13209,35825,56,0
,2,13210,35827,56,0
,2,13211,35829,56,0
,2,13212,35831,56,0
,2,13213,35833,56,0
,2,13214,35835,56,0
,2,13215,35837,56,0
,2,13216,35839,56,0
,2,13217,35841,56,0
,2,13218,35843,56,0
,2,13219,35845,56,0
,2,13220,35847,56,0
,2,13221,35849,56,0
,2,13222,35851,56,0
,2,13223,35853,56,0
,2,13224,35855,56,0
,2,13225,35857,56,0
,2,13226,35859,56,0
,2,13227,35861,56,0
,2,13228,35863,56,0
,2,13229,35865,56,0
,2,13230,35867,56,0
,2,13231,35869,56,0
,2,13232,35871,56,0
,2,13233,35873,56,0
,2,13234,35875,56,0
,2,13235,35877,56,0
,2,13236,35879,56,0
,2,13237,35881,56,0
,2,13238,35883,56,0
,2,13239,35885,56,0
,2,13240,35887,56,0
,2,13241,35889,56,0
,2,13242,35891,56,0
,2,13243,35893,56,0
,2,13244,35895,56,0
,2,13245,35897,56,0
,2,13246,35899,56,0
,2,13247,35901,56,0
,2,13248,35903,56,0
,2,13249,35905,56,0
,2,13250,35907,56,0
,2,13251,35909,56,0
,2,13252,35911,56,0
,2,13253,35913,56,0
,2,13254,35915,56,0
,2,13255,35917,56,0
,2,13256,35919,56,0
,2,13257,35921,56,0
,2,13258,35923,56,0
,2,13259,35925,56,0
,2,13260,35927,56,0
,2,13261,35929,56,0
,2,13262,35931,56,0
,2,13263,35933,56,0
,2,13264,35935,56,0
,2,13265,35937,56,0
,2,13266,35939,56,0
,2,13267,35941,56,0
,2,13268,35943,56,0
,2,13269,35945,56,0
,2,13270,35947,56,0
,2,13271,35949,56,0
,2,13272,35951,56,0
,2,13273,35953,56,0
,2,13274,35955,56,0
,2,13275,35957,56,0
,2,13276,35959,56,0
,2,13277,35961,56,0
,2,13278,35963,56,0
,2,13279,35965,56,0
,2,13280,35967,56,0
,2,13281,35969,56,0
,2,13282,35971,56,0
,2,13283,35973,56,0
,2,13284,35975,56,0
,2,13285,35977,56,0
,2,13286,35979,56,0
,2,13287,35981,56,0
,2,13288,35983,56,0
,2,13289,35985,56,0
,2,13290,35987,56,0
,2,13291,35989,56,0
,2,13292,35991,56,0
,2,13293,35993,56,0
,2,13294,35995,56,0
,2,13295,35997,56,0
,2,13296,35999,56,0
,2,13297,36001,56,0
,2,13298,36003,56,0
,2,13299,36005,56,0
,2,13300,36007,56,0
,2,13301,36009,56,0
,2,13302,36011,56,0
,2,13303,36013,56,0
,2,13304,36015,56,0
,2,13305,36017,56,0
,2,13306,36019,56,0
,2,13307,36021,56,0
,2,13308,36023,56,0
,2,13309,36025,56,0
,2,13310,36027,56,0
,2,13311,36029,56,0
,2,13312,36031,56,0
,2,13313,36033,56,0
,2,13314,36035,56,0
,2,13315,36037,56,0
,2,13316,36039,56,0
,2,13317,36041,56,0
,2,13318,36043,56,0
,2,13319,36045,56,0
,2,13320,36047,56,0
,2,13321,36049,56,0
,2,13322,36051,56,0
,2,13323,36053,56,0
,2,13324,36055,56,0
,2,13325,36057,56,0
,2,13326,36059,56,0
,2,13327,36061,56,0
,2,13328,36063,56,0
,2,13329,36065,56,0
,2,13330,36067,56,0
,2,13331,36069,56,0
,2,13332,36071,56,0
,2,13333,36073,56,0
,2,13334,36075,56,0
,2,13335,36077,56,0
,2,13336,36079,56,0
,2,13337,36081,56,0
,2,13338,36083,56,0
,2,13339,36085,56,0
,2,13340,36087,56,0
,2,13341,36089,56,0
,2,13342,36091,56,0
,2,13343,36093,56,0
,2,13344,36095,56,0
,2,13345,36097,56,0
,2,13346,36099,56,0
,2,13347,36101,56,0
,2,13348,36103,56,0
,2,13349,36105,56,0
,2,13350,36107,56,0
,2,13351,36109,56,0
,2,13352,36111,56,0
,2,13353,36113,56,0
,2,13354,36115,56,0
,2,13355,36117,56,0
,2,13356,36119,56,0
,2,13357,36121,56,0
,2,13358,36123,56,0
,2,13359,36125,56,0
,2,13360,36127,56,0
,2,13361,36129,56,0
,2,13362,36131,56,0
,2,13363,36133,56,0
,2,13364,36135,56,0
,2,13365,36137,56,0
,2,13366,36139,56,0
,2,13367,36141,56,0
,2,13368,36143,56,0
,2,13369,36145,56,0
,2,13370,36147,56,0
,2,13371,36149,56,0
,2,13372,36151,56,0
,2,13373,36153,56,0
,2,13374,36155,56,0
,2,13375,36157,56,0
,2,13376,36159,56,0
,2,13377,36161,56,0
,2,13378,36163,56,0
,2,13379,36165,56,0
,2,13380,36167,56,0
,2,13381,36169,56,0
,2,13382,36171,56,0
,2,13383,36173,56,0
,2,13384,36175,56,0
,2,13385,36177,56,0
,2,13386,36179,56,0
,2,13387,36181,56,0
,2,13388,36183,56,0
,2,13389,36185,56,0
,2,13390,36187,56,0
,2,13391,36189,56,0
,2,13392,36191,56,0
,2,13393,36193,56,0
,2,13394,36195,56,0
,2,13395,36197,56,0
,2,13396,36199,56,0
,2,13397,36201,56,0
,2,13398,36203,56,0
,2,13399,36205,56,0
,2,13400,36207,56,0
,2,13401,36209,56,0
,2,13402,36211,56,0
,2,13403,36213,56,0
,2,13404,36215,56,0
,2,13405,36217,56,0
,2,13406,36219,56,0
,2,13407,36221,56,0
,2,13408,36223,56,0
,2,13409,36225,56,0
,2,13410,36227,56,0
,2,13411,36229,56,0
,2,13412,36231,56,0
,2,13413,36233,56,0
,2,13414,36235,56,0
,2,13415,36237,56,0
,2,13416,36239,56,0
,2,13417,36241,56,0
,2,13418,36243,56,0
,2,13419,36245,56,0
,2,13420,36247,56,0
,2,13421,36249,56,0
,2,13422,36251,56,0
,2,13423,36253,56,0
,2,13424,36255,56,0
,2,13425,36257,56,0
,2,13426,36259,56,0
,2,13427,36261,56,0
,2,13428,36263,56,0
,2,13429,36265,56,0
,2,13430,36267,56,0
,2,13431,36269,56,0
,2,13432,36271,56,0
,2,13433,36273,56,0
,2,13434,36275,56,0
,2,13435,36277,56,0
,2,13436,36279,56,0
,2,13437,36281,56,0
,2,13438,36283,56,0
,2,13439,36285,56,0
,2,13440,36287,56,0
,2,13441,36289,56,0
,2,13442,36291,56,0
,2,13443,36293,56,0
,2,13444,36295,56,0
,2,13445,36297,56,0
,2,13446,36299,56,0
,2,13447,36301,56,0
,2,13448,36303,56,0
,2,13449,36305,56,0
,2,13450,36307,56,0
,2,13451,36309,56,0
,2,13452,36311,56,0
,2,13453,36313,56,0
,2,13454,36315,56,0
,2,13455,36317,56,0
,2,13456,36319,56,0
,2,13457,36321,56,0
,2,13458,36323,56,0
,2,13459,36325,56,0
,2,13460,36327,56,0
,2,13461,36329,56,0
,2,13462,36331,56,0
,2,13463,36333,56,0
,2,13464,36335,56,0
,2,13465,36337,56,0
,2,13466,36339,56,0
,2,13467,36341,56,0
,2,13468,36343,56,0
,2,13469,36345,56,0
,2,13470,36347,56,0
,2,13471,36349,56,0
,2,13472,36351,56,0
,2,13473,36353,56,0
,2,13474,36355,56,0
,2,13475,36357,56,0
,2,13476,36359,56,0
,2,13477,36361,56,0
,2,13478,36363,56,0
,2,13479,36365,56,0
,2,13480,36367,56,0
,2,13481,36369,56,0
,2,13482,36371,56,0
,2,13483,36373,56,0
,2,13484,36375,56,0
,2,13485,36377,56,0
,2,13486,36379,56,0
,2,13487,36381,56,0
,2,13488,36383,56,0
,2,13489,36385,56,0
,2,13490,36387,56,0
,2,13491,36389,56,0
,2,13492,36391,56,0
,2,13493,36393,56,0
,2,13494,36395,56,0
,2,13495,36397,56,0
,2,13496,36399,56,0
,2,13497,36401,56,0
,2,13498,36403,56,0
,2,13499,36405,56,0
,2,13500,36407,56,0
,2,13501,36409,56,0
,2,13502,36411,56,0
,2,13503,36413,56,0
,2,13504,36415,56,0
,2,13505,36417,56,0
,2,13506,36419,56,0
,2,13507,36421,56,0
,2,13508,36423,56,0
,2,13509,36425,56,0
,2,13510,36427,56,0
,2,13511,36429,56,0
,2,13512,36431,56,0
,2,13513,36433,56,0
,2,13514,36435,56,0
,2,13515,36437,56,0
,2,13516,36439,56,0
,2,13517,36441,56,0
,2,13518,36443,56,0
,2,13519,36445,56,0
,2,13520,36447,56,0
,2,13521,36449,56,0
,2,13522,36451,56,0
,2,13523,36453,56,0
,2,13524,36455,56,0
,2,13525,36457,56,0
,2,13526,36459,56,0
,2,13527,36461,56,0
,2,13528,36463,56,0
,2,13529,36465,56,0
,2,13530,36467,56,0
,2,13531,36469,56,0
,2,13532,36471,56,0
,2,13533,36473,56,0
,2,13534,36475,56,0
,2,13535,36477,56,0
,2,13536,36479,56,0
,2,13537,36481,56,0
,2,13538,36483,56,0
,2,13539,36485,56,0
,2,13540,36487,56,0
,2,13541,36489,56,0
,2,13542,36491,56,0
,2,13543,36493,56,0
,2,13544,36495,56,0
,2,13545,36497,56,0
,2,13546,36499,56,0
,2,13547,36501,56,0
,2,13548,36503,56,0
,2,13549,36505,56,0
,2,13550,36507,56,0
,2,13551,36509,56,0
,2,13552,36511,56,0
,2,13553,36513,56,0
,2,13554,36515,56,0
,2,13555,36517,56,0
,2,13556,36519,56,0
,2,13557,36521,56,0
,2,13558,36523,56,0
,2,13559,36525,56,0
,2,13560,36527,56,0
,2,13561,36529,56,0
,2,13562,36531,56,0
,2,13563,36533,56,0
,2,13564,36535,56,0
,2,13565,36537,56,0
,2,13566,36539,56,0
,2,13567,36541,56,0
,2,13568,36543,56,0
,2,13569,36545,56,0
,2,13570,36547,56,0
,2,13571,36549,56,0
,2,13572,36551,56,0
,2,13573,36553,56,0
,2,13574,36555,56,0
,2,13575,36557,56,0
,2,13576,36559,56,0
,2,13577,36561,56,0
,2,13578,36563,56,0
,2,13579,36565,56,0
,2,13580,36567,56,0
,2,13581,36569,56,0
,2,13582,36571,56,0
,2,13583,36573,56,0
,2,13584,36575,56,0
,2,13585,36577,56,0
,2,13586,36579,56,0
,2,13587,36581,56,0
,2,13588,36583,56,0
,2,13589,36585,56,0
,2,13590,36587,56,0
,2,13591,36589,56,0
,2,13592,36591,56,0
,2,13593,36593,56,0
,2,13594,36595,56,0
,2,13595,36597,56,0
,2,13596,36599,56,0
,2,13597,36601,56,0
,2,13598,36603,56,0
,2,13599,36605,56,0
,2,13600,36607,56,0
,2,13601,36609,56,0
,2,13602,36611,56,0
,2,13603,36613,56,0
,2,13604,36615,56,0
,2,13605,36617,56,0
,2,13606,36619,56,0
,2,13607,36621,56,0
,2,13608,36623,56,0
,2,13609,36625,56,0
,2,13610,36627,56,0
,2,13611,36629,56,0
,2,13612,36631,56,0
,2,13613,36633,56,0
,2,13614,36635,56,0
,2,13615,36637,56,0
,2,13616,36639,56,0
,2,13617,36641,56,0
,2,13618,36643,56,0
,2,13619,36645,56,0
,2,13620,36647,56,0
,2,13621,36649,56,0
,2,13622,36651,56,0
,2,13623,36653,56,0
,2,13624,36655,56,0
,2,13625,36657,56,0
,2,13626,36659,56,0
,2,13627,36661,56,0
,2,13628,36663,56,0
,2,13629,36665,56,0
,2,13630,36667,56,0
,2,13631,36669,56,0
,2,13632,36671,56,0
,2,13633,36673,56,0
,2,13634,36675,56,0
,2,13635,36677,56,0
,2,13636,36679,56,0
,2,13637,36681,56,0
,2,13638,36683,56,0
,2,13639,36685,56,0
,2,13640,36687,56,0
,2,13641,36689,56,0
,2,13642,36691,56,0
,2,13643,36693,56,0
,2,13644,36695,56,0
,2,13645,36697,56,0
,2,13646,36699,56,0
,2,13647,36701,56,0
,2,13648,36703,56,0
,2,13649,36705,56,0
,2,13650,36707,56,0
,2,13651,36709,56,0
,2,13652,36711,56,0
,2,13653,36713,56,0
,2,13654,36715,56,0
,2,13655,36717,56,0
,2,13656,36719,56,0
,2,13657,36721,56,0
,2,13658,36723,56,0
,2,13659,36725,56,0
,2,13660,36727,56,0
,2,13661,36729,56,0
,2,13662,36731,56,0
,2,13663,36733,56,0
,2,13664,36735,56,0
,2,13665,36737,56,0
,2,13666,36739,56,0
,2,13667,36741,56,0
,2,13668,36743,56,0
,2,13669,36745,56,0
,2,13670,36747,56,0
,2,13671,36749,56,0
,2,13672,36751,56,0
,2,13673,36753,56,0
,2,13674,36755,56,0
,2,13675,36757,56,0
,2,13676,36759,56,0
,2,13677,36761,56,0
,2,13678,36763,56,0
,2,13679,36765,56,0
,2,13680,36767,56,0
,2,13681,36769,56,0
,2,13682,36771,56,0
,2,13683,36773,56,0
,2,13684,36775,56,0
,2,13685,36777,56,0
,2,13686,36779,56,0
,2,13687,36781,56,0
,2,13688,36783,56,0
,2,13689,36785,56,0
,2,13690,36787,56,0
,2,13691,36789,56,0
,2,13692,36791,56,0
,2,13693,36793,56,0
,2,13694,36795,56,0
,2,13695,36797,56,0
,2,13696,36799,56,0
,2,13697,36801,56,0
,2,13698,36803,56,0
,2,13699,36805,56,0
,2,13700,36807,56,0
,2,13701,36809,56,0
,2,13702,36811,56,0
,2,13703,36813,56,0
,2,13704,36815,56,0
,2,13705,36817,56,0
,2,13706,36819,56,0
,2,13707,36821,56,0
,2,13708,36823,56,0
,2,13709,36825,56,0
,2,13710,36827,56,0
,2,13711,36829,56,0
,2,13712,36831,56,0
,2,13713,36833,56,0
,2,13714,36835,56,0
,2,13715,36837,56,0
,2,13716,36839,56,0
,2,13717,36841,56,0
,2,13718,36843,56,0
,2,13719,36845,56,0
,2,13720,36847,56,0
,2,13721,36849,56,0
,2,13722,36851,56,0
,2,13723,36853,56,0
,2,13724,36855,56,0
,2,13725,36857,56,0
,2,13726,36859,56,0
,2,13727,36861,56,0
,2,13728,36863,56,0
,2,13729,36865,56,0
,2,13730,36867,56,0
,2,13731,36869,56,0
,2,13732,36871,56,0
,2,13733,36873,56,0
,2,13734,36875,56,0
,2,13735,36877,56,0
,2,13736,36879,56,0
,2,13737,36881,56,0
,2,13738,36883,56,0
,2,13739,36885,56,0
,2,13740,36887,56,0
,2,13741,36889,56,0
,2,13742,36891,56,0
,2,13743,36893,56,0
,2,13744,36895,56,0
,2,13745,36897,56,0
,2,13746,36899,56,0
,2,13747,36901,56,0
,2,13748,36903,56,0
,2,13749,36905,56,0
,2,13750,36907,56,0
,2,13751,36909,56,0
,2,13752,36911,56,0
,2,13753,36913,56,0
,2,13754,36915,56,0
,2,13755,36917,56,0
,2,13756,36919,56,0
,2,13757,36921,56,0
,2,13758,36923,56,0
,2,13759,36925,56,0
,2,13760,36927,56,0
,2,13761,36929,56,0
,2,13762,36931,56,0
,2,13763,36933,56,0
,2,13764,36935,56,0
,2,13765,36937,56,0
,2,13766,36939,56,0
,2,13767,36941,56,0
,2,13768,36943,56,0
,2,13769,36945,56,0
,2,13770,36947,56,0
,2,13771,36949,56,0
,2,13772,36951,56,0
,2,13773,36953,56,0
,2,13774,36955,56,0
,2,13775,36957,56,0
,2,13776,36959,56,0
,2,13777,36961,56,0
,2,13778,36963,56,0
,2,13779,36965,56,0
,2,13780,36967,56,0
,2,13781,36969,56,0
,2,13782,36971,56,0
,2,13783,36973,56,0
,2,13784,36975,56,0
,2,13785,36977,56,0
,2,13786,36979,56,0
,2,13787,36981,56,0
,2,13788,36983,56,0
,2,13789,36985,56,0
,2,13790,36987,56,0
,2,13791,36989,56,0
,2,13792,36991,56,0
,2,13793,36993,56,0
,2,13794,36995,56,0
,2,13795,36997,56,0
,2,13796,36999,56,0
,2,13797,37001,56,0
,2,13798,37003,56,0
,2,13799,37005,56,0
,2,13800,37007,56,0
,2,13801,37009,56,0
,2,13802,37011,56,0
,2,13803,37013,56,0
,2,13804,37015,56,0
,2,13805,37017,56,0
,2,13806,37019,56,0
,2,13807,37021,56,0
,2,13808,37023,56,0
,2,13809,37025,56,0
,2,13810,37027,56,0
,2,13811,37029,56,0
,2,13812,37031,56,0
,2,13813,37033,56,0
,2,13814,37035,56,0
,2,13815,37037,56,0
,2,13816,37039,56,0
,2,13817,37041,56,0
,2,13818,37043,56,0
,2,13819,37045,56,0
,2,13820,37047,56,0
,2,13821,37049,56,0
,2,13822,37051,56,0
,2,13823,37053,56,0
,2,13824,37055,56,0
,2,13825,37057,56,0
,2,13826,37059,56,0
,2,13827,37061,56,0
,2,13828,37063,56,0
,2,13829,37065,56,0
,2,13830,37067,56,0
,2,13831,37069,56,0
,2,13832,37071,56,0
,2,13833,37073,56,0
,2,13834,37075,56,0
,2,13835,37077,56,0
,2,13836,37079,56,0
,2,13837,37081,56,0
,2,13838,37083,56,0
,2,13839,37085,56,0
,2,13840,37087,56,0
,2,13841,37089,56,0
,2,13842,37091,56,0
,2,13843,37093,56,0
,2,13844,37095,56,0
,2,13845,37097,56,0
,2,13846,37099,56,0
,2,13847,37101,56,0
,2,13848,37103,56,0
,2,13849,37105,56,0
,2,13850,37107,56,0
,2,13851,37109,56,0
,2,13852,37111,56,0
,2,13853,37113,56,0
,2,13854,37115,56,0
,2,13855,37117,56,0
,2,13856,37119,56,0
,2,13857,37121,56,0
,2,13858,37123,56,0
,2,13859,37125,56,0
,2,13860,37127,56,0
,2,13861,37129,56,0
,2,13862,37131,56,0
,2,13863,37133,56,0
,2,13864,37135,56,0
,2,13865,37137,56,0
,2,13866,37139,56,0
,2,13867,37141,56,0
,2,13868,37143,56,0
,2,13869,37145,56,0
,2,13870,37147,56,0
,2,13871,37149,56,0
,2,13872,37151,56,0
,2,13873,37153,56,0
,2,13874,37155,56,0
,2,13875,37157,56,0
,2,13876,37159,56,0
,2,13877,37161,56,0
,2,13878,37163,56,0
,2,13879,37165,56,0
,2,13880,37167,56,0
,2,13881,37169,56,0
,2,13882,37171,56,0
,2,13883,37173,56,0
,2,13884,37175,56,0
,2,13885,37177,56,0
,2,13886,37179,56,0
,2,13887,37181,56,0
,2,13888,37183,56,0
,2,13889,37185,56,0
,2,13890,37187,56,0
,2,13891,37189,56,0
,2,13892,37191,56,0
,2,13893,37193,56,0
,2,13894,37195,56,0
,2,13895,37197,56,0
,2,13896,37199,56,0
,2,13897,37201,56,0
,2,13898,37203,56,0
,2,13899,37205,56,0
,2,13900,37207,56,0
,2,13901,37209,56,0
,2,13902,37211,56,0
,2,13903,37213,56,0
,2,13904,37215,56,0
,2,13905,37217,56,0
,2,13906,37219,56,0
,2,13907,37221,56,0
,2,13908,37223,56,0
,2,13909,37225,56,0
,2,13910,37227,56,0
,2,13911,37229,56,0
,2,13912,37231,56,0
,2,13913,37233,56,0
,2,13914,37235,56,0
,2,13915,37237,56,0
,2,13916,37239,56,0
,2,13917,37241,56,0
,2,13918,37243,56,0
,2,13919,37245,56,0
,2,13920,37247,56,0
,2,13921,37249,56,0
,2,13922,37251,56,0
,2,13923,37253,56,0
,2,13924,37255,56,0
,2,13925,37257,56,0
,2,13926,37259,56,0
,2,13927,37261,56,0
,2,13928,37263,56,0
,2,13929,37265,56,0
,2,13930,37267,56,0
,2,13931,37269,56,0
,2,13932,37271,56,0
,2,13933,37273,56,0
,2,13934,37275,56,0
,2,13935,37277,56,0
,2,13936,37279,56,0
,2,13937,37281,56,0
,2,13938,37283,56,0
,2,13939,37285,56,0
,2,13940,37287,56,0
,2,13941,37289,56,0
,2,13942,37291,56,0
,2,13943,37293,56,0
,2,13944,37295,56,0
,2,13945,37297,56,0
,2,13946,37299,56,0
,2,13947,37301,56,0
,2,13948,37303,56,0
,2,13949,37305,56,0
,2,13950,37307,56,0
,2,13951,37309,56,0
,2,13952,37311,56,0
,2,13953,37313,56,0
,2,13954,37315,56,0
,2,13955,37317,56,0
,2,13956,37319,56,0
,2,13957,37321,56,0
,2,13958,37323,56,0
,2,13959,37325,56,0
,2,13960,37327,56,0
,2,13961,37329,56,0
,2,13962,37331,56,0
,2,13963,37333,56,0
,2,13964,37335,56,0
,2,13965,37337,56,0
,2,13966,37339,56,0
,2,13967,37341,56,0
,2,13968,37343,56,0
,2,13969,37345,56,0
,2,13970,37347,56,0
,2,13971,37349,56,0
,2,13972,37351,56,0
,2,13973,37353,56,0
,2,13974,37355,56,0
,2,13975,37357,56,0
,2,13976,37359,56,0
,2,13977,37361,56,0
,2,13978,37363,56,0
,2,13979,37365,56,0
,2,13980,37367,56,0
,2,13981,37369,56,0
,2,13982,37371,56,0
,2,13983,37373,56,0
,2,13984,37375,56,0
,2,13985,37377,56,0
,2,13986,37379,56,0
,2,13987,37381,56,0
,2,13988,37383,56,0
,2,13989,37385,56,0
,2,13990,37387,56,0
,2,13991,37389,56,0
,2,13992,37391,56,0
,2,13993,37393,56,0
,2,13994,37395,56,0
,2,13995,37397,56,0
,2,13996,37399,56,0
,2,13997,37401,56,0
,2,13998,37403,56,0
,2,13999,37405,56,0
,2,14000,37407,56,0
,2,14001,37409,56,0
,2,14002,37411,56,0
,2,14003,37413,56,0
,2,14004,37415,56,0
,2,14005,37417,56,0
,2,14006,37419,56,0
,2,14007,37421,56,0
,2,14008,37423,56,0
,2,14009,37425,56,0
,2,14010,37427,56,0
,2,14011,37429,56,0
,2,14012,37431,56,0
,2,14013,37433,56,0
,2,14014,37435,56,0
,2,14015,37437,56,0
,2,14016,37439,56,0
,2,14017,37441,56,0
,2,14018,37443,56,0
,2,14019,37445,56,0
,2,14020,37447,56,0
,2,14021,37449,56,0
,2,14022,37451,56,0
,2,14023,37453,56,0
,2,14024,37455,56,0
,2,14025,37457,56,0
,2,14026,37459,56,0
,2,14027,37461,56,0
,2,14028,37463,56,0
,2,14029,37465,56,0
,2,14030,37467,56,0
,2,14031,37469,56,0
,2,14032,37471,56,0
,2,14033,37473,56,0
,2,14034,37475,56,0
,2,14035,37477,56,0
,2,14036,37479,56,0
,2,14037,37481,56,0
,2,14038,37483,56,0
,2,14039,37485,56,0
,2,14040,37487,56,0
,2,14041,37489,56,0
,2,14042,37491,56,0
,2,14043,37493,56,0
,2,14044,37495,56,0
,2,14045,37497,56,0
,2,14046,37499,56,0
,2,14047,37501,56,0
,2,14048,37503,56,0
,2,14049,37505,56,0
,2,14050,37507,56,0
,2,14051,37509,56,0
,2,14052,37511,56,0
,2,14053,37513,56,0
,2,14054,37515,56,0
,2,14055,37517,56,0
,2,14056,37519,56,0
,2,14057,37521,56,0
,2,14058,37523,56,0
,2,14059,37525,56,0
,2,14060,37527,56,0
,2,14061,37529,56,0
,2,14062,37531,56,0
,2,14063,37533,56,0
,2,14064,37535,56,0
,2,14065,37537,56,0
,2,14066,37539,56,0
,2,14067,37541,56,0
,2,14068,37543,56,0
,2,14069,37545,56,0
,2,14070,37547,56,0
,2,14071,37549,56,0
,2,14072,37551,56,0
,2,14073,37553,56,0
,2,14074,37555,56,0
,2,14075,37557,56,0
,2,14076,37559,56,0
,2,14077,37561,56,0
,2,14078,37563,56,0
,2,14079,37565,56,0
,2,14080,37567,56,0
,2,14081,37569,56,0
,2,14082,37571,56,0
,2,14083,37573,56,0
,2,14084,37575,56,0
,2,14085,37577,56,0
,2,14086,37579,56,0
,2,14087,37581,56,0
,2,14088,37583,56,0
,2,14089,37585,56,0
,2,14090,37587,56,0
,2,14091,37589,56,0
,2,14092,37591,56,0
,2,14093,37593,56,0
,2,14094,37595,56,0
,2,14095,37597,56,0
,2,14096,37599,56,0
,2,14097,37601,56,0
,2,14098,37603,56,0
,2,14099,37605,56,0
,2,14100,37607,56,0
,2,14101,37609,56,0
,2,14102,37611,56,0
,2,14103,37613,56,0
,2,14104,37615,56,0
,2,14105,37617,56,0
,2,14106,37619,56,0
,2,14107,37621,56,0
,2,14108,37623,56,0
,2,14109,37625,56,0
,2,14110,37627,56,0
,2,14111,37629,56,0
,2,14112,37631,56,0
,2,14113,37633,56,0
,2,14114,37635,56,0
,2,14115,37637,56,0
,2,14116,37639,56,0
,2,14117,37641,56,0
,2,14118,37643,56,0
,2,14119,37645,56,0
,2,14120,37647,56,0
,2,14121,37649,56,0
,2,14122,37651,56,0
,2,14123,37653,56,0
,2,14124,37655,56,0
,2,14125,37657,56,0
,2,14126,37659,56,0
,2,14127,37661,56,0
,2,14128,37663,56,0
,2,14129,37665,56,0
,2,14130,37667,56,0
,2,14131,37669,56,0
,2,14132,37671,56,0
,2,14133,37673,56,0
,2,14134,37675,56,0
,2,14135,37677,56,0
,2,14136,37679,56,0
,2,14137,37681,56,0
,2,14138,37683,56,0
,2,14139,37685,56,0
,2,14140,37687,56,0
,2,14141,37689,56,0
,2,14142,37691,56,0
,2,14143,37693,56,0
,2,14144,37695,56,0
,2,14145,37697,56,0
,2,14146,37699,56,0
,2,14147,37701,56,0
,2,14148,37703,56,0
,2,14149,37705,56,0
,2,14150,37707,56,0
,2,14151,37709,56,0
,2,14152,37711,56,0
,2,14153,37713,56,0
,2,14154,37715,56,0
,2,14155,37717,56,0
,2,14156,37719,56,0
,2,14157,37721,56,0
,2,14158,37723,56,0
,2,14159,37725,56,0
,2,14160,37727,56,0
,2,14161,37729,56,0
,2,14162,37731,56,0
,2,14163,37733,56,0
,2,14164,37735,56,0
,2,14165,37737,56,0
,2,14166,37739,56,0
,2,14167,37741,56,0
,2,14168,37743,56,0
,2,14169,37745,56,0
,2,14170,37747,56,0
,2,14171,37749,56,0
,2,14172,37751,56,0
,2,14173,37753,56,0
,2,14174,37755,56,0
,2,14175,37757,56,0
,2,14176,37759,56,0
,2,14177,37761,56,0
,2,14178,37763,56,0
,2,14179,37765,56,0
,2,14180,37767,56,0
,2,14181,37769,56,0
,2,14182,37771,56,0
,2,14183,37773,56,0
,2,14184,37775,56,0
,2,14185,37777,56,0
,2,14186,37779,56,0
,2,14187,37781,56,0
,2,14188,37783,56,0
,2,14189,37785,56,0
,2,14190,37787,56,0
,2,14191,37789,56,0
,2,14192,37791,56,0
,2,14193,37793,56,0
,2,14194,37795,56,0
,2,14195,37797,56,0
,2,14196,37799,56,0
,2,14197,37801,56,0
,2,14198,37803,56,0
,2,14199,37805,56,0
,2,14200,37807,56,0
,2,14201,37809,56,0
,2,14202,37811,56,0
,2,14203,37813,56,0
,2,14204,37815,56,0
,2,14205,37817,56,0
,2,14206,37819,56,0
,2,14207,37821,56,0
,2,14208,37823,56,0
,2,14209,37825,56,0
,2,14210,37827,56,0
,2,14211,37829,56,0
,2,14212,37831,56,0
,2,14213,37833,56,0
,2,14214,37835,56,0
,2,14215,37837,56,0
,2,14216,37839,56,0
,2,14217,37841,56,0
,2,14218,37843,56,0
,2,14219,37845,56,0
,2,14220,37847,56,0
,2,14221,37849,56,0
,2,14222,37851,56,0
,2,14223,37853,56,0
,2,14224,37855,56,0
,2,14225,37857,56,0
,2,14226,37859,56,0
,2,14227,37861,56,0
,2,14228,37863,56,0
,2,14229,37865,56,0
,2,14230,37867,56,0
,2,14231,37869,56,0
,2,14232,37871,56,0
,2,14233,37873,56,0
,2,14234,37875,56,0
,2,14235,37877,56,0
,2,14236,37879,56,0
,2,14237,37881,56,0
,2,14238,37883,56,0
,2,14239,37885,56,0
,2,14240,37887,56,0
,2,14241,37889,56,0
,2,14242,37891,56,0
,2,14243,37893,56,0
,2,14244,37895,56,0
,2,14245,37897,56,0
,2,14246,37899,56,0
,2,14247,37901,56,0
,2,14248,37903,56,0
,2,14249,37905,56,0
,2,14250,37907,56,0
,2,14251,37909,56,0
,2,14252,37911,56,0
,2,14253,37913,56,0
,2,14254,37915,56,0
,2,14255,37917,56,0
,2,14256,37919,56,0
,2,14257,37921,56,0
,2,14258,37923,56,0
,2,14259,37925,56,0
,2,14260,37927,56,0
,2,14261,37929,56,0
,2,14262,37931,56,0
,2,14263,37933,56,0
,2,14264,37935,56,0
,2,14265,37937,56,0
,2,14266,37939,56,0
,2,14267,37941,56,0
,2,14268,37943,56,0
,2,14269,37945,56,0
,2,14270,37947,56,0
,2,14271,37949,56,0
,2,14272,37951,56,0
,2,14273,37953,56,0
,2,14274,37955,56,0
,2,14275,37957,56,0
,2,14276,37959,56,0
,2,14277,37961,56,0
,2,14278,37963,56,0
,2,14279,37965,56,0
,2,14280,37967,56,0
,2,14281,37969,56,0
,2,14282,37971,56,0
,2,14283,37973,56,0
,2,14284,37975,56,0
,2,14285,37977,56,0
,2,14286,37979,56,0
,2,14287,37981,56,0
,2,14288,37983,56,0
,2,14289,37985,56,0
,2,14290,37987,56,0
,2,14291,37989,56,0
,2,14292,37991,56,0
,2,14293,37993,56,0
,2,14294,37995,56,0
,2,14295,37997,56,0
,2,14296,37999,56,0
,2,14297,38001,56,0
,2,14298,38003,56,0
,2,14299,38005,56,0
,2,14300,38007,56,0
,2,14301,38009,56,0
,2,14302,38011,56,0
,2,14303,38013,56,0
,2,14304,38015,56,0
,2,14305,38017,56,0
,2,14306,38019,56,0
,2,14307,38021,56,0
,2,14308,38023,56,0
,2,14309,38025,56,0
,2,14310,38027,56,0
,2,14311,38029,56,0
,2,14312,38031,56,0
,2,14313,38033,56,0
,2,14314,38035,56,0
,2,14315,38037,56,0
,2,14316,38039,56,0
,2,14317,38041,56,0
,2,14318,38043,56,0
,2,14319,38045,56,0
,2,14320,38047,56,0
,2,14321,38049,56,0
,2,14322,38051,56,0
,2,14323,38053,56,0
,2,14324,38055,56,0
,2,14325,38057,56,0
,2,14326,38059,56,0
,2,14327,38061,56,0
,2,14328,38063,56,0
,2,14329,38065,56,0
,2,14330,38067,56,0
,2,14331,38069,56,0
,2,14332,38071,56,0
,2,14333,38073,56,0
,2,14334,38075,56,0
,2,14335,38077,56,0
,2,14336,38079,56,0
,2,14337,38081,56,0
,2,14338,38083,56,0
,2,14339,38085,56,0
,2,14340,38087,56,0
,2,14341,38089,56,0
,2,14342,38091,56,0
,2,14343,38093,56,0
,2,14344,38095,56,0
,2,14345,38097,56,0
,2,14346,38099,56,0
,2,14347,38101,56,0
,2,14348,38103,56,0
,2,14349,38105,56,0
,2,14350,38107,56,0
,2,14351,38109,56,0
,2,14352,38111,56,0
,2,14353,38113,56,0
,2,14354,38115,56,0
,2,14355,38117,56,0
,2,14356,38119,56,0
,2,14357,38121,56,0
,2,14358,38123,56,0
,2,14359,38125,56,0
,2,14360,38127,56,0
,2,14361,38129,56,0
,2,14362,38131,56,0
,2,14363,38133,56,0
,2,14364,38135,56,0
,2,14365,38137,56,0
,2,14366,38139,56,0
,2,14367,38141,56,0
,2,14368,38143,56,0
,2,14369,38145,56,0
,2,14370,38147,56,0
,2,14371,38149,56,0
,2,14372,38151,56,0
,2,14373,38153,56,0
,2,14374,38155,56,0
,2,14375,38157,56,0
,2,14376,38159,56,0
,2,14377,38161,56,0
,2,14378,38163,56,0
,2,14379,38165,56,0
,2,14380,38167,56,0
,2,14381,38169,56,0
,2,14382,38171,56,0
,2,14383,38173,56,0
,2,14384,38175,56,0
,2,14385,38177,56,0
,2,14386,38179,56,0
,2,14387,38181,56,0
,2,14388,38183,56,0
,2,14389,38185,56,0
,2,14390,38187,56,0
,2,14391,38189,56,0
,2,14392,38191,56,0
,2,14393,38193,56,0
,2,14394,38195,56,0
,2,14395,38197,56,0
,2,14396,38199,56,0
,2,14397,38201,56,0
,2,14398,38203,56,0
,2,14399,38205,56,0
,2,14400,38207,56,0
,2,14401,38209,56,0
,2,14402,38211,56,0
,2,14403,38213,56,0
,2,14404,38215,56,0
,2,14405,38217,56,0
,2,14406,38219,56,0
,2,14407,38221,56,0
,2,14408,38223,56,0
,2,14409,38225,56,0
,2,14410,38227,56,0
,2,14411,38229,56,0
,2,14412,38231,56,0
,2,14413,38233,56,0
,2,14414,38235,56,0
,2,14415,38237,56,0
,2,14416,38239,56,0
,2,14417,38241,56,0
,2,14418,38243,56,0
,2,14419,38245,56,0
,2,14420,38247,56,0
,2,14421,38249,56,0
,2,14422,38251,56,0
,2,14423,38253,56,0
,2,14424,38255,56,0
,2,14425,38257,56,0
,2,14426,38259,56,0
,2,14427,38261,56,0
,2,14428,38263,56,0
,2,14429,38265,56,0
,2,14430,38267,56,0
,2,14431,38269,56,0
,2,14432,38271,56,0
,2,14433,38273,56,0
,2,14434,38275,56,0
,2,14435,38277,56,0
,2,14436,38279,56,0
,2,14437,38281,56,0
,2,14438,38283,56,0
,2,14439,38285,56,0
,2,14440,38287,56,0
,2,14441,38289,56,0
,2,14442,38291,56,0
,2,14443,38293,56,0
,2,14444,38295,56,0
,2,14445,38297,56,0
,2,14446,38299,56,0
,2,14447,38301,56,0
,2,14448,38303,56,0
,2,14449,38305,56,0
,2,14450,38307,56,0
,2,14451,38309,56,0
,2,14452,38311,56,0
,2,14453,38313,56,0
,2,14454,38315,56,0
,2,14455,38317,56,0
,2,14456,38319,56,0
,2,14457,38321,56,0
,2,14458,38323,56,0
,2,14459,38325,56,0
,2,14460,38327,56,0
,2,14461,38329,56,0
,2,14462,38331,56,0
,2,14463,38333,56,0
,2,14464,38335,56,0
,2,14465,38337,56,0
,2,14466,38339,56,0
,2,14467,38341,56,0
,2,14468,38343,56,0
,2,14469,38345,56,0
,2,14470,38347,56,0
,2,14471,38349,56,0
,2,14472,38351,56,0
,2,14473,38353,56,0
,2,14474,38355,56,0
,2,14475,38357,56,0
,2,14476,38359,56,0
,2,14477,38361,56,0
,2,14478,38363,56,0
,2,14479,38365,56,0
,2,14480,38367,56,0
,2,14481,38369,56,0
,2,14482,38371,56,0
,2,14483,38373,56,0
,2,14484,38375,56,0
,2,14485,38377,56,0
,2,14486,38379,56,0
,2,14487,38381,56,0
,2,14488,38383,56,0
,2,14489,38385,56,0
,2,14490,38387,56,0
,2,14491,38389,56,0
,2,14492,38391,56,0
,2,14493,38393,56,0
,2,14494,38395,56,0
,2,14495,38397,56,0
,2,14496,38399,56,0
,2,14497,38401,56,0
,2,14498,38403,56,0
,2,14499,38405,56,0
,2,14500,38407,56,0
,2,14501,38409,56,0
,2,14502,38411,56,0
,2,14503,38413,56,0
,2,14504,38415,56,0
,2,14505,38417,56,0
,2,14506,38419,56,0
,2,14507,38421,56,0
,2,14508,38423,56,0
,2,14509,38425,56,0
,2,14510,38427,56,0
,2,14511,38429,56,0
,2,14512,38431,56,0
,2,14513,38433,56,0
,2,14514,38435,56,0
,2,14515,38437,56,0
,2,14516,38439,56,0
,2,14517,38441,56,0
,2,14518,38443,56,0
,2,14519,38445,56,0
,2,14520,38447,56,0
,2,14521,38449,56,0
,2,14522,38451,56,0
,2,14523,38453,56,0
,2,14524,38455,56,0
,2,14525,38457,56,0
,2,14526,38459,56,0
,2,14527,38461,56,0
,2,14528,38463,56,0
,2,14529,38465,56,0
,2,14530,38467,56,0
,2,14531,38469,56,0
,2,14532,38471,56,0
,2,14533,38473,56,0
,2,14534,38475,56,0
,2,14535,38477,56,0
,2,14536,38479,56,0
,2,14537,38481,56,0
,2,14538,38483,56,0
,2,14539,38485,56,0
,2,14540,38487,56,0
,2,14541,38489,56,0
,2,14542,38491,56,0
,2,14543,38493,56,0
,2,14544,38495,56,0
,2,14545,38497,56,0
,2,14546,38499,56,0
,2,14547,38501,56,0
,2,14548,38503,56,0
,2,14549,38505,56,0
,2,14550,38507,56,0
,2,14551,38509,56,0
,2,14552,38511,56,0
,2,14553,38513,56,0
,2,14554,38515,56,0
,2,14555,38517,56,0
,2,14556,38519,56,0
,2,14557,38521,56,0
,2,14558,38523,56,0
,2,14559,38525,56,0
,2,14560,38527,56,0
,2,14561,38529,56,0
,2,14562,38531,56,0
,2,14563,38533,56,0
,2,14564,38535,56,0
,2,14565,38537,56,0
,2,14566,38539,56,0
,2,14567,38541,56,0
,2,14568,38543,56,0
,2,14569,38545,56,0
,2,14570,38547,56,0
,2,14571,38549,56,0
,2,14572,38551,56,0
,2,14573,38553,56,0
,2,14574,38555,56,0
,2,14575,38557,56,0
,2,14576,38559,56,0
,2,14577,38561,56,0
,2,14578,38563,56,0
,2,14579,38565,56,0
,2,14580,38567,56,0
,2,14581,38569,56,0
,2,14582,38571,56,0
,2,14583,38573,56,0
,2,14584,38575,56,0
,2,14585,38577,56,0
,2,14586,38579,56,0
,2,14587,38581,56,0
,2,14588,38583,56,0
,2,14589,38585,56,0
,2,14590,38587,56,0
,2,14591,38589,56,0
,2,14592,38591,56,0
,2,14593,38593,56,0
,2,14594,38595,56,0
,2,14595,38597,56,0
,2,14596,38599,56,0
,2,14597,38601,56,0
,2,14598,38603,56,0
,2,14599,38605,56,0
,2,14600,38607,56,0
,2,14601,38609,56,0
,2,14602,38611,56,0
,2,14603,38613,56,0
,2,14604,38615,56,0
,2,14605,38617,56,0
,2,14606,38619,56,0
,2,14607,38621,56,0
,2,14608,38623,56,0
,2,14609,38625,56,0
,2,14610,38627,56,0
,2,14611,38629,56,0
,2,14612,38631,56,0
,2,14613,38633,56,0
,2,14614,38635,56,0
,2,14615,38637,56,0
,2,14616,38639,56,0
,2,14617,38641,56,0
,2,14618,38643,56,0
,2,14619,38645,56,0
,2,14620,38647,56,0
,2,14621,38649,56,0
,2,14622,38651,56,0
,2,14623,38653,56,0
,2,14624,38655,56,0
,2,14625,38657,56,0
,2,14626,38659,56,0
,2,14627,38661,56,0
,2,14628,38663,56,0
,2,14629,38665,56,0
,2,14630,38667,56,0
,2,14631,38669,56,0
,2,14632,38671,56,0
,2,14633,38673,56,0
,2,14634,38675,56,0
,2,14635,38677,56,0
,2,14636,38679,56,0
,2,14637,38681,56,0
,2,14638,38683,56,0
,2,14639,38685,56,0
,2,14640,38687,56,0
,2,14641,38689,56,0
,2,14642,38691,56,0
,2,14643,38693,56,0
,2,14644,38695,56,0
,2,14645,38697,56,0
,2,14646,38699,56,0
,2,14647,38701,56,0
,2,14648,38703,56,0
,2,14649,38705,56,0
,2,14650,38707,56,0
,2,14651,38709,56,0
,2,14652,38711,56,0
,2,14653,38713,56,0
,2,14654,38715,56,0
,2,14655,38717,56,0
,2,14656,38719,56,0
,2,14657,38721,56,0
,2,14658,38723,56,0
,2,14659,38725,56,0
,2,14660,38727,56,0
,2,14661,38729,56,0
,2,14662,38731,56,0
,2,14663,38733,56,0
,2,14664,38735,56,0
,2,14665,38737,56,0
,2,14666,38739,56,0
,2,14667,38741,56,0
,2,14668,38743,56,0
,2,14669,38745,56,0
,2,14670,38747,56,0
,2,14671,38749,56,0
,2,14672,38751,56,0
,2,14673,38753,56,0
,2,14674,38755,56,0
,2,14675,38757,56,0
,2,14676,38759,56,0
,2,14677,38761,56,0
,2,14678,38763,56,0
,2,14679,38765,56,0
,2,14680,38767,56,0
,2,14681,38769,56,0
,2,14682,38771,56,0
,2,14683,38773,56,0
,2,14684,38775,56,0
,2,14685,38777,56,0
,2,14686,38779,56,0
,2,14687,38781,56,0
,2,14688,38783,56,0
,2,14689,38785,56,0
,2,14690,38787,56,0
,2,14691,38789,56,0
,2,14692,38791,56,0
,2,14693,38793,56,0
,2,14694,38795,56,0
,2,14695,38797,56,0
,2,14696,38799,56,0
,2,14697,38801,56,0
,2,14698,38803,56,0
,2,14699,38805,56,0
,2,14700,38807,56,0
,2,14701,38809,56,0
,2,14702,38811,56,0
,2,14703,38813,56,0
,2,14704,38815,56,0
,2,14705,38817,56,0
,2,14706,38819,56,0
,2,14707,38821,56,0
,2,14708,38823,56,0
,2,14709,38825,56,0
,2,14710,38827,56,0
,2,14711,38829,56,0
,2,14712,38831,56,0
,2,14713,38833,56,0
,2,14714,38835,56,0
,2,14715,38837,56,0
,2,14716,38839,56,0
,2,14717,38841,56,0
,2,14718,38843,56,0
,2,14719,38845,56,0
,2,14720,38847,56,0
,2,14721,38849,56,0
,2,14722,38851,56,0
,2,14723,38853,56,0
,2,14724,38855,56,0
,2,14725,38857,56,0
,2,14726,38859,56,0
,2,14727,38861,56,0
,2,14728,38863,56,0
,2,14729,38865,56,0
,2,14730,38867,56,0
,2,14731,38869,56,0
,2,14732,38871,56,0
,2,14733,38873,56,0
,2,14734,38875,56,0
,2,14735,38877,56,0
,2,14736,38879,56,0
,2,14737,38881,56,0
,2,14738,38883,56,0
,2,14739,38885,56,0
,2,14740,38887,56,0
,2,14741,38889,56,0
,2,14742,38891,56,0
,2,14743,38893,56,0
,2,14744,38895,56,0
,2,14745,38897,56,0
,2,14746,38899,56,0
,2,14747,38901,56,0
,2,14748,38903,56,0
,2,14749,38905,56,0
,2,14750,38907,56,0
,2,14751,38909,56,0
,2,14752,38911,56,0
,2,14753,38913,56,0
,2,14754,38915,56,0
,2,14755,38917,56,0
,2,14756,38919,56,0
,2,14757,38921,56,0
,2,14758,38923,56,0
,2,14759,38925,56,0
,2,14760,38927,56,0
,2,14761,38929,56,0
,2,14762,38931,56,0
,2,14763,38933,56,0
,2,14764,38935,56,0
,2,14765,38937,56,0
,2,14766,38939,56,0
,2,14767,38941,56,0
,2,14768,38943,56,0
,2,14769,38945,56,0
,2,14770,38947,56,0
,2,14771,38949,56,0
,2,14772,38951,56,0
,2,14773,38953,56,0
,2,14774,38955,56,0
,2,14775,38957,56,0
,2,14776,38959,56,0
,2,14777,38961,56,0
,2,14778,38963,56,0
,2,14779,38965,56,0
,2,14780,38967,56,0
,2,14781,38969,56,0
,2,14782,38971,56,0
,2,14783,38973,56,0
,2,14784,38975,56,0
,2,14785,38977,56,0
,2,14786,38979,56,0
,2,14787,38981,56,0
,2,14788,38983,56,0
,2,14789,38985,56,0
,2,14790,38987,56,0
,2,14791,38989,56,0
,2,14792,38991,56,0
,2,14793,38993,56,0
,2,14794,38995,56,0
,2,14795,38997,56,0
,2,14796,38999,56,0
,2,14797,39001,56,0
,2,14798,39003,56,0
,2,14799,39005,56,0
,2,14800,39007,56,0
,2,14801,39009,56,0
,2,14802,39011,56,0
,2,14803,39013,56,0
,2,14804,39015,56,0
,2,14805,39017,56,0
,2,14806,39019,56,0
,2,14807,39021,56,0
,2,14808,39023,56,0
,2,14809,39025,56,0
,2,14810,39027,56,0
,2,14811,39029,56,0
,2,14812,39031,56,0
,2,14813,39033,56,0
,2,14814,39035,56,0
,2,14815,39037,56,0
,2,14816,39039,56,0
,2,14817,39041,56,0
,2,14818,39043,56,0
,2,14819,39045,56,0
,2,14820,39047,56,0
,2,14821,39049,56,0
,2,14822,39051,56,0
,2,14823,39053,56,0
,2,14824,39055,56,0
,2,14825,39057,56,0
,2,14826,39059,56,0
,2,14827,39061,56,0
,2,14828,39063,56,0
,2,14829,39065,56,0
,2,14830,39067,56,0
,2,14831,39069,56,0
,2,14832,39071,56,0
,2,14833,39073,56,0
,2,14834,39075,56,0
,2,14835,39077,56,0
,2,14836,39079,56,0
,2,14837,39081,56,0
,2,14838,39083,56,0
,2,14839,39085,56,0
,2,14840,39087,56,0
,2,14841,39089,56,0
,2,14842,39091,56,0
,2,14843,39093,56,0
,2,14844,39095,56,0
,2,14845,39097,56,0
,2,14846,39099,56,0
,2,14847,39101,56,0
,2,14848,39103,56,0
,2,14849,39105,56,0
,2,14850,39107,56,0
,2,14851,39109,56,0
,2,14852,39111,56,0
,2,14853,39113,56,0
,2,14854,39115,56,0
,2,14855,39117,56,0
,2,14856,39119,56,0
,2,14857,39121,56,0
,2,14858,39123,56,0
,2,14859,39125,56,0
,2,14860,39127,56,0
,2,14861,39129,56,0
,2,14862,39131,56,0
,2,14863,39133,56,0
,2,14864,39135,56,0
,2,14865,39137,56,0
,2,14866,39139,56,0
,2,14867,39141,56,0
,2,14868,39143,56,0
,2,14869,39145,56,0
,2,14870,39147,56,0
,2,14871,39149,56,0
,2,14872,39151,56,0
,2,14873,39153,56,0
,2,14874,39155,56,0
,2,14875,39157,56,0
,2,14876,39159,56,0
,2,14877,39161,56,0
,2,14878,39163,56,0
,2,14879,39165,56,0
,2,14880,39167,56,0
,2,14881,39169,56,0
,2,14882,39171,56,0
,2,14883,39173,56,0
,2,14884,39175,56,0
,2,14885,39177,56,0
,2,14886,39179,56,0
,2,14887,39181,56,0
,2,14888,39183,56,0
,2,14889,39185,56,0
,2,14890,39187,56,0
,2,14891,39189,56,0
,2,14892,39191,56,0
,2,14893,39193,56,0
,2,14894,39195,56,0
,2,14895,39197,56,0
,2,14896,39199,56,0
,2,14897,39201,56,0
,2,14898,39203,56,0
,2,14899,39205,56,0
,2,14900,39207,56,0
,2,14901,39209,56,0
,2,14902,39211,56,0
,2,14903,39213,56,0
,2,14904,39215,56,0
,2,14905,39217,56,0
,2,14906,39219,56,0
,2,14907,39221,56,0
,2,14908,39223,56,0
,2,14909,39225,56,0
,2,14910,39227,56,0
,2,14911,39229,56,0
,2,14912,39231,56,0
,2,14913,39233,56,0
,2,14914,39235,56,0
,2,14915,39237,56,0
,2,14916,39239,56,0
,2,14917,39241,56,0
,2,14918,39243,56,0
,2,14919,39245,56,0
,2,14920,39247,56,0
,2,14921,39249,56,0
,2,14922,39251,56,0
,2,14923,39253,56,0
,2,14924,39255,56,0
,2,14925,39257,56,0
,2,14926,39259,56,0
,2,14927,39261,56,0
,2,14928,39263,56,0
,2,14929,39265,56,0
,2,14930,39267,56,0
,2,14931,39269,56,0
,2,14932,39271,56,0
,2,14933,39273,56,0
,2,14934,39275,56,0
,2,14935,39277,56,0
,2,14936,39279,56,0
,2,14937,39281,56,0
,2,14938,39283,56,0
,2,14939,39285,56,0
,2,14940,39287,56,0
,2,14941,39289,56,0
,2,14942,39291,56,0
,2,14943,39293,56,0
,2,14944,39295,56,0
,2,14945,39297,56,0
,2,14946,39299,56,0
,2,14947,39301,56,0
,2,14948,39303,56,0
,2,14949,39305,56,0
,2,14950,39307,56,0
,2,14951,39309,56,0
,2,14952,39311,56,0
,2,14953,39313,56,0
,2,14954,39315,56,0
,2,14955,39317,56,0
,2,14956,39319,56,0
,2,14957,39321,56,0
,2,14958,39323,56,0
,2,14959,39325,56,0
,2,14960,39327,56,0
,2,14961,39329,56,0
,2,14962,39331,56,0
,2,14963,39333,56,0
,2,14964,39335,56,0
,2,14965,39337,56,0
,2,14966,39339,56,0
,2,14967,39341,56,0
,2,14968,39343,56,0
,2,14969,39345,56,0
,2,14970,39347,56,0
,2,14971,39349,56,0
,2,14972,39351,56,0
,2,14973,39353,56,0
,2,14974,39355,56,0
,2,14975,39357,56,0
,2,14976,39359,56,0
,2,14977,39361,56,0
,2,14978,39363,56,0
,2,14979,39365,56,0
,2,14980,39367,56,0
,2,14981,39369,56,0
,2,14982,39371,56,0
,2,14983,39373,56,0
,2,14984,39375,56,0
,2,14985,39377,56,0
,2,14986,39379,56,0
,2,14987,39381,56,0
,2,14988,39383,56,0
,2,14989,39385,56,0
,2,14990,39387,56,0
,2,14991,39389,56,0
,2,14992,39391,56,0
,2,14993,39393,56,0
,2,14994,39395,56,0
,2,14995,39397,56,0
,2,14996,39399,56,0
,2,14997,39401,56,0
,2,14998,39403,56,0
,2,14999,39405,56,0
,2,15000,39407,56,0
,2,15001,39409,56,0
,2,15002,39411,56,0
,2,15003,39413,56,0
,2,15004,39415,56,0
,2,15005,39417,56,0
,2,15006,39419,56,0
,2,15007,39421,56,0
,2,15008,39423,56,0
,2,15009,39425,56,0
,2,15010,39427,56,0
,2,15011,39429,56,0
,2,15012,39431,56,0
,2,15013,39433,56,0
,2,15014,39435,56,0
,2,15015,39437,56,0
,2,15016,39439,56,0
,2,15017,39441,56,0
,2,15018,39443,56,0
,2,15019,39445,56,0
,2,15020,39447,56,0
,2,15021,39449,56,0
,2,15022,39451,56,0
,2,15023,39453,56,0
,2,15024,39455,56,0
,2,15025,39457,56,0
,2,15026,39459,56,0
,2,15027,39461,56,0
,2,15028,39463,56,0
,2,15029,39465,56,0
,2,15030,39467,56,0
,2,15031,39469,56,0
,2,15032,39471,56,0
,2,15033,39473,56,0
,2,15034,39475,56,0
,2,15035,39477,56,0
,2,15036,39479,56,0
,2,15037,39481,56,0
,2,15038,39483,56,0
,2,15039,39485,56,0
,2,15040,39487,56,0
,2,15041,39489,56,0
,2,15042,39491,56,0
,2,15043,39493,56,0
,2,15044,39495,56,0
,2,15045,39497,56,0
,2,15046,39499,56,0
,2,15047,39501,56,0
,2,15048,39503,56,0
,2,15049,39505,56,0
,2,15050,39507,56,0
,2,15051,39509,56,0
,2,15052,39511,56,0
,2,15053,39513,56,0
,2,15054,39515,56,0
,2,15055,39517,56,0
,2,15056,39519,56,0
,2,15057,39521,56,0
,2,15058,39523,56,0
,2,15059,39525,56,0
,2,15060,39527,56,0
,2,15061,39529,56,0
,2,15062,39531,56,0
,2,15063,39533,56,0
,2,15064,39535,56,0
,2,15065,39537,56,0
,2,15066,39539,56,0
,2,15067,39541,56,0
,2,15068,39543,56,0
,2,15069,39545,56,0
,2,15070,39547,56,0
,2,15071,39549,56,0
,2,15072,39551,56,0
,2,15073,39553,56,0
,2,15074,39555,56,0
,2,15075,39557,56,0
,2,15076,39559,56,0
,2,15077,39561,56,0
,2,15078,39563,56,0
,2,15079,39565,56,0
,2,15080,39567,56,0
,2,15081,39569,56,0
,2,15082,39571,56,0
,2,15083,39573,56,0
,2,15084,39575,56,0
,2,15085,39577,56,0
,2,15086,39579,56,0
,2,15087,39581,56,0
,2,15088,39583,56,0
,2,15089,39585,56,0
,2,15090,39587,56,0
,2,15091,39589,56,0
,2,15092,39591,56,0
,2,15093,39593,56,0
,2,15094,39595,56,0
,2,15095,39597,56,0
,2,15096,39599,56,0
,2,15097,39601,56,0
,2,15098,39603,56,0
,2,15099,39605,56,0
,2,15100,39607,56,0
,2,15101,39609,56,0
,2,15102,39611,56,0
,2,15103,39613,56,0
,2,15104,39615,56,0
,2,15105,39617,56,0
,2,15106,39619,56,0
,2,15107,39621,56,0
,2,15108,39623,56,0
,2,15109,39625,56,0
,2,15110,39627,56,0
,2,15111,39629,56,0
,2,15112,39631,56,0
,2,15113,39633,56,0
,2,15114,39635,56,0
,2,15115,39637,56,0
,2,15116,39639,56,0
,2,15117,39641,56,0
,2,15118,39643,56,0
,2,15119,39645,56,0
,2,15120,39647,56,0
,2,15121,39649,56,0
,2,15122,39651,56,0
,2,15123,39653,56,0
,2,15124,39655,56,0
,2,15125,39657,56,0
,2,15126,39659,56,0
,2,15127,39661,56,0
,2,15128,39663,56,0
,2,15129,39665,56,0
,2,15130,39667,56,0
,2,15131,39669,56,0
,2,15132,39671,56,0
,2,15133,39673,56,0
,2,15134,39675,56,0
,2,15135,39677,56,0
,2,15136,39679,56,0
,2,15137,39681,56,0
,2,15138,39683,56,0
,2,15139,39685,56,0
,2,15140,39687,56,0
,2,15141,39689,56,0
,2,15142,39691,56,0
,2,15143,39693,56,0
,2,15144,39695,56,0
,2,15145,39697,56,0
,2,15146,39699,56,0
,2,15147,39701,56,0
,2,15148,39703,56,0
,2,15149,39705,56,0
,2,15150,39707,56,0
,2,15151,39709,56,0
,2,15152,39711,56,0
,2,15153,39713,56,0
,2,15154,39715,56,0
,2,15155,39717,56,0
,2,15156,39719,56,0
,2,15157,39721,56,0
,2,15158,39723,56,0
,2,15159,39725,56,0
,2,15160,39727,56,0
,2,15161,39729,56,0
,2,15162,39731,56,0
,2,15163,39733,56,0
,2,15164,39735,56,0
,2,15165,39737,56,0
,2,15166,39739,56,0
,2,15167,39741,56,0
,2,15168,39743,56,0
,2,15169,39745,56,0
,2,15170,39747,56,0
,2,15171,39749,56,0
,2,15172,39751,56,0
,2,15173,39753,56,0
,2,15174,39755,56,0
,2,15175,39757,56,0
,2,15176,39759,56,0
,2,15177,39761,56,0
,2,15178,39763,56,0
,2,15179,39765,56,0
,2,15180,39767,56,0
,2,15181,39769,56,0
,2,15182,39771,56,0
,2,15183,39773,56,0
,2,15184,39775,56,0
,2,15185,39777,56,0
,2,15186,39779,56,0
,2,15187,39781,56,0
,2,15188,39783,56,0
,2,15189,39785,56,0
,2,15190,39787,56,0
,2,15191,39789,56,0
,2,15192,39791,56,0
,2,15193,39793,56,0
,2,15194,39795,56,0
,2,15195,39797,56,0
,2,15196,39799,56,0
,2,15197,39801,56,0
,2,15198,39803,56,0
,2,15199,39805,56,0
,2,15200,39807,56,0
,2,15201,39809,56,0
,2,15202,39811,56,0
,2,15203,39813,56,0
,2,15204,39815,56,0
,2,15205,39817,56,0
,2,15206,39819,56,0
,2,15207,39821,56,0
,2,15208,39823,56,0
,2,15209,39825,56,0
,2,15210,39827,56,0
,2,15211,39829,56,0
,2,15212,39831,56,0
,2,15213,39833,56,0
,2,15214,39835,56,0
,2,15215,39837,56,0
,2,15216,39839,56,0
,2,15217,39841,56,0
,2,15218,39843,56,0
,2,15219,39845,56,0
,2,15220,39847,56,0
,2,15221,39849,56,0
,2,15222,39851,56,0
,2,15223,39853,56,0
,2,15224,39855,56,0
,2,15225,39857,56,0
,2,15226,39859,56,0
,2,15227,39861,56,0
,2,15228,39863,56,0
,2,15229,39865,56,0
,2,15230,39867,56,0
,2,15231,39869,56,0
,2,15232,39871,56,0
,2,15233,39873,56,0
,2,15234,39875,56,0
,2,15235,39877,56,0
,2,15236,39879,56,0
,2,15237,39881,56,0
,2,15238,39883,56,0
,2,15239,39885,56,0
,2,15240,39887,56,0
,2,15241,39889,56,0
,2,15242,39891,56,0
,2,15243,39893,56,0
,2,15244,39895,56,0
,2,15245,39897,56,0
,2,15246,39899,56,0
,2,15247,39901,56,0
,2,15248,39903,56,0
,2,15249,39905,56,0
,2,15250,39907,56,0
,2,15251,39909,56,0
,2,15252,39911,56,0
,2,15253,39913,56,0
,2,15254,39915,56,0
,2,15255,39917,56,0
,2,15256,39919,56,0
,2,15257,39921,56,0
,2,15258,39923,56,0
,2,15259,39925,56,0
,2,15260,39927,56,0
,2,15261,39929,56,0
,2,15262,39931,56,0
,2,15263,39933,56,0
,2,15264,39935,56,0
,2,15265,39937,56,0
,2,15266,39939,56,0
,2,15267,39941,56,0
,2,15268,39943,56,0
,2,15269,39945,56,0
,2,15270,39947,56,0
,2,15271,39949,56,0
,2,15272,39951,56,0
,2,15273,39953,56,0
,2,15274,39955,56,0
,2,15275,39957,56,0
,2,15276,39959,56,0
,2,15277,39961,56,0
,2,15278,39963,56,0
,2,15279,39965,56,0
,2,15280,39967,56,0
,2,15281,39969,56,0
,2,15282,39971,56,0
,2,15283,39973,56,0
,2,15284,39975,56,0
,2,15285,39977,56,0
,2,15286,39979,56,0
,2,15287,39981,56,0
,2,15288,39983,56,0
,2,15289,39985,56,0
,2,15290,39987,56,0
,2,15291,39989,56,0
,2,15292,39991,56,0
,2,15293,39993,56,0
,2,15294,39995,56,0
,2,15295,39997,56,0
,2,15296,39999,56,0
,2,15297,40001,56,0
,2,15298,40003,56,0
,2,15299,40005,56,0
,2,15300,40007,56,0
,2,15301,40009,56,0
,2,15302,40011,56,0
,2,15303,40013,56,0
,2,15304,40015,56,0
,2,15305,40017,56,0
,2,15306,40019,56,0
,2,15307,40021,56,0
,2,15308,40023,56,0
,2,15309,40025,56,0
,2,15310,40027,56,0
,2,15311,40029,56,0
,2,15312,40031,56,0
,2,15313,40033,56,0
,2,15314,40035,56,0
,2,15315,40037,56,0
,2,15316,40039,56,0
,2,15317,40041,56,0
,2,15318,40043,56,0
,2,15319,40045,56,0
,2,15320,40047,56,0
,2,15321,40049,56,0
,2,15322,40051,56,0
,2,15323,40053,56,0
,2,15324,40055,56,0
,2,15325,40057,56,0
,2,15326,40059,56,0
,2,15327,40061,56,0
,2,15328,40063,56,0
,2,15329,40065,56,0
,2,15330,40067,56,0
,2,15331,40069,56,0
,2,15332,40071,56,0
,2,15333,40073,56,0
,2,15334,40075,56,0
,2,15335,40077,56,0
,2,15336,40079,56,0
,2,15337,40081,56,0
,2,15338,40083,56,0
,2,15339,40085,56,0
,2,15340,40087,56,0
,2,15341,40089,56,0
,2,15342,40091,56,0
,2,15343,40093,56,0
,2,15344,40095,56,0
,2,15345,40097,56,0
,2,15346,40099,56,0
,2,15347,40101,56,0
,2,15348,40103,56,0
,2,15349,40105,56,0
,2,15350,40107,56,0
,2,15351,40109,56,0
,2,15352,40111,56,0
,2,15353,40113,56,0
,2,15354,40115,56,0
,2,15355,40117,56,0
,2,15356,40119,56,0
,2,15357,40121,56,0
,2,15358,40123,56,0
,2,15359,40125,56,0
,2,15360,40127,56,0
,2,15361,40129,56,0
,2,15362,40131,56,0
,2,15363,40133,56,0
,2,15364,40135,56,0
,2,15365,40137,56,0
,2,15366,40139,56,0
,2,15367,40141,56,0
,2,15368,40143,56,0
,2,15369,40145,56,0
,2,15370,40147,56,0
,2,15371,40149,56,0
,2,15372,40151,56,0
,2,15373,40153,56,0
,2,15374,40155,56,0
,2,15375,40157,56,0
,2,15376,40159,56,0
,2,15377,40161,56,0
,2,15378,40163,56,0
,2,15379,40165,56,0
,2,15380,40167,56,0
,2,15381,40169,56,0
,2,15382,40171,56,0
,2,15383,40173,56,0
,2,15384,40175,56,0
,2,15385,40177,56,0
,2,15386,40179,56,0
,2,15387,40181,56,0
,2,15388,40183,56,0
,2,15389,40185,56,0
,2,15390,40187,56,0
,2,15391,40189,56,0
,2,15392,40191,56,0
,2,15393,40193,56,0
,2,15394,40195,56,0
,2,15395,40197,56,0
,2,15396,40199,56,0
,2,15397,40201,56,0
,2,15398,40203,56,0
,2,15399,40205,56,0
,2,15400,40207,56,0
,2,15401,40209,56,0
,2,15402,40211,56,0
,2,15403,40213,56,0
,2,15404,40215,56,0
,2,15405,40217,56,0
,2,15406,40219,56,0
,2,15407,40221,56,0
,2,15408,40223,56,0
,2,15409,40225,56,0
,2,15410,40227,56,0
,2,15411,40229,56,0
,2,15412,40231,56,0
,2,15413,40233,56,0
,2,15414,40235,56,0
,2,15415,40237,56,0
,2,15416,40239,56,0
,2,15417,40241,56,0
,2,15418,40243,56,0
,2,15419,40245,56,0
,2,15420,40247,56,0
,2,15421,40249,56,0
,2,15422,40251,56,0
,2,15423,40253,56,0
,2,15424,40255,56,0
,2,15425,40257,56,0
,2,15426,40259,56,0
,2,15427,40261,56,0
,2,15428,40263,56,0
,2,15429,40265,56,0
,2,15430,40267,56,0
,2,15431,40269,56,0
,2,15432,40271,56,0
,2,15433,40273,56,0
,2,15434,40275,56,0
,2,15435,40277,56,0
,2,15436,40279,56,0
,2,15437,40281,56,0
,2,15438,40283,56,0
,2,15439,40285,56,0
,2,15440,40287,56,0
,2,15441,40289,56,0
,2,15442,40291,56,0
,2,15443,40293,56,0
,2,15444,40295,56,0
,2,15445,40297,56,0
,2,15446,40299,56,0
,2,15447,40301,56,0
,2,15448,40303,56,0
,2,15449,40305,56,0
,2,15450,40307,56,0
,2,15451,40309,56,0
,2,15452,40311,56,0
,2,15453,40313,56,0
,2,15454,40315,56,0
,2,15455,40317,56,0
,2,15456,40319,56,0
,2,15457,40321,56,0
,2,15458,40323,56,0
,2,15459,40325,56,0
,2,15460,40327,56,0
,2,15461,40329,56,0
,2,15462,40331,56,0
,2,15463,40333,56,0
,2,15464,40335,56,0
,2,15465,40337,56,0
,2,15466,40339,56,0
,2,15467,40341,56,0
,2,15468,40343,56,0
,2,15469,40345,56,0
,2,15470,40347,56,0
,2,15471,40349,56,0
,2,15472,40351,56,0
,2,15473,40353,56,0
,2,15474,40355,56,0
,2,15475,40357,56,0
,2,15476,40359,56,0
,2,15477,40361,56,0
,2,15478,40363,56,0
,2,15479,40365,56,0
,2,15480,40367,56,0
,2,15481,40369,56,0
,2,15482,40371,56,0
,2,15483,40373,56,0
,2,15484,40375,56,0
,2,15485,40377,56,0
,2,15486,40379,56,0
,2,15487,40381,56,0
,2,15488,40383,56,0
,2,15489,40385,56,0
,2,15490,40387,56,0
,2,15491,40389,56,0
,2,15492,40391,56,0
,2,15493,40393,56,0
,2,15494,40395,56,0
,2,15495,40397,56,0
,2,15496,40399,56,0
,2,15497,40401,56,0
,2,15498,40403,56,0
,2,15499,40405,56,0
,2,15500,40407,56,0
,2,15501,40409,56,0
,2,15502,40411,56,0
,2,15503,40413,56,0
,2,15504,40415,56,0
,2,15505,40417,56,0
,2,15506,40419,56,0
,2,15507,40421,56,0
,2,15508,40423,56,0
,2,15509,40425,56,0
,2,15510,40427,56,0
,2,15511,40429,56,0
,2,15512,40431,56,0
,2,15513,40433,56,0
,2,15514,40435,56,0
,2,15515,40437,56,0
,2,15516,40439,56,0
,2,15517,40441,56,0
,2,15518,40443,56,0
,2,15519,40445,56,0
,2,15520,40447,56,0
,2,15521,40449,56,0
,2,15522,40451,56,0
,2,15523,40453,56,0
,2,15524,40455,56,0
,2,15525,40457,56,0
,2,15526,40459,56,0
,2,15527,40461,56,0
,2,15528,40463,56,0
,2,15529,40465,56,0
,2,15530,40467,56,0
,2,15531,40469,56,0
,2,15532,40471,56,0
,2,15533,40473,56,0
,2,15534,40475,56,0
,2,15535,40477,56,0
,2,15536,40479,56,0
,2,15537,40481,56,0
,2,15538,40483,56,0
,2,15539,40485,56,0
,2,15540,40487,56,0
,2,15541,40489,56,0
,2,15542,40491,56,0
,2,15543,40493,56,0
,2,15544,40495,56,0
,2,15545,40497,56,0
,2,15546,40499,56,0
,2,15547,40501,56,0
,2,15548,40503,56,0
,2,15549,40505,56,0
,2,15550,40507,56,0
,2,15551,40509,56,0
,2,15552,40511,56,0
,2,15553,40513,56,0
,2,15554,40515,56,0
,2,15555,40517,56,0
,2,15556,40519,56,0
,2,15557,40521,56,0
,2,15558,40523,56,0
,2,15559,40525,56,0
,2,15560,40527,56,0
,2,15561,40529,56,0
,2,15562,40531,56,0
,2,15563,40533,56,0
,2,15564,40535,56,0
,2,15565,40537,56,0
,2,15566,40539,56,0
,2,15567,40541,56,0
,2,15568,40543,56,0
,2,15569,40545,56,0
,2,15570,40547,56,0
,2,15571,40549,56,0
,2,15572,40551,56,0
,2,15573,40553,56,0
,2,15574,40555,56,0
,2,15575,40557,56,0
,2,15576,40559,56,0
,2,15577,40561,56,0
,2,15578,40563,56,0
,2,15579,40565,56,0
,2,15580,40567,56,0
,2,15581,40569,56,0
,2,15582,40571,56,0
,2,15583,40573,56,0
,2,15584,40575,56,0
,2,15585,40577,56,0
,2,15586,40579,56,0
,2,15587,40581,56,0
,2,15588,40583,56,0
,2,15589,40585,56,0
,2,15590,40587,56,0
,2,15591,40589,56,0
,2,15592,40591,56,0
,2,15593,40593,56,0
,2,15594,40595,56,0
,2,15595,40597,56,0
,2,15596,40599,56,0
,2,15597,40601,56,0
,2,15598,40603,56,0
,2,15599,40605,56,0
,2,15600,40607,56,0
,2,15601,40609,56,0
,2,15602,40611,56,0
,2,15603,40613,56,0
,2,15604,40615,56,0
,2,15605,40617,56,0
,2,15606,40619,56,0
,2,15607,40621,56,0
,2,15608,40623,56,0
,2,15609,40625,56,0
,2,15610,40627,56,0
,2,15611,40629,56,0
,2,15612,40631,56,0
,2,15613,40633,56,0
,2,15614,40635,56,0
,2,15615,40637,56,0
,2,15616,40639,56,0
,2,15617,40641,56,0
,2,15618,40643,56,0
,2,15619,40645,56,0
,2,15620,40647,56,0
,2,15621,40649,56,0
,2,15622,40651,56,0
,2,15623,40653,56,0
,2,15624,40655,56,0
,2,15625,40657,56,0
,2,15626,40659,56,0
,2,15627,40661,56,0
,2,15628,40663,56,0
,2,15629,40665,56,0
,2,15630,40667,56,0
,2,15631,40669,56,0
,2,15632,40671,56,0
,2,15633,40673,56,0
,2,15634,40675,56,0
,2,15635,40677,56,0
,2,15636,40679,56,0
,2,15637,40681,56,0
,2,15638,40683,56,0
,2,15639,40685,56,0
,2,15640,40687,56,0
,2,15641,40689,56,0
,2,15642,40691,56,0
,2,15643,40693,56,0
,2,15644,40695,56,0
,2,15645,40697,56,0
,2,15646,40699,56,0
,2,15647,40701,56,0
,2,15648,40703,56,0
,2,15649,40705,56,0
,2,15650,40707,56,0
,2,15651,40709,56,0
,2,15652,40711,56,0
,2,15653,40713,56,0
,2,15654,40715,56,0
,2,15655,40717,56,0
,2,15656,40719,56,0
,2,15657,40721,56,0
,2,15658,40723,56,0
,2,15659,40725,56,0
,2,15660,40727,56,0
,2,15661,40729,56,0
,2,15662,40731,56,0
,2,15663,40733,56,0
,2,15664,40735,56,0
,2,15665,40737,56,0
,2,15666,40739,56,0
,2,15667,40741,56,0
,2,15668,40743,56,0
,2,15669,40745,56,0
,2,15670,40747,56,0
,2,15671,40749,56,0
,2,15672,40751,56,0
,2,15673,40753,56,0
,2,15674,40755,56,0
,2,15675,40757,56,0
,2,15676,40759,56,0
,2,15677,40761,56,0
,2,15678,40763,56,0
,2,15679,40765,56,0
,2,15680,40767,56,0
,2,15681,40769,56,0
,2,15682,40771,56,0
,2,15683,40773,56,0
,2,15684,40775,56,0
,2,15685,40777,56,0
,2,15686,40779,56,0
,2,15687,40781,56,0
,2,15688,40783,56,0
,2,15689,40785,56,0
,2,15690,40787,56,0
,2,15691,40789,56,0
,2,15692,40791,56,0
,2,15693,40793,56,0
,2,15694,40795,56,0
,2,15695,40797,56,0
,2,15696,40799,56,0
,2,15697,40801,56,0
,2,15698,40803,56,0
,2,15699,40805,56,0
,2,15700,40807,56,0
,2,15701,40809,56,0
,2,15702,40811,56,0
,2,15703,40813,56,0
,2,15704,40815,56,0
,2,15705,40817,56,0
,2,15706,40819,56,0
,2,15707,40821,56,0
,2,15708,40823,56,0
,2,15709,40825,56,0
,2,15710,40827,56,0
,2,15711,40829,56,0
,2,15712,40831,56,0
,2,15713,40833,56,0
,2,15714,40835,56,0
,2,15715,40837,56,0
,2,15716,40839,56,0
,2,15717,40841,56,0
,2,15718,40843,56,0
,2,15719,40845,56,0
,2,15720,40847,56,0
,2,15721,40849,56,0
,2,15722,40851,56,0
,2,15723,40853,56,0
,2,15724,40855,56,0
,2,15725,40857,56,0
,2,15726,40859,56,0
,2,15727,40861,56,0
,2,15728,40863,56,0
,2,15729,40865,56,0
,2,15730,40867,56,0
,2,15731,40869,56,0
,2,15732,40871,56,0
,2,15733,40873,56,0
,2,15734,40875,56,0
,2,15735,40877,56,0
,2,15736,40879,56,0
,2,15737,40881,56,0
,2,15738,40883,56,0
,2,15739,40885,56,0
,2,15740,40887,56,0
,2,15741,40889,56,0
,2,15742,40891,56,0
,2,15743,40893,56,0
,2,15744,40895,56,0
,2,15745,40897,56,0
,2,15746,40899,56,0
,2,15747,40901,56,0
,2,15748,40903,56,0
,2,15749,40905,56,0
,2,15750,40907,56,0
,2,15751,40909,56,0
,2,15752,40911,56,0
,2,15753,40913,56,0
,2,15754,40915,56,0
,2,15755,40917,56,0
,2,15756,40919,56,0
,2,15757,40921,56,0
,2,15758,40923,56,0
,2,15759,40925,56,0
,2,15760,40927,56,0
,2,15761,40929,56,0
,2,15762,40931,56,0
,2,15763,40933,56,0
,2,15764,40935,56,0
,2,15765,40937,56,0
,2,15766,40939,56,0
,2,15767,40941,56,0
,2,15768,40943,56,0
,2,15769,40945,56,0
,2,15770,40947,56,0
,2,15771,40949,56,0
,2,15772,40951,56,0
,2,15773,40953,56,0
,2,15774,40955,56,0
,2,15775,40957,56,0
,2,15776,40959,56,0
,2,15777,40961,56,0
,2,15778,40963,56,0
,2,15779,40965,56,0
,2,15780,40967,56,0
,2,15781,40969,56,0
,2,15782,40971,56,0
,2,15783,40973,56,0
,2,15784,40975,56,0
,2,15785,40977,56,0
,2,15786,40979,56,0
,2,15787,40981,56,0
,2,15788,40983,56,0
,2,15789,40985,56,0
,2,15790,40987,56,0
,2,15791,40989,56,0
,2,15792,40991,56,0
,2,15793,40993,56,0
,2,15794,40995,56,0
,2,15795,40997,56,0
,2,15796,40999,56,0
,2,15797,41001,56,0
,2,15798,41003,56,0
,2,15799,41005,56,0
,2,15800,41007,56,0
,2,15801,41009,56,0
,2,15802,41011,56,0
,2,15803,41013,56,0
,2,15804,41015,56,0
,2,15805,41017,56,0
,2,15806,41019,56,0
,2,15807,41021,56,0
,2,15808,41023,56,0
,2,15809,41025,56,0
,2,15810,41027,56,0
,2,15811,41029,56,0
,2,15812,41031,56,0
,2,15813,41033,56,0
,2,15814,41035,56,0
,2,15815,41037,56,0
,2,15816,41039,56,0
,2,15817,41041,56,0
,2,15818,41043,56,0
,2,15819,41045,56,0
,2,15820,41047,56,0
,2,15821,41049,56,0
,2,15822,41051,56,0
,2,15823,41053,56,0
,2,15824,41055,56,0
,2,15825,41057,56,0
,2,15826,41059,56,0
,2,15827,41061,56,0
,2,15828,41063,56,0
,2,15829,41065,56,0
,2,15830,41067,56,0
,2,15831,41069,56,0
,2,15832,41071,56,0
,2,15833,41073,56,0
,2,15834,41075,56,0
,2,15835,41077,56,0
,2,15836,41079,56,0
,2,15837,41081,56,0
,2,15838,41083,56,0
,2,15839,41085,56,0
,2,15840,41087,56,0
,2,15841,41089,56,0
,2,15842,41091,56,0
,2,15843,41093,56,0
,2,15844,41095,56,0
,2,15845,41097,56,0
,2,15846,41099,56,0
,2,15847,41101,56,0
,2,15848,41103,56,0
,2,15849,41105,56,0
,2,15850,41107,56,0
,2,15851,41109,56,0
,2,15852,41111,56,0
,2,15853,41113,56,0
,2,15854,41115,56,0
,2,15855,41117,56,0
,2,15856,41119,56,0
,2,15857,41121,56,0
,2,15858,41123,56,0
,2,15859,41125,56,0
,2,15860,41127,56,0
,2,15861,41129,56,0
,2,15862,41131,56,0
,2,15863,41133,56,0
,2,15864,41135,56,0
,2,15865,41137,56,0
,2,15866,41139,56,0
,2,15867,41141,56,0
,2,15868,41143,56,0
,2,15869,41145,56,0
,2,15870,41147,56,0
,2,15871,41149,56,0
,2,15872,41151,56,0
,2,15873,41153,56,0
,2,15874,41155,56,0
,2,15875,41157,56,0
,2,15876,41159,56,0
,2,15877,41161,56,0
,2,15878,41163,56,0
,2,15879,41165,56,0
,2,15880,41167,56,0
,2,15881,41169,56,0
,2,15882,41171,56,0
,2,15883,41173,56,0
,2,15884,41175,56,0
,2,15885,41177,56,0
,2,15886,41179,56,0
,2,15887,41181,56,0
,2,15888,41183,56,0
,2,15889,41185,56,0
,2,15890,41187,56,0
,2,15891,41189,56,0
,2,15892,41191,56,0
,2,15893,41193,56,0
,2,15894,41195,56,0
,2,15895,41197,56,0
,2,15896,41199,56,0
,2,15897,41201,56,0
,2,15898,41203,56,0
,2,15899,41205,56,0
,2,15900,41207,56,0
,2,15901,41209,56,0
,2,15902,41211,56,0
,2,15903,41213,56,0
,2,15904,41215,56,0
,2,15905,41217,56,0
,2,15906,41219,56,0
,2,15907,41221,56,0
,2,15908,41223,56,0
,2,15909,41225,56,0
,2,15910,41227,56,0
,2,15911,41229,56,0
,2,15912,41231,56,0
,2,15913,41233,56,0
,2,15914,41235,56,0
,2,15915,41237,56,0
,2,15916,41239,56,0
,2,15917,41241,56,0
,2,15918,41243,56,0
,2,15919,41245,56,0
,2,15920,41247,56,0
,2,15921,41249,56,0
,2,15922,41251,56,0
,2,15923,41253,56,0
,2,15924,41255,56,0
,2,15925,41257,56,0
,2,15926,41259,56,0
,2,15927,41261,56,0
,2,15928,41263,56,0
,2,15929,41265,56,0
,2,15930,41267,56,0
,2,15931,41269,56,0
,2,15932,41271,56,0
,2,15933,41273,56,0
,2,15934,41275,56,0
,2,15935,41277,56,0
,2,15936,41279,56,0
,2,15937,41281,56,0
,2,15938,41283,56,0
,2,15939,41285,56,0
,2,15940,41287,56,0
,2,15941,41289,56,0
,2,15942,41291,56,0
,2,15943,41293,56,0
,2,15944,41295,56,0
,2,15945,41297,56,0
,2,15946,41299,56,0
,2,15947,41301,56,0
,2,15948,41303,56,0
,2,15949,41305,56,0
,2,15950,41307,56,0
,2,15951,41309,56,0
,2,15952,41311,56,0
,2,15953,41313,56,0
,2,15954,41315,56,0
,2,15955,41317,56,0
,2,15956,41319,56,0
,2,15957,41321,56,0
,2,15958,41323,56,0
,2,15959,41325,56,0
,2,15960,41327,56,0
,2,15961,41329,56,0
,2,15962,41331,56,0
,2,15963,41333,56,0
,2,15964,41335,56,0
,2,15965,41337,56,0
,2,15966,41339,56,0
,2,15967,41341,56,0
,2,15968,41343,56,0
,2,15969,41345,56,0
,2,15970,41347,56,0
,2,15971,41349,56,0
,2,15972,41351,56,0
,2,15973,41353,56,0
,2,15974,41355,56,0
,2,15975,41357,56,0
,2,15976,41359,56,0
,2,15977,41361,56,0
,2,15978,41363,56,0
,2,15979,41365,56,0
,2,15980,41367,56,0
,2,15981,41369,56,0
,2,15982,41371,56,0
,2,15983,41373,56,0
,2,15984,41375,56,0
,2,15985,41377,56,0
,2,15986,41379,56,0
,2,15987,41381,56,0
,2,15988,41383,56,0
,2,15989,41385,56,0
,2,15990,41387,56,0
,2,15991,41389,56,0
,2,15992,41391,56,0
,2,15993,41393,56,0
,2,15994,41395,56,0
,2,15995,41397,56,0
,2,15996,41399,56,0
,2,15997,41401,56,0
,2,15998,41403,56,0
,2,15999,41405,56,0
,2,16000,41407,56,0
,2,16001,41409,56,0
,2,16002,41411,56,0
,2,16003,41413,56,0
,2,16004,41415,56,0
,2,16005,41417,56,0
,2,16006,41419,56,0
,2,16007,41421,56,0
,2,16008,41423,56,0
,2,16009,41425,56,0
,2,16010,41427,56,0
,2,16011,41429,56,0
,2,16012,41431,56,0
,2,16013,41433,56,0
,2,16014,41435,56,0
,2,16015,41437,56,0
,2,16016,41439,56,0
,2,16017,41441,56,0
,2,16018,41443,56,0
,2,16019,41445,56,0
,2,16020,41447,56,0
,2,16021,41449,56,0
,2,16022,41451,56,0
,2,16023,41453,56,0
,2,16024,41455,56,0
,2,16025,41457,56,0
,2,16026,41459,56,0
,2,16027,41461,56,0
,2,16028,41463,56,0
,2,16029,41465,56,0
,2,16030,41467,56,0
,2,16031,41469,56,0
,2,16032,41471,56,0
,2,16033,41473,56,0
,2,16034,41475,56,0
,2,16035,41477,56,0
,2,16036,41479,56,0
,2,16037,41481,56,0
,2,16038,41483,56,0
,2,16039,41485,56,0
,2,16040,41487,56,0
,2,16041,41489,56,0
,2,16042,41491,56,0
,2,16043,41493,56,0
,2,16044,41495,56,0
,2,16045,41497,56,0
,2,16046,41499,56,0
,2,16047,41501,56,0
,2,16048,41503,56,0
,2,16049,41505,56,0
,2,16050,41507,56,0
,2,16051,41509,56,0
,2,16052,41511,56,0
,2,16053,41513,56,0
,2,16054,41515,56,0
,2,16055,41517,56,0
,2,16056,41519,56,0
,2,16057,41521,56,0
,2,16058,41523,56,0
,2,16059,41525,56,0
,2,16060,41527,56,0
,2,16061,41529,56,0
,2,16062,41531,56,0
,2,16063,41533,56,0
,2,16064,41535,56,0
,2,16065,41537,56,0
,2,16066,41539,56,0
,2,16067,41541,56,0
,2,16068,41543,56,0
,2,16069,41545,56,0
,2,16070,41547,56,0
,2,16071,41549,56,0
,2,16072,41551,56,0
,2,16073,41553,56,0
,2,16074,41555,56,0
,2,16075,41557,56,0
,2,16076,41559,56,0
,2,16077,41561,56,0
,2,16078,41563,56,0
,2,16079,41565,56,0
,2,16080,41567,56,0
,2,16081,41569,56,0
,2,16082,41571,56,0
,2,16083,41573,56,0
,2,16084,41575,56,0
,2,16085,41577,56,0
,2,16086,41579,56,0
,2,16087,41581,56,0
,2,16088,41583,56,0
,2,16089,41585,56,0
,2,16090,41587,56,0
,2,16091,41589,56,0
,2,16092,41591,56,0
,2,16093,41593,56,0
,2,16094,41595,56,0
,2,16095,41597,56,0
,2,16096,41599,56,0
,2,16097,41601,56,0
,2,16098,41603,56,0
,2,16099,41605,56,0
,2,16100,41607,56,0
,2,16101,41609,56,0
,2,16102,41611,56,0
,2,16103,41613,56,0
,2,16104,41615,56,0
,2,16105,41617,56,0
,2,16106,41619,56,0
,2,16107,41621,56,0
,2,16108,41623,56,0
,2,16109,41625,56,0
,2,16110,41627,56,0
,2,16111,41629,56,0
,2,16112,41631,56,0
,2,16113,41633,56,0
,2,16114,41635,56,0
,2,16115,41637,56,0
,2,16116,41639,56,0
,2,16117,41641,56,0
,2,16118,41643,56,0
,2,16119,41645,56,0
,2,16120,41647,56,0
,2,16121,41649,56,0
,2,16122,41651,56,0
,2,16123,41653,56,0
,2,16124,41655,56,0
,2,16125,41657,56,0
,2,16126,41659,56,0
,2,16127,41661,56,0
,2,16128,41663,56,0
,2,16129,41665,56,0
,2,16130,41667,56,0
,2,16131,41669,56,0
,2,16132,41671,56,0
,2,16133,41673,56,0
,2,16134,41675,56,0
,2,16135,41677,56,0
,2,16136,41679,56,0
,2,16137,41681,56,0
,2,16138,41683,56,0
,2,16139,41685,56,0
,2,16140,41687,56,0
,2,16141,41689,56,0
,2,16142,41691,56,0
,2,16143,41693,56,0
,2,16144,41695,56,0
,2,16145,41697,56,0
,2,16146,41699,56,0
,2,16147,41701,56,0
,2,16148,41703,56,0
,2,16149,41705,56,0
,2,16150,41707,56,0
,2,16151,41709,56,0
,2,16152,41711,56,0
,2,16153,41713,56,0
,2,16154,41715,56,0
,2,16155,41717,56,0
,2,16156,41719,56,0
,2,16157,41721,56,0
,2,16158,41723,56,0
,2,16159,41725,56,0
,2,16160,41727,56,0
,2,16161,41729,56,0
,2,16162,41731,56,0
,2,16163,41733,56,0
,2,16164,41735,56,0
,2,16165,41737,56,0
,2,16166,41739,56,0
,2,16167,41741,56,0
,2,16168,41743,56,0
,2,16169,41745,56,0
,2,16170,41747,56,0
,2,16171,41749,56,0
,2,16172,41751,56,0
,2,16173,41753,56,0
,2,16174,41755,56,0
,2,16175,41757,56,0
,2,16176,41759,56,0
,2,16177,41761,56,0
,2,16178,41763,56,0
,2,16179,41765,56,0
,2,16180,41767,56,0
,2,16181,41769,56,0
,2,16182,41771,56,0
,2,16183,41773,56,0
,2,16184,41775,56,0
,2,16185,41777,56,0
,2,16186,41779,56,0
,2,16187,41781,56,0
,2,16188,41783,56,0
,2,16189,41785,56,0
,2,16190,41787,56,0
,2,16191,41789,56,0
,2,16192,41791,56,0
,2,16193,41793,56,0
,2,16194,41795,56,0
,2,16195,41797,56,0
,2,16196,41799,56,0
,2,16197,41801,56,0
,2,16198,41803,56,0
,2,16199,41805,56,0
,2,16200,41807,56,0
,2,16201,41809,56,0
,2,16202,41811,56,0
,2,16203,41813,56,0
,2,16204,41815,56,0
,2,16205,41817,56,0
,2,16206,41819,56,0
,2,16207,41821,56,0
,2,16208,41823,56,0
,2,16209,41825,56,0
,2,16210,41827,56,0
,2,16211,41829,56,0
,2,16212,41831,56,0
,2,16213,41833,56,0
,2,16214,41835,56,0
,2,16215,41837,56,0
,2,16216,41839,56,0
,2,16217,41841,56,0
,2,16218,41843,56,0
,2,16219,41845,56,0
,2,16220,41847,56,0
,2,16221,41849,56,0
,2,16222,41851,56,0
,2,16223,41853,56,0
,2,16224,41855,56,0
,2,16225,41857,56,0
,2,16226,41859,56,0
,2,16227,41861,56,0
,2,16228,41863,56,0
,2,16229,41865,56,0
,2,16230,41867,56,0
,2,16231,41869,56,0
,2,16232,41871,56,0
,2,16233,41873,56,0
,2,16234,41875,56,0
,2,16235,41877,56,0
,2,16236,41879,56,0
,2,16237,41881,56,0
,2,16238,41883,56,0
,2,16239,41885,56,0
,2,16240,41887,56,0
,2,16241,41889,56,0
,2,16242,41891,56,0
,2,16243,41893,56,0
,2,16244,41895,56,0
,2,16245,41897,56,0
,2,16246,41899,56,0
,2,16247,41901,56,0
,2,16248,41903,56,0
,2,16249,41905,56,0
,2,16250,41907,56,0
,2,16251,41909,56,0
,2,16252,41911,56,0
,2,16253,41913,56,0
,2,16254,41915,56,0
,2,16255,41917,56,0
,2,16256,41919,56,0
,2,16257,41921,56,0
,2,16258,41923,56,0
,2,16259,41925,56,0
,2,16260,41927,56,0
,2,16261,41929,56,0
,2,16262,41931,56,0
,2,16263,41933,56,0
,2,16264,41935,56,0
,2,16265,41937,56,0
,2,16266,41939,56,0
,2,16267,41941,56,0
,2,16268,41943,56,0
,2,16269,41945,56,0
,2,16270,41947,56,0
,2,16271,41949,56,0
,2,16272,41951,56,0
,2,16273,41953,56,0
,2,16274,41955,56,0
,2,16275,41957,56,0
,2,16276,41959,56,0
,2,16277,41961,56,0
,2,16278,41963,56,0
,2,16279,41965,56,0
,2,16280,41967,56,0
,2,16281,41969,56,0
,2,16282,41971,56,0
,2,16283,41973,56,0
,2,16284,41975,56,0
,2,16285,41977,56,0
,2,16286,41979,56,0
,2,16287,41981,56,0
,2,16288,41983,56,0
,2,16289,41985,56,0
,2,16290,41987,56,0
,2,16291,41989,56,0
,2,16292,41991,56,0
,2,16293,41993,56,0
,2,16294,41995,56,0
,2,16295,41997,56,0
,2,16296,41999,56,0
,2,16297,42001,56,0
,2,16298,42003,56,0
,2,16299,42005,56,0
,2,16300,42007,56,0
,2,16301,42009,56,0
,2,16302,42011,56,0
,2,16303,42013,56,0
,2,16304,42015,56,0
,2,16305,42017,56,0
,2,16306,42019,56,0
,2,16307,42021,56,0
,2,16308,42023,56,0
,2,16309,42025,56,0
,2,16310,42027,56,0
,2,16311,42029,56,0
,2,16312,42031,56,0
,2,16313,42033,56,0
,2,16314,42035,56,0
,2,16315,42037,56,0
,2,16316,42039,56,0
,2,16317,42041,56,0
,2,16318,42043,56,0
,2,16319,42045,56,0
,2,16320,42047,56,0
,2,16321,42049,56,0
,2,16322,42051,56,0
,2,16323,42053,56,0
,2,16324,42055,56,0
,2,16325,42057,56,0
,2,16326,42059,56,0
,2,16327,42061,56,0
,2,16328,42063,56,0
,2,16329,42065,56,0
,2,16330,42067,56,0
,2,16331,42069,56,0
,2,16332,42071,56,0
,2,16333,42073,56,0
,2,16334,42075,56,0
,2,16335,42077,56,0
,2,16336,42079,56,0
,2,16337,42081,56,0
,2,16338,42083,56,0
,2,16339,42085,56,0
,2,16340,42087,56,0
,2,16341,42089,56,0
,2,16342,42091,56,0
,2,16343,42093,56,0
,2,16344,42095,56,0
,2,16345,42097,56,0
,2,16346,42099,56,0
,2,16347,42101,56,0
,2,16348,42103,56,0
,2,16349,42105,56,0
,2,16350,42107,56,0
,2,16351,42109,56,0
,2,16352,42111,56,0
,2,16353,42113,56,0
,2,16354,42115,56,0
,2,16355,42117,56,0
,2,16356,42119,56,0
,2,16357,42121,56,0
,2,16358,42123,56,0
,2,16359,42125,56,0
,2,16360,42127,56,0
,2,16361,42129,56,0
,2,16362,42131,56,0
,2,16363,42133,56,0
,2,16364,42135,56,0
,2,16365,42137,56,0
,2,16366,42139,56,0
,2,16367,42141,56,0
,2,16368,42143,56,0
,2,16369,42145,56,0
,2,16370,42147,56,0
,2,16371,42149,56,0
,2,16372,42151,56,0
,2,16373,42153,56,0
,2,16374,42155,56,0
,2,16375,42157,56,0
,2,16376,42159,56,0
,2,16377,42161,56,0
,2,16378,42163,56,0
,2,16379,42165,56,0
,2,16380,42167,56,0
,2,16381,42169,56,0
,2,16382,42171,56,0
,2,16383,42173,56,0
,2,16384,42175,56,0
,2,16385,42177,56,0
,2,16386,42179,56,0
,2,16387,42181,56,0
,2,16388,42183,56,0
,2,16389,42185,56,0
,2,16390,42187,56,0
,2,16391,42189,56,0
,2,16392,42191,56,0
,2,16393,42193,56,0
,2,16394,42195,56,0
,2,16395,42197,56,0
,2,16396,42199,56,0
,2,16397,42201,56,0
,2,16398,42203,56,0
,2,16399,42205,56,0
,2,16400,42207,56,0
,2,16401,42209,56,0
,2,16402,42211,56,0
,2,16403,42213,56,0
,2,16404,42215,56,0
,2,16405,42217,56,0
,2,16406,42219,56,0
,2,16407,42221,56,0
,2,16408,42223,56,0
,2,16409,42225,56,0
,2,16410,42227,56,0
,2,16411,42229,56,0
,2,16412,42231,56,0
,2,16413,42233,56,0
,2,16414,42235,56,0
,2,16415,42237,56,0
,2,16416,42239,56,0
,2,16417,42241,56,0
,2,16418,42243,56,0
,2,16419,42245,56,0
,2,16420,42247,56,0
,2,16421,42249,56,0
,2,16422,42251,56,0
,2,16423,42253,56,0
,2,16424,42255,56,0
,2,16425,42257,56,0
,2,16426,42259,56,0
,2,16427,42261,56,0
,2,16428,42263,56,0
,2,16429,42265,56,0
,2,16430,42267,56,0
,2,16431,42269,56,0
,2,16432,42271,56,0
,2,16433,42273,56,0
,2,16434,42275,56,0
,2,16435,42277,56,0
,2,16436,42279,56,0
,2,16437,42281,56,0
,2,16438,42283,56,0
,2,16439,42285,56,0
,2,16440,42287,56,0
,2,16441,42289,56,0
,2,16442,42291,56,0
,2,16443,42293,56,0
,2,16444,42295,56,0
,2,16445,42297,56,0
,2,16446,42299,56,0
,2,16447,42301,56,0
,2,16448,42303,56,0
,2,16449,42305,56,0
,2,16450,42307,56,0
,2,16451,42309,56,0
,2,16452,42311,56,0
,2,16453,42313,56,0
,2,16454,42315,56,0
,2,16455,42317,56,0
,2,16456,42319,56,0
,2,16457,42321,56,0
,2,16458,42323,56,0
,2,16459,42325,56,0
,2,16460,42327,56,0
,2,16461,42329,56,0
,2,16462,42331,56,0
,2,16463,42333,56,0
,2,16464,42335,56,0
,2,16465,42337,56,0
,2,16466,42339,56,0
,2,16467,42341,56,0
,2,16468,42343,56,0
,2,16469,42345,56,0
,2,16470,42347,56,0
,2,16471,42349,56,0
,2,16472,42351,56,0
,2,16473,42353,56,0
,2,16474,42355,56,0
,2,16475,42357,56,0
,2,16476,42359,56,0
,2,16477,42361,56,0
,2,16478,42363,56,0
,2,16479,42365,56,0
,2,16480,42367,56,0
,2,16481,42369,56,0
,2,16482,42371,56,0
,2,16483,42373,56,0
,2,16484,42375,56,0
,2,16485,42377,56,0
,2,16486,42379,56,0
,2,16487,42381,56,0
,2,16488,42383,56,0
,2,16489,42385,56,0
,2,16490,42387,56,0
,2,16491,42389,56,0
,2,16492,42391,56,0
,2,16493,42393,56,0
,2,16494,42395,56,0
,2,16495,42397,56,0
,2,16496,42399,56,0
,2,16497,42401,56,0
,2,16498,42403,56,0
,2,16499,42405,56,0
,2,16500,42407,56,0
,2,16501,42409,56,0
,2,16502,42411,56,0
,2,16503,42413,56,0
,2,16504,42415,56,0
,2,16505,42417,56,0
,2,16506,42419,56,0
,2,16507,42421,56,0
,2,16508,42423,56,0
,2,16509,42425,56,0
,2,16510,42427,56,0
,2,16511,42429,56,0
,2,16512,42431,56,0
,2,16513,42433,56,0
,2,16514,42435,56,0
,2,16515,42437,56,0
,2,16516,42439,56,0
,2,16517,42441,56,0
,2,16518,42443,56,0
,2,16519,42445,56,0
,2,16520,42447,56,0
,2,16521,42449,56,0
,2,16522,42451,56,0
,2,16523,42453,56,0
,2,16524,42455,56,0
,2,16525,42457,56,0
,2,16526,42459,56,0
,2,16527,42461,56,0
,2,16528,42463,56,0
,2,16529,42465,56,0
,2,16530,42467,56,0
,2,16531,42469,56,0
,2,16532,42471,56,0
,2,16533,42473,56,0
,2,16534,42475,56,0
,2,16535,42477,56,0
,2,16536,42479,56,0
,2,16537,42481,56,0
,2,16538,42483,56,0
,2,16539,42485,56,0
,2,16540,42487,56,0
,2,16541,42489,56,0
,2,16542,42491,56,0
,2,16543,42493,56,0
,2,16544,42495,56,0
,2,16545,42497,56,0
,2,16546,42499,56,0
,2,16547,42501,56,0
,2,16548,42503,56,0
,2,16549,42505,56,0
,2,16550,42507,56,0
,2,16551,42509,56,0
,2,16552,42511,56,0
,2,16553,42513,56,0
,2,16554,42515,56,0
,2,16555,42517,56,0
,2,16556,42519,56,0
,2,16557,42521,56,0
,2,16558,42523,56,0
,2,16559,42525,56,0
,2,16560,42527,56,0
,2,16561,42529,56,0
,2,16562,42531,56,0
,2,16563,42533,56,0
,2,16564,42535,56,0
,2,16565,42537,56,0
,2,16566,42539,56,0
,2,16567,42541,56,0
,2,16568,42543,56,0
,2,16569,42545,56,0
,2,16570,42547,56,0
,2,16571,42549,56,0
,2,16572,42551,56,0
,2,16573,42553,56,0
,2,16574,42555,56,0
,2,16575,42557,56,0
,2,16576,42559,56,0
,2,16577,42561,56,0
,2,16578,42563,56,0
,2,16579,42565,56,0
,2,16580,42567,56,0
,2,16581,42569,56,0
,2,16582,42571,56,0
,2,16583,42573,56,0
,2,16584,42575,56,0
,2,16585,42577,56,0
,2,16586,42579,56,0
,2,16587,42581,56,0
,2,16588,42583,56,0
,2,16589,42585,56,0
,2,16590,42587,56,0
,2,16591,42589,56,0
,2,16592,42591,56,0
,2,16593,42593,56,0
,2,16594,42595,56,0
,2,16595,42597,56,0
,2,16596,42599,56,0
,2,16597,42601,56,0
,2,16598,42603,56,0
,2,16599,42605,56,0
,2,16600,42607,56,0
,2,16601,42609,56,0
,2,16602,42611,56,0
,2,16603,42613,56,0
,2,16604,42615,56,0
,2,16605,42617,56,0
,2,16606,42619,56,0
,2,16607,42621,56,0
,2,16608,42623,56,0
,2,16609,42625,56,0
,2,16610,42627,56,0
,2,16611,42629,56,0
,2,16612,42631,56,0
,2,16613,42633,56,0
,2,16614,42635,56,0
,2,16615,42637,56,0
,2,16616,42639,56,0
,2,16617,42641,56,0
,2,16618,42643,56,0
,2,16619,42645,56,0
,2,16620,42647,56,0
,2,16621,42649,56,0
,2,16622,42651,56,0
,2,16623,42653,56,0
,2,16624,42655,56,0
,2,16625,42657,56,0
,2,16626,42659,56,0
,2,16627,42661,56,0
,2,16628,42663,56,0
,2,16629,42665,56,0
,2,16630,42667,56,0
,2,16631,42669,56,0
,2,16632,42671,56,0
,2,16633,42673,56,0
,2,16634,42675,56,0
,2,16635,42677,56,0
,2,16636,42679,56,0
,2,16637,42681,56,0
,2,16638,42683,56,0
,2,16639,42685,56,0
,2,16640,42687,56,0
,2,16641,42689,56,0
,2,16642,42691,56,0
,2,16643,42693,56,0
,2,16644,42695,56,0
,2,16645,42697,56,0
,2,16646,42699,56,0
,2,16647,42701,56,0
,2,16648,42703,56,0
,2,16649,42705,56,0
,2,16650,42707,56,0
,2,16651,42709,56,0
,2,16652,42711,56,0
,2,16653,42713,56,0
,2,16654,42715,56,0
,2,16655,42717,56,0
,2,16656,42719,56,0
,2,16657,42721,56,0
,2,16658,42723,56,0
,2,16659,42725,56,0
,2,16660,42727,56,0
,2,16661,42729,56,0
,2,16662,42731,56,0
,2,16663,42733,56,0
,2,16664,42735,56,0
,2,16665,42737,56,0
,2,16666,42739,56,0
,2,16667,42741,56,0
,2,16668,42743,56,0
,2,16669,42745,56,0
,2,16670,42747,56,0
,2,16671,42749,56,0
,2,16672,42751,56,0
,2,16673,42753,56,0
,2,16674,42755,56,0
,2,16675,42757,56,0
,2,16676,42759,56,0
,2,16677,42761,56,0
,2,16678,42763,56,0
,2,16679,42765,56,0
,2,16680,42767,56,0
,2,16681,42769,56,0
,2,16682,42771,56,0
,2,16683,42773,56,0
,2,16684,42775,56,0
,2,16685,42777,56,0
,2,16686,42779,56,0
,2,16687,42781,56,0
,2,16688,42783,56,0
,2,16689,42785,56,0
,2,16690,42787,56,0
,2,16691,42789,56,0
,2,16692,42791,56,0
,2,16693,42793,56,0
,2,16694,42795,56,0
,2,16695,42797,56,0
,2,16696,42799,56,0
,2,16697,42801,56,0
,2,16698,42803,56,0
,2,16699,42805,56,0
,2,16700,42807,56,0
,2,16701,42809,56,0
,2,16702,42811,56,0
,2,16703,42813,56,0
,2,16704,42815,56,0
,2,16705,42817,56,0
,2,16706,42819,56,0
,2,16707,42821,56,0
,2,16708,42823,56,0
,2,16709,42825,56,0
,2,16710,42827,56,0
,2,16711,42829,56,0
,2,16712,42831,56,0
,2,16713,42833,56,0
,2,16714,42835,56,0
,2,16715,42837,56,0
,2,16716,42839,56,0
,2,16717,42841,56,0
,2,16718,42843,56,0
,2,16719,42845,56,0
,2,16720,42847,56,0
,2,16721,42849,56,0
,2,16722,42851,56,0
,2,16723,42853,56,0
,2,16724,42855,56,0
,2,16725,42857,56,0
,2,16726,42859,56,0
,2,16727,42861,56,0
,2,16728,42863,56,0
,2,16729,42865,56,0
,2,16730,42867,56,0
,2,16731,42869,56,0
,2,16732,42871,56,0
,2,16733,42873,56,0
,2,16734,42875,56,0
,2,16735,42877,56,0
,2,16736,42879,56,0
,2,16737,42881,56,0
,2,16738,42883,56,0
,2,16739,42885,56,0
,2,16740,42887,56,0
,2,16741,42889,56,0
,2,16742,42891,56,0
,2,16743,42893,56,0
,2,16744,42895,56,0
,2,16745,42897,56,0
,2,16746,42899,56,0
,2,16747,42901,56,0
,2,16748,42903,56,0
,2,16749,42905,56,0
,2,16750,42907,56,0
,2,16751,42909,56,0
,2,16752,42911,56,0
,2,16753,42913,56,0
,2,16754,42915,56,0
,2,16755,42917,56,0
,2,16756,42919,56,0
,2,16757,42921,56,0
,2,16758,42923,56,0
,2,16759,42925,56,0
,2,16760,42927,56,0
,2,16761,42929,56,0
,2,16762,42931,56,0
,2,16763,42933,56,0
,2,16764,42935,56,0
,2,16765,42937,56,0
,2,16766,42939,56,0
,2,16767,42941,56,0
,2,16768,42943,56,0
,2,16769,42945,56,0
,2,16770,42947,56,0
,2,16771,42949,56,0
,2,16772,42951,56,0
,2,16773,42953,56,0
,2,16774,42955,56,0
,2,16775,42957,56,0
,2,16776,42959,56,0
,2,16777,42961,56,0
,2,16778,42963,56,0
,2,16779,42965,56,0
,2,16780,42967,56,0
,2,16781,42969,56,0
,2,16782,42971,56,0
,2,16783,42973,56,0
,2,16784,42975,56,0
,2,16785,42977,56,0
,2,16786,42979,56,0
,2,16787,42981,56,0
,2,16788,42983,56,0
,2,16789,42985,56,0
,2,16790,42987,56,0
,2,16791,42989,56,0
,2,16792,42991,56,0
,2,16793,42993,56,0
,2,16794,42995,56,0
,2,16795,42997,56,0
,2,16796,42999,56,0
,2,16797,43001,56,0
,2,16798,43003,56,0
,2,16799,43005,56,0
,2,16800,43007,56,0
,2,16801,43009,56,0
,2,16802,43011,56,0
,2,16803,43013,56,0
,2,16804,43015,56,0
,2,16805,43017,56,0
,2,16806,43019,56,0
,2,16807,43021,56,0
,2,16808,43023,56,0
,2,16809,43025,56,0
,2,16810,43027,56,0
,2,16811,43029,56,0
,2,16812,43031,56,0
,2,16813,43033,56,0
,2,16814,43035,56,0
,2,16815,43037,56,0
,2,16816,43039,56,0
,2,16817,43041,56,0
,2,16818,43043,56,0
,2,16819,43045,56,0
,2,16820,43047,56,0
,2,16821,43049,56,0
,2,16822,43051,56,0
,2,16823,43053,56,0
,2,16824,43055,56,0
,2,16825,43057,56,0
,2,16826,43059,56,0
,2,16827,43061,56,0
,2,16828,43063,56,0
,2,16829,43065,56,0
,2,16830,43067,56,0
,2,16831,43069,56,0
,2,16832,43071,56,0
,2,16833,43073,56,0
,2,16834,43075,56,0
,2,16835,43077,56,0
,2,16836,43079,56,0
,2,16837,43081,56,0
,2,16838,43083,56,0
,2,16839,43085,56,0
,2,16840,43087,56,0
,2,16841,43089,56,0
,2,16842,43091,56,0
,2,16843,43093,56,0
,2,16844,43095,56,0
,2,16845,43097,56,0
,2,16846,43099,56,0
,2,16847,43101,56,0
,2,16848,43103,56,0
,2,16849,43105,56,0
,2,16850,43107,56,0
,2,16851,43109,56,0
,2,16852,43111,56,0
,2,16853,43113,56,0
,2,16854,43115,56,0
,2,16855,43117,56,0
,2,16856,43119,56,0
,2,16857,43121,56,0
,2,16858,43123,56,0
,2,16859,43125,56,0
,2,16860,43127,56,0
,2,16861,43129,56,0
,2,16862,43131,56,0
,2,16863,43133,56,0
,2,16864,43135,56,0
,2,16865,43137,56,0
,2,16866,43139,56,0
,2,16867,43141,56,0
,2,16868,43143,56,0
,2,16869,43145,56,0
,2,16870,43147,56,0
,2,16871,43149,56,0
,2,16872,43151,56,0
,2,16873,43153,56,0
,2,16874,43155,56,0
,2,16875,43157,56,0
,2,16876,43159,56,0
,2,16877,43161,56,0
,2,16878,43163,56,0
,2,16879,43165,56,0
,2,16880,43167,56,0
,2,16881,43169,56,0
,2,16882,43171,56,0
,2,16883,43173,56,0
,2,16884,43175,56,0
,2,16885,43177,56,0
,2,16886,43179,56,0
,2,16887,43181,56,0
,2,16888,43183,56,0
,2,16889,43185,56,0
,2,16890,43187,56,0
,2,16891,43189,56,0
,2,16892,43191,56,0
,2,16893,43193,56,0
,2,16894,43195,56,0
,2,16895,43197,56,0
,2,16896,43199,56,0
,2,16897,43201,56,0
,2,16898,43203,56,0
,2,16899,43205,56,0
,2,16900,43207,56,0
,2,16901,43209,56,0
,2,16902,43211,56,0
,2,16903,43213,56,0
,2,16904,43215,56,0
,2,16905,43217,56,0
,2,16906,43219,56,0
,2,16907,43221,56,0
,2,16908,43223,56,0
,2,16909,43225,56,0
,2,16910,43227,56,0
,2,16911,43229,56,0
,2,16912,43231,56,0
,2,16913,43233,56,0
,2,16914,43235,56,0
,2,16915,43237,56,0
,2,16916,43239,56,0
,2,16917,43241,56,0
,2,16918,43243,56,0
,2,16919,43245,56,0
,2,16920,43247,56,0
,2,16921,43249,56,0
,2,16922,43251,56,0
,2,16923,43253,56,0
,2,16924,43255,56,0
,2,16925,43257,56,0
,2,16926,43259,56,0
,2,16927,43261,56,0
,2,16928,43263,56,0
,2,16929,43265,56,0
,2,16930,43267,56,0
,2,16931,43269,56,0
,2,16932,43271,56,0
,2,16933,43273,56,0
,2,16934,43275,56,0
,2,16935,43277,56,0
,2,16936,43279,56,0
,2,16937,43281,56,0
,2,16938,43283,56,0
,2,16939,43285,56,0
,2,16940,43287,56,0
,2,16941,43289,56,0
,2,16942,43291,56,0
,2,16943,43293,56,0
,2,16944,43295,56,0
,2,16945,43297,56,0
,2,16946,43299,56,0
,2,16947,43301,56,0
,2,16948,43303,56,0
,2,16949,43305,56,0
,2,16950,43307,56,0
,2,16951,43309,56,0
,2,16952,43311,56,0
,2,16953,43313,56,0
,2,16954,43315,56,0
,2,16955,43317,56,0
,2,16956,43319,56,0
,2,16957,43321,56,0
,2,16958,43323,56,0
,2,16959,43325,56,0
,2,16960,43327,56,0
,2,16961,43329,56,0
,2,16962,43331,56,0
,2,16963,43333,56,0
,2,16964,43335,56,0
,2,16965,43337,56,0
,2,16966,43339,56,0
,2,16967,43341,56,0
,2,16968,43343,56,0
,2,16969,43345,56,0
,2,16970,43347,56,0
,2,16971,43349,56,0
,2,16972,43351,56,0
,2,16973,43353,56,0
,2,16974,43355,56,0
,2,16975,43357,56,0
,2,16976,43359,56,0
,2,16977,43361,56,0
,2,16978,43363,56,0
,2,16979,43365,56,0
,2,16980,43367,56,0
,2,16981,43369,56,0
,2,16982,43371,56,0
,2,16983,43373,56,0
,2,16984,43375,56,0
,2,16985,43377,56,0
,2,16986,43379,56,0
,2,16987,43381,56,0
,2,16988,43383,56,0
,2,16989,43385,56,0
,2,16990,43387,56,0
,2,16991,43389,56,0
,2,16992,43391,56,0
,2,16993,43393,56,0
,2,16994,43395,56,0
,2,16995,43397,56,0
,2,16996,43399,56,0
,2,16997,43401,56,0
,2,16998,43403,56,0
,2,16999,43405,56,0
,2,17000,43407,56,0
,2,17001,43409,56,0
,2,17002,43411,56,0
,2,17003,43413,56,0
,2,17004,43415,56,0
,2,17005,43417,56,0
,2,17006,43419,56,0
,2,17007,43421,56,0
,2,17008,43423,56,0
,2,17009,43425,56,0
,2,17010,43427,56,0
,2,17011,43429,56,0
,2,17012,43431,56,0
,2,17013,43433,56,0
,2,17014,43435,56,0
,2,17015,43437,56,0
,2,17016,43439,56,0
,2,17017,43441,56,0
,2,17018,43443,56,0
,2,17019,43445,56,0
,2,17020,43447,56,0
,2,17021,43449,56,0
,2,17022,43451,56,0
,2,17023,43453,56,0
,2,17024,43455,56,0
,2,17025,43457,56,0
,2,17026,43459,56,0
,2,17027,43461,56,0
,2,17028,43463,56,0
,2,17029,43465,56,0
,2,17030,43467,56,0
,2,17031,43469,56,0
,2,17032,43471,56,0
,2,17033,43473,56,0
,2,17034,43475,56,0
,2,17035,43477,56,0
,2,17036,43479,56,0
,2,17037,43481,56,0
,2,17038,43483,56,0
,2,17039,43485,56,0
,2,17040,43487,56,0
,2,17041,43489,56,0
,2,17042,43491,56,0
,2,17043,43493,56,0
,2,17044,43495,56,0
,2,17045,43497,56,0
,2,17046,43499,56,0
,2,17047,43501,56,0
,2,17048,43503,56,0
,2,17049,43505,56,0
,2,17050,43507,56,0
,2,17051,43509,56,0
,2,17052,43511,56,0
,2,17053,43513,56,0
,2,17054,43515,56,0
,2,17055,43517,56,0
,2,17056,43519,56,0
,2,17057,43521,56,0
,2,17058,43523,56,0
,2,17059,43525,56,0
,2,17060,43527,56,0
,2,17061,43529,56,0
,2,17062,43531,56,0
,2,17063,43533,56,0
,2,17064,43535,56,0
,2,17065,43537,56,0
,2,17066,43539,56,0
,2,17067,43541,56,0
,2,17068,43543,56,0
,2,17069,43545,56,0
,2,17070,43547,56,0
,2,17071,43549,56,0
,2,17072,43551,56,0
,2,17073,43553,56,0
,2,17074,43555,56,0
,2,17075,43557,56,0
,2,17076,43559,56,0
,2,17077,43561,56,0
,2,17078,43563,56,0
,2,17079,43565,56,0
,2,17080,43567,56,0
,2,17081,43569,56,0
,2,17082,43571,56,0
,2,17083,43573,56,0
,2,17084,43575,56,0
,2,17085,43577,56,0
,2,17086,43579,56,0
,2,17087,43581,56,0
,2,17088,43583,56,0
,2,17089,43585,56,0
,2,17090,43587,56,0
,2,17091,43589,56,0
,2,17092,43591,56,0
,2,17093,43593,56,0
,2,17094,43595,56,0
,2,17095,43597,56,0
,2,17096,43599,56,0
,2,17097,43601,56,0
,2,17098,43603,56,0
,2,17099,43605,56,0
,2,17100,43607,56,0
,2,17101,43609,56,0
,2,17102,43611,56,0
,2,17103,43613,56,0
,2,17104,43615,56,0
,2,17105,43617,56,0
,2,17106,43619,56,0
,2,17107,43621,56,0
,2,17108,43623,56,0
,2,17109,43625,56,0
,2,17110,43627,56,0
,2,17111,43629,56,0
,2,17112,43631,56,0
,2,17113,43633,56,0
,2,17114,43635,56,0
,2,17115,43637,56,0
,2,17116,43639,56,0
,2,17117,43641,56,0
,2,17118,43643,56,0
,2,17119,43645,56,0
,2,17120,43647,56,0
,2,17121,43649,56,0
,2,17122,43651,56,0
,2,17123,43653,56,0
,2,17124,43655,56,0
,2,17125,43657,56,0
,2,17126,43659,56,0
,2,17127,43661,56,0
,2,17128,43663,56,0
,2,17129,43665,56,0
,2,17130,43667,56,0
,2,17131,43669,56,0
,2,17132,43671,56,0
,2,17133,43673,56,0
,2,17134,43675,56,0
,2,17135,43677,56,0
,2,17136,43679,56,0
,2,17137,43681,56,0
,2,17138,43683,56,0
,2,17139,43685,56,0
,2,17140,43687,56,0
,2,17141,43689,56,0
,2,17142,43691,56,0
,2,17143,43693,56,0
,2,17144,43695,56,0
,2,17145,43697,56,0
,2,17146,43699,56,0
,2,17147,43701,56,0
,2,17148,43703,56,0
,2,17149,43705,56,0
,2,17150,43707,56,0
,2,17151,43709,56,0
,2,17152,43711,56,0
,2,17153,43713,56,0
,2,17154,43715,56,0
,2,17155,43717,56,0
,2,17156,43719,56,0
,2,17157,43721,56,0
,2,17158,43723,56,0
,2,17159,43725,56,0
,2,17160,43727,56,0
,2,17161,43729,56,0
,2,17162,43731,56,0
,2,17163,43733,56,0
,2,17164,43735,56,0
,2,17165,43737,56,0
,2,17166,43739,56,0
,2,17167,43741,56,0
,2,17168,43743,56,0
,2,17169,43745,56,0
,2,17170,43747,56,0
,2,17171,43749,56,0
,2,17172,43751,56,0
,2,17173,43753,56,0
,2,17174,43755,56,0
,2,17175,43757,56,0
,2,17176,43759,56,0
,2,17177,43761,56,0
,2,17178,43763,56,0
,2,17179,43765,56,0
,2,17180,43767,56,0
,2,17181,43769,56,0
,2,17182,43771,56,0
,2,17183,43773,56,0
,2,17184,43775,56,0
,2,17185,43777,56,0
,2,17186,43779,56,0
,2,17187,43781,56,0
,2,17188,43783,56,0
,2,17189,43785,56,0
,2,17190,43787,56,0
,2,17191,43789,56,0
,2,17192,43791,56,0
,2,17193,43793,56,0
,2,17194,43795,56,0
,2,17195,43797,56,0
,2,17196,43799,56,0
,2,17197,43801,56,0
,2,17198,43803,56,0
,2,17199,43805,56,0
,2,17200,43807,56,0
,2,17201,43809,56,0
,2,17202,43811,56,0
,2,17203,43813,56,0
,2,17204,43815,56,0
,2,17205,43817,56,0
,2,17206,43819,56,0
,2,17207,43821,56,0
,2,17208,43823,56,0
,2,17209,43825,56,0
,2,17210,43827,56,0
,2,17211,43829,56,0
,2,17212,43831,56,0
,2,17213,43833,56,0
,2,17214,43835,56,0
,2,17215,43837,56,0
,2,17216,43839,56,0
,2,17217,43841,56,0
,2,17218,43843,56,0
,2,17219,43845,56,0
,2,17220,43847,56,0
,2,17221,43849,56,0
,2,17222,43851,56,0
,2,17223,43853,56,0
,2,17224,43855,56,0
,2,17225,43857,56,0
,2,17226,43859,56,0
,2,17227,43861,56,0
,2,17228,43863,56,0
,2,17229,43865,56,0
,2,17230,43867,56,0
,2,17231,43869,56,0
,2,17232,43871,56,0
,2,17233,43873,56,0
,2,17234,43875,56,0
,2,17235,43877,56,0
,2,17236,43879,56,0
,2,17237,43881,56,0
,2,17238,43883,56,0
,2,17239,43885,56,0
,2,17240,43887,56,0
,2,17241,43889,56,0
,2,17242,43891,56,0
,2,17243,43893,56,0
,2,17244,43895,56,0
,2,17245,43897,56,0
,2,17246,43899,56,0
,2,17247,43901,56,0
,2,17248,43903,56,0
,2,17249,43905,56,0
,2,17250,43907,56,0
,2,17251,43909,56,0
,2,17252,43911,56,0
,2,17253,43913,56,0
,2,17254,43915,56,0
,2,17255,43917,56,0
,2,17256,43919,56,0
,2,17257,43921,56,0
,2,17258,43923,56,0
,2,17259,43925,56,0
,2,17260,43927,56,0
,2,17261,43929,56,0
,2,17262,43931,56,0
,2,17263,43933,56,0
,2,17264,43935,56,0
,2,17265,43937,56,0
,2,17266,43939,56,0
,2,17267,43941,56,0
,2,17268,43943,56,0
,2,17269,43945,56,0
,2,17270,43947,56,0
,2,17271,43949,56,0
,2,17272,43951,56,0
,2,17273,43953,56,0
,2,17274,43955,56,0
,2,17275,43957,56,0
,2,17276,43959,56,0
,2,17277,43961,56,0
,2,17278,43963,56,0
,2,17279,43965,56,0
,2,17280,43967,56,0
,2,17281,43969,56,0
,2,17282,43971,56,0
,2,17283,43973,56,0
,2,17284,43975,56,0
,2,17285,43977,56,0
,2,17286,43979,56,0
,2,17287,43981,56,0
,2,17288,43983,56,0
,2,17289,43985,56,0
,2,17290,43987,56,0
,2,17291,43989,56,0
,2,17292,43991,56,0
,2,17293,43993,56,0
,2,17294,43995,56,0
,2,17295,43997,56,0
,2,17296,43999,56,0
,2,17297,44001,56,0
,2,17298,44003,56,0
,2,17299,44005,56,0
,2,17300,44007,56,0
,2,17301,44009,56,0
,2,17302,44011,56,0
,2,17303,44013,56,0
,2,17304,44015,56,0
,2,17305,44017,56,0
,2,17306,44019,56,0
,2,17307,44021,56,0
,2,17308,44023,56,0
,2,17309,44025,56,0
,2,17310,44027,56,0
,2,17311,44029,56,0
,2,17312,44031,56,0
,2,17313,44033,56,0
,2,17314,44035,56,0
,2,17315,44037,56,0
,2,17316,44039,56,0
,2,17317,44041,56,0
,2,17318,44043,56,0
,2,17319,44045,56,0
,2,17320,44047,56,0
,2,17321,44049,56,0
,2,17322,44051,56,0
,2,17323,44053,56,0
,2,17324,44055,56,0
,2,17325,44057,56,0
,2,17326,44059,56,0
,2,17327,44061,56,0
,2,17328,44063,56,0
,2,17329,44065,56,0
,2,17330,44067,56,0
,2,17331,44069,56,0
,2,17332,44071,56,0
,2,17333,44073,56,0
,2,17334,44075,56,0
,2,17335,44077,56,0
,2,17336,44079,56,0
,2,17337,44081,56,0
,2,17338,44083,56,0
,2,17339,44085,56,0
,2,17340,44087,56,0
,2,17341,44089,56,0
,2,17342,44091,56,0
,2,17343,44093,56,0
,2,17344,44095,56,0
,2,17345,44097,56,0
,2,17346,44099,56,0
,2,17347,44101,56,0
,2,17348,44103,56,0
,2,17349,44105,56,0
,2,17350,44107,56,0
,2,17351,44109,56,0
,2,17352,44111,56,0
,2,17353,44113,56,0
,2,17354,44115,56,0
,2,17355,44117,56,0
,2,17356,44119,56,0
,2,17357,44121,56,0
,2,17358,44123,56,0
,2,17359,44125,56,0
,2,17360,44127,56,0
,2,17361,44129,56,0
,2,17362,44131,56,0
,2,17363,44133,56,0
,2,17364,44135,56,0
,2,17365,44137,56,0
,2,17366,44139,56,0
,2,17367,44141,56,0
,2,17368,44143,56,0
,2,17369,44145,56,0
,2,17370,44147,56,0
,2,17371,44149,56,0
,2,17372,44151,56,0
,2,17373,44153,56,0
,2,17374,44155,56,0
,2,17375,44157,56,0
,2,17376,44159,56,0
,2,17377,44161,56,0
,2,17378,44163,56,0
,2,17379,44165,56,0
,2,17380,44167,56,0
,2,17381,44169,56,0
,2,17382,44171,56,0
,2,17383,44173,56,0
,2,17384,44175,56,0
,2,17385,44177,56,0
,2,17386,44179,56,0
,2,17387,44181,56,0
,2,17388,44183,56,0
,2,17389,44185,56,0
,2,17390,44187,56,0
,2,17391,44189,56,0
,2,17392,44191,56,0
,2,17393,44193,56,0
,2,17394,44195,56,0
,2,17395,44197,56,0
,2,17396,44199,56,0
,2,17397,44201,56,0
,2,17398,44203,56,0
,2,17399,44205,56,0
,2,17400,44207,56,0
,2,17401,44209,56,0
,2,17402,44211,56,0
,2,17403,44213,56,0
,2,17404,44215,56,0
,2,17405,44217,56,0
,2,17406,44219,56,0
,2,17407,44221,56,0
,2,17408,44223,56,0
,2,17409,44225,56,0
,2,17410,44227,56,0
,2,17411,44229,56,0
,2,17412,44231,56,0
,2,17413,44233,56,0
,2,17414,44235,56,0
,2,17415,44237,56,0
,2,17416,44239,56,0
,2,17417,44241,56,0
,2,17418,44243,56,0
,2,17419,44245,56,0
,2,17420,44247,56,0
,2,17421,44249,56,0
,2,17422,44251,56,0
,2,17423,44253,56,0
,2,17424,44255,56,0
,2,17425,44257,56,0
,2,17426,44259,56,0
,2,17427,44261,56,0
,2,17428,44263,56,0
,2,17429,44265,56,0
,2,17430,44267,56,0
,2,17431,44269,56,0
,2,17432,44271,56,0
,2,17433,44273,56,0
,2,17434,44275,56,0
,2,17435,44277,56,0
,2,17436,44279,56,0
,2,17437,44281,56,0
,2,17438,44283,56,0
,2,17439,44285,56,0
,2,17440,44287,56,0
,2,17441,44289,56,0
,2,17442,44291,56,0
,2,17443,44293,56,0
,2,17444,44295,56,0
,2,17445,44297,56,0
,2,17446,44299,56,0
,2,17447,44301,56,0
,2,17448,44303,56,0
,2,17449,44305,56,0
,2,17450,44307,56,0
,2,17451,44309,56,0
,2,17452,44311,56,0
,2,17453,44313,56,0
,2,17454,44315,56,0
,2,17455,44317,56,0
,2,17456,44319,56,0
,2,17457,44321,56,0
,2,17458,44323,56,0
,2,17459,44325,56,0
,2,17460,44327,56,0
,2,17461,44329,56,0
,2,17462,44331,56,0
,2,17463,44333,56,0
,2,17464,44335,56,0
,2,17465,44337,56,0
,2,17466,44339,56,0
,2,17467,44341,56,0
,2,17468,44343,56,0
,2,17469,44345,56,0
,2,17470,44347,56,0
,2,17471,44349,56,0
,2,17472,44351,56,0
,2,17473,44353,56,0
,2,17474,44355,56,0
,2,17475,44357,56,0
,2,17476,44359,56,0
,2,17477,44361,56,0
,2,17478,44363,56,0
,2,17479,44365,56,0
,2,17480,44367,56,0
,2,17481,44369,56,0
,2,17482,44371,56,0
,2,17483,44373,56,0
,2,17484,44375,56,0
,2,17485,44377,56,0
,2,17486,44379,56,0
,2,17487,44381,56,0
,2,17488,44383,56,0
,2,17489,44385,56,0
,2,17490,44387,56,0
,2,17491,44389,56,0
,2,17492,44391,56,0
,2,17493,44393,56,0
,2,17494,44395,56,0
,2,17495,44397,56,0
,2,17496,44399,56,0
,2,17497,44401,56,0
,2,17498,44403,56,0
,2,17499,44405,56,0
,2,17500,44407,56,0
,2,17501,44409,56,0
,2,17502,44411,56,0
,2,17503,44413,56,0
,2,17504,44415,56,0
,2,17505,44417,56,0
,2,17506,44419,56,0
,2,17507,44421,56,0
,2,17508,44423,56,0
,2,17509,44425,56,0
,2,17510,44427,56,0
,2,17511,44429,56,0
,2,17512,44431,56,0
,2,17513,44433,56,0
,2,17514,44435,56,0
,2,17515,44437,56,0
,2,17516,44439,56,0
,2,17517,44441,56,0
,2,17518,44443,56,0
,2,17519,44445,56,0
,2,17520,44447,56,0
,2,17521,44449,56,0
,2,17522,44451,56,0
,2,17523,44453,56,0
,2,17524,44455,56,0
,2,17525,44457,56,0
,2,17526,44459,56,0
,2,17527,44461,56,0
,2,17528,44463,56,0
,2,17529,44465,56,0
,2,17530,44467,56,0
,2,17531,44469,56,0
,2,17532,44471,56,0
,2,17533,44473,56,0
,2,17534,44475,56,0
,2,17535,44477,56,0
,2,17536,44479,56,0
,2,17537,44481,56,0
,2,17538,44483,56,0
,2,17539,44485,56,0
,2,17540,44487,56,0
,2,17541,44489,56,0
,2,17542,44491,56,0
,2,17543,44493,56,0
,2,17544,44495,56,0
,2,17545,44497,56,0
,2,17546,44499,56,0
,2,17547,44501,56,0
,2,17548,44503,56,0
,2,17549,44505,56,0
,2,17550,44507,56,0
,2,17551,44509,56,0
,2,17552,44511,56,0
,2,17553,44513,56,0
,2,17554,44515,56,0
,2,17555,44517,56,0
,2,17556,44519,56,0
,2,17557,44521,56,0
,2,17558,44523,56,0
,2,17559,44525,56,0
,2,17560,44527,56,0
,2,17561,44529,56,0
,2,17562,44531,56,0
,2,17563,44533,56,0
,2,17564,44535,56,0
,2,17565,44537,56,0
,2,17566,44539,56,0
,2,17567,44541,56,0
,2,17568,44543,56,0
,2,17569,44545,56,0
,2,17570,44547,56,0
,2,17571,44549,56,0
,2,17572,44551,56,0
,2,17573,44553,56,0
,2,17574,44555,56,0
,2,17575,44557,56,0
,2,17576,44559,56,0
,2,17577,44561,56,0
,2,17578,44563,56,0
,2,17579,44565,56,0
,2,17580,44567,56,0
,2,17581,44569,56,0
,2,17582,44571,56,0
,2,17583,44573,56,0
,2,17584,44575,56,0
,2,17585,44577,56,0
,2,17586,44579,56,0
,2,17587,44581,56,0
,2,17588,44583,56,0
,2,17589,44585,56,0
,2,17590,44587,56,0
,2,17591,44589,56,0
,2,17592,44591,56,0
,2,17593,44593,56,0
,2,17594,44595,56,0
,2,17595,44597,56,0
,2,17596,44599,56,0
,2,17597,44601,56,0
,2,17598,44603,56,0
,2,17599,44605,56,0
,2,17600,44607,56,0
,2,17601,44609,56,0
,2,17602,44611,56,0
,2,17603,44613,56,0
,2,17604,44615,56,0
,2,17605,44617,56,0
,2,17606,44619,56,0
,2,17607,44621,56,0
,2,17608,44623,56,0
,2,17609,44625,56,0
,2,17610,44627,56,0
,2,17611,44629,56,0
,2,17612,44631,56,0
,2,17613,44633,56,0
,2,17614,44635,56,0
,2,17615,44637,56,0
,2,17616,44639,56,0
,2,17617,44641,56,0
,2,17618,44643,56,0
,2,17619,44645,56,0
,2,17620,44647,56,0
,2,17621,44649,56,0
,2,17622,44651,56,0
,2,17623,44653,56,0
,2,17624,44655,56,0
,2,17625,44657,56,0
,2,17626,44659,56,0
,2,17627,44661,56,0
,2,17628,44663,56,0
,2,17629,44665,56,0
,2,17630,44667,56,0
,2,17631,44669,56,0
,2,17632,44671,56,0
,2,17633,44673,56,0
,2,17634,44675,56,0
,2,17635,44677,56,0
,2,17636,44679,56,0
,2,17637,44681,56,0
,2,17638,44683,56,0
,2,17639,44685,56,0
,2,17640,44687,56,0
,2,17641,44689,56,0
,2,17642,44691,56,0
,2,17643,44693,56,0
,2,17644,44695,56,0
,2,17645,44697,56,0
,2,17646,44699,56,0
,2,17647,44701,56,0
,2,17648,44703,56,0
,2,17649,44705,56,0
,2,17650,44707,56,0
,2,17651,44709,56,0
,2,17652,44711,56,0
,2,17653,44713,56,0
,2,17654,44715,56,0
,2,17655,44717,56,0
,2,17656,44719,56,0
,2,17657,44721,56,0
,2,17658,44723,56,0
,2,17659,44725,56,0
,2,17660,44727,56,0
,2,17661,44729,56,0
,2,17662,44731,56,0
,2,17663,44733,56,0
,2,17664,44735,56,0
,2,17665,44737,56,0
,2,17666,44739,56,0
,2,17667,44741,56,0
,2,17668,44743,56,0
,2,17669,44745,56,0
,2,17670,44747,56,0
,2,17671,44749,56,0
,2,17672,44751,56,0
,2,17673,44753,56,0
,2,17674,44755,56,0
,2,17675,44757,56,0
,2,17676,44759,56,0
,2,17677,44761,56,0
,2,17678,44763,56,0
,2,17679,44765,56,0
,2,17680,44767,56,0
,2,17681,44769,56,0
,2,17682,44771,56,0
,2,17683,44773,56,0
,2,17684,44775,56,0
,2,17685,44777,56,0
,2,17686,44779,56,0
,2,17687,44781,56,0
,2,17688,44783,56,0
,2,17689,44785,56,0
,2,17690,44787,56,0
,2,17691,44789,56,0
,2,17692,44791,56,0
,2,17693,44793,56,0
,2,17694,44795,56,0
,2,17695,44797,56,0
,2,17696,44799,56,0
,2,17697,44801,56,0
,2,17698,44803,56,0
,2,17699,44805,56,0
,2,17700,44807,56,0
,2,17701,44809,56,0
,2,17702,44811,56,0
,2,17703,44813,56,0
,2,17704,44815,56,0
,2,17705,44817,56,0
,2,17706,44819,56,0
,2,17707,44821,56,0
,2,17708,44823,56,0
,2,17709,44825,56,0
,2,17710,44827,56,0
,2,17711,44829,56,0
,2,17712,44831,56,0
,2,17713,44833,56,0
,2,17714,44835,56,0
,2,17715,44837,56,0
,2,17716,44839,56,0
,2,17717,44841,56,0
,2,17718,44843,56,0
,2,17719,44845,56,0
,2,17720,44847,56,0
,2,17721,44849,56,0
,2,17722,44851,56,0
,2,17723,44853,56,0
,2,17724,44855,56,0
,2,17725,44857,56,0
,2,17726,44859,56,0
,2,17727,44861,56,0
,2,17728,44863,56,0
,2,17729,44865,56,0
,2,17730,44867,56,0
,2,17731,44869,56,0
,2,17732,44871,56,0
,2,17733,44873,56,0
,2,17734,44875,56,0
,2,17735,44877,56,0
,2,17736,44879,56,0
,2,17737,44881,56,0
,2,17738,44883,56,0
,2,17739,44885,56,0
,2,17740,44887,56,0
,2,17741,44889,56,0
,2,17742,44891,56,0
,2,17743,44893,56,0
,2,17744,44895,56,0
,2,17745,44897,56,0
,2,17746,44899,56,0
,2,17747,44901,56,0
,2,17748,44903,56,0
,2,17749,44905,56,0
,2,17750,44907,56,0
,2,17751,44909,56,0
,2,17752,44911,56,0
,2,17753,44913,56,0
,2,17754,44915,56,0
,2,17755,44917,56,0
,2,17756,44919,56,0
,2,17757,44921,56,0
,2,17758,44923,56,0
,2,17759,44925,56,0
,2,17760,44927,56,0
,2,17761,44929,56,0
,2,17762,44931,56,0
,2,17763,44933,56,0
,2,17764,44935,56,0
,2,17765,44937,56,0
,2,17766,44939,56,0
,2,17767,44941,56,0
,2,17768,44943,56,0
,2,17769,44945,56,0
,2,17770,44947,56,0
,2,17771,44949,56,0
,2,17772,44951,56,0
,2,17773,44953,56,0
,2,17774,44955,56,0
,2,17775,44957,56,0
,2,17776,44959,56,0
,2,17777,44961,56,0
,2,17778,44963,56,0
,2,17779,44965,56,0
,2,17780,44967,56,0
,2,17781,44969,56,0
,2,17782,44971,56,0
,2,17783,44973,56,0
,2,17784,44975,56,0
,2,17785,44977,56,0
,2,17786,44979,56,0
,2,17787,44981,56,0
,2,17788,44983,56,0
,2,17789,44985,56,0
,2,17790,44987,56,0
,2,17791,44989,56,0
,2,17792,44991,56,0
,2,17793,44993,56,0
,2,17794,44995,56,0
,2,17795,44997,56,0
,2,17796,44999,56,0
,2,17797,45001,56,0
,2,17798,45003,56,0
,2,17799,45005,56,0
,2,17800,45007,56,0
,2,17801,45009,56,0
,2,17802,45011,56,0
,2,17803,45013,56,0
,2,17804,45015,56,0
,2,17805,45017,56,0
,2,17806,45019,56,0
,2,17807,45021,56,0
,2,17808,45023,56,0
,2,17809,45025,56,0
,2,17810,45027,56,0
,2,17811,45029,56,0
,2,17812,45031,56,0
,2,17813,45033,56,0
,2,17814,45035,56,0
,2,17815,45037,56,0
,2,17816,45039,56,0
,2,17817,45041,56,0
,2,17818,45043,56,0
,2,17819,45045,56,0
,2,17820,45047,56,0
,2,17821,45049,56,0
,2,17822,45051,56,0
,2,17823,45053,56,0
,2,17824,45055,56,0
,2,17825,45057,56,0
,2,17826,45059,56,0
,2,17827,45061,56,0
,2,17828,45063,56,0
,2,17829,45065,56,0
,2,17830,45067,56,0
,2,17831,45069,56,0
,2,17832,45071,56,0
,2,17833,45073,56,0
,2,17834,45075,56,0
,2,17835,45077,56,0
,2,17836,45079,56,0
,2,17837,45081,56,0
,2,17838,45083,56,0
,2,17839,45085,56,0
,2,17840,45087,56,0
,2,17841,45089,56,0
,2,17842,45091,56,0
,2,17843,45093,56,0
,2,17844,45095,56,0
,2,17845,45097,56,0
,2,17846,45099,56,0
,2,17847,45101,56,0
,2,17848,45103,56,0
,2,17849,45105,56,0
,2,17850,45107,56,0
,2,17851,45109,56,0
,2,17852,45111,56,0
,2,17853,45113,56,0
,2,17854,45115,56,0
,2,17855,45117,56,0
,2,17856,45119,56,0
,2,17857,45121,56,0
,2,17858,45123,56,0
,2,17859,45125,56,0
,2,17860,45127,56,0
,2,17861,45129,56,0
,2,17862,45131,56,0
,2,17863,45133,56,0
,2,17864,45135,56,0
,2,17865,45137,56,0
,2,17866,45139,56,0
,2,17867,45141,56,0
,2,17868,45143,56,0
,2,17869,45145,56,0
,2,17870,45147,56,0
,2,17871,45149,56,0
,2,17872,45151,56,0
,2,17873,45153,56,0
,2,17874,45155,56,0
,2,17875,45157,56,0
,2,17876,45159,56,0
,2,17877,45161,56,0
,2,17878,45163,56,0
,2,17879,45165,56,0
,2,17880,45167,56,0
,2,17881,45169,56,0
,2,17882,45171,56,0
,2,17883,45173,56,0
,2,17884,45175,56,0
,2,17885,45177,56,0
,2,17886,45179,56,0
,2,17887,45181,56,0
,2,17888,45183,56,0
,2,17889,45185,56,0
,2,17890,45187,56,0
,2,17891,45189,56,0
,2,17892,45191,56,0
,2,17893,45193,56,0
,2,17894,45195,56,0
,2,17895,45197,56,0
,2,17896,45199,56,0
,2,17897,45201,56,0
,2,17898,45203,56,0
,2,17899,45205,56,0
,2,17900,45207,56,0
,2,17901,45209,56,0
,2,17902,45211,56,0
,2,17903,45213,56,0
,2,17904,45215,56,0
,2,17905,45217,56,0
,2,17906,45219,56,0
,2,17907,45221,56,0
,2,17908,45223,56,0
,2,17909,45225,56,0
,2,17910,45227,56,0
,2,17911,45229,56,0
,2,17912,45231,56,0
,2,17913,45233,56,0
,2,17914,45235,56,0
,2,17915,45237,56,0
,2,17916,45239,56,0
,2,17917,45241,56,0
,2,17918,45243,56,0
,2,17919,45245,56,0
,2,17920,45247,56,0
,2,17921,45249,56,0
,2,17922,45251,56,0
,2,17923,45253,56,0
,2,17924,45255,56,0
,2,17925,45257,56,0
,2,17926,45259,56,0
,2,17927,45261,56,0
,2,17928,45263,56,0
,2,17929,45265,56,0
,2,17930,45267,56,0
,2,17931,45269,56,0
,2,17932,45271,56,0
,2,17933,45273,56,0
,2,17934,45275,56,0
,2,17935,45277,56,0
,2,17936,45279,56,0
,2,17937,45281,56,0
,2,17938,45283,56,0
,2,17939,45285,56,0
,2,17940,45287,56,0
,2,17941,45289,56,0
,2,17942,45291,56,0
,2,17943,45293,56,0
,2,17944,45295,56,0
,2,17945,45297,56,0
,2,17946,45299,56,0
,2,17947,45301,56,0
,2,17948,45303,56,0
,2,17949,45305,56,0
,2,17950,45307,56,0
,2,17951,45309,56,0
,2,17952,45311,56,0
,2,17953,45313,56,0
,2,17954,45315,56,0
,2,17955,45317,56,0
,2,17956,45319,56,0
,2,17957,45321,56,0
,2,17958,45323,56,0
,2,17959,45325,56,0
,2,17960,45327,56,0
,2,17961,45329,56,0
,2,17962,45331,56,0
,2,17963,45333,56,0
,2,17964,45335,56,0
,2,17965,45337,56,0
,2,17966,45339,56,0
,2,17967,45341,56,0
,2,17968,45343,56,0
,2,17969,45345,56,0
,2,17970,45347,56,0
,2,17971,45349,56,0
,2,17972,45351,56,0
,2,17973,45353,56,0
,2,17974,45355,56,0
,2,17975,45357,56,0
,2,17976,45359,56,0
,2,17977,45361,56,0
,2,17978,45363,56,0
,2,17979,45365,56,0
,2,17980,45367,56,0
,2,17981,45369,56,0
,2,17982,45371,56,0
,2,17983,45373,56,0
,2,17984,45375,56,0
,2,17985,45377,56,0
,2,17986,45379,56,0
,2,17987,45381,56,0
,2,17988,45383,56,0
,2,17989,45385,56,0
,2,17990,45387,56,0
,2,17991,45389,56,0
,2,17992,45391,56,0
,2,17993,45393,56,0
,2,17994,45395,56,0
,2,17995,45397,56,0
,2,17996,45399,56,0
,2,17997,45401,56,0
,2,17998,45403,56,0
,2,17999,45405,56,0
,2,18000,45407,56,0
,2,18001,45409,56,0
,2,18002,45411,56,0
,2,18003,45413,56,0
,2,18004,45415,56,0
,2,18005,45417,56,0
,2,18006,45419,56,0
,2,18007,45421,56,0
,2,18008,45423,56,0
,2,18009,45425,56,0
,2,18010,45427,56,0
,2,18011,45429,56,0
,2,18012,45431,56,0
,2,18013,45433,56,0
,2,18014,45435,56,0
,2,18015,45437,56,0
,2,18016,45439,56,0
,2,18017,45441,56,0
,2,18018,45443,56,0
,2,18019,45445,56,0
,2,18020,45447,56,0
,2,18021,45449,56,0
,2,18022,45451,56,0
,2,18023,45453,56,0
,2,18024,45455,56,0
,2,18025,45457,56,0
,2,18026,45459,56,0
,2,18027,45461,56,0
,2,18028,45463,56,0
,2,18029,45465,56,0
,2,18030,45467,56,0
,2,18031,45469,56,0
,2,18032,45471,56,0
,2,18033,45473,56,0
,2,18034,45475,56,0
,2,18035,45477,56,0
,2,18036,45479,56,0
,2,18037,45481,56,0
,2,18038,45483,56,0
,2,18039,45485,56,0
,2,18040,45487,56,0
,2,18041,45489,56,0
,2,18042,45491,56,0
,2,18043,45493,56,0
,2,18044,45495,56,0
,2,18045,45497,56,0
,2,18046,45499,56,0
,2,18047,45501,56,0
,2,18048,45503,56,0
,2,18049,45505,56,0
,2,18050,45507,56,0
,2,18051,45509,56,0
,2,18052,45511,56,0
,2,18053,45513,56,0
,2,18054,45515,56,0
,2,18055,45517,56,0
,2,18056,45519,56,0
,2,18057,45521,56,0
,2,18058,45523,56,0
,2,18059,45525,56,0
,2,18060,45527,56,0
,2,18061,45529,56,0
,2,18062,45531,56,0
,2,18063,45533,56,0
,2,18064,45535,56,0
,2,18065,45537,56,0
,2,18066,45539,56,0
,2,18067,45541,56,0
,2,18068,45543,56,0
,2,18069,45545,56,0
,2,18070,45547,56,0
,2,18071,45549,56,0
,2,18072,45551,56,0
,2,18073,45553,56,0
,2,18074,45555,56,0
,2,18075,45557,56,0
,2,18076,45559,56,0
,2,18077,45561,56,0
,2,18078,45563,56,0
,2,18079,45565,56,0
,2,18080,45567,56,0
,2,18081,45569,56,0
,2,18082,45571,56,0
,2,18083,45573,56,0
,2,18084,45575,56,0
,2,18085,45577,56,0
,2,18086,45579,56,0
,2,18087,45581,56,0
,2,18088,45583,56,0
,2,18089,45585,56,0
,2,18090,45587,56,0
,2,18091,45589,56,0
,2,18092,45591,56,0
,2,18093,45593,56,0
,2,18094,45595,56,0
,2,18095,45597,56,0
,2,18096,45599,56,0
,2,18097,45601,56,0
,2,18098,45603,56,0
,2,18099,45605,56,0
,2,18100,45607,56,0
,2,18101,45609,56,0
,2,18102,45611,56,0
,2,18103,45613,56,0
,2,18104,45615,56,0
,2,18105,45617,56,0
,2,18106,45619,56,0
,2,18107,45621,56,0
,2,18108,45623,56,0
,2,18109,45625,56,0
,2,18110,45627,56,0
,2,18111,45629,56,0
,2,18112,45631,56,0
,2,18113,45633,56,0
,2,18114,45635,56,0
,2,18115,45637,56,0
,2,18116,45639,56,0
,2,18117,45641,56,0
,2,18118,45643,56,0
,2,18119,45645,56,0
,2,18120,45647,56,0
,2,18121,45649,56,0
,2,18122,45651,56,0
,2,18123,45653,56,0
,2,18124,45655,56,0
,2,18125,45657,56,0
,2,18126,45659,56,0
,2,18127,45661,56,0
,2,18128,45663,56,0
,2,18129,45665,56,0
,2,18130,45667,56,0
,2,18131,45669,56,0
,2,18132,45671,56,0
,2,18133,45673,56,0
,2,18134,45675,56,0
,2,18135,45677,56,0
,2,18136,45679,56,0
,2,18137,45681,56,0
,2,18138,45683,56,0
,2,18139,45685,56,0
,2,18140,45687,56,0
,2,18141,45689,56,0
,2,18142,45691,56,0
,2,18143,45693,56,0
,2,18144,45695,56,0
,2,18145,45697,56,0
,2,18146,45699,56,0
,2,18147,45701,56,0
,2,18148,45703,56,0
,2,18149,45705,56,0
,2,18150,45707,56,0
,2,18151,45709,56,0
,2,18152,45711,56,0
,2,18153,45713,56,0
,2,18154,45715,56,0
,2,18155,45717,56,0
,2,18156,45719,56,0
,2,18157,45721,56,0
,2,18158,45723,56,0
,2,18159,45725,56,0
,2,18160,45727,56,0
,2,18161,45729,56,0
,2,18162,45731,56,0
,2,18163,45733,56,0
,2,18164,45735,56,0
,2,18165,45737,56,0
,2,18166,45739,56,0
,2,18167,45741,56,0
,2,18168,45743,56,0
,2,18169,45745,56,0
,2,18170,45747,56,0
,2,18171,45749,56,0
,2,18172,45751,56,0
,2,18173,45753,56,0
,2,18174,45755,56,0
,2,18175,45757,56,0
,2,18176,45759,56,0
,2,18177,45761,56,0
,2,18178,45763,56,0
,2,18179,45765,56,0
,2,18180,45767,56,0
,2,18181,45769,56,0
,2,18182,45771,56,0
,2,18183,45773,56,0
,2,18184,45775,56,0
,2,18185,45777,56,0
,2,18186,45779,56,0
,2,18187,45781,56,0
,2,18188,45783,56,0
,2,18189,45785,56,0
,2,18190,45787,56,0
,2,18191,45789,56,0
,2,18192,45791,56,0
,2,18193,45793,56,0
,2,18194,45795,56,0
,2,18195,45797,56,0
,2,18196,45799,56,0
,2,18197,45801,56,0
,2,18198,45803,56,0
,2,18199,45805,56,0
,2,18200,45807,56,0
,2,18201,45809,56,0
,2,18202,45811,56,0
,2,18203,45813,56,0
,2,18204,45815,56,0
,2,18205,45817,56,0
,2,18206,45819,56,0
,2,18207,45821,56,0
,2,18208,45823,56,0
,2,18209,45825,56,0
,2,18210,45827,56,0
,2,18211,45829,56,0
,2,18212,45831,56,0
,2,18213,45833,56,0
,2,18214,45835,56,0
,2,18215,45837,56,0
,2,18216,45839,56,0
,2,18217,45841,56,0
,2,18218,45843,56,0
,2,18219,45845,56,0
,2,18220,45847,56,0
,2,18221,45849,56,0
,2,18222,45851,56,0
,2,18223,45853,56,0
,2,18224,45855,56,0
,2,18225,45857,56,0
,2,18226,45859,56,0
,2,18227,45861,56,0
,2,18228,45863,56,0
,2,18229,45865,56,0
,2,18230,45867,56,0
,2,18231,45869,56,0
,2,18232,45871,56,0
,2,18233,45873,56,0
,2,18234,45875,56,0
,2,18235,45877,56,0
,2,18236,45879,56,0
,2,18237,45881,56,0
,2,18238,45883,56,0
,2,18239,45885,56,0
,2,18240,45887,56,0
,2,18241,45889,56,0
,2,18242,45891,56,0
,2,18243,45893,56,0
,2,18244,45895,56,0
,2,18245,45897,56,0
,2,18246,45899,56,0
,2,18247,45901,56,0
,2,18248,45903,56,0
,2,18249,45905,56,0
,2,18250,45907,56,0
,2,18251,45909,56,0
,2,18252,45911,56,0
,2,18253,45913,56,0
,2,18254,45915,56,0
,2,18255,45917,56,0
,2,18256,45919,56,0
,2,18257,45921,56,0
,2,18258,45923,56,0
,2,18259,45925,56,0
,2,18260,45927,56,0
,2,18261,45929,56,0
,2,18262,45931,56,0
,2,18263,45933,56,0
,2,18264,45935,56,0
,2,18265,45937,56,0
,2,18266,45939,56,0
,2,18267,45941,56,0
,2,18268,45943,56,0
,2,18269,45945,56,0
,2,18270,45947,56,0
,2,18271,45949,56,0
,2,18272,45951,56,0
,2,18273,45953,56,0
,2,18274,45955,56,0
,2,18275,45957,56,0
,2,18276,45959,56,0
,2,18277,45961,56,0
,2,18278,45963,56,0
,2,18279,45965,56,0
,2,18280,45967,56,0
,2,18281,45969,56,0
,2,18282,45971,56,0
,2,18283,45973,56,0
,2,18284,45975,56,0
,2,18285,45977,56,0
,2,18286,45979,56,0
,2,18287,45981,56,0
,2,18288,45983,56,0
,2,18289,45985,56,0
,2,18290,45987,56,0
,2,18291,45989,56,0
,2,18292,45991,56,0
,2,18293,45993,56,0
,2,18294,45995,56,0
,2,18295,45997,56,0
,2,18296,45999,56,0
,2,18297,46001,56,0
,2,18298,46003,56,0
,2,18299,46005,56,0
,2,18300,46007,56,0
,2,18301,46009,56,0
,2,18302,46011,56,0
,2,18303,46013,56,0
,2,18304,46015,56,0
,2,18305,46017,56,0
,2,18306,46019,56,0
,2,18307,46021,56,0
,2,18308,46023,56,0
,2,18309,46025,56,0
,2,18310,46027,56,0
,2,18311,46029,56,0
,2,18312,46031,56,0
,2,18313,46033,56,0
,2,18314,46035,56,0
,2,18315,46037,56,0
,2,18316,46039,56,0
,2,18317,46041,56,0
,2,18318,46043,56,0
,2,18319,46045,56,0
,2,18320,46047,56,0
,2,18321,46049,56,0
,2,18322,46051,56,0
,2,18323,46053,56,0
,2,18324,46055,56,0
,2,18325,46057,56,0
,2,18326,46059,56,0
,2,18327,46061,56,0
,2,18328,46063,56,0
,2,18329,46065,56,0
,2,18330,46067,56,0
,2,18331,46069,56,0
,2,18332,46071,56,0
,2,18333,46073,56,0
,2,18334,46075,56,0
,2,18335,46077,56,0
,2,18336,46079,56,0
,2,18337,46081,56,0
,2,18338,46083,56,0
,2,18339,46085,56,0
,2,18340,46087,56,0
,2,18341,46089,56,0
,2,18342,46091,56,0
,2,18343,46093,56,0
,2,18344,46095,56,0
,2,18345,46097,56,0
,2,18346,46099,56,0
,2,18347,46101,56,0
,2,18348,46103,56,0
,2,18349,46105,56,0
,2,18350,46107,56,0
,2,18351,46109,56,0
,2,18352,46111,56,0
,2,18353,46113,56,0
,2,18354,46115,56,0
,2,18355,46117,56,0
,2,18356,46119,56,0
,2,18357,46121,56,0
,2,18358,46123,56,0
,2,18359,46125,56,0
,2,18360,46127,56,0
,2,18361,46129,56,0
,2,18362,46131,56,0
,2,18363,46133,56,0
,2,18364,46135,56,0
,2,18365,46137,56,0
,2,18366,46139,56,0
,2,18367,46141,56,0
,2,18368,46143,56,0
,2,18369,46145,56,0
,2,18370,46147,56,0
,2,18371,46149,56,0
,2,18372,46151,56,0
,2,18373,46153,56,0
,2,18374,46155,56,0
,2,18375,46157,56,0
,2,18376,46159,56,0
,2,18377,46161,56,0
,2,18378,46163,56,0
,2,18379,46165,56,0
,2,18380,46167,56,0
,2,18381,46169,56,0
,2,18382,46171,56,0
,2,18383,46173,56,0
,2,18384,46175,56,0
,2,18385,46177,56,0
,2,18386,46179,56,0
,2,18387,46181,56,0
,2,18388,46183,56,0
,2,18389,46185,56,0
,2,18390,46187,56,0
,2,18391,46189,56,0
,2,18392,46191,56,0
,2,18393,46193,56,0
,2,18394,46195,56,0
,2,18395,46197,56,0
,2,18396,46199,56,0
,2,18397,46201,56,0
,2,18398,46203,56,0
,2,18399,46205,56,0
,2,18400,46207,56,0
,2,18401,46209,56,0
,2,18402,46211,56,0
,2,18403,46213,56,0
,2,18404,46215,56,0
,2,18405,46217,56,0
,2,18406,46219,56,0
,2,18407,46221,56,0
,2,18408,46223,56,0
,2,18409,46225,56,0
,2,18410,46227,56,0
,2,18411,46229,56,0
,2,18412,46231,56,0
,2,18413,46233,56,0
,2,18414,46235,56,0
,2,18415,46237,56,0
,2,18416,46239,56,0
,2,18417,46241,56,0
,2,18418,46243,56,0
,2,18419,46245,56,0
,2,18420,46247,56,0
,2,18421,46249,56,0
,2,18422,46251,56,0
,2,18423,46253,56,0
,2,18424,46255,56,0
,2,18425,46257,56,0
,2,18426,46259,56,0
,2,18427,46261,56,0
,2,18428,46263,56,0
,2,18429,46265,56,0
,2,18430,46267,56,0
,2,18431,46269,56,0
,2,18432,46271,56,0
,2,18433,46273,56,0
,2,18434,46275,56,0
,2,18435,46277,56,0
,2,18436,46279,56,0
,2,18437,46281,56,0
,2,18438,46283,56,0
,2,18439,46285,56,0
,2,18440,46287,56,0
,2,18441,46289,56,0
,2,18442,46291,56,0
,2,18443,46293,56,0
,2,18444,46295,56,0
,2,18445,46297,56,0
,2,18446,46299,56,0
,2,18447,46301,56,0
,2,18448,46303,56,0
,2,18449,46305,56,0
,2,18450,46307,56,0
,2,18451,46309,56,0
,2,18452,46311,56,0
,2,18453,46313,56,0
,2,18454,46315,56,0
,2,18455,46317,56,0
,2,18456,46319,56,0
,2,18457,46321,56,0
,2,18458,46323,56,0
,2,18459,46325,56,0
,2,18460,46327,56,0
,2,18461,46329,56,0
,2,18462,46331,56,0
,2,18463,46333,56,0
,2,18464,46335,56,0
,2,18465,46337,56,0
,2,18466,46339,56,0
,2,18467,46341,56,0
,2,18468,46343,56,0
,2,18469,46345,56,0
,2,18470,46347,56,0
,2,18471,46349,56,0
,2,18472,46351,56,0
,2,18473,46353,56,0
,2,18474,46355,56,0
,2,18475,46357,56,0
,2,18476,46359,56,0
,2,18477,46361,56,0
,2,18478,46363,56,0
,2,18479,46365,56,0
,2,18480,46367,56,0
,2,18481,46369,56,0
,2,18482,46371,56,0
,2,18483,46373,56,0
,2,18484,46375,56,0
,2,18485,46377,56,0
,2,18486,46379,56,0
,2,18487,46381,56,0
,2,18488,46383,56,0
,2,18489,46385,56,0
,2,18490,46387,56,0
,2,18491,46389,56,0
,2,18492,46391,56,0
,2,18493,46393,56,0
,2,18494,46395,56,0
,2,18495,46397,56,0
,2,18496,46399,56,0
,2,18497,46401,56,0
,2,18498,46403,56,0
,2,18499,46405,56,0
,2,18500,46407,56,0
,2,18501,46409,56,0
,2,18502,46411,56,0
,2,18503,46413,56,0
,2,18504,46415,56,0
,2,18505,46417,56,0
,2,18506,46419,56,0
,2,18507,46421,56,0
,2,18508,46423,56,0
,2,18509,46425,56,0
,2,18510,46427,56,0
,2,18511,46429,56,0
,2,18512,46431,56,0
,2,18513,46433,56,0
,2,18514,46435,56,0
,2,18515,46437,56,0
,2,18516,46439,56,0
,2,18517,46441,56,0
,2,18518,46443,56,0
,2,18519,46445,56,0
,2,18520,46447,56,0
,2,18521,46449,56,0
,2,18522,46451,56,0
,2,18523,46453,56,0
,2,18524,46455,56,0
,2,18525,46457,56,0
,2,18526,46459,56,0
,2,18527,46461,56,0
,2,18528,46463,56,0
,2,18529,46465,56,0
,2,18530,46467,56,0
,2,18531,46469,56,0
,2,18532,46471,56,0
,2,18533,46473,56,0
,2,18534,46475,56,0
,2,18535,46477,56,0
,2,18536,46479,56,0
,2,18537,46481,56,0
,2,18538,46483,56,0
,2,18539,46485,56,0
,2,18540,46487,56,0
,2,18541,46489,56,0
,2,18542,46491,56,0
,2,18543,46493,56,0
,2,18544,46495,56,0
,2,18545,46497,56,0
,2,18546,46499,56,0
,2,18547,46501,56,0
,2,18548,46503,56,0
,2,18549,46505,56,0
,2,18550,46507,56,0
,2,18551,46509,56,0
,2,18552,46511,56,0
,2,18553,46513,56,0
,2,18554,46515,56,0
,2,18555,46517,56,0
,2,18556,46519,56,0
,2,18557,46521,56,0
,2,18558,46523,56,0
,2,18559,46525,56,0
,2,18560,46527,56,0
,2,18561,46529,56,0
,2,18562,46531,56,0
,2,18563,46533,56,0
,2,18564,46535,56,0
,2,18565,46537,56,0
,2,18566,46539,56,0
,2,18567,46541,56,0
,2,18568,46543,56,0
,2,18569,46545,56,0
,2,18570,46547,56,0
,2,18571,46549,56,0
,2,18572,46551,56,0
,2,18573,46553,56,0
,2,18574,46555,56,0
,2,18575,46557,56,0
,2,18576,46559,56,0
,2,18577,46561,56,0
,2,18578,46563,56,0
,2,18579,46565,56,0
,2,18580,46567,56,0
,2,18581,46569,56,0
,2,18582,46571,56,0
,2,18583,46573,56,0
,2,18584,46575,56,0
,2,18585,46577,56,0
,2,18586,46579,56,0
,2,18587,46581,56,0
,2,18588,46583,56,0
,2,18589,46585,56,0
,2,18590,46587,56,0
,2,18591,46589,56,0
,2,18592,46591,56,0
,2,18593,46593,56,0
,2,18594,46595,56,0
,2,18595,46597,56,0
,2,18596,46599,56,0
,2,18597,46601,56,0
,2,18598,46603,56,0
,2,18599,46605,56,0
,2,18600,46607,56,0
,2,18601,46609,56,0
,2,18602,46611,56,0
,2,18603,46613,56,0
,2,18604,46615,56,0
,2,18605,46617,56,0
,2,18606,46619,56,0
,2,18607,46621,56,0
,2,18608,46623,56,0
,2,18609,46625,56,0
,2,18610,46627,56,0
,2,18611,46629,56,0
,2,18612,46631,56,0
,2,18613,46633,56,0
,2,18614,46635,56,0
,2,18615,46637,56,0
,2,18616,46639,56,0
,2,18617,46641,56,0
,2,18618,46643,56,0
,2,18619,46645,56,0
,2,18620,46647,56,0
,2,18621,46649,56,0
,2,18622,46651,56,0
,2,18623,46653,56,0
,2,18624,46655,56,0
,2,18625,46657,56,0
,2,18626,46659,56,0
,2,18627,46661,56,0
,2,18628,46663,56,0
,2,18629,46665,56,0
,2,18630,46667,56,0
,2,18631,46669,56,0
,2,18632,46671,56,0
,2,18633,46673,56,0
,2,18634,46675,56,0
,2,18635,46677,56,0
,2,18636,46679,56,0
,2,18637,46681,56,0
,2,18638,46683,56,0
,2,18639,46685,56,0
,2,18640,46687,56,0
,2,18641,46689,56,0
,2,18642,46691,56,0
,2,18643,46693,56,0
,2,18644,46695,56,0
,2,18645,46697,56,0
,2,18646,46699,56,0
,2,18647,46701,56,0
,2,18648,46703,56,0
,2,18649,46705,56,0
,2,18650,46707,56,0
,2,18651,46709,56,0
,2,18652,46711,56,0
,2,18653,46713,56,0
,2,18654,46715,56,0
,2,18655,46717,56,0
,2,18656,46719,56,0
,2,18657,46721,56,0
,2,18658,46723,56,0
,2,18659,46725,56,0
,2,18660,46727,56,0
,2,18661,46729,56,0
,2,18662,46731,56,0
,2,18663,46733,56,0
,2,18664,46735,56,0
,2,18665,46737,56,0
,2,18666,46739,56,0
,2,18667,46741,56,0
,2,18668,46743,56,0
,2,18669,46745,56,0
,2,18670,46747,56,0
,2,18671,46749,56,0
,2,18672,46751,56,0
,2,18673,46753,56,0
,2,18674,46755,56,0
,2,18675,46757,56,0
,2,18676,46759,56,0
,2,18677,46761,56,0
,2,18678,46763,56,0
,2,18679,46765,56,0
,2,18680,46767,56,0
,2,18681,46769,56,0
,2,18682,46771,56,0
,2,18683,46773,56,0
,2,18684,46775,56,0
,2,18685,46777,56,0
,2,18686,46779,56,0
,2,18687,46781,56,0
,2,18688,46783,56,0
,2,18689,46785,56,0
,2,18690,46787,56,0
,2,18691,46789,56,0
,2,18692,46791,56,0
,2,18693,46793,56,0
,2,18694,46795,56,0
,2,18695,46797,56,0
,2,18696,46799,56,0
,2,18697,46801,56,0
,2,18698,46803,56,0
,2,18699,46805,56,0
,2,18700,46807,56,0
,2,18701,46809,56,0
,2,18702,46811,56,0
,2,18703,46813,56,0
,2,18704,46815,56,0
,2,18705,46817,56,0
,2,18706,46819,56,0
,2,18707,46821,56,0
,2,18708,46823,56,0
,2,18709,46825,56,0
,2,18710,46827,56,0
,2,18711,46829,56,0
,2,18712,46831,56,0
,2,18713,46833,56,0
,2,18714,46835,56,0
,2,18715,46837,56,0
,2,18716,46839,56,0
,2,18717,46841,56,0
,2,18718,46843,56,0
,2,18719,46845,56,0
,2,18720,46847,56,0
,2,18721,46849,56,0
,2,18722,46851,56,0
,2,18723,46853,56,0
,2,18724,46855,56,0
,2,18725,46857,56,0
,2,18726,46859,56,0
,2,18727,46861,56,0
,2,18728,46863,56,0
,2,18729,46865,56,0
,2,18730,46867,56,0
,2,18731,46869,56,0
,2,18732,46871,56,0
,2,18733,46873,56,0
,2,18734,46875,56,0
,2,18735,46877,56,0
,2,18736,46879,56,0
,2,18737,46881,56,0
,2,18738,46883,56,0
,2,18739,46885,56,0
,2,18740,46887,56,0
,2,18741,46889,56,0
,2,18742,46891,56,0
,2,18743,46893,56,0
,2,18744,46895,56,0
,2,18745,46897,56,0
,2,18746,46899,56,0
,2,18747,46901,56,0
,2,18748,46903,56,0
,2,18749,46905,56,0
,2,18750,46907,56,0
,2,18751,46909,56,0
,2,18752,46911,56,0
,2,18753,46913,56,0
,2,18754,46915,56,0
,2,18755,46917,56,0
,2,18756,46919,56,0
,2,18757,46921,56,0
,2,18758,46923,56,0
,2,18759,46925,56,0
,2,18760,46927,56,0
,2,18761,46929,56,0
,2,18762,46931,56,0
,2,18763,46933,56,0
,2,18764,46935,56,0
,2,18765,46937,56,0
,2,18766,46939,56,0
,2,18767,46941,56,0
,2,18768,46943,56,0
,2,18769,46945,56,0
,2,18770,46947,56,0
,2,18771,46949,56,0
,2,18772,46951,56,0
,2,18773,46953,56,0
,2,18774,46955,56,0
,2,18775,46957,56,0
,2,18776,46959,56,0
,2,18777,46961,56,0
,2,18778,46963,56,0
,2,18779,46965,56,0
,2,18780,46967,56,0
,2,18781,46969,56,0
,2,18782,46971,56,0
,2,18783,46973,56,0
,2,18784,46975,56,0
,2,18785,46977,56,0
,2,18786,46979,56,0
,2,18787,46981,56,0
,2,18788,46983,56,0
,2,18789,46985,56,0
,2,18790,46987,56,0
,2,18791,46989,56,0
,2,18792,46991,56,0
,2,18793,46993,56,0
,2,18794,46995,56,0
,2,18795,46997,56,0
,2,18796,46999,56,0
,2,18797,47001,56,0
,2,18798,47003,56,0
,2,18799,47005,56,0
,2,18800,47007,56,0
,2,18801,47009,56,0
,2,18802,47011,56,0
,2,18803,47013,56,0
,2,18804,47015,56,0
,2,18805,47017,56,0
,2,18806,47019,56,0
,2,18807,47021,56,0
,2,18808,47023,56,0
,2,18809,47025,56,0
,2,18810,47027,56,0
,2,18811,47029,56,0
,2,18812,47031,56,0
,2,18813,47033,56,0
,2,18814,47035,56,0
,2,18815,47037,56,0
,2,18816,47039,56,0
,2,18817,47041,56,0
,2,18818,47043,56,0
,2,18819,47045,56,0
,2,18820,47047,56,0
,2,18821,47049,56,0
,2,18822,47051,56,0
,2,18823,47053,56,0
,2,18824,47055,56,0
,2,18825,47057,56,0
,2,18826,47059,56,0
,2,18827,47061,56,0
,2,18828,47063,56,0
,2,18829,47065,56,0
,2,18830,47067,56,0
,2,18831,47069,56,0
,2,18832,47071,56,0
,2,18833,47073,56,0
,2,18834,47075,56,0
,2,18835,47077,56,0
,2,18836,47079,56,0
,2,18837,47081,56,0
,2,18838,47083,56,0
,2,18839,47085,56,0
,2,18840,47087,56,0
,2,18841,47089,56,0
,2,18842,47091,56,0
,2,18843,47093,56,0
,2,18844,47095,56,0
,2,18845,47097,56,0
,2,18846,47099,56,0
,2,18847,47101,56,0
,2,18848,47103,56,0
,2,18849,47105,56,0
,2,18850,47107,56,0
,2,18851,47109,56,0
,2,18852,47111,56,0
,2,18853,47113,56,0
,2,18854,47115,56,0
,2,18855,47117,56,0
,2,18856,47119,56,0
,2,18857,47121,56,0
,2,18858,47123,56,0
,2,18859,47125,56,0
,2,18860,47127,56,0
,2,18861,47129,56,0
,2,18862,47131,56,0
,2,18863,47133,56,0
,2,18864,47135,56,0
,2,18865,47137,56,0
,2,18866,47139,56,0
,2,18867,47141,56,0
,2,18868,47143,56,0
,2,18869,47145,56,0
,2,18870,47147,56,0
,2,18871,47149,56,0
,2,18872,47151,56,0
,2,18873,47153,56,0
,2,18874,47155,56,0
,2,18875,47157,56,0
,2,18876,47159,56,0
,2,18877,47161,56,0
,2,18878,47163,56,0
,2,18879,47165,56,0
,2,18880,47167,56,0
,2,18881,47169,56,0
,2,18882,47171,56,0
,2,18883,47173,56,0
,2,18884,47175,56,0
,2,18885,47177,56,0
,2,18886,47179,56,0
,2,18887,47181,56,0
,2,18888,47183,56,0
,2,18889,47185,56,0
,2,18890,47187,56,0
,2,18891,47189,56,0
,2,18892,47191,56,0
,2,18893,47193,56,0
,2,18894,47195,56,0
,2,18895,47197,56,0
,2,18896,47199,56,0
,2,18897,47201,56,0
,2,18898,47203,56,0
,2,18899,47205,56,0
,2,18900,47207,56,0
,2,18901,47209,56,0
,2,18902,47211,56,0
,2,18903,47213,56,0
,2,18904,47215,56,0
,2,18905,47217,56,0
,2,18906,47219,56,0
,2,18907,47221,56,0
,2,18908,47223,56,0
,2,18909,47225,56,0
,2,18910,47227,56,0
,2,18911,47229,56,0
,2,18912,47231,56,0
,2,18913,47233,56,0
,2,18914,47235,56,0
,2,18915,47237,56,0
,2,18916,47239,56,0
,2,18917,47241,56,0
,2,18918,47243,56,0
,2,18919,47245,56,0
,2,18920,47247,56,0
,2,18921,47249,56,0
,2,18922,47251,56,0
,2,18923,47253,56,0
,2,18924,47255,56,0
,2,18925,47257,56,0
,2,18926,47259,56,0
,2,18927,47261,56,0
,2,18928,47263,56,0
,2,18929,47265,56,0
,2,18930,47267,56,0
,2,18931,47269,56,0
,2,18932,47271,56,0
,2,18933,47273,56,0
,2,18934,47275,56,0
,2,18935,47277,56,0
,2,18936,47279,56,0
,2,18937,47281,56,0
,2,18938,47283,56,0
,2,18939,47285,56,0
,2,18940,47287,56,0
,2,18941,47289,56,0
,2,18942,47291,56,0
,2,18943,47293,56,0
,2,18944,47295,56,0
,2,18945,47297,56,0
,2,18946,47299,56,0
,2,18947,47301,56,0
,2,18948,47303,56,0
,2,18949,47305,56,0
,2,18950,47307,56,0
,2,18951,47309,56,0
,2,18952,47311,56,0
,2,18953,47313,56,0
,2,18954,47315,56,0
,2,18955,47317,56,0
,2,18956,47319,56,0
,2,18957,47321,56,0
,2,18958,47323,56,0
,2,18959,47325,56,0
,2,18960,47327,56,0
,2,18961,47329,56,0
,2,18962,47331,56,0
,2,18963,47333,56,0
,2,18964,47335,56,0
,2,18965,47337,56,0
,2,18966,47339,56,0
,2,18967,47341,56,0
,2,18968,47343,56,0
,2,18969,47345,56,0
,2,18970,47347,56,0
,2,18971,47349,56,0
,2,18972,47351,56,0
,2,18973,47353,56,0
,2,18974,47355,56,0
,2,18975,47357,56,0
,2,18976,47359,56,0
,2,18977,47361,56,0
,2,18978,47363,56,0
,2,18979,47365,56,0
,2,18980,47367,56,0
,2,18981,47369,56,0
,2,18982,47371,56,0
,2,18983,47373,56,0
,2,18984,47375,56,0
,2,18985,47377,56,0
,2,18986,47379,56,0
,2,18987,47381,56,0
,2,18988,47383,56,0
,2,18989,47385,56,0
,2,18990,47387,56,0
,2,18991,47389,56,0
,2,18992,47391,56,0
,2,18993,47393,56,0
,2,18994,47395,56,0
,2,18995,47397,56,0
,2,18996,47399,56,0
,2,18997,47401,56,0
,2,18998,47403,56,0
,2,18999,47405,56,0
,2,19000,47407,56,0
,2,19001,47409,56,0
,2,19002,47411,56,0
,2,19003,47413,56,0
,2,19004,47415,56,0
,2,19005,47417,56,0
,2,19006,47419,56,0
,2,19007,47421,56,0
,2,19008,47423,56,0
,2,19009,47425,56,0
,2,19010,47427,56,0
,2,19011,47429,56,0
,2,19012,47431,56,0
,2,19013,47433,56,0
,2,19014,47435,56,0
,2,19015,47437,56,0
,2,19016,47439,56,0
,2,19017,47441,56,0
,2,19018,47443,56,0
,2,19019,47445,56,0
,2,19020,47447,56,0
,2,19021,47449,56,0
,2,19022,47451,56,0
,2,19023,47453,56,0
,2,19024,47455,56,0
,2,19025,47457,56,0
,2,19026,47459,56,0
,2,19027,47461,56,0
,2,19028,47463,56,0
,2,19029,47465,56,0
,2,19030,47467,56,0
,2,19031,47469,56,0
,2,19032,47471,56,0
,2,19033,47473,56,0
,2,19034,47475,56,0
,2,19035,47477,56,0
,2,19036,47479,56,0
,2,19037,47481,56,0
,2,19038,47483,56,0
,2,19039,47485,56,0
,2,19040,47487,56,0
,2,19041,47489,56,0
,2,19042,47491,56,0
,2,19043,47493,56,0
,2,19044,47495,56,0
,2,19045,47497,56,0
,2,19046,47499,56,0
,2,19047,47501,56,0
,2,19048,47503,56,0
,2,19049,47505,56,0
,2,19050,47507,56,0
,2,19051,47509,56,0
,2,19052,47511,56,0
,2,19053,47513,56,0
,2,19054,47515,56,0
,2,19055,47517,56,0
,2,19056,47519,56,0
,2,19057,47521,56,0
,2,19058,47523,56,0
,2,19059,47525,56,0
,2,19060,47527,56,0
,2,19061,47529,56,0
,2,19062,47531,56,0
,2,19063,47533,56,0
,2,19064,47535,56,0
,2,19065,47537,56,0
,2,19066,47539,56,0
,2,19067,47541,56,0
,2,19068,47543,56,0
,2,19069,47545,56,0
,2,19070,47547,56,0
,2,19071,47549,56,0
,2,19072,47551,56,0
,2,19073,47553,56,0
,2,19074,47555,56,0
,2,19075,47557,56,0
,2,19076,47559,56,0
,2,19077,47561,56,0
,2,19078,47563,56,0
,2,19079,47565,56,0
,2,19080,47567,56,0
,2,19081,47569,56,0
,2,19082,47571,56,0
,2,19083,47573,56,0
,2,19084,47575,56,0
,2,19085,47577,56,0
,2,19086,47579,56,0
,2,19087,47581,56,0
,2,19088,47583,56,0
,2,19089,47585,56,0
,2,19090,47587,56,0
,2,19091,47589,56,0
,2,19092,47591,56,0
,2,19093,47593,56,0
,2,19094,47595,56,0
,2,19095,47597,56,0
,2,19096,47599,56,0
,2,19097,47601,56,0
,2,19098,47603,56,0
,2,19099,47605,56,0
,2,19100,47607,56,0
,2,19101,47609,56,0
,2,19102,47611,56,0
,2,19103,47613,56,0
,2,19104,47615,56,0
,2,19105,47617,56,0
,2,19106,47619,56,0
,2,19107,47621,56,0
,2,19108,47623,56,0
,2,19109,47625,56,0
,2,19110,47627,56,0
,2,19111,47629,56,0
,2,19112,47631,56,0
,2,19113,47633,56,0
,2,19114,47635,56,0
,2,19115,47637,56,0
,2,19116,47639,56,0
,2,19117,47641,56,0
,2,19118,47643,56,0
,2,19119,47645,56,0
,2,19120,47647,56,0
,2,19121,47649,56,0
,2,19122,47651,56,0
,2,19123,47653,56,0
,2,19124,47655,56,0
,2,19125,47657,56,0
,2,19126,47659,56,0
,2,19127,47661,56,0
,2,19128,47663,56,0
,2,19129,47665,56,0
,2,19130,47667,56,0
,2,19131,47669,56,0
,2,19132,47671,56,0
,2,19133,47673,56,0
,2,19134,47675,56,0
,2,19135,47677,56,0
,2,19136,47679,56,0
,2,19137,47681,56,0
,2,19138,47683,56,0
,2,19139,47685,56,0
,2,19140,47687,56,0
,2,19141,47689,56,0
,2,19142,47691,56,0
,2,19143,47693,56,0
,2,19144,47695,56,0
,2,19145,47697,56,0
,2,19146,47699,56,0
,2,19147,47701,56,0
,2,19148,47703,56,0
,2,19149,47705,56,0
,2,19150,47707,56,0
,2,19151,47709,56,0
,2,19152,47711,56,0
,2,19153,47713,56,0
,2,19154,47715,56,0
,2,19155,47717,56,0
,2,19156,47719,56,0
,2,19157,47721,56,0
,2,19158,47723,56,0
,2,19159,47725,56,0
,2,19160,47727,56,0
,2,19161,47729,56,0
,2,19162,47731,56,0
,2,19163,47733,56,0
,2,19164,47735,56,0
,2,19165,47737,56,0
,2,19166,47739,56,0
,2,19167,47741,56,0
,2,19168,47743,56,0
,2,19169,47745,56,0
,2,19170,47747,56,0
,2,19171,47749,56,0
,2,19172,47751,56,0
,2,19173,47753,56,0
,2,19174,47755,56,0
,2,19175,47757,56,0
,2,19176,47759,56,0
,2,19177,47761,56,0
,2,19178,47763,56,0
,2,19179,47765,56,0
,2,19180,47767,56,0
,2,19181,47769,56,0
,2,19182,47771,56,0
,2,19183,47773,56,0
,2,19184,47775,56,0
,2,19185,47777,56,0
,2,19186,47779,56,0
,2,19187,47781,56,0
,2,19188,47783,56,0
,2,19189,47785,56,0
,2,19190,47787,56,0
,2,19191,47789,56,0
,2,19192,47791,56,0
,2,19193,47793,56,0
,2,19194,47795,56,0
,2,19195,47797,56,0
,2,19196,47799,56,0
,2,19197,47801,56,0
,2,19198,47803,56,0
,2,19199,47805,56,0
,2,19200,47807,56,0
,2,19201,47809,56,0
,2,19202,47811,56,0
,2,19203,47813,56,0
,2,19204,47815,56,0
,2,19205,47817,56,0
,2,19206,47819,56,0
,2,19207,47821,56,0
,2,19208,47823,56,0
,2,19209,47825,56,0
,2,19210,47827,56,0
,2,19211,47829,56,0
,2,19212,47831,56,0
,2,19213,47833,56,0
,2,19214,47835,56,0
,2,19215,47837,56,0
,2,19216,47839,56,0
,2,19217,47841,56,0
,2,19218,47843,56,0
,2,19219,47845,56,0
,2,19220,47847,56,0
,2,19221,47849,56,0
,2,19222,47851,56,0
,2,19223,47853,56,0
,2,19224,47855,56,0
,2,19225,47857,56,0
,2,19226,47859,56,0
,2,19227,47861,56,0
,2,19228,47863,56,0
,2,19229,47865,56,0
,2,19230,47867,56,0
,2,19231,47869,56,0
,2,19232,47871,56,0
,2,19233,47873,56,0
,2,19234,47875,56,0
,2,19235,47877,56,0
,2,19236,47879,56,0
,2,19237,47881,56,0
,2,19238,47883,56,0
,2,19239,47885,56,0
,2,19240,47887,56,0
,2,19241,47889,56,0
,2,19242,47891,56,0
,2,19243,47893,56,0
,2,19244,47895,56,0
,2,19245,47897,56,0
,2,19246,47899,56,0
,2,19247,47901,56,0
,2,19248,47903,56,0
,2,19249,47905,56,0
,2,19250,47907,56,0
,2,19251,47909,56,0
,2,19252,47911,56,0
,2,19253,47913,56,0
,2,19254,47915,56,0
,2,19255,47917,56,0
,2,19256,47919,56,0
,2,19257,47921,56,0
,2,19258,47923,56,0
,2,19259,47925,56,0
,2,19260,47927,56,0
,2,19261,47929,56,0
,2,19262,47931,56,0
,2,19263,47933,56,0
,2,19264,47935,56,0
,2,19265,47937,56,0
,2,19266,47939,56,0
,2,19267,47941,56,0
,2,19268,47943,56,0
,2,19269,47945,56,0
,2,19270,47947,56,0
,2,19271,47949,56,0
,2,19272,47951,56,0
,2,19273,47953,56,0
,2,19274,47955,56,0
,2,19275,47957,56,0
,2,19276,47959,56,0
,2,19277,47961,56,0
,2,19278,47963,56,0
,2,19279,47965,56,0
,2,19280,47967,56,0
,2,19281,47969,56,0
,2,19282,47971,56,0
,2,19283,47973,56,0
,2,19284,47975,56,0
,2,19285,47977,56,0
,2,19286,47979,56,0
,2,19287,47981,56,0
,2,19288,47983,56,0
,2,19289,47985,56,0
,2,19290,47987,56,0
,2,19291,47989,56,0
,2,19292,47991,56,0
,2,19293,47993,56,0
,2,19294,47995,56,0
,2,19295,47997,56,0
,2,19296,47999,56,0
,2,19297,48001,56,0
,2,19298,48003,56,0
,2,19299,48005,56,0
,2,19300,48007,56,0
,2,19301,48009,56,0
,2,19302,48011,56,0
,2,19303,48013,56,0
,2,19304,48015,56,0
,2,19305,48017,56,0
,2,19306,48019,56,0
,2,19307,48021,56,0
,2,19308,48023,56,0
,2,19309,48025,56,0
,2,19310,48027,56,0
,2,19311,48029,56,0
,2,19312,48031,56,0
,2,19313,48033,56,0
,2,19314,48035,56,0
,2,19315,48037,56,0
,2,19316,48039,56,0
,2,19317,48041,56,0
,2,19318,48043,56,0
,2,19319,48045,56,0
,2,19320,48047,56,0
,2,19321,48049,56,0
,2,19322,48051,56,0
,2,19323,48053,56,0
,2,19324,48055,56,0
,2,19325,48057,56,0
,2,19326,48059,56,0
,2,19327,48061,56,0
,2,19328,48063,56,0
,2,19329,48065,56,0
,2,19330,48067,56,0
,2,19331,48069,56,0
,2,19332,48071,56,0
,2,19333,48073,56,0
,2,19334,48075,56,0
,2,19335,48077,56,0
,2,19336,48079,56,0
,2,19337,48081,56,0
,2,19338,48083,56,0
,2,19339,48085,56,0
,2,19340,48087,56,0
,2,19341,48089,56,0
,2,19342,48091,56,0
,2,19343,48093,56,0
,2,19344,48095,56,0
,2,19345,48097,56,0
,2,19346,48099,56,0
,2,19347,48101,56,0
,2,19348,48103,56,0
,2,19349,48105,56,0
,2,19350,48107,56,0
,2,19351,48109,56,0
,2,19352,48111,56,0
,2,19353,48113,56,0
,2,19354,48115,56,0
,2,19355,48117,56,0
,2,19356,48119,56,0
,2,19357,48121,56,0
,2,19358,48123,56,0
,2,19359,48125,56,0
,2,19360,48127,56,0
,2,19361,48129,56,0
,2,19362,48131,56,0
,2,19363,48133,56,0
,2,19364,48135,56,0
,2,19365,48137,56,0
,2,19366,48139,56,0
,2,19367,48141,56,0
,2,19368,48143,56,0
,2,19369,48145,56,0
,2,19370,48147,56,0
,2,19371,48149,56,0
,2,19372,48151,56,0
,2,19373,48153,56,0
,2,19374,48155,56,0
,2,19375,48157,56,0
,2,19376,48159,56,0
,2,19377,48161,56,0
,2,19378,48163,56,0
,2,19379,48165,56,0
,2,19380,48167,56,0
,2,19381,48169,56,0
,2,19382,48171,56,0
,2,19383,48173,56,0
,2,19384,48175,56,0
,2,19385,48177,56,0
,2,19386,48179,56,0
,2,19387,48181,56,0
,2,19388,48183,56,0
,2,19389,48185,56,0
,2,19390,48187,56,0
,2,19391,48189,56,0
,2,19392,48191,56,0
,2,19393,48193,56,0
,2,19394,48195,56,0
,2,19395,48197,56,0
,2,19396,48199,56,0
,2,19397,48201,56,0
,2,19398,48203,56,0
,2,19399,48205,56,0
,2,19400,48207,56,0
,2,19401,48209,56,0
,2,19402,48211,56,0
,2,19403,48213,56,0
,2,19404,48215,56,0
,2,19405,48217,56,0
,2,19406,48219,56,0
,2,19407,48221,56,0
,2,19408,48223,56,0
,2,19409,48225,56,0
,2,19410,48227,56,0
,2,19411,48229,56,0
,2,19412,48231,56,0
,2,19413,48233,56,0
,2,19414,48235,56,0
,2,19415,48237,56,0
,2,19416,48239,56,0
,2,19417,48241,56,0
,2,19418,48243,56,0
,2,19419,48245,56,0
,2,19420,48247,56,0
,2,19421,48249,56,0
,2,19422,48251,56,0
,2,19423,48253,56,0
,2,19424,48255,56,0
,2,19425,48257,56,0
,2,19426,48259,56,0
,2,19427,48261,56,0
,2,19428,48263,56,0
,2,19429,48265,56,0
,2,19430,48267,56,0
,2,19431,48269,56,0
,2,19432,48271,56,0
,2,19433,48273,56,0
,2,19434,48275,56,0
,2,19435,48277,56,0
,2,19436,48279,56,0
,2,19437,48281,56,0
,2,19438,48283,56,0
,2,19439,48285,56,0
,2,19440,48287,56,0
,2,19441,48289,56,0
,2,19442,48291,56,0
,2,19443,48293,56,0
,2,19444,48295,56,0
,2,19445,48297,56,0
,2,19446,48299,56,0
,2,19447,48301,56,0
,2,19448,48303,56,0
,2,19449,48305,56,0
,2,19450,48307,56,0
,2,19451,48309,56,0
,2,19452,48311,56,0
,2,19453,48313,56,0
,2,19454,48315,56,0
,2,19455,48317,56,0
,2,19456,48319,56,0
,2,19457,48321,56,0
,2,19458,48323,56,0
,2,19459,48325,56,0
,2,19460,48327,56,0
,2,19461,48329,56,0
,2,19462,48331,56,0
,2,19463,48333,56,0
,2,19464,48335,56,0
,2,19465,48337,56,0
,2,19466,48339,56,0
,2,19467,48341,56,0
,2,19468,48343,56,0
,2,19469,48345,56,0
,2,19470,48347,56,0
,2,19471,48349,56,0
,2,19472,48351,56,0
,2,19473,48353,56,0
,2,19474,48355,56,0
,2,19475,48357,56,0
,2,19476,48359,56,0
,2,19477,48361,56,0
,2,19478,48363,56,0
,2,19479,48365,56,0
,2,19480,48367,56,0
,2,19481,48369,56,0
,2,19482,48371,56,0
,2,19483,48373,56,0
,2,19484,48375,56,0
,2,19485,48377,56,0
,2,19486,48379,56,0
,2,19487,48381,56,0
,2,19488,48383,56,0
,2,19489,48385,56,0
,2,19490,48387,56,0
,2,19491,48389,56,0
,2,19492,48391,56,0
,2,19493,48393,56,0
,2,19494,48395,56,0
,2,19495,48397,56,0
,2,19496,48399,56,0
,2,19497,48401,56,0
,2,19498,48403,56,0
,2,19499,48405,56,0
,2,19500,48407,56,0
,2,19501,48409,56,0
,2,19502,48411,56,0
,2,19503,48413,56,0
,2,19504,48415,56,0
,2,19505,48417,56,0
,2,19506,48419,56,0
,2,19507,48421,56,0
,2,19508,48423,56,0
,2,19509,48425,56,0
,2,19510,48427,56,0
,2,19511,48429,56,0
,2,19512,48431,56,0
,2,19513,48433,56,0
,2,19514,48435,56,0
,2,19515,48437,56,0
,2,19516,48439,56,0
,2,19517,48441,56,0
,2,19518,48443,56,0
,2,19519,48445,56,0
,2,19520,48447,56,0
,2,19521,48449,56,0
,2,19522,48451,56,0
,2,19523,48453,56,0
,2,19524,48455,56,0
,2,19525,48457,56,0
,2,19526,48459,56,0
,2,19527,48461,56,0
,2,19528,48463,56,0
,2,19529,48465,56,0
,2,19530,48467,56,0
,2,19531,48469,56,0
,2,19532,48471,56,0
,2,19533,48473,56,0
,2,19534,48475,56,0
,2,19535,48477,56,0
,2,19536,48479,56,0
,2,19537,48481,56,0
,2,19538,48483,56,0
,2,19539,48485,56,0
,2,19540,48487,56,0
,2,19541,48489,56,0
,2,19542,48491,56,0
,2,19543,48493,56,0
,2,19544,48495,56,0
,2,19545,48497,56,0
,2,19546,48499,56,0
,2,19547,48501,56,0
,2,19548,48503,56,0
,2,19549,48505,56,0
,2,19550,48507,56,0
,2,19551,48509,56,0
,2,19552,48511,56,0
,2,19553,48513,56,0
,2,19554,48515,56,0
,2,19555,48517,56,0
,2,19556,48519,56,0
,2,19557,48521,56,0
,2,19558,48523,56,0
,2,19559,48525,56,0
,2,19560,48527,56,0
,2,19561,48529,56,0
,2,19562,48531,56,0
,2,19563,48533,56,0
,2,19564,48535,56,0
,2,19565,48537,56,0
,2,19566,48539,56,0
,2,19567,48541,56,0
,2,19568,48543,56,0
,2,19569,48545,56,0
,2,19570,48547,56,0
,2,19571,48549,56,0
,2,19572,48551,56,0
,2,19573,48553,56,0
,2,19574,48555,56,0
,2,19575,48557,56,0
,2,19576,48559,56,0
,2,19577,48561,56,0
,2,19578,48563,56,0
,2,19579,48565,56,0
,2,19580,48567,56,0
,2,19581,48569,56,0
,2,19582,48571,56,0
,2,19583,48573,56,0
,2,19584,48575,56,0
,2,19585,48577,56,0
,2,19586,48579,56,0
,2,19587,48581,56,0
,2,19588,48583,56,0
,2,19589,48585,56,0
,2,19590,48587,56,0
,2,19591,48589,56,0
,2,19592,48591,56,0
,2,19593,48593,56,0
,2,19594,48595,56,0
,2,19595,48597,56,0
,2,19596,48599,56,0
,2,19597,48601,56,0
,2,19598,48603,56,0
,2,19599,48605,56,0
,2,19600,48607,56,0
,2,19601,48609,56,0
,2,19602,48611,56,0
,2,19603,48613,56,0
,2,19604,48615,56,0
,2,19605,48617,56,0
,2,19606,48619,56,0
,2,19607,48621,56,0
,2,19608,48623,56,0
,2,19609,48625,56,0
,2,19610,48627,56,0
,2,19611,48629,56,0
,2,19612,48631,56,0
,2,19613,48633,56,0
,2,19614,48635,56,0
,2,19615,48637,56,0
,2,19616,48639,56,0
,2,19617,48641,56,0
,2,19618,48643,56,0
,2,19619,48645,56,0
,2,19620,48647,56,0
,2,19621,48649,56,0
,2,19622,48651,56,0
,2,19623,48653,56,0
,2,19624,48655,56,0
,2,19625,48657,56,0
,2,19626,48659,56,0
,2,19627,48661,56,0
,2,19628,48663,56,0
,2,19629,48665,56,0
,2,19630,48667,56,0
,2,19631,48669,56,0
,2,19632,48671,56,0
,2,19633,48673,56,0
,2,19634,48675,56,0
,2,19635,48677,56,0
,2,19636,48679,56,0
,2,19637,48681,56,0
,2,19638,48683,56,0
,2,19639,48685,56,0
,2,19640,48687,56,0
,2,19641,48689,56,0
,2,19642,48691,56,0
,2,19643,48693,56,0
,2,19644,48695,56,0
,2,19645,48697,56,0
,2,19646,48699,56,0
,2,19647,48701,56,0
,2,19648,48703,56,0
,2,19649,48705,56,0
,2,19650,48707,56,0
,2,19651,48709,56,0
,2,19652,48711,56,0
,2,19653,48713,56,0
,2,19654,48715,56,0
,2,19655,48717,56,0
,2,19656,48719,56,0
,2,19657,48721,56,0
,2,19658,48723,56,0
,2,19659,48725,56,0
,2,19660,48727,56,0
,2,19661,48729,56,0
,2,19662,48731,56,0
,2,19663,48733,56,0
,2,19664,48735,56,0
,2,19665,48737,56,0
,2,19666,48739,56,0
,2,19667,48741,56,0
,2,19668,48743,56,0
,2,19669,48745,56,0
,2,19670,48747,56,0
,2,19671,48749,56,0
,2,19672,48751,56,0
,2,19673,48753,56,0
,2,19674,48755,56,0
,2,19675,48757,56,0
,2,19676,48759,56,0
,2,19677,48761,56,0
,2,19678,48763,56,0
,2,19679,48765,56,0
,2,19680,48767,56,0
,2,19681,48769,56,0
,2,19682,48771,56,0
,2,19683,48773,56,0
,2,19684,48775,56,0
,2,19685,48777,56,0
,2,19686,48779,56,0
,2,19687,48781,56,0
,2,19688,48783,56,0
,2,19689,48785,56,0
,2,19690,48787,56,0
,2,19691,48789,56,0
,2,19692,48791,56,0
,2,19693,48793,56,0
,2,19694,48795,56,0
,2,19695,48797,56,0
,2,19696,48799,56,0
,2,19697,48801,56,0
,2,19698,48803,56,0
,2,19699,48805,56,0
,2,19700,48807,56,0
,2,19701,48809,56,0
,2,19702,48811,56,0
,2,19703,48813,56,0
,2,19704,48815,56,0
,2,19705,48817,56,0
,2,19706,48819,56,0
,2,19707,48821,56,0
,2,19708,48823,56,0
,2,19709,48825,56,0
,2,19710,48827,56,0
,2,19711,48829,56,0
,2,19712,48831,56,0
,2,19713,48833,56,0
,2,19714,48835,56,0
,2,19715,48837,56,0
,2,19716,48839,56,0
,2,19717,48841,56,0
,2,19718,48843,56,0
,2,19719,48845,56,0
,2,19720,48847,56,0
,2,19721,48849,56,0
,2,19722,48851,56,0
,2,19723,48853,56,0
,2,19724,48855,56,0
,2,19725,48857,56,0
,2,19726,48859,56,0
,2,19727,48861,56,0
,2,19728,48863,56,0
,2,19729,48865,56,0
,2,19730,48867,56,0
,2,19731,48869,56,0
,2,19732,48871,56,0
,2,19733,48873,56,0
,2,19734,48875,56,0
,2,19735,48877,56,0
,2,19736,48879,56,0
,2,19737,48881,56,0
,2,19738,48883,56,0
,2,19739,48885,56,0
,2,19740,48887,56,0
,2,19741,48889,56,0
,2,19742,48891,56,0
,2,19743,48893,56,0
,2,19744,48895,56,0
,2,19745,48897,56,0
,2,19746,48899,56,0
,2,19747,48901,56,0
,2,19748,48903,56,0
,2,19749,48905,56,0
,2,19750,48907,56,0
,2,19751,48909,56,0
,2,19752,48911,56,0
,2,19753,48913,56,0
,2,19754,48915,56,0
,2,19755,48917,56,0
,2,19756,48919,56,0
,2,19757,48921,56,0
,2,19758,48923,56,0
,2,19759,48925,56,0
,2,19760,48927,56,0
,2,19761,48929,56,0
,2,19762,48931,56,0
,2,19763,48933,56,0
,2,19764,48935,56,0
,2,19765,48937,56,0
,2,19766,48939,56,0
,2,19767,48941,56,0
,2,19768,48943,56,0
,2,19769,48945,56,0
,2,19770,48947,56,0
,2,19771,48949,56,0
,2,19772,48951,56,0
,2,19773,48953,56,0
,2,19774,48955,56,0
,2,19775,48957,56,0
,2,19776,48959,56,0
,2,19777,48961,56,0
,2,19778,48963,56,0
,2,19779,48965,56,0
,2,19780,48967,56,0
,2,19781,48969,56,0
,2,19782,48971,56,0
,2,19783,48973,56,0
,2,19784,48975,56,0
,2,19785,48977,56,0
,2,19786,48979,56,0
,2,19787,48981,56,0
,2,19788,48983,56,0
,2,19789,48985,56,0
,2,19790,48987,56,0
,2,19791,48989,56,0
,2,19792,48991,56,0
,2,19793,48993,56,0
,2,19794,48995,56,0
,2,19795,48997,56,0
,2,19796,48999,56,0
,2,19797,49001,56,0
,2,19798,49003,56,0
,2,19799,49005,56,0
,2,19800,49007,56,0
,2,19801,49009,56,0
,2,19802,49011,56,0
,2,19803,49013,56,0
,2,19804,49015,56,0
,2,19805,49017,56,0
,2,19806,49019,56,0
,2,19807,49021,56,0
,2,19808,49023,56,0
,2,19809,49025,56,0
,2,19810,49027,56,0
,2,19811,49029,56,0
,2,19812,49031,56,0
,2,19813,49033,56,0
,2,19814,49035,56,0
,2,19815,49037,56,0
,2,19816,49039,56,0
,2,19817,49041,56,0
,2,19818,49043,56,0
,2,19819,49045,56,0
,2,19820,49047,56,0
,2,19821,49049,56,0
,2,19822,49051,56,0
,2,19823,49053,56,0
,2,19824,49055,56,0
,2,19825,49057,56,0
,2,19826,49059,56,0
,2,19827,49061,56,0
,2,19828,49063,56,0
,2,19829,49065,56,0
,2,19830,49067,56,0
,2,19831,49069,56,0
,2,19832,49071,56,0
,2,19833,49073,56,0
,2,19834,49075,56,0
,2,19835,49077,56,0
,2,19836,49079,56,0
,2,19837,49081,56,0
,2,19838,49083,56,0
,2,19839,49085,56,0
,2,19840,49087,56,0
,2,19841,49089,56,0
,2,19842,49091,56,0
,2,19843,49093,56,0
,2,19844,49095,56,0
,2,19845,49097,56,0
,2,19846,49099,56,0
,2,19847,49101,56,0
,2,19848,49103,56,0
,2,19849,49105,56,0
,2,19850,49107,56,0
,2,19851,49109,56,0
,2,19852,49111,56,0
,2,19853,49113,56,0
,2,19854,49115,56,0
,2,19855,49117,56,0
,2,19856,49119,56,0
,2,19857,49121,56,0
,2,19858,49123,56,0
,2,19859,49125,56,0
,2,19860,49127,56,0
,2,19861,49129,56,0
,2,19862,49131,56,0
,2,19863,49133,56,0
,2,19864,49135,56,0
,2,19865,49137,56,0
,2,19866,49139,56,0
,2,19867,49141,56,0
,2,19868,49143,56,0
,2,19869,49145,56,0
,2,19870,49147,56,0
,2,19871,49149,56,0
,2,19872,49151,56,0
,2,19873,49153,56,0
,2,19874,49155,56,0
,2,19875,49157,56,0
,2,19876,49159,56,0
,2,19877,49161,56,0
,2,19878,49163,56,0
,2,19879,49165,56,0
,2,19880,49167,56,0
,2,19881,49169,56,0
,2,19882,49171,56,0
,2,19883,49173,56,0
,2,19884,49175,56,0
,2,19885,49177,56,0
,2,19886,49179,56,0
,2,19887,49181,56,0
,2,19888,49183,56,0
,2,19889,49185,56,0
,2,19890,49187,56,0
,2,19891,49189,56,0
,2,19892,49191,56,0
,2,19893,49193,56,0
,2,19894,49195,56,0
,2,19895,49197,56,0
,2,19896,49199,56,0
,2,19897,49201,56,0
,2,19898,49203,56,0
,2,19899,49205,56,0
,2,19900,49207,56,0
,2,19901,49209,56,0
,2,19902,49211,56,0
,2,19903,49213,56,0
,2,19904,49215,56,0
,2,19905,49217,56,0
,2,19906,49219,56,0
,2,19907,49221,56,0
,2,19908,49223,56,0
,2,19909,49225,56,0
,2,19910,49227,56,0
,2,19911,49229,56,0
,2,19912,49231,56,0
,2,19913,49233,56,0
,2,19914,49235,56,0
,2,19915,49237,56,0
,2,19916,49239,56,0
,2,19917,49241,56,0
,2,19918,49243,56,0
,2,19919,49245,56,0
,2,19920,49247,56,0
,2,19921,49249,56,0
,2,19922,49251,56,0
,2,19923,49253,56,0
,2,19924,49255,56,0
,2,19925,49257,56,0
,2,19926,49259,56,0
,2,19927,49261,56,0
,2,19928,49263,56,0
,2,19929,49265,56,0
,2,19930,49267,56,0
,2,19931,49269,56,0
,2,19932,49271,56,0
,2,19933,49273,56,0
,2,19934,49275,56,0
,2,19935,49277,56,0
,2,19936,49279,56,0
,2,19937,49281,56,0
,2,19938,49283,56,0
,2,19939,49285,56,0
,2,19940,49287,56,0
,2,19941,49289,56,0
,2,19942,49291,56,0
,2,19943,49293,56,0
,2,19944,49295,56,0
,2,19945,49297,56,0
,2,19946,49299,56,0
,2,19947,49301,56,0
,2,19948,49303,56,0
,2,19949,49305,56,0
,2,19950,49307,56,0
,2,19951,49309,56,0
,2,19952,49311,56,0
,2,19953,49313,56,0
,2,19954,49315,56,0
,2,19955,49317,56,0
,2,19956,49319,56,0
,2,19957,49321,56,0
,2,19958,49323,56,0
,2,19959,49325,56,0
,2,19960,49327,56,0
,2,19961,49329,56,0
,2,19962,49331,56,0
,2,19963,49333,56,0
,2,19964,49335,56,0
,2,19965,49337,56,0
,2,19966,49339,56,0
,2,19967,49341,56,0
,2,19968,49343,56,0
,2,19969,49345,56,0
,2,19970,49347,56,0
,2,19971,49349,56,0
,2,19972,49351,56,0
,2,19973,49353,56,0
,2,19974,49355,56,0
,2,19975,49357,56,0
,2,19976,49359,56,0
,2,19977,49361,56,0
,2,19978,49363,56,0
,2,19979,49365,56,0
,2,19980,49367,56,0
,2,19981,49369,56,0
,2,19982,49371,56,0
,2,19983,49373,56,0
,2,19984,49375,56,0
,2,19985,49377,56,0
,2,19986,49379,56,0
,2,19987,49381,56,0
,2,19988,49383,56,0
,2,19989,49385,56,0
,2,19990,49387,56,0
,2,19991,49389,56,0
,2,19992,49391,56,0
,2,19993,49393,56,0
,2,19994,49395,56,0
,2,19995,49397,56,0
,2,19996,49399,56,0
,2,19997,49401,56,0
,2,19998,49403,56,0
,2,19999,49405,56,0
,2,20000,49407,56,0
,2,20001,49409,56,0
,2,20002,49411,56,0
,2,20003,49413,56,0
,2,20004,49415,56,0
,2,20005,49417,56,0
,2,20006,49419,56,0
,2,20007,49421,56,0
,2,20008,49423,56,0
,2,20009,49425,56,0
,2,20010,49427,56,0
,2,20011,49429,56,0
,2,20012,49431,56,0
,2,20013,49433,56,0
,2,20014,49435,56,0
,2,20015,49437,56,0
,2,20016,49439,56,0
,2,20017,49441,56,0
,2,20018,49443,56,0
,2,20019,49445,56,0
,2,20020,49447,56,0
,2,20021,49449,56,0
,2,20022,49451,56,0
,2,20023,49453,56,0
,2,20024,49455,56,0
,2,20025,49457,56,0
,2,20026,49459,56,0
,2,20027,49461,56,0
,2,20028,49463,56,0
,2,20029,49465,56,0
,2,20030,49467,56,0
,2,20031,49469,56,0
,2,20032,49471,56,0
,2,20033,49473,56,0
,2,20034,49475,56,0
,2,20035,49477,56,0
,2,20036,49479,56,0
,2,20037,49481,56,0
,2,20038,49483,56,0
,2,20039,49485,56,0
,2,20040,49487,56,0
,2,20041,49489,56,0
,2,20042,49491,56,0
,2,20043,49493,56,0
,2,20044,49495,56,0
,2,20045,49497,56,0
,2,20046,49499,56,0
,2,20047,49501,56,0
,2,20048,49503,56,0
,2,20049,49505,56,0
,2,20050,49507,56,0
,2,20051,49509,56,0
,2,20052,49511,56,0
,2,20053,49513,56,0
,2,20054,49515,56,0
,2,20055,49517,56,0
,2,20056,49519,56,0
,2,20057,49521,56,0
,2,20058,49523,56,0
,2,20059,49525,56,0
,2,20060,49527,56,0
,2,20061,49529,56,0
,2,20062,49531,56,0
,2,20063,49533,56,0
,2,20064,49535,56,0
,2,20065,49537,56,0
,2,20066,49539,56,0
,2,20067,49541,56,0
,2,20068,49543,56,0
,2,20069,49545,56,0
,2,20070,49547,56,0
,2,20071,49549,56,0
,2,20072,49551,56,0
,2,20073,49553,56,0
,2,20074,49555,56,0
,2,20075,49557,56,0
,2,20076,49559,56,0
,2,20077,49561,56,0
,2,20078,49563,56,0
,2,20079,49565,56,0
,2,20080,49567,56,0
,2,20081,49569,56,0
,2,20082,49571,56,0
,2,20083,49573,56,0
,2,20084,49575,56,0
,2,20085,49577,56,0
,2,20086,49579,56,0
,2,20087,49581,56,0
,2,20088,49583,56,0
,2,20089,49585,56,0
,2,20090,49587,56,0
,2,20091,49589,56,0
,2,20092,49591,56,0
,2,20093,49593,56,0
,2,20094,49595,56,0
,2,20095,49597,56,0
,2,20096,49599,56,0
,2,20097,49601,56,0
,2,20098,49603,56,0
,2,20099,49605,56,0
,2,20100,49607,56,0
,2,20101,49609,56,0
,2,20102,49611,56,0
,2,20103,49613,56,0
,2,20104,49615,56,0
,2,20105,49617,56,0
,2,20106,49619,56,0
,2,20107,49621,56,0
,2,20108,49623,56,0
,2,20109,49625,56,0
,2,20110,49627,56,0
,2,20111,49629,56,0
,2,20112,49631,56,0
,2,20113,49633,56,0
,2,20114,49635,56,0
,2,20115,49637,56,0
,2,20116,49639,56,0
,2,20117,49641,56,0
,2,20118,49643,56,0
,2,20119,49645,56,0
,2,20120,49647,56,0
,2,20121,49649,56,0
,2,20122,49651,56,0
,2,20123,49653,56,0
,2,20124,49655,56,0
,2,20125,49657,56,0
,2,20126,49659,56,0
,2,20127,49661,56,0
,2,20128,49663,56,0
,2,20129,49665,56,0
,2,20130,49667,56,0
,2,20131,49669,56,0
,2,20132,49671,56,0
,2,20133,49673,56,0
,2,20134,49675,56,0
,2,20135,49677,56,0
,2,20136,49679,56,0
,2,20137,49681,56,0
,2,20138,49683,56,0
,2,20139,49685,56,0
,2,20140,49687,56,0
,2,20141,49689,56,0
,2,20142,49691,56,0
,2,20143,49693,56,0
,2,20144,49695,56,0
,2,20145,49697,56,0
,2,20146,49699,56,0
,2,20147,49701,56,0
,2,20148,49703,56,0
,2,20149,49705,56,0
,2,20150,49707,56,0
,2,20151,49709,56,0
,2,20152,49711,56,0
,2,20153,49713,56,0
,2,20154,49715,56,0
,2,20155,49717,56,0
,2,20156,49719,56,0
,2,20157,49721,56,0
,2,20158,49723,56,0
,2,20159,49725,56,0
,2,20160,49727,56,0
,2,20161,49729,56,0
,2,20162,49731,56,0
,2,20163,49733,56,0
,2,20164,49735,56,0
,2,20165,49737,56,0
,2,20166,49739,56,0
,2,20167,49741,56,0
,2,20168,49743,56,0
,2,20169,49745,56,0
,2,20170,49747,56,0
,2,20171,49749,56,0
,2,20172,49751,56,0
,2,20173,49753,56,0
,2,20174,49755,56,0
,2,20175,49757,56,0
,2,20176,49759,56,0
,2,20177,49761,56,0
,2,20178,49763,56,0
,2,20179,49765,56,0
,2,20180,49767,56,0
,2,20181,49769,56,0
,2,20182,49771,56,0
,2,20183,49773,56,0
,2,20184,49775,56,0
,2,20185,49777,56,0
,2,20186,49779,56,0
,2,20187,49781,56,0
,2,20188,49783,56,0
,2,20189,49785,56,0
,2,20190,49787,56,0
,2,20191,49789,56,0
,2,20192,49791,56,0
,2,20193,49793,56,0
,2,20194,49795,56,0
,2,20195,49797,56,0
,2,20196,49799,56,0
,2,20197,49801,56,0
,2,20198,49803,56,0
,2,20199,49805,56,0
,2,20200,49807,56,0
,2,20201,49809,56,0
,2,20202,49811,56,0
,2,20203,49813,56,0
,2,20204,49815,56,0
,2,20205,49817,56,0
,2,20206,49819,56,0
,2,20207,49821,56,0
,2,20208,49823,56,0
,2,20209,49825,56,0
,2,20210,49827,56,0
,2,20211,49829,56,0
,2,20212,49831,56,0
,2,20213,49833,56,0
,2,20214,49835,56,0
,2,20215,49837,56,0
,2,20216,49839,56,0
,2,20217,49841,56,0
,2,20218,49843,56,0
,2,20219,49845,56,0
,2,20220,49847,56,0
,2,20221,49849,56,0
,2,20222,49851,56,0
,2,20223,49853,56,0
,2,20224,49855,56,0
,2,20225,49857,56,0
,2,20226,49859,56,0
,2,20227,49861,56,0
,2,20228,49863,56,0
,2,20229,49865,56,0
,2,20230,49867,56,0
,2,20231,49869,56,0
,2,20232,49871,56,0
,2,20233,49873,56,0
,2,20234,49875,56,0
,2,20235,49877,56,0
,2,20236,49879,56,0
,2,20237,49881,56,0
,2,20238,49883,56,0
,2,20239,49885,56,0
,2,20240,49887,56,0
,2,20241,49889,56,0
,2,20242,49891,56,0
,2,20243,49893,56,0
,2,20244,49895,56,0
,2,20245,49897,56,0
,2,20246,49899,56,0
,2,20247,49901,56,0
,2,20248,49903,56,0
,2,20249,49905,56,0
,2,20250,49907,56,0
,2,20251,49909,56,0
,2,20252,49911,56,0
,2,20253,49913,56,0
,2,20254,49915,56,0
,2,20255,49917,56,0
,2,20256,49919,56,0
,2,20257,49921,56,0
,2,20258,49923,56,0
,2,20259,49925,56,0
,2,20260,49927,56,0
,2,20261,49929,56,0
,2,20262,49931,56,0
,2,20263,49933,56,0
,2,20264,49935,56,0
,2,20265,49937,56,0
,2,20266,49939,56,0
,2,20267,49941,56,0
,2,20268,49943,56,0
,2,20269,49945,56,0
,2,20270,49947,56,0
,2,20271,49949,56,0
,2,20272,49951,56,0
,2,20273,49953,56,0
,2,20274,49955,56,0
,2,20275,49957,56,0
,2,20276,49959,56,0
,2,20277,49961,56,0
,2,20278,49963,56,0
,2,20279,49965,56,0
,2,20280,49967,56,0
,2,20281,49969,56,0
,2,20282,49971,56,0
,2,20283,49973,56,0
,2,20284,49975,56,0
,2,20285,49977,56,0
,2,20286,49979,56,0
,2,20287,49981,56,0
,2,20288,49983,56,0
,2,20289,49985,56,0
,2,20290,49987,56,0
,2,20291,49989,56,0
,2,20292,49991,56,0
,2,20293,49993,56,0
,2,20294,49995,56,0
,2,20295,49997,56,0
,2,20296,49999,56,0
,2,20297,50001,56,0
,2,20298,50003,56,0
,2,20299,50005,56,0
,2,20300,50007,56,0
,2,20301,50009,56,0
,2,20302,50011,56,0
,2,20303,50013,56,0
,2,20304,50015,56,0
,2,20305,50017,56,0
,2,20306,50019,56,0
,2,20307,50021,56,0
,2,20308,50023,56,0
,2,20309,50025,56,0
,2,20310,50027,56,0
,2,20311,50029,56,0
,2,20312,50031,56,0
,2,20313,50033,56,0
,2,20314,50035,56,0
,2,20315,50037,56,0
,2,20316,50039,56,0
,2,20317,50041,56,0
,2,20318,50043,56,0
,2,20319,50045,56,0
,2,20320,50047,56,0
,2,20321,50049,56,0
,2,20322,50051,56,0
,2,20323,50053,56,0
,2,20324,50055,56,0
,2,20325,50057,56,0
,2,20326,50059,56,0
,2,20327,50061,56,0
,2,20328,50063,56,0
,2,20329,50065,56,0
,2,20330,50067,56,0
,2,20331,50069,56,0
,2,20332,50071,56,0
,2,20333,50073,56,0
,2,20334,50075,56,0
,2,20335,50077,56,0
,2,20336,50079,56,0
,2,20337,50081,56,0
,2,20338,50083,56,0
,2,20339,50085,56,0
,2,20340,50087,56,0
,2,20341,50089,56,0
,2,20342,50091,56,0
,2,20343,50093,56,0
,2,20344,50095,56,0
,2,20345,50097,56,0
,2,20346,50099,56,0
,2,20347,50101,56,0
,2,20348,50103,56,0
,2,20349,50105,56,0
,2,20350,50107,56,0
,2,20351,50109,56,0
,2,20352,50111,56,0
,2,20353,50113,56,0
,2,20354,50115,56,0
,2,20355,50117,56,0
,2,20356,50119,56,0
,2,20357,50121,56,0
,2,20358,50123,56,0
,2,20359,50125,56,0
,2,20360,50127,56,0
,2,20361,50129,56,0
,2,20362,50131,56,0
,2,20363,50133,56,0
,2,20364,50135,56,0
,2,20365,50137,56,0
,2,20366,50139,56,0
,2,20367,50141,56,0
,2,20368,50143,56,0
,2,20369,50145,56,0
,2,20370,50147,56,0
,2,20371,50149,56,0
,2,20372,50151,56,0
,2,20373,50153,56,0
,2,20374,50155,56,0
,2,20375,50157,56,0
,2,20376,50159,56,0
,2,20377,50161,56,0
,2,20378,50163,56,0
,2,20379,50165,56,0
,2,20380,50167,56,0
,2,20381,50169,56,0
,2,20382,50171,56,0
,2,20383,50173,56,0
,2,20384,50175,56,0
,2,20385,50177,56,0
,2,20386,50179,56,0
,2,20387,50181,56,0
,2,20388,50183,56,0
,2,20389,50185,56,0
,2,20390,50187,56,0
,2,20391,50189,56,0
,2,20392,50191,56,0
,2,20393,50193,56,0
,2,20394,50195,56,0
,2,20395,50197,56,0
,2,20396,50199,56,0
,2,20397,50201,56,0
,2,20398,50203,56,0
,2,20399,50205,56,0
,2,20400,50207,56,0
,2,20401,50209,56,0
,2,20402,50211,56,0
,2,20403,50213,56,0
,2,20404,50215,56,0
,2,20405,50217,56,0
,2,20406,50219,56,0
,2,20407,50221,56,0
,2,20408,50223,56,0
,2,20409,50225,56,0
,2,20410,50227,56,0
,2,20411,50229,56,0
,2,20412,50231,56,0
,2,20413,50233,56,0
,2,20414,50235,56,0
,2,20415,50237,56,0
,2,20416,50239,56,0
,2,20417,50241,56,0
,2,20418,50243,56,0
,2,20419,50245,56,0
,2,20420,50247,56,0
,2,20421,50249,56,0
,2,20422,50251,56,0
,2,20423,50253,56,0
,2,20424,50255,56,0
,2,20425,50257,56,0
,2,20426,50259,56,0
,2,20427,50261,56,0
,2,20428,50263,56,0
,2,20429,50265,56,0
,2,20430,50267,56,0
,2,20431,50269,56,0
,2,20432,50271,56,0
,2,20433,50273,56,0
,2,20434,50275,56,0
,2,20435,50277,56,0
,2,20436,50279,56,0
,2,20437,50281,56,0
,2,20438,50283,56,0
,2,20439,50285,56,0
,2,20440,50287,56,0
,2,20441,50289,56,0
,2,20442,50291,56,0
,2,20443,50293,56,0
,2,20444,50295,56,0
,2,20445,50297,56,0
,2,20446,50299,56,0
,2,20447,50301,56,0
,2,20448,50303,56,0
,2,20449,50305,56,0
,2,20450,50307,56,0
,2,20451,50309,56,0
,2,20452,50311,56,0
,2,20453,50313,56,0
,2,20454,50315,56,0
,2,20455,50317,56,0
,2,20456,50319,56,0
,2,20457,50321,56,0
,2,20458,50323,56,0
,2,20459,50325,56,0
,2,20460,50327,56,0
,2,20461,50329,56,0
,2,20462,50331,56,0
,2,20463,50333,56,0
,2,20464,50335,56,0
,2,20465,50337,56,0
,2,20466,50339,56,0
,2,20467,50341,56,0
,2,20468,50343,56,0
,2,20469,50345,56,0
,2,20470,50347,56,0
,2,20471,50349,56,0
,2,20472,50351,56,0
,2,20473,50353,56,0
,2,20474,50355,56,0
,2,20475,50357,56,0
,2,20476,50359,56,0
,2,20477,50361,56,0
,2,20478,50363,56,0
,2,20479,50365,56,0
,2,20480,50367,56,0
,2,20481,50369,56,0
,2,20482,50371,56,0
,2,20483,50373,56,0
,2,20484,50375,56,0
,2,20485,50377,56,0
,2,20486,50379,56,0
,2,20487,50381,56,0
,2,20488,50383,56,0
,2,20489,50385,56,0
,2,20490,50387,56,0
,2,20491,50389,56,0
,2,20492,50391,56,0
,2,20493,50393,56,0
,2,20494,50395,56,0
,2,20495,50397,56,0
,2,20496,50399,56,0
,2,20497,50401,56,0
,2,20498,50403,56,0
,2,20499,50405,56,0
,2,20500,50407,56,0
,2,20501,50409,56,0
,2,20502,50411,56,0
,2,20503,50413,56,0
,2,20504,50415,56,0
,2,20505,50417,56,0
,2,20506,50419,56,0
,2,20507,50421,56,0
,2,20508,50423,56,0
,2,20509,50425,56,0
,2,20510,50427,56,0
,2,20511,50429,56,0
,2,20512,50431,56,0
,2,20513,50433,56,0
,2,20514,50435,56,0
,2,20515,50437,56,0
,2,20516,50439,56,0
,2,20517,50441,56,0
,2,20518,50443,56,0
,2,20519,50445,56,0
,2,20520,50447,56,0
,2,20521,50449,56,0
,2,20522,50451,56,0
,2,20523,50453,56,0
,2,20524,50455,56,0
,2,20525,50457,56,0
,2,20526,50459,56,0
,2,20527,50461,56,0
,2,20528,50463,56,0
,2,20529,50465,56,0
,2,20530,50467,56,0
,2,20531,50469,56,0
,2,20532,50471,56,0
,2,20533,50473,56,0
,2,20534,50475,56,0
,2,20535,50477,56,0
,2,20536,50479,56,0
,2,20537,50481,56,0
,2,20538,50483,56,0
,2,20539,50485,56,0
,2,20540,50487,56,0
,2,20541,50489,56,0
,2,20542,50491,56,0
,2,20543,50493,56,0
,2,20544,50495,56,0
,2,20545,50497,56,0
,2,20546,50499,56,0
,2,20547,50501,56,0
,2,20548,50503,56,0
,2,20549,50505,56,0
,2,20550,50507,56,0
,2,20551,50509,56,0
,2,20552,50511,56,0
,2,20553,50513,56,0
,2,20554,50515,56,0
,2,20555,50517,56,0
,2,20556,50519,56,0
,2,20557,50521,56,0
,2,20558,50523,56,0
,2,20559,50525,56,0
,2,20560,50527,56,0
,2,20561,50529,56,0
,2,20562,50531,56,0
,2,20563,50533,56,0
,2,20564,50535,56,0
,2,20565,50537,56,0
,2,20566,50539,56,0
,2,20567,50541,56,0
,2,20568,50543,56,0
,2,20569,50545,56,0
,2,20570,50547,56,0
,2,20571,50549,56,0
,2,20572,50551,56,0
,2,20573,50553,56,0
,2,20574,50555,56,0
,2,20575,50557,56,0
,2,20576,50559,56,0
,2,20577,50561,56,0
,2,20578,50563,56,0
,2,20579,50565,56,0
,2,20580,50567,56,0
,2,20581,50569,56,0
,2,20582,50571,56,0
,2,20583,50573,56,0
,2,20584,50575,56,0
,2,20585,50577,56,0
,2,20586,50579,56,0
,2,20587,50581,56,0
,2,20588,50583,56,0
,2,20589,50585,56,0
,2,20590,50587,56,0
,2,20591,50589,56,0
,2,20592,50591,56,0
,2,20593,50593,56,0
,2,20594,50595,56,0
,2,20595,50597,56,0
,2,20596,50599,56,0
,2,20597,50601,56,0
,2,20598,50603,56,0
,2,20599,50605,56,0
,2,20600,50607,56,0
,2,20601,50609,56,0
,2,20602,50611,56,0
,2,20603,50613,56,0
,2,20604,50615,56,0
,2,20605,50617,56,0
,2,20606,50619,56,0
,2,20607,50621,56,0
,2,20608,50623,56,0
,2,20609,50625,56,0
,2,20610,50627,56,0
,2,20611,50629,56,0
,2,20612,50631,56,0
,2,20613,50633,56,0
,2,20614,50635,56,0
,2,20615,50637,56,0
,2,20616,50639,56,0
,2,20617,50641,56,0
,2,20618,50643,56,0
,2,20619,50645,56,0
,2,20620,50647,56,0
,2,20621,50649,56,0
,2,20622,50651,56,0
,2,20623,50653,56,0
,2,20624,50655,56,0
,2,20625,50657,56,0
,2,20626,50659,56,0
,2,20627,50661,56,0
,2,20628,50663,56,0
,2,20629,50665,56,0
,2,20630,50667,56,0
,2,20631,50669,56,0
,2,20632,50671,56,0
,2,20633,50673,56,0
,2,20634,50675,56,0
,2,20635,50677,56,0
,2,20636,50679,56,0
,2,20637,50681,56,0
,2,20638,50683,56,0
,2,20639,50685,56,0
,2,20640,50687,56,0
,2,20641,50689,56,0
,2,20642,50691,56,0
,2,20643,50693,56,0
,2,20644,50695,56,0
,2,20645,50697,56,0
,2,20646,50699,56,0
,2,20647,50701,56,0
,2,20648,50703,56,0
,2,20649,50705,56,0
,2,20650,50707,56,0
,2,20651,50709,56,0
,2,20652,50711,56,0
,2,20653,50713,56,0
,2,20654,50715,56,0
,2,20655,50717,56,0
,2,20656,50719,56,0
,2,20657,50721,56,0
,2,20658,50723,56,0
,2,20659,50725,56,0
,2,20660,50727,56,0
,2,20661,50729,56,0
,2,20662,50731,56,0
,2,20663,50733,56,0
,2,20664,50735,56,0
,2,20665,50737,56,0
,2,20666,50739,56,0
,2,20667,50741,56,0
,2,20668,50743,56,0
,2,20669,50745,56,0
,2,20670,50747,56,0
,2,20671,50749,56,0
,2,20672,50751,56,0
,2,20673,50753,56,0
,2,20674,50755,56,0
,2,20675,50757,56,0
,2,20676,50759,56,0
,2,20677,50761,56,0
,2,20678,50763,56,0
,2,20679,50765,56,0
,2,20680,50767,56,0
,2,20681,50769,56,0
,2,20682,50771,56,0
,2,20683,50773,56,0
,2,20684,50775,56,0
,2,20685,50777,56,0
,2,20686,50779,56,0
,2,20687,50781,56,0
,2,20688,50783,56,0
,2,20689,50785,56,0
,2,20690,50787,56,0
,2,20691,50789,56,0
,2,20692,50791,56,0
,2,20693,50793,56,0
,2,20694,50795,56,0
,2,20695,50797,56,0
,2,20696,50799,56,0
,2,20697,50801,56,0
,2,20698,50803,56,0
,2,20699,50805,56,0
,2,20700,50807,56,0
,2,20701,50809,56,0
,2,20702,50811,56,0
,2,20703,50813,56,0
,2,20704,50815,56,0
,2,20705,50817,56,0
,2,20706,50819,56,0
,2,20707,50821,56,0
,2,20708,50823,56,0
,2,20709,50825,56,0
,2,20710,50827,56,0
,2,20711,50829,56,0
,2,20712,50831,56,0
,2,20713,50833,56,0
,2,20714,50835,56,0
,2,20715,50837,56,0
,2,20716,50839,56,0
,2,20717,50841,56,0
,2,20718,50843,56,0
,2,20719,50845,56,0
,2,20720,50847,56,0
,2,20721,50849,56,0
,2,20722,50851,56,0
,2,20723,50853,56,0
,2,20724,50855,56,0
,2,20725,50857,56,0
,2,20726,50859,56,0
,2,20727,50861,56,0
,2,20728,50863,56,0
,2,20729,50865,56,0
,2,20730,50867,56,0
,2,20731,50869,56,0
,2,20732,50871,56,0
,2,20733,50873,56,0
,2,20734,50875,56,0
,2,20735,50877,56,0
,2,20736,50879,56,0
,2,20737,50881,56,0
,2,20738,50883,56,0
,2,20739,50885,56,0
,2,20740,50887,56,0
,2,20741,50889,56,0
,2,20742,50891,56,0
,2,20743,50893,56,0
,2,20744,50895,56,0
,2,20745,50897,56,0
,2,20746,50899,56,0
,2,20747,50901,56,0
,2,20748,50903,56,0
,2,20749,50905,56,0
,2,20750,50907,56,0
,2,20751,50909,56,0
,2,20752,50911,56,0
,2,20753,50913,56,0
,2,20754,50915,56,0
,2,20755,50917,56,0
,2,20756,50919,56,0
,2,20757,50921,56,0
,2,20758,50923,56,0
,2,20759,50925,56,0
,2,20760,50927,56,0
,2,20761,50929,56,0
,2,20762,50931,56,0
,2,20763,50933,56,0
,2,20764,50935,56,0
,2,20765,50937,56,0
,2,20766,50939,56,0
,2,20767,50941,56,0
,2,20768,50943,56,0
,2,20769,50945,56,0
,2,20770,50947,56,0
,2,20771,50949,56,0
,2,20772,50951,56,0
,2,20773,50953,56,0
,2,20774,50955,56,0
,2,20775,50957,56,0
,2,20776,50959,56,0
,2,20777,50961,56,0
,2,20778,50963,56,0
,2,20779,50965,56,0
,2,20780,50967,56,0
,2,20781,50969,56,0
,2,20782,50971,56,0
,2,20783,50973,56,0
,2,20784,50975,56,0
,2,20785,50977,56,0
,2,20786,50979,56,0
,2,20787,50981,56,0
,2,20788,50983,56,0
,2,20789,50985,56,0
,2,20790,50987,56,0
,2,20791,50989,56,0
,2,20792,50991,56,0
,2,20793,50993,56,0
,2,20794,50995,56,0
,2,20795,50997,56,0
,2,20796,50999,56,0
,2,20797,51001,56,0
,2,20798,51003,56,0
,2,20799,51005,56,0
,2,20800,51007,56,0
,2,20801,51009,56,0
,2,20802,51011,56,0
,2,20803,51013,56,0
,2,20804,51015,56,0
,2,20805,51017,56,0
,2,20806,51019,56,0
,2,20807,51021,56,0
,2,20808,51023,56,0
,2,20809,51025,56,0
,2,20810,51027,56,0
,2,20811,51029,56,0
,2,20812,51031,56,0
,2,20813,51033,56,0
,2,20814,51035,56,0
,2,20815,51037,56,0
,2,20816,51039,56,0
,2,20817,51041,56,0
,2,20818,51043,56,0
,2,20819,51045,56,0
,2,20820,51047,56,0
,2,20821,51049,56,0
,2,20822,51051,56,0
,2,20823,51053,56,0
,2,20824,51055,56,0
,2,20825,51057,56,0
,2,20826,51059,56,0
,2,20827,51061,56,0
,2,20828,51063,56,0
,2,20829,51065,56,0
,2,20830,51067,56,0
,2,20831,51069,56,0
,2,20832,51071,56,0
,2,20833,51073,56,0
,2,20834,51075,56,0
,2,20835,51077,56,0
,2,20836,51079,56,0
,2,20837,51081,56,0
,2,20838,51083,56,0
,2,20839,51085,56,0
,2,20840,51087,56,0
,2,20841,51089,56,0
,2,20842,51091,56,0
,2,20843,51093,56,0
,2,20844,51095,56,0
,2,20845,51097,56,0
,2,20846,51099,56,0
,2,20847,51101,56,0
,2,20848,51103,56,0
,2,20849,51105,56,0
,2,20850,51107,56,0
,2,20851,51109,56,0
,2,20852,51111,56,0
,2,20853,51113,56,0
,2,20854,51115,56,0
,2,20855,51117,56,0
,2,20856,51119,56,0
,2,20857,51121,56,0
,2,20858,51123,56,0
,2,20859,51125,56,0
,2,20860,51127,56,0
,2,20861,51129,56,0
,2,20862,51131,56,0
,2,20863,51133,56,0
,2,20864,51135,56,0
,2,20865,51137,56,0
,2,20866,51139,56,0
,2,20867,51141,56,0
,2,20868,51143,56,0
,2,20869,51145,56,0
,2,20870,51147,56,0
,2,20871,51149,56,0
,2,20872,51151,56,0
,2,20873,51153,56,0
,2,20874,51155,56,0
,2,20875,51157,56,0
,2,20876,51159,56,0
,2,20877,51161,56,0
,2,20878,51163,56,0
,2,20879,51165,56,0
,2,20880,51167,56,0
,2,20881,51169,56,0
,2,20882,51171,56,0
,2,20883,51173,56,0
,2,20884,51175,56,0
,2,20885,51177,56,0
,2,20886,51179,56,0
,2,20887,51181,56,0
,2,20888,51183,56,0
,2,20889,51185,56,0
,2,20890,51187,56,0
,2,20891,51189,56,0
,2,20892,51191,56,0
,2,20893,51193,56,0
,2,20894,51195,56,0
,2,20895,51197,56,0
,2,20896,51199,56,0
,2,20897,51201,56,0
,2,20898,51203,56,0
,2,20899,51205,56,0
,2,20900,51207,56,0
,2,20901,51209,56,0
,2,20902,51211,56,0
,2,20903,51213,56,0
,2,20904,51215,56,0
,2,20905,51217,56,0
,2,20906,51219,56,0
,2,20907,51221,56,0
,2,20908,51223,56,0
,2,20909,51225,56,0
,2,20910,51227,56,0
,2,20911,51229,56,0
,2,20912,51231,56,0
,2,20913,51233,56,0
,2,20914,51235,56,0
,2,20915,51237,56,0
,2,20916,51239,56,0
,2,20917,51241,56,0
,2,20918,51243,56,0
,2,20919,51245,56,0
,2,20920,51247,56,0
,2,20921,51249,56,0
,2,20922,51251,56,0
,2,20923,51253,56,0
,2,20924,51255,56,0
,2,20925,51257,56,0
,2,20926,51259,56,0
,2,20927,51261,56,0
,2,20928,51263,56,0
,2,20929,51265,56,0
,2,20930,51267,56,0
,2,20931,51269,56,0
,2,20932,51271,56,0
,2,20933,51273,56,0
,2,20934,51275,56,0
,2,20935,51277,56,0
,2,20936,51279,56,0
,2,20937,51281,56,0
,2,20938,51283,56,0
,2,20939,51285,56,0
,2,20940,51287,56,0
,2,20941,51289,56,0
,2,20942,51291,56,0
,2,20943,51293,56,0
,2,20944,51295,56,0
,2,20945,51297,56,0
,2,20946,51299,56,0
,2,20947,51301,56,0
,2,20948,51303,56,0
,2,20949,51305,56,0
,2,20950,51307,56,0
,2,20951,51309,56,0
,2,20952,51311,56,0
,2,20953,51313,56,0
,2,20954,51315,56,0
,2,20955,51317,56,0
,2,20956,51319,56,0
,2,20957,51321,56,0
,2,20958,51323,56,0
,2,20959,51325,56,0
,2,20960,51327,56,0
,2,20961,51329,56,0
,2,20962,51331,56,0
,2,20963,51333,56,0
,2,20964,51335,56,0
,2,20965,51337,56,0
,2,20966,51339,56,0
,2,20967,51341,56,0
,2,20968,51343,56,0
,2,20969,51345,56,0
,2,20970,51347,56,0
,2,20971,51349,56,0
,2,20972,51351,56,0
,2,20973,51353,56,0
,2,20974,51355,56,0
,2,20975,51357,56,0
,2,20976,51359,56,0
,2,20977,51361,56,0
,2,20978,51363,56,0
,2,20979,51365,56,0
,2,20980,51367,56,0
,2,20981,51369,56,0
,2,20982,51371,56,0
,2,20983,51373,56,0
,2,20984,51375,56,0
,2,20985,51377,56,0
,2,20986,51379,56,0
,2,20987,51381,56,0
,2,20988,51383,56,0
,2,20989,51385,56,0
,2,20990,51387,56,0
,2,20991,51389,56,0
,2,20992,51391,56,0
,2,20993,51393,56,0
,2,20994,51395,56,0
,2,20995,51397,56,0
,2,20996,51399,56,0
,2,20997,51401,56,0
,2,20998,51403,56,0
,2,20999,51405,56,0
,2,21000,51407,56,0
,2,21001,51409,56,0
,2,21002,51411,56,0
,2,21003,51413,56,0
,2,21004,51415,56,0
,2,21005,51417,56,0
,2,21006,51419,56,0
,2,21007,51421,56,0
,2,21008,51423,56,0
,2,21009,51425,56,0
,2,21010,51427,56,0
,2,21011,51429,56,0
,2,21012,51431,56,0
,2,21013,51433,56,0
,2,21014,51435,56,0
,2,21015,51437,56,0
,2,21016,51439,56,0
,2,21017,51441,56,0
,2,21018,51443,56,0
,2,21019,51445,56,0
,2,21020,51447,56,0
,2,21021,51449,56,0
,2,21022,51451,56,0
,2,21023,51453,56,0
,2,21024,51455,56,0
,2,21025,51457,56,0
,2,21026,51459,56,0
,2,21027,51461,56,0
,2,21028,51463,56,0
,2,21029,51465,56,0
,2,21030,51467,56,0
,2,21031,51469,56,0
,2,21032,51471,56,0
,2,21033,51473,56,0
,2,21034,51475,56,0
,2,21035,51477,56,0
,2,21036,51479,56,0
,2,21037,51481,56,0
,2,21038,51483,56,0
,2,21039,51485,56,0
,2,21040,51487,56,0
,2,21041,51489,56,0
,2,21042,51491,56,0
,2,21043,51493,56,0
,2,21044,51495,56,0
,2,21045,51497,56,0
,2,21046,51499,56,0
,2,21047,51501,56,0
,2,21048,51503,56,0
,2,21049,51505,56,0
,2,21050,51507,56,0
,2,21051,51509,56,0
,2,21052,51511,56,0
,2,21053,51513,56,0
,2,21054,51515,56,0
,2,21055,51517,56,0
,2,21056,51519,56,0
,2,21057,51521,56,0
,2,21058,51523,56,0
,2,21059,51525,56,0
,2,21060,51527,56,0
,2,21061,51529,56,0
,2,21062,51531,56,0
,2,21063,51533,56,0
,2,21064,51535,56,0
,2,21065,51537,56,0
,2,21066,51539,56,0
,2,21067,51541,56,0
,2,21068,51543,56,0
,2,21069,51545,56,0
,2,21070,51547,56,0
,2,21071,51549,56,0
,2,21072,51551,56,0
,2,21073,51553,56,0
,2,21074,51555,56,0
,2,21075,51557,56,0
,2,21076,51559,56,0
,2,21077,51561,56,0
,2,21078,51563,56,0
,2,21079,51565,56,0
,2,21080,51567,56,0
,2,21081,51569,56,0
,2,21082,51571,56,0
,2,21083,51573,56,0
,2,21084,51575,56,0
,2,21085,51577,56,0
,2,21086,51579,56,0
,2,21087,51581,56,0
,2,21088,51583,56,0
,2,21089,51585,56,0
,2,21090,51587,56,0
,2,21091,51589,56,0
,2,21092,51591,56,0
,2,21093,51593,56,0
,2,21094,51595,56,0
,2,21095,51597,56,0
,2,21096,51599,56,0
,2,21097,51601,56,0
,2,21098,51603,56,0
,2,21099,51605,56,0
,2,21100,51607,56,0
,2,21101,51609,56,0
,2,21102,51611,56,0
,2,21103,51613,56,0
,2,21104,51615,56,0
,2,21105,51617,56,0
,2,21106,51619,56,0
,2,21107,51621,56,0
,2,21108,51623,56,0
,2,21109,51625,56,0
,2,21110,51627,56,0
,2,21111,51629,56,0
,2,21112,51631,56,0
,2,21113,51633,56,0
,2,21114,51635,56,0
,2,21115,51637,56,0
,2,21116,51639,56,0
,2,21117,51641,56,0
,2,21118,51643,56,0
,2,21119,51645,56,0
,2,21120,51647,56,0
,2,21121,51649,56,0
,2,21122,51651,56,0
,2,21123,51653,56,0
,2,21124,51655,56,0
,2,21125,51657,56,0
,2,21126,51659,56,0
,2,21127,51661,56,0
,2,21128,51663,56,0
,2,21129,51665,56,0
,2,21130,51667,56,0
,2,21131,51669,56,0
,2,21132,51671,56,0
,2,21133,51673,56,0
,2,21134,51675,56,0
,2,21135,51677,56,0
,2,21136,51679,56,0
,2,21137,51681,56,0
,2,21138,51683,56,0
,2,21139,51685,56,0
,2,21140,51687,56,0
,2,21141,51689,56,0
,2,21142,51691,56,0
,2,21143,51693,56,0
,2,21144,51695,56,0
,2,21145,51697,56,0
,2,21146,51699,56,0
,2,21147,51701,56,0
,2,21148,51703,56,0
,2,21149,51705,56,0
,2,21150,51707,56,0
,2,21151,51709,56,0
,2,21152,51711,56,0
,2,21153,51713,56,0
,2,21154,51715,56,0
,2,21155,51717,56,0
,2,21156,51719,56,0
,2,21157,51721,56,0
,2,21158,51723,56,0
,2,21159,51725,56,0
,2,21160,51727,56,0
,2,21161,51729,56,0
,2,21162,51731,56,0
,2,21163,51733,56,0
,2,21164,51735,56,0
,2,21165,51737,56,0
,2,21166,51739,56,0
,2,21167,51741,56,0
,2,21168,51743,56,0
,2,21169,51745,56,0
,2,21170,51747,56,0
,2,21171,51749,56,0
,2,21172,51751,56,0
,2,21173,51753,56,0
,2,21174,51755,56,0
,2,21175,51757,56,0
,2,21176,51759,56,0
,2,21177,51761,56,0
,2,21178,51763,56,0
,2,21179,51765,56,0
,2,21180,51767,56,0
,2,21181,51769,56,0
,2,21182,51771,56,0
,2,21183,51773,56,0
,2,21184,51775,56,0
,2,21185,51777,56,0
,2,21186,51779,56,0
,2,21187,51781,56,0
,2,21188,51783,56,0
,2,21189,51785,56,0
,2,21190,51787,56,0
,2,21191,51789,56,0
,2,21192,51791,56,0
,2,21193,51793,56,0
,2,21194,51795,56,0
,2,21195,51797,56,0
,2,21196,51799,56,0
,2,21197,51801,56,0
,2,21198,51803,56,0
,2,21199,51805,56,0
,2,21200,51807,56,0
,2,21201,51809,56,0
,2,21202,51811,56,0
,2,21203,51813,56,0
,2,21204,51815,56,0
,2,21205,51817,56,0
,2,21206,51819,56,0
,2,21207,51821,56,0
,2,21208,51823,56,0
,2,21209,51825,56,0
,2,21210,51827,56,0
,2,21211,51829,56,0
,2,21212,51831,56,0
,2,21213,51833,56,0
,2,21214,51835,56,0
,2,21215,51837,56,0
,2,21216,51839,56,0
,2,21217,51841,56,0
,2,21218,51843,56,0
,2,21219,51845,56,0
,2,21220,51847,56,0
,2,21221,51849,56,0
,2,21222,51851,56,0
,2,21223,51853,56,0
,2,21224,51855,56,0
,2,21225,51857,56,0
,2,21226,51859,56,0
,2,21227,51861,56,0
,2,21228,51863,56,0
,2,21229,51865,56,0
,2,21230,51867,56,0
,2,21231,51869,56,0
,2,21232,51871,56,0
,2,21233,51873,56,0
,2,21234,51875,56,0
,2,21235,51877,56,0
,2,21236,51879,56,0
,2,21237,51881,56,0
,2,21238,51883,56,0
,2,21239,51885,56,0
,2,21240,51887,56,0
,2,21241,51889,56,0
,2,21242,51891,56,0
,2,21243,51893,56,0
,2,21244,51895,56,0
,2,21245,51897,56,0
,2,21246,51899,56,0
,2,21247,51901,56,0
,2,21248,51903,56,0
,2,21249,51905,56,0
,2,21250,51907,56,0
,2,21251,51909,56,0
,2,21252,51911,56,0
,2,21253,51913,56,0
,2,21254,51915,56,0
,2,21255,51917,56,0
,2,21256,51919,56,0
,2,21257,51921,56,0
,2,21258,51923,56,0
,2,21259,51925,56,0
,2,21260,51927,56,0
,2,21261,51929,56,0
,2,21262,51931,56,0
,2,21263,51933,56,0
,2,21264,51935,56,0
,2,21265,51937,56,0
,2,21266,51939,56,0
,2,21267,51941,56,0
,2,21268,51943,56,0
,2,21269,51945,56,0
,2,21270,51947,56,0
,2,21271,51949,56,0
,2,21272,51951,56,0
,2,21273,51953,56,0
,2,21274,51955,56,0
,2,21275,51957,56,0
,2,21276,51959,56,0
,2,21277,51961,56,0
,2,21278,51963,56,0
,2,21279,51965,56,0
,2,21280,51967,56,0
,2,21281,51969,56,0
,2,21282,51971,56,0
,2,21283,51973,56,0
,2,21284,51975,56,0
,2,21285,51977,56,0
,2,21286,51979,56,0
,2,21287,51981,56,0
,2,21288,51983,56,0
,2,21289,51985,56,0
,2,21290,51987,56,0
,2,21291,51989,56,0
,2,21292,51991,56,0
,2,21293,51993,56,0
,2,21294,51995,56,0
,2,21295,51997,56,0
,2,21296,51999,56,0
,2,21297,52001,56,0
,2,21298,52003,56,0
,2,21299,52005,56,0
,2,21300,52007,56,0
,2,21301,52009,56,0
,2,21302,52011,56,0
,2,21303,52013,56,0
,2,21304,52015,56,0
,2,21305,52017,56,0
,2,21306,52019,56,0
,2,21307,52021,56,0
,2,21308,52023,56,0
,2,21309,52025,56,0
,2,21310,52027,56,0
,2,21311,52029,56,0
,2,21312,52031,56,0
,2,21313,52033,56,0
,2,21314,52035,56,0
,2,21315,52037,56,0
,2,21316,52039,56,0
,2,21317,52041,56,0
,2,21318,52043,56,0
,2,21319,52045,56,0
,2,21320,52047,56,0
,2,21321,52049,56,0
,2,21322,52051,56,0
,2,21323,52053,56,0
,2,21324,52055,56,0
,2,21325,52057,56,0
,2,21326,52059,56,0
,2,21327,52061,56,0
,2,21328,52063,56,0
,2,21329,52065,56,0
,2,21330,52067,56,0
,2,21331,52069,56,0
,2,21332,52071,56,0
,2,21333,52073,56,0
,2,21334,52075,56,0
,2,21335,52077,56,0
,2,21336,52079,56,0
,2,21337,52081,56,0
,2,21338,52083,56,0
,2,21339,52085,56,0
,2,21340,52087,56,0
,2,21341,52089,56,0
,2,21342,52091,56,0
,2,21343,52093,56,0
,2,21344,52095,56,0
,2,21345,52097,56,0
,2,21346,52099,56,0
,2,21347,52101,56,0
,2,21348,52103,56,0
,2,21349,52105,56,0
,2,21350,52107,56,0
,2,21351,52109,56,0
,2,21352,52111,56,0
,2,21353,52113,56,0
,2,21354,52115,56,0
,2,21355,52117,56,0
,2,21356,52119,56,0
,2,21357,52121,56,0
,2,21358,52123,56,0
,2,21359,52125,56,0
,2,21360,52127,56,0
,2,21361,52129,56,0
,2,21362,52131,56,0
,2,21363,52133,56,0
,2,21364,52135,56,0
,2,21365,52137,56,0
,2,21366,52139,56,0
,2,21367,52141,56,0
,2,21368,52143,56,0
,2,21369,52145,56,0
,2,21370,52147,56,0
,2,21371,52149,56,0
,2,21372,52151,56,0
,2,21373,52153,56,0
,2,21374,52155,56,0
,2,21375,52157,56,0
,2,21376,52159,56,0
,2,21377,52161,56,0
,2,21378,52163,56,0
,2,21379,52165,56,0
,2,21380,52167,56,0
,2,21381,52169,56,0
,2,21382,52171,56,0
,2,21383,52173,56,0
,2,21384,52175,56,0
,2,21385,52177,56,0
,2,21386,52179,56,0
,2,21387,52181,56,0
,2,21388,52183,56,0
,2,21389,52185,56,0
,2,21390,52187,56,0
,2,21391,52189,56,0
,2,21392,52191,56,0
,2,21393,52193,56,0
,2,21394,52195,56,0
,2,21395,52197,56,0
,2,21396,52199,56,0
,2,21397,52201,56,0
,2,21398,52203,56,0
,2,21399,52205,56,0
,2,21400,52207,56,0
,2,21401,52209,56,0
,2,21402,52211,56,0
,2,21403,52213,56,0
,2,21404,52215,56,0
,2,21405,52217,56,0
,2,21406,52219,56,0
,2,21407,52221,56,0
,2,21408,52223,56,0
,2,21409,52225,56,0
,2,21410,52227,56,0
,2,21411,52229,56,0
,2,21412,52231,56,0
,2,21413,52233,56,0
,2,21414,52235,56,0
,2,21415,52237,56,0
,2,21416,52239,56,0
,2,21417,52241,56,0
,2,21418,52243,56,0
,2,21419,52245,56,0
,2,21420,52247,56,0
,2,21421,52249,56,0
,2,21422,52251,56,0
,2,21423,52253,56,0
,2,21424,52255,56,0
,2,21425,52257,56,0
,2,21426,52259,56,0
,2,21427,52261,56,0
,2,21428,52263,56,0
,2,21429,52265,56,0
,2,21430,52267,56,0
,2,21431,52269,56,0
,2,21432,52271,56,0
,2,21433,52273,56,0
,2,21434,52275,56,0
,2,21435,52277,56,0
,2,21436,52279,56,0
,2,21437,52281,56,0
,2,21438,52283,56,0
,2,21439,52285,56,0
,2,21440,52287,56,0
,2,21441,52289,56,0
,2,21442,52291,56,0
,2,21443,52293,56,0
,2,21444,52295,56,0
,2,21445,52297,56,0
,2,21446,52299,56,0
,2,21447,52301,56,0
,2,21448,52303,56,0
,2,21449,52305,56,0
,2,21450,52307,56,0
,2,21451,52309,56,0
,2,21452,52311,56,0
,2,21453,52313,56,0
,2,21454,52315,56,0
,2,21455,52317,56,0
,2,21456,52319,56,0
,2,21457,52321,56,0
,2,21458,52323,56,0
,2,21459,52325,56,0
,2,21460,52327,56,0
,2,21461,52329,56,0
,2,21462,52331,56,0
,2,21463,52333,56,0
,2,21464,52335,56,0
,2,21465,52337,56,0
,2,21466,52339,56,0
,2,21467,52341,56,0
,2,21468,52343,56,0
,2,21469,52345,56,0
,2,21470,52347,56,0
,2,21471,52349,56,0
,2,21472,52351,56,0
,2,21473,52353,56,0
,2,21474,52355,56,0
,2,21475,52357,56,0
,2,21476,52359,56,0
,2,21477,52361,56,0
,2,21478,52363,56,0
,2,21479,52365,56,0
,2,21480,52367,56,0
,2,21481,52369,56,0
,2,21482,52371,56,0
,2,21483,52373,56,0
,2,21484,52375,56,0
,2,21485,52377,56,0
,2,21486,52379,56,0
,2,21487,52381,56,0
,2,21488,52383,56,0
,2,21489,52385,56,0
,2,21490,52387,56,0
,2,21491,52389,56,0
,2,21492,52391,56,0
,2,21493,52393,56,0
,2,21494,52395,56,0
,2,21495,52397,56,0
,2,21496,52399,56,0
,2,21497,52401,56,0
,2,21498,52403,56,0
,2,21499,52405,56,0
,2,21500,52407,56,0
,2,21501,52409,56,0
,2,21502,52411,56,0
,2,21503,52413,56,0
,2,21504,52415,56,0
,2,21505,52417,56,0
,2,21506,52419,56,0
,2,21507,52421,56,0
,2,21508,52423,56,0
,2,21509,52425,56,0
,2,21510,52427,56,0
,2,21511,52429,56,0
,2,21512,52431,56,0
,2,21513,52433,56,0
,2,21514,52435,56,0
,2,21515,52437,56,0
,2,21516,52439,56,0
,2,21517,52441,56,0
,2,21518,52443,56,0
,2,21519,52445,56,0
,2,21520,52447,56,0
,2,21521,52449,56,0
,2,21522,52451,56,0
,2,21523,52453,56,0
,2,21524,52455,56,0
,2,21525,52457,56,0
,2,21526,52459,56,0
,2,21527,52461,56,0
,2,21528,52463,56,0
,2,21529,52465,56,0
,2,21530,52467,56,0
,2,21531,52469,56,0
,2,21532,52471,56,0
,2,21533,52473,56,0
,2,21534,52475,56,0
,2,21535,52477,56,0
,2,21536,52479,56,0
,2,21537,52481,56,0
,2,21538,52483,56,0
,2,21539,52485,56,0
,2,21540,52487,56,0
,2,21541,52489,56,0
,2,21542,52491,56,0
,2,21543,52493,56,0
,2,21544,52495,56,0
,2,21545,52497,56,0
,2,21546,52499,56,0
,2,21547,52501,56,0
,2,21548,52503,56,0
,2,21549,52505,56,0
,2,21550,52507,56,0
,2,21551,52509,56,0
,2,21552,52511,56,0
,2,21553,52513,56,0
,2,21554,52515,56,0
,2,21555,52517,56,0
,2,21556,52519,56,0
,2,21557,52521,56,0
,2,21558,52523,56,0
,2,21559,52525,56,0
,2,21560,52527,56,0
,2,21561,52529,56,0
,2,21562,52531,56,0
,2,21563,52533,56,0
,2,21564,52535,56,0
,2,21565,52537,56,0
,2,21566,52539,56,0
,2,21567,52541,56,0
,2,21568,52543,56,0
,2,21569,52545,56,0
,2,21570,52547,56,0
,2,21571,52549,56,0
,2,21572,52551,56,0
,2,21573,52553,56,0
,2,21574,52555,56,0
,2,21575,52557,56,0
,2,21576,52559,56,0
,2,21577,52561,56,0
,2,21578,52563,56,0
,2,21579,52565,56,0
,2,21580,52567,56,0
,2,21581,52569,56,0
,2,21582,52571,56,0
,2,21583,52573,56,0
,2,21584,52575,56,0
,2,21585,52577,56,0
,2,21586,52579,56,0
,2,21587,52581,56,0
,2,21588,52583,56,0
,2,21589,52585,56,0
,2,21590,52587,56,0
,2,21591,52589,56,0
,2,21592,52591,56,0
,2,21593,52593,56,0
,2,21594,52595,56,0
,2,21595,52597,56,0
,2,21596,52599,56,0
,2,21597,52601,56,0
,2,21598,52603,56,0
,2,21599,52605,56,0
,2,21600,52607,56,0
,2,21601,52609,56,0
,2,21602,52611,56,0
,2,21603,52613,56,0
,2,21604,52615,56,0
,2,21605,52617,56,0
,2,21606,52619,56,0
,2,21607,52621,56,0
,2,21608,52623,56,0
,2,21609,52625,56,0
,2,21610,52627,56,0
,2,21611,52629,56,0
,2,21612,52631,56,0
,2,21613,52633,56,0
,2,21614,52635,56,0
,2,21615,52637,56,0
,2,21616,52639,56,0
,2,21617,52641,56,0
,2,21618,52643,56,0
,2,21619,52645,56,0
,2,21620,52647,56,0
,2,21621,52649,56,0
,2,21622,52651,56,0
,2,21623,52653,56,0
,2,21624,52655,56,0
,2,21625,52657,56,0
,2,21626,52659,56,0
,2,21627,52661,56,0
,2,21628,52663,56,0
,2,21629,52665,56,0
,2,21630,52667,56,0
,2,21631,52669,56,0
,2,21632,52671,56,0
,2,21633,52673,56,0
,2,21634,52675,56,0
,2,21635,52677,56,0
,2,21636,52679,56,0
,2,21637,52681,56,0
,2,21638,52683,56,0
,2,21639,52685,56,0
,2,21640,52687,56,0
,2,21641,52689,56,0
,2,21642,52691,56,0
,2,21643,52693,56,0
,2,21644,52695,56,0
,2,21645,52697,56,0
,2,21646,52699,56,0
,2,21647,52701,56,0
,2,21648,52703,56,0
,2,21649,52705,56,0
,2,21650,52707,56,0
,2,21651,52709,56,0
,2,21652,52711,56,0
,2,21653,52713,56,0
,2,21654,52715,56,0
,2,21655,52717,56,0
,2,21656,52719,56,0
,2,21657,52721,56,0
,2,21658,52723,56,0
,2,21659,52725,56,0
,2,21660,52727,56,0
,2,21661,52729,56,0
,2,21662,52731,56,0
,2,21663,52733,56,0
,2,21664,52735,56,0
,2,21665,52737,56,0
,2,21666,52739,56,0
,2,21667,52741,56,0
,2,21668,52743,56,0
,2,21669,52745,56,0
,2,21670,52747,56,0
,2,21671,52749,56,0
,2,21672,52751,56,0
,2,21673,52753,56,0
,2,21674,52755,56,0
,2,21675,52757,56,0
,2,21676,52759,56,0
,2,21677,52761,56,0
,2,21678,52763,56,0
,2,21679,52765,56,0
,2,21680,52767,56,0
,2,21681,52769,56,0
,2,21682,52771,56,0
,2,21683,52773,56,0
,2,21684,52775,56,0
,2,21685,52777,56,0
,2,21686,52779,56,0
,2,21687,52781,56,0
,2,21688,52783,56,0
,2,21689,52785,56,0
,2,21690,52787,56,0
,2,21691,52789,56,0
,2,21692,52791,56,0
,2,21693,52793,56,0
,2,21694,52795,56,0
,2,21695,52797,56,0
,2,21696,52799,56,0
,2,21697,52801,56,0
,2,21698,52803,56,0
,2,21699,52805,56,0
,2,21700,52807,56,0
,2,21701,52809,56,0
,2,21702,52811,56,0
,2,21703,52813,56,0
,2,21704,52815,56,0
,2,21705,52817,56,0
,2,21706,52819,56,0
,2,21707,52821,56,0
,2,21708,52823,56,0
,2,21709,52825,56,0
,2,21710,52827,56,0
,2,21711,52829,56,0
,2,21712,52831,56,0
,2,21713,52833,56,0
,2,21714,52835,56,0
,2,21715,52837,56,0
,2,21716,52839,56,0
,2,21717,52841,56,0
,2,21718,52843,56,0
,2,21719,52845,56,0
,2,21720,52847,56,0
,2,21721,52849,56,0
,2,21722,52851,56,0
,2,21723,52853,56,0
,2,21724,52855,56,0
,2,21725,52857,56,0
,2,21726,52859,56,0
,2,21727,52861,56,0
,2,21728,52863,56,0
,2,21729,52865,56,0
,2,21730,52867,56,0
,2,21731,52869,56,0
,2,21732,52871,56,0
,2,21733,52873,56,0
,2,21734,52875,56,0
,2,21735,52877,56,0
,2,21736,52879,56,0
,2,21737,52881,56,0
,2,21738,52883,56,0
,2,21739,52885,56,0
,2,21740,52887,56,0
,2,21741,52889,56,0
,2,21742,52891,56,0
,2,21743,52893,56,0
,2,21744,52895,56,0
,2,21745,52897,56,0
,2,21746,52899,56,0
,2,21747,52901,56,0
,2,21748,52903,56,0
,2,21749,52905,56,0
,2,21750,52907,56,0
,2,21751,52909,56,0
,2,21752,52911,56,0
,2,21753,52913,56,0
,2,21754,52915,56,0
,2,21755,52917,56,0
,2,21756,52919,56,0
,2,21757,52921,56,0
,2,21758,52923,56,0
,2,21759,52925,56,0
,2,21760,52927,56,0
,2,21761,52929,56,0
,2,21762,52931,56,0
,2,21763,52933,56,0
,2,21764,52935,56,0
,2,21765,52937,56,0
,2,21766,52939,56,0
,2,21767,52941,56,0
,2,21768,52943,56,0
,2,21769,52945,56,0
,2,21770,52947,56,0
,2,21771,52949,56,0
,2,21772,52951,56,0
,2,21773,52953,56,0
,2,21774,52955,56,0
,2,21775,52957,56,0
,2,21776,52959,56,0
,2,21777,52961,56,0
,2,21778,52963,56,0
,2,21779,52965,56,0
,2,21780,52967,56,0
,2,21781,52969,56,0
,2,21782,52971,56,0
,2,21783,52973,56,0
,2,21784,52975,56,0
,2,21785,52977,56,0
,2,21786,52979,56,0
,2,21787,52981,56,0
,2,21788,52983,56,0
,2,21789,52985,56,0
,2,21790,52987,56,0
,2,21791,52989,56,0
,2,21792,52991,56,0
,2,21793,52993,56,0
,2,21794,52995,56,0
,2,21795,52997,56,0
,2,21796,52999,56,0
,2,21797,53001,56,0
,2,21798,53003,56,0
,2,21799,53005,56,0
,2,21800,53007,56,0
,2,21801,53009,56,0
,2,21802,53011,56,0
,2,21803,53013,56,0
,2,21804,53015,56,0
,2,21805,53017,56,0
,2,21806,53019,56,0
,2,21807,53021,56,0
,2,21808,53023,56,0
,2,21809,53025,56,0
,2,21810,53027,56,0
,2,21811,53029,56,0
,2,21812,53031,56,0
,2,21813,53033,56,0
,2,21814,53035,56,0
,2,21815,53037,56,0
,2,21816,53039,56,0
,2,21817,53041,56,0
,2,21818,53043,56,0
,2,21819,53045,56,0
,2,21820,53047,56,0
,2,21821,53049,56,0
,2,21822,53051,56,0
,2,21823,53053,56,0
,2,21824,53055,56,0
,2,21825,53057,56,0
,2,21826,53059,56,0
,2,21827,53061,56,0
,2,21828,53063,56,0
,2,21829,53065,56,0
,2,21830,53067,56,0
,2,21831,53069,56,0
,2,21832,53071,56,0
,2,21833,53073,56,0
,2,21834,53075,56,0
,2,21835,53077,56,0
,2,21836,53079,56,0
,2,21837,53081,56,0
,2,21838,53083,56,0
,2,21839,53085,56,0
,2,21840,53087,56,0
,2,21841,53089,56,0
,2,21842,53091,56,0
,2,21843,53093,56,0
,2,21844,53095,56,0
,2,21845,53097,56,0
,2,21846,53099,56,0
,2,21847,53101,56,0
,2,21848,53103,56,0
,2,21849,53105,56,0
,2,21850,53107,56,0
,2,21851,53109,56,0
,2,21852,53111,56,0
,2,21853,53113,56,0
,2,21854,53115,56,0
,2,21855,53117,56,0
,2,21856,53119,56,0
,2,21857,53121,56,0
,2,21858,53123,56,0
,2,21859,53125,56,0
,2,21860,53127,56,0
,2,21861,53129,56,0
,2,21862,53131,56,0
,2,21863,53133,56,0
,2,21864,53135,56,0
,2,21865,53137,56,0
,2,21866,53139,56,0
,2,21867,53141,56,0
,2,21868,53143,56,0
,2,21869,53145,56,0
,2,21870,53147,56,0
,2,21871,53149,56,0
,2,21872,53151,56,0
,2,21873,53153,56,0
,2,21874,53155,56,0
,2,21875,53157,56,0
,2,21876,53159,56,0
,2,21877,53161,56,0
,2,21878,53163,56,0
,2,21879,53165,56,0
,2,21880,53167,56,0
,2,21881,53169,56,0
,2,21882,53171,56,0
,2,21883,53173,56,0
,2,21884,53175,56,0
,2,21885,53177,56,0
,2,21886,53179,56,0
,2,21887,53181,56,0
,2,21888,53183,56,0
,2,21889,53185,56,0
,2,21890,53187,56,0
,2,21891,53189,56,0
,2,21892,53191,56,0
,2,21893,53193,56,0
,2,21894,53195,56,0
,2,21895,53197,56,0
,2,21896,53199,56,0
,2,21897,53201,56,0
,2,21898,53203,56,0
,2,21899,53205,56,0
,2,21900,53207,56,0
,2,21901,53209,56,0
,2,21902,53211,56,0
,2,21903,53213,56,0
,2,21904,53215,56,0
,2,21905,53217,56,0
,2,21906,53219,56,0
,2,21907,53221,56,0
,2,21908,53223,56,0
,2,21909,53225,56,0
,2,21910,53227,56,0
,2,21911,53229,56,0
,2,21912,53231,56,0
,2,21913,53233,56,0
,2,21914,53235,56,0
,2,21915,53237,56,0
,2,21916,53239,56,0
,2,21917,53241,56,0
,2,21918,53243,56,0
,2,21919,53245,56,0
,2,21920,53247,56,0
,2,21921,53249,56,0
,2,21922,53251,56,0
,2,21923,53253,56,0
,2,21924,53255,56,0
,2,21925,53257,56,0
,2,21926,53259,56,0
,2,21927,53261,56,0
,2,21928,53263,56,0
,2,21929,53265,56,0
,2,21930,53267,56,0
,2,21931,53269,56,0
,2,21932,53271,56,0
,2,21933,53273,56,0
,2,21934,53275,56,0
,2,21935,53277,56,0
,2,21936,53279,56,0
,2,21937,53281,56,0
,2,21938,53283,56,0
,2,21939,53285,56,0
,2,21940,53287,56,0
,2,21941,53289,56,0
,2,21942,53291,56,0
,2,21943,53293,56,0
,2,21944,53295,56,0
,2,21945,53297,56,0
,2,21946,53299,56,0
,2,21947,53301,56,0
,2,21948,53303,56,0
,2,21949,53305,56,0
,2,21950,53307,56,0
,2,21951,53309,56,0
,2,21952,53311,56,0
,2,21953,53313,56,0
,2,21954,53315,56,0
,2,21955,53317,56,0
,2,21956,53319,56,0
,2,21957,53321,56,0
,2,21958,53323,56,0
,2,21959,53325,56,0
,2,21960,53327,56,0
,2,21961,53329,56,0
,2,21962,53331,56,0
,2,21963,53333,56,0
,2,21964,53335,56,0
,2,21965,53337,56,0
,2,21966,53339,56,0
,2,21967,53341,56,0
,2,21968,53343,56,0
,2,21969,53345,56,0
,2,21970,53347,56,0
,2,21971,53349,56,0
,2,21972,53351,56,0
,2,21973,53353,56,0
,2,21974,53355,56,0
,2,21975,53357,56,0
,2,21976,53359,56,0
,2,21977,53361,56,0
,2,21978,53363,56,0
,2,21979,53365,56,0
,2,21980,53367,56,0
,2,21981,53369,56,0
,2,21982,53371,56,0
,2,21983,53373,56,0
,2,21984,53375,56,0
,2,21985,53377,56,0
,2,21986,53379,56,0
,2,21987,53381,56,0
,2,21988,53383,56,0
,2,21989,53385,56,0
,2,21990,53387,56,0
,2,21991,53389,56,0
,2,21992,53391,56,0
,2,21993,53393,56,0
,2,21994,53395,56,0
,2,21995,53397,56,0
,2,21996,53399,56,0
,2,21997,53401,56,0
,2,21998,53403,56,0
,2,21999,53405,56,0
,2,22000,53407,56,0
,2,22001,53409,56,0
,2,22002,53411,56,0
,2,22003,53413,56,0
,2,22004,53415,56,0
,2,22005,53417,56,0
,2,22006,53419,56,0
,2,22007,53421,56,0
,2,22008,53423,56,0
,2,22009,53425,56,0
,2,22010,53427,56,0
,2,22011,53429,56,0
,2,22012,53431,56,0
,2,22013,53433,56,0
,2,22014,53435,56,0
,2,22015,53437,56,0
,2,22016,53439,56,0
,2,22017,53441,56,0
,2,22018,53443,56,0
,2,22019,53445,56,0
,2,22020,53447,56,0
,2,22021,53449,56,0
,2,22022,53451,56,0
,2,22023,53453,56,0
,2,22024,53455,56,0
,2,22025,53457,56,0
,2,22026,53459,56,0
,2,22027,53461,56,0
,2,22028,53463,56,0
,2,22029,53465,56,0
,2,22030,53467,56,0
,2,22031,53469,56,0
,2,22032,53471,56,0
,2,22033,53473,56,0
,2,22034,53475,56,0
,2,22035,53477,56,0
,2,22036,53479,56,0
,2,22037,53481,56,0
,2,22038,53483,56,0
,2,22039,53485,56,0
,2,22040,53487,56,0
,2,22041,53489,56,0
,2,22042,53491,56,0
,2,22043,53493,56,0
,2,22044,53495,56,0
,2,22045,53497,56,0
,2,22046,53499,56,0
,2,22047,53501,56,0
,2,22048,53503,56,0
,2,22049,53505,56,0
,2,22050,53507,56,0
,2,22051,53509,56,0
,2,22052,53511,56,0
,2,22053,53513,56,0
,2,22054,53515,56,0
,2,22055,53517,56,0
,2,22056,53519,56,0
,2,22057,53521,56,0
,2,22058,53523,56,0
,2,22059,53525,56,0
,2,22060,53527,56,0
,2,22061,53529,56,0
,2,22062,53531,56,0
,2,22063,53533,56,0
,2,22064,53535,56,0
,2,22065,53537,56,0
,2,22066,53539,56,0
,2,22067,53541,56,0
,2,22068,53543,56,0
,2,22069,53545,56,0
,2,22070,53547,56,0
,2,22071,53549,56,0
,2,22072,53551,56,0
,2,22073,53553,56,0
,2,22074,53555,56,0
,2,22075,53557,56,0
,2,22076,53559,56,0
,2,22077,53561,56,0
,2,22078,53563,56,0
,2,22079,53565,56,0
,2,22080,53567,56,0
,2,22081,53569,56,0
,2,22082,53571,56,0
,2,22083,53573,56,0
,2,22084,53575,56,0
,2,22085,53577,56,0
,2,22086,53579,56,0
,2,22087,53581,56,0
,2,22088,53583,56,0
,2,22089,53585,56,0
,2,22090,53587,56,0
,2,22091,53589,56,0
,2,22092,53591,56,0
,2,22093,53593,56,0
,2,22094,53595,56,0
,2,22095,53597,56,0
,2,22096,53599,56,0
,2,22097,53601,56,0
,2,22098,53603,56,0
,2,22099,53605,56,0
,2,22100,53607,56,0
,2,22101,53609,56,0
,2,22102,53611,56,0
,2,22103,53613,56,0
,2,22104,53615,56,0
,2,22105,53617,56,0
,2,22106,53619,56,0
,2,22107,53621,56,0
,2,22108,53623,56,0
,2,22109,53625,56,0
,2,22110,53627,56,0
,2,22111,53629,56,0
,2,22112,53631,56,0
,2,22113,53633,56,0
,2,22114,53635,56,0
,2,22115,53637,56,0
,2,22116,53639,56,0
,2,22117,53641,56,0
,2,22118,53643,56,0
,2,22119,53645,56,0
,2,22120,53647,56,0
,2,22121,53649,56,0
,2,22122,53651,56,0
,2,22123,53653,56,0
,2,22124,53655,56,0
,2,22125,53657,56,0
,2,22126,53659,56,0
,2,22127,53661,56,0
,2,22128,53663,56,0
,2,22129,53665,56,0
,2,22130,53667,56,0
,2,22131,53669,56,0
,2,22132,53671,56,0
,2,22133,53673,56,0
,2,22134,53675,56,0
,2,22135,53677,56,0
,2,22136,53679,56,0
,2,22137,53681,56,0
,2,22138,53683,56,0
,2,22139,53685,56,0
,2,22140,53687,56,0
,2,22141,53689,56,0
,2,22142,53691,56,0
,2,22143,53693,56,0
,2,22144,53695,56,0
,2,22145,53697,56,0
,2,22146,53699,56,0
,2,22147,53701,56,0
,2,22148,53703,56,0
,2,22149,53705,56,0
,2,22150,53707,56,0
,2,22151,53709,56,0
,2,22152,53711,56,0
,2,22153,53713,56,0
,2,22154,53715,56,0
,2,22155,53717,56,0
,2,22156,53719,56,0
,2,22157,53721,56,0
,2,22158,53723,56,0
,2,22159,53725,56,0
,2,22160,53727,56,0
,2,22161,53729,56,0
,2,22162,53731,56,0
,2,22163,53733,56,0
,2,22164,53735,56,0
,2,22165,53737,56,0
,2,22166,53739,56,0
,2,22167,53741,56,0
,2,22168,53743,56,0
,2,22169,53745,56,0
,2,22170,53747,56,0
,2,22171,53749,56,0
,2,22172,53751,56,0
,2,22173,53753,56,0
,2,22174,53755,56,0
,2,22175,53757,56,0
,2,22176,53759,56,0
,2,22177,53761,56,0
,2,22178,53763,56,0
,2,22179,53765,56,0
,2,22180,53767,56,0
,2,22181,53769,56,0
,2,22182,53771,56,0
,2,22183,53773,56,0
,2,22184,53775,56,0
,2,22185,53777,56,0
,2,22186,53779,56,0
,2,22187,53781,56,0
,2,22188,53783,56,0
,2,22189,53785,56,0
,2,22190,53787,56,0
,2,22191,53789,56,0
,2,22192,53791,56,0
,2,22193,53793,56,0
,2,22194,53795,56,0
,2,22195,53797,56,0
,2,22196,53799,56,0
,2,22197,53801,56,0
,2,22198,53803,56,0
,2,22199,53805,56,0
,2,22200,53807,56,0
,2,22201,53809,56,0
,2,22202,53811,56,0
,2,22203,53813,56,0
,2,22204,53815,56,0
,2,22205,53817,56,0
,2,22206,53819,56,0
,2,22207,53821,56,0
,2,22208,53823,56,0
,2,22209,53825,56,0
,2,22210,53827,56,0
,2,22211,53829,56,0
,2,22212,53831,56,0
,2,22213,53833,56,0
,2,22214,53835,56,0
,2,22215,53837,56,0
,2,22216,53839,56,0
,2,22217,53841,56,0
,2,22218,53843,56,0
,2,22219,53845,56,0
,2,22220,53847,56,0
,2,22221,53849,56,0
,2,22222,53851,56,0
,2,22223,53853,56,0
,2,22224,53855,56,0
,2,22225,53857,56,0
,2,22226,53859,56,0
,2,22227,53861,56,0
,2,22228,53863,56,0
,2,22229,53865,56,0
,2,22230,53867,56,0
,2,22231,53869,56,0
,2,22232,53871,56,0
,2,22233,53873,56,0
,2,22234,53875,56,0
,2,22235,53877,56,0
,2,22236,53879,56,0
,2,22237,53881,56,0
,2,22238,53883,56,0
,2,22239,53885,56,0
,2,22240,53887,56,0
,2,22241,53889,56,0
,2,22242,53891,56,0
,2,22243,53893,56,0
,2,22244,53895,56,0
,2,22245,53897,56,0
,2,22246,53899,56,0
,2,22247,53901,56,0
,2,22248,53903,56,0
,2,22249,53905,56,0
,2,22250,53907,56,0
,2,22251,53909,56,0
,2,22252,53911,56,0
,2,22253,53913,56,0
,2,22254,53915,56,0
,2,22255,53917,56,0
,2,22256,53919,56,0
,2,22257,53921,56,0
,2,22258,53923,56,0
,2,22259,53925,56,0
,2,22260,53927,56,0
,2,22261,53929,56,0
,2,22262,53931,56,0
,2,22263,53933,56,0
,2,22264,53935,56,0
,2,22265,53937,56,0
,2,22266,53939,56,0
,2,22267,53941,56,0
,2,22268,53943,56,0
,2,22269,53945,56,0
,2,22270,53947,56,0
,2,22271,53949,56,0
,2,22272,53951,56,0
,2,22273,53953,56,0
,2,22274,53955,56,0
,2,22275,53957,56,0
,2,22276,53959,56,0
,2,22277,53961,56,0
,2,22278,53963,56,0
,2,22279,53965,56,0
,2,22280,53967,56,0
,2,22281,53969,56,0
,2,22282,53971,56,0
,2,22283,53973,56,0
,2,22284,53975,56,0
,2,22285,53977,56,0
,2,22286,53979,56,0
,2,22287,53981,56,0
,2,22288,53983,56,0
,2,22289,53985,56,0
,2,22290,53987,56,0
,2,22291,53989,56,0
,2,22292,53991,56,0
,2,22293,53993,56,0
,2,22294,53995,56,0
,2,22295,53997,56,0
,2,22296,53999,56,0
,2,22297,54001,56,0
,2,22298,54003,56,0
,2,22299,54005,56,0
,2,22300,54007,56,0
,2,22301,54009,56,0
,2,22302,54011,56,0
,2,22303,54013,56,0
,2,22304,54015,56,0
,2,22305,54017,56,0
,2,22306,54019,56,0
,2,22307,54021,56,0
,2,22308,54023,56,0
,2,22309,54025,56,0
,2,22310,54027,56,0
,2,22311,54029,56,0
,2,22312,54031,56,0
,2,22313,54033,56,0
,2,22314,54035,56,0
,2,22315,54037,56,0
,2,22316,54039,56,0
,2,22317,54041,56,0
,2,22318,54043,56,0
,2,22319,54045,56,0
,2,22320,54047,56,0
,2,22321,54049,56,0
,2,22322,54051,56,0
,2,22323,54053,56,0
,2,22324,54055,56,0
,2,22325,54057,56,0
,2,22326,54059,56,0
,2,22327,54061,56,0
,2,22328,54063,56,0
,2,22329,54065,56,0
,2,22330,54067,56,0
,2,22331,54069,56,0
,2,22332,54071,56,0
,2,22333,54073,56,0
,2,22334,54075,56,0
,2,22335,54077,56,0
,2,22336,54079,56,0
,2,22337,54081,56,0
,2,22338,54083,56,0
,2,22339,54085,56,0
,2,22340,54087,56,0
,2,22341,54089,56,0
,2,22342,54091,56,0
,2,22343,54093,56,0
,2,22344,54095,56,0
,2,22345,54097,56,0
,2,22346,54099,56,0
,2,22347,54101,56,0
,2,22348,54103,56,0
,2,22349,54105,56,0
,2,22350,54107,56,0
,2,22351,54109,56,0
,2,22352,54111,56,0
,2,22353,54113,56,0
,2,22354,54115,56,0
,2,22355,54117,56,0
,2,22356,54119,56,0
,2,22357,54121,56,0
,2,22358,54123,56,0
,2,22359,54125,56,0
,2,22360,54127,56,0
,2,22361,54129,56,0
,2,22362,54131,56,0
,2,22363,54133,56,0
,2,22364,54135,56,0
,2,22365,54137,56,0
,2,22366,54139,56,0
,2,22367,54141,56,0
,2,22368,54143,56,0
,2,22369,54145,56,0
,2,22370,54147,56,0
,2,22371,54149,56,0
,2,22372,54151,56,0
,2,22373,54153,56,0
,2,22374,54155,56,0
,2,22375,54157,56,0
,2,22376,54159,56,0
,2,22377,54161,56,0
,2,22378,54163,56,0
,2,22379,54165,56,0
,2,22380,54167,56,0
,2,22381,54169,56,0
,2,22382,54171,56,0
,2,22383,54173,56,0
,2,22384,54175,56,0
,2,22385,54177,56,0
,2,22386,54179,56,0
,2,22387,54181,56,0
,2,22388,54183,56,0
,2,22389,54185,56,0
,2,22390,54187,56,0
,2,22391,54189,56,0
,2,22392,54191,56,0
,2,22393,54193,56,0
,2,22394,54195,56,0
,2,22395,54197,56,0
,2,22396,54199,56,0
,2,22397,54201,56,0
,2,22398,54203,56,0
,2,22399,54205,56,0
,2,22400,54207,56,0
,2,22401,54209,56,0
,2,22402,54211,56,0
,2,22403,54213,56,0
,2,22404,54215,56,0
,2,22405,54217,56,0
,2,22406,54219,56,0
,2,22407,54221,56,0
,2,22408,54223,56,0
,2,22409,54225,56,0
,2,22410,54227,56,0
,2,22411,54229,56,0
,2,22412,54231,56,0
,2,22413,54233,56,0
,2,22414,54235,56,0
,2,22415,54237,56,0
,2,22416,54239,56,0
,2,22417,54241,56,0
,2,22418,54243,56,0
,2,22419,54245,56,0
,2,22420,54247,56,0
,2,22421,54249,56,0
,2,22422,54251,56,0
,2,22423,54253,56,0
,2,22424,54255,56,0
,2,22425,54257,56,0
,2,22426,54259,56,0
,2,22427,54261,56,0
,2,22428,54263,56,0
,2,22429,54265,56,0
,2,22430,54267,56,0
,2,22431,54269,56,0
,2,22432,54271,56,0
,2,22433,54273,56,0
,2,22434,54275,56,0
,2,22435,54277,56,0
,2,22436,54279,56,0
,2,22437,54281,56,0
,2,22438,54283,56,0
,2,22439,54285,56,0
,2,22440,54287,56,0
,2,22441,54289,56,0
,2,22442,54291,56,0
,2,22443,54293,56,0
,2,22444,54295,56,0
,2,22445,54297,56,0
,2,22446,54299,56,0
,2,22447,54301,56,0
,2,22448,54303,56,0
,2,22449,54305,56,0
,2,22450,54307,56,0
,2,22451,54309,56,0
,2,22452,54311,56,0
,2,22453,54313,56,0
,2,22454,54315,56,0
,2,22455,54317,56,0
,2,22456,54319,56,0
,2,22457,54321,56,0
,2,22458,54323,56,0
,2,22459,54325,56,0
,2,22460,54327,56,0
,2,22461,54329,56,0
,2,22462,54331,56,0
,2,22463,54333,56,0
,2,22464,54335,56,0
,2,22465,54337,56,0
,2,22466,54339,56,0
,2,22467,54341,56,0
,2,22468,54343,56,0
,2,22469,54345,56,0
,2,22470,54347,56,0
,2,22471,54349,56,0
,2,22472,54351,56,0
,2,22473,54353,56,0
,2,22474,54355,56,0
,2,22475,54357,56,0
,2,22476,54359,56,0
,2,22477,54361,56,0
,2,22478,54363,56,0
,2,22479,54365,56,0
,2,22480,54367,56,0
,2,22481,54369,56,0
,2,22482,54371,56,0
,2,22483,54373,56,0
,2,22484,54375,56,0
,2,22485,54377,56,0
,2,22486,54379,56,0
,2,22487,54381,56,0
,2,22488,54383,56,0
,2,22489,54385,56,0
,2,22490,54387,56,0
,2,22491,54389,56,0
,2,22492,54391,56,0
,2,22493,54393,56,0
,2,22494,54395,56,0
,2,22495,54397,56,0
,2,22496,54399,56,0
,2,22497,54401,56,0
,2,22498,54403,56,0
,2,22499,54405,56,0
,2,22500,54407,56,0
,2,22501,54409,56,0
,2,22502,54411,56,0
,2,22503,54413,56,0
,2,22504,54415,56,0
,2,22505,54417,56,0
,2,22506,54419,56,0
,2,22507,54421,56,0
,2,22508,54423,56,0
,2,22509,54425,56,0
,2,22510,54427,56,0
,2,22511,54429,56,0
,2,22512,54431,56,0
,2,22513,54433,56,0
,2,22514,54435,56,0
,2,22515,54437,56,0
,2,22516,54439,56,0
,2,22517,54441,56,0
,2,22518,54443,56,0
,2,22519,54445,56,0
,2,22520,54447,56,0
,2,22521,54449,56,0
,2,22522,54451,56,0
,2,22523,54453,56,0
,2,22524,54455,56,0
,2,22525,54457,56,0
,2,22526,54459,56,0
,2,22527,54461,56,0
,2,22528,54463,56,0
,2,22529,54465,56,0
,2,22530,54467,56,0
,2,22531,54469,56,0
,2,22532,54471,56,0
,2,22533,54473,56,0
,2,22534,54475,56,0
,2,22535,54477,56,0
,2,22536,54479,56,0
,2,22537,54481,56,0
,2,22538,54483,56,0
,2,22539,54485,56,0
,2,22540,54487,56,0
,2,22541,54489,56,0
,2,22542,54491,56,0
,2,22543,54493,56,0
,2,22544,54495,56,0
,2,22545,54497,56,0
,2,22546,54499,56,0
,2,22547,54501,56,0
,2,22548,54503,56,0
,2,22549,54505,56,0
,2,22550,54507,56,0
,2,22551,54509,56,0
,2,22552,54511,56,0
,2,22553,54513,56,0
,2,22554,54515,56,0
,2,22555,54517,56,0
,2,22556,54519,56,0
,2,22557,54521,56,0
,2,22558,54523,56,0
,2,22559,54525,56,0
,2,22560,54527,56,0
,2,22561,54529,56,0
,2,22562,54531,56,0
,2,22563,54533,56,0
,2,22564,54535,56,0
,2,22565,54537,56,0
,2,22566,54539,56,0
,2,22567,54541,56,0
,2,22568,54543,56,0
,2,22569,54545,56,0
,2,22570,54547,56,0
,2,22571,54549,56,0
,2,22572,54551,56,0
,2,22573,54553,56,0
,2,22574,54555,56,0
,2,22575,54557,56,0
,2,22576,54559,56,0
,2,22577,54561,56,0
,2,22578,54563,56,0
,2,22579,54565,56,0
,2,22580,54567,56,0
,2,22581,54569,56,0
,2,22582,54571,56,0
,2,22583,54573,56,0
,2,22584,54575,56,0
,2,22585,54577,56,0
,2,22586,54579,56,0
,2,22587,54581,56,0
,2,22588,54583,56,0
,2,22589,54585,56,0
,2,22590,54587,56,0
,2,22591,54589,56,0
,2,22592,54591,56,0
,2,22593,54593,56,0
,2,22594,54595,56,0
,2,22595,54597,56,0
,2,22596,54599,56,0
,2,22597,54601,56,0
,2,22598,54603,56,0
,2,22599,54605,56,0
,2,22600,54607,56,0
,2,22601,54609,56,0
,2,22602,54611,56,0
,2,22603,54613,56,0
,2,22604,54615,56,0
,2,22605,54617,56,0
,2,22606,54619,56,0
,2,22607,54621,56,0
,2,22608,54623,56,0
,2,22609,54625,56,0
,2,22610,54627,56,0
,2,22611,54629,56,0
,2,22612,54631,56,0
,2,22613,54633,56,0
,2,22614,54635,56,0
,2,22615,54637,56,0
,2,22616,54639,56,0
,2,22617,54641,56,0
,2,22618,54643,56,0
,2,22619,54645,56,0
,2,22620,54647,56,0
,2,22621,54649,56,0
,2,22622,54651,56,0
,2,22623,54653,56,0
,2,22624,54655,56,0
,2,22625,54657,56,0
,2,22626,54659,56,0
,2,22627,54661,56,0
,2,22628,54663,56,0
,2,22629,54665,56,0
,2,22630,54667,56,0
,2,22631,54669,56,0
,2,22632,54671,56,0
,2,22633,54673,56,0
,2,22634,54675,56,0
,2,22635,54677,56,0
,2,22636,54679,56,0
,2,22637,54681,56,0
,2,22638,54683,56,0
,2,22639,54685,56,0
,2,22640,54687,56,0
,2,22641,54689,56,0
,2,22642,54691,56,0
,2,22643,54693,56,0
,2,22644,54695,56,0
,2,22645,54697,56,0
,2,22646,54699,56,0
,2,22647,54701,56,0
,2,22648,54703,56,0
,2,22649,54705,56,0
,2,22650,54707,56,0
,2,22651,54709,56,0
,2,22652,54711,56,0
,2,22653,54713,56,0
,2,22654,54715,56,0
,2,22655,54717,56,0
,2,22656,54719,56,0
,2,22657,54721,56,0
,2,22658,54723,56,0
,2,22659,54725,56,0
,2,22660,54727,56,0
,2,22661,54729,56,0
,2,22662,54731,56,0
,2,22663,54733,56,0
,2,22664,54735,56,0
,2,22665,54737,56,0
,2,22666,54739,56,0
,2,22667,54741,56,0
,2,22668,54743,56,0
,2,22669,54745,56,0
,2,22670,54747,56,0
,2,22671,54749,56,0
,2,22672,54751,56,0
,2,22673,54753,56,0
,2,22674,54755,56,0
,2,22675,54757,56,0
,2,22676,54759,56,0
,2,22677,54761,56,0
,2,22678,54763,56,0
,2,22679,54765,56,0
,2,22680,54767,56,0
,2,22681,54769,56,0
,2,22682,54771,56,0
,2,22683,54773,56,0
,2,22684,54775,56,0
,2,22685,54777,56,0
,2,22686,54779,56,0
,2,22687,54781,56,0
,2,22688,54783,56,0
,2,22689,54785,56,0
,2,22690,54787,56,0
,2,22691,54789,56,0
,2,22692,54791,56,0
,2,22693,54793,56,0
,2,22694,54795,56,0
,2,22695,54797,56,0
,2,22696,54799,56,0
,2,22697,54801,56,0
,2,22698,54803,56,0
,2,22699,54805,56,0
,2,22700,54807,56,0
,2,22701,54809,56,0
,2,22702,54811,56,0
,2,22703,54813,56,0
,2,22704,54815,56,0
,2,22705,54817,56,0
,2,22706,54819,56,0
,2,22707,54821,56,0
,2,22708,54823,56,0
,2,22709,54825,56,0
,2,22710,54827,56,0
,2,22711,54829,56,0
,2,22712,54831,56,0
,2,22713,54833,56,0
,2,22714,54835,56,0
,2,22715,54837,56,0
,2,22716,54839,56,0
,2,22717,54841,56,0
,2,22718,54843,56,0
,2,22719,54845,56,0
,2,22720,54847,56,0
,2,22721,54849,56,0
,2,22722,54851,56,0
,2,22723,54853,56,0
,2,22724,54855,56,0
,2,22725,54857,56,0
,2,22726,54859,56,0
,2,22727,54861,56,0
,2,22728,54863,56,0
,2,22729,54865,56,0
,2,22730,54867,56,0
,2,22731,54869,56,0
,2,22732,54871,56,0
,2,22733,54873,56,0
,2,22734,54875,56,0
,2,22735,54877,56,0
,2,22736,54879,56,0
,2,22737,54881,56,0
,2,22738,54883,56,0
,2,22739,54885,56,0
,2,22740,54887,56,0
,2,22741,54889,56,0
,2,22742,54891,56,0
,2,22743,54893,56,0
,2,22744,54895,56,0
,2,22745,54897,56,0
,2,22746,54899,56,0
,2,22747,54901,56,0
,2,22748,54903,56,0
,2,22749,54905,56,0
,2,22750,54907,56,0
,2,22751,54909,56,0
,2,22752,54911,56,0
,2,22753,54913,56,0
,2,22754,54915,56,0
,2,22755,54917,56,0
,2,22756,54919,56,0
,2,22757,54921,56,0
,2,22758,54923,56,0
,2,22759,54925,56,0
,2,22760,54927,56,0
,2,22761,54929,56,0
,2,22762,54931,56,0
,2,22763,54933,56,0
,2,22764,54935,56,0
,2,22765,54937,56,0
,2,22766,54939,56,0
,2,22767,54941,56,0
,2,22768,54943,56,0
,2,22769,54945,56,0
,2,22770,54947,56,0
,2,22771,54949,56,0
,2,22772,54951,56,0
,2,22773,54953,56,0
,2,22774,54955,56,0
,2,22775,54957,56,0
,2,22776,54959,56,0
,2,22777,54961,56,0
,2,22778,54963,56,0
,2,22779,54965,56,0
,2,22780,54967,56,0
,2,22781,54969,56,0
,2,22782,54971,56,0
,2,22783,54973,56,0
,2,22784,54975,56,0
,2,22785,54977,56,0
,2,22786,54979,56,0
,2,22787,54981,56,0
,2,22788,54983,56,0
,2,22789,54985,56,0
,2,22790,54987,56,0
,2,22791,54989,56,0
,2,22792,54991,56,0
,2,22793,54993,56,0
,2,22794,54995,56,0
,2,22795,54997,56,0
,2,22796,54999,56,0
,2,22797,55001,56,0
,2,22798,55003,56,0
,2,22799,55005,56,0
,2,22800,55007,56,0
,2,22801,55009,56,0
,2,22802,55011,56,0
,2,22803,55013,56,0
,2,22804,55015,56,0
,2,22805,55017,56,0
,2,22806,55019,56,0
,2,22807,55021,56,0
,2,22808,55023,56,0
,2,22809,55025,56,0
,2,22810,55027,56,0
,2,22811,55029,56,0
,2,22812,55031,56,0
,2,22813,55033,56,0
,2,22814,55035,56,0
,2,22815,55037,56,0
,2,22816,55039,56,0
,2,22817,55041,56,0
,2,22818,55043,56,0
,2,22819,55045,56,0
,2,22820,55047,56,0
,2,22821,55049,56,0
,2,22822,55051,56,0
,2,22823,55053,56,0
,2,22824,55055,56,0
,2,22825,55057,56,0
,2,22826,55059,56,0
,2,22827,55061,56,0
,2,22828,55063,56,0
,2,22829,55065,56,0
,2,22830,55067,56,0
,2,22831,55069,56,0
,2,22832,55071,56,0
,2,22833,55073,56,0
,2,22834,55075,56,0
,2,22835,55077,56,0
,2,22836,55079,56,0
,2,22837,55081,56,0
,2,22838,55083,56,0
,2,22839,55085,56,0
,2,22840,55087,56,0
,2,22841,55089,56,0
,2,22842,55091,56,0
,2,22843,55093,56,0
,2,22844,55095,56,0
,2,22845,55097,56,0
,2,22846,55099,56,0
,2,22847,55101,56,0
,2,22848,55103,56,0
,2,22849,55105,56,0
,2,22850,55107,56,0
,2,22851,55109,56,0
,2,22852,55111,56,0
,2,22853,55113,56,0
,2,22854,55115,56,0
,2,22855,55117,56,0
,2,22856,55119,56,0
,2,22857,55121,56,0
,2,22858,55123,56,0
,2,22859,55125,56,0
,2,22860,55127,56,0
,2,22861,55129,56,0
,2,22862,55131,56,0
,2,22863,55133,56,0
,2,22864,55135,56,0
,2,22865,55137,56,0
,2,22866,55139,56,0
,2,22867,55141,56,0
,2,22868,55143,56,0
,2,22869,55145,56,0
,2,22870,55147,56,0
,2,22871,55149,56,0
,2,22872,55151,56,0
,2,22873,55153,56,0
,2,22874,55155,56,0
,2,22875,55157,56,0
,2,22876,55159,56,0
,2,22877,55161,56,0
,2,22878,55163,56,0
,2,22879,55165,56,0
,2,22880,55167,56,0
,2,22881,55169,56,0
,2,22882,55171,56,0
,2,22883,55173,56,0
,2,22884,55175,56,0
,2,22885,55177,56,0
,2,22886,55179,56,0
,2,22887,55181,56,0
,2,22888,55183,56,0
,2,22889,55185,56,0
,2,22890,55187,56,0
,2,22891,55189,56,0
,2,22892,55191,56,0
,2,22893,55193,56,0
,2,22894,55195,56,0
,2,22895,55197,56,0
,2,22896,55199,56,0
,2,22897,55201,56,0
,2,22898,55203,56,0
,2,22899,55205,56,0
,2,22900,55207,56,0
,2,22901,55209,56,0
,2,22902,55211,56,0
,2,22903,55213,56,0
,2,22904,55215,56,0
,2,22905,55217,56,0
,2,22906,55219,56,0
,2,22907,55221,56,0
,2,22908,55223,56,0
,2,22909,55225,56,0
,2,22910,55227,56,0
,2,22911,55229,56,0
,2,22912,55231,56,0
,2,22913,55233,56,0
,2,22914,55235,56,0
,2,22915,55237,56,0
,2,22916,55239,56,0
,2,22917,55241,56,0
,2,22918,55243,56,0
,2,22919,55245,56,0
,2,22920,55247,56,0
,2,22921,55249,56,0
,2,22922,55251,56,0
,2,22923,55253,56,0
,2,22924,55255,56,0
,2,22925,55257,56,0
,2,22926,55259,56,0
,2,22927,55261,56,0
,2,22928,55263,56,0
,2,22929,55265,56,0
,2,22930,55267,56,0
,2,22931,55269,56,0
,2,22932,55271,56,0
,2,22933,55273,56,0
,2,22934,55275,56,0
,2,22935,55277,56,0
,2,22936,55279,56,0
,2,22937,55281,56,0
,2,22938,55283,56,0
,2,22939,55285,56,0
,2,22940,55287,56,0
,2,22941,55289,56,0
,2,22942,55291,56,0
,2,22943,55293,56,0
,2,22944,55295,56,0
,2,22945,55297,56,0
,2,22946,55299,56,0
,2,22947,55301,56,0
,2,22948,55303,56,0
,2,22949,55305,56,0
,2,22950,55307,56,0
,2,22951,55309,56,0
,2,22952,55311,56,0
,2,22953,55313,56,0
,2,22954,55315,56,0
,2,22955,55317,56,0
,2,22956,55319,56,0
,2,22957,55321,56,0
,2,22958,55323,56,0
,2,22959,55325,56,0
,2,22960,55327,56,0
,2,22961,55329,56,0
,2,22962,55331,56,0
,2,22963,55333,56,0
,2,22964,55335,56,0
,2,22965,55337,56,0
,2,22966,55339,56,0
,2,22967,55341,56,0
,2,22968,55343,56,0
,2,22969,55345,56,0
,2,22970,55347,56,0
,2,22971,55349,56,0
,2,22972,55351,56,0
,2,22973,55353,56,0
,2,22974,55355,56,0
,2,22975,55357,56,0
,2,22976,55359,56,0
,2,22977,55361,56,0
,2,22978,55363,56,0
,2,22979,55365,56,0
,2,22980,55367,56,0
,2,22981,55369,56,0
,2,22982,55371,56,0
,2,22983,55373,56,0
,2,22984,55375,56,0
,2,22985,55377,56,0
,2,22986,55379,56,0
,2,22987,55381,56,0
,2,22988,55383,56,0
,2,22989,55385,56,0
,2,22990,55387,56,0
,2,22991,55389,56,0
,2,22992,55391,56,0
,2,22993,55393,56,0
,2,22994,55395,56,0
,2,22995,55397,56,0
,2,22996,55399,56,0
,2,22997,55401,56,0
,2,22998,55403,56,0
,2,22999,55405,56,0
,2,23000,55407,56,0
,2,23001,55409,56,0
,2,23002,55411,56,0
,2,23003,55413,56,0
,2,23004,55415,56,0
,2,23005,55417,56,0
,2,23006,55419,56,0
,2,23007,55421,56,0
,2,23008,55423,56,0
,2,23009,55425,56,0
,2,23010,55427,56,0
,2,23011,55429,56,0
,2,23012,55431,56,0
,2,23013,55433,56,0
,2,23014,55435,56,0
,2,23015,55437,56,0
,2,23016,55439,56,0
,2,23017,55441,56,0
,2,23018,55443,56,0
,2,23019,55445,56,0
,2,23020,55447,56,0
,2,23021,55449,56,0
,2,23022,55451,56,0
,2,23023,55453,56,0
,2,23024,55455,56,0
,2,23025,55457,56,0
,2,23026,55459,56,0
,2,23027,55461,56,0
,2,23028,55463,56,0
,2,23029,55465,56,0
,2,23030,55467,56,0
,2,23031,55469,56,0
,2,23032,55471,56,0
,2,23033,55473,56,0
,2,23034,55475,56,0
,2,23035,55477,56,0
,2,23036,55479,56,0
,2,23037,55481,56,0
,2,23038,55483,56,0
,2,23039,55485,56,0
,2,23040,55487,56,0
,2,23041,55489,56,0
,2,23042,55491,56,0
,2,23043,55493,56,0
,2,23044,55495,56,0
,2,23045,55497,56,0
,2,23046,55499,56,0
,2,23047,55501,56,0
,2,23048,55503,56,0
,2,23049,55505,56,0
,2,23050,55507,56,0
,2,23051,55509,56,0
,2,23052,55511,56,0
,2,23053,55513,56,0
,2,23054,55515,56,0
,2,23055,55517,56,0
,2,23056,55519,56,0
,2,23057,55521,56,0
,2,23058,55523,56,0
,2,23059,55525,56,0
,2,23060,55527,56,0
,2,23061,55529,56,0
,2,23062,55531,56,0
,2,23063,55533,56,0
,2,23064,55535,56,0
,2,23065,55537,56,0
,2,23066,55539,56,0
,2,23067,55541,56,0
,2,23068,55543,56,0
,2,23069,55545,56,0
,2,23070,55547,56,0
,2,23071,55549,56,0
,2,23072,55551,56,0
,2,23073,55553,56,0
,2,23074,55555,56,0
,2,23075,55557,56,0
,2,23076,55559,56,0
,2,23077,55561,56,0
,2,23078,55563,56,0
,2,23079,55565,56,0
,2,23080,55567,56,0
,2,23081,55569,56,0
,2,23082,55571,56,0
,2,23083,55573,56,0
,2,23084,55575,56,0
,2,23085,55577,56,0
,2,23086,55579,56,0
,2,23087,55581,56,0
,2,23088,55583,56,0
,2,23089,55585,56,0
,2,23090,55587,56,0
,2,23091,55589,56,0
,2,23092,55591,56,0
,2,23093,55593,56,0
,2,23094,55595,56,0
,2,23095,55597,56,0
,2,23096,55599,56,0
,2,23097,55601,56,0
,2,23098,55603,56,0
,2,23099,55605,56,0
,2,23100,55607,56,0
,2,23101,55609,56,0
,2,23102,55611,56,0
,2,23103,55613,56,0
,2,23104,55615,56,0
,2,23105,55617,56,0
,2,23106,55619,56,0
,2,23107,55621,56,0
,2,23108,55623,56,0
,2,23109,55625,56,0
,2,23110,55627,56,0
,2,23111,55629,56,0
,2,23112,55631,56,0
,2,23113,55633,56,0
,2,23114,55635,56,0
,2,23115,55637,56,0
,2,23116,55639,56,0
,2,23117,55641,56,0
,2,23118,55643,56,0
,2,23119,55645,56,0
,2,23120,55647,56,0
,2,23121,55649,56,0
,2,23122,55651,56,0
,2,23123,55653,56,0
,2,23124,55655,56,0
,2,23125,55657,56,0
,2,23126,55659,56,0
,2,23127,55661,56,0
,2,23128,55663,56,0
,2,23129,55665,56,0
,2,23130,55667,56,0
,2,23131,55669,56,0
,2,23132,55671,56,0
,2,23133,55673,56,0
,2,23134,55675,56,0
,2,23135,55677,56,0
,2,23136,55679,56,0
,2,23137,55681,56,0
,2,23138,55683,56,0
,2,23139,55685,56,0
,2,23140,55687,56,0
,2,23141,55689,56,0
,2,23142,55691,56,0
,2,23143,55693,56,0
,2,23144,55695,56,0
,2,23145,55697,56,0
,2,23146,55699,56,0
,2,23147,55701,56,0
,2,23148,55703,56,0
,2,23149,55705,56,0
,2,23150,55707,56,0
,2,23151,55709,56,0
,2,23152,55711,56,0
,2,23153,55713,56,0
,2,23154,55715,56,0
,2,23155,55717,56,0
,2,23156,55719,56,0
,2,23157,55721,56,0
,2,23158,55723,56,0
,2,23159,55725,56,0
,2,23160,55727,56,0
,2,23161,55729,56,0
,2,23162,55731,56,0
,2,23163,55733,56,0
,2,23164,55735,56,0
,2,23165,55737,56,0
,2,23166,55739,56,0
,2,23167,55741,56,0
,2,23168,55743,56,0
,2,23169,55745,56,0
,2,23170,55747,56,0
,2,23171,55749,56,0
,2,23172,55751,56,0
,2,23173,55753,56,0
,2,23174,55755,56,0
,2,23175,55757,56,0
,2,23176,55759,56,0
,2,23177,55761,56,0
,2,23178,55763,56,0
,2,23179,55765,56,0
,2,23180,55767,56,0
,2,23181,55769,56,0
,2,23182,55771,56,0
,2,23183,55773,56,0
,2,23184,55775,56,0
,2,23185,55777,56,0
,2,23186,55779,56,0
,2,23187,55781,56,0
,2,23188,55783,56,0
,2,23189,55785,56,0
,2,23190,55787,56,0
,2,23191,55789,56,0
,2,23192,55791,56,0
,2,23193,55793,56,0
,2,23194,55795,56,0
,2,23195,55797,56,0
,2,23196,55799,56,0
,2,23197,55801,56,0
,2,23198,55803,56,0
,2,23199,55805,56,0
,2,23200,55807,56,0
,2,23201,55809,56,0
,2,23202,55811,56,0
,2,23203,55813,56,0
,2,23204,55815,56,0
,2,23205,55817,56,0
,2,23206,55819,56,0
,2,23207,55821,56,0
,2,23208,55823,56,0
,2,23209,55825,56,0
,2,23210,55827,56,0
,2,23211,55829,56,0
,2,23212,55831,56,0
,2,23213,55833,56,0
,2,23214,55835,56,0
,2,23215,55837,56,0
,2,23216,55839,56,0
,2,23217,55841,56,0
,2,23218,55843,56,0
,2,23219,55845,56,0
,2,23220,55847,56,0
,2,23221,55849,56,0
,2,23222,55851,56,0
,2,23223,55853,56,0
,2,23224,55855,56,0
,2,23225,55857,56,0
,2,23226,55859,56,0
,2,23227,55861,56,0
,2,23228,55863,56,0
,2,23229,55865,56,0
,2,23230,55867,56,0
,2,23231,55869,56,0
,2,23232,55871,56,0
,2,23233,55873,56,0
,2,23234,55875,56,0
,2,23235,55877,56,0
,2,23236,55879,56,0
,2,23237,55881,56,0
,2,23238,55883,56,0
,2,23239,55885,56,0
,2,23240,55887,56,0
,2,23241,55889,56,0
,2,23242,55891,56,0
,2,23243,55893,56,0
,2,23244,55895,56,0
,2,23245,55897,56,0
,2,23246,55899,56,0
,2,23247,55901,56,0
,2,23248,55903,56,0
,2,23249,55905,56,0
,2,23250,55907,56,0
,2,23251,55909,56,0
,2,23252,55911,56,0
,2,23253,55913,56,0
,2,23254,55915,56,0
,2,23255,55917,56,0
,2,23256,55919,56,0
,2,23257,55921,56,0
,2,23258,55923,56,0
,2,23259,55925,56,0
,2,23260,55927,56,0
,2,23261,55929,56,0
,2,23262,55931,56,0
,2,23263,55933,56,0
,2,23264,55935,56,0
,2,23265,55937,56,0
,2,23266,55939,56,0
,2,23267,55941,56,0
,2,23268,55943,56,0
,2,23269,55945,56,0
,2,23270,55947,56,0
,2,23271,55949,56,0
,2,23272,55951,56,0
,2,23273,55953,56,0
,2,23274,55955,56,0
,2,23275,55957,56,0
,2,23276,55959,56,0
,2,23277,55961,56,0
,2,23278,55963,56,0
,2,23279,55965,56,0
,2,23280,55967,56,0
,2,23281,55969,56,0
,2,23282,55971,56,0
,2,23283,55973,56,0
,2,23284,55975,56,0
,2,23285,55977,56,0
,2,23286,55979,56,0
,2,23287,55981,56,0
,2,23288,55983,56,0
,2,23289,55985,56,0
,2,23290,55987,56,0
,2,23291,55989,56,0
,2,23292,55991,56,0
,2,23293,55993,56,0
,2,23294,55995,56,0
,2,23295,55997,56,0
,2,23296,55999,56,0
,2,23297,56001,56,0
,2,23298,56003,56,0
,2,23299,56005,56,0
,2,23300,56007,56,0
,2,23301,56009,56,0
,2,23302,56011,56,0
,2,23303,56013,56,0
,2,23304,56015,56,0
,2,23305,56017,56,0
,2,23306,56019,56,0
,2,23307,56021,56,0
,2,23308,56023,56,0
,2,23309,56025,56,0
,2,23310,56027,56,0
,2,23311,56029,56,0
,2,23312,56031,56,0
,2,23313,56033,56,0
,2,23314,56035,56,0
,2,23315,56037,56,0
,2,23316,56039,56,0
,2,23317,56041,56,0
,2,23318,56043,56,0
,2,23319,56045,56,0
,2,23320,56047,56,0
,2,23321,56049,56,0
,2,23322,56051,56,0
,2,23323,56053,56,0
,2,23324,56055,56,0
,2,23325,56057,56,0
,2,23326,56059,56,0
,2,23327,56061,56,0
,2,23328,56063,56,0
,2,23329,56065,56,0
,2,23330,56067,56,0
,2,23331,56069,56,0
,2,23332,56071,56,0
,2,23333,56073,56,0
,2,23334,56075,56,0
,2,23335,56077,56,0
,2,23336,56079,56,0
,2,23337,56081,56,0
,2,23338,56083,56,0
,2,23339,56085,56,0
,2,23340,56087,56,0
,2,23341,56089,56,0
,2,23342,56091,56,0
,2,23343,56093,56,0
,2,23344,56095,56,0
,2,23345,56097,56,0
,2,23346,56099,56,0
,2,23347,56101,56,0
,2,23348,56103,56,0
,2,23349,56105,56,0
,2,23350,56107,56,0
,2,23351,56109,56,0
,2,23352,56111,56,0
,2,23353,56113,56,0
,2,23354,56115,56,0
,2,23355,56117,56,0
,2,23356,56119,56,0
,2,23357,56121,56,0
,2,23358,56123,56,0
,2,23359,56125,56,0
,2,23360,56127,56,0
,2,23361,56129,56,0
,2,23362,56131,56,0
,2,23363,56133,56,0
,2,23364,56135,56,0
,2,23365,56137,56,0
,2,23366,56139,56,0
,2,23367,56141,56,0
,2,23368,56143,56,0
,2,23369,56145,56,0
,2,23370,56147,56,0
,2,23371,56149,56,0
,2,23372,56151,56,0
,2,23373,56153,56,0
,2,23374,56155,56,0
,2,23375,56157,56,0
,2,23376,56159,56,0
,2,23377,56161,56,0
,2,23378,56163,56,0
,2,23379,56165,56,0
,2,23380,56167,56,0
,2,23381,56169,56,0
,2,23382,56171,56,0
,2,23383,56173,56,0
,2,23384,56175,56,0
,2,23385,56177,56,0
,2,23386,56179,56,0
,2,23387,56181,56,0
,2,23388,56183,56,0
,2,23389,56185,56,0
,2,23390,56187,56,0
,2,23391,56189,56,0
,2,23392,56191,56,0
,2,23393,56193,56,0
,2,23394,56195,56,0
,2,23395,56197,56,0
,2,23396,56199,56,0
,2,23397,56201,56,0
,2,23398,56203,56,0
,2,23399,56205,56,0
,2,23400,56207,56,0
,2,23401,56209,56,0
,2,23402,56211,56,0
,2,23403,56213,56,0
,2,23404,56215,56,0
,2,23405,56217,56,0
,2,23406,56219,56,0
,2,23407,56221,56,0
,2,23408,56223,56,0
,2,23409,56225,56,0
,2,23410,56227,56,0
,2,23411,56229,56,0
,2,23412,56231,56,0
,2,23413,56233,56,0
,2,23414,56235,56,0
,2,23415,56237,56,0
,2,23416,56239,56,0
,2,23417,56241,56,0
,2,23418,56243,56,0
,2,23419,56245,56,0
,2,23420,56247,56,0
,2,23421,56249,56,0
,2,23422,56251,56,0
,2,23423,56253,56,0
,2,23424,56255,56,0
,2,23425,56257,56,0
,2,23426,56259,56,0
,2,23427,56261,56,0
,2,23428,56263,56,0
,2,23429,56265,56,0
,2,23430,56267,56,0
,2,23431,56269,56,0
,2,23432,56271,56,0
,2,23433,56273,56,0
,2,23434,56275,56,0
,2,23435,56277,56,0
,2,23436,56279,56,0
,2,23437,56281,56,0
,2,23438,56283,56,0
,2,23439,56285,56,0
,2,23440,56287,56,0
,2,23441,56289,56,0
,2,23442,56291,56,0
,2,23443,56293,56,0
,2,23444,56295,56,0
,2,23445,56297,56,0
,2,23446,56299,56,0
,2,23447,56301,56,0
,2,23448,56303,56,0
,2,23449,56305,56,0
,2,23450,56307,56,0
,2,23451,56309,56,0
,2,23452,56311,56,0
,2,23453,56313,56,0
,2,23454,56315,56,0
,2,23455,56317,56,0
,2,23456,56319,56,0
,2,23457,56321,56,0
,2,23458,56323,56,0
,2,23459,56325,56,0
,2,23460,56327,56,0
,2,23461,56329,56,0
,2,23462,56331,56,0
,2,23463,56333,56,0
,2,23464,56335,56,0
,2,23465,56337,56,0
,2,23466,56339,56,0
,2,23467,56341,56,0
,2,23468,56343,56,0
,2,23469,56345,56,0
,2,23470,56347,56,0
,2,23471,56349,56,0
,2,23472,56351,56,0
,2,23473,56353,56,0
,2,23474,56355,56,0
,2,23475,56357,56,0
,2,23476,56359,56,0
,2,23477,56361,56,0
,2,23478,56363,56,0
,2,23479,56365,56,0
,2,23480,56367,56,0
,2,23481,56369,56,0
,2,23482,56371,56,0
,2,23483,56373,56,0
,2,23484,56375,56,0
,2,23485,56377,56,0
,2,23486,56379,56,0
,2,23487,56381,56,0
,2,23488,56383,56,0
,2,23489,56385,56,0
,2,23490,56387,56,0
,2,23491,56389,56,0
,2,23492,56391,56,0
,2,23493,56393,56,0
,2,23494,56395,56,0
,2,23495,56397,56,0
,2,23496,56399,56,0
,2,23497,56401,56,0
,2,23498,56403,56,0
,2,23499,56405,56,0
,2,23500,56407,56,0
,2,23501,56409,56,0
,2,23502,56411,56,0
,2,23503,56413,56,0
,2,23504,56415,56,0
,2,23505,56417,56,0
,2,23506,56419,56,0
,2,23507,56421,56,0
,2,23508,56423,56,0
,2,23509,56425,56,0
,2,23510,56427,56,0
,2,23511,56429,56,0
,2,23512,56431,56,0
,2,23513,56433,56,0
,2,23514,56435,56,0
,2,23515,56437,56,0
,2,23516,56439,56,0
,2,23517,56441,56,0
,2,23518,56443,56,0
,2,23519,56445,56,0
,2,23520,56447,56,0
,2,23521,56449,56,0
,2,23522,56451,56,0
,2,23523,56453,56,0
,2,23524,56455,56,0
,2,23525,56457,56,0
,2,23526,56459,56,0
,2,23527,56461,56,0
,2,23528,56463,56,0
,2,23529,56465,56,0
,2,23530,56467,56,0
,2,23531,56469,56,0
,2,23532,56471,56,0
,2,23533,56473,56,0
,2,23534,56475,56,0
,2,23535,56477,56,0
,2,23536,56479,56,0
,2,23537,56481,56,0
,2,23538,56483,56,0
,2,23539,56485,56,0
,2,23540,56487,56,0
,2,23541,56489,56,0
,2,23542,56491,56,0
,2,23543,56493,56,0
,2,23544,56495,56,0
,2,23545,56497,56,0
,2,23546,56499,56,0
,2,23547,56501,56,0
,2,23548,56503,56,0
,2,23549,56505,56,0
,2,23550,56507,56,0
,2,23551,56509,56,0
,2,23552,56511,56,0
,2,23553,56513,56,0
,2,23554,56515,56,0
,2,23555,56517,56,0
,2,23556,56519,56,0
,2,23557,56521,56,0
,2,23558,56523,56,0
,2,23559,56525,56,0
,2,23560,56527,56,0
,2,23561,56529,56,0
,2,23562,56531,56,0
,2,23563,56533,56,0
,2,23564,56535,56,0
,2,23565,56537,56,0
,2,23566,56539,56,0
,2,23567,56541,56,0
,2,23568,56543,56,0
,2,23569,56545,56,0
,2,23570,56547,56,0
,2,23571,56549,56,0
,2,23572,56551,56,0
,2,23573,56553,56,0
,2,23574,56555,56,0
,2,23575,56557,56,0
,2,23576,56559,56,0
,2,23577,56561,56,0
,2,23578,56563,56,0
,2,23579,56565,56,0
,2,23580,56567,56,0
,2,23581,56569,56,0
,2,23582,56571,56,0
,2,23583,56573,56,0
,2,23584,56575,56,0
,2,23585,56577,56,0
,2,23586,56579,56,0
,2,23587,56581,56,0
,2,23588,56583,56,0
,2,23589,56585,56,0
,2,23590,56587,56,0
,2,23591,56589,56,0
,2,23592,56591,56,0
,2,23593,56593,56,0
,2,23594,56595,56,0
,2,23595,56597,56,0
,2,23596,56599,56,0
,2,23597,56601,56,0
,2,23598,56603,56,0
,2,23599,56605,56,0
,2,23600,56607,56,0
,2,23601,56609,56,0
,2,23602,56611,56,0
,2,23603,56613,56,0
,2,23604,56615,56,0
,2,23605,56617,56,0
,2,23606,56619,56,0
,2,23607,56621,56,0
,2,23608,56623,56,0
,2,23609,56625,56,0
,2,23610,56627,56,0
,2,23611,56629,56,0
,2,23612,56631,56,0
,2,23613,56633,56,0
,2,23614,56635,56,0
,2,23615,56637,56,0
,2,23616,56639,56,0
,2,23617,56641,56,0
,2,23618,56643,56,0
,2,23619,56645,56,0
,2,23620,56647,56,0
,2,23621,56649,56,0
,2,23622,56651,56,0
,2,23623,56653,56,0
,2,23624,56655,56,0
,2,23625,56657,56,0
,2,23626,56659,56,0
,2,23627,56661,56,0
,2,23628,56663,56,0
,2,23629,56665,56,0
,2,23630,56667,56,0
,2,23631,56669,56,0
,2,23632,56671,56,0
,2,23633,56673,56,0
,2,23634,56675,56,0
,2,23635,56677,56,0
,2,23636,56679,56,0
,2,23637,56681,56,0
,2,23638,56683,56,0
,2,23639,56685,56,0
,2,23640,56687,56,0
,2,23641,56689,56,0
,2,23642,56691,56,0
,2,23643,56693,56,0
,2,23644,56695,56,0
,2,23645,56697,56,0
,2,23646,56699,56,0
,2,23647,56701,56,0
,2,23648,56703,56,0
,2,23649,56705,56,0
,2,23650,56707,56,0
,2,23651,56709,56,0
,2,23652,56711,56,0
,2,23653,56713,56,0
,2,23654,56715,56,0
,2,23655,56717,56,0
,2,23656,56719,56,0
,2,23657,56721,56,0
,2,23658,56723,56,0
,2,23659,56725,56,0
,2,23660,56727,56,0
,2,23661,56729,56,0
,2,23662,56731,56,0
,2,23663,56733,56,0
,2,23664,56735,56,0
,2,23665,56737,56,0
,2,23666,56739,56,0
,2,23667,56741,56,0
,2,23668,56743,56,0
,2,23669,56745,56,0
,2,23670,56747,56,0
,2,23671,56749,56,0
,2,23672,56751,56,0
,2,23673,56753,56,0
,2,23674,56755,56,0
,2,23675,56757,56,0
,2,23676,56759,56,0
,2,23677,56761,56,0
,2,23678,56763,56,0
,2,23679,56765,56,0
,2,23680,56767,56,0
,2,23681,56769,56,0
,2,23682,56771,56,0
,2,23683,56773,56,0
,2,23684,56775,56,0
,2,23685,56777,56,0
,2,23686,56779,56,0
,2,23687,56781,56,0
,2,23688,56783,56,0
,2,23689,56785,56,0
,2,23690,56787,56,0
,2,23691,56789,56,0
,2,23692,56791,56,0
,2,23693,56793,56,0
,2,23694,56795,56,0
,2,23695,56797,56,0
,2,23696,56799,56,0
,2,23697,56801,56,0
,2,23698,56803,56,0
,2,23699,56805,56,0
,2,23700,56807,56,0
,2,23701,56809,56,0
,2,23702,56811,56,0
,2,23703,56813,56,0
,2,23704,56815,56,0
,2,23705,56817,56,0
,2,23706,56819,56,0
,2,23707,56821,56,0
,2,23708,56823,56,0
,2,23709,56825,56,0
,2,23710,56827,56,0
,2,23711,56829,56,0
,2,23712,56831,56,0
,2,23713,56833,56,0
,2,23714,56835,56,0
,2,23715,56837,56,0
,2,23716,56839,56,0
,2,23717,56841,56,0
,2,23718,56843,56,0
,2,23719,56845,56,0
,2,23720,56847,56,0
,2,23721,56849,56,0
,2,23722,56851,56,0
,2,23723,56853,56,0
,2,23724,56855,56,0
,2,23725,56857,56,0
,2,23726,56859,56,0
,2,23727,56861,56,0
,2,23728,56863,56,0
,2,23729,56865,56,0
,2,23730,56867,56,0
,2,23731,56869,56,0
,2,23732,56871,56,0
,2,23733,56873,56,0
,2,23734,56875,56,0
,2,23735,56877,56,0
,2,23736,56879,56,0
,2,23737,56881,56,0
,2,23738,56883,56,0
,2,23739,56885,56,0
,2,23740,56887,56,0
,2,23741,56889,56,0
,2,23742,56891,56,0
,2,23743,56893,56,0
,2,23744,56895,56,0
,2,23745,56897,56,0
,2,23746,56899,56,0
,2,23747,56901,56,0
,2,23748,56903,56,0
,2,23749,56905,56,0
,2,23750,56907,56,0
,2,23751,56909,56,0
,2,23752,56911,56,0
,2,23753,56913,56,0
,2,23754,56915,56,0
,2,23755,56917,56,0
,2,23756,56919,56,0
,2,23757,56921,56,0
,2,23758,56923,56,0
,2,23759,56925,56,0
,2,23760,56927,56,0
,2,23761,56929,56,0
,2,23762,56931,56,0
,2,23763,56933,56,0
,2,23764,56935,56,0
,2,23765,56937,56,0
,2,23766,56939,56,0
,2,23767,56941,56,0
,2,23768,56943,56,0
,2,23769,56945,56,0
,2,23770,56947,56,0
,2,23771,56949,56,0
,2,23772,56951,56,0
,2,23773,56953,56,0
,2,23774,56955,56,0
,2,23775,56957,56,0
,2,23776,56959,56,0
,2,23777,56961,56,0
,2,23778,56963,56,0
,2,23779,56965,56,0
,2,23780,56967,56,0
,2,23781,56969,56,0
,2,23782,56971,56,0
,2,23783,56973,56,0
,2,23784,56975,56,0
,2,23785,56977,56,0
,2,23786,56979,56,0
,2,23787,56981,56,0
,2,23788,56983,56,0
,2,23789,56985,56,0
,2,23790,56987,56,0
,2,23791,56989,56,0
,2,23792,56991,56,0
,2,23793,56993,56,0
,2,23794,56995,56,0
,2,23795,56997,56,0
,2,23796,56999,56,0
,2,23797,57001,56,0
,2,23798,57003,56,0
,2,23799,57005,56,0
,2,23800,57007,56,0
,2,23801,57009,56,0
,2,23802,57011,56,0
,2,23803,57013,56,0
,2,23804,57015,56,0
,2,23805,57017,56,0
,2,23806,57019,56,0
,2,23807,57021,56,0
,2,23808,57023,56,0
,2,23809,57025,56,0
,2,23810,57027,56,0
,2,23811,57029,56,0
,2,23812,57031,56,0
,2,23813,57033,56,0
,2,23814,57035,56,0
,2,23815,57037,56,0
,2,23816,57039,56,0
,2,23817,57041,56,0
,2,23818,57043,56,0
,2,23819,57045,56,0
,2,23820,57047,56,0
,2,23821,57049,56,0
,2,23822,57051,56,0
,2,23823,57053,56,0
,2,23824,57055,56,0
,2,23825,57057,56,0
,2,23826,57059,56,0
,2,23827,57061,56,0
,2,23828,57063,56,0
,2,23829,57065,56,0
,2,23830,57067,56,0
,2,23831,57069,56,0
,2,23832,57071,56,0
,2,23833,57073,56,0
,2,23834,57075,56,0
,2,23835,57077,56,0
,2,23836,57079,56,0
,2,23837,57081,56,0
,2,23838,57083,56,0
,2,23839,57085,56,0
,2,23840,57087,56,0
,2,23841,57089,56,0
,2,23842,57091,56,0
,2,23843,57093,56,0
,2,23844,57095,56,0
,2,23845,57097,56,0
,2,23846,57099,56,0
,2,23847,57101,56,0
,2,23848,57103,56,0
,2,23849,57105,56,0
,2,23850,57107,56,0
,2,23851,57109,56,0
,2,23852,57111,56,0
,2,23853,57113,56,0
,2,23854,57115,56,0
,2,23855,57117,56,0
,2,23856,57119,56,0
,2,23857,57121,56,0
,2,23858,57123,56,0
,2,23859,57125,56,0
,2,23860,57127,56,0
,2,23861,57129,56,0
,2,23862,57131,56,0
,2,23863,57133,56,0
,2,23864,57135,56,0
,2,23865,57137,56,0
,2,23866,57139,56,0
,2,23867,57141,56,0
,2,23868,57143,56,0
,2,23869,57145,56,0
,2,23870,57147,56,0
,2,23871,57149,56,0
,2,23872,57151,56,0
,2,23873,57153,56,0
,2,23874,57155,56,0
,2,23875,57157,56,0
,2,23876,57159,56,0
,2,23877,57161,56,0
,2,23878,57163,56,0
,2,23879,57165,56,0
,2,23880,57167,56,0
,2,23881,57169,56,0
,2,23882,57171,56,0
,2,23883,57173,56,0
,2,23884,57175,56,0
,2,23885,57177,56,0
,2,23886,57179,56,0
,2,23887,57181,56,0
,2,23888,57183,56,0
,2,23889,57185,56,0
,2,23890,57187,56,0
,2,23891,57189,56,0
,2,23892,57191,56,0
,2,23893,57193,56,0
,2,23894,57195,56,0
,2,23895,57197,56,0
,2,23896,57199,56,0
,2,23897,57201,56,0
,2,23898,57203,56,0
,2,23899,57205,56,0
,2,23900,57207,56,0
,2,23901,57209,56,0
,2,23902,57211,56,0
,2,23903,57213,56,0
,2,23904,57215,56,0
,2,23905,57217,56,0
,2,23906,57219,56,0
,2,23907,57221,56,0
,2,23908,57223,56,0
,2,23909,57225,56,0
,2,23910,57227,56,0
,2,23911,57229,56,0
,2,23912,57231,56,0
,2,23913,57233,56,0
,2,23914,57235,56,0
,2,23915,57237,56,0
,2,23916,57239,56,0
,2,23917,57241,56,0
,2,23918,57243,56,0
,2,23919,57245,56,0
,2,23920,57247,56,0
,2,23921,57249,56,0
,2,23922,57251,56,0
,2,23923,57253,56,0
,2,23924,57255,56,0
,2,23925,57257,56,0
,2,23926,57259,56,0
,2,23927,57261,56,0
,2,23928,57263,56,0
,2,23929,57265,56,0
,2,23930,57267,56,0
,2,23931,57269,56,0
,2,23932,57271,56,0
,2,23933,57273,56,0
,2,23934,57275,56,0
,2,23935,57277,56,0
,2,23936,57279,56,0
,2,23937,57281,56,0
,2,23938,57283,56,0
,2,23939,57285,56,0
,2,23940,57287,56,0
,2,23941,57289,56,0
,2,23942,57291,56,0
,2,23943,57293,56,0
,2,23944,57295,56,0
,2,23945,57297,56,0
,2,23946,57299,56,0
,2,23947,57301,56,0
,2,23948,57303,56,0
,2,23949,57305,56,0
,2,23950,57307,56,0
,2,23951,57309,56,0
,2,23952,57311,56,0
,2,23953,57313,56,0
,2,23954,57315,56,0
,2,23955,57317,56,0
,2,23956,57319,56,0
,2,23957,57321,56,0
,2,23958,57323,56,0
,2,23959,57325,56,0
,2,23960,57327,56,0
,2,23961,57329,56,0
,2,23962,57331,56,0
,2,23963,57333,56,0
,2,23964,57335,56,0
,2,23965,57337,56,0
,2,23966,57339,56,0
,2,23967,57341,56,0
,2,23968,57343,56,0
,2,23969,57345,56,0
,2,23970,57347,56,0
,2,23971,57349,56,0
,2,23972,57351,56,0
,2,23973,57353,56,0
,2,23974,57355,56,0
,2,23975,57357,56,0
,2,23976,57359,56,0
,2,23977,57361,56,0
,2,23978,57363,56,0
,2,23979,57365,56,0
,2,23980,57367,56,0
,2,23981,57369,56,0
,2,23982,57371,56,0
,2,23983,57373,56,0
,2,23984,57375,56,0
,2,23985,57377,56,0
,2,23986,57379,56,0
,2,23987,57381,56,0
,2,23988,57383,56,0
,2,23989,57385,56,0
,2,23990,57387,56,0
,2,23991,57389,56,0
,2,23992,57391,56,0
,2,23993,57393,56,0
,2,23994,57395,56,0
,2,23995,57397,56,0
,2,23996,57399,56,0
,2,23997,57401,56,0
,2,23998,57403,56,0
,2,23999,57405,56,0
,2,24000,57407,56,0
,2,24001,57409,56,0
,2,24002,57411,56,0
,2,24003,57413,56,0
,2,24004,57415,56,0
,2,24005,57417,56,0
,2,24006,57419,56,0
,2,24007,57421,56,0
,2,24008,57423,56,0
,2,24009,57425,56,0
,2,24010,57427,56,0
,2,24011,57429,56,0
,2,24012,57431,56,0
,2,24013,57433,56,0
,2,24014,57435,56,0
,2,24015,57437,56,0
,2,24016,57439,56,0
,2,24017,57441,56,0
,2,24018,57443,56,0
,2,24019,57445,56,0
,2,24020,57447,56,0
,2,24021,57449,56,0
,2,24022,57451,56,0
,2,24023,57453,56,0
,2,24024,57455,56,0
,2,24025,57457,56,0
,2,24026,57459,56,0
,2,24027,57461,56,0
,2,24028,57463,56,0
,2,24029,57465,56,0
,2,24030,57467,56,0
,2,24031,57469,56,0
,2,24032,57471,56,0
,2,24033,57473,56,0
,2,24034,57475,56,0
,2,24035,57477,56,0
,2,24036,57479,56,0
,2,24037,57481,56,0
,2,24038,57483,56,0
,2,24039,57485,56,0
,2,24040,57487,56,0
,2,24041,57489,56,0
,2,24042,57491,56,0
,2,24043,57493,56,0
,2,24044,57495,56,0
,2,24045,57497,56,0
,2,24046,57499,56,0
,2,24047,57501,56,0
,2,24048,57503,56,0
,2,24049,57505,56,0
,2,24050,57507,56,0
,2,24051,57509,56,0
,2,24052,57511,56,0
,2,24053,57513,56,0
,2,24054,57515,56,0
,2,24055,57517,56,0
,2,24056,57519,56,0
,2,24057,57521,56,0
,2,24058,57523,56,0
,2,24059,57525,56,0
,2,24060,57527,56,0
,2,24061,57529,56,0
,2,24062,57531,56,0
,2,24063,57533,56,0
,2,24064,57535,56,0
,2,24065,57537,56,0
,2,24066,57539,56,0
,2,24067,57541,56,0
,2,24068,57543,56,0
,2,24069,57545,56,0
,2,24070,57547,56,0
,2,24071,57549,56,0
,2,24072,57551,56,0
,2,24073,57553,56,0
,2,24074,57555,56,0
,2,24075,57557,56,0
,2,24076,57559,56,0
,2,24077,57561,56,0
,2,24078,57563,56,0
,2,24079,57565,56,0
,2,24080,57567,56,0
,2,24081,57569,56,0
,2,24082,57571,56,0
,2,24083,57573,56,0
,2,24084,57575,56,0
,2,24085,57577,56,0
,2,24086,57579,56,0
,2,24087,57581,56,0
,2,24088,57583,56,0
,2,24089,57585,56,0
,2,24090,57587,56,0
,2,24091,57589,56,0
,2,24092,57591,56,0
,2,24093,57593,56,0
,2,24094,57595,56,0
,2,24095,57597,56,0
,2,24096,57599,56,0
,2,24097,57601,56,0
,2,24098,57603,56,0
,2,24099,57605,56,0
,2,24100,57607,56,0
,2,24101,57609,56,0
,2,24102,57611,56,0
,2,24103,57613,56,0
,2,24104,57615,56,0
,2,24105,57617,56,0
,2,24106,57619,56,0
,2,24107,57621,56,0
,2,24108,57623,56,0
,2,24109,57625,56,0
,2,24110,57627,56,0
,2,24111,57629,56,0
,2,24112,57631,56,0
,2,24113,57633,56,0
,2,24114,57635,56,0
,2,24115,57637,56,0
,2,24116,57639,56,0
,2,24117,57641,56,0
,2,24118,57643,56,0
,2,24119,57645,56,0
,2,24120,57647,56,0
,2,24121,57649,56,0
,2,24122,57651,56,0
,2,24123,57653,56,0
,2,24124,57655,56,0
,2,24125,57657,56,0
,2,24126,57659,56,0
,2,24127,57661,56,0
,2,24128,57663,56,0
,2,24129,57665,56,0
,2,24130,57667,56,0
,2,24131,57669,56,0
,2,24132,57671,56,0
,2,24133,57673,56,0
,2,24134,57675,56,0
,2,24135,57677,56,0
,2,24136,57679,56,0
,2,24137,57681,56,0
,2,24138,57683,56,0
,2,24139,57685,56,0
,2,24140,57687,56,0
,2,24141,57689,56,0
,2,24142,57691,56,0
,2,24143,57693,56,0
,2,24144,57695,56,0
,2,24145,57697,56,0
,2,24146,57699,56,0
,2,24147,57701,56,0
,2,24148,57703,56,0
,2,24149,57705,56,0
,2,24150,57707,56,0
,2,24151,57709,56,0
,2,24152,57711,56,0
,2,24153,57713,56,0
,2,24154,57715,56,0
,2,24155,57717,56,0
,2,24156,57719,56,0
,2,24157,57721,56,0
,2,24158,57723,56,0
,2,24159,57725,56,0
,2,24160,57727,56,0
,2,24161,57729,56,0
,2,24162,57731,56,0
,2,24163,57733,56,0
,2,24164,57735,56,0
,2,24165,57737,56,0
,2,24166,57739,56,0
,2,24167,57741,56,0
,2,24168,57743,56,0
,2,24169,57745,56,0
,2,24170,57747,56,0
,2,24171,57749,56,0
,2,24172,57751,56,0
,2,24173,57753,56,0
,2,24174,57755,56,0
,2,24175,57757,56,0
,2,24176,57759,56,0
,2,24177,57761,56,0
,2,24178,57763,56,0
,2,24179,57765,56,0
,2,24180,57767,56,0
,2,24181,57769,56,0
,2,24182,57771,56,0
,2,24183,57773,56,0
,2,24184,57775,56,0
,2,24185,57777,56,0
,2,24186,57779,56,0
,2,24187,57781,56,0
,2,24188,57783,56,0
,2,24189,57785,56,0
,2,24190,57787,56,0
,2,24191,57789,56,0
,2,24192,57791,56,0
,2,24193,57793,56,0
,2,24194,57795,56,0
,2,24195,57797,56,0
,2,24196,57799,56,0
,2,24197,57801,56,0
,2,24198,57803,56,0
,2,24199,57805,56,0
,2,24200,57807,56,0
,2,24201,57809,56,0
,2,24202,57811,56,0
,2,24203,57813,56,0
,2,24204,57815,56,0
,2,24205,57817,56,0
,2,24206,57819,56,0
,2,24207,57821,56,0
,2,24208,57823,56,0
,2,24209,57825,56,0
,2,24210,57827,56,0
,2,24211,57829,56,0
,2,24212,57831,56,0
,2,24213,57833,56,0
,2,24214,57835,56,0
,2,24215,57837,56,0
,2,24216,57839,56,0
,2,24217,57841,56,0
,2,24218,57843,56,0
,2,24219,57845,56,0
,2,24220,57847,56,0
,2,24221,57849,56,0
,2,24222,57851,56,0
,2,24223,57853,56,0
,2,24224,57855,56,0
,2,24225,57857,56,0
,2,24226,57859,56,0
,2,24227,57861,56,0
,2,24228,57863,56,0
,2,24229,57865,56,0
,2,24230,57867,56,0
,2,24231,57869,56,0
,2,24232,57871,56,0
,2,24233,57873,56,0
,2,24234,57875,56,0
,2,24235,57877,56,0
,2,24236,57879,56,0
,2,24237,57881,56,0
,2,24238,57883,56,0
,2,24239,57885,56,0
,2,24240,57887,56,0
,2,24241,57889,56,0
,2,24242,57891,56,0
,2,24243,57893,56,0
,2,24244,57895,56,0
,2,24245,57897,56,0
,2,24246,57899,56,0
,2,24247,57901,56,0
,2,24248,57903,56,0
,2,24249,57905,56,0
,2,24250,57907,56,0
,2,24251,57909,56,0
,2,24252,57911,56,0
,2,24253,57913,56,0
,2,24254,57915,56,0
,2,24255,57917,56,0
,2,24256,57919,56,0
,2,24257,57921,56,0
,2,24258,57923,56,0
,2,24259,57925,56,0
,2,24260,57927,56,0
,2,24261,57929,56,0
,2,24262,57931,56,0
,2,24263,57933,56,0
,2,24264,57935,56,0
,2,24265,57937,56,0
,2,24266,57939,56,0
,2,24267,57941,56,0
,2,24268,57943,56,0
,2,24269,57945,56,0
,2,24270,57947,56,0
,2,24271,57949,56,0
,2,24272,57951,56,0
,2,24273,57953,56,0
,2,24274,57955,56,0
,2,24275,57957,56,0
,2,24276,57959,56,0
,2,24277,57961,56,0
,2,24278,57963,56,0
,2,24279,57965,56,0
,2,24280,57967,56,0
,2,24281,57969,56,0
,2,24282,57971,56,0
,2,24283,57973,56,0
,2,24284,57975,56,0
,2,24285,57977,56,0
,2,24286,57979,56,0
,2,24287,57981,56,0
,2,24288,57983,56,0
,2,24289,57985,56,0
,2,24290,57987,56,0
,2,24291,57989,56,0
,2,24292,57991,56,0
,2,24293,57993,56,0
,2,24294,57995,56,0
,2,24295,57997,56,0
,2,24296,57999,56,0
,2,24297,58001,56,0
,2,24298,58003,56,0
,2,24299,58005,56,0
,2,24300,58007,56,0
,2,24301,58009,56,0
,2,24302,58011,56,0
,2,24303,58013,56,0
,2,24304,58015,56,0
,2,24305,58017,56,0
,2,24306,58019,56,0
,2,24307,58021,56,0
,2,24308,58023,56,0
,2,24309,58025,56,0
,2,24310,58027,56,0
,2,24311,58029,56,0
,2,24312,58031,56,0
,2,24313,58033,56,0
,2,24314,58035,56,0
,2,24315,58037,56,0
,2,24316,58039,56,0
,2,24317,58041,56,0
,2,24318,58043,56,0
,2,24319,58045,56,0
,2,24320,58047,56,0
,2,24321,58049,56,0
,2,24322,58051,56,0
,2,24323,58053,56,0
,2,24324,58055,56,0
,2,24325,58057,56,0
,2,24326,58059,56,0
,2,24327,58061,56,0
,2,24328,58063,56,0
,2,24329,58065,56,0
,2,24330,58067,56,0
,2,24331,58069,56,0
,2,24332,58071,56,0
,2,24333,58073,56,0
,2,24334,58075,56,0
,2,24335,58077,56,0
,2,24336,58079,56,0
,2,24337,58081,56,0
,2,24338,58083,56,0
,2,24339,58085,56,0
,2,24340,58087,56,0
,2,24341,58089,56,0
,2,24342,58091,56,0
,2,24343,58093,56,0
,2,24344,58095,56,0
,2,24345,58097,56,0
,2,24346,58099,56,0
,2,24347,58101,56,0
,2,24348,58103,56,0
,2,24349,58105,56,0
,2,24350,58107,56,0
,2,24351,58109,56,0
,2,24352,58111,56,0
,2,24353,58113,56,0
,2,24354,58115,56,0
,2,24355,58117,56,0
,2,24356,58119,56,0
,2,24357,58121,56,0
,2,24358,58123,56,0
,2,24359,58125,56,0
,2,24360,58127,56,0
,2,24361,58129,56,0
,2,24362,58131,56,0
,2,24363,58133,56,0
,2,24364,58135,56,0
,2,24365,58137,56,0
,2,24366,58139,56,0
,2,24367,58141,56,0
,2,24368,58143,56,0
,2,24369,58145,56,0
,2,24370,58147,56,0
,2,24371,58149,56,0
,2,24372,58151,56,0
,2,24373,58153,56,0
,2,24374,58155,56,0
,2,24375,58157,56,0
,2,24376,58159,56,0
,2,24377,58161,56,0
,2,24378,58163,56,0
,2,24379,58165,56,0
,2,24380,58167,56,0
,2,24381,58169,56,0
,2,24382,58171,56,0
,2,24383,58173,56,0
,2,24384,58175,56,0
,2,24385,58177,56,0
,2,24386,58179,56,0
,2,24387,58181,56,0
,2,24388,58183,56,0
,2,24389,58185,56,0
,2,24390,58187,56,0
,2,24391,58189,56,0
,2,24392,58191,56,0
,2,24393,58193,56,0
,2,24394,58195,56,0
,2,24395,58197,56,0
,2,24396,58199,56,0
,2,24397,58201,56,0
,2,24398,58203,56,0
,2,24399,58205,56,0
,2,24400,58207,56,0
,2,24401,58209,56,0
,2,24402,58211,56,0
,2,24403,58213,56,0
,2,24404,58215,56,0
,2,24405,58217,56,0
,2,24406,58219,56,0
,2,24407,58221,56,0
,2,24408,58223,56,0
,2,24409,58225,56,0
,2,24410,58227,56,0
,2,24411,58229,56,0
,2,24412,58231,56,0
,2,24413,58233,56,0
,2,24414,58235,56,0
,2,24415,58237,56,0
,2,24416,58239,56,0
,2,24417,58241,56,0
,2,24418,58243,56,0
,2,24419,58245,56,0
,2,24420,58247,56,0
,2,24421,58249,56,0
,2,24422,58251,56,0
,2,24423,58253,56,0
,2,24424,58255,56,0
,2,24425,58257,56,0
,2,24426,58259,56,0
,2,24427,58261,56,0
,2,24428,58263,56,0
,2,24429,58265,56,0
,2,24430,58267,56,0
,2,24431,58269,56,0
,2,24432,58271,56,0
,2,24433,58273,56,0
,2,24434,58275,56,0
,2,24435,58277,56,0
,2,24436,58279,56,0
,2,24437,58281,56,0
,2,24438,58283,56,0
,2,24439,58285,56,0
,2,24440,58287,56,0
,2,24441,58289,56,0
,2,24442,58291,56,0
,2,24443,58293,56,0
,2,24444,58295,56,0
,2,24445,58297,56,0
,2,24446,58299,56,0
,2,24447,58301,56,0
,2,24448,58303,56,0
,2,24449,58305,56,0
,2,24450,58307,56,0
,2,24451,58309,56,0
,2,24452,58311,56,0
,2,24453,58313,56,0
,2,24454,58315,56,0
,2,24455,58317,56,0
,2,24456,58319,56,0
,2,24457,58321,56,0
,2,24458,58323,56,0
,2,24459,58325,56,0
,2,24460,58327,56,0
,2,24461,58329,56,0
,2,24462,58331,56,0
,2,24463,58333,56,0
,2,24464,58335,56,0
,2,24465,58337,56,0
,2,24466,58339,56,0
,2,24467,58341,56,0
,2,24468,58343,56,0
,2,24469,58345,56,0
,2,24470,58347,56,0
,2,24471,58349,56,0
,2,24472,58351,56,0
,2,24473,58353,56,0
,2,24474,58355,56,0
,2,24475,58357,56,0
,2,24476,58359,56,0
,2,24477,58361,56,0
,2,24478,58363,56,0
,2,24479,58365,56,0
,2,24480,58367,56,0
,2,24481,58369,56,0
,2,24482,58371,56,0
,2,24483,58373,56,0
,2,24484,58375,56,0
,2,24485,58377,56,0
,2,24486,58379,56,0
,2,24487,58381,56,0
,2,24488,58383,56,0
,2,24489,58385,56,0
,2,24490,58387,56,0
,2,24491,58389,56,0
,2,24492,58391,56,0
,2,24493,58393,56,0
,2,24494,58395,56,0
,2,24495,58397,56,0
,2,24496,58399,56,0
,2,24497,58401,56,0
,2,24498,58403,56,0
,2,24499,58405,56,0
,2,24500,58407,56,0
,2,24501,58409,56,0
,2,24502,58411,56,0
,2,24503,58413,56,0
,2,24504,58415,56,0
,2,24505,58417,56,0
,2,24506,58419,56,0
,2,24507,58421,56,0
,2,24508,58423,56,0
,2,24509,58425,56,0
,2,24510,58427,56,0
,2,24511,58429,56,0
,2,24512,58431,56,0
,2,24513,58433,56,0
,2,24514,58435,56,0
,2,24515,58437,56,0
,2,24516,58439,56,0
,2,24517,58441,56,0
,2,24518,58443,56,0
,2,24519,58445,56,0
,2,24520,58447,56,0
,2,24521,58449,56,0
,2,24522,58451,56,0
,2,24523,58453,56,0
,2,24524,58455,56,0
,2,24525,58457,56,0
,2,24526,58459,56,0
,2,24527,58461,56,0
,2,24528,58463,56,0
,2,24529,58465,56,0
,2,24530,58467,56,0
,2,24531,58469,56,0
,2,24532,58471,56,0
,2,24533,58473,56,0
,2,24534,58475,56,0
,2,24535,58477,56,0
,2,24536,58479,56,0
,2,24537,58481,56,0
,2,24538,58483,56,0
,2,24539,58485,56,0
,2,24540,58487,56,0
,2,24541,58489,56,0
,2,24542,58491,56,0
,2,24543,58493,56,0
,2,24544,58495,56,0
,2,24545,58497,56,0
,2,24546,58499,56,0
,2,24547,58501,56,0
,2,24548,58503,56,0
,2,24549,58505,56,0
,2,24550,58507,56,0
,2,24551,58509,56,0
,2,24552,58511,56,0
,2,24553,58513,56,0
,2,24554,58515,56,0
,2,24555,58517,56,0
,2,24556,58519,56,0
,2,24557,58521,56,0
,2,24558,58523,56,0
,2,24559,58525,56,0
,2,24560,58527,56,0
,2,24561,58529,56,0
,2,24562,58531,56,0
,2,24563,58533,56,0
,2,24564,58535,56,0
,2,24565,58537,56,0
,2,24566,58539,56,0
,2,24567,58541,56,0
,2,24568,58543,56,0
,2,24569,58545,56,0
,2,24570,58547,56,0
,2,24571,58549,56,0
,2,24572,58551,56,0
,2,24573,58553,56,0
,2,24574,58555,56,0
,2,24575,58557,56,0
,2,24576,58559,56,0
,2,24577,58561,56,0
,2,24578,58563,56,0
,2,24579,58565,56,0
,2,24580,58567,56,0
,2,24581,58569,56,0
,2,24582,58571,56,0
,2,24583,58573,56,0
,2,24584,58575,56,0
,2,24585,58577,56,0
,2,24586,58579,56,0
,2,24587,58581,56,0
,2,24588,58583,56,0
,2,24589,58585,56,0
,2,24590,58587,56,0
,2,24591,58589,56,0
,2,24592,58591,56,0
,2,24593,58593,56,0
,2,24594,58595,56,0
,2,24595,58597,56,0
,2,24596,58599,56,0
,2,24597,58601,56,0
,2,24598,58603,56,0
,2,24599,58605,56,0
,2,24600,58607,56,0
,2,24601,58609,56,0
,2,24602,58611,56,0
,2,24603,58613,56,0
,2,24604,58615,56,0
,2,24605,58617,56,0
,2,24606,58619,56,0
,2,24607,58621,56,0
,2,24608,58623,56,0
,2,24609,58625,56,0
,2,24610,58627,56,0
,2,24611,58629,56,0
,2,24612,58631,56,0
,2,24613,58633,56,0
,2,24614,58635,56,0
,2,24615,58637,56,0
,2,24616,58639,56,0
,2,24617,58641,56,0
,2,24618,58643,56,0
,2,24619,58645,56,0
,2,24620,58647,56,0
,2,24621,58649,56,0
,2,24622,58651,56,0
,2,24623,58653,56,0
,2,24624,58655,56,0
,2,24625,58657,56,0
,2,24626,58659,56,0
,2,24627,58661,56,0
,2,24628,58663,56,0
,2,24629,58665,56,0
,2,24630,58667,56,0
,2,24631,58669,56,0
,2,24632,58671,56,0
,2,24633,58673,56,0
,2,24634,58675,56,0
,2,24635,58677,56,0
,2,24636,58679,56,0
,2,24637,58681,56,0
,2,24638,58683,56,0
,2,24639,58685,56,0
,2,24640,58687,56,0
,2,24641,58689,56,0
,2,24642,58691,56,0
,2,24643,58693,56,0
,2,24644,58695,56,0
,2,24645,58697,56,0
,2,24646,58699,56,0
,2,24647,58701,56,0
,2,24648,58703,56,0
,2,24649,58705,56,0
,2,24650,58707,56,0
,2,24651,58709,56,0
,2,24652,58711,56,0
,2,24653,58713,56,0
,2,24654,58715,56,0
,2,24655,58717,56,0
,2,24656,58719,56,0
,2,24657,58721,56,0
,2,24658,58723,56,0
,2,24659,58725,56,0
,2,24660,58727,56,0
,2,24661,58729,56,0
,2,24662,58731,56,0
,2,24663,58733,56,0
,2,24664,58735,56,0
,2,24665,58737,56,0
,2,24666,58739,56,0
,2,24667,58741,56,0
,2,24668,58743,56,0
,2,24669,58745,56,0
,2,24670,58747,56,0
,2,24671,58749,56,0
,2,24672,58751,56,0
,2,24673,58753,56,0
,2,24674,58755,56,0
,2,24675,58757,56,0
,2,24676,58759,56,0
,2,24677,58761,56,0
,2,24678,58763,56,0
,2,24679,58765,56,0
,2,24680,58767,56,0
,2,24681,58769,56,0
,2,24682,58771,56,0
,2,24683,58773,56,0
,2,24684,58775,56,0
,2,24685,58777,56,0
,2,24686,58779,56,0
,2,24687,58781,56,0
,2,24688,58783,56,0
,2,24689,58785,56,0
,2,24690,58787,56,0
,2,24691,58789,56,0
,2,24692,58791,56,0
,2,24693,58793,56,0
,2,24694,58795,56,0
,2,24695,58797,56,0
,2,24696,58799,56,0
,2,24697,58801,56,0
,2,24698,58803,56,0
,2,24699,58805,56,0
,2,24700,58807,56,0
,2,24701,58809,56,0
,2,24702,58811,56,0
,2,24703,58813,56,0
,2,24704,58815,56,0
,2,24705,58817,56,0
,2,24706,58819,56,0
,2,24707,58821,56,0
,2,24708,58823,56,0
,2,24709,58825,56,0
,2,24710,58827,56,0
,2,24711,58829,56,0
,2,24712,58831,56,0
,2,24713,58833,56,0
,2,24714,58835,56,0
,2,24715,58837,56,0
,2,24716,58839,56,0
,2,24717,58841,56,0
,2,24718,58843,56,0
,2,24719,58845,56,0
,2,24720,58847,56,0
,2,24721,58849,56,0
,2,24722,58851,56,0
,2,24723,58853,56,0
,2,24724,58855,56,0
,2,24725,58857,56,0
,2,24726,58859,56,0
,2,24727,58861,56,0
,2,24728,58863,56,0
,2,24729,58865,56,0
,2,24730,58867,56,0
,2,24731,58869,56,0
,2,24732,58871,56,0
,2,24733,58873,56,0
,2,24734,58875,56,0
,2,24735,58877,56,0
,2,24736,58879,56,0
,2,24737,58881,56,0
,2,24738,58883,56,0
,2,24739,58885,56,0
,2,24740,58887,56,0
,2,24741,58889,56,0
,2,24742,58891,56,0
,2,24743,58893,56,0
,2,24744,58895,56,0
,2,24745,58897,56,0
,2,24746,58899,56,0
,2,24747,58901,56,0
,2,24748,58903,56,0
,2,24749,58905,56,0
,2,24750,58907,56,0
,2,24751,58909,56,0
,2,24752,58911,56,0
,2,24753,58913,56,0
,2,24754,58915,56,0
,2,24755,58917,56,0
,2,24756,58919,56,0
,2,24757,58921,56,0
,2,24758,58923,56,0
,2,24759,58925,56,0
,2,24760,58927,56,0
,2,24761,58929,56,0
,2,24762,58931,56,0
,2,24763,58933,56,0
,2,24764,58935,56,0
,2,24765,58937,56,0
,2,24766,58939,56,0
,2,24767,58941,56,0
,2,24768,58943,56,0
,2,24769,58945,56,0
,2,24770,58947,56,0
,2,24771,58949,56,0
,2,24772,58951,56,0
,2,24773,58953,56,0
,2,24774,58955,56,0
,2,24775,58957,56,0
,2,24776,58959,56,0
,2,24777,58961,56,0
,2,24778,58963,56,0
,2,24779,58965,56,0
,2,24780,58967,56,0
,2,24781,58969,56,0
,2,24782,58971,56,0
,2,24783,58973,56,0
,2,24784,58975,56,0
,2,24785,58977,56,0
,2,24786,58979,56,0
,2,24787,58981,56,0
,2,24788,58983,56,0
,2,24789,58985,56,0
,2,24790,58987,56,0
,2,24791,58989,56,0
,2,24792,58991,56,0
,2,24793,58993,56,0
,2,24794,58995,56,0
,2,24795,58997,56,0
,2,24796,58999,56,0
,2,24797,59001,56,0
,2,24798,59003,56,0
,2,24799,59005,56,0
,2,24800,59007,56,0
,2,24801,59009,56,0
,2,24802,59011,56,0
,2,24803,59013,56,0
,2,24804,59015,56,0
,2,24805,59017,56,0
,2,24806,59019,56,0
,2,24807,59021,56,0
,2,24808,59023,56,0
,2,24809,59025,56,0
,2,24810,59027,56,0
,2,24811,59029,56,0
,2,24812,59031,56,0
,2,24813,59033,56,0
,2,24814,59035,56,0
,2,24815,59037,56,0
,2,24816,59039,56,0
,2,24817,59041,56,0
,2,24818,59043,56,0
,2,24819,59045,56,0
,2,24820,59047,56,0
,2,24821,59049,56,0
,2,24822,59051,56,0
,2,24823,59053,56,0
,2,24824,59055,56,0
,2,24825,59057,56,0
,2,24826,59059,56,0
,2,24827,59061,56,0
,2,24828,59063,56,0
,2,24829,59065,56,0
,2,24830,59067,56,0
,2,24831,59069,56,0
,2,24832,59071,56,0
,2,24833,59073,56,0
,2,24834,59075,56,0
,2,24835,59077,56,0
,2,24836,59079,56,0
,2,24837,59081,56,0
,2,24838,59083,56,0
,2,24839,59085,56,0
,2,24840,59087,56,0
,2,24841,59089,56,0
,2,24842,59091,56,0
,2,24843,59093,56,0
,2,24844,59095,56,0
,2,24845,59097,56,0
,2,24846,59099,56,0
,2,24847,59101,56,0
,2,24848,59103,56,0
,2,24849,59105,56,0
,2,24850,59107,56,0
,2,24851,59109,56,0
,2,24852,59111,56,0
,2,24853,59113,56,0
,2,24854,59115,56,0
,2,24855,59117,56,0
,2,24856,59119,56,0
,2,24857,59121,56,0
,2,24858,59123,56,0
,2,24859,59125,56,0
,2,24860,59127,56,0
,2,24861,59129,56,0
,2,24862,59131,56,0
,2,24863,59133,56,0
,2,24864,59135,56,0
,2,24865,59137,56,0
,2,24866,59139,56,0
,2,24867,59141,56,0
,2,24868,59143,56,0
,2,24869,59145,56,0
,2,24870,59147,56,0
,2,24871,59149,56,0
,2,24872,59151,56,0
,2,24873,59153,56,0
,2,24874,59155,56,0
,2,24875,59157,56,0
,2,24876,59159,56,0
,2,24877,59161,56,0
,2,24878,59163,56,0
,2,24879,59165,56,0
,2,24880,59167,56,0
,2,24881,59169,56,0
,2,24882,59171,56,0
,2,24883,59173,56,0
,2,24884,59175,56,0
,2,24885,59177,56,0
,2,24886,59179,56,0
,2,24887,59181,56,0
,2,24888,59183,56,0
,2,24889,59185,56,0
,2,24890,59187,56,0
,2,24891,59189,56,0
,2,24892,59191,56,0
,2,24893,59193,56,0
,2,24894,59195,56,0
,2,24895,59197,56,0
,2,24896,59199,56,0
,2,24897,59201,56,0
,2,24898,59203,56,0
,2,24899,59205,56,0
,2,24900,59207,56,0
,2,24901,59209,56,0
,2,24902,59211,56,0
,2,24903,59213,56,0
,2,24904,59215,56,0
,2,24905,59217,56,0
,2,24906,59219,56,0
,2,24907,59221,56,0
,2,24908,59223,56,0
,2,24909,59225,56,0
,2,24910,59227,56,0
,2,24911,59229,56,0
,2,24912,59231,56,0
,2,24913,59233,56,0
,2,24914,59235,56,0
,2,24915,59237,56,0
,2,24916,59239,56,0
,2,24917,59241,56,0
,2,24918,59243,56,0
,2,24919,59245,56,0
,2,24920,59247,56,0
,2,24921,59249,56,0
,2,24922,59251,56,0
,2,24923,59253,56,0
,2,24924,59255,56,0
,2,24925,59257,56,0
,2,24926,59259,56,0
,2,24927,59261,56,0
,2,24928,59263,56,0
,2,24929,59265,56,0
,2,24930,59267,56,0
,2,24931,59269,56,0
,2,24932,59271,56,0
,2,24933,59273,56,0
,2,24934,59275,56,0
,2,24935,59277,56,0
,2,24936,59279,56,0
,2,24937,59281,56,0
,2,24938,59283,56,0
,2,24939,59285,56,0
,2,24940,59287,56,0
,2,24941,59289,56,0
,2,24942,59291,56,0
,2,24943,59293,56,0
,2,24944,59295,56,0
,2,24945,59297,56,0
,2,24946,59299,56,0
,2,24947,59301,56,0
,2,24948,59303,56,0
,2,24949,59305,56,0
,2,24950,59307,56,0
,2,24951,59309,56,0
,2,24952,59311,56,0
,2,24953,59313,56,0
,2,24954,59315,56,0
,2,24955,59317,56,0
,2,24956,59319,56,0
,2,24957,59321,56,0
,2,24958,59323,56,0
,2,24959,59325,56,0
,2,24960,59327,56,0
,2,24961,59329,56,0
,2,24962,59331,56,0
,2,24963,59333,56,0
,2,24964,59335,56,0
,2,24965,59337,56,0
,2,24966,59339,56,0
,2,24967,59341,56,0
,2,24968,59343,56,0
,2,24969,59345,56,0
,2,24970,59347,56,0
,2,24971,59349,56,0
,2,24972,59351,56,0
,2,24973,59353,56,0
,2,24974,59355,56,0
,2,24975,59357,56,0
,2,24976,59359,56,0
,2,24977,59361,56,0
,2,24978,59363,56,0
,2,24979,59365,56,0
,2,24980,59367,56,0
,2,24981,59369,56,0
,2,24982,59371,56,0
,2,24983,59373,56,0
,2,24984,59375,56,0
,2,24985,59377,56,0
,2,24986,59379,56,0
,2,24987,59381,56,0
,2,24988,59383,56,0
,2,24989,59385,56,0
,2,24990,59387,56,0
,2,24991,59389,56,0
,2,24992,59391,56,0
,2,24993,59393,56,0
,2,24994,59395,56,0
,2,24995,59397,56,0
,2,24996,59399,56,0
,2,24997,59401,56,0
,2,24998,59403,56,0
,2,24999,59405,56,0
,2,25000,59407,56,0
,2,25001,59409,56,0
,2,25002,59411,56,0
,2,25003,59413,56,0
,2,25004,59415,56,0
,2,25005,59417,56,0
,2,25006,59419,56,0
,2,25007,59421,56,0
,2,25008,59423,56,0
,2,25009,59425,56,0
,2,25010,59427,56,0
,2,25011,59429,56,0
,2,25012,59431,56,0
,2,25013,59433,56,0
,2,25014,59435,56,0
,2,25015,59437,56,0
,2,25016,59439,56,0
,2,25017,59441,56,0
,2,25018,59443,56,0
,2,25019,59445,56,0
,2,25020,59447,56,0
,2,25021,59449,56,0
,2,25022,59451,56,0
,2,25023,59453,56,0
,2,25024,59455,56,0
,2,25025,59457,56,0
,2,25026,59459,56,0
,2,25027,59461,56,0
,2,25028,59463,56,0
,2,25029,59465,56,0
,2,25030,59467,56,0
,2,25031,59469,56,0
,2,25032,59471,56,0
,2,25033,59473,56,0
,2,25034,59475,56,0
,2,25035,59477,56,0
,2,25036,59479,56,0
,2,25037,59481,56,0
,2,25038,59483,56,0
,2,25039,59485,56,0
,2,25040,59487,56,0
,2,25041,59489,56,0
,2,25042,59491,56,0
,2,25043,59493,56,0
,2,25044,59495,56,0
,2,25045,59497,56,0
,2,25046,59499,56,0
,2,25047,59501,56,0
,2,25048,59503,56,0
,2,25049,59505,56,0
,2,25050,59507,56,0
,2,25051,59509,56,0
,2,25052,59511,56,0
,2,25053,59513,56,0
,2,25054,59515,56,0
,2,25055,59517,56,0
,2,25056,59519,56,0
,2,25057,59521,56,0
,2,25058,59523,56,0
,2,25059,59525,56,0
,2,25060,59527,56,0
,2,25061,59529,56,0
,2,25062,59531,56,0
,2,25063,59533,56,0
,2,25064,59535,56,0
,2,25065,59537,56,0
,2,25066,59539,56,0
,2,25067,59541,56,0
,2,25068,59543,56,0
,2,25069,59545,56,0
,2,25070,59547,56,0
,2,25071,59549,56,0
,2,25072,59551,56,0
,2,25073,59553,56,0
,2,25074,59555,56,0
,2,25075,59557,56,0
,2,25076,59559,56,0
,2,25077,59561,56,0
,2,25078,59563,56,0
,2,25079,59565,56,0
,2,25080,59567,56,0
,2,25081,59569,56,0
,2,25082,59571,56,0
,2,25083,59573,56,0
,2,25084,59575,56,0
,2,25085,59577,56,0
,2,25086,59579,56,0
,2,25087,59581,56,0
,2,25088,59583,56,0
,2,25089,59585,56,0
,2,25090,59587,56,0
,2,25091,59589,56,0
,2,25092,59591,56,0
,2,25093,59593,56,0
,2,25094,59595,56,0
,2,25095,59597,56,0
,2,25096,59599,56,0
,2,25097,59601,56,0
,2,25098,59603,56,0
,2,25099,59605,56,0
,2,25100,59607,56,0
,2,25101,59609,56,0
,2,25102,59611,56,0
,2,25103,59613,56,0
,2,25104,59615,56,0
,2,25105,59617,56,0
,2,25106,59619,56,0
,2,25107,59621,56,0
,2,25108,59623,56,0
,2,25109,59625,56,0
,2,25110,59627,56,0
,2,25111,59629,56,0
,2,25112,59631,56,0
,2,25113,59633,56,0
,2,25114,59635,56,0
,2,25115,59637,56,0
,2,25116,59639,56,0
,2,25117,59641,56,0
,2,25118,59643,56,0
,2,25119,59645,56,0
,2,25120,59647,56,0
,2,25121,59649,56,0
,2,25122,59651,56,0
,2,25123,59653,56,0
,2,25124,59655,56,0
,2,25125,59657,56,0
,2,25126,59659,56,0
,2,25127,59661,56,0
,2,25128,59663,56,0
,2,25129,59665,56,0
,2,25130,59667,56,0
,2,25131,59669,56,0
,2,25132,59671,56,0
,2,25133,59673,56,0
,2,25134,59675,56,0
,2,25135,59677,56,0
,2,25136,59679,56,0
,2,25137,59681,56,0
,2,25138,59683,56,0
,2,25139,59685,56,0
,2,25140,59687,56,0
,2,25141,59689,56,0
,2,25142,59691,56,0
,2,25143,59693,56,0
,2,25144,59695,56,0
,2,25145,59697,56,0
,2,25146,59699,56,0
,2,25147,59701,56,0
,2,25148,59703,56,0
,2,25149,59705,56,0
,2,25150,59707,56,0
,2,25151,59709,56,0
,2,25152,59711,56,0
,2,25153,59713,56,0
,2,25154,59715,56,0
,2,25155,59717,56,0
,2,25156,59719,56,0
,2,25157,59721,56,0
,2,25158,59723,56,0
,2,25159,59725,56,0
,2,25160,59727,56,0
,2,25161,59729,56,0
,2,25162,59731,56,0
,2,25163,59733,56,0
,2,25164,59735,56,0
,2,25165,59737,56,0
,2,25166,59739,56,0
,2,25167,59741,56,0
,2,25168,59743,56,0
,2,25169,59745,56,0
,2,25170,59747,56,0
,2,25171,59749,56,0
,2,25172,59751,56,0
,2,25173,59753,56,0
,2,25174,59755,56,0
,2,25175,59757,56,0
,2,25176,59759,56,0
,2,25177,59761,56,0
,2,25178,59763,56,0
,2,25179,59765,56,0
,2,25180,59767,56,0
,2,25181,59769,56,0
,2,25182,59771,56,0
,2,25183,59773,56,0
,2,25184,59775,56,0
,2,25185,59777,56,0
,2,25186,59779,56,0
,2,25187,59781,56,0
,2,25188,59783,56,0
,2,25189,59785,56,0
,2,25190,59787,56,0
,2,25191,59789,56,0
,2,25192,59791,56,0
,2,25193,59793,56,0
,2,25194,59795,56,0
,2,25195,59797,56,0
,2,25196,59799,56,0
,2,25197,59801,56,0
,2,25198,59803,56,0
,2,25199,59805,56,0
,2,25200,59807,56,0
,2,25201,59809,56,0
,2,25202,59811,56,0
,2,25203,59813,56,0
,2,25204,59815,56,0
,2,25205,59817,56,0
,2,25206,59819,56,0
,2,25207,59821,56,0
,2,25208,59823,56,0
,2,25209,59825,56,0
,2,25210,59827,56,0
,2,25211,59829,56,0
,2,25212,59831,56,0
,2,25213,59833,56,0
,2,25214,59835,56,0
,2,25215,59837,56,0
,2,25216,59839,56,0
,2,25217,59841,56,0
,2,25218,59843,56,0
,2,25219,59845,56,0
,2,25220,59847,56,0
,2,25221,59849,56,0
,2,25222,59851,56,0
,2,25223,59853,56,0
,2,25224,59855,56,0
,2,25225,59857,56,0
,2,25226,59859,56,0
,2,25227,59861,56,0
,2,25228,59863,56,0
,2,25229,59865,56,0
,2,25230,59867,56,0
,2,25231,59869,56,0
,2,25232,59871,56,0
,2,25233,59873,56,0
,2,25234,59875,56,0
,2,25235,59877,56,0
,2,25236,59879,56,0
,2,25237,59881,56,0
,2,25238,59883,56,0
,2,25239,59885,56,0
,2,25240,59887,56,0
,2,25241,59889,56,0
,2,25242,59891,56,0
,2,25243,59893,56,0
,2,25244,59895,56,0
,2,25245,59897,56,0
,2,25246,59899,56,0
,2,25247,59901,56,0
,2,25248,59903,56,0
,2,25249,59905,56,0
,2,25250,59907,56,0
,2,25251,59909,56,0
,2,25252,59911,56,0
,2,25253,59913,56,0
,2,25254,59915,56,0
,2,25255,59917,56,0
,2,25256,59919,56,0
,2,25257,59921,56,0
,2,25258,59923,56,0
,2,25259,59925,56,0
,2,25260,59927,56,0
,2,25261,59929,56,0
,2,25262,59931,56,0
,2,25263,59933,56,0
,2,25264,59935,56,0
,2,25265,59937,56,0
,2,25266,59939,56,0
,2,25267,59941,56,0
,2,25268,59943,56,0
,2,25269,59945,56,0
,2,25270,59947,56,0
,2,25271,59949,56,0
,2,25272,59951,56,0
,2,25273,59953,56,0
,2,25274,59955,56,0
,2,25275,59957,56,0
,2,25276,59959,56,0
,2,25277,59961,56,0
,2,25278,59963,56,0
,2,25279,59965,56,0
,2,25280,59967,56,0
,2,25281,59969,56,0
,2,25282,59971,56,0
,2,25283,59973,56,0
,2,25284,59975,56,0
,2,25285,59977,56,0
,2,25286,59979,56,0
,2,25287,59981,56,0
,2,25288,59983,56,0
,2,25289,59985,56,0
,2,25290,59987,56,0
,2,25291,59989,56,0
,2,25292,59991,56,0
,2,25293,59993,56,0
,2,25294,59995,56,0
,2,25295,59997,56,0
,2,25296,59999,56,0
,2,25297,60001,56,0
,2,25298,60003,56,0
,2,25299,60005,56,0
,2,25300,60007,56,0
,2,25301,60009,56,0
,2,25302,60011,56,0
,2,25303,60013,56,0
,2,25304,60015,56,0
,2,25305,60017,56,0
,2,25306,60019,56,0
,2,25307,60021,56,0
,2,25308,60023,56,0
,2,25309,60025,56,0
,2,25310,60027,56,0
,2,25311,60029,56,0
,2,25312,60031,56,0
,2,25313,60033,56,0
,2,25314,60035,56,0
,2,25315,60037,56,0
,2,25316,60039,56,0
,2,25317,60041,56,0
,2,25318,60043,56,0
,2,25319,60045,56,0
,2,25320,60047,56,0
,2,25321,60049,56,0
,2,25322,60051,56,0
,2,25323,60053,56,0
,2,25324,60055,56,0
,2,25325,60057,56,0
,2,25326,60059,56,0
,2,25327,60061,56,0
,2,25328,60063,56,0
,2,25329,60065,56,0
,2,25330,60067,56,0
,2,25331,60069,56,0
,2,25332,60071,56,0
,2,25333,60073,56,0
,2,25334,60075,56,0
,2,25335,60077,56,0
,2,25336,60079,56,0
,2,25337,60081,56,0
,2,25338,60083,56,0
,2,25339,60085,56,0
,2,25340,60087,56,0
,2,25341,60089,56,0
,2,25342,60091,56,0
,2,25343,60093,56,0
,2,25344,60095,56,0
,2,25345,60097,56,0
,2,25346,60099,56,0
,2,25347,60101,56,0
,2,25348,60103,56,0
,2,25349,60105,56,0
,2,25350,60107,56,0
,2,25351,60109,56,0
,2,25352,60111,56,0
,2,25353,60113,56,0
,2,25354,60115,56,0
,2,25355,60117,56,0
,2,25356,60119,56,0
,2,25357,60121,56,0
,2,25358,60123,56,0
,2,25359,60125,56,0
,2,25360,60127,56,0
,2,25361,60129,56,0
,2,25362,60131,56,0
,2,25363,60133,56,0
,2,25364,60135,56,0
,2,25365,60137,56,0
,2,25366,60139,56,0
,2,25367,60141,56,0
,2,25368,60143,56,0
,2,25369,60145,56,0
,2,25370,60147,56,0
,2,25371,60149,56,0
,2,25372,60151,56,0
,2,25373,60153,56,0
,2,25374,60155,56,0
,2,25375,60157,56,0
,2,25376,60159,56,0
,2,25377,60161,56,0
,2,25378,60163,56,0
,2,25379,60165,56,0
,2,25380,60167,56,0
,2,25381,60169,56,0
,2,25382,60171,56,0
,2,25383,60173,56,0
,2,25384,60175,56,0
,2,25385,60177,56,0
,2,25386,60179,56,0
,2,25387,60181,56,0
,2,25388,60183,56,0
,2,25389,60185,56,0
,2,25390,60187,56,0
,2,25391,60189,56,0
,2,25392,60191,56,0
,2,25393,60193,56,0
,2,25394,60195,56,0
,2,25395,60197,56,0
,2,25396,60199,56,0
,2,25397,60201,56,0
,2,25398,60203,56,0
,2,25399,60205,56,0
,2,25400,60207,56,0
,2,25401,60209,56,0
,2,25402,60211,56,0
,2,25403,60213,56,0
,2,25404,60215,56,0
,2,25405,60217,56,0
,2,25406,60219,56,0
,2,25407,60221,56,0
,2,25408,60223,56,0
,2,25409,60225,56,0
,2,25410,60227,56,0
,2,25411,60229,56,0
,2,25412,60231,56,0
,2,25413,60233,56,0
,2,25414,60235,56,0
,2,25415,60237,56,0
,2,25416,60239,56,0
,2,25417,60241,56,0
,2,25418,60243,56,0
,2,25419,60245,56,0
,2,25420,60247,56,0
,2,25421,60249,56,0
,2,25422,60251,56,0
,2,25423,60253,56,0
,2,25424,60255,56,0
,2,25425,60257,56,0
,2,25426,60259,56,0
,2,25427,60261,56,0
,2,25428,60263,56,0
,2,25429,60265,56,0
,2,25430,60267,56,0
,2,25431,60269,56,0
,2,25432,60271,56,0
,2,25433,60273,56,0
,2,25434,60275,56,0
,2,25435,60277,56,0
,2,25436,60279,56,0
,2,25437,60281,56,0
,2,25438,60283,56,0
,2,25439,60285,56,0
,2,25440,60287,56,0
,2,25441,60289,56,0
,2,25442,60291,56,0
,2,25443,60293,56,0
,2,25444,60295,56,0
,2,25445,60297,56,0
,2,25446,60299,56,0
,2,25447,60301,56,0
,2,25448,60303,56,0
,2,25449,60305,56,0
,2,25450,60307,56,0
,2,25451,60309,56,0
,2,25452,60311,56,0
,2,25453,60313,56,0
,2,25454,60315,56,0
,2,25455,60317,56,0
,2,25456,60319,56,0
,2,25457,60321,56,0
,2,25458,60323,56,0
,2,25459,60325,56,0
,2,25460,60327,56,0
,2,25461,60329,56,0
,2,25462,60331,56,0
,2,25463,60333,56,0
,2,25464,60335,56,0
,2,25465,60337,56,0
,2,25466,60339,56,0
,2,25467,60341,56,0
,2,25468,60343,56,0
,2,25469,60345,56,0
,2,25470,60347,56,0
,2,25471,60349,56,0
,2,25472,60351,56,0
,2,25473,60353,56,0
,2,25474,60355,56,0
,2,25475,60357,56,0
,2,25476,60359,56,0
,2,25477,60361,56,0
,2,25478,60363,56,0
,2,25479,60365,56,0
,2,25480,60367,56,0
,2,25481,60369,56,0
,2,25482,60371,56,0
,2,25483,60373,56,0
,2,25484,60375,56,0
,2,25485,60377,56,0
,2,25486,60379,56,0
,2,25487,60381,56,0
,2,25488,60383,56,0
,2,25489,60385,56,0
,2,25490,60387,56,0
,2,25491,60389,56,0
,2,25492,60391,56,0
,2,25493,60393,56,0
,2,25494,60395,56,0
,2,25495,60397,56,0
,2,25496,60399,56,0
,2,25497,60401,56,0
,2,25498,60403,56,0
,2,25499,60405,56,0
,2,25500,60407,56,0
,2,25501,60409,56,0
,2,25502,60411,56,0
,2,25503,60413,56,0
,2,25504,60415,56,0
,2,25505,60417,56,0
,2,25506,60419,56,0
,2,25507,60421,56,0
,2,25508,60423,56,0
,2,25509,60425,56,0
,2,25510,60427,56,0
,2,25511,60429,56,0
,2,25512,60431,56,0
,2,25513,60433,56,0
,2,25514,60435,56,0
,2,25515,60437,56,0
,2,25516,60439,56,0
,2,25517,60441,56,0
,2,25518,60443,56,0
,2,25519,60445,56,0
,2,25520,60447,56,0
,2,25521,60449,56,0
,2,25522,60451,56,0
,2,25523,60453,56,0
,2,25524,60455,56,0
,2,25525,60457,56,0
,2,25526,60459,56,0
,2,25527,60461,56,0
,2,25528,60463,56,0
,2,25529,60465,56,0
,2,25530,60467,56,0
,2,25531,60469,56,0
,2,25532,60471,56,0
,2,25533,60473,56,0
,2,25534,60475,56,0
,2,25535,60477,56,0
,2,25536,60479,56,0
,2,25537,60481,56,0
,2,25538,60483,56,0
,2,25539,60485,56,0
,2,25540,60487,56,0
,2,25541,60489,56,0
,2,25542,60491,56,0
,2,25543,60493,56,0
,2,25544,60495,56,0
,2,25545,60497,56,0
,2,25546,60499,56,0
,2,25547,60501,56,0
,2,25548,60503,56,0
,2,25549,60505,56,0
,2,25550,60507,56,0
,2,25551,60509,56,0
,2,25552,60511,56,0
,2,25553,60513,56,0
,2,25554,60515,56,0
,2,25555,60517,56,0
,2,25556,60519,56,0
,2,25557,60521,56,0
,2,25558,60523,56,0
,2,25559,60525,56,0
,2,25560,60527,56,0
,2,25561,60529,56,0
,2,25562,60531,56,0
,2,25563,60533,56,0
,2,25564,60535,56,0
,2,25565,60537,56,0
,2,25566,60539,56,0
,2,25567,60541,56,0
,2,25568,60543,56,0
,2,25569,60545,56,0
,2,25570,60547,56,0
,2,25571,60549,56,0
,2,25572,60551,56,0
,2,25573,60553,56,0
,2,25574,60555,56,0
,2,25575,60557,56,0
,2,25576,60559,56,0
,2,25577,60561,56,0
,2,25578,60563,56,0
,2,25579,60565,56,0
,2,25580,60567,56,0
,2,25581,60569,56,0
,2,25582,60571,56,0
,2,25583,60573,56,0
,2,25584,60575,56,0
,2,25585,60577,56,0
,2,25586,60579,56,0
,2,25587,60581,56,0
,2,25588,60583,56,0
,2,25589,60585,56,0
,2,25590,60587,56,0
,2,25591,60589,56,0
,2,25592,60591,56,0
,2,25593,60593,56,0
,2,25594,60595,56,0
,2,25595,60597,56,0
,2,25596,60599,56,0
,2,25597,60601,56,0
,2,25598,60603,56,0
,2,25599,60605,56,0
,2,25600,60607,56,0
,2,25601,60609,56,0
,2,25602,60611,56,0
,2,25603,60613,56,0
,2,25604,60615,56,0
,2,25605,60617,56,0
,2,25606,60619,56,0
,2,25607,60621,56,0
,2,25608,60623,56,0
,2,25609,60625,56,0
,2,25610,60627,56,0
,2,25611,60629,56,0
,2,25612,60631,56,0
,2,25613,60633,56,0
,2,25614,60635,56,0
,2,25615,60637,56,0
,2,25616,60639,56,0
,2,25617,60641,56,0
,2,25618,60643,56,0
,2,25619,60645,56,0
,2,25620,60647,56,0
,2,25621,60649,56,0
,2,25622,60651,56,0
,2,25623,60653,56,0
,2,25624,60655,56,0
,2,25625,60657,56,0
,2,25626,60659,56,0
,2,25627,60661,56,0
,2,25628,60663,56,0
,2,25629,60665,56,0
,2,25630,60667,56,0
,2,25631,60669,56,0
,2,25632,60671,56,0
,2,25633,60673,56,0
,2,25634,60675,56,0
,2,25635,60677,56,0
,2,25636,60679,56,0
,2,25637,60681,56,0
,2,25638,60683,56,0
,2,25639,60685,56,0
,2,25640,60687,56,0
,2,25641,60689,56,0
,2,25642,60691,56,0
,2,25643,60693,56,0
,2,25644,60695,56,0
,2,25645,60697,56,0
,2,25646,60699,56,0
,2,25647,60701,56,0
,2,25648,60703,56,0
,2,25649,60705,56,0
,2,25650,60707,56,0
,2,25651,60709,56,0
,2,25652,60711,56,0
,2,25653,60713,56,0
,2,25654,60715,56,0
,2,25655,60717,56,0
,2,25656,60719,56,0
,2,25657,60721,56,0
,2,25658,60723,56,0
,2,25659,60725,56,0
,2,25660,60727,56,0
,2,25661,60729,56,0
,2,25662,60731,56,0
,2,25663,60733,56,0
,2,25664,60735,56,0
,2,25665,60737,56,0
,2,25666,60739,56,0
,2,25667,60741,56,0
,2,25668,60743,56,0
,2,25669,60745,56,0
,2,25670,60747,56,0
,2,25671,60749,56,0
,2,25672,60751,56,0
,2,25673,60753,56,0
,2,25674,60755,56,0
,2,25675,60757,56,0
,2,25676,60759,56,0
,2,25677,60761,56,0
,2,25678,60763,56,0
,2,25679,60765,56,0
,2,25680,60767,56,0
,2,25681,60769,56,0
,2,25682,60771,56,0
,2,25683,60773,56,0
,2,25684,60775,56,0
,2,25685,60777,56,0
,2,25686,60779,56,0
,2,25687,60781,56,0
,2,25688,60783,56,0
,2,25689,60785,56,0
,2,25690,60787,56,0
,2,25691,60789,56,0
,2,25692,60791,56,0
,2,25693,60793,56,0
,2,25694,60795,56,0
,2,25695,60797,56,0
,2,25696,60799,56,0
,2,25697,60801,56,0
,2,25698,60803,56,0
,2,25699,60805,56,0
,2,25700,60807,56,0
,2,25701,60809,56,0
,2,25702,60811,56,0
,2,25703,60813,56,0
,2,25704,60815,56,0
,2,25705,60817,56,0
,2,25706,60819,56,0
,2,25707,60821,56,0
,2,25708,60823,56,0
,2,25709,60825,56,0
,2,25710,60827,56,0
,2,25711,60829,56,0
,2,25712,60831,56,0
,2,25713,60833,56,0
,2,25714,60835,56,0
,2,25715,60837,56,0
,2,25716,60839,56,0
,2,25717,60841,56,0
,2,25718,60843,56,0
,2,25719,60845,56,0
,2,25720,60847,56,0
,2,25721,60849,56,0
,2,25722,60851,56,0
,2,25723,60853,56,0
,2,25724,60855,56,0
,2,25725,60857,56,0
,2,25726,60859,56,0
,2,25727,60861,56,0
,2,25728,60863,56,0
,2,25729,60865,56,0
,2,25730,60867,56,0
,2,25731,60869,56,0
,2,25732,60871,56,0
,2,25733,60873,56,0
,2,25734,60875,56,0
,2,25735,60877,56,0
,2,25736,60879,56,0
,2,25737,60881,56,0
,2,25738,60883,56,0
,2,25739,60885,56,0
,2,25740,60887,56,0
,2,25741,60889,56,0
,2,25742,60891,56,0
,2,25743,60893,56,0
,2,25744,60895,56,0
,2,25745,60897,56,0
,2,25746,60899,56,0
,2,25747,60901,56,0
,2,25748,60903,56,0
,2,25749,60905,56,0
,2,25750,60907,56,0
,2,25751,60909,56,0
,2,25752,60911,56,0
,2,25753,60913,56,0
,2,25754,60915,56,0
,2,25755,60917,56,0
,2,25756,60919,56,0
,2,25757,60921,56,0
,2,25758,60923,56,0
,2,25759,60925,56,0
,2,25760,60927,56,0
,2,25761,60929,56,0
,2,25762,60931,56,0
,2,25763,60933,56,0
,2,25764,60935,56,0
,2,25765,60937,56,0
,2,25766,60939,56,0
,2,25767,60941,56,0
,2,25768,60943,56,0
,2,25769,60945,56,0
,2,25770,60947,56,0
,2,25771,60949,56,0
,2,25772,60951,56,0
,2,25773,60953,56,0
,2,25774,60955,56,0
,2,25775,60957,56,0
,2,25776,60959,56,0
,2,25777,60961,56,0
,2,25778,60963,56,0
,2,25779,60965,56,0
,2,25780,60967,56,0
,2,25781,60969,56,0
,2,25782,60971,56,0
,2,25783,60973,56,0
,2,25784,60975,56,0
,2,25785,60977,56,0
,2,25786,60979,56,0
,2,25787,60981,56,0
,2,25788,60983,56,0
,2,25789,60985,56,0
,2,25790,60987,56,0
,2,25791,60989,56,0
,2,25792,60991,56,0
,2,25793,60993,56,0
,2,25794,60995,56,0
,2,25795,60997,56,0
,2,25796,60999,56,0
,2,25797,61001,56,0
,2,25798,61003,56,0
,2,25799,61005,56,0
,2,25800,61007,56,0
,2,25801,61009,56,0
,2,25802,61011,56,0
,2,25803,61013,56,0
,2,25804,61015,56,0
,2,25805,61017,56,0
,2,25806,61019,56,0
,2,25807,61021,56,0
,2,25808,61023,56,0
,2,25809,61025,56,0
,2,25810,61027,56,0
,2,25811,61029,56,0
,2,25812,61031,56,0
,2,25813,61033,56,0
,2,25814,61035,56,0
,2,25815,61037,56,0
,2,25816,61039,56,0
,2,25817,61041,56,0
,2,25818,61043,56,0
,2,25819,61045,56,0
,2,25820,61047,56,0
,2,25821,61049,56,0
,2,25822,61051,56,0
,2,25823,61053,56,0
,2,25824,61055,56,0
,2,25825,61057,56,0
,2,25826,61059,56,0
,2,25827,61061,56,0
,2,25828,61063,56,0
,2,25829,61065,56,0
,2,25830,61067,56,0
,2,25831,61069,56,0
,2,25832,61071,56,0
,2,25833,61073,56,0
,2,25834,61075,56,0
,2,25835,61077,56,0
,2,25836,61079,56,0
,2,25837,61081,56,0
,2,25838,61083,56,0
,2,25839,61085,56,0
,2,25840,61087,56,0
,2,25841,61089,56,0
,2,25842,61091,56,0
,2,25843,61093,56,0
,2,25844,61095,56,0
,2,25845,61097,56,0
,2,25846,61099,56,0
,2,25847,61101,56,0
,2,25848,61103,56,0
,2,25849,61105,56,0
,2,25850,61107,56,0
,2,25851,61109,56,0
,2,25852,61111,56,0
,2,25853,61113,56,0
,2,25854,61115,56,0
,2,25855,61117,56,0
,2,25856,61119,56,0
,2,25857,61121,56,0
,2,25858,61123,56,0
,2,25859,61125,56,0
,2,25860,61127,56,0
,2,25861,61129,56,0
,2,25862,61131,56,0
,2,25863,61133,56,0
,2,25864,61135,56,0
,2,25865,61137,56,0
,2,25866,61139,56,0
,2,25867,61141,56,0
,2,25868,61143,56,0
,2,25869,61145,56,0
,2,25870,61147,56,0
,2,25871,61149,56,0
,2,25872,61151,56,0
,2,25873,61153,56,0
,2,25874,61155,56,0
,2,25875,61157,56,0
,2,25876,61159,56,0
,2,25877,61161,56,0
,2,25878,61163,56,0
,2,25879,61165,56,0
,2,25880,61167,56,0
,2,25881,61169,56,0
,2,25882,61171,56,0
,2,25883,61173,56,0
,2,25884,61175,56,0
,2,25885,61177,56,0
,2,25886,61179,56,0
,2,25887,61181,56,0
,2,25888,61183,56,0
,2,25889,61185,56,0
,2,25890,61187,56,0
,2,25891,61189,56,0
,2,25892,61191,56,0
,2,25893,61193,56,0
,2,25894,61195,56,0
,2,25895,61197,56,0
,2,25896,61199,56,0
,2,25897,61201,56,0
,2,25898,61203,56,0
,2,25899,61205,56,0
,2,25900,61207,56,0
,2,25901,61209,56,0
,2,25902,61211,56,0
,2,25903,61213,56,0
,2,25904,61215,56,0
,2,25905,61217,56,0
,2,25906,61219,56,0
,2,25907,61221,56,0
,2,25908,61223,56,0
,2,25909,61225,56,0
,2,25910,61227,56,0
,2,25911,61229,56,0
,2,25912,61231,56,0
,2,25913,61233,56,0
,2,25914,61235,56,0
,2,25915,61237,56,0
,2,25916,61239,56,0
,2,25917,61241,56,0
,2,25918,61243,56,0
,2,25919,61245,56,0
,2,25920,61247,56,0
,2,25921,61249,56,0
,2,25922,61251,56,0
,2,25923,61253,56,0
,2,25924,61255,56,0
,2,25925,61257,56,0
,2,25926,61259,56,0
,2,25927,61261,56,0
,2,25928,61263,56,0
,2,25929,61265,56,0
,2,25930,61267,56,0
,2,25931,61269,56,0
,2,25932,61271,56,0
,2,25933,61273,56,0
,2,25934,61275,56,0
,2,25935,61277,56,0
,2,25936,61279,56,0
,2,25937,61281,56,0
,2,25938,61283,56,0
,2,25939,61285,56,0
,2,25940,61287,56,0
,2,25941,61289,56,0
,2,25942,61291,56,0
,2,25943,61293,56,0
,2,25944,61295,56,0
,2,25945,61297,56,0
,2,25946,61299,56,0
,2,25947,61301,56,0
,2,25948,61303,56,0
,2,25949,61305,56,0
,2,25950,61307,56,0
,2,25951,61309,56,0
,2,25952,61311,56,0
,2,25953,61313,56,0
,2,25954,61315,56,0
,2,25955,61317,56,0
,2,25956,61319,56,0
,2,25957,61321,56,0
,2,25958,61323,56,0
,2,25959,61325,56,0
,2,25960,61327,56,0
,2,25961,61329,56,0
,2,25962,61331,56,0
,2,25963,61333,56,0
,2,25964,61335,56,0
,2,25965,61337,56,0
,2,25966,61339,56,0
,2,25967,61341,56,0
,2,25968,61343,56,0
,2,25969,61345,56,0
,2,25970,61347,56,0
,2,25971,61349,56,0
,2,25972,61351,56,0
,2,25973,61353,56,0
,2,25974,61355,56,0
,2,25975,61357,56,0
,2,25976,61359,56,0
,2,25977,61361,56,0
,2,25978,61363,56,0
,2,25979,61365,56,0
,2,25980,61367,56,0
,2,25981,61369,56,0
,2,25982,61371,56,0
,2,25983,61373,56,0
,2,25984,61375,56,0
,2,25985,61377,56,0
,2,25986,61379,56,0
,2,25987,61381,56,0
,2,25988,61383,56,0
,2,25989,61385,56,0
,2,25990,61387,56,0
,2,25991,61389,56,0
,2,25992,61391,56,0
,2,25993,61393,56,0
,2,25994,61395,56,0
,2,25995,61397,56,0
,2,25996,61399,56,0
,2,25997,61401,56,0
,2,25998,61403,56,0
,2,25999,61405,56,0
,2,26000,61407,56,0
,2,26001,61409,56,0
,2,26002,61411,56,0
,2,26003,61413,56,0
,2,26004,61415,56,0
,2,26005,61417,56,0
,2,26006,61419,56,0
,2,26007,61421,56,0
,2,26008,61423,56,0
,2,26009,61425,56,0
,2,26010,61427,56,0
,2,26011,61429,56,0
,2,26012,61431,56,0
,2,26013,61433,56,0
,2,26014,61435,56,0
,2,26015,61437,56,0
,2,26016,61439,56,0
,2,26017,61441,56,0
,2,26018,61443,56,0
,2,26019,61445,56,0
,2,26020,61447,56,0
,2,26021,61449,56,0
,2,26022,61451,56,0
,2,26023,61453,56,0
,2,26024,61455,56,0
,2,26025,61457,56,0
,2,26026,61459,56,0
,2,26027,61461,56,0
,2,26028,61463,56,0
,2,26029,61465,56,0
,2,26030,61467,56,0
,2,26031,61469,56,0
,2,26032,61471,56,0
,2,26033,61473,56,0
,2,26034,61475,56,0
,2,26035,61477,56,0
,2,26036,61479,56,0
,2,26037,61481,56,0
,2,26038,61483,56,0
,2,26039,61485,56,0
,2,26040,61487,56,0
,2,26041,61489,56,0
,2,26042,61491,56,0
,2,26043,61493,56,0
,2,26044,61495,56,0
,2,26045,61497,56,0
,2,26046,61499,56,0
,2,26047,61501,56,0
,2,26048,61503,56,0
,2,26049,61505,56,0
,2,26050,61507,56,0
,2,26051,61509,56,0
,2,26052,61511,56,0
,2,26053,61513,56,0
,2,26054,61515,56,0
,2,26055,61517,56,0
,2,26056,61519,56,0
,2,26057,61521,56,0
,2,26058,61523,56,0
,2,26059,61525,56,0
,2,26060,61527,56,0
,2,26061,61529,56,0
,2,26062,61531,56,0
,2,26063,61533,56,0
,2,26064,61535,56,0
,2,26065,61537,56,0
,2,26066,61539,56,0
,2,26067,61541,56,0
,2,26068,61543,56,0
,2,26069,61545,56,0
,2,26070,61547,56,0
,2,26071,61549,56,0
,2,26072,61551,56,0
,2,26073,61553,56,0
,2,26074,61555,56,0
,2,26075,61557,56,0
,2,26076,61559,56,0
,2,26077,61561,56,0
,2,26078,61563,56,0
,2,26079,61565,56,0
,2,26080,61567,56,0
,2,26081,61569,56,0
,2,26082,61571,56,0
,2,26083,61573,56,0
,2,26084,61575,56,0
,2,26085,61577,56,0
,2,26086,61579,56,0
,2,26087,61581,56,0
,2,26088,61583,56,0
,2,26089,61585,56,0
,2,26090,61587,56,0
,2,26091,61589,56,0
,2,26092,61591,56,0
,2,26093,61593,56,0
,2,26094,61595,56,0
,2,26095,61597,56,0
,2,26096,61599,56,0
,2,26097,61601,56,0
,2,26098,61603,56,0
,2,26099,61605,56,0
,2,26100,61607,56,0
,2,26101,61609,56,0
,2,26102,61611,56,0
,2,26103,61613,56,0
,2,26104,61615,56,0
,2,26105,61617,56,0
,2,26106,61619,56,0
,2,26107,61621,56,0
,2,26108,61623,56,0
,2,26109,61625,56,0
,2,26110,61627,56,0
,2,26111,61629,56,0
,2,26112,61631,56,0
,2,26113,61633,56,0
,2,26114,61635,56,0
,2,26115,61637,56,0
,2,26116,61639,56,0
,2,26117,61641,56,0
,2,26118,61643,56,0
,2,26119,61645,56,0
,2,26120,61647,56,0
,2,26121,61649,56,0
,2,26122,61651,56,0
,2,26123,61653,56,0
,2,26124,61655,56,0
,2,26125,61657,56,0
,2,26126,61659,56,0
,2,26127,61661,56,0
,2,26128,61663,56,0
,2,26129,61665,56,0
,2,26130,61667,56,0
,2,26131,61669,56,0
,2,26132,61671,56,0
,2,26133,61673,56,0
,2,26134,61675,56,0
,2,26135,61677,56,0
,2,26136,61679,56,0
,2,26137,61681,56,0
,2,26138,61683,56,0
,2,26139,61685,56,0
,2,26140,61687,56,0
,2,26141,61689,56,0
,2,26142,61691,56,0
,2,26143,61693,56,0
,2,26144,61695,56,0
,2,26145,61697,56,0
,2,26146,61699,56,0
,2,26147,61701,56,0
,2,26148,61703,56,0
,2,26149,61705,56,0
,2,26150,61707,56,0
,2,26151,61709,56,0
,2,26152,61711,56,0
,2,26153,61713,56,0
,2,26154,61715,56,0
,2,26155,61717,56,0
,2,26156,61719,56,0
,2,26157,61721,56,0
,2,26158,61723,56,0
,2,26159,61725,56,0
,2,26160,61727,56,0
,2,26161,61729,56,0
,2,26162,61731,56,0
,2,26163,61733,56,0
,2,26164,61735,56,0
,2,26165,61737,56,0
,2,26166,61739,56,0
,2,26167,61741,56,0
,2,26168,61743,56,0
,2,26169,61745,56,0
,2,26170,61747,56,0
,2,26171,61749,56,0
,2,26172,61751,56,0
,2,26173,61753,56,0
,2,26174,61755,56,0
,2,26175,61757,56,0
,2,26176,61759,56,0
,2,26177,61761,56,0
,2,26178,61763,56,0
,2,26179,61765,56,0
,2,26180,61767,56,0
,2,26181,61769,56,0
,2,26182,61771,56,0
,2,26183,61773,56,0
,2,26184,61775,56,0
,2,26185,61777,56,0
,2,26186,61779,56,0
,2,26187,61781,56,0
,2,26188,61783,56,0
,2,26189,61785,56,0
,2,26190,61787,56,0
,2,26191,61789,56,0
,2,26192,61791,56,0
,2,26193,61793,56,0
,2,26194,61795,56,0
,2,26195,61797,56,0
,2,26196,61799,56,0
,2,26197,61801,56,0
,2,26198,61803,56,0
,2,26199,61805,56,0
,2,26200,61807,56,0
,2,26201,61809,56,0
,2,26202,61811,56,0
,2,26203,61813,56,0
,2,26204,61815,56,0
,2,26205,61817,56,0
,2,26206,61819,56,0
,2,26207,61821,56,0
,2,26208,61823,56,0
,2,26209,61825,56,0
,2,26210,61827,56,0
,2,26211,61829,56,0
,2,26212,61831,56,0
,2,26213,61833,56,0
,2,26214,61835,56,0
,2,26215,61837,56,0
,2,26216,61839,56,0
,2,26217,61841,56,0
,2,26218,61843,56,0
,2,26219,61845,56,0
,2,26220,61847,56,0
,2,26221,61849,56,0
,2,26222,61851,56,0
,2,26223,61853,56,0
,2,26224,61855,56,0
,2,26225,61857,56,0
,2,26226,61859,56,0
,2,26227,61861,56,0
,2,26228,61863,56,0
,2,26229,61865,56,0
,2,26230,61867,56,0
,2,26231,61869,56,0
,2,26232,61871,56,0
,2,26233,61873,56,0
,2,26234,61875,56,0
,2,26235,61877,56,0
,2,26236,61879,56,0
,2,26237,61881,56,0
,2,26238,61883,56,0
,2,26239,61885,56,0
,2,26240,61887,56,0
,2,26241,61889,56,0
,2,26242,61891,56,0
,2,26243,61893,56,0
,2,26244,61895,56,0
,2,26245,61897,56,0
,2,26246,61899,56,0
,2,26247,61901,56,0
,2,26248,61903,56,0
,2,26249,61905,56,0
,2,26250,61907,56,0
,2,26251,61909,56,0
,2,26252,61911,56,0
,2,26253,61913,56,0
,2,26254,61915,56,0
,2,26255,61917,56,0
,2,26256,61919,56,0
,2,26257,61921,56,0
,2,26258,61923,56,0
,2,26259,61925,56,0
,2,26260,61927,56,0
,2,26261,61929,56,0
,2,26262,61931,56,0
,2,26263,61933,56,0
,2,26264,61935,56,0
,2,26265,61937,56,0
,2,26266,61939,56,0
,2,26267,61941,56,0
,2,26268,61943,56,0
,2,26269,61945,56,0
,2,26270,61947,56,0
,2,26271,61949,56,0
,2,26272,61951,56,0
,2,26273,61953,56,0
,2,26274,61955,56,0
,2,26275,61957,56,0
,2,26276,61959,56,0
,2,26277,61961,56,0
,2,26278,61963,56,0
,2,26279,61965,56,0
,2,26280,61967,56,0
,2,26281,61969,56,0
,2,26282,61971,56,0
,2,26283,61973,56,0
,2,26284,61975,56,0
,2,26285,61977,56,0
,2,26286,61979,56,0
,2,26287,61981,56,0
,2,26288,61983,56,0
,2,26289,61985,56,0
,2,26290,61987,56,0
,2,26291,61989,56,0
,2,26292,61991,56,0
,2,26293,61993,56,0
,2,26294,61995,56,0
,2,26295,61997,56,0
,2,26296,61999,56,0
,2,26297,62001,56,0
,2,26298,62003,56,0
,2,26299,62005,56,0
,2,26300,62007,56,0
,2,26301,62009,56,0
,2,26302,62011,56,0
,2,26303,62013,56,0
,2,26304,62015,56,0
,2,26305,62017,56,0
,2,26306,62019,56,0
,2,26307,62021,56,0
,2,26308,62023,56,0
,2,26309,62025,56,0
,2,26310,62027,56,0
,2,26311,62029,56,0
,2,26312,62031,56,0
,2,26313,62033,56,0
,2,26314,62035,56,0
,2,26315,62037,56,0
,2,26316,62039,56,0
,2,26317,62041,56,0
,2,26318,62043,56,0
,2,26319,62045,56,0
,2,26320,62047,56,0
,2,26321,62049,56,0
,2,26322,62051,56,0
,2,26323,62053,56,0
,2,26324,62055,56,0
,2,26325,62057,56,0
,2,26326,62059,56,0
,2,26327,62061,56,0
,2,26328,62063,56,0
,2,26329,62065,56,0
,2,26330,62067,56,0
,2,26331,62069,56,0
,2,26332,62071,56,0
,2,26333,62073,56,0
,2,26334,62075,56,0
,2,26335,62077,56,0
,2,26336,62079,56,0
,2,26337,62081,56,0
,2,26338,62083,56,0
,2,26339,62085,56,0
,2,26340,62087,56,0
,2,26341,62089,56,0
,2,26342,62091,56,0
,2,26343,62093,56,0
,2,26344,62095,56,0
,2,26345,62097,56,0
,2,26346,62099,56,0
,2,26347,62101,56,0
,2,26348,62103,56,0
,2,26349,62105,56,0
,2,26350,62107,56,0
,2,26351,62109,56,0
,2,26352,62111,56,0
,2,26353,62113,56,0
,2,26354,62115,56,0
,2,26355,62117,56,0
,2,26356,62119,56,0
,2,26357,62121,56,0
,2,26358,62123,56,0
,2,26359,62125,56,0
,2,26360,62127,56,0
,2,26361,62129,56,0
,2,26362,62131,56,0
,2,26363,62133,56,0
,2,26364,62135,56,0
,2,26365,62137,56,0
,2,26366,62139,56,0
,2,26367,62141,56,0
,2,26368,62143,56,0
,2,26369,62145,56,0
,2,26370,62147,56,0
,2,26371,62149,56,0
,2,26372,62151,56,0
,2,26373,62153,56,0
,2,26374,62155,56,0
,2,26375,62157,56,0
,2,26376,62159,56,0
,2,26377,62161,56,0
,2,26378,62163,56,0
,2,26379,62165,56,0
,2,26380,62167,56,0
,2,26381,62169,56,0
,2,26382,62171,56,0
,2,26383,62173,56,0
,2,26384,62175,56,0
,2,26385,62177,56,0
,2,26386,62179,56,0
,2,26387,62181,56,0
,2,26388,62183,56,0
,2,26389,62185,56,0
,2,26390,62187,56,0
,2,26391,62189,56,0
,2,26392,62191,56,0
,2,26393,62193,56,0
,2,26394,62195,56,0
,2,26395,62197,56,0
,2,26396,62199,56,0
,2,26397,62201,56,0
,2,26398,62203,56,0
,2,26399,62205,56,0
,2,26400,62207,56,0
,2,26401,62209,56,0
,2,26402,62211,56,0
,2,26403,62213,56,0
,2,26404,62215,56,0
,2,26405,62217,56,0
,2,26406,62219,56,0
,2,26407,62221,56,0
,2,26408,62223,56,0
,2,26409,62225,56,0
,2,26410,62227,56,0
,2,26411,62229,56,0
,2,26412,62231,56,0
,2,26413,62233,56,0
,2,26414,62235,56,0
,2,26415,62237,56,0
,2,26416,62239,56,0
,2,26417,62241,56,0
,2,26418,62243,56,0
,2,26419,62245,56,0
,2,26420,62247,56,0
,2,26421,62249,56,0
,2,26422,62251,56,0
,2,26423,62253,56,0
,2,26424,62255,56,0
,2,26425,62257,56,0
,2,26426,62259,56,0
,2,26427,62261,56,0
,2,26428,62263,56,0
,2,26429,62265,56,0
,2,26430,62267,56,0
,2,26431,62269,56,0
,2,26432,62271,56,0
,2,26433,62273,56,0
,2,26434,62275,56,0
,2,26435,62277,56,0
,2,26436,62279,56,0
,2,26437,62281,56,0
,2,26438,62283,56,0
,2,26439,62285,56,0
,2,26440,62287,56,0
,2,26441,62289,56,0
,2,26442,62291,56,0
,2,26443,62293,56,0
,2,26444,62295,56,0
,2,26445,62297,56,0
,2,26446,62299,56,0
,2,26447,62301,56,0
,2,26448,62303,56,0
,2,26449,62305,56,0
,2,26450,62307,56,0
,2,26451,62309,56,0
,2,26452,62311,56,0
,2,26453,62313,56,0
,2,26454,62315,56,0
,2,26455,62317,56,0
,2,26456,62319,56,0
,2,26457,62321,56,0
,2,26458,62323,56,0
,2,26459,62325,56,0
,2,26460,62327,56,0
,2,26461,62329,56,0
,2,26462,62331,56,0
,2,26463,62333,56,0
,2,26464,62335,56,0
,2,26465,62337,56,0
,2,26466,62339,56,0
,2,26467,62341,56,0
,2,26468,62343,56,0
,2,26469,62345,56,0
,2,26470,62347,56,0
,2,26471,62349,56,0
,2,26472,62351,56,0
,2,26473,62353,56,0
,2,26474,62355,56,0
,2,26475,62357,56,0
,2,26476,62359,56,0
,2,26477,62361,56,0
,2,26478,62363,56,0
,2,26479,62365,56,0
,2,26480,62367,56,0
,2,26481,62369,56,0
,2,26482,62371,56,0
,2,26483,62373,56,0
,2,26484,62375,56,0
,2,26485,62377,56,0
,2,26486,62379,56,0
,2,26487,62381,56,0
,2,26488,62383,56,0
,2,26489,62385,56,0
,2,26490,62387,56,0
,2,26491,62389,56,0
,2,26492,62391,56,0
,2,26493,62393,56,0
,2,26494,62395,56,0
,2,26495,62397,56,0
,2,26496,62399,56,0
,2,26497,62401,56,0
,2,26498,62403,56,0
,2,26499,62405,56,0
,2,26500,62407,56,0
,2,26501,62409,56,0
,2,26502,62411,56,0
,2,26503,62413,56,0
,2,26504,62415,56,0
,2,26505,62417,56,0
,2,26506,62419,56,0
,2,26507,62421,56,0
,2,26508,62423,56,0
,2,26509,62425,56,0
,2,26510,62427,56,0
,2,26511,62429,56,0
,2,26512,62431,56,0
,2,26513,62433,56,0
,2,26514,62435,56,0
,2,26515,62437,56,0
,2,26516,62439,56,0
,2,26517,62441,56,0
,2,26518,62443,56,0
,2,26519,62445,56,0
,2,26520,62447,56,0
,2,26521,62449,56,0
,2,26522,62451,56,0
,2,26523,62453,56,0
,2,26524,62455,56,0
,2,26525,62457,56,0
,2,26526,62459,56,0
,2,26527,62461,56,0
,2,26528,62463,56,0
,2,26529,62465,56,0
,2,26530,62467,56,0
,2,26531,62469,56,0
,2,26532,62471,56,0
,2,26533,62473,56,0
,2,26534,62475,56,0
,2,26535,62477,56,0
,2,26536,62479,56,0
,2,26537,62481,56,0
,2,26538,62483,56,0
,2,26539,62485,56,0
,2,26540,62487,56,0
,2,26541,62489,56,0
,2,26542,62491,56,0
,2,26543,62493,56,0
,2,26544,62495,56,0
,2,26545,62497,56,0
,2,26546,62499,56,0
,2,26547,62501,56,0
,2,26548,62503,56,0
,2,26549,62505,56,0
,2,26550,62507,56,0
,2,26551,62509,56,0
,2,26552,62511,56,0
,2,26553,62513,56,0
,2,26554,62515,56,0
,2,26555,62517,56,0
,2,26556,62519,56,0
,2,26557,62521,56,0
,2,26558,62523,56,0
,2,26559,62525,56,0
,2,26560,62527,56,0
,2,26561,62529,56,0
,2,26562,62531,56,0
,2,26563,62533,56,0
,2,26564,62535,56,0
,2,26565,62537,56,0
,2,26566,62539,56,0
,2,26567,62541,56,0
,2,26568,62543,56,0
,2,26569,62545,56,0
,2,26570,62547,56,0
,2,26571,62549,56,0
,2,26572,62551,56,0
,2,26573,62553,56,0
,2,26574,62555,56,0
,2,26575,62557,56,0
,2,26576,62559,56,0
,2,26577,62561,56,0
,2,26578,62563,56,0
,2,26579,62565,56,0
,2,26580,62567,56,0
,2,26581,62569,56,0
,2,26582,62571,56,0
,2,26583,62573,56,0
,2,26584,62575,56,0
,2,26585,62577,56,0
,2,26586,62579,56,0
,2,26587,62581,56,0
,2,26588,62583,56,0
,2,26589,62585,56,0
,2,26590,62587,56,0
,2,26591,62589,56,0
,2,26592,62591,56,0
,2,26593,62593,56,0
,2,26594,62595,56,0
,2,26595,62597,56,0
,2,26596,62599,56,0
,2,26597,62601,56,0
,2,26598,62603,56,0
,2,26599,62605,56,0
,2,26600,62607,56,0
,2,26601,62609,56,0
,2,26602,62611,56,0
,2,26603,62613,56,0
,2,26604,62615,56,0
,2,26605,62617,56,0
,2,26606,62619,56,0
,2,26607,62621,56,0
,2,26608,62623,56,0
,2,26609,62625,56,0
,2,26610,62627,56,0
,2,26611,62629,56,0
,2,26612,62631,56,0
,2,26613,62633,56,0
,2,26614,62635,56,0
,2,26615,62637,56,0
,2,26616,62639,56,0
,2,26617,62641,56,0
,2,26618,62643,56,0
,2,26619,62645,56,0
,2,26620,62647,56,0
,2,26621,62649,56,0
,2,26622,62651,56,0
,2,26623,62653,56,0
,2,26624,62655,56,0
,2,26625,62657,56,0
,2,26626,62659,56,0
,2,26627,62661,56,0
,2,26628,62663,56,0
,2,26629,62665,56,0
,2,26630,62667,56,0
,2,26631,62669,56,0
,2,26632,62671,56,0
,2,26633,62673,56,0
,2,26634,62675,56,0
,2,26635,62677,56,0
,2,26636,62679,56,0
,2,26637,62681,56,0
,2,26638,62683,56,0
,2,26639,62685,56,0
,2,26640,62687,56,0
,2,26641,62689,56,0
,2,26642,62691,56,0
,2,26643,62693,56,0
,2,26644,62695,56,0
,2,26645,62697,56,0
,2,26646,62699,56,0
,2,26647,62701,56,0
,2,26648,62703,56,0
,2,26649,62705,56,0
,2,26650,62707,56,0
,2,26651,62709,56,0
,2,26652,62711,56,0
,2,26653,62713,56,0
,2,26654,62715,56,0
,2,26655,62717,56,0
,2,26656,62719,56,0
,2,26657,62721,56,0
,2,26658,62723,56,0
,2,26659,62725,56,0
,2,26660,62727,56,0
,2,26661,62729,56,0
,2,26662,62731,56,0
,2,26663,62733,56,0
,2,26664,62735,56,0
,2,26665,62737,56,0
,2,26666,62739,56,0
,2,26667,62741,56,0
,2,26668,62743,56,0
,2,26669,62745,56,0
,2,26670,62747,56,0
,2,26671,62749,56,0
,2,26672,62751,56,0
,2,26673,62753,56,0
,2,26674,62755,56,0
,2,26675,62757,56,0
,2,26676,62759,56,0
,2,26677,62761,56,0
,2,26678,62763,56,0
,2,26679,62765,56,0
,2,26680,62767,56,0
,2,26681,62769,56,0
,2,26682,62771,56,0
,2,26683,62773,56,0
,2,26684,62775,56,0
,2,26685,62777,56,0
,2,26686,62779,56,0
,2,26687,62781,56,0
,2,26688,62783,56,0
,2,26689,62785,56,0
,2,26690,62787,56,0
,2,26691,62789,56,0
,2,26692,62791,56,0
,2,26693,62793,56,0
,2,26694,62795,56,0
,2,26695,62797,56,0
,2,26696,62799,56,0
,2,26697,62801,56,0
,2,26698,62803,56,0
,2,26699,62805,56,0
,2,26700,62807,56,0
,2,26701,62809,56,0
,2,26702,62811,56,0
,2,26703,62813,56,0
,2,26704,62815,56,0
,2,26705,62817,56,0
,2,26706,62819,56,0
,2,26707,62821,56,0
,2,26708,62823,56,0
,2,26709,62825,56,0
,2,26710,62827,56,0
,2,26711,62829,56,0
,2,26712,62831,56,0
,2,26713,62833,56,0
,2,26714,62835,56,0
,2,26715,62837,56,0
,2,26716,62839,56,0
,2,26717,62841,56,0
,2,26718,62843,56,0
,2,26719,62845,56,0
,2,26720,62847,56,0
,2,26721,62849,56,0
,2,26722,62851,56,0
,2,26723,62853,56,0
,2,26724,62855,56,0
,2,26725,62857,56,0
,2,26726,62859,56,0
,2,26727,62861,56,0
,2,26728,62863,56,0
,2,26729,62865,56,0
,2,26730,62867,56,0
,2,26731,62869,56,0
,2,26732,62871,56,0
,2,26733,62873,56,0
,2,26734,62875,56,0
,2,26735,62877,56,0
,2,26736,62879,56,0
,2,26737,62881,56,0
,2,26738,62883,56,0
,2,26739,62885,56,0
,2,26740,62887,56,0
,2,26741,62889,56,0
,2,26742,62891,56,0
,2,26743,62893,56,0
,2,26744,62895,56,0
,2,26745,62897,56,0
,2,26746,62899,56,0
,2,26747,62901,56,0
,2,26748,62903,56,0
,2,26749,62905,56,0
,2,26750,62907,56,0
,2,26751,62909,56,0
,2,26752,62911,56,0
,2,26753,62913,56,0
,2,26754,62915,56,0
,2,26755,62917,56,0
,2,26756,62919,56,0
,2,26757,62921,56,0
,2,26758,62923,56,0
,2,26759,62925,56,0
,2,26760,62927,56,0
,2,26761,62929,56,0
,2,26762,62931,56,0
,2,26763,62933,56,0
,2,26764,62935,56,0
,2,26765,62937,56,0
,2,26766,62939,56,0
,2,26767,62941,56,0
,2,26768,62943,56,0
,2,26769,62945,56,0
,2,26770,62947,56,0
,2,26771,62949,56,0
,2,26772,62951,56,0
,2,26773,62953,56,0
,2,26774,62955,56,0
,2,26775,62957,56,0
,2,26776,62959,56,0
,2,26777,62961,56,0
,2,26778,62963,56,0
,2,26779,62965,56,0
,2,26780,62967,56,0
,2,26781,62969,56,0
,2,26782,62971,56,0
,2,26783,62973,56,0
,2,26784,62975,56,0
,2,26785,62977,56,0
,2,26786,62979,56,0
,2,26787,62981,56,0
,2,26788,62983,56,0
,2,26789,62985,56,0
,2,26790,62987,56,0
,2,26791,62989,56,0
,2,26792,62991,56,0
,2,26793,62993,56,0
,2,26794,62995,56,0
,2,26795,62997,56,0
,2,26796,62999,56,0
,2,26797,63001,56,0
,2,26798,63003,56,0
,2,26799,63005,56,0
,2,26800,63007,56,0
,2,26801,63009,56,0
,2,26802,63011,56,0
,2,26803,63013,56,0
,2,26804,63015,56,0
,2,26805,63017,56,0
,2,26806,63019,56,0
,2,26807,63021,56,0
,2,26808,63023,56,0
,2,26809,63025,56,0
,2,26810,63027,56,0
,2,26811,63029,56,0
,2,26812,63031,56,0
,2,26813,63033,56,0
,2,26814,63035,56,0
,2,26815,63037,56,0
,2,26816,63039,56,0
,2,26817,63041,56,0
,2,26818,63043,56,0
,2,26819,63045,56,0
,2,26820,63047,56,0
,2,26821,63049,56,0
,2,26822,63051,56,0
,2,26823,63053,56,0
,2,26824,63055,56,0
,2,26825,63057,56,0
,2,26826,63059,56,0
,2,26827,63061,56,0
,2,26828,63063,56,0
,2,26829,63065,56,0
,2,26830,63067,56,0
,2,26831,63069,56,0
,2,26832,63071,56,0
,2,26833,63073,56,0
,2,26834,63075,56,0
,2,26835,63077,56,0
,2,26836,63079,56,0
,2,26837,63081,56,0
,2,26838,63083,56,0
,2,26839,63085,56,0
,2,26840,63087,56,0
,2,26841,63089,56,0
,2,26842,63091,56,0
,2,26843,63093,56,0
,2,26844,63095,56,0
,2,26845,63097,56,0
,2,26846,63099,56,0
,2,26847,63101,56,0
,2,26848,63103,56,0
,2,26849,63105,56,0
,2,26850,63107,56,0
,2,26851,63109,56,0
,2,26852,63111,56,0
,2,26853,63113,56,0
,2,26854,63115,56,0
,2,26855,63117,56,0
,2,26856,63119,56,0
,2,26857,63121,56,0
,2,26858,63123,56,0
,2,26859,63125,56,0
,2,26860,63127,56,0
,2,26861,63129,56,0
,2,26862,63131,56,0
,2,26863,63133,56,0
,2,26864,63135,56,0
,2,26865,63137,56,0
,2,26866,63139,56,0
,2,26867,63141,56,0
,2,26868,63143,56,0
,2,26869,63145,56,0
,2,26870,63147,56,0
,2,26871,63149,56,0
,2,26872,63151,56,0
,2,26873,63153,56,0
,2,26874,63155,56,0
,2,26875,63157,56,0
,2,26876,63159,56,0
,2,26877,63161,56,0
,2,26878,63163,56,0
,2,26879,63165,56,0
,2,26880,63167,56,0
,2,26881,63169,56,0
,2,26882,63171,56,0
,2,26883,63173,56,0
,2,26884,63175,56,0
,2,26885,63177,56,0
,2,26886,63179,56,0
,2,26887,63181,56,0
,2,26888,63183,56,0
,2,26889,63185,56,0
,2,26890,63187,56,0
,2,26891,63189,56,0
,2,26892,63191,56,0
,2,26893,63193,56,0
,2,26894,63195,56,0
,2,26895,63197,56,0
,2,26896,63199,56,0
,2,26897,63201,56,0
,2,26898,63203,56,0
,2,26899,63205,56,0
,2,26900,63207,56,0
,2,26901,63209,56,0
,2,26902,63211,56,0
,2,26903,63213,56,0
,2,26904,63215,56,0
,2,26905,63217,56,0
,2,26906,63219,56,0
,2,26907,63221,56,0
,2,26908,63223,56,0
,2,26909,63225,56,0
,2,26910,63227,56,0
,2,26911,63229,56,0
,2,26912,63231,56,0
,2,26913,63233,56,0
,2,26914,63235,56,0
,2,26915,63237,56,0
,2,26916,63239,56,0
,2,26917,63241,56,0
,2,26918,63243,56,0
,2,26919,63245,56,0
,2,26920,63247,56,0
,2,26921,63249,56,0
,2,26922,63251,56,0
,2,26923,63253,56,0
,2,26924,63255,56,0
,2,26925,63257,56,0
,2,26926,63259,56,0
,2,26927,63261,56,0
,2,26928,63263,56,0
,2,26929,63265,56,0
,2,26930,63267,56,0
,2,26931,63269,56,0
,2,26932,63271,56,0
,2,26933,63273,56,0
,2,26934,63275,56,0
,2,26935,63277,56,0
,2,26936,63279,56,0
,2,26937,63281,56,0
,2,26938,63283,56,0
,2,26939,63285,56,0
,2,26940,63287,56,0
,2,26941,63289,56,0
,2,26942,63291,56,0
,2,26943,63293,56,0
,2,26944,63295,56,0
,2,26945,63297,56,0
,2,26946,63299,56,0
,2,26947,63301,56,0
,2,26948,63303,56,0
,2,26949,63305,56,0
,2,26950,63307,56,0
,2,26951,63309,56,0
,2,26952,63311,56,0
,2,26953,63313,56,0
,2,26954,63315,56,0
,2,26955,63317,56,0
,2,26956,63319,56,0
,2,26957,63321,56,0
,2,26958,63323,56,0
,2,26959,63325,56,0
,2,26960,63327,56,0
,2,26961,63329,56,0
,2,26962,63331,56,0
,2,26963,63333,56,0
,2,26964,63335,56,0
,2,26965,63337,56,0
,2,26966,63339,56,0
,2,26967,63341,56,0
,2,26968,63343,56,0
,2,26969,63345,56,0
,2,26970,63347,56,0
,2,26971,63349,56,0
,2,26972,63351,56,0
,2,26973,63353,56,0
,2,26974,63355,56,0
,2,26975,63357,56,0
,2,26976,63359,56,0
,2,26977,63361,56,0
,2,26978,63363,56,0
,2,26979,63365,56,0
,2,26980,63367,56,0
,2,26981,63369,56,0
,2,26982,63371,56,0
,2,26983,63373,56,0
,2,26984,63375,56,0
,2,26985,63377,56,0
,2,26986,63379,56,0
,2,26987,63381,56,0
,2,26988,63383,56,0
,2,26989,63385,56,0
,2,26990,63387,56,0
,2,26991,63389,56,0
,2,26992,63391,56,0
,2,26993,63393,56,0
,2,26994,63395,56,0
,2,26995,63397,56,0
,2,26996,63399,56,0
,2,26997,63401,56,0
,2,26998,63403,56,0
,2,26999,63405,56,0
,2,27000,63407,56,0
,2,27001,63409,56,0
,2,27002,63411,56,0
,2,27003,63413,56,0
,2,27004,63415,56,0
,2,27005,63417,56,0
,2,27006,63419,56,0
,2,27007,63421,56,0
,2,27008,63423,56,0
,2,27009,63425,56,0
,2,27010,63427,56,0
,2,27011,63429,56,0
,2,27012,63431,56,0
,2,27013,63433,56,0
,2,27014,63435,56,0
,2,27015,63437,56,0
,2,27016,63439,56,0
,2,27017,63441,56,0
,2,27018,63443,56,0
,2,27019,63445,56,0
,2,27020,63447,56,0
,2,27021,63449,56,0
,2,27022,63451,56,0
,2,27023,63453,56,0
,2,27024,63455,56,0
,2,27025,63457,56,0
,2,27026,63459,56,0
,2,27027,63461,56,0
,2,27028,63463,56,0
,2,27029,63465,56,0
,2,27030,63467,56,0
,2,27031,63469,56,0
,2,27032,63471,56,0
,2,27033,63473,56,0
,2,27034,63475,56,0
,2,27035,63477,56,0
,2,27036,63479,56,0
,2,27037,63481,56,0
,2,27038,63483,56,0
,2,27039,63485,56,0
,2,27040,63487,56,0
,2,27041,63489,56,0
,2,27042,63491,56,0
,2,27043,63493,56,0
,2,27044,63495,56,0
,2,27045,63497,56,0
,2,27046,63499,56,0
,2,27047,63501,56,0
,2,27048,63503,56,0
,2,27049,63505,56,0
,2,27050,63507,56,0
,2,27051,63509,56,0
,2,27052,63511,56,0
,2,27053,63513,56,0
,2,27054,63515,56,0
,2,27055,63517,56,0
,2,27056,63519,56,0
,2,27057,63521,56,0
,2,27058,63523,56,0
,2,27059,63525,56,0
,2,27060,63527,56,0
,2,27061,63529,56,0
,2,27062,63531,56,0
,2,27063,63533,56,0
,2,27064,63535,56,0
,2,27065,63537,56,0
,2,27066,63539,56,0
,2,27067,63541,56,0
,2,27068,63543,56,0
,2,27069,63545,56,0
,2,27070,63547,56,0
,2,27071,63549,56,0
,2,27072,63551,56,0
,2,27073,63553,56,0
,2,27074,63555,56,0
,2,27075,63557,56,0
,2,27076,63559,56,0
,2,27077,63561,56,0
,2,27078,63563,56,0
,2,27079,63565,56,0
,2,27080,63567,56,0
,2,27081,63569,56,0
,2,27082,63571,56,0
,2,27083,63573,56,0
,2,27084,63575,56,0
,2,27085,63577,56,0
,2,27086,63579,56,0
,2,27087,63581,56,0
,2,27088,63583,56,0
,2,27089,63585,56,0
,2,27090,63587,56,0
,2,27091,63589,56,0
,2,27092,63591,56,0
,2,27093,63593,56,0
,2,27094,63595,56,0
,2,27095,63597,56,0
,2,27096,63599,56,0
,2,27097,63601,56,0
,2,27098,63603,56,0
,2,27099,63605,56,0
,2,27100,63607,56,0
,2,27101,63609,56,0
,2,27102,63611,56,0
,2,27103,63613,56,0
,2,27104,63615,56,0
,2,27105,63617,56,0
,2,27106,63619,56,0
,2,27107,63621,56,0
,2,27108,63623,56,0
,2,27109,63625,56,0
,2,27110,63627,56,0
,2,27111,63629,56,0
,2,27112,63631,56,0
,2,27113,63633,56,0
,2,27114,63635,56,0
,2,27115,63637,56,0
,2,27116,63639,56,0
,2,27117,63641,56,0
,2,27118,63643,56,0
,2,27119,63645,56,0
,2,27120,63647,56,0
,2,27121,63649,56,0
,2,27122,63651,56,0
,2,27123,63653,56,0
,2,27124,63655,56,0
,2,27125,63657,56,0
,2,27126,63659,56,0
,2,27127,63661,56,0
,2,27128,63663,56,0
,2,27129,63665,56,0
,2,27130,63667,56,0
,2,27131,63669,56,0
,2,27132,63671,56,0
,2,27133,63673,56,0
,2,27134,63675,56,0
,2,27135,63677,56,0
,2,27136,63679,56,0
,2,27137,63681,56,0
,2,27138,63683,56,0
,2,27139,63685,56,0
,2,27140,63687,56,0
,2,27141,63689,56,0
,2,27142,63691,56,0
,2,27143,63693,56,0
,2,27144,63695,56,0
,2,27145,63697,56,0
,2,27146,63699,56,0
,2,27147,63701,56,0
,2,27148,63703,56,0
,2,27149,63705,56,0
,2,27150,63707,56,0
,2,27151,63709,56,0
,2,27152,63711,56,0
,2,27153,63713,56,0
,2,27154,63715,56,0
,2,27155,63717,56,0
,2,27156,63719,56,0
,2,27157,63721,56,0
,2,27158,63723,56,0
,2,27159,63725,56,0
,2,27160,63727,56,0
,2,27161,63729,56,0
,2,27162,63731,56,0
,2,27163,63733,56,0
,2,27164,63735,56,0
,2,27165,63737,56,0
,2,27166,63739,56,0
,2,27167,63741,56,0
,2,27168,63743,56,0
,2,27169,63745,56,0
,2,27170,63747,56,0
,2,27171,63749,56,0
,2,27172,63751,56,0
,2,27173,63753,56,0
,2,27174,63755,56,0
,2,27175,63757,56,0
,2,27176,63759,56,0
,2,27177,63761,56,0
,2,27178,63763,56,0
,2,27179,63765,56,0
,2,27180,63767,56,0
,2,27181,63769,56,0
,2,27182,63771,56,0
,2,27183,63773,56,0
,2,27184,63775,56,0
,2,27185,63777,56,0
,2,27186,63779,56,0
,2,27187,63781,56,0
,2,27188,63783,56,0
,2,27189,63785,56,0
,2,27190,63787,56,0
,2,27191,63789,56,0
,2,27192,63791,56,0
,2,27193,63793,56,0
,2,27194,63795,56,0
,2,27195,63797,56,0
,2,27196,63799,56,0
,2,27197,63801,56,0
,2,27198,63803,56,0
,2,27199,63805,56,0
,2,27200,63807,56,0
,2,27201,63809,56,0
,2,27202,63811,56,0
,2,27203,63813,56,0
,2,27204,63815,56,0
,2,27205,63817,56,0
,2,27206,63819,56,0
,2,27207,63821,56,0
,2,27208,63823,56,0
,2,27209,63825,56,0
,2,27210,63827,56,0
,2,27211,63829,56,0
,2,27212,63831,56,0
,2,27213,63833,56,0
,2,27214,63835,56,0
,2,27215,63837,56,0
,2,27216,63839,56,0
,2,27217,63841,56,0
,2,27218,63843,56,0
,2,27219,63845,56,0
,2,27220,63847,56,0
,2,27221,63849,56,0
,2,27222,63851,56,0
,2,27223,63853,56,0
,2,27224,63855,56,0
,2,27225,63857,56,0
,2,27226,63859,56,0
,2,27227,63861,56,0
,2,27228,63863,56,0
,2,27229,63865,56,0
,2,27230,63867,56,0
,2,27231,63869,56,0
,2,27232,63871,56,0
,2,27233,63873,56,0
,2,27234,63875,56,0
,2,27235,63877,56,0
,2,27236,63879,56,0
,2,27237,63881,56,0
,2,27238,63883,56,0
,2,27239,63885,56,0
,2,27240,63887,56,0
,2,27241,63889,56,0
,2,27242,63891,56,0
,2,27243,63893,56,0
,2,27244,63895,56,0
,2,27245,63897,56,0
,2,27246,63899,56,0
,2,27247,63901,56,0
,2,27248,63903,56,0
,2,27249,63905,56,0
,2,27250,63907,56,0
,2,27251,63909,56,0
,2,27252,63911,56,0
,2,27253,63913,56,0
,2,27254,63915,56,0
,2,27255,63917,56,0
,2,27256,63919,56,0
,2,27257,63921,56,0
,2,27258,63923,56,0
,2,27259,63925,56,0
,2,27260,63927,56,0
,2,27261,63929,56,0
,2,27262,63931,56,0
,2,27263,63933,56,0
,2,27264,63935,56,0
,2,27265,63937,56,0
,2,27266,63939,56,0
,2,27267,63941,56,0
,2,27268,63943,56,0
,2,27269,63945,56,0
,2,27270,63947,56,0
,2,27271,63949,56,0
,2,27272,63951,56,0
,2,27273,63953,56,0
,2,27274,63955,56,0
,2,27275,63957,56,0
,2,27276,63959,56,0
,2,27277,63961,56,0
,2,27278,63963,56,0
,2,27279,63965,56,0
,2,27280,63967,56,0
,2,27281,63969,56,0
,2,27282,63971,56,0
,2,27283,63973,56,0
,2,27284,63975,56,0
,2,27285,63977,56,0
,2,27286,63979,56,0
,2,27287,63981,56,0
,2,27288,63983,56,0
,2,27289,63985,56,0
,2,27290,63987,56,0
,2,27291,63989,56,0
,2,27292,63991,56,0
,2,27293,63993,56,0
,2,27294,63995,56,0
,2,27295,63997,56,0
,2,27296,63999,56,0
,2,27297,64001,56,0
,2,27298,64003,56,0
,2,27299,64005,56,0
,2,27300,64007,56,0
,2,27301,64009,56,0
,2,27302,64011,56,0
,2,27303,64013,56,0
,2,27304,64015,56,0
,2,27305,64017,56,0
,2,27306,64019,56,0
,2,27307,64021,56,0
,2,27308,64023,56,0
,2,27309,64025,56,0
,2,27310,64027,56,0
,2,27311,64029,56,0
,2,27312,64031,56,0
,2,27313,64033,56,0
,2,27314,64035,56,0
,2,27315,64037,56,0
,2,27316,64039,56,0
,2,27317,64041,56,0
,2,27318,64043,56,0
,2,27319,64045,56,0
,2,27320,64047,56,0
,2,27321,64049,56,0
,2,27322,64051,56,0
,2,27323,64053,56,0
,2,27324,64055,56,0
,2,27325,64057,56,0
,2,27326,64059,56,0
,2,27327,64061,56,0
,2,27328,64063,56,0
,2,27329,64065,56,0
,2,27330,64067,56,0
,2,27331,64069,56,0
,2,27332,64071,56,0
,2,27333,64073,56,0
,2,27334,64075,56,0
,2,27335,64077,56,0
,2,27336,64079,56,0
,2,27337,64081,56,0
,2,27338,64083,56,0
,2,27339,64085,56,0
,2,27340,64087,56,0
,2,27341,64089,56,0
,2,27342,64091,56,0
,2,27343,64093,56,0
,2,27344,64095,56,0
,2,27345,64097,56,0
,2,27346,64099,56,0
,2,27347,64101,56,0
,2,27348,64103,56,0
,2,27349,64105,56,0
,2,27350,64107,56,0
,2,27351,64109,56,0
,2,27352,64111,56,0
,2,27353,64113,56,0
,2,27354,64115,56,0
,2,27355,64117,56,0
,2,27356,64119,56,0
,2,27357,64121,56,0
,2,27358,64123,56,0
,2,27359,64125,56,0
,2,27360,64127,56,0
,2,27361,64129,56,0
,2,27362,64131,56,0
,2,27363,64133,56,0
,2,27364,64135,56,0
,2,27365,64137,56,0
,2,27366,64139,56,0
,2,27367,64141,56,0
,2,27368,64143,56,0
,2,27369,64145,56,0
,2,27370,64147,56,0
,2,27371,64149,56,0
,2,27372,64151,56,0
,2,27373,64153,56,0
,2,27374,64155,56,0
,2,27375,64157,56,0
,2,27376,64159,56,0
,2,27377,64161,56,0
,2,27378,64163,56,0
,2,27379,64165,56,0
,2,27380,64167,56,0
,2,27381,64169,56,0
,2,27382,64171,56,0
,2,27383,64173,56,0
,2,27384,64175,56,0
,2,27385,64177,56,0
,2,27386,64179,56,0
,2,27387,64181,56,0
,2,27388,64183,56,0
,2,27389,64185,56,0
,2,27390,64187,56,0
,2,27391,64189,56,0
,2,27392,64191,56,0
,2,27393,64193,56,0
,2,27394,64195,56,0
,2,27395,64197,56,0
,2,27396,64199,56,0
,2,27397,64201,56,0
,2,27398,64203,56,0
,2,27399,64205,56,0
,2,27400,64207,56,0
,2,27401,64209,56,0
,2,27402,64211,56,0
,2,27403,64213,56,0
,2,27404,64215,56,0
,2,27405,64217,56,0
,2,27406,64219,56,0
,2,27407,64221,56,0
,2,27408,64223,56,0
,2,27409,64225,56,0
,2,27410,64227,56,0
,2,27411,64229,56,0
,2,27412,64231,56,0
,2,27413,64233,56,0
,2,27414,64235,56,0
,2,27415,64237,56,0
,2,27416,64239,56,0
,2,27417,64241,56,0
,2,27418,64243,56,0
,2,27419,64245,56,0
,2,27420,64247,56,0
,2,27421,64249,56,0
,2,27422,64251,56,0
,2,27423,64253,56,0
,2,27424,64255,56,0
,2,27425,64257,56,0
,2,27426,64259,56,0
,2,27427,64261,56,0
,2,27428,64263,56,0
,2,27429,64265,56,0
,2,27430,64267,56,0
,2,27431,64269,56,0
,2,27432,64271,56,0
,2,27433,64273,56,0
,2,27434,64275,56,0
,2,27435,64277,56,0
,2,27436,64279,56,0
,2,27437,64281,56,0
,2,27438,64283,56,0
,2,27439,64285,56,0
,2,27440,64287,56,0
,2,27441,64289,56,0
,2,27442,64291,56,0
,2,27443,64293,56,0
,2,27444,64295,56,0
,2,27445,64297,56,0
,2,27446,64299,56,0
,2,27447,64301,56,0
,2,27448,64303,56,0
,2,27449,64305,56,0
,2,27450,64307,56,0
,2,27451,64309,56,0
,2,27452,64311,56,0
,2,27453,64313,56,0
,2,27454,64315,56,0
,2,27455,64317,56,0
,2,27456,64319,56,0
,2,27457,64321,56,0
,2,27458,64323,56,0
,2,27459,64325,56,0
,2,27460,64327,56,0
,2,27461,64329,56,0
,2,27462,64331,56,0
,2,27463,64333,56,0
,2,27464,64335,56,0
,2,27465,64337,56,0
,2,27466,64339,56,0
,2,27467,64341,56,0
,2,27468,64343,56,0
,2,27469,64345,56,0
,2,27470,64347,56,0
,2,27471,64349,56,0
,2,27472,64351,56,0
,2,27473,64353,56,0
,2,27474,64355,56,0
,2,27475,64357,56,0
,2,27476,64359,56,0
,2,27477,64361,56,0
,2,27478,64363,56,0
,2,27479,64365,56,0
,2,27480,64367,56,0
,2,27481,64369,56,0
,2,27482,64371,56,0
,2,27483,64373,56,0
,2,27484,64375,56,0
,2,27485,64377,56,0
,2,27486,64379,56,0
,2,27487,64381,56,0
,2,27488,64383,56,0
,2,27489,64385,56,0
,2,27490,64387,56,0
,2,27491,64389,56,0
,2,27492,64391,56,0
,2,27493,64393,56,0
,2,27494,64395,56,0
,2,27495,64397,56,0
,2,27496,64399,56,0
,2,27497,64401,56,0
,2,27498,64403,56,0
,2,27499,64405,56,0
,2,27500,64407,56,0
,2,27501,64409,56,0
,2,27502,64411,56,0
,2,27503,64413,56,0
,2,27504,64415,56,0
,2,27505,64417,56,0
,2,27506,64419,56,0
,2,27507,64421,56,0
,2,27508,64423,56,0
,2,27509,64425,56,0
,2,27510,64427,56,0
,2,27511,64429,56,0
,2,27512,64431,56,0
,2,27513,64433,56,0
,2,27514,64435,56,0
,2,27515,64437,56,0
,2,27516,64439,56,0
,2,27517,64441,56,0
,2,27518,64443,56,0
,2,27519,64445,56,0
,2,27520,64447,56,0
,2,27521,64449,56,0
,2,27522,64451,56,0
,2,27523,64453,56,0
,2,27524,64455,56,0
,2,27525,64457,56,0
,2,27526,64459,56,0
,2,27527,64461,56,0
,2,27528,64463,56,0
,2,27529,64465,56,0
,2,27530,64467,56,0
,2,27531,64469,56,0
,2,27532,64471,56,0
,2,27533,64473,56,0
,2,27534,64475,56,0
,2,27535,64477,56,0
,2,27536,64479,56,0
,2,27537,64481,56,0
,2,27538,64483,56,0
,2,27539,64485,56,0
,2,27540,64487,56,0
,2,27541,64489,56,0
,2,27542,64491,56,0
,2,27543,64493,56,0
,2,27544,64495,56,0
,2,27545,64497,56,0
,2,27546,64499,56,0
,2,27547,64501,56,0
,2,27548,64503,56,0
,2,27549,64505,56,0
,2,27550,64507,56,0
,2,27551,64509,56,0
,2,27552,64511,56,0
,2,27553,64513,56,0
,2,27554,64515,56,0
,2,27555,64517,56,0
,2,27556,64519,56,0
,2,27557,64521,56,0
,2,27558,64523,56,0
,2,27559,64525,56,0
,2,27560,64527,56,0
,2,27561,64529,56,0
,2,27562,64531,56,0
,2,27563,64533,56,0
,2,27564,64535,56,0
,2,27565,64537,56,0
,2,27566,64539,56,0
,2,27567,64541,56,0
,2,27568,64543,56,0
,2,27569,64545,56,0
,2,27570,64547,56,0
,2,27571,64549,56,0
,2,27572,64551,56,0
,2,27573,64553,56,0
,2,27574,64555,56,0
,2,27575,64557,56,0
,2,27576,64559,56,0
,2,27577,64561,56,0
,2,27578,64563,56,0
,2,27579,64565,56,0
,2,27580,64567,56,0
,2,27581,64569,56,0
,2,27582,64571,56,0
,2,27583,64573,56,0
,2,27584,64575,56,0
,2,27585,64577,56,0
,2,27586,64579,56,0
,2,27587,64581,56,0
,2,27588,64583,56,0
,2,27589,64585,56,0
,2,27590,64587,56,0
,2,27591,64589,56,0
,2,27592,64591,56,0
,2,27593,64593,56,0
,2,27594,64595,56,0
,2,27595,64597,56,0
,2,27596,64599,56,0
,2,27597,64601,56,0
,2,27598,64603,56,0
,2,27599,64605,56,0
,2,27600,64607,56,0
,2,27601,64609,56,0
,2,27602,64611,56,0
,2,27603,64613,56,0
,2,27604,64615,56,0
,2,27605,64617,56,0
,2,27606,64619,56,0
,2,27607,64621,56,0
,2,27608,64623,56,0
,2,27609,64625,56,0
,2,27610,64627,56,0
,2,27611,64629,56,0
,2,27612,64631,56,0
,2,27613,64633,56,0
,2,27614,64635,56,0
,2,27615,64637,56,0
,2,27616,64639,56,0
,2,27617,64641,56,0
,2,27618,64643,56,0
,2,27619,64645,56,0
,2,27620,64647,56,0
,2,27621,64649,56,0
,2,27622,64651,56,0
,2,27623,64653,56,0
,2,27624,64655,56,0
,2,27625,64657,56,0
,2,27626,64659,56,0
,2,27627,64661,56,0
,2,27628,64663,56,0
,2,27629,64665,56,0
,2,27630,64667,56,0
,2,27631,64669,56,0
,2,27632,64671,56,0
,2,27633,64673,56,0
,2,27634,64675,56,0
,2,27635,64677,56,0
,2,27636,64679,56,0
,2,27637,64681,56,0
,2,27638,64683,56,0
,2,27639,64685,56,0
,2,27640,64687,56,0
,2,27641,64689,56,0
,2,27642,64691,56,0
,2,27643,64693,56,0
,2,27644,64695,56,0
,2,27645,64697,56,0
,2,27646,64699,56,0
,2,27647,64701,56,0
,2,27648,64703,56,0
,2,27649,64705,56,0
,2,27650,64707,56,0
,2,27651,64709,56,0
,2,27652,64711,56,0
,2,27653,64713,56,0
,2,27654,64715,56,0
,2,27655,64717,56,0
,2,27656,64719,56,0
,2,27657,64721,56,0
,2,27658,64723,56,0
,2,27659,64725,56,0
,2,27660,64727,56,0
,2,27661,64729,56,0
,2,27662,64731,56,0
,2,27663,64733,56,0
,2,27664,64735,56,0
,2,27665,64737,56,0
,2,27666,64739,56,0
,2,27667,64741,56,0
,2,27668,64743,56,0
,2,27669,64745,56,0
,2,27670,64747,56,0
,2,27671,64749,56,0
,2,27672,64751,56,0
,2,27673,64753,56,0
,2,27674,64755,56,0
,2,27675,64757,56,0
,2,27676,64759,56,0
,2,27677,64761,56,0
,2,27678,64763,56,0
,2,27679,64765,56,0
,2,27680,64767,56,0
,2,27681,64769,56,0
,2,27682,64771,56,0
,2,27683,64773,56,0
,2,27684,64775,56,0
,2,27685,64777,56,0
,2,27686,64779,56,0
,2,27687,64781,56,0
,2,27688,64783,56,0
,2,27689,64785,56,0
,2,27690,64787,56,0
,2,27691,64789,56,0
,2,27692,64791,56,0
,2,27693,64793,56,0
,2,27694,64795,56,0
,2,27695,64797,56,0
,2,27696,64799,56,0
,2,27697,64801,56,0
,2,27698,64803,56,0
,2,27699,64805,56,0
,2,27700,64807,56,0
,2,27701,64809,56,0
,2,27702,64811,56,0
,2,27703,64813,56,0
,2,27704,64815,56,0
,2,27705,64817,56,0
,2,27706,64819,56,0
,2,27707,64821,56,0
,2,27708,64823,56,0
,2,27709,64825,56,0
,2,27710,64827,56,0
,2,27711,64829,56,0
,2,27712,64831,56,0
,2,27713,64833,56,0
,2,27714,64835,56,0
,2,27715,64837,56,0
,2,27716,64839,56,0
,2,27717,64841,56,0
,2,27718,64843,56,0
,2,27719,64845,56,0
,2,27720,64847,56,0
,2,27721,64849,56,0
,2,27722,64851,56,0
,2,27723,64853,56,0
,2,27724,64855,56,0
,2,27725,64857,56,0
,2,27726,64859,56,0
,2,27727,64861,56,0
,2,27728,64863,56,0
,2,27729,64865,56,0
,2,27730,64867,56,0
,2,27731,64869,56,0
,2,27732,64871,56,0
,2,27733,64873,56,0
,2,27734,64875,56,0
,2,27735,64877,56,0
,2,27736,64879,56,0
,2,27737,64881,56,0
,2,27738,64883,56,0
,2,27739,64885,56,0
,2,27740,64887,56,0
,2,27741,64889,56,0
,2,27742,64891,56,0
,2,27743,64893,56,0
,2,27744,64895,56,0
,2,27745,64897,56,0
,2,27746,64899,56,0
,2,27747,64901,56,0
,2,27748,64903,56,0
,2,27749,64905,56,0
,2,27750,64907,56,0
,2,27751,64909,56,0
,2,27752,64911,56,0
,2,27753,64913,56,0
,2,27754,64915,56,0
,2,27755,64917,56,0
,2,27756,64919,56,0
,2,27757,64921,56,0
,2,27758,64923,56,0
,2,27759,64925,56,0
,2,27760,64927,56,0
,2,27761,64929,56,0
,2,27762,64931,56,0
,2,27763,64933,56,0
,2,27764,64935,56,0
,2,27765,64937,56,0
,2,27766,64939,56,0
,2,27767,64941,56,0
,2,27768,64943,56,0
,2,27769,64945,56,0
,2,27770,64947,56,0
,2,27771,64949,56,0
,2,27772,64951,56,0
,2,27773,64953,56,0
,2,27774,64955,56,0
,2,27775,64957,56,0
,2,27776,64959,56,0
,2,27777,64961,56,0
,2,27778,64963,56,0
,2,27779,64965,56,0
,2,27780,64967,56,0
,2,27781,64969,56,0
,2,27782,64971,56,0
,2,27783,64973,56,0
,2,27784,64975,56,0
,2,27785,64977,56,0
,2,27786,64979,56,0
,2,27787,64981,56,0
,2,27788,64983,56,0
,2,27789,64985,56,0
,2,27790,64987,56,0
,2,27791,64989,56,0
,2,27792,64991,56,0
,2,27793,64993,56,0
,2,27794,64995,56,0
,2,27795,64997,56,0
,2,27796,64999,56,0
,2,27797,65001,56,0
,2,27798,65003,56,0
,2,27799,65005,56,0
,2,27800,65007,56,0
,2,27801,65009,56,0
,2,27802,65011,56,0
,2,27803,65013,56,0
,2,27804,65015,56,0
,2,27805,65017,56,0
,2,27806,65019,56,0
,2,27807,65021,56,0
,2,27808,65023,56,0
,2,27809,65025,56,0
,2,27810,65027,56,0
,2,27811,65029,56,0
,2,27812,65031,56,0
,2,27813,65033,56,0
,2,27814,65035,56,0
,2,27815,65037,56,0
,2,27816,65039,56,0
,2,27817,65041,56,0
,2,27818,65043,56,0
,2,27819,65045,56,0
,2,27820,65047,56,0
,2,27821,65049,56,0
,2,27822,65051,56,0
,2,27823,65053,56,0
,2,27824,65055,56,0
,2,27825,65057,56,0
,2,27826,65059,56,0
,2,27827,65061,56,0
,2,27828,65063,56,0
,2,27829,65065,56,0
,2,27830,65067,56,0
,2,27831,65069,56,0
,2,27832,65071,56,0
,2,27833,65073,56,0
,2,27834,65075,56,0
,2,27835,65077,56,0
,2,27836,65079,56,0
,2,27837,65081,56,0
,2,27838,65083,56,0
,2,27839,65085,56,0
,2,27840,65087,56,0
,2,27841,65089,56,0
,2,27842,65091,56,0
,2,27843,65093,56,0
,2,27844,65095,56,0
,2,27845,65097,56,0
,2,27846,65099,56,0
,2,27847,65101,56,0
,2,27848,65103,56,0
,2,27849,65105,56,0
,2,27850,65107,56,0
,2,27851,65109,56,0
,2,27852,65111,56,0
,2,27853,65113,56,0
,2,27854,65115,56,0
,2,27855,65117,56,0
,2,27856,65119,56,0
,2,27857,65121,56,0
,2,27858,65123,56,0
,2,27859,65125,56,0
,2,27860,65127,56,0
,2,27861,65129,56,0
,2,27862,65131,56,0
,2,27863,65133,56,0
,2,27864,65135,56,0
,2,27865,65137,56,0
,2,27866,65139,56,0
,2,27867,65141,56,0
,2,27868,65143,56,0
,2,27869,65145,56,0
,2,27870,65147,56,0
,2,27871,65149,56,0
,2,27872,65151,56,0
,2,27873,65153,56,0
,2,27874,65155,56,0
,2,27875,65157,56,0
,2,27876,65159,56,0
,2,27877,65161,56,0
,2,27878,65163,56,0
,2,27879,65165,56,0
,2,27880,65167,56,0
,2,27881,65169,56,0
,2,27882,65171,56,0
,2,27883,65173,56,0
,2,27884,65175,56,0
,2,27885,65177,56,0
,2,27886,65179,56,0
,2,27887,65181,56,0
,2,27888,65183,56,0
,2,27889,65185,56,0
,2,27890,65187,56,0
,2,27891,65189,56,0
,2,27892,65191,56,0
,2,27893,65193,56,0
,2,27894,65195,56,0
,2,27895,65197,56,0
,2,27896,65199,56,0
,2,27897,65201,56,0
,2,27898,65203,56,0
,2,27899,65205,56,0
,2,27900,65207,56,0
,2,27901,65209,56,0
,2,27902,65211,56,0
,2,27903,65213,56,0
,2,27904,65215,56,0
,2,27905,65217,56,0
,2,27906,65219,56,0
,2,27907,65221,56,0
,2,27908,65223,56,0
,2,27909,65225,56,0
,2,27910,65227,56,0
,2,27911,65229,56,0
,2,27912,65231,56,0
,2,27913,65233,56,0
,2,27914,65235,56,0
,2,27915,65237,56,0
,2,27916,65239,56,0
,2,27917,65241,56,0
,2,27918,65243,56,0
,2,27919,65245,56,0
,2,27920,65247,56,0
,2,27921,65249,56,0
,2,27922,65251,56,0
,2,27923,65253,56,0
,2,27924,65255,56,0
,2,27925,65257,56,0
,2,27926,65259,56,0
,2,27927,65261,56,0
,2,27928,65263,56,0
,2,27929,65265,56,0
,2,27930,65267,56,0
,2,27931,65269,56,0
,2,27932,65271,56,0
,2,27933,65273,56,0
,2,27934,65275,56,0
,2,27935,65277,56,0
,2,27936,65279,56,0
,2,27937,65281,56,0
,2,27938,65283,56,0
,2,27939,65285,56,0
,2,27940,65287,56,0
,2,27941,65289,56,0
,2,27942,65291,56,0
,2,27943,65293,56,0
,2,27944,65295,56,0
,2,27945,65297,56,0
,2,27946,65299,56,0
,2,27947,65301,56,0
,2,27948,65303,56,0
,2,27949,65305,56,0
,2,27950,65307,56,0
,2,27951,65309,56,0
,2,27952,65311,56,0
,2,27953,65313,56,0
,2,27954,65315,56,0
,2,27955,65317,56,0
,2,27956,65319,56,0
,2,27957,65321,56,0
,2,27958,65323,56,0
,2,27959,65325,56,0
,2,27960,65327,56,0
,2,27961,65329,56,0
,2,27962,65331,56,0
,2,27963,65333,56,0
,2,27964,65335,56,0
,2,27965,65337,56,0
,2,27966,65339,56,0
,2,27967,65341,56,0
,2,27968,65343,56,0
,2,27969,65345,56,0
,2,27970,65347,56,0
,2,27971,65349,56,0
,2,27972,65351,56,0
,2,27973,65353,56,0
,2,27974,65355,56,0
,2,27975,65357,56,0
,2,27976,65359,56,0
,2,27977,65361,56,0
,2,27978,65363,56,0
,2,27979,65365,56,0
,2,27980,65367,56,0
,2,27981,65369,56,0
,2,27982,65371,56,0
,2,27983,65373,56,0
,2,27984,65375,56,0
,2,27985,65377,56,0
,2,27986,65379,56,0
,2,27987,65381,56,0
,2,27988,65383,56,0
,2,27989,65385,56,0
,2,27990,65387,56,0
,2,27991,65389,56,0
,2,27992,65391,56,0
,2,27993,65393,56,0
,2,27994,65395,56,0
,2,27995,65397,56,0
,2,27996,65399,56,0
,2,27997,65401,56,0
,2,27998,65403,56,0
,2,27999,65405,56,0
,2,28000,65407,56,0
,2,28001,65409,56,0
,2,28002,65411,56,0
,2,28003,65413,56,0
,2,28004,65415,56,0
,2,28005,65417,56,0
,2,28006,65419,56,0
,2,28007,65421,56,0
,2,28008,65423,56,0
,2,28009,65425,56,0
,2,28010,65427,56,0
,2,28011,65429,56,0
,2,28012,65431,56,0
,2,28013,65433,56,0
,2,28014,65435,56,0
,2,28015,65437,56,0
,2,28016,65439,56,0
,2,28017,65441,56,0
,2,28018,65443,56,0
,2,28019,65445,56,0
,2,28020,65447,56,0
,2,28021,65449,56,0
,2,28022,65451,56,0
,2,28023,65453,56,0
,2,28024,65455,56,0
,2,28025,65457,56,0
,2,28026,65459,56,0
,2,28027,65461,56,0
,2,28028,65463,56,0
,2,28029,65465,56,0
,2,28030,65467,56,0
,2,28031,65469,56,0
,2,28032,65471,56,0
,2,28033,65473,56,0
,2,28034,65475,56,0
,2,28035,65477,56,0
,2,28036,65479,56,0
,2,28037,65481,56,0
,2,28038,65483,56,0
,2,28039,65485,56,0
,2,28040,65487,56,0
,2,28041,65489,56,0
,2,28042,65491,56,0
,2,28043,65493,56,0
,2,28044,65495,56,0
,2,28045,65497,56,0
,2,28046,65499,56,0
,2,28047,65501,56,0
,2,28048,65503,56,0
,2,28049,65505,56,0
,2,28050,65507,56,0
,2,28051,65509,56,0
,2,28052,65511,56,0
,2,28053,65513,56,0
,2,28054,65515,56,0
,2,28055,65517,56,0
,2,28056,65519,56,0
,2,28057,65521,56,0
,2,28058,65523,56,0
,2,28059,65525,56,0
,2,28060,65527,56,0
,2,28061,65529,56,0
,2,28062,65531,56,0
,2,28063,65533,56,0
,2,28064,65535,56,0
,2,28065,65537,56,0
,2,28066,65539,56,0
,2,28067,65541,56,0
,2,28068,65543,56,0
,2,28069,65545,56,0
,2,28070,65547,56,0
,2,28071,65549,56,0
,2,28072,65551,56,0
,2,28073,65553,56,0
,2,28074,65555,56,0
,2,28075,65557,56,0
,2,28076,65559,56,0
,2,28077,65561,56,0
,2,28078,65563,56,0
,2,28079,65565,56,0
,2,28080,65567,56,0
,2,28081,65569,56,0
,2,28082,65571,56,0
,2,28083,65573,56,0
,2,28084,65575,56,0
,2,28085,65577,56,0
,2,28086,65579,56,0
,2,28087,65581,56,0
,2,28088,65583,56,0
,2,28089,65585,56,0
,2,28090,65587,56,0
,2,28091,65589,56,0
,2,28092,65591,56,0
,2,28093,65593,56,0
,2,28094,65595,56,0
,2,28095,65597,56,0
,2,28096,65599,56,0
,2,28097,65601,56,0
,2,28098,65603,56,0
,2,28099,65605,56,0
,2,28100,65607,56,0
,2,28101,65609,56,0
,2,28102,65611,56,0
,2,28103,65613,56,0
,2,28104,65615,56,0
,2,28105,65617,56,0
,2,28106,65619,56,0
,2,28107,65621,56,0
,2,28108,65623,56,0
,2,28109,65625,56,0
,2,28110,65627,56,0
,2,28111,65629,56,0
,2,28112,65631,56,0
,2,28113,65633,56,0
,2,28114,65635,56,0
,2,28115,65637,56,0
,2,28116,65639,56,0
,2,28117,65641,56,0
,2,28118,65643,56,0
,2,28119,65645,56,0
,2,28120,65647,56,0
,2,28121,65649,56,0
,2,28122,65651,56,0
,2,28123,65653,56,0
,2,28124,65655,56,0
,2,28125,65657,56,0
,2,28126,65659,56,0
,2,28127,65661,56,0
,2,28128,65663,56,0
,2,28129,65665,56,0
,2,28130,65667,56,0
,2,28131,65669,56,0
,2,28132,65671,56,0
,2,28133,65673,56,0
,2,28134,65675,56,0
,2,28135,65677,56,0
,2,28136,65679,56,0
,2,28137,65681,56,0
,2,28138,65683,56,0
,2,28139,65685,56,0
,2,28140,65687,56,0
,2,28141,65689,56,0
,2,28142,65691,56,0
,2,28143,65693,56,0
,2,28144,65695,56,0
,2,28145,65697,56,0
,2,28146,65699,56,0
,2,28147,65701,56,0
,2,28148,65703,56,0
,2,28149,65705,56,0
,2,28150,65707,56,0
,2,28151,65709,56,0
,2,28152,65711,56,0
,2,28153,65713,56,0
,2,28154,65715,56,0
,2,28155,65717,56,0
,2,28156,65719,56,0
,2,28157,65721,56,0
,2,28158,65723,56,0
,2,28159,65725,56,0
,2,28160,65727,56,0
,2,28161,65729,56,0
,2,28162,65731,56,0
,2,28163,65733,56,0
,2,28164,65735,56,0
,2,28165,65737,56,0
,2,28166,65739,56,0
,2,28167,65741,56,0
,2,28168,65743,56,0
,2,28169,65745,56,0
,2,28170,65747,56,0
,2,28171,65749,56,0
,2,28172,65751,56,0
,2,28173,65753,56,0
,2,28174,65755,56,0
,2,28175,65757,56,0
,2,28176,65759,56,0
,2,28177,65761,56,0
,2,28178,65763,56,0
,2,28179,65765,56,0
,2,28180,65767,56,0
,2,28181,65769,56,0
,2,28182,65771,56,0
,2,28183,65773,56,0
,2,28184,65775,56,0
,2,28185,65777,56,0
,2,28186,65779,56,0
,2,28187,65781,56,0
,2,28188,65783,56,0
,2,28189,65785,56,0
,2,28190,65787,56,0
,2,28191,65789,56,0
,2,28192,65791,56,0
,2,28193,65793,56,0
,2,28194,65795,56,0
,2,28195,65797,56,0
,2,28196,65799,56,0
,2,28197,65801,56,0
,2,28198,65803,56,0
,2,28199,65805,56,0
,2,28200,65807,56,0
,2,28201,65809,56,0
,2,28202,65811,56,0
,2,28203,65813,56,0
,2,28204,65815,56,0
,2,28205,65817,56,0
,2,28206,65819,56,0
,2,28207,65821,56,0
,2,28208,65823,56,0
,2,28209,65825,56,0
,2,28210,65827,56,0
,2,28211,65829,56,0
,2,28212,65831,56,0
,2,28213,65833,56,0
,2,28214,65835,56,0
,2,28215,65837,56,0
,2,28216,65839,56,0
,2,28217,65841,56,0
,2,28218,65843,56,0
,2,28219,65845,56,0
,2,28220,65847,56,0
,2,28221,65849,56,0
,2,28222,65851,56,0
,2,28223,65853,56,0
,2,28224,65855,56,0
,2,28225,65857,56,0
,2,28226,65859,56,0
,2,28227,65861,56,0
,2,28228,65863,56,0
,2,28229,65865,56,0
,2,28230,65867,56,0
,2,28231,65869,56,0
,2,28232,65871,56,0
,2,28233,65873,56,0
,2,28234,65875,56,0
,2,28235,65877,56,0
,2,28236,65879,56,0
,2,28237,65881,56,0
,2,28238,65883,56,0
,2,28239,65885,56,0
,2,28240,65887,56,0
,2,28241,65889,56,0
,2,28242,65891,56,0
,2,28243,65893,56,0
,2,28244,65895,56,0
,2,28245,65897,56,0
,2,28246,65899,56,0
,2,28247,65901,56,0
,2,28248,65903,56,0
,2,28249,65905,56,0
,2,28250,65907,56,0
,2,28251,65909,56,0
,2,28252,65911,56,0
,2,28253,65913,56,0
,2,28254,65915,56,0
,2,28255,65917,56,0
,2,28256,65919,56,0
,2,28257,65921,56,0
,2,28258,65923,56,0
,2,28259,65925,56,0
,2,28260,65927,56,0
,2,28261,65929,56,0
,2,28262,65931,56,0
,2,28263,65933,56,0
,2,28264,65935,56,0
,2,28265,65937,56,0
,2,28266,65939,56,0
,2,28267,65941,56,0
,2,28268,65943,56,0
,2,28269,65945,56,0
,2,28270,65947,56,0
,2,28271,65949,56,0
,2,28272,65951,56,0
,2,28273,65953,56,0
,2,28274,65955,56,0
,2,28275,65957,56,0
,2,28276,65959,56,0
,2,28277,65961,56,0
,2,28278,65963,56,0
,2,28279,65965,56,0
,2,28280,65967,56,0
,2,28281,65969,56,0
,2,28282,65971,56,0
,2,28283,65973,56,0
,2,28284,65975,56,0
,2,28285,65977,56,0
,2,28286,65979,56,0
,2,28287,65981,56,0
,2,28288,65983,56,0
,2,28289,65985,56,0
,2,28290,65987,56,0
,2,28291,65989,56,0
,2,28292,65991,56,0
,2,28293,65993,56,0
,2,28294,65995,56,0
,2,28295,65997,56,0
,2,28296,65999,56,0
,2,28297,66001,56,0
,2,28298,66003,56,0
,2,28299,66005,56,0
,2,28300,66007,56,0
,2,28301,66009,56,0
,2,28302,66011,56,0
,2,28303,66013,56,0
,2,28304,66015,56,0
,2,28305,66017,56,0
,2,28306,66019,56,0
,2,28307,66021,56,0
,2,28308,66023,56,0
,2,28309,66025,56,0
,2,28310,66027,56,0
,2,28311,66029,56,0
,2,28312,66031,56,0
,2,28313,66033,56,0
,2,28314,66035,56,0
,2,28315,66037,56,0
,2,28316,66039,56,0
,2,28317,66041,56,0
,2,28318,66043,56,0
,2,28319,66045,56,0
,2,28320,66047,56,0
,2,28321,66049,56,0
,2,28322,66051,56,0
,2,28323,66053,56,0
,2,28324,66055,56,0
,2,28325,66057,56,0
,2,28326,66059,56,0
,2,28327,66061,56,0
,2,28328,66063,56,0
,2,28329,66065,56,0
,2,28330,66067,56,0
,2,28331,66069,56,0
,2,28332,66071,56,0
,2,28333,66073,56,0
,2,28334,66075,56,0
,2,28335,66077,56,0
,2,28336,66079,56,0
,2,28337,66081,56,0
,2,28338,66083,56,0
,2,28339,66085,56,0
,2,28340,66087,56,0
,2,28341,66089,56,0
,2,28342,66091,56,0
,2,28343,66093,56,0
,2,28344,66095,56,0
,2,28345,66097,56,0
,2,28346,66099,56,0
,2,28347,66101,56,0
,2,28348,66103,56,0
,2,28349,66105,56,0
,2,28350,66107,56,0
,2,28351,66109,56,0
,2,28352,66111,56,0
,2,28353,66113,56,0
,2,28354,66115,56,0
,2,28355,66117,56,0
,2,28356,66119,56,0
,2,28357,66121,56,0
,2,28358,66123,56,0
,2,28359,66125,56,0
,2,28360,66127,56,0
,2,28361,66129,56,0
,2,28362,66131,56,0
,2,28363,66133,56,0
,2,28364,66135,56,0
,2,28365,66137,56,0
,2,28366,66139,56,0
,2,28367,66141,56,0
,2,28368,66143,56,0
,2,28369,66145,56,0
,2,28370,66147,56,0
,2,28371,66149,56,0
,2,28372,66151,56,0
,2,28373,66153,56,0
,2,28374,66155,56,0
,2,28375,66157,56,0
,2,28376,66159,56,0
,2,28377,66161,56,0
,2,28378,66163,56,0
,2,28379,66165,56,0
,2,28380,66167,56,0
,2,28381,66169,56,0
,2,28382,66171,56,0
,2,28383,66173,56,0
,2,28384,66175,56,0
,2,28385,66177,56,0
,2,28386,66179,56,0
,2,28387,66181,56,0
,2,28388,66183,56,0
,2,28389,66185,56,0
,2,28390,66187,56,0
,2,28391,66189,56,0
,2,28392,66191,56,0
,2,28393,66193,56,0
,2,28394,66195,56,0
,2,28395,66197,56,0
,2,28396,66199,56,0
,2,28397,66201,56,0
,2,28398,66203,56,0
,2,28399,66205,56,0
,2,28400,66207,56,0
,2,28401,66209,56,0
,2,28402,66211,56,0
,2,28403,66213,56,0
,2,28404,66215,56,0
,2,28405,66217,56,0
,2,28406,66219,56,0
,2,28407,66221,56,0
,2,28408,66223,56,0
,2,28409,66225,56,0
,2,28410,66227,56,0
,2,28411,66229,56,0
,2,28412,66231,56,0
,2,28413,66233,56,0
,2,28414,66235,56,0
,2,28415,66237,56,0
,2,28416,66239,56,0
,2,28417,66241,56,0
,2,28418,66243,56,0
,2,28419,66245,56,0
,2,28420,66247,56,0
,2,28421,66249,56,0
,2,28422,66251,56,0
,2,28423,66253,56,0
,2,28424,66255,56,0
,2,28425,66257,56,0
,2,28426,66259,56,0
,2,28427,66261,56,0
,2,28428,66263,56,0
,2,28429,66265,56,0
,2,28430,66267,56,0
,2,28431,66269,56,0
,2,28432,66271,56,0
,2,28433,66273,56,0
,2,28434,66275,56,0
,2,28435,66277,56,0
,2,28436,66279,56,0
,2,28437,66281,56,0
,2,28438,66283,56,0
,2,28439,66285,56,0
,2,28440,66287,56,0
,2,28441,66289,56,0
,2,28442,66291,56,0
,2,28443,66293,56,0
,2,28444,66295,56,0
,2,28445,66297,56,0
,2,28446,66299,56,0
,2,28447,66301,56,0
,2,28448,66303,56,0
,2,28449,66305,56,0
,2,28450,66307,56,0
,2,28451,66309,56,0
,2,28452,66311,56,0
,2,28453,66313,56,0
,2,28454,66315,56,0
,2,28455,66317,56,0
,2,28456,66319,56,0
,2,28457,66321,56,0
,2,28458,66323,56,0
,2,28459,66325,56,0
,2,28460,66327,56,0
,2,28461,66329,56,0
,2,28462,66331,56,0
,2,28463,66333,56,0
,2,28464,66335,56,0
,2,28465,66337,56,0
,2,28466,66339,56,0
,2,28467,66341,56,0
,2,28468,66343,56,0
,2,28469,66345,56,0
,2,28470,66347,56,0
,2,28471,66349,56,0
,2,28472,66351,56,0
,2,28473,66353,56,0
,2,28474,66355,56,0
,2,28475,66357,56,0
,2,28476,66359,56,0
,2,28477,66361,56,0
,2,28478,66363,56,0
,2,28479,66365,56,0
,2,28480,66367,56,0
,2,28481,66369,56,0
,2,28482,66371,56,0
,2,28483,66373,56,0
,2,28484,66375,56,0
,2,28485,66377,56,0
,2,28486,66379,56,0
,2,28487,66381,56,0
,2,28488,66383,56,0
,2,28489,66385,56,0
,2,28490,66387,56,0
,2,28491,66389,56,0
,2,28492,66391,56,0
,2,28493,66393,56,0
,2,28494,66395,56,0
,2,28495,66397,56,0
,2,28496,66399,56,0
,2,28497,66401,56,0
,2,28498,66403,56,0
,2,28499,66405,56,0
,2,28500,66407,56,0
,2,28501,66409,56,0
,2,28502,66411,56,0
,2,28503,66413,56,0
,2,28504,66415,56,0
,2,28505,66417,56,0
,2,28506,66419,56,0
,2,28507,66421,56,0
,2,28508,66423,56,0
,2,28509,66425,56,0
,2,28510,66427,56,0
,2,28511,66429,56,0
,2,28512,66431,56,0
,2,28513,66433,56,0
,2,28514,66435,56,0
,2,28515,66437,56,0
,2,28516,66439,56,0
,2,28517,66441,56,0
,2,28518,66443,56,0
,2,28519,66445,56,0
,2,28520,66447,56,0
,2,28521,66449,56,0
,2,28522,66451,56,0
,2,28523,66453,56,0
,2,28524,66455,56,0
,2,28525,66457,56,0
,2,28526,66459,56,0
,2,28527,66461,56,0
,2,28528,66463,56,0
,2,28529,66465,56,0
,2,28530,66467,56,0
,2,28531,66469,56,0
,2,28532,66471,56,0
,2,28533,66473,56,0
,2,28534,66475,56,0
,2,28535,66477,56,0
,2,28536,66479,56,0
,2,28537,66481,56,0
,2,28538,66483,56,0
,2,28539,66485,56,0
,2,28540,66487,56,0
,2,28541,66489,56,0
,2,28542,66491,56,0
,2,28543,66493,56,0
,2,28544,66495,56,0
,2,28545,66497,56,0
,2,28546,66499,56,0
,2,28547,66501,56,0
,2,28548,66503,56,0
,2,28549,66505,56,0
,2,28550,66507,56,0
,2,28551,66509,56,0
,2,28552,66511,56,0
,2,28553,66513,56,0
,2,28554,66515,56,0
,2,28555,66517,56,0
,2,28556,66519,56,0
,2,28557,66521,56,0
,2,28558,66523,56,0
,2,28559,66525,56,0
,2,28560,66527,56,0
,2,28561,66529,56,0
,2,28562,66531,56,0
,2,28563,66533,56,0
,2,28564,66535,56,0
,2,28565,66537,56,0
,2,28566,66539,56,0
,2,28567,66541,56,0
,2,28568,66543,56,0
,2,28569,66545,56,0
,2,28570,66547,56,0
,2,28571,66549,56,0
,2,28572,66551,56,0
,2,28573,66553,56,0
,2,28574,66555,56,0
,2,28575,66557,56,0
,2,28576,66559,56,0
,2,28577,66561,56,0
,2,28578,66563,56,0
,2,28579,66565,56,0
,2,28580,66567,56,0
,2,28581,66569,56,0
,2,28582,66571,56,0
,2,28583,66573,56,0
,2,28584,66575,56,0
,2,28585,66577,56,0
,2,28586,66579,56,0
,2,28587,66581,56,0
,2,28588,66583,56,0
,2,28589,66585,56,0
,2,28590,66587,56,0
,2,28591,66589,56,0
,2,28592,66591,56,0
,2,28593,66593,56,0
,2,28594,66595,56,0
,2,28595,66597,56,0
,2,28596,66599,56,0
,2,28597,66601,56,0
,2,28598,66603,56,0
,2,28599,66605,56,0
,2,28600,66607,56,0
,2,28601,66609,56,0
,2,28602,66611,56,0
,2,28603,66613,56,0
,2,28604,66615,56,0
,2,28605,66617,56,0
,2,28606,66619,56,0
,2,28607,66621,56,0
,2,28608,66623,56,0
,2,28609,66625,56,0
,2,28610,66627,56,0
,2,28611,66629,56,0
,2,28612,66631,56,0
,2,28613,66633,56,0
,2,28614,66635,56,0
,2,28615,66637,56,0
,2,28616,66639,56,0
,2,28617,66641,56,0
,2,28618,66643,56,0
,2,28619,66645,56,0
,2,28620,66647,56,0
,2,28621,66649,56,0
,2,28622,66651,56,0
,2,28623,66653,56,0
,2,28624,66655,56,0
,2,28625,66657,56,0
,2,28626,66659,56,0
,2,28627,66661,56,0
,2,28628,66663,56,0
,2,28629,66665,56,0
,2,28630,66667,56,0
,2,28631,66669,56,0
,2,28632,66671,56,0
,2,28633,66673,56,0
,2,28634,66675,56,0
,2,28635,66677,56,0
,2,28636,66679,56,0
,2,28637,66681,56,0
,2,28638,66683,56,0
,2,28639,66685,56,0
,2,28640,66687,56,0
,2,28641,66689,56,0
,2,28642,66691,56,0
,2,28643,66693,56,0
,2,28644,66695,56,0
,2,28645,66697,56,0
,2,28646,66699,56,0
,2,28647,66701,56,0
,2,28648,66703,56,0
,2,28649,66705,56,0
,2,28650,66707,56,0
,2,28651,66709,56,0
,2,28652,66711,56,0
,2,28653,66713,56,0
,2,28654,66715,56,0
,2,28655,66717,56,0
,2,28656,66719,56,0
,2,28657,66721,56,0
,2,28658,66723,56,0
,2,28659,66725,56,0
,2,28660,66727,56,0
,2,28661,66729,56,0
,2,28662,66731,56,0
,2,28663,66733,56,0
,2,28664,66735,56,0
,2,28665,66737,56,0
,2,28666,66739,56,0
,2,28667,66741,56,0
,2,28668,66743,56,0
,2,28669,66745,56,0
,2,28670,66747,56,0
,2,28671,66749,56,0
,2,28672,66751,56,0
,2,28673,66753,56,0
,2,28674,66755,56,0
,2,28675,66757,56,0
,2,28676,66759,56,0
,2,28677,66761,56,0
,2,28678,66763,56,0
,2,28679,66765,56,0
,2,28680,66767,56,0
,2,28681,66769,56,0
,2,28682,66771,56,0
,2,28683,66773,56,0
,2,28684,66775,56,0
,2,28685,66777,56,0
,2,28686,66779,56,0
,2,28687,66781,56,0
,2,28688,66783,56,0
,2,28689,66785,56,0
,2,28690,66787,56,0
,2,28691,66789,56,0
,2,28692,66791,56,0
,2,28693,66793,56,0
,2,28694,66795,56,0
,2,28695,66797,56,0
,2,28696,66799,56,0
,2,28697,66801,56,0
,2,28698,66803,56,0
,2,28699,66805,56,0
,2,28700,66807,56,0
,2,28701,66809,56,0
,2,28702,66811,56,0
,2,28703,66813,56,0
,2,28704,66815,56,0
,2,28705,66817,56,0
,2,28706,66819,56,0
,2,28707,66821,56,0
,2,28708,66823,56,0
,2,28709,66825,56,0
,2,28710,66827,56,0
,2,28711,66829,56,0
,2,28712,66831,56,0
,2,28713,66833,56,0
,2,28714,66835,56,0
,2,28715,66837,56,0
,2,28716,66839,56,0
,2,28717,66841,56,0
,2,28718,66843,56,0
,2,28719,66845,56,0
,2,28720,66847,56,0
,2,28721,66849,56,0
,2,28722,66851,56,0
,2,28723,66853,56,0
,2,28724,66855,56,0
,2,28725,66857,56,0
,2,28726,66859,56,0
,2,28727,66861,56,0
,2,28728,66863,56,0
,2,28729,66865,56,0
,2,28730,66867,56,0
,2,28731,66869,56,0
,2,28732,66871,56,0
,2,28733,66873,56,0
,2,28734,66875,56,0
,2,28735,66877,56,0
,2,28736,66879,56,0
,2,28737,66881,56,0
,2,28738,66883,56,0
,2,28739,66885,56,0
,2,28740,66887,56,0
,2,28741,66889,56,0
,2,28742,66891,56,0
,2,28743,66893,56,0
,2,28744,66895,56,0
,2,28745,66897,56,0
,2,28746,66899,56,0
,2,28747,66901,56,0
,2,28748,66903,56,0
,2,28749,66905,56,0
,2,28750,66907,56,0
,2,28751,66909,56,0
,2,28752,66911,56,0
,2,28753,66913,56,0
,2,28754,66915,56,0
,2,28755,66917,56,0
,2,28756,66919,56,0
,2,28757,66921,56,0
,2,28758,66923,56,0
,2,28759,66925,56,0
,2,28760,66927,56,0
,2,28761,66929,56,0
,2,28762,66931,56,0
,2,28763,66933,56,0
,2,28764,66935,56,0
,2,28765,66937,56,0
,2,28766,66939,56,0
,2,28767,66941,56,0
,2,28768,66943,56,0
,2,28769,66945,56,0
,2,28770,66947,56,0
,2,28771,66949,56,0
,2,28772,66951,56,0
,2,28773,66953,56,0
,2,28774,66955,56,0
,2,28775,66957,56,0
,2,28776,66959,56,0
,2,28777,66961,56,0
,2,28778,66963,56,0
,2,28779,66965,56,0
,2,28780,66967,56,0
,2,28781,66969,56,0
,2,28782,66971,56,0
,2,28783,66973,56,0
,2,28784,66975,56,0
,2,28785,66977,56,0
,2,28786,66979,56,0
,2,28787,66981,56,0
,2,28788,66983,56,0
,2,28789,66985,56,0
,2,28790,66987,56,0
,2,28791,66989,56,0
,2,28792,66991,56,0
,2,28793,66993,56,0
,2,28794,66995,56,0
,2,28795,66997,56,0
,2,28796,66999,56,0
,2,28797,67001,56,0
,2,28798,67003,56,0
,2,28799,67005,56,0
,2,28800,67007,56,0
,2,28801,67009,56,0
,2,28802,67011,56,0
,2,28803,67013,56,0
,2,28804,67015,56,0
,2,28805,67017,56,0
,2,28806,67019,56,0
,2,28807,67021,56,0
,2,28808,67023,56,0
,2,28809,67025,56,0
,2,28810,67027,56,0
,2,28811,67029,56,0
,2,28812,67031,56,0
,2,28813,67033,56,0
,2,28814,67035,56,0
,2,28815,67037,56,0
,2,28816,67039,56,0
,2,28817,67041,56,0
,2,28818,67043,56,0
,2,28819,67045,56,0
,2,28820,67047,56,0
,2,28821,67049,56,0
,2,28822,67051,56,0
,2,28823,67053,56,0
,2,28824,67055,56,0
,2,28825,67057,56,0
,2,28826,67059,56,0
,2,28827,67061,56,0
,2,28828,67063,56,0
,2,28829,67065,56,0
,2,28830,67067,56,0
,2,28831,67069,56,0
,2,28832,67071,56,0
,2,28833,67073,56,0
,2,28834,67075,56,0
,2,28835,67077,56,0
,2,28836,67079,56,0
,2,28837,67081,56,0
,2,28838,67083,56,0
,2,28839,67085,56,0
,2,28840,67087,56,0
,2,28841,67089,56,0
,2,28842,67091,56,0
,2,28843,67093,56,0
,2,28844,67095,56,0
,2,28845,67097,56,0
,2,28846,67099,56,0
,2,28847,67101,56,0
,2,28848,67103,56,0
,2,28849,67105,56,0
,2,28850,67107,56,0
,2,28851,67109,56,0
,2,28852,67111,56,0
,2,28853,67113,56,0
,2,28854,67115,56,0
,2,28855,67117,56,0
,2,28856,67119,56,0
,2,28857,67121,56,0
,2,28858,67123,56,0
,2,28859,67125,56,0
,2,28860,67127,56,0
,2,28861,67129,56,0
,2,28862,67131,56,0
,2,28863,67133,56,0
,2,28864,67135,56,0
,2,28865,67137,56,0
,2,28866,67139,56,0
,2,28867,67141,56,0
,2,28868,67143,56,0
,2,28869,67145,56,0
,2,28870,67147,56,0
,2,28871,67149,56,0
,2,28872,67151,56,0
,2,28873,67153,56,0
,2,28874,67155,56,0
,2,28875,67157,56,0
,2,28876,67159,56,0
,2,28877,67161,56,0
,2,28878,67163,56,0
,2,28879,67165,56,0
,2,28880,67167,56,0
,2,28881,67169,56,0
,2,28882,67171,56,0
,2,28883,67173,56,0
,2,28884,67175,56,0
,2,28885,67177,56,0
,2,28886,67179,56,0
,2,28887,67181,56,0
,2,28888,67183,56,0
,2,28889,67185,56,0
,2,28890,67187,56,0
,2,28891,67189,56,0
,2,28892,67191,56,0
,2,28893,67193,56,0
,2,28894,67195,56,0
,2,28895,67197,56,0
,2,28896,67199,56,0
,2,28897,67201,56,0
,2,28898,67203,56,0
,2,28899,67205,56,0
,2,28900,67207,56,0
,2,28901,67209,56,0
,2,28902,67211,56,0
,2,28903,67213,56,0
,2,28904,67215,56,0
,2,28905,67217,56,0
,2,28906,67219,56,0
,2,28907,67221,56,0
,2,28908,67223,56,0
,2,28909,67225,56,0
,2,28910,67227,56,0
,2,28911,67229,56,0
,2,28912,67231,56,0
,2,28913,67233,56,0
,2,28914,67235,56,0
,2,28915,67237,56,0
,2,28916,67239,56,0
,2,28917,67241,56,0
,2,28918,67243,56,0
,2,28919,67245,56,0
,2,28920,67247,56,0
,2,28921,67249,56,0
,2,28922,67251,56,0
,2,28923,67253,56,0
,2,28924,67255,56,0
,2,28925,67257,56,0
,2,28926,67259,56,0
,2,28927,67261,56,0
,2,28928,67263,56,0
,2,28929,67265,56,0
,2,28930,67267,56,0
,2,28931,67269,56,0
,2,28932,67271,56,0
,2,28933,67273,56,0
,2,28934,67275,56,0
,2,28935,67277,56,0
,2,28936,67279,56,0
,2,28937,67281,56,0
,2,28938,67283,56,0
,2,28939,67285,56,0
,2,28940,67287,56,0
,2,28941,67289,56,0
,2,28942,67291,56,0
,2,28943,67293,56,0
,2,28944,67295,56,0
,2,28945,67297,56,0
,2,28946,67299,56,0
,2,28947,67301,56,0
,2,28948,67303,56,0
,2,28949,67305,56,0
,2,28950,67307,56,0
,2,28951,67309,56,0
,2,28952,67311,56,0
,2,28953,67313,56,0
,2,28954,67315,56,0
,2,28955,67317,56,0
,2,28956,67319,56,0
,2,28957,67321,56,0
,2,28958,67323,56,0
,2,28959,67325,56,0
,2,28960,67327,56,0
,2,28961,67329,56,0
,2,28962,67331,56,0
,2,28963,67333,56,0
,2,28964,67335,56,0
,2,28965,67337,56,0
,2,28966,67339,56,0
,2,28967,67341,56,0
,2,28968,67343,56,0
,2,28969,67345,56,0
,2,28970,67347,56,0
,2,28971,67349,56,0
,2,28972,67351,56,0
,2,28973,67353,56,0
,2,28974,67355,56,0
,2,28975,67357,56,0
,2,28976,67359,56,0
,2,28977,67361,56,0
,2,28978,67363,56,0
,2,28979,67365,56,0
,2,28980,67367,56,0
,2,28981,67369,56,0
,2,28982,67371,56,0
,2,28983,67373,56,0
,2,28984,67375,56,0
,2,28985,67377,56,0
,2,28986,67379,56,0
,2,28987,67381,56,0
,2,28988,67383,56,0
,2,28989,67385,56,0
,2,28990,67387,56,0
,2,28991,67389,56,0
,2,28992,67391,56,0
,2,28993,67393,56,0
,2,28994,67395,56,0
,2,28995,67397,56,0
,2,28996,67399,56,0
,2,28997,67401,56,0
,2,28998,67403,56,0
,2,28999,67405,56,0
,2,29000,67407,56,0
,2,29001,67409,56,0
,2,29002,67411,56,0
,2,29003,67413,56,0
,2,29004,67415,56,0
,2,29005,67417,56,0
,2,29006,67419,56,0
,2,29007,67421,56,0
,2,29008,67423,56,0
,2,29009,67425,56,0
,2,29010,67427,56,0
,2,29011,67429,56,0
,2,29012,67431,56,0
,2,29013,67433,56,0
,2,29014,67435,56,0
,2,29015,67437,56,0
,2,29016,67439,56,0
,2,29017,67441,56,0
,2,29018,67443,56,0
,2,29019,67445,56,0
,2,29020,67447,56,0
,2,29021,67449,56,0
,2,29022,67451,56,0
,2,29023,67453,56,0
,2,29024,67455,56,0
,2,29025,67457,56,0
,2,29026,67459,56,0
,2,29027,67461,56,0
,2,29028,67463,56,0
,2,29029,67465,56,0
,2,29030,67467,56,0
,2,29031,67469,56,0
,2,29032,67471,56,0
,2,29033,67473,56,0
,2,29034,67475,56,0
,2,29035,67477,56,0
,2,29036,67479,56,0
,2,29037,67481,56,0
,2,29038,67483,56,0
,2,29039,67485,56,0
,2,29040,67487,56,0
,2,29041,67489,56,0
,2,29042,67491,56,0
,2,29043,67493,56,0
,2,29044,67495,56,0
,2,29045,67497,56,0
,2,29046,67499,56,0
,2,29047,67501,56,0
,2,29048,67503,56,0
,2,29049,67505,56,0
,2,29050,67507,56,0
,2,29051,67509,56,0
,2,29052,67511,56,0
,2,29053,67513,56,0
,2,29054,67515,56,0
,2,29055,67517,56,0
,2,29056,67519,56,0
,2,29057,67521,56,0
,2,29058,67523,56,0
,2,29059,67525,56,0
,2,29060,67527,56,0
,2,29061,67529,56,0
,2,29062,67531,56,0
,2,29063,67533,56,0
,2,29064,67535,56,0
,2,29065,67537,56,0
,2,29066,67539,56,0
,2,29067,67541,56,0
,2,29068,67543,56,0
,2,29069,67545,56,0
,2,29070,67547,56,0
,2,29071,67549,56,0
,2,29072,67551,56,0
,2,29073,67553,56,0
,2,29074,67555,56,0
,2,29075,67557,56,0
,2,29076,67559,56,0
,2,29077,67561,56,0
,2,29078,67563,56,0
,2,29079,67565,56,0
,2,29080,67567,56,0
,2,29081,67569,56,0
,2,29082,67571,56,0
,2,29083,67573,56,0
,2,29084,67575,56,0
,2,29085,67577,56,0
,2,29086,67579,56,0
,2,29087,67581,56,0
,2,29088,67583,56,0
,2,29089,67585,56,0
,2,29090,67587,56,0
,2,29091,67589,56,0
,2,29092,67591,56,0
,2,29093,67593,56,0
,2,29094,67595,56,0
,2,29095,67597,56,0
,2,29096,67599,56,0
,2,29097,67601,56,0
,2,29098,67603,56,0
,2,29099,67605,56,0
,2,29100,67607,56,0
,2,29101,67609,56,0
,2,29102,67611,56,0
,2,29103,67613,56,0
,2,29104,67615,56,0
,2,29105,67617,56,0
,2,29106,67619,56,0
,2,29107,67621,56,0
,2,29108,67623,56,0
,2,29109,67625,56,0
,2,29110,67627,56,0
,2,29111,67629,56,0
,2,29112,67631,56,0
,2,29113,67633,56,0
,2,29114,67635,56,0
,2,29115,67637,56,0
,2,29116,67639,56,0
,2,29117,67641,56,0
,2,29118,67643,56,0
,2,29119,67645,56,0
,2,29120,67647,56,0
,2,29121,67649,56,0
,2,29122,67651,56,0
,2,29123,67653,56,0
,2,29124,67655,56,0
,2,29125,67657,56,0
,2,29126,67659,56,0
,2,29127,67661,56,0
,2,29128,67663,56,0
,2,29129,67665,56,0
,2,29130,67667,56,0
,2,29131,67669,56,0
,2,29132,67671,56,0
,2,29133,67673,56,0
,2,29134,67675,56,0
,2,29135,67677,56,0
,2,29136,67679,56,0
,2,29137,67681,56,0
,2,29138,67683,56,0
,2,29139,67685,56,0
,2,29140,67687,56,0
,2,29141,67689,56,0
,2,29142,67691,56,0
,2,29143,67693,56,0
,2,29144,67695,56,0
,2,29145,67697,56,0
,2,29146,67699,56,0
,2,29147,67701,56,0
,2,29148,67703,56,0
,2,29149,67705,56,0
,2,29150,67707,56,0
,2,29151,67709,56,0
,2,29152,67711,56,0
,2,29153,67713,56,0
,2,29154,67715,56,0
,2,29155,67717,56,0
,2,29156,67719,56,0
,2,29157,67721,56,0
,2,29158,67723,56,0
,2,29159,67725,56,0
,2,29160,67727,56,0
,2,29161,67729,56,0
,2,29162,67731,56,0
,2,29163,67733,56,0
,2,29164,67735,56,0
,2,29165,67737,56,0
,2,29166,67739,56,0
,2,29167,67741,56,0
,2,29168,67743,56,0
,2,29169,67745,56,0
,2,29170,67747,56,0
,2,29171,67749,56,0
,2,29172,67751,56,0
,2,29173,67753,56,0
,2,29174,67755,56,0
,2,29175,67757,56,0
,2,29176,67759,56,0
,2,29177,67761,56,0
,2,29178,67763,56,0
,2,29179,67765,56,0
,2,29180,67767,56,0
,2,29181,67769,56,0
,2,29182,67771,56,0
,2,29183,67773,56,0
,2,29184,67775,56,0
,2,29185,67777,56,0
,2,29186,67779,56,0
,2,29187,67781,56,0
,2,29188,67783,56,0
,2,29189,67785,56,0
,2,29190,67787,56,0
,2,29191,67789,56,0
,2,29192,67791,56,0
,2,29193,67793,56,0
,2,29194,67795,56,0
,2,29195,67797,56,0
,2,29196,67799,56,0
,2,29197,67801,56,0
,2,29198,67803,56,0
,2,29199,67805,56,0
,2,29200,67807,56,0
,2,29201,67809,56,0
,2,29202,67811,56,0
,2,29203,67813,56,0
,2,29204,67815,56,0
,2,29205,67817,56,0
,2,29206,67819,56,0
,2,29207,67821,56,0
,2,29208,67823,56,0
,2,29209,67825,56,0
,2,29210,67827,56,0
,2,29211,67829,56,0
,2,29212,67831,56,0
,2,29213,67833,56,0
,2,29214,67835,56,0
,2,29215,67837,56,0
,2,29216,67839,56,0
,2,29217,67841,56,0
,2,29218,67843,56,0
,2,29219,67845,56,0
,2,29220,67847,56,0
,2,29221,67849,56,0
,2,29222,67851,56,0
,2,29223,67853,56,0
,2,29224,67855,56,0
,2,29225,67857,56,0
,2,29226,67859,56,0
,2,29227,67861,56,0
,2,29228,67863,56,0
,2,29229,67865,56,0
,2,29230,67867,56,0
,2,29231,67869,56,0
,2,29232,67871,56,0
,2,29233,67873,56,0
,2,29234,67875,56,0
,2,29235,67877,56,0
,2,29236,67879,56,0
,2,29237,67881,56,0
,2,29238,67883,56,0
,2,29239,67885,56,0
,2,29240,67887,56,0
,2,29241,67889,56,0
,2,29242,67891,56,0
,2,29243,67893,56,0
,2,29244,67895,56,0
,2,29245,67897,56,0
,2,29246,67899,56,0
,2,29247,67901,56,0
,2,29248,67903,56,0
,2,29249,67905,56,0
,2,29250,67907,56,0
,2,29251,67909,56,0
,2,29252,67911,56,0
,2,29253,67913,56,0
,2,29254,67915,56,0
,2,29255,67917,56,0
,2,29256,67919,56,0
,2,29257,67921,56,0
,2,29258,67923,56,0
,2,29259,67925,56,0
,2,29260,67927,56,0
,2,29261,67929,56,0
,2,29262,67931,56,0
,2,29263,67933,56,0
,2,29264,67935,56,0
,2,29265,67937,56,0
,2,29266,67939,56,0
,2,29267,67941,56,0
,2,29268,67943,56,0
,2,29269,67945,56,0
,2,29270,67947,56,0
,2,29271,67949,56,0
,2,29272,67951,56,0
,2,29273,67953,56,0
,2,29274,67955,56,0
,2,29275,67957,56,0
,2,29276,67959,56,0
,2,29277,67961,56,0
,2,29278,67963,56,0
,2,29279,67965,56,0
,2,29280,67967,56,0
,2,29281,67969,56,0
,2,29282,67971,56,0
,2,29283,67973,56,0
,2,29284,67975,56,0
,2,29285,67977,56,0
,2,29286,67979,56,0
,2,29287,67981,56,0
,2,29288,67983,56,0
,2,29289,67985,56,0
,2,29290,67987,56,0
,2,29291,67989,56,0
,2,29292,67991,56,0
,2,29293,67993,56,0
,2,29294,67995,56,0
,2,29295,67997,56,0
,2,29296,67999,56,0
,2,29297,68001,56,0
,2,29298,68003,56,0
,2,29299,68005,56,0
,2,29300,68007,56,0
,2,29301,68009,56,0
,2,29302,68011,56,0
,2,29303,68013,56,0
,2,29304,68015,56,0
,2,29305,68017,56,0
,2,29306,68019,56,0
,2,29307,68021,56,0
,2,29308,68023,56,0
,2,29309,68025,56,0
,2,29310,68027,56,0
,2,29311,68029,56,0
,2,29312,68031,56,0
,2,29313,68033,56,0
,2,29314,68035,56,0
,2,29315,68037,56,0
,2,29316,68039,56,0
,2,29317,68041,56,0
,2,29318,68043,56,0
,2,29319,68045,56,0
,2,29320,68047,56,0
,2,29321,68049,56,0
,2,29322,68051,56,0
,2,29323,68053,56,0
,2,29324,68055,56,0
,2,29325,68057,56,0
,2,29326,68059,56,0
,2,29327,68061,56,0
,2,29328,68063,56,0
,2,29329,68065,56,0
,2,29330,68067,56,0
,2,29331,68069,56,0
,2,29332,68071,56,0
,2,29333,68073,56,0
,2,29334,68075,56,0
,2,29335,68077,56,0
,2,29336,68079,56,0
,2,29337,68081,56,0
,2,29338,68083,56,0
,2,29339,68085,56,0
,2,29340,68087,56,0
,2,29341,68089,56,0
,2,29342,68091,56,0
,2,29343,68093,56,0
,2,29344,68095,56,0
,2,29345,68097,56,0
,2,29346,68099,56,0
,2,29347,68101,56,0
,2,29348,68103,56,0
,2,29349,68105,56,0
,2,29350,68107,56,0
,2,29351,68109,56,0
,2,29352,68111,56,0
,2,29353,68113,56,0
,2,29354,68115,56,0
,2,29355,68117,56,0
,2,29356,68119,56,0
,2,29357,68121,56,0
,2,29358,68123,56,0
,2,29359,68125,56,0
,2,29360,68127,56,0
,2,29361,68129,56,0
,2,29362,68131,56,0
,2,29363,68133,56,0
,2,29364,68135,56,0
,2,29365,68137,56,0
,2,29366,68139,56,0
,2,29367,68141,56,0
,2,29368,68143,56,0
,2,29369,68145,56,0
,2,29370,68147,56,0
,2,29371,68149,56,0
,2,29372,68151,56,0
,2,29373,68153,56,0
,2,29374,68155,56,0
,2,29375,68157,56,0
,2,29376,68159,56,0
,2,29377,68161,56,0
,2,29378,68163,56,0
,2,29379,68165,56,0
,2,29380,68167,56,0
,2,29381,68169,56,0
,2,29382,68171,56,0
,2,29383,68173,56,0
,2,29384,68175,56,0
,2,29385,68177,56,0
,2,29386,68179,56,0
,2,29387,68181,56,0
,2,29388,68183,56,0
,2,29389,68185,56,0
,2,29390,68187,56,0
,2,29391,68189,56,0
,2,29392,68191,56,0
,2,29393,68193,56,0
,2,29394,68195,56,0
,2,29395,68197,56,0
,2,29396,68199,56,0
,2,29397,68201,56,0
,2,29398,68203,56,0
,2,29399,68205,56,0
,2,29400,68207,56,0
,2,29401,68209,56,0
,2,29402,68211,56,0
,2,29403,68213,56,0
,2,29404,68215,56,0
,2,29405,68217,56,0
,2,29406,68219,56,0
,2,29407,68221,56,0
,2,29408,68223,56,0
,2,29409,68225,56,0
,2,29410,68227,56,0
,2,29411,68229,56,0
,2,29412,68231,56,0
,2,29413,68233,56,0
,2,29414,68235,56,0
,2,29415,68237,56,0
,2,29416,68239,56,0
,2,29417,68241,56,0
,2,29418,68243,56,0
,2,29419,68245,56,0
,2,29420,68247,56,0
,2,29421,68249,56,0
,2,29422,68251,56,0
,2,29423,68253,56,0
,2,29424,68255,56,0
,2,29425,68257,56,0
,2,29426,68259,56,0
,2,29427,68261,56,0
,2,29428,68263,56,0
,2,29429,68265,56,0
,2,29430,68267,56,0
,2,29431,68269,56,0
,2,29432,68271,56,0
,2,29433,68273,56,0
,2,29434,68275,56,0
,2,29435,68277,56,0
,2,29436,68279,56,0
,2,29437,68281,56,0
,2,29438,68283,56,0
,2,29439,68285,56,0
,2,29440,68287,56,0
,2,29441,68289,56,0
,2,29442,68291,56,0
,2,29443,68293,56,0
,2,29444,68295,56,0
,2,29445,68297,56,0
,2,29446,68299,56,0
,2,29447,68301,56,0
,2,29448,68303,56,0
,2,29449,68305,56,0
,2,29450,68307,56,0
,2,29451,68309,56,0
,2,29452,68311,56,0
,2,29453,68313,56,0
,2,29454,68315,56,0
,2,29455,68317,56,0
,2,29456,68319,56,0
,2,29457,68321,56,0
,2,29458,68323,56,0
,2,29459,68325,56,0
,2,29460,68327,56,0
,2,29461,68329,56,0
,2,29462,68331,56,0
,2,29463,68333,56,0
,2,29464,68335,56,0
,2,29465,68337,56,0
,2,29466,68339,56,0
,2,29467,68341,56,0
,2,29468,68343,56,0
,2,29469,68345,56,0
,2,29470,68347,56,0
,2,29471,68349,56,0
,2,29472,68351,56,0
,2,29473,68353,56,0
,2,29474,68355,56,0
,2,29475,68357,56,0
,2,29476,68359,56,0
,2,29477,68361,56,0
,2,29478,68363,56,0
,2,29479,68365,56,0
,2,29480,68367,56,0
,2,29481,68369,56,0
,2,29482,68371,56,0
,2,29483,68373,56,0
,2,29484,68375,56,0
,2,29485,68377,56,0
,2,29486,68379,56,0
,2,29487,68381,56,0
,2,29488,68383,56,0
,2,29489,68385,56,0
,2,29490,68387,56,0
,2,29491,68389,56,0
,2,29492,68391,56,0
,2,29493,68393,56,0
,2,29494,68395,56,0
,2,29495,68397,56,0
,2,29496,68399,56,0
,2,29497,68401,56,0
,2,29498,68403,56,0
,2,29499,68405,56,0
,2,29500,68407,56,0
,2,29501,68409,56,0
,2,29502,68411,56,0
,2,29503,68413,56,0
,2,29504,68415,56,0
,2,29505,68417,56,0
,2,29506,68419,56,0
,2,29507,68421,56,0
,2,29508,68423,56,0
,2,29509,68425,56,0
,2,29510,68427,56,0
,2,29511,68429,56,0
,2,29512,68431,56,0
,2,29513,68433,56,0
,2,29514,68435,56,0
,2,29515,68437,56,0
,2,29516,68439,56,0
,2,29517,68441,56,0
,2,29518,68443,56,0
,2,29519,68445,56,0
,2,29520,68447,56,0
,2,29521,68449,56,0
,2,29522,68451,56,0
,2,29523,68453,56,0
,2,29524,68455,56,0
,2,29525,68457,56,0
,2,29526,68459,56,0
,2,29527,68461,56,0
,2,29528,68463,56,0
,2,29529,68465,56,0
,2,29530,68467,56,0
,2,29531,68469,56,0
,2,29532,68471,56,0
,2,29533,68473,56,0
,2,29534,68475,56,0
,2,29535,68477,56,0
,2,29536,68479,56,0
,2,29537,68481,56,0
,2,29538,68483,56,0
,2,29539,68485,56,0
,2,29540,68487,56,0
,2,29541,68489,56,0
,2,29542,68491,56,0
,2,29543,68493,56,0
,2,29544,68495,56,0
,2,29545,68497,56,0
,2,29546,68499,56,0
,2,29547,68501,56,0
,2,29548,68503,56,0
,2,29549,68505,56,0
,2,29550,68507,56,0
,2,29551,68509,56,0
,2,29552,68511,56,0
,2,29553,68513,56,0
,2,29554,68515,56,0
,2,29555,68517,56,0
,2,29556,68519,56,0
,2,29557,68521,56,0
,2,29558,68523,56,0
,2,29559,68525,56,0
,2,29560,68527,56,0
,2,29561,68529,56,0
,2,29562,68531,56,0
,2,29563,68533,56,0
,2,29564,68535,56,0
,2,29565,68537,56,0
,2,29566,68539,56,0
,2,29567,68541,56,0
,2,29568,68543,56,0
,2,29569,68545,56,0
,2,29570,68547,56,0
,2,29571,68549,56,0
,2,29572,68551,56,0
,2,29573,68553,56,0
,2,29574,68555,56,0
,2,29575,68557,56,0
,2,29576,68559,56,0
,2,29577,68561,56,0
,2,29578,68563,56,0
,2,29579,68565,56,0
,2,29580,68567,56,0
,2,29581,68569,56,0
,2,29582,68571,56,0
,2,29583,68573,56,0
,2,29584,68575,56,0
,2,29585,68577,56,0
,2,29586,68579,56,0
,2,29587,68581,56,0
,2,29588,68583,56,0
,2,29589,68585,56,0
,2,29590,68587,56,0
,2,29591,68589,56,0
,2,29592,68591,56,0
,2,29593,68593,56,0
,2,29594,68595,56,0
,2,29595,68597,56,0
,2,29596,68599,56,0
,2,29597,68601,56,0
,2,29598,68603,56,0
,2,29599,68605,56,0
,2,29600,68607,56,0
,2,29601,68609,56,0
,2,29602,68611,56,0
,2,29603,68613,56,0
,2,29604,68615,56,0
,2,29605,68617,56,0
,2,29606,68619,56,0
,2,29607,68621,56,0
,2,29608,68623,56,0
,2,29609,68625,56,0
,2,29610,68627,56,0
,2,29611,68629,56,0
,2,29612,68631,56,0
,2,29613,68633,56,0
,2,29614,68635,56,0
,2,29615,68637,56,0
,2,29616,68639,56,0
,2,29617,68641,56,0
,2,29618,68643,56,0
,2,29619,68645,56,0
,2,29620,68647,56,0
,2,29621,68649,56,0
,2,29622,68651,56,0
,2,29623,68653,56,0
,2,29624,68655,56,0
,2,29625,68657,56,0
,2,29626,68659,56,0
,2,29627,68661,56,0
,2,29628,68663,56,0
,2,29629,68665,56,0
,2,29630,68667,56,0
,2,29631,68669,56,0
,2,29632,68671,56,0
,2,29633,68673,56,0
,2,29634,68675,56,0
,2,29635,68677,56,0
,2,29636,68679,56,0
,2,29637,68681,56,0
,2,29638,68683,56,0
,2,29639,68685,56,0
,2,29640,68687,56,0
,2,29641,68689,56,0
,2,29642,68691,56,0
,2,29643,68693,56,0
,2,29644,68695,56,0
,2,29645,68697,56,0
,2,29646,68699,56,0
,2,29647,68701,56,0
,2,29648,68703,56,0
,2,29649,68705,56,0
,2,29650,68707,56,0
,2,29651,68709,56,0
,2,29652,68711,56,0
,2,29653,68713,56,0
,2,29654,68715,56,0
,2,29655,68717,56,0
,2,29656,68719,56,0
,2,29657,68721,56,0
,2,29658,68723,56,0
,2,29659,68725,56,0
,2,29660,68727,56,0
,2,29661,68729,56,0
,2,29662,68731,56,0
,2,29663,68733,56,0
,2,29664,68735,56,0
,2,29665,68737,56,0
,2,29666,68739,56,0
,2,29667,68741,56,0
,2,29668,68743,56,0
,2,29669,68745,56,0
,2,29670,68747,56,0
,2,29671,68749,56,0
,2,29672,68751,56,0
,2,29673,68753,56,0
,2,29674,68755,56,0
,2,29675,68757,56,0
,2,29676,68759,56,0
,2,29677,68761,56,0
,2,29678,68763,56,0
,2,29679,68765,56,0
,2,29680,68767,56,0
,2,29681,68769,56,0
,2,29682,68771,56,0
,2,29683,68773,56,0
,2,29684,68775,56,0
,2,29685,68777,56,0
,2,29686,68779,56,0
,2,29687,68781,56,0
,2,29688,68783,56,0
,2,29689,68785,56,0
,2,29690,68787,56,0
,2,29691,68789,56,0
,2,29692,68791,56,0
,2,29693,68793,56,0
,2,29694,68795,56,0
,2,29695,68797,56,0
,2,29696,68799,56,0
,2,29697,68801,56,0
,2,29698,68803,56,0
,2,29699,68805,56,0
,2,29700,68807,56,0
,2,29701,68809,56,0
,2,29702,68811,56,0
,2,29703,68813,56,0
,2,29704,68815,56,0
,2,29705,68817,56,0
,2,29706,68819,56,0
,2,29707,68821,56,0
,2,29708,68823,56,0
,2,29709,68825,56,0
,2,29710,68827,56,0
,2,29711,68829,56,0
,2,29712,68831,56,0
,2,29713,68833,56,0
,2,29714,68835,56,0
,2,29715,68837,56,0
,2,29716,68839,56,0
,2,29717,68841,56,0
,2,29718,68843,56,0
,2,29719,68845,56,0
,2,29720,68847,56,0
,2,29721,68849,56,0
,2,29722,68851,56,0
,2,29723,68853,56,0
,2,29724,68855,56,0
,2,29725,68857,56,0
,2,29726,68859,56,0
,2,29727,68861,56,0
,2,29728,68863,56,0
,2,29729,68865,56,0
,2,29730,68867,56,0
,2,29731,68869,56,0
,2,29732,68871,56,0
,2,29733,68873,56,0
,2,29734,68875,56,0
,2,29735,68877,56,0
,2,29736,68879,56,0
,2,29737,68881,56,0
,2,29738,68883,56,0
,2,29739,68885,56,0
,2,29740,68887,56,0
,2,29741,68889,56,0
,2,29742,68891,56,0
,2,29743,68893,56,0
,2,29744,68895,56,0
,2,29745,68897,56,0
,2,29746,68899,56,0
,2,29747,68901,56,0
,2,29748,68903,56,0
,2,29749,68905,56,0
,2,29750,68907,56,0
,2,29751,68909,56,0
,2,29752,68911,56,0
,2,29753,68913,56,0
,2,29754,68915,56,0
,2,29755,68917,56,0
,2,29756,68919,56,0
,2,29757,68921,56,0
,2,29758,68923,56,0
,2,29759,68925,56,0
,2,29760,68927,56,0
,2,29761,68929,56,0
,2,29762,68931,56,0
,2,29763,68933,56,0
,2,29764,68935,56,0
,2,29765,68937,56,0
,2,29766,68939,56,0
,2,29767,68941,56,0
,2,29768,68943,56,0
,2,29769,68945,56,0
,2,29770,68947,56,0
,2,29771,68949,56,0
,2,29772,68951,56,0
,2,29773,68953,56,0
,2,29774,68955,56,0
,2,29775,68957,56,0
,2,29776,68959,56,0
,2,29777,68961,56,0
,2,29778,68963,56,0
,2,29779,68965,56,0
,2,29780,68967,56,0
,2,29781,68969,56,0
,2,29782,68971,56,0
,2,29783,68973,56,0
,2,29784,68975,56,0
,2,29785,68977,56,0
,2,29786,68979,56,0
,2,29787,68981,56,0
,2,29788,68983,56,0
,2,29789,68985,56,0
,2,29790,68987,56,0
,2,29791,68989,56,0
,2,29792,68991,56,0
,2,29793,68993,56,0
,2,29794,68995,56,0
,2,29795,68997,56,0
,2,29796,68999,56,0
,2,29797,69001,56,0
,2,29798,69003,56,0
,2,29799,69005,56,0
,2,29800,69007,56,0
,2,29801,69009,56,0
,2,29802,69011,56,0
,2,29803,69013,56,0
,2,29804,69015,56,0
,2,29805,69017,56,0
,2,29806,69019,56,0
,2,29807,69021,56,0
,2,29808,69023,56,0
,2,29809,69025,56,0
,2,29810,69027,56,0
,2,29811,69029,56,0
,2,29812,69031,56,0
,2,29813,69033,56,0
,2,29814,69035,56,0
,2,29815,69037,56,0
,2,29816,69039,56,0
,2,29817,69041,56,0
,2,29818,69043,56,0
,2,29819,69045,56,0
,2,29820,69047,56,0
,2,29821,69049,56,0
,2,29822,69051,56,0
,2,29823,69053,56,0
,2,29824,69055,56,0
,2,29825,69057,56,0
,2,29826,69059,56,0
,2,29827,69061,56,0
,2,29828,69063,56,0
,2,29829,69065,56,0
,2,29830,69067,56,0
,2,29831,69069,56,0
,2,29832,69071,56,0
,2,29833,69073,56,0
,2,29834,69075,56,0
,2,29835,69077,56,0
,2,29836,69079,56,0
,2,29837,69081,56,0
,2,29838,69083,56,0
,2,29839,69085,56,0
,2,29840,69087,56,0
,2,29841,69089,56,0
,2,29842,69091,56,0
,2,29843,69093,56,0
,2,29844,69095,56,0
,2,29845,69097,56,0
,2,29846,69099,56,0
,2,29847,69101,56,0
,2,29848,69103,56,0
,2,29849,69105,56,0
,2,29850,69107,56,0
,2,29851,69109,56,0
,2,29852,69111,56,0
,2,29853,69113,56,0
,2,29854,69115,56,0
,2,29855,69117,56,0
,2,29856,69119,56,0
,2,29857,69121,56,0
,2,29858,69123,56,0
,2,29859,69125,56,0
,2,29860,69127,56,0
,2,29861,69129,56,0
,2,29862,69131,56,0
,2,29863,69133,56,0
,2,29864,69135,56,0
,2,29865,69137,56,0
,2,29866,69139,56,0
,2,29867,69141,56,0
,2,29868,69143,56,0
,2,29869,69145,56,0
,2,29870,69147,56,0
,2,29871,69149,56,0
,2,29872,69151,56,0
,2,29873,69153,56,0
,2,29874,69155,56,0
,2,29875,69157,56,0
,2,29876,69159,56,0
,2,29877,69161,56,0
,2,29878,69163,56,0
,2,29879,69165,56,0
,2,29880,69167,56,0
,2,29881,69169,56,0
,2,29882,69171,56,0
,2,29883,69173,56,0
,2,29884,69175,56,0
,2,29885,69177,56,0
,2,29886,69179,56,0
,2,29887,69181,56,0
,2,29888,69183,56,0
,2,29889,69185,56,0
,2,29890,69187,56,0
,2,29891,69189,56,0
,2,29892,69191,56,0
,2,29893,69193,56,0
,2,29894,69195,56,0
,2,29895,69197,56,0
,2,29896,69199,56,0
,2,29897,69201,56,0
,2,29898,69203,56,0
,2,29899,69205,56,0
,2,29900,69207,56,0
,2,29901,69209,56,0
,2,29902,69211,56,0
,2,29903,69213,56,0
,2,29904,69215,56,0
,2,29905,69217,56,0
,2,29906,69219,56,0
,2,29907,69221,56,0
,2,29908,69223,56,0
,2,29909,69225,56,0
,2,29910,69227,56,0
,2,29911,69229,56,0
,2,29912,69231,56,0
,2,29913,69233,56,0
,2,29914,69235,56,0
,2,29915,69237,56,0
,2,29916,69239,56,0
,2,29917,69241,56,0
,2,29918,69243,56,0
,2,29919,69245,56,0
,2,29920,69247,56,0
,2,29921,69249,56,0
,2,29922,69251,56,0
,2,29923,69253,56,0
,2,29924,69255,56,0
,2,29925,69257,56,0
,2,29926,69259,56,0
,2,29927,69261,56,0
,2,29928,69263,56,0
,2,29929,69265,56,0
,2,29930,69267,56,0
,2,29931,69269,56,0
,2,29932,69271,56,0
,2,29933,69273,56,0
,2,29934,69275,56,0
,2,29935,69277,56,0
,2,29936,69279,56,0
,2,29937,69281,56,0
,2,29938,69283,56,0
,2,29939,69285,56,0
,2,29940,69287,56,0
,2,29941,69289,56,0
,2,29942,69291,56,0
,2,29943,69293,56,0
,2,29944,69295,56,0
,2,29945,69297,56,0
,2,29946,69299,56,0
,2,29947,69301,56,0
,2,29948,69303,56,0
,2,29949,69305,56,0
,2,29950,69307,56,0
,2,29951,69309,56,0
,2,29952,69311,56,0
,2,29953,69313,56,0
,2,29954,69315,56,0
,2,29955,69317,56,0
,2,29956,69319,56,0
,2,29957,69321,56,0
,2,29958,69323,56,0
,2,29959,69325,56,0
,2,29960,69327,56,0
,2,29961,69329,56,0
,2,29962,69331,56,0
,2,29963,69333,56,0
,2,29964,69335,56,0
,2,29965,69337,56,0
,2,29966,69339,56,0
,2,29967,69341,56,0
,2,29968,69343,56,0
,2,29969,69345,56,0
,2,29970,69347,56,0
,2,29971,69349,56,0
,2,29972,69351,56,0
,2,29973,69353,56,0
,2,29974,69355,56,0
,2,29975,69357,56,0
,2,29976,69359,56,0
,2,29977,69361,56,0
,2,29978,69363,56,0
,2,29979,69365,56,0
,2,29980,69367,56,0
,2,29981,69369,56,0
,2,29982,69371,56,0
,2,29983,69373,56,0
,2,29984,69375,56,0
,2,29985,69377,56,0
,2,29986,69379,56,0
,2,29987,69381,56,0
,2,29988,69383,56,0
,2,29989,69385,56,0
,2,29990,69387,56,0
,2,29991,69389,56,0
,2,29992,69391,56,0
,2,29993,69393,56,0
,2,29994,69395,56,0
,2,29995,69397,56,0
,2,29996,69399,56,0
,2,29997,69401,56,0
,2,29998,69403,56,0
,2,29999,69405,56,0
,2,30000,69407,56,0
,2,30001,69409,56,0
,2,30002,69411,56,0
,2,30003,69413,56,0
,2,30004,69415,56,0
,2,30005,69417,56,0
,2,30006,69419,56,0
,2,30007,69421,56,0
,2,30008,69423,56,0
,2,30009,69425,56,0
,2,30010,69427,56,0
,2,30011,69429,56,0
,2,30012,69431,56,0
,2,30013,69433,56,0
,2,30014,69435,56,0
,2,30015,69437,56,0
,2,30016,69439,56,0
,2,30017,69441,56,0
,2,30018,69443,56,0
,2,30019,69445,56,0
,2,30020,69447,56,0
,2,30021,69449,56,0
,2,30022,69451,56,0
,2,30023,69453,56,0
,2,30024,69455,56,0
,2,30025,69457,56,0
,2,30026,69459,56,0
,2,30027,69461,56,0
,2,30028,69463,56,0
,2,30029,69465,56,0
,2,30030,69467,56,0
,2,30031,69469,56,0
,2,30032,69471,56,0
,2,30033,69473,56,0
,2,30034,69475,56,0
,2,30035,69477,56,0
,2,30036,69479,56,0
,2,30037,69481,56,0
,2,30038,69483,56,0
,2,30039,69485,56,0
,2,30040,69487,56,0
,2,30041,69489,56,0
,2,30042,69491,56,0
,2,30043,69493,56,0
,2,30044,69495,56,0
,2,30045,69497,56,0
,2,30046,69499,56,0
,2,30047,69501,56,0
,2,30048,69503,56,0
,2,30049,69505,56,0
,2,30050,69507,56,0
,2,30051,69509,56,0
,2,30052,69511,56,0
,2,30053,69513,56,0
,2,30054,69515,56,0
,2,30055,69517,56,0
,2,30056,69519,56,0
,2,30057,69521,56,0
,2,30058,69523,56,0
,2,30059,69525,56,0
,2,30060,69527,56,0
,2,30061,69529,56,0
,2,30062,69531,56,0
,2,30063,69533,56,0
,2,30064,69535,56,0
,2,30065,69537,56,0
,2,30066,69539,56,0
,2,30067,69541,56,0
,2,30068,69543,56,0
,2,30069,69545,56,0
,2,30070,69547,56,0
,2,30071,69549,56,0
,2,30072,69551,56,0
,2,30073,69553,56,0
,2,30074,69555,56,0
,2,30075,69557,56,0
,2,30076,69559,56,0
,2,30077,69561,56,0
,2,30078,69563,56,0
,2,30079,69565,56,0
,2,30080,69567,56,0
,2,30081,69569,56,0
,2,30082,69571,56,0
,2,30083,69573,56,0
,2,30084,69575,56,0
,2,30085,69577,56,0
,2,30086,69579,56,0
,2,30087,69581,56,0
,2,30088,69583,56,0
,2,30089,69585,56,0
,2,30090,69587,56,0
,2,30091,69589,56,0
,2,30092,69591,56,0
,2,30093,69593,56,0
,2,30094,69595,56,0
,2,30095,69597,56,0
,2,30096,69599,56,0
,2,30097,69601,56,0
,2,30098,69603,56,0
,2,30099,69605,56,0
,2,30100,69607,56,0
,2,30101,69609,56,0
,2,30102,69611,56,0
,2,30103,69613,56,0
,2,30104,69615,56,0
,2,30105,69617,56,0
,2,30106,69619,56,0
,2,30107,69621,56,0
,2,30108,69623,56,0
,2,30109,69625,56,0
,2,30110,69627,56,0
,2,30111,69629,56,0
,2,30112,69631,56,0
,2,30113,69633,56,0
,2,30114,69635,56,0
,2,30115,69637,56,0
,2,30116,69639,56,0
,2,30117,69641,56,0
,2,30118,69643,56,0
,2,30119,69645,56,0
,2,30120,69647,56,0
,2,30121,69649,56,0
,2,30122,69651,56,0
,2,30123,69653,56,0
,2,30124,69655,56,0
,2,30125,69657,56,0
,2,30126,69659,56,0
,2,30127,69661,56,0
,2,30128,69663,56,0
,2,30129,69665,56,0
,2,30130,69667,56,0
,2,30131,69669,56,0
,2,30132,69671,56,0
,2,30133,69673,56,0
,2,30134,69675,56,0
,2,30135,69677,56,0
,2,30136,69679,56,0
,2,30137,69681,56,0
,2,30138,69683,56,0
,2,30139,69685,56,0
,2,30140,69687,56,0
,2,30141,69689,56,0
,2,30142,69691,56,0
,2,30143,69693,56,0
,2,30144,69695,56,0
,2,30145,69697,56,0
,2,30146,69699,56,0
,2,30147,69701,56,0
,2,30148,69703,56,0
,2,30149,69705,56,0
,2,30150,69707,56,0
,2,30151,69709,56,0
,2,30152,69711,56,0
,2,30153,69713,56,0
,2,30154,69715,56,0
,2,30155,69717,56,0
,2,30156,69719,56,0
,2,30157,69721,56,0
,2,30158,69723,56,0
,2,30159,69725,56,0
,2,30160,69727,56,0
,2,30161,69729,56,0
,2,30162,69731,56,0
,2,30163,69733,56,0
,2,30164,69735,56,0
,2,30165,69737,56,0
,2,30166,69739,56,0
,2,30167,69741,56,0
,2,30168,69743,56,0
,2,30169,69745,56,0
,2,30170,69747,56,0
,2,30171,69749,56,0
,2,30172,69751,56,0
,2,30173,69753,56,0
,2,30174,69755,56,0
,2,30175,69757,56,0
,2,30176,69759,56,0
,2,30177,69761,56,0
,2,30178,69763,56,0
,2,30179,69765,56,0
,2,30180,69767,56,0
,2,30181,69769,56,0
,2,30182,69771,56,0
,2,30183,69773,56,0
,2,30184,69775,56,0
,2,30185,69777,56,0
,2,30186,69779,56,0
,2,30187,69781,56,0
,2,30188,69783,56,0
,2,30189,69785,56,0
,2,30190,69787,56,0
,2,30191,69789,56,0
,2,30192,69791,56,0
,2,30193,69793,56,0
,2,30194,69795,56,0
,2,30195,69797,56,0
,2,30196,69799,56,0
,2,30197,69801,56,0
,2,30198,69803,56,0
,2,30199,69805,56,0
,2,30200,69807,56,0
,2,30201,69809,56,0
,2,30202,69811,56,0
,2,30203,69813,56,0
,2,30204,69815,56,0
,2,30205,69817,56,0
,2,30206,69819,56,0
,2,30207,69821,56,0
,2,30208,69823,56,0
,2,30209,69825,56,0
,2,30210,69827,56,0
,2,30211,69829,56,0
,2,30212,69831,56,0
,2,30213,69833,56,0
,2,30214,69835,56,0
,2,30215,69837,56,0
,2,30216,69839,56,0
,2,30217,69841,56,0
,2,30218,69843,56,0
,2,30219,69845,56,0
,2,30220,69847,56,0
,2,30221,69849,56,0
,2,30222,69851,56,0
,2,30223,69853,56,0
,2,30224,69855,56,0
,2,30225,69857,56,0
,2,30226,69859,56,0
,2,30227,69861,56,0
,2,30228,69863,56,0
,2,30229,69865,56,0
,2,30230,69867,56,0
,2,30231,69869,56,0
,2,30232,69871,56,0
,2,30233,69873,56,0
,2,30234,69875,56,0
,2,30235,69877,56,0
,2,30236,69879,56,0
,2,30237,69881,56,0
,2,30238,69883,56,0
,2,30239,69885,56,0
,2,30240,69887,56,0
,2,30241,69889,56,0
,2,30242,69891,56,0
,2,30243,69893,56,0
,2,30244,69895,56,0
,2,30245,69897,56,0
,2,30246,69899,56,0
,2,30247,69901,56,0
,2,30248,69903,56,0
,2,30249,69905,56,0
,2,30250,69907,56,0
,2,30251,69909,56,0
,2,30252,69911,56,0
,2,30253,69913,56,0
,2,30254,69915,56,0
,2,30255,69917,56,0
,2,30256,69919,56,0
,2,30257,69921,56,0
,2,30258,69923,56,0
,2,30259,69925,56,0
,2,30260,69927,56,0
,2,30261,69929,56,0
,2,30262,69931,56,0
,2,30263,69933,56,0
,2,30264,69935,56,0
,2,30265,69937,56,0
,2,30266,69939,56,0
,2,30267,69941,56,0
,2,30268,69943,56,0
,2,30269,69945,56,0
,2,30270,69947,56,0
,2,30271,69949,56,0
,2,30272,69951,56,0
,2,30273,69953,56,0
,2,30274,69955,56,0
,2,30275,69957,56,0
,2,30276,69959,56,0
,2,30277,69961,56,0
,2,30278,69963,56,0
,2,30279,69965,56,0
,2,30280,69967,56,0
,2,30281,69969,56,0
,2,30282,69971,56,0
,2,30283,69973,56,0
,2,30284,69975,56,0
,2,30285,69977,56,0
,2,30286,69979,56,0
,2,30287,69981,56,0
,2,30288,69983,56,0
,2,30289,69985,56,0
,2,30290,69987,56,0
,2,30291,69989,56,0
,2,30292,69991,56,0
,2,30293,69993,56,0
,2,30294,69995,56,0
,2,30295,69997,56,0
,2,30296,69999,56,0
,2,30297,70001,56,0
,2,30298,70003,56,0
,2,30299,70005,56,0
,2,30300,70007,56,0
,2,30301,70009,56,0
,2,30302,70011,56,0
,2,30303,70013,56,0
,2,30304,70015,56,0
,2,30305,70017,56,0
,2,30306,70019,56,0
,2,30307,70021,56,0
,2,30308,70023,56,0
,2,30309,70025,56,0
,2,30310,70027,56,0
,2,30311,70029,56,0
,2,30312,70031,56,0
,2,30313,70033,56,0
,2,30314,70035,56,0
,2,30315,70037,56,0
,2,30316,70039,56,0
,2,30317,70041,56,0
,2,30318,70043,56,0
,2,30319,70045,56,0
,2,30320,70047,56,0
,2,30321,70049,56,0
,2,30322,70051,56,0
,2,30323,70053,56,0
,2,30324,70055,56,0
,2,30325,70057,56,0
,2,30326,70059,56,0
,2,30327,70061,56,0
,2,30328,70063,56,0
,2,30329,70065,56,0
,2,30330,70067,56,0
,2,30331,70069,56,0
,2,30332,70071,56,0
,2,30333,70073,56,0
,2,30334,70075,56,0
,2,30335,70077,56,0
,2,30336,70079,56,0
,2,30337,70081,56,0
,2,30338,70083,56,0
,2,30339,70085,56,0
,2,30340,70087,56,0
,2,30341,70089,56,0
,2,30342,70091,56,0
,2,30343,70093,56,0
,2,30344,70095,56,0
,2,30345,70097,56,0
,2,30346,70099,56,0
,2,30347,70101,56,0
,2,30348,70103,56,0
,2,30349,70105,56,0
,2,30350,70107,56,0
,2,30351,70109,56,0
,2,30352,70111,56,0
,2,30353,70113,56,0
,2,30354,70115,56,0
,2,30355,70117,56,0
,2,30356,70119,56,0
,2,30357,70121,56,0
,2,30358,70123,56,0
,2,30359,70125,56,0
,2,30360,70127,56,0
,2,30361,70129,56,0
,2,30362,70131,56,0
,2,30363,70133,56,0
,2,30364,70135,56,0
,2,30365,70137,56,0
,2,30366,70139,56,0
,2,30367,70141,56,0
,2,30368,70143,56,0
,2,30369,70145,56,0
,2,30370,70147,56,0
,2,30371,70149,56,0
,2,30372,70151,56,0
,2,30373,70153,56,0
,2,30374,70155,56,0
,2,30375,70157,56,0
,2,30376,70159,56,0
,2,30377,70161,56,0
,2,30378,70163,56,0
,2,30379,70165,56,0
,2,30380,70167,56,0
,2,30381,70169,56,0
,2,30382,70171,56,0
,2,30383,70173,56,0
,2,30384,70175,56,0
,2,30385,70177,56,0
,2,30386,70179,56,0
,2,30387,70181,56,0
,2,30388,70183,56,0
,2,30389,70185,56,0
,2,30390,70187,56,0
,2,30391,70189,56,0
,2,30392,70191,56,0
,2,30393,70193,56,0
,2,30394,70195,56,0
,2,30395,70197,56,0
,2,30396,70199,56,0
,2,30397,70201,56,0
,2,30398,70203,56,0
,2,30399,70205,56,0
,2,30400,70207,56,0
,2,30401,70209,56,0
,2,30402,70211,56,0
,2,30403,70213,56,0
,2,30404,70215,56,0
,2,30405,70217,56,0
,2,30406,70219,56,0
,2,30407,70221,56,0
,2,30408,70223,56,0
,2,30409,70225,56,0
,2,30410,70227,56,0
,2,30411,70229,56,0
,2,30412,70231,56,0
,2,30413,70233,56,0
,2,30414,70235,56,0
,2,30415,70237,56,0
,2,30416,70239,56,0
,2,30417,70241,56,0
,2,30418,70243,56,0
,2,30419,70245,56,0
,2,30420,70247,56,0
,2,30421,70249,56,0
,2,30422,70251,56,0
,2,30423,70253,56,0
,2,30424,70255,56,0
,2,30425,70257,56,0
,2,30426,70259,56,0
,2,30427,70261,56,0
,2,30428,70263,56,0
,2,30429,70265,56,0
,2,30430,70267,56,0
,2,30431,70269,56,0
,2,30432,70271,56,0
,2,30433,70273,56,0
,2,30434,70275,56,0
,2,30435,70277,56,0
,2,30436,70279,56,0
,2,30437,70281,56,0
,2,30438,70283,56,0
,2,30439,70285,56,0
,2,30440,70287,56,0
,2,30441,70289,56,0
,2,30442,70291,56,0
,2,30443,70293,56,0
,2,30444,70295,56,0
,2,30445,70297,56,0
,2,30446,70299,56,0
,2,30447,70301,56,0
,2,30448,70303,56,0
,2,30449,70305,56,0
,2,30450,70307,56,0
,2,30451,70309,56,0
,2,30452,70311,56,0
,2,30453,70313,56,0
,2,30454,70315,56,0
,2,30455,70317,56,0
,2,30456,70319,56,0
,2,30457,70321,56,0
,2,30458,70323,56,0
,2,30459,70325,56,0
,2,30460,70327,56,0
,2,30461,70329,56,0
,2,30462,70331,56,0
,2,30463,70333,56,0
,2,30464,70335,56,0
,2,30465,70337,56,0
,2,30466,70339,56,0
,2,30467,70341,56,0
,2,30468,70343,56,0
,2,30469,70345,56,0
,2,30470,70347,56,0
,2,30471,70349,56,0
,2,30472,70351,56,0
,2,30473,70353,56,0
,2,30474,70355,56,0
,2,30475,70357,56,0
,2,30476,70359,56,0
,2,30477,70361,56,0
,2,30478,70363,56,0
,2,30479,70365,56,0
,2,30480,70367,56,0
,2,30481,70369,56,0
,2,30482,70371,56,0
,2,30483,70373,56,0
,2,30484,70375,56,0
,2,30485,70377,56,0
,2,30486,70379,56,0
,2,30487,70381,56,0
,2,30488,70383,56,0
,2,30489,70385,56,0
,2,30490,70387,56,0
,2,30491,70389,56,0
,2,30492,70391,56,0
,2,30493,70393,56,0
,2,30494,70395,56,0
,2,30495,70397,56,0
,2,30496,70399,56,0
,2,30497,70401,56,0
,2,30498,70403,56,0
,2,30499,70405,56,0
,2,30500,70407,56,0
,2,30501,70409,56,0
,2,30502,70411,56,0
,2,30503,70413,56,0
,2,30504,70415,56,0
,2,30505,70417,56,0
,2,30506,70419,56,0
,2,30507,70421,56,0
,2,30508,70423,56,0
,2,30509,70425,56,0
,2,30510,70427,56,0
,2,30511,70429,56,0
,2,30512,70431,56,0
,2,30513,70433,56,0
,2,30514,70435,56,0
,2,30515,70437,56,0
,2,30516,70439,56,0
,2,30517,70441,56,0
,2,30518,70443,56,0
,2,30519,70445,56,0
,2,30520,70447,56,0
,2,30521,70449,56,0
,2,30522,70451,56,0
,2,30523,70453,56,0
,2,30524,70455,56,0
,2,30525,70457,56,0
,2,30526,70459,56,0
,2,30527,70461,56,0
,2,30528,70463,56,0
,2,30529,70465,56,0
,2,30530,70467,56,0
,2,30531,70469,56,0
,2,30532,70471,56,0
,2,30533,70473,56,0
,2,30534,70475,56,0
,2,30535,70477,56,0
,2,30536,70479,56,0
,2,30537,70481,56,0
,2,30538,70483,56,0
,2,30539,70485,56,0
,2,30540,70487,56,0
,2,30541,70489,56,0
,2,30542,70491,56,0
,2,30543,70493,56,0
,2,30544,70495,56,0
,2,30545,70497,56,0
,2,30546,70499,56,0
,2,30547,70501,56,0
,2,30548,70503,56,0
,2,30549,70505,56,0
,2,30550,70507,56,0
,2,30551,70509,56,0
,2,30552,70511,56,0
,2,30553,70513,56,0
,2,30554,70515,56,0
,2,30555,70517,56,0
,2,30556,70519,56,0
,2,30557,70521,56,0
,2,30558,70523,56,0
,2,30559,70525,56,0
,2,30560,70527,56,0
,2,30561,70529,56,0
,2,30562,70531,56,0
,2,30563,70533,56,0
,2,30564,70535,56,0
,2,30565,70537,56,0
,2,30566,70539,56,0
,2,30567,70541,56,0
,2,30568,70543,56,0
,2,30569,70545,56,0
,2,30570,70547,56,0
,2,30571,70549,56,0
,2,30572,70551,56,0
,2,30573,70553,56,0
,2,30574,70555,56,0
,2,30575,70557,56,0
,2,30576,70559,56,0
,2,30577,70561,56,0
,2,30578,70563,56,0
,2,30579,70565,56,0
,2,30580,70567,56,0
,2,30581,70569,56,0
,2,30582,70571,56,0
,2,30583,70573,56,0
,2,30584,70575,56,0
,2,30585,70577,56,0
,2,30586,70579,56,0
,2,30587,70581,56,0
,2,30588,70583,56,0
,2,30589,70585,56,0
,2,30590,70587,56,0
,2,30591,70589,56,0
,2,30592,70591,56,0
,2,30593,70593,56,0
,2,30594,70595,56,0
,2,30595,70597,56,0
,2,30596,70599,56,0
,2,30597,70601,56,0
,2,30598,70603,56,0
,2,30599,70605,56,0
,2,30600,70607,56,0
,2,30601,70609,56,0
,2,30602,70611,56,0
,2,30603,70613,56,0
,2,30604,70615,56,0
,2,30605,70617,56,0
,2,30606,70619,56,0
,2,30607,70621,56,0
,2,30608,70623,56,0
,2,30609,70625,56,0
,2,30610,70627,56,0
,2,30611,70629,56,0
,2,30612,70631,56,0
,2,30613,70633,56,0
,2,30614,70635,56,0
,2,30615,70637,56,0
,2,30616,70639,56,0
,2,30617,70641,56,0
,2,30618,70643,56,0
,2,30619,70645,56,0
,2,30620,70647,56,0
,2,30621,70649,56,0
,2,30622,70651,56,0
,2,30623,70653,56,0
,2,30624,70655,56,0
,2,30625,70657,56,0
,2,30626,70659,56,0
,2,30627,70661,56,0
,2,30628,70663,56,0
,2,30629,70665,56,0
,2,30630,70667,56,0
,2,30631,70669,56,0
,2,30632,70671,56,0
,2,30633,70673,56,0
,2,30634,70675,56,0
,2,30635,70677,56,0
,2,30636,70679,56,0
,2,30637,70681,56,0
,2,30638,70683,56,0
,2,30639,70685,56,0
,2,30640,70687,56,0
,2,30641,70689,56,0
,2,30642,70691,56,0
,2,30643,70693,56,0
,2,30644,70695,56,0
,2,30645,70697,56,0
,2,30646,70699,56,0
,2,30647,70701,56,0
,2,30648,70703,56,0
,2,30649,70705,56,0
,2,30650,70707,56,0
,2,30651,70709,56,0
,2,30652,70711,56,0
,2,30653,70713,56,0
,2,30654,70715,56,0
,2,30655,70717,56,0
,2,30656,70719,56,0
,2,30657,70721,56,0
,2,30658,70723,56,0
,2,30659,70725,56,0
,2,30660,70727,56,0
,2,30661,70729,56,0
,2,30662,70731,56,0
,2,30663,70733,56,0
,2,30664,70735,56,0
,2,30665,70737,56,0
,2,30666,70739,56,0
,2,30667,70741,56,0
,2,30668,70743,56,0
,2,30669,70745,56,0
,2,30670,70747,56,0
,2,30671,70749,56,0
,2,30672,70751,56,0
,2,30673,70753,56,0
,2,30674,70755,56,0
,2,30675,70757,56,0
,2,30676,70759,56,0
,2,30677,70761,56,0
,2,30678,70763,56,0
,2,30679,70765,56,0
,2,30680,70767,56,0
,2,30681,70769,56,0
,2,30682,70771,56,0
,2,30683,70773,56,0
,2,30684,70775,56,0
,2,30685,70777,56,0
,2,30686,70779,56,0
,2,30687,70781,56,0
,2,30688,70783,56,0
,2,30689,70785,56,0
,2,30690,70787,56,0
,2,30691,70789,56,0
,2,30692,70791,56,0
,2,30693,70793,56,0
,2,30694,70795,56,0
,2,30695,70797,56,0
,2,30696,70799,56,0
,2,30697,70801,56,0
,2,30698,70803,56,0
,2,30699,70805,56,0
,2,30700,70807,56,0
,2,30701,70809,56,0
,2,30702,70811,56,0
,2,30703,70813,56,0
,2,30704,70815,56,0
,2,30705,70817,56,0
,2,30706,70819,56,0
,2,30707,70821,56,0
,2,30708,70823,56,0
,2,30709,70825,56,0
,2,30710,70827,56,0
,2,30711,70829,56,0
,2,30712,70831,56,0
,2,30713,70833,56,0
,2,30714,70835,56,0
,2,30715,70837,56,0
,2,30716,70839,56,0
,2,30717,70841,56,0
,2,30718,70843,56,0
,2,30719,70845,56,0
,2,30720,70847,56,0
,2,30721,70849,56,0
,2,30722,70851,56,0
,2,30723,70853,56,0
,2,30724,70855,56,0
,2,30725,70857,56,0
,2,30726,70859,56,0
,2,30727,70861,56,0
,2,30728,70863,56,0
,2,30729,70865,56,0
,2,30730,70867,56,0
,2,30731,70869,56,0
,2,30732,70871,56,0
,2,30733,70873,56,0
,2,30734,70875,56,0
,2,30735,70877,56,0
,2,30736,70879,56,0
,2,30737,70881,56,0
,2,30738,70883,56,0
,2,30739,70885,56,0
,2,30740,70887,56,0
,2,30741,70889,56,0
,2,30742,70891,56,0
,2,30743,70893,56,0
,2,30744,70895,56,0
,2,30745,70897,56,0
,2,30746,70899,56,0
,2,30747,70901,56,0
,2,30748,70903,56,0
,2,30749,70905,56,0
,2,30750,70907,56,0
,2,30751,70909,56,0
,2,30752,70911,56,0
,2,30753,70913,56,0
,2,30754,70915,56,0
,2,30755,70917,56,0
,2,30756,70919,56,0
,2,30757,70921,56,0
,2,30758,70923,56,0
,2,30759,70925,56,0
,2,30760,70927,56,0
,2,30761,70929,56,0
,2,30762,70931,56,0
,2,30763,70933,56,0
,2,30764,70935,56,0
,2,30765,70937,56,0
,2,30766,70939,56,0
,2,30767,70941,56,0
,2,30768,70943,56,0
,2,30769,70945,56,0
,2,30770,70947,56,0
,2,30771,70949,56,0
,2,30772,70951,56,0
,2,30773,70953,56,0
,2,30774,70955,56,0
,2,30775,70957,56,0
,2,30776,70959,56,0
,2,30777,70961,56,0
,2,30778,70963,56,0
,2,30779,70965,56,0
,2,30780,70967,56,0
,2,30781,70969,56,0
,2,30782,70971,56,0
,2,30783,70973,56,0
,2,30784,70975,56,0
,2,30785,70977,56,0
,2,30786,70979,56,0
,2,30787,70981,56,0
,2,30788,70983,56,0
,2,30789,70985,56,0
,2,30790,70987,56,0
,2,30791,70989,56,0
,2,30792,70991,56,0
,2,30793,70993,56,0
,2,30794,70995,56,0
,2,30795,70997,56,0
,2,30796,70999,56,0
,2,30797,71001,56,0
,2,30798,71003,56,0
,2,30799,71005,56,0
,2,30800,71007,56,0
,2,30801,71009,56,0
,2,30802,71011,56,0
,2,30803,71013,56,0
,2,30804,71015,56,0
,2,30805,71017,56,0
,2,30806,71019,56,0
,2,30807,71021,56,0
,2,30808,71023,56,0
,2,30809,71025,56,0
,2,30810,71027,56,0
,2,30811,71029,56,0
,2,30812,71031,56,0
,2,30813,71033,56,0
,2,30814,71035,56,0
,2,30815,71037,56,0
,2,30816,71039,56,0
,2,30817,71041,56,0
,2,30818,71043,56,0
,2,30819,71045,56,0
,2,30820,71047,56,0
,2,30821,71049,56,0
,2,30822,71051,56,0
,2,30823,71053,56,0
,2,30824,71055,56,0
,2,30825,71057,56,0
,2,30826,71059,56,0
,2,30827,71061,56,0
,2,30828,71063,56,0
,2,30829,71065,56,0
,2,30830,71067,56,0
,2,30831,71069,56,0
,2,30832,71071,56,0
,2,30833,71073,56,0
,2,30834,71075,56,0
,2,30835,71077,56,0
,2,30836,71079,56,0
,2,30837,71081,56,0
,2,30838,71083,56,0
,2,30839,71085,56,0
,2,30840,71087,56,0
,2,30841,71089,56,0
,2,30842,71091,56,0
,2,30843,71093,56,0
,2,30844,71095,56,0
,2,30845,71097,56,0
,2,30846,71099,56,0
,2,30847,71101,56,0
,2,30848,71103,56,0
,2,30849,71105,56,0
,2,30850,71107,56,0
,2,30851,71109,56,0
,2,30852,71111,56,0
,2,30853,71113,56,0
,2,30854,71115,56,0
,2,30855,71117,56,0
,2,30856,71119,56,0
,2,30857,71121,56,0
,2,30858,71123,56,0
,2,30859,71125,56,0
,2,30860,71127,56,0
,2,30861,71129,56,0
,2,30862,71131,56,0
,2,30863,71133,56,0
,2,30864,71135,56,0
,2,30865,71137,56,0
,2,30866,71139,56,0
,2,30867,71141,56,0
,2,30868,71143,56,0
,2,30869,71145,56,0
,2,30870,71147,56,0
,2,30871,71149,56,0
,2,30872,71151,56,0
,2,30873,71153,56,0
,2,30874,71155,56,0
,2,30875,71157,56,0
,2,30876,71159,56,0
,2,30877,71161,56,0
,2,30878,71163,56,0
,2,30879,71165,56,0
,2,30880,71167,56,0
,2,30881,71169,56,0
,2,30882,71171,56,0
,2,30883,71173,56,0
,2,30884,71175,56,0
,2,30885,71177,56,0
,2,30886,71179,56,0
,2,30887,71181,56,0
,2,30888,71183,56,0
,2,30889,71185,56,0
,2,30890,71187,56,0
,2,30891,71189,56,0
,2,30892,71191,56,0
,2,30893,71193,56,0
,2,30894,71195,56,0
,2,30895,71197,56,0
,2,30896,71199,56,0
,2,30897,71201,56,0
,2,30898,71203,56,0
,2,30899,71205,56,0
,2,30900,71207,56,0
,2,30901,71209,56,0
,2,30902,71211,56,0
,2,30903,71213,56,0
,2,30904,71215,56,0
,2,30905,71217,56,0
,2,30906,71219,56,0
,2,30907,71221,56,0
,2,30908,71223,56,0
,2,30909,71225,56,0
,2,30910,71227,56,0
,2,30911,71229,56,0
,2,30912,71231,56,0
,2,30913,71233,56,0
,2,30914,71235,56,0
,2,30915,71237,56,0
,2,30916,71239,56,0
,2,30917,71241,56,0
,2,30918,71243,56,0
,2,30919,71245,56,0
,2,30920,71247,56,0
,2,30921,71249,56,0
,2,30922,71251,56,0
,2,30923,71253,56,0
,2,30924,71255,56,0
,2,30925,71257,56,0
,2,30926,71259,56,0
,2,30927,71261,56,0
,2,30928,71263,56,0
,2,30929,71265,56,0
,2,30930,71267,56,0
,2,30931,71269,56,0
,2,30932,71271,56,0
,2,30933,71273,56,0
,2,30934,71275,56,0
,2,30935,71277,56,0
,2,30936,71279,56,0
,2,30937,71281,56,0
,2,30938,71283,56,0
,2,30939,71285,56,0
,2,30940,71287,56,0
,2,30941,71289,56,0
,2,30942,71291,56,0
,2,30943,71293,56,0
,2,30944,71295,56,0
,2,30945,71297,56,0
,2,30946,71299,56,0
,2,30947,71301,56,0
,2,30948,71303,56,0
,2,30949,71305,56,0
,2,30950,71307,56,0
,2,30951,71309,56,0
,2,30952,71311,56,0
,2,30953,71313,56,0
,2,30954,71315,56,0
,2,30955,71317,56,0
,2,30956,71319,56,0
,2,30957,71321,56,0
,2,30958,71323,56,0
,2,30959,71325,56,0
,2,30960,71327,56,0
,2,30961,71329,56,0
,2,30962,71331,56,0
,2,30963,71333,56,0
,2,30964,71335,56,0
,2,30965,71337,56,0
,2,30966,71339,56,0
,2,30967,71341,56,0
,2,30968,71343,56,0
,2,30969,71345,56,0
,2,30970,71347,56,0
,2,30971,71349,56,0
,2,30972,71351,56,0
,2,30973,71353,56,0
,2,30974,71355,56,0
,2,30975,71357,56,0
,2,30976,71359,56,0
,2,30977,71361,56,0
,2,30978,71363,56,0
,2,30979,71365,56,0
,2,30980,71367,56,0
,2,30981,71369,56,0
,2,30982,71371,56,0
,2,30983,71373,56,0
,2,30984,71375,56,0
,2,30985,71377,56,0
,2,30986,71379,56,0
,2,30987,71381,56,0
,2,30988,71383,56,0
,2,30989,71385,56,0
,2,30990,71387,56,0
,2,30991,71389,56,0
,2,30992,71391,56,0
,2,30993,71393,56,0
,2,30994,71395,56,0
,2,30995,71397,56,0
,2,30996,71399,56,0
,2,30997,71401,56,0
,2,30998,71403,56,0
,2,30999,71405,56,0
,2,31000,71407,56,0
,2,31001,71409,56,0
,2,31002,71411,56,0
,2,31003,71413,56,0
,2,31004,71415,56,0
,2,31005,71417,56,0
,2,31006,71419,56,0
,2,31007,71421,56,0
,2,31008,71423,56,0
,2,31009,71425,56,0
,2,31010,71427,56,0
,2,31011,71429,56,0
,2,31012,71431,56,0
,2,31013,71433,56,0
,2,31014,71435,56,0
,2,31015,71437,56,0
,2,31016,71439,56,0
,2,31017,71441,56,0
,2,31018,71443,56,0
,2,31019,71445,56,0
,2,31020,71447,56,0
,2,31021,71449,56,0
,2,31022,71451,56,0
,2,31023,71453,56,0
,2,31024,71455,56,0
,2,31025,71457,56,0
,2,31026,71459,56,0
,2,31027,71461,56,0
,2,31028,71463,56,0
,2,31029,71465,56,0
,2,31030,71467,56,0
,2,31031,71469,56,0
,2,31032,71471,56,0
,2,31033,71473,56,0
,2,31034,71475,56,0
,2,31035,71477,56,0
,2,31036,71479,56,0
,2,31037,71481,56,0
,2,31038,71483,56,0
,2,31039,71485,56,0
,2,31040,71487,56,0
,2,31041,71489,56,0
,2,31042,71491,56,0
,2,31043,71493,56,0
,2,31044,71495,56,0
,2,31045,71497,56,0
,2,31046,71499,56,0
,2,31047,71501,56,0
,2,31048,71503,56,0
,2,31049,71505,56,0
,2,31050,71507,56,0
,2,31051,71509,56,0
,2,31052,71511,56,0
,2,31053,71513,56,0
,2,31054,71515,56,0
,2,31055,71517,56,0
,2,31056,71519,56,0
,2,31057,71521,56,0
,2,31058,71523,56,0
,2,31059,71525,56,0
,2,31060,71527,56,0
,2,31061,71529,56,0
,2,31062,71531,56,0
,2,31063,71533,56,0
,2,31064,71535,56,0
,2,31065,71537,56,0
,2,31066,71539,56,0
,2,31067,71541,56,0
,2,31068,71543,56,0
,2,31069,71545,56,0
,2,31070,71547,56,0
,2,31071,71549,56,0
,2,31072,71551,56,0
,2,31073,71553,56,0
,2,31074,71555,56,0
,2,31075,71557,56,0
,2,31076,71559,56,0
,2,31077,71561,56,0
,2,31078,71563,56,0
,2,31079,71565,56,0
,2,31080,71567,56,0
,2,31081,71569,56,0
,2,31082,71571,56,0
,2,31083,71573,56,0
,2,31084,71575,56,0
,2,31085,71577,56,0
,2,31086,71579,56,0
,2,31087,71581,56,0
,2,31088,71583,56,0
,2,31089,71585,56,0
,2,31090,71587,56,0
,2,31091,71589,56,0
,2,31092,71591,56,0
,2,31093,71593,56,0
,2,31094,71595,56,0
,2,31095,71597,56,0
,2,31096,71599,56,0
,2,31097,71601,56,0
,2,31098,71603,56,0
,2,31099,71605,56,0
,2,31100,71607,56,0
,2,31101,71609,56,0
,2,31102,71611,56,0
,2,31103,71613,56,0
,2,31104,71615,56,0
,2,31105,71617,56,0
,2,31106,71619,56,0
,2,31107,71621,56,0
,2,31108,71623,56,0
,2,31109,71625,56,0
,2,31110,71627,56,0
,2,31111,71629,56,0
,2,31112,71631,56,0
,2,31113,71633,56,0
,2,31114,71635,56,0
,2,31115,71637,56,0
,2,31116,71639,56,0
,2,31117,71641,56,0
,2,31118,71643,56,0
,2,31119,71645,56,0
,2,31120,71647,56,0
,2,31121,71649,56,0
,2,31122,71651,56,0
,2,31123,71653,56,0
,2,31124,71655,56,0
,2,31125,71657,56,0
,2,31126,71659,56,0
,2,31127,71661,56,0
,2,31128,71663,56,0
,2,31129,71665,56,0
,2,31130,71667,56,0
,2,31131,71669,56,0
,2,31132,71671,56,0
,2,31133,71673,56,0
,2,31134,71675,56,0
,2,31135,71677,56,0
,2,31136,71679,56,0
,2,31137,71681,56,0
,2,31138,71683,56,0
,2,31139,71685,56,0
,2,31140,71687,56,0
,2,31141,71689,56,0
,2,31142,71691,56,0
,2,31143,71693,56,0
,2,31144,71695,56,0
,2,31145,71697,56,0
,2,31146,71699,56,0
,2,31147,71701,56,0
,2,31148,71703,56,0
,2,31149,71705,56,0
,2,31150,71707,56,0
,2,31151,71709,56,0
,2,31152,71711,56,0
,2,31153,71713,56,0
,2,31154,71715,56,0
,2,31155,71717,56,0
,2,31156,71719,56,0
,2,31157,71721,56,0
,2,31158,71723,56,0
,2,31159,71725,56,0
,2,31160,71727,56,0
,2,31161,71729,56,0
,2,31162,71731,56,0
,2,31163,71733,56,0
,2,31164,71735,56,0
,2,31165,71737,56,0
,2,31166,71739,56,0
,2,31167,71741,56,0
,2,31168,71743,56,0
,2,31169,71745,56,0
,2,31170,71747,56,0
,2,31171,71749,56,0
,2,31172,71751,56,0
,2,31173,71753,56,0
,2,31174,71755,56,0
,2,31175,71757,56,0
,2,31176,71759,56,0
,2,31177,71761,56,0
,2,31178,71763,56,0
,2,31179,71765,56,0
,2,31180,71767,56,0
,2,31181,71769,56,0
,2,31182,71771,56,0
,2,31183,71773,56,0
,2,31184,71775,56,0
,2,31185,71777,56,0
,2,31186,71779,56,0
,2,31187,71781,56,0
,2,31188,71783,56,0
,2,31189,71785,56,0
,2,31190,71787,56,0
,2,31191,71789,56,0
,2,31192,71791,56,0
,2,31193,71793,56,0
,2,31194,71795,56,0
,2,31195,71797,56,0
,2,31196,71799,56,0
,2,31197,71801,56,0
,2,31198,71803,56,0
,2,31199,71805,56,0
,2,31200,71807,56,0
,2,31201,71809,56,0
,2,31202,71811,56,0
,2,31203,71813,56,0
,2,31204,71815,56,0
,2,31205,71817,56,0
,2,31206,71819,56,0
,2,31207,71821,56,0
,2,31208,71823,56,0
,2,31209,71825,56,0
,2,31210,71827,56,0
,2,31211,71829,56,0
,2,31212,71831,56,0
,2,31213,71833,56,0
,2,31214,71835,56,0
,2,31215,71837,56,0
,2,31216,71839,56,0
,2,31217,71841,56,0
,2,31218,71843,56,0
,2,31219,71845,56,0
,2,31220,71847,56,0
,2,31221,71849,56,0
,2,31222,71851,56,0
,2,31223,71853,56,0
,2,31224,71855,56,0
,2,31225,71857,56,0
,2,31226,71859,56,0
,2,31227,71861,56,0
,2,31228,71863,56,0
,2,31229,71865,56,0
,2,31230,71867,56,0
,2,31231,71869,56,0
,2,31232,71871,56,0
,2,31233,71873,56,0
,2,31234,71875,56,0
,2,31235,71877,56,0
,2,31236,71879,56,0
,2,31237,71881,56,0
,2,31238,71883,56,0
,2,31239,71885,56,0
,2,31240,71887,56,0
,2,31241,71889,56,0
,2,31242,71891,56,0
,2,31243,71893,56,0
,2,31244,71895,56,0
,2,31245,71897,56,0
,2,31246,71899,56,0
,2,31247,71901,56,0
,2,31248,71903,56,0
,2,31249,71905,56,0
,2,31250,71907,56,0
,2,31251,71909,56,0
,2,31252,71911,56,0
,2,31253,71913,56,0
,2,31254,71915,56,0
,2,31255,71917,56,0
,2,31256,71919,56,0
,2,31257,71921,56,0
,2,31258,71923,56,0
,2,31259,71925,56,0
,2,31260,71927,56,0
,2,31261,71929,56,0
,2,31262,71931,56,0
,2,31263,71933,56,0
,2,31264,71935,56,0
,2,31265,71937,56,0
,2,31266,71939,56,0
,2,31267,71941,56,0
,2,31268,71943,56,0
,2,31269,71945,56,0
,2,31270,71947,56,0
,2,31271,71949,56,0
,2,31272,71951,56,0
,2,31273,71953,56,0
,2,31274,71955,56,0
,2,31275,71957,56,0
,2,31276,71959,56,0
,2,31277,71961,56,0
,2,31278,71963,56,0
,2,31279,71965,56,0
,2,31280,71967,56,0
,2,31281,71969,56,0
,2,31282,71971,56,0
,2,31283,71973,56,0
,2,31284,71975,56,0
,2,31285,71977,56,0
,2,31286,71979,56,0
,2,31287,71981,56,0
,2,31288,71983,56,0
,2,31289,71985,56,0
,2,31290,71987,56,0
,2,31291,71989,56,0
,2,31292,71991,56,0
,2,31293,71993,56,0
,2,31294,71995,56,0
,2,31295,71997,56,0
,2,31296,71999,56,0
,2,31297,72001,56,0
,2,31298,72003,56,0
,2,31299,72005,56,0
,2,31300,72007,56,0
,2,31301,72009,56,0
,2,31302,72011,56,0
,2,31303,72013,56,0
,2,31304,72015,56,0
,2,31305,72017,56,0
,2,31306,72019,56,0
,2,31307,72021,56,0
,2,31308,72023,56,0
,2,31309,72025,56,0
,2,31310,72027,56,0
,2,31311,72029,56,0
,2,31312,72031,56,0
,2,31313,72033,56,0
,2,31314,72035,56,0
,2,31315,72037,56,0
,2,31316,72039,56,0
,2,31317,72041,56,0
,2,31318,72043,56,0
,2,31319,72045,56,0
,2,31320,72047,56,0
,2,31321,72049,56,0
,2,31322,72051,56,0
,2,31323,72053,56,0
,2,31324,72055,56,0
,2,31325,72057,56,0
,2,31326,72059,56,0
,2,31327,72061,56,0
,2,31328,72063,56,0
,2,31329,72065,56,0
,2,31330,72067,56,0
,2,31331,72069,56,0
,2,31332,72071,56,0
,2,31333,72073,56,0
,2,31334,72075,56,0
,2,31335,72077,56,0
,2,31336,72079,56,0
,2,31337,72081,56,0
,2,31338,72083,56,0
,2,31339,72085,56,0
,2,31340,72087,56,0
,2,31341,72089,56,0
,2,31342,72091,56,0
,2,31343,72093,56,0
,2,31344,72095,56,0
,2,31345,72097,56,0
,2,31346,72099,56,0
,2,31347,72101,56,0
,2,31348,72103,56,0
,2,31349,72105,56,0
,2,31350,72107,56,0
,2,31351,72109,56,0
,2,31352,72111,56,0
,2,31353,72113,56,0
,2,31354,72115,56,0
,2,31355,72117,56,0
,2,31356,72119,56,0
,2,31357,72121,56,0
,2,31358,72123,56,0
,2,31359,72125,56,0
,2,31360,72127,56,0
,2,31361,72129,56,0
,2,31362,72131,56,0
,2,31363,72133,56,0
,2,31364,72135,56,0
,2,31365,72137,56,0
,2,31366,72139,56,0
,2,31367,72141,56,0
,2,31368,72143,56,0
,2,31369,72145,56,0
,2,31370,72147,56,0
,2,31371,72149,56,0
,2,31372,72151,56,0
,2,31373,72153,56,0
,2,31374,72155,56,0
,2,31375,72157,56,0
,2,31376,72159,56,0
,2,31377,72161,56,0
,2,31378,72163,56,0
,2,31379,72165,56,0
,2,31380,72167,56,0
,2,31381,72169,56,0
,2,31382,72171,56,0
,2,31383,72173,56,0
,2,31384,72175,56,0
,2,31385,72177,56,0
,2,31386,72179,56,0
,2,31387,72181,56,0
,2,31388,72183,56,0
,2,31389,72185,56,0
,2,31390,72187,56,0
,2,31391,72189,56,0
,2,31392,72191,56,0
,2,31393,72193,56,0
,2,31394,72195,56,0
,2,31395,72197,56,0
,2,31396,72199,56,0
,2,31397,72201,56,0
,2,31398,72203,56,0
,2,31399,72205,56,0
,2,31400,72207,56,0
,2,31401,72209,56,0
,2,31402,72211,56,0
,2,31403,72213,56,0
,2,31404,72215,56,0
,2,31405,72217,56,0
,2,31406,72219,56,0
,2,31407,72221,56,0
,2,31408,72223,56,0
,2,31409,72225,56,0
,2,31410,72227,56,0
,2,31411,72229,56,0
,2,31412,72231,56,0
,2,31413,72233,56,0
,2,31414,72235,56,0
,2,31415,72237,56,0
,2,31416,72239,56,0
,2,31417,72241,56,0
,2,31418,72243,56,0
,2,31419,72245,56,0
,2,31420,72247,56,0
,2,31421,72249,56,0
,2,31422,72251,56,0
,2,31423,72253,56,0
,2,31424,72255,56,0
,2,31425,72257,56,0
,2,31426,72259,56,0
,2,31427,72261,56,0
,2,31428,72263,56,0
,2,31429,72265,56,0
,2,31430,72267,56,0
,2,31431,72269,56,0
,2,31432,72271,56,0
,2,31433,72273,56,0
,2,31434,72275,56,0
,2,31435,72277,56,0
,2,31436,72279,56,0
,2,31437,72281,56,0
,2,31438,72283,56,0
,2,31439,72285,56,0
,2,31440,72287,56,0
,2,31441,72289,56,0
,2,31442,72291,56,0
,2,31443,72293,56,0
,2,31444,72295,56,0
,2,31445,72297,56,0
,2,31446,72299,56,0
,2,31447,72301,56,0
,2,31448,72303,56,0
,2,31449,72305,56,0
,2,31450,72307,56,0
,2,31451,72309,56,0
,2,31452,72311,56,0
,2,31453,72313,56,0
,2,31454,72315,56,0
,2,31455,72317,56,0
,2,31456,72319,56,0
,2,31457,72321,56,0
,2,31458,72323,56,0
,2,31459,72325,56,0
,2,31460,72327,56,0
,2,31461,72329,56,0
,2,31462,72331,56,0
,2,31463,72333,56,0
,2,31464,72335,56,0
,2,31465,72337,56,0
,2,31466,72339,56,0
,2,31467,72341,56,0
,2,31468,72343,56,0
,2,31469,72345,56,0
,2,31470,72347,56,0
,2,31471,72349,56,0
,2,31472,72351,56,0
,2,31473,72353,56,0
,2,31474,72355,56,0
,2,31475,72357,56,0
,2,31476,72359,56,0
,2,31477,72361,56,0
,2,31478,72363,56,0
,2,31479,72365,56,0
,2,31480,72367,56,0
,2,31481,72369,56,0
,2,31482,72371,56,0
,2,31483,72373,56,0
,2,31484,72375,56,0
,2,31485,72377,56,0
,2,31486,72379,56,0
,2,31487,72381,56,0
,2,31488,72383,56,0
,2,31489,72385,56,0
,2,31490,72387,56,0
,2,31491,72389,56,0
,2,31492,72391,56,0
,2,31493,72393,56,0
,2,31494,72395,56,0
,2,31495,72397,56,0
,2,31496,72399,56,0
,2,31497,72401,56,0
,2,31498,72403,56,0
,2,31499,72405,56,0
,2,31500,72407,56,0
,2,31501,72409,56,0
,2,31502,72411,56,0
,2,31503,72413,56,0
,2,31504,72415,56,0
,2,31505,72417,56,0
,2,31506,72419,56,0
,2,31507,72421,56,0
,2,31508,72423,56,0
,2,31509,72425,56,0
,2,31510,72427,56,0
,2,31511,72429,56,0
,2,31512,72431,56,0
,2,31513,72433,56,0
,2,31514,72435,56,0
,2,31515,72437,56,0
,2,31516,72439,56,0
,2,31517,72441,56,0
,2,31518,72443,56,0
,2,31519,72445,56,0
,2,31520,72447,56,0
,2,31521,72449,56,0
,2,31522,72451,56,0
,2,31523,72453,56,0
,2,31524,72455,56,0
,2,31525,72457,56,0
,2,31526,72459,56,0
,2,31527,72461,56,0
,2,31528,72463,56,0
,2,31529,72465,56,0
,2,31530,72467,56,0
,2,31531,72469,56,0
,2,31532,72471,56,0
,2,31533,72473,56,0
,2,31534,72475,56,0
,2,31535,72477,56,0
,2,31536,72479,56,0
,2,31537,72481,56,0
,2,31538,72483,56,0
,2,31539,72485,56,0
,2,31540,72487,56,0
,2,31541,72489,56,0
,2,31542,72491,56,0
,2,31543,72493,56,0
,2,31544,72495,56,0
,2,31545,72497,56,0
,2,31546,72499,56,0
,2,31547,72501,56,0
,2,31548,72503,56,0
,2,31549,72505,56,0
,2,31550,72507,56,0
,2,31551,72509,56,0
,2,31552,72511,56,0
,2,31553,72513,56,0
,2,31554,72515,56,0
,2,31555,72517,56,0
,2,31556,72519,56,0
,2,31557,72521,56,0
,2,31558,72523,56,0
,2,31559,72525,56,0
,2,31560,72527,56,0
,2,31561,72529,56,0
,2,31562,72531,56,0
,2,31563,72533,56,0
,2,31564,72535,56,0
,2,31565,72537,56,0
,2,31566,72539,56,0
,2,31567,72541,56,0
,2,31568,72543,56,0
,2,31569,72545,56,0
,2,31570,72547,56,0
,2,31571,72549,56,0
,2,31572,72551,56,0
,2,31573,72553,56,0
,2,31574,72555,56,0
,2,31575,72557,56,0
,2,31576,72559,56,0
,2,31577,72561,56,0
,2,31578,72563,56,0
,2,31579,72565,56,0
,2,31580,72567,56,0
,2,31581,72569,56,0
,2,31582,72571,56,0
,2,31583,72573,56,0
,2,31584,72575,56,0
,2,31585,72577,56,0
,2,31586,72579,56,0
,2,31587,72581,56,0
,2,31588,72583,56,0
,2,31589,72585,56,0
,2,31590,72587,56,0
,2,31591,72589,56,0
,2,31592,72591,56,0
,2,31593,72593,56,0
,2,31594,72595,56,0
,2,31595,72597,56,0
,2,31596,72599,56,0
,2,31597,72601,56,0
,2,31598,72603,56,0
,2,31599,72605,56,0
,2,31600,72607,56,0
,2,31601,72609,56,0
,2,31602,72611,56,0
,2,31603,72613,56,0
,2,31604,72615,56,0
,2,31605,72617,56,0
,2,31606,72619,56,0
,2,31607,72621,56,0
,2,31608,72623,56,0
,2,31609,72625,56,0
,2,31610,72627,56,0
,2,31611,72629,56,0
,2,31612,72631,56,0
,2,31613,72633,56,0
,2,31614,72635,56,0
,2,31615,72637,56,0
,2,31616,72639,56,0
,2,31617,72641,56,0
,2,31618,72643,56,0
,2,31619,72645,56,0
,2,31620,72647,56,0
,2,31621,72649,56,0
,2,31622,72651,56,0
,2,31623,72653,56,0
,2,31624,72655,56,0
,2,31625,72657,56,0
,2,31626,72659,56,0
,2,31627,72661,56,0
,2,31628,72663,56,0
,2,31629,72665,56,0
,2,31630,72667,56,0
,2,31631,72669,56,0
,2,31632,72671,56,0
,2,31633,72673,56,0
,2,31634,72675,56,0
,2,31635,72677,56,0
,2,31636,72679,56,0
,2,31637,72681,56,0
,2,31638,72683,56,0
,2,31639,72685,56,0
,2,31640,72687,56,0
,2,31641,72689,56,0
,2,31642,72691,56,0
,2,31643,72693,56,0
,2,31644,72695,56,0
,2,31645,72697,56,0
,2,31646,72699,56,0
,2,31647,72701,56,0
,2,31648,72703,56,0
,2,31649,72705,56,0
,2,31650,72707,56,0
,2,31651,72709,56,0
,2,31652,72711,56,0
,2,31653,72713,56,0
,2,31654,72715,56,0
,2,31655,72717,56,0
,2,31656,72719,56,0
,2,31657,72721,56,0
,2,31658,72723,56,0
,2,31659,72725,56,0
,2,31660,72727,56,0
,2,31661,72729,56,0
,2,31662,72731,56,0
,2,31663,72733,56,0
,2,31664,72735,56,0
,2,31665,72737,56,0
,2,31666,72739,56,0
,2,31667,72741,56,0
,2,31668,72743,56,0
,2,31669,72745,56,0
,2,31670,72747,56,0
,2,31671,72749,56,0
,2,31672,72751,56,0
,2,31673,72753,56,0
,2,31674,72755,56,0
,2,31675,72757,56,0
,2,31676,72759,56,0
,2,31677,72761,56,0
,2,31678,72763,56,0
,2,31679,72765,56,0
,2,31680,72767,56,0
,2,31681,72769,56,0
,2,31682,72771,56,0
,2,31683,72773,56,0
,2,31684,72775,56,0
,2,31685,72777,56,0
,2,31686,72779,56,0
,2,31687,72781,56,0
,2,31688,72783,56,0
,2,31689,72785,56,0
,2,31690,72787,56,0
,2,31691,72789,56,0
,2,31692,72791,56,0
,2,31693,72793,56,0
,2,31694,72795,56,0
,2,31695,72797,56,0
,2,31696,72799,56,0
,2,31697,72801,56,0
,2,31698,72803,56,0
,2,31699,72805,56,0
,2,31700,72807,56,0
,2,31701,72809,56,0
,2,31702,72811,56,0
,2,31703,72813,56,0
,2,31704,72815,56,0
,2,31705,72817,56,0
,2,31706,72819,56,0
,2,31707,72821,56,0
,2,31708,72823,56,0
,2,31709,72825,56,0
,2,31710,72827,56,0
,2,31711,72829,56,0
,2,31712,72831,56,0
,2,31713,72833,56,0
,2,31714,72835,56,0
,2,31715,72837,56,0
,2,31716,72839,56,0
,2,31717,72841,56,0
,2,31718,72843,56,0
,2,31719,72845,56,0
,2,31720,72847,56,0
,2,31721,72849,56,0
,2,31722,72851,56,0
,2,31723,72853,56,0
,2,31724,72855,56,0
,2,31725,72857,56,0
,2,31726,72859,56,0
,2,31727,72861,56,0
,2,31728,72863,56,0
,2,31729,72865,56,0
,2,31730,72867,56,0
,2,31731,72869,56,0
,2,31732,72871,56,0
,2,31733,72873,56,0
,2,31734,72875,56,0
,2,31735,72877,56,0
,2,31736,72879,56,0
,2,31737,72881,56,0
,2,31738,72883,56,0
,2,31739,72885,56,0
,2,31740,72887,56,0
,2,31741,72889,56,0
,2,31742,72891,56,0
,2,31743,72893,56,0
,2,31744,72895,56,0
,2,31745,72897,56,0
,2,31746,72899,56,0
,2,31747,72901,56,0
,2,31748,72903,56,0
,2,31749,72905,56,0
,2,31750,72907,56,0
,2,31751,72909,56,0
,2,31752,72911,56,0
,2,31753,72913,56,0
,2,31754,72915,56,0
,2,31755,72917,56,0
,2,31756,72919,56,0
,2,31757,72921,56,0
,2,31758,72923,56,0
,2,31759,72925,56,0
,2,31760,72927,56,0
,2,31761,72929,56,0
,2,31762,72931,56,0
,2,31763,72933,56,0
,2,31764,72935,56,0
,2,31765,72937,56,0
,2,31766,72939,56,0
,2,31767,72941,56,0
,2,31768,72943,56,0
,2,31769,72945,56,0
,2,31770,72947,56,0
,2,31771,72949,56,0
,2,31772,72951,56,0
,2,31773,72953,56,0
,2,31774,72955,56,0
,2,31775,72957,56,0
,2,31776,72959,56,0
,2,31777,72961,56,0
,2,31778,72963,56,0
,2,31779,72965,56,0
,2,31780,72967,56,0
,2,31781,72969,56,0
,2,31782,72971,56,0
,2,31783,72973,56,0
,2,31784,72975,56,0
,2,31785,72977,56,0
,2,31786,72979,56,0
,2,31787,72981,56,0
,2,31788,72983,56,0
,2,31789,72985,56,0
,2,31790,72987,56,0
,2,31791,72989,56,0
,2,31792,72991,56,0
,2,31793,72993,56,0
,2,31794,72995,56,0
,2,31795,72997,56,0
,2,31796,72999,56,0
,2,31797,73001,56,0
,2,31798,73003,56,0
,2,31799,73005,56,0
,2,31800,73007,56,0
,2,31801,73009,56,0
,2,31802,73011,56,0
,2,31803,73013,56,0
,2,31804,73015,56,0
,2,31805,73017,56,0
,2,31806,73019,56,0
,2,31807,73021,56,0
,2,31808,73023,56,0
,2,31809,73025,56,0
,2,31810,73027,56,0
,2,31811,73029,56,0
,2,31812,73031,56,0
,2,31813,73033,56,0
,2,31814,73035,56,0
,2,31815,73037,56,0
,2,31816,73039,56,0
,2,31817,73041,56,0
,2,31818,73043,56,0
,2,31819,73045,56,0
,2,31820,73047,56,0
,2,31821,73049,56,0
,2,31822,73051,56,0
,2,31823,73053,56,0
,2,31824,73055,56,0
,2,31825,73057,56,0
,2,31826,73059,56,0
,2,31827,73061,56,0
,2,31828,73063,56,0
,2,31829,73065,56,0
,2,31830,73067,56,0
,2,31831,73069,56,0
,2,31832,73071,56,0
,2,31833,73073,56,0
,2,31834,73075,56,0
,2,31835,73077,56,0
,2,31836,73079,56,0
,2,31837,73081,56,0
,2,31838,73083,56,0
,2,31839,73085,56,0
,2,31840,73087,56,0
,2,31841,73089,56,0
,2,31842,73091,56,0
,2,31843,73093,56,0
,2,31844,73095,56,0
,2,31845,73097,56,0
,2,31846,73099,56,0
,2,31847,73101,56,0
,2,31848,73103,56,0
,2,31849,73105,56,0
,2,31850,73107,56,0
,2,31851,73109,56,0
,2,31852,73111,56,0
,2,31853,73113,56,0
,2,31854,73115,56,0
,2,31855,73117,56,0
,2,31856,73119,56,0
,2,31857,73121,56,0
,2,31858,73123,56,0
,2,31859,73125,56,0
,2,31860,73127,56,0
,2,31861,73129,56,0
,2,31862,73131,56,0
,2,31863,73133,56,0
,2,31864,73135,56,0
,2,31865,73137,56,0
,2,31866,73139,56,0
,2,31867,73141,56,0
,2,31868,73143,56,0
,2,31869,73145,56,0
,2,31870,73147,56,0
,2,31871,73149,56,0
,2,31872,73151,56,0
,2,31873,73153,56,0
,2,31874,73155,56,0
,2,31875,73157,56,0
,2,31876,73159,56,0
,2,31877,73161,56,0
,2,31878,73163,56,0
,2,31879,73165,56,0
,2,31880,73167,56,0
,2,31881,73169,56,0
,2,31882,73171,56,0
,2,31883,73173,56,0
,2,31884,73175,56,0
,2,31885,73177,56,0
,2,31886,73179,56,0
,2,31887,73181,56,0
,2,31888,73183,56,0
,2,31889,73185,56,0
,2,31890,73187,56,0
,2,31891,73189,56,0
,2,31892,73191,56,0
,2,31893,73193,56,0
,2,31894,73195,56,0
,2,31895,73197,56,0
,2,31896,73199,56,0
,2,31897,73201,56,0
,2,31898,73203,56,0
,2,31899,73205,56,0
,2,31900,73207,56,0
,2,31901,73209,56,0
,2,31902,73211,56,0
,2,31903,73213,56,0
,2,31904,73215,56,0
,2,31905,73217,56,0
,2,31906,73219,56,0
,2,31907,73221,56,0
,2,31908,73223,56,0
,2,31909,73225,56,0
,2,31910,73227,56,0
,2,31911,73229,56,0
,2,31912,73231,56,0
,2,31913,73233,56,0
,2,31914,73235,56,0
,2,31915,73237,56,0
,2,31916,73239,56,0
,2,31917,73241,56,0
,2,31918,73243,56,0
,2,31919,73245,56,0
,2,31920,73247,56,0
,2,31921,73249,56,0
,2,31922,73251,56,0
,2,31923,73253,56,0
,2,31924,73255,56,0
,2,31925,73257,56,0
,2,31926,73259,56,0
,2,31927,73261,56,0
,2,31928,73263,56,0
,2,31929,73265,56,0
,2,31930,73267,56,0
,2,31931,73269,56,0
,2,31932,73271,56,0
,2,31933,73273,56,0
,2,31934,73275,56,0
,2,31935,73277,56,0
,2,31936,73279,56,0
,2,31937,73281,56,0
,2,31938,73283,56,0
,2,31939,73285,56,0
,2,31940,73287,56,0
,2,31941,73289,56,0
,2,31942,73291,56,0
,2,31943,73293,56,0
,2,31944,73295,56,0
,2,31945,73297,56,0
,2,31946,73299,56,0
,2,31947,73301,56,0
,2,31948,73303,56,0
,2,31949,73305,56,0
,2,31950,73307,56,0
,2,31951,73309,56,0
,2,31952,73311,56,0
,2,31953,73313,56,0
,2,31954,73315,56,0
,2,31955,73317,56,0
,2,31956,73319,56,0
,2,31957,73321,56,0
,2,31958,73323,56,0
,2,31959,73325,56,0
,2,31960,73327,56,0
,2,31961,73329,56,0
,2,31962,73331,56,0
,2,31963,73333,56,0
,2,31964,73335,56,0
,2,31965,73337,56,0
,2,31966,73339,56,0
,2,31967,73341,56,0
,2,31968,73343,56,0
,2,31969,73345,56,0
,2,31970,73347,56,0
,2,31971,73349,56,0
,2,31972,73351,56,0
,2,31973,73353,56,0
,2,31974,73355,56,0
,2,31975,73357,56,0
,2,31976,73359,56,0
,2,31977,73361,56,0
,2,31978,73363,56,0
,2,31979,73365,56,0
,2,31980,73367,56,0
,2,31981,73369,56,0
,2,31982,73371,56,0
,2,31983,73373,56,0
,2,31984,73375,56,0
,2,31985,73377,56,0
,2,31986,73379,56,0
,2,31987,73381,56,0
,2,31988,73383,56,0
,2,31989,73385,56,0
,2,31990,73387,56,0
,2,31991,73389,56,0
,2,31992,73391,56,0
,2,31993,73393,56,0
,2,31994,73395,56,0
,2,31995,73397,56,0
,2,31996,73399,56,0
,2,31997,73401,56,0
,2,31998,73403,56,0
,2,31999,73405,56,0
,2,32000,73407,56,0
,2,32001,73409,56,0
,2,32002,73411,56,0
,2,32003,73413,56,0
,2,32004,73415,56,0
,2,32005,73417,56,0
,2,32006,73419,56,0
,2,32007,73421,56,0
,2,32008,73423,56,0
,2,32009,73425,56,0
,2,32010,73427,56,0
,2,32011,73429,56,0
,2,32012,73431,56,0
,2,32013,73433,56,0
,2,32014,73435,56,0
,2,32015,73437,56,0
,2,32016,73439,56,0
,2,32017,73441,56,0
,2,32018,73443,56,0
,2,32019,73445,56,0
,2,32020,73447,56,0
,2,32021,73449,56,0
,2,32022,73451,56,0
,2,32023,73453,56,0
,2,32024,73455,56,0
,2,32025,73457,56,0
,2,32026,73459,56,0
,2,32027,73461,56,0
,2,32028,73463,56,0
,2,32029,73465,56,0
,2,32030,73467,56,0
,2,32031,73469,56,0
,2,32032,73471,56,0
,2,32033,73473,56,0
,2,32034,73475,56,0
,2,32035,73477,56,0
,2,32036,73479,56,0
,2,32037,73481,56,0
,2,32038,73483,56,0
,2,32039,73485,56,0
,2,32040,73487,56,0
,2,32041,73489,56,0
,2,32042,73491,56,0
,2,32043,73493,56,0
,2,32044,73495,56,0
,2,32045,73497,56,0
,2,32046,73499,56,0
,2,32047,73501,56,0
,2,32048,73503,56,0
,2,32049,73505,56,0
,2,32050,73507,56,0
,2,32051,73509,56,0
,2,32052,73511,56,0
,2,32053,73513,56,0
,2,32054,73515,56,0
,2,32055,73517,56,0
,2,32056,73519,56,0
,2,32057,73521,56,0
,2,32058,73523,56,0
,2,32059,73525,56,0
,2,32060,73527,56,0
,2,32061,73529,56,0
,2,32062,73531,56,0
,2,32063,73533,56,0
,2,32064,73535,56,0
,2,32065,73537,56,0
,2,32066,73539,56,0
,2,32067,73541,56,0
,2,32068,73543,56,0
,2,32069,73545,56,0
,2,32070,73547,56,0
,2,32071,73549,56,0
,2,32072,73551,56,0
,2,32073,73553,56,0
,2,32074,73555,56,0
,2,32075,73557,56,0
,2,32076,73559,56,0
,2,32077,73561,56,0
,2,32078,73563,56,0
,2,32079,73565,56,0
,2,32080,73567,56,0
,2,32081,73569,56,0
,2,32082,73571,56,0
,2,32083,73573,56,0
,2,32084,73575,56,0
,2,32085,73577,56,0
,2,32086,73579,56,0
,2,32087,73581,56,0
,2,32088,73583,56,0
,2,32089,73585,56,0
,2,32090,73587,56,0
,2,32091,73589,56,0
,2,32092,73591,56,0
,2,32093,73593,56,0
,2,32094,73595,56,0
,2,32095,73597,56,0
,2,32096,73599,56,0
,2,32097,73601,56,0
,2,32098,73603,56,0
,2,32099,73605,56,0
,2,32100,73607,56,0
,2,32101,73609,56,0
,2,32102,73611,56,0
,2,32103,73613,56,0
,2,32104,73615,56,0
,2,32105,73617,56,0
,2,32106,73619,56,0
,2,32107,73621,56,0
,2,32108,73623,56,0
,2,32109,73625,56,0
,2,32110,73627,56,0
,2,32111,73629,56,0
,2,32112,73631,56,0
,2,32113,73633,56,0
,2,32114,73635,56,0
,2,32115,73637,56,0
,2,32116,73639,56,0
,2,32117,73641,56,0
,2,32118,73643,56,0
,2,32119,73645,56,0
,2,32120,73647,56,0
,2,32121,73649,56,0
,2,32122,73651,56,0
,2,32123,73653,56,0
,2,32124,73655,56,0
,2,32125,73657,56,0
,2,32126,73659,56,0
,2,32127,73661,56,0
,2,32128,73663,56,0
,2,32129,73665,56,0
,2,32130,73667,56,0
,2,32131,73669,56,0
,2,32132,73671,56,0
,2,32133,73673,56,0
,2,32134,73675,56,0
,2,32135,73677,56,0
,2,32136,73679,56,0
,2,32137,73681,56,0
,2,32138,73683,56,0
,2,32139,73685,56,0
,2,32140,73687,56,0
,2,32141,73689,56,0
,2,32142,73691,56,0
,2,32143,73693,56,0
,2,32144,73695,56,0
,2,32145,73697,56,0
,2,32146,73699,56,0
,2,32147,73701,56,0
,2,32148,73703,56,0
,2,32149,73705,56,0
,2,32150,73707,56,0
,2,32151,73709,56,0
,2,32152,73711,56,0
,2,32153,73713,56,0
,2,32154,73715,56,0
,2,32155,73717,56,0
,2,32156,73719,56,0
,2,32157,73721,56,0
,2,32158,73723,56,0
,2,32159,73725,56,0
,2,32160,73727,56,0
,2,32161,73729,56,0
,2,32162,73731,56,0
,2,32163,73733,56,0
,2,32164,73735,56,0
,2,32165,73737,56,0
,2,32166,73739,56,0
,2,32167,73741,56,0
,2,32168,73743,56,0
,2,32169,73745,56,0
,2,32170,73747,56,0
,2,32171,73749,56,0
,2,32172,73751,56,0
,2,32173,73753,56,0
,2,32174,73755,56,0
,2,32175,73757,56,0
,2,32176,73759,56,0
,2,32177,73761,56,0
,2,32178,73763,56,0
,2,32179,73765,56,0
,2,32180,73767,56,0
,2,32181,73769,56,0
,2,32182,73771,56,0
,2,32183,73773,56,0
,2,32184,73775,56,0
,2,32185,73777,56,0
,2,32186,73779,56,0
,2,32187,73781,56,0
,2,32188,73783,56,0
,2,32189,73785,56,0
,2,32190,73787,56,0
,2,32191,73789,56,0
,2,32192,73791,56,0
,2,32193,73793,56,0
,2,32194,73795,56,0
,2,32195,73797,56,0
,2,32196,73799,56,0
,2,32197,73801,56,0
,2,32198,73803,56,0
,2,32199,73805,56,0
,2,32200,73807,56,0
,2,32201,73809,56,0
,2,32202,73811,56,0
,2,32203,73813,56,0
,2,32204,73815,56,0
,2,32205,73817,56,0
,2,32206,73819,56,0
,2,32207,73821,56,0
,2,32208,73823,56,0
,2,32209,73825,56,0
,2,32210,73827,56,0
,2,32211,73829,56,0
,2,32212,73831,56,0
,2,32213,73833,56,0
,2,32214,73835,56,0
,2,32215,73837,56,0
,2,32216,73839,56,0
,2,32217,73841,56,0
,2,32218,73843,56,0
,2,32219,73845,56,0
,2,32220,73847,56,0
,2,32221,73849,56,0
,2,32222,73851,56,0
,2,32223,73853,56,0
,2,32224,73855,56,0
,2,32225,73857,56,0
,2,32226,73859,56,0
,2,32227,73861,56,0
,2,32228,73863,56,0
,2,32229,73865,56,0
,2,32230,73867,56,0
,2,32231,73869,56,0
,2,32232,73871,56,0
,2,32233,73873,56,0
,2,32234,73875,56,0
,2,32235,73877,56,0
,2,32236,73879,56,0
,2,32237,73881,56,0
,2,32238,73883,56,0
,2,32239,73885,56,0
,2,32240,73887,56,0
,2,32241,73889,56,0
,2,32242,73891,56,0
,2,32243,73893,56,0
,2,32244,73895,56,0
,2,32245,73897,56,0
,2,32246,73899,56,0
,2,32247,73901,56,0
,2,32248,73903,56,0
,2,32249,73905,56,0
,2,32250,73907,56,0
,2,32251,73909,56,0
,2,32252,73911,56,0
,2,32253,73913,56,0
,2,32254,73915,56,0
,2,32255,73917,56,0
,2,32256,73919,56,0
,2,32257,73921,56,0
,2,32258,73923,56,0
,2,32259,73925,56,0
,2,32260,73927,56,0
,2,32261,73929,56,0
,2,32262,73931,56,0
,2,32263,73933,56,0
,2,32264,73935,56,0
,2,32265,73937,56,0
,2,32266,73939,56,0
,2,32267,73941,56,0
,2,32268,73943,56,0
,2,32269,73945,56,0
,2,32270,73947,56,0
,2,32271,73949,56,0
,2,32272,73951,56,0
,2,32273,73953,56,0
,2,32274,73955,56,0
,2,32275,73957,56,0
,2,32276,73959,56,0
,2,32277,73961,56,0
,2,32278,73963,56,0
,2,32279,73965,56,0
,2,32280,73967,56,0
,2,32281,73969,56,0
,2,32282,73971,56,0
,2,32283,73973,56,0
,2,32284,73975,56,0
,2,32285,73977,56,0
,2,32286,73979,56,0
,2,32287,73981,56,0
,2,32288,73983,56,0
,2,32289,73985,56,0
,2,32290,73987,56,0
,2,32291,73989,56,0
,2,32292,73991,56,0
,2,32293,73993,56,0
,2,32294,73995,56,0
,2,32295,73997,56,0
,2,32296,73999,56,0
,2,32297,74001,56,0
,2,32298,74003,56,0
,2,32299,74005,56,0
,2,32300,74007,56,0
,2,32301,74009,56,0
,2,32302,74011,56,0
,2,32303,74013,56,0
,2,32304,74015,56,0
,2,32305,74017,56,0
,2,32306,74019,56,0
,2,32307,74021,56,0
,2,32308,74023,56,0
,2,32309,74025,56,0
,2,32310,74027,56,0
,2,32311,74029,56,0
,2,32312,74031,56,0
,2,32313,74033,56,0
,2,32314,74035,56,0
,2,32315,74037,56,0
,2,32316,74039,56,0
,2,32317,74041,56,0
,2,32318,74043,56,0
,2,32319,74045,56,0
,2,32320,74047,56,0
,2,32321,74049,56,0
,2,32322,74051,56,0
,2,32323,74053,56,0
,2,32324,74055,56,0
,2,32325,74057,56,0
,2,32326,74059,56,0
,2,32327,74061,56,0
,2,32328,74063,56,0
,2,32329,74065,56,0
,2,32330,74067,56,0
,2,32331,74069,56,0
,2,32332,74071,56,0
,2,32333,74073,56,0
,2,32334,74075,56,0
,2,32335,74077,56,0
,2,32336,74079,56,0
,2,32337,74081,56,0
,2,32338,74083,56,0
,2,32339,74085,56,0
,2,32340,74087,56,0
,2,32341,74089,56,0
,2,32342,74091,56,0
,2,32343,74093,56,0
,2,32344,74095,56,0
,2,32345,74097,56,0
,2,32346,74099,56,0
,2,32347,74101,56,0
,2,32348,74103,56,0
,2,32349,74105,56,0
,2,32350,74107,56,0
,2,32351,74109,56,0
,2,32352,74111,56,0
,2,32353,74113,56,0
,2,32354,74115,56,0
,2,32355,74117,56,0
,2,32356,74119,56,0
,2,32357,74121,56,0
,2,32358,74123,56,0
,2,32359,74125,56,0
,2,32360,74127,56,0
,2,32361,74129,56,0
,2,32362,74131,56,0
,2,32363,74133,56,0
,2,32364,74135,56,0
,2,32365,74137,56,0
,2,32366,74139,56,0
,2,32367,74141,56,0
,2,32368,74143,56,0
,2,32369,74145,56,0
,2,32370,74147,56,0
,2,32371,74149,56,0
,2,32372,74151,56,0
,2,32373,74153,56,0
,2,32374,74155,56,0
,2,32375,74157,56,0
,2,32376,74159,56,0
,2,32377,74161,56,0
,2,32378,74163,56,0
,2,32379,74165,56,0
,2,32380,74167,56,0
,2,32381,74169,56,0
,2,32382,74171,56,0
,2,32383,74173,56,0
,2,32384,74175,56,0
,2,32385,74177,56,0
,2,32386,74179,56,0
,2,32387,74181,56,0
,2,32388,74183,56,0
,2,32389,74185,56,0
,2,32390,74187,56,0
,2,32391,74189,56,0
,2,32392,74191,56,0
,2,32393,74193,56,0
,2,32394,74195,56,0
,2,32395,74197,56,0
,2,32396,74199,56,0
,2,32397,74201,56,0
,2,32398,74203,56,0
,2,32399,74205,56,0
,2,32400,74207,56,0
,2,32401,74209,56,0
,2,32402,74211,56,0
,2,32403,74213,56,0
,2,32404,74215,56,0
,2,32405,74217,56,0
,2,32406,74219,56,0
,2,32407,74221,56,0
,2,32408,74223,56,0
,2,32409,74225,56,0
,2,32410,74227,56,0
,2,32411,74229,56,0
,2,32412,74231,56,0
,2,32413,74233,56,0
,2,32414,74235,56,0
,2,32415,74237,56,0
,2,32416,74239,56,0
,2,32417,74241,56,0
,2,32418,74243,56,0
,2,32419,74245,56,0
,2,32420,74247,56,0
,2,32421,74249,56,0
,2,32422,74251,56,0
,2,32423,74253,56,0
,2,32424,74255,56,0
,2,32425,74257,56,0
,2,32426,74259,56,0
,2,32427,74261,56,0
,2,32428,74263,56,0
,2,32429,74265,56,0
,2,32430,74267,56,0
,2,32431,74269,56,0
,2,32432,74271,56,0
,2,32433,74273,56,0
,2,32434,74275,56,0
,2,32435,74277,56,0
,2,32436,74279,56,0
,2,32437,74281,56,0
,2,32438,74283,56,0
,2,32439,74285,56,0
,2,32440,74287,56,0
,2,32441,74289,56,0
,2,32442,74291,56,0
,2,32443,74293,56,0
,2,32444,74295,56,0
,2,32445,74297,56,0
,2,32446,74299,56,0
,2,32447,74301,56,0
,2,32448,74303,56,0
,2,32449,74305,56,0
,2,32450,74307,56,0
,2,32451,74309,56,0
,2,32452,74311,56,0
,2,32453,74313,56,0
,2,32454,74315,56,0
,2,32455,74317,56,0
,2,32456,74319,56,0
,2,32457,74321,56,0
,2,32458,74323,56,0
,2,32459,74325,56,0
,2,32460,74327,56,0
,2,32461,74329,56,0
,2,32462,74331,56,0
,2,32463,74333,56,0
,2,32464,74335,56,0
,2,32465,74337,56,0
,2,32466,74339,56,0
,2,32467,74341,56,0
,2,32468,74343,56,0
,2,32469,74345,56,0
,2,32470,74347,56,0
,2,32471,74349,56,0
,2,32472,74351,56,0
,2,32473,74353,56,0
,2,32474,74355,56,0
,2,32475,74357,56,0
,2,32476,74359,56,0
,2,32477,74361,56,0
,2,32478,74363,56,0
,2,32479,74365,56,0
,2,32480,74367,56,0
,2,32481,74369,56,0
,2,32482,74371,56,0
,2,32483,74373,56,0
,2,32484,74375,56,0
,2,32485,74377,56,0
,2,32486,74379,56,0
,2,32487,74381,56,0
,2,32488,74383,56,0
,2,32489,74385,56,0
,2,32490,74387,56,0
,2,32491,74389,56,0
,2,32492,74391,56,0
,2,32493,74393,56,0
,2,32494,74395,56,0
,2,32495,74397,56,0
,2,32496,74399,56,0
,2,32497,74401,56,0
,2,32498,74403,56,0
,2,32499,74405,56,0
,2,32500,74407,56,0
,2,32501,74409,56,0
,2,32502,74411,56,0
,2,32503,74413,56,0
,2,32504,74415,56,0
,2,32505,74417,56,0
,2,32506,74419,56,0
,2,32507,74421,56,0
,2,32508,74423,56,0
,2,32509,74425,56,0
,2,32510,74427,56,0
,2,32511,74429,56,0
,2,32512,74431,56,0
,2,32513,74433,56,0
,2,32514,74435,56,0
,2,32515,74437,56,0
,2,32516,74439,56,0
,2,32517,74441,56,0
,2,32518,74443,56,0
,2,32519,74445,56,0
,2,32520,74447,56,0
,2,32521,74449,56,0
,2,32522,74451,56,0
,2,32523,74453,56,0
,2,32524,74455,56,0
,2,32525,74457,56,0
,2,32526,74459,56,0
,2,32527,74461,56,0
,2,32528,74463,56,0
,2,32529,74465,56,0
,2,32530,74467,56,0
,2,32531,74469,56,0
,2,32532,74471,56,0
,2,32533,74473,56,0
,2,32534,74475,56,0
,2,32535,74477,56,0
,2,32536,74479,56,0
,2,32537,74481,56,0
,2,32538,74483,56,0
,2,32539,74485,56,0
,2,32540,74487,56,0
,2,32541,74489,56,0
,2,32542,74491,56,0
,2,32543,74493,56,0
,2,32544,74495,56,0
,2,32545,74497,56,0
,2,32546,74499,56,0
,2,32547,74501,56,0
,2,32548,74503,56,0
,2,32549,74505,56,0
,2,32550,74507,56,0
,2,32551,74509,56,0
,2,32552,74511,56,0
,2,32553,74513,56,0
,2,32554,74515,56,0
,2,32555,74517,56,0
,2,32556,74519,56,0
,2,32557,74521,56,0
,2,32558,74523,56,0
,2,32559,74525,56,0
,2,32560,74527,56,0
,2,32561,74529,56,0
,2,32562,74531,56,0
,2,32563,74533,56,0
,2,32564,74535,56,0
,2,32565,74537,56,0
,2,32566,74539,56,0
,2,32567,74541,56,0
,2,32568,74543,56,0
,2,32569,74545,56,0
,2,32570,74547,56,0
,2,32571,74549,56,0
,2,32572,74551,56,0
,2,32573,74553,56,0
,2,32574,74555,56,0
,2,32575,74557,56,0
,2,32576,74559,56,0
,2,32577,74561,56,0
,2,32578,74563,56,0
,2,32579,74565,56,0
,2,32580,74567,56,0
,2,32581,74569,56,0
,2,32582,74571,56,0
,2,32583,74573,56,0
,2,32584,74575,56,0
,2,32585,74577,56,0
,2,32586,74579,56,0
,2,32587,74581,56,0
,2,32588,74583,56,0
,2,32589,74585,56,0
,2,32590,74587,56,0
,2,32591,74589,56,0
,2,32592,74591,56,0
,2,32593,74593,56,0
,2,32594,74595,56,0
,2,32595,74597,56,0
,2,32596,74599,56,0
,2,32597,74601,56,0
,2,32598,74603,56,0
,2,32599,74605,56,0
,2,32600,74607,56,0
,2,32601,74609,56,0
,2,32602,74611,56,0
,2,32603,74613,56,0
,2,32604,74615,56,0
,2,32605,74617,56,0
,2,32606,74619,56,0
,2,32607,74621,56,0
,2,32608,74623,56,0
,2,32609,74625,56,0
,2,32610,74627,56,0
,2,32611,74629,56,0
,2,32612,74631,56,0
,2,32613,74633,56,0
,2,32614,74635,56,0
,2,32615,74637,56,0
,2,32616,74639,56,0
,2,32617,74641,56,0
,2,32618,74643,56,0
,2,32619,74645,56,0
,2,32620,74647,56,0
,2,32621,74649,56,0
,2,32622,74651,56,0
,2,32623,74653,56,0
,2,32624,74655,56,0
,2,32625,74657,56,0
,2,32626,74659,56,0
,2,32627,74661,56,0
,2,32628,74663,56,0
,2,32629,74665,56,0
,2,32630,74667,56,0
,2,32631,74669,56,0
,2,32632,74671,56,0
,2,32633,74673,56,0
,2,32634,74675,56,0
,2,32635,74677,56,0
,2,32636,74679,56,0
,2,32637,74681,56,0
,2,32638,74683,56,0
,2,32639,74685,56,0
,2,32640,74687,56,0
,2,32641,74689,56,0
,2,32642,74691,56,0
,2,32643,74693,56,0
,2,32644,74695,56,0
,2,32645,74697,56,0
,2,32646,74699,56,0
,2,32647,74701,56,0
,2,32648,74703,56,0
,2,32649,74705,56,0
,2,32650,74707,56,0
,2,32651,74709,56,0
,2,32652,74711,56,0
,2,32653,74713,56,0
,2,32654,74715,56,0
,2,32655,74717,56,0
,2,32656,74719,56,0
,2,32657,74721,56,0
,2,32658,74723,56,0
,2,32659,74725,56,0
,2,32660,74727,56,0
,2,32661,74729,56,0
,2,32662,74731,56,0
,2,32663,74733,56,0
,2,32664,74735,56,0
,2,32665,74737,56,0
,2,32666,74739,56,0
,2,32667,74741,56,0
,2,32668,74743,56,0
,2,32669,74745,56,0
,2,32670,74747,56,0
,2,32671,74749,56,0
,2,32672,74751,56,0
,2,32673,74753,56,0
,2,32674,74755,56,0
,2,32675,74757,56,0
,2,32676,74759,56,0
,2,32677,74761,56,0
,2,32678,74763,56,0
,2,32679,74765,56,0
,2,32680,74767,56,0
,2,32681,74769,56,0
,2,32682,74771,56,0
,2,32683,74773,56,0
,2,32684,74775,56,0
,2,32685,74777,56,0
,2,32686,74779,56,0
,2,32687,74781,56,0
,2,32688,74783,56,0
,2,32689,74785,56,0
,2,32690,74787,56,0
,2,32691,74789,56,0
,2,32692,74791,56,0
,2,32693,74793,56,0
,2,32694,74795,56,0
,2,32695,74797,56,0
,2,32696,74799,56,0
,2,32697,74801,56,0
,2,32698,74803,56,0
,2,32699,74805,56,0
,2,32700,74807,56,0
,2,32701,74809,56,0
,2,32702,74811,56,0
,2,32703,74813,56,0
,2,32704,74815,56,0
,2,32705,74817,56,0
,2,32706,74819,56,0
,2,32707,74821,56,0
,2,32708,74823,56,0
,2,32709,74825,56,0
,2,32710,74827,56,0
,2,32711,74829,56,0
,2,32712,74831,56,0
,2,32713,74833,56,0
,2,32714,74835,56,0
,2,32715,74837,56,0
,2,32716,74839,56,0
,2,32717,74841,56,0
,2,32718,74843,56,0
,2,32719,74845,56,0
,2,32720,74847,56,0
,2,32721,74849,56,0
,2,32722,74851,56,0
,2,32723,74853,56,0
,2,32724,74855,56,0
,2,32725,74857,56,0
,2,32726,74859,56,0
,2,32727,74861,56,0
,2,32728,74863,56,0
,2,32729,74865,56,0
,2,32730,74867,56,0
,2,32731,74869,56,0
,2,32732,74871,56,0
,2,32733,74873,56,0
,2,32734,74875,56,0
,2,32735,74877,56,0
,2,32736,74879,56,0
,2,32737,74881,56,0
,2,32738,74883,56,0
,2,32739,74885,56,0
,2,32740,74887,56,0
,2,32741,74889,56,0
,2,32742,74891,56,0
,2,32743,74893,56,0
,2,32744,74895,56,0
,2,32745,74897,56,0
,2,32746,74899,56,0
,2,32747,74901,56,0
,2,32748,74903,56,0
,2,32749,74905,56,0
,2,32750,74907,56,0
,2,32751,74909,56,0
,2,32752,74911,56,0
,2,32753,74913,56,0
,2,32754,74915,56,0
,2,32755,74917,56,0
,2,32756,74919,56,0
,2,32757,74921,56,0
,2,32758,74923,56,0
,2,32759,74925,56,0
,2,32760,74927,56,0
,2,32761,74929,56,0
,2,32762,74931,56,0
,2,32763,74933,56,0
,2,32764,74935,56,0
,2,32765,74937,56,0
,2,32766,74939,56,0
,2,32767,74941,56,0
,2,32768,74943,56,0
,2,32769,74945,56,0
,2,32770,74947,56,0
,2,32771,74949,56,0
,2,32772,74951,56,0
,2,32773,74953,56,0
,2,32774,74955,56,0
,2,32775,74957,56,0
,2,32776,74959,56,0
,2,32777,74961,56,0
,2,32778,74963,56,0
,2,32779,74965,56,0
,2,32780,74967,56,0
,2,32781,74969,56,0
,2,32782,74971,56,0
,2,32783,74973,56,0
,2,32784,74975,56,0
,2,32785,74977,56,0
,2,32786,74979,56,0
,2,32787,74981,56,0
,2,32788,74983,56,0
,2,32789,74985,56,0
,2,32790,74987,56,0
,2,32791,74989,56,0
,2,32792,74991,56,0
,2,32793,74993,56,0
,2,32794,74995,56,0
,2,32795,74997,56,0
,2,32796,74999,56,0
,2,32797,75001,56,0
,2,32798,75003,56,0
,2,32799,75005,56,0
,2,32800,75007,56,0
,2,32801,75009,56,0
,2,32802,75011,56,0
,2,32803,75013,56,0
,2,32804,75015,56,0
,2,32805,75017,56,0
,2,32806,75019,56,0
,2,32807,75021,56,0
,2,32808,75023,56,0
,2,32809,75025,56,0
,2,32810,75027,56,0
,2,32811,75029,56,0
,2,32812,75031,56,0
,2,32813,75033,56,0
,2,32814,75035,56,0
,2,32815,75037,56,0
,2,32816,75039,56,0
,2,32817,75041,56,0
,2,32818,75043,56,0
,2,32819,75045,56,0
,2,32820,75047,56,0
,2,32821,75049,56,0
,2,32822,75051,56,0
,2,32823,75053,56,0
,2,32824,75055,56,0
,2,32825,75057,56,0
,2,32826,75059,56,0
,2,32827,75061,56,0
,2,32828,75063,56,0
,2,32829,75065,56,0
,2,32830,75067,56,0
,2,32831,75069,56,0
,2,32832,75071,56,0
,2,32833,75073,56,0
,2,32834,75075,56,0
,2,32835,75077,56,0
,2,32836,75079,56,0
,2,32837,75081,56,0
,2,32838,75083,56,0
,2,32839,75085,56,0
,2,32840,75087,56,0
,2,32841,75089,56,0
,2,32842,75091,56,0
,2,32843,75093,56,0
,2,32844,75095,56,0
,2,32845,75097,56,0
,2,32846,75099,56,0
,2,32847,75101,56,0
,2,32848,75103,56,0
,2,32849,75105,56,0
,2,32850,75107,56,0
,2,32851,75109,56,0
,2,32852,75111,56,0
,2,32853,75113,56,0
,2,32854,75115,56,0
,2,32855,75117,56,0
,2,32856,75119,56,0
,2,32857,75121,56,0
,2,32858,75123,56,0
,2,32859,75125,56,0
,2,32860,75127,56,0
,2,32861,75129,56,0
,2,32862,75131,56,0
,2,32863,75133,56,0
,2,32864,75135,56,0
,2,32865,75137,56,0
,2,32866,75139,56,0
,2,32867,75141,56,0
,2,32868,75143,56,0
,2,32869,75145,56,0
,2,32870,75147,56,0
,2,32871,75149,56,0
,2,32872,75151,56,0
,2,32873,75153,56,0
,2,32874,75155,56,0
,2,32875,75157,56,0
,2,32876,75159,56,0
,2,32877,75161,56,0
,2,32878,75163,56,0
,2,32879,75165,56,0
,2,32880,75167,56,0
,2,32881,75169,56,0
,2,32882,75171,56,0
,2,32883,75173,56,0
,2,32884,75175,56,0
,2,32885,75177,56,0
,2,32886,75179,56,0
,2,32887,75181,56,0
,2,32888,75183,56,0
,2,32889,75185,56,0
,2,32890,75187,56,0
,2,32891,75189,56,0
,2,32892,75191,56,0
,2,32893,75193,56,0
,2,32894,75195,56,0
,2,32895,75197,56,0
,2,32896,75199,56,0
,2,32897,75201,56,0
,2,32898,75203,56,0
,2,32899,75205,56,0
,2,32900,75207,56,0
,2,32901,75209,56,0
,2,32902,75211,56,0
,2,32903,75213,56,0
,2,32904,75215,56,0
,2,32905,75217,56,0
,2,32906,75219,56,0
,2,32907,75221,56,0
,2,32908,75223,56,0
,2,32909,75225,56,0
,2,32910,75227,56,0
,2,32911,75229,56,0
,2,32912,75231,56,0
,2,32913,75233,56,0
,2,32914,75235,56,0
,2,32915,75237,56,0
,2,32916,75239,56,0
,2,32917,75241,56,0
,2,32918,75243,56,0
,2,32919,75245,56,0
,2,32920,75247,56,0
,2,32921,75249,56,0
,2,32922,75251,56,0
,2,32923,75253,56,0
,2,32924,75255,56,0
,2,32925,75257,56,0
,2,32926,75259,56,0
,2,32927,75261,56,0
,2,32928,75263,56,0
,2,32929,75265,56,0
,2,32930,75267,56,0
,2,32931,75269,56,0
,2,32932,75271,56,0
,2,32933,75273,56,0
,2,32934,75275,56,0
,2,32935,75277,56,0
,2,32936,75279,56,0
,2,32937,75281,56,0
,2,32938,75283,56,0
,2,32939,75285,56,0
,2,32940,75287,56,0
,2,32941,75289,56,0
,2,32942,75291,56,0
,2,32943,75293,56,0
,2,32944,75295,56,0
,2,32945,75297,56,0
,2,32946,75299,56,0
,2,32947,75301,56,0
,2,32948,75303,56,0
,2,32949,75305,56,0
,2,32950,75307,56,0
,2,32951,75309,56,0
,2,32952,75311,56,0
,2,32953,75313,56,0
,2,32954,75315,56,0
,2,32955,75317,56,0
,2,32956,75319,56,0
,2,32957,75321,56,0
,2,32958,75323,56,0
,2,32959,75325,56,0
,2,32960,75327,56,0
,2,32961,75329,56,0
,2,32962,75331,56,0
,2,32963,75333,56,0
,2,32964,75335,56,0
,2,32965,75337,56,0
,2,32966,75339,56,0
,2,32967,75341,56,0
,2,32968,75343,56,0
,2,32969,75345,56,0
,2,32970,75347,56,0
,2,32971,75349,56,0
,2,32972,75351,56,0
,2,32973,75353,56,0
,2,32974,75355,56,0
,2,32975,75357,56,0
,2,32976,75359,56,0
,2,32977,75361,56,0
,2,32978,75363,56,0
,2,32979,75365,56,0
,2,32980,75367,56,0
,2,32981,75369,56,0
,2,32982,75371,56,0
,2,32983,75373,56,0
,2,32984,75375,56,0
,2,32985,75377,56,0
,2,32986,75379,56,0
,2,32987,75381,56,0
,2,32988,75383,56,0
,2,32989,75385,56,0
,2,32990,75387,56,0
,2,32991,75389,56,0
,2,32992,75391,56,0
,2,32993,75393,56,0
,2,32994,75395,56,0
,2,32995,75397,56,0
,2,32996,75399,56,0
,2,32997,75401,56,0
,2,32998,75403,56,0
,2,32999,75405,56,0
,2,33000,75407,56,0
,2,33001,75409,56,0
,2,33002,75411,56,0
,2,33003,75413,56,0
,2,33004,75415,56,0
,2,33005,75417,56,0
,2,33006,75419,56,0
,2,33007,75421,56,0
,2,33008,75423,56,0
,2,33009,75425,56,0
,2,33010,75427,56,0
,2,33011,75429,56,0
,2,33012,75431,56,0
,2,33013,75433,56,0
,2,33014,75435,56,0
,2,33015,75437,56,0
,2,33016,75439,56,0
,2,33017,75441,56,0
,2,33018,75443,56,0
,2,33019,75445,56,0
,2,33020,75447,56,0
,2,33021,75449,56,0
,2,33022,75451,56,0
,2,33023,75453,56,0
,2,33024,75455,56,0
,2,33025,75457,56,0
,2,33026,75459,56,0
,2,33027,75461,56,0
,2,33028,75463,56,0
,2,33029,75465,56,0
,2,33030,75467,56,0
,2,33031,75469,56,0
,2,33032,75471,56,0
,2,33033,75473,56,0
,2,33034,75475,56,0
,2,33035,75477,56,0
,2,33036,75479,56,0
,2,33037,75481,56,0
,2,33038,75483,56,0
,2,33039,75485,56,0
,2,33040,75487,56,0
,2,33041,75489,56,0
,2,33042,75491,56,0
,2,33043,75493,56,0
,2,33044,75495,56,0
,2,33045,75497,56,0
,2,33046,75499,56,0
,2,33047,75501,56,0
,2,33048,75503,56,0
,2,33049,75505,56,0
,2,33050,75507,56,0
,2,33051,75509,56,0
,2,33052,75511,56,0
,2,33053,75513,56,0
,2,33054,75515,56,0
,2,33055,75517,56,0
,2,33056,75519,56,0
,2,33057,75521,56,0
,2,33058,75523,56,0
,2,33059,75525,56,0
,2,33060,75527,56,0
,2,33061,75529,56,0
,2,33062,75531,56,0
,2,33063,75533,56,0
,2,33064,75535,56,0
,2,33065,75537,56,0
,2,33066,75539,56,0
,2,33067,75541,56,0
,2,33068,75543,56,0
,2,33069,75545,56,0
,2,33070,75547,56,0
,2,33071,75549,56,0
,2,33072,75551,56,0
,2,33073,75553,56,0
,2,33074,75555,56,0
,2,33075,75557,56,0
,2,33076,75559,56,0
,2,33077,75561,56,0
,2,33078,75563,56,0
,2,33079,75565,56,0
,2,33080,75567,56,0
,2,33081,75569,56,0
,2,33082,75571,56,0
,2,33083,75573,56,0
,2,33084,75575,56,0
,2,33085,75577,56,0
,2,33086,75579,56,0
,2,33087,75581,56,0
,2,33088,75583,56,0
,2,33089,75585,56,0
,2,33090,75587,56,0
,2,33091,75589,56,0
,2,33092,75591,56,0
,2,33093,75593,56,0
,2,33094,75595,56,0
,2,33095,75597,56,0
,2,33096,75599,56,0
,2,33097,75601,56,0
,2,33098,75603,56,0
,2,33099,75605,56,0
,2,33100,75607,56,0
,2,33101,75609,56,0
,2,33102,75611,56,0
,2,33103,75613,56,0
,2,33104,75615,56,0
,2,33105,75617,56,0
,2,33106,75619,56,0
,2,33107,75621,56,0
,2,33108,75623,56,0
,2,33109,75625,56,0
,2,33110,75627,56,0
,2,33111,75629,56,0
,2,33112,75631,56,0
,2,33113,75633,56,0
,2,33114,75635,56,0
,2,33115,75637,56,0
,2,33116,75639,56,0
,2,33117,75641,56,0
,2,33118,75643,56,0
,2,33119,75645,56,0
,2,33120,75647,56,0
,2,33121,75649,56,0
,2,33122,75651,56,0
,2,33123,75653,56,0
,2,33124,75655,56,0
,2,33125,75657,56,0
,2,33126,75659,56,0
,2,33127,75661,56,0
,2,33128,75663,56,0
,2,33129,75665,56,0
,2,33130,75667,56,0
,2,33131,75669,56,0
,2,33132,75671,56,0
,2,33133,75673,56,0
,2,33134,75675,56,0
,2,33135,75677,56,0
,2,33136,75679,56,0
,2,33137,75681,56,0
,2,33138,75683,56,0
,2,33139,75685,56,0
,2,33140,75687,56,0
,2,33141,75689,56,0
,2,33142,75691,56,0
,2,33143,75693,56,0
,2,33144,75695,56,0
,2,33145,75697,56,0
,2,33146,75699,56,0
,2,33147,75701,56,0
,2,33148,75703,56,0
,2,33149,75705,56,0
,2,33150,75707,56,0
,2,33151,75709,56,0
,2,33152,75711,56,0
,2,33153,75713,56,0
,2,33154,75715,56,0
,2,33155,75717,56,0
,2,33156,75719,56,0
,2,33157,75721,56,0
,2,33158,75723,56,0
,2,33159,75725,56,0
,2,33160,75727,56,0
,2,33161,75729,56,0
,2,33162,75731,56,0
,2,33163,75733,56,0
,2,33164,75735,56,0
,2,33165,75737,56,0
,2,33166,75739,56,0
,2,33167,75741,56,0
,2,33168,75743,56,0
,2,33169,75745,56,0
,2,33170,75747,56,0
,2,33171,75749,56,0
,2,33172,75751,56,0
,2,33173,75753,56,0
,2,33174,75755,56,0
,2,33175,75757,56,0
,2,33176,75759,56,0
,2,33177,75761,56,0
,2,33178,75763,56,0
,2,33179,75765,56,0
,2,33180,75767,56,0
,2,33181,75769,56,0
,2,33182,75771,56,0
,2,33183,75773,56,0
,2,33184,75775,56,0
,2,33185,75777,56,0
,2,33186,75779,56,0
,2,33187,75781,56,0
,2,33188,75783,56,0
,2,33189,75785,56,0
,2,33190,75787,56,0
,2,33191,75789,56,0
,2,33192,75791,56,0
,2,33193,75793,56,0
,2,33194,75795,56,0
,2,33195,75797,56,0
,2,33196,75799,56,0
,2,33197,75801,56,0
,2,33198,75803,56,0
,2,33199,75805,56,0
,2,33200,75807,56,0
,2,33201,75809,56,0
,2,33202,75811,56,0
,2,33203,75813,56,0
,2,33204,75815,56,0
,2,33205,75817,56,0
,2,33206,75819,56,0
,2,33207,75821,56,0
,2,33208,75823,56,0
,2,33209,75825,56,0
,2,33210,75827,56,0
,2,33211,75829,56,0
,2,33212,75831,56,0
,2,33213,75833,56,0
,2,33214,75835,56,0
,2,33215,75837,56,0
,2,33216,75839,56,0
,2,33217,75841,56,0
,2,33218,75843,56,0
,2,33219,75845,56,0
,2,33220,75847,56,0
,2,33221,75849,56,0
,2,33222,75851,56,0
,2,33223,75853,56,0
,2,33224,75855,56,0
,2,33225,75857,56,0
,2,33226,75859,56,0
,2,33227,75861,56,0
,2,33228,75863,56,0
,2,33229,75865,56,0
,2,33230,75867,56,0
,2,33231,75869,56,0
,2,33232,75871,56,0
,2,33233,75873,56,0
,2,33234,75875,56,0
,2,33235,75877,56,0
,2,33236,75879,56,0
,2,33237,75881,56,0
,2,33238,75883,56,0
,2,33239,75885,56,0
,2,33240,75887,56,0
,2,33241,75889,56,0
,2,33242,75891,56,0
,2,33243,75893,56,0
,2,33244,75895,56,0
,2,33245,75897,56,0
,2,33246,75899,56,0
,2,33247,75901,56,0
,2,33248,75903,56,0
,2,33249,75905,56,0
,2,33250,75907,56,0
,2,33251,75909,56,0
,2,33252,75911,56,0
,2,33253,75913,56,0
,2,33254,75915,56,0
,2,33255,75917,56,0
,2,33256,75919,56,0
,2,33257,75921,56,0
,2,33258,75923,56,0
,2,33259,75925,56,0
,2,33260,75927,56,0
,2,33261,75929,56,0
,2,33262,75931,56,0
,2,33263,75933,56,0
,2,33264,75935,56,0
,2,33265,75937,56,0
,2,33266,75939,56,0
,2,33267,75941,56,0
,2,33268,75943,56,0
,2,33269,75945,56,0
,2,33270,75947,56,0
,2,33271,75949,56,0
,2,33272,75951,56,0
,2,33273,75953,56,0
,2,33274,75955,56,0
,2,33275,75957,56,0
,2,33276,75959,56,0
,2,33277,75961,56,0
,2,33278,75963,56,0
,2,33279,75965,56,0
,2,33280,75967,56,0
,2,33281,75969,56,0
,2,33282,75971,56,0
,2,33283,75973,56,0
,2,33284,75975,56,0
,2,33285,75977,56,0
,2,33286,75979,56,0
,2,33287,75981,56,0
,2,33288,75983,56,0
,2,33289,75985,56,0
,2,33290,75987,56,0
,2,33291,75989,56,0
,2,33292,75991,56,0
,2,33293,75993,56,0
,2,33294,75995,56,0
,2,33295,75997,56,0
,2,33296,75999,56,0
,2,33297,76001,56,0
,2,33298,76003,56,0
,2,33299,76005,56,0
,2,33300,76007,56,0
,2,33301,76009,56,0
,2,33302,76011,56,0
,2,33303,76013,56,0
,2,33304,76015,56,0
,2,33305,76017,56,0
,2,33306,76019,56,0
,2,33307,76021,56,0
,2,33308,76023,56,0
,2,33309,76025,56,0
,2,33310,76027,56,0
,2,33311,76029,56,0
,2,33312,76031,56,0
,2,33313,76033,56,0
,2,33314,76035,56,0
,2,33315,76037,56,0
,2,33316,76039,56,0
,2,33317,76041,56,0
,2,33318,76043,56,0
,2,33319,76045,56,0
,2,33320,76047,56,0
,2,33321,76049,56,0
,2,33322,76051,56,0
,2,33323,76053,56,0
,2,33324,76055,56,0
,2,33325,76057,56,0
,2,33326,76059,56,0
,2,33327,76061,56,0
,2,33328,76063,56,0
,2,33329,76065,56,0
,2,33330,76067,56,0
,2,33331,76069,56,0
,2,33332,76071,56,0
,2,33333,76073,56,0
,2,33334,76075,56,0
,2,33335,76077,56,0
,2,33336,76079,56,0
,2,33337,76081,56,0
,2,33338,76083,56,0
,2,33339,76085,56,0
,2,33340,76087,56,0
,2,33341,76089,56,0
,2,33342,76091,56,0
,2,33343,76093,56,0
,2,33344,76095,56,0
,2,33345,76097,56,0
,2,33346,76099,56,0
,2,33347,76101,56,0
,2,33348,76103,56,0
,2,33349,76105,56,0
,2,33350,76107,56,0
,2,33351,76109,56,0
,2,33352,76111,56,0
,2,33353,76113,56,0
,2,33354,76115,56,0
,2,33355,76117,56,0
,2,33356,76119,56,0
,2,33357,76121,56,0
,2,33358,76123,56,0
,2,33359,76125,56,0
,2,33360,76127,56,0
,2,33361,76129,56,0
,2,33362,76131,56,0
,2,33363,76133,56,0
,2,33364,76135,56,0
,2,33365,76137,56,0
,2,33366,76139,56,0
,2,33367,76141,56,0
,2,33368,76143,56,0
,2,33369,76145,56,0
,2,33370,76147,56,0
,2,33371,76149,56,0
,2,33372,76151,56,0
,2,33373,76153,56,0
,2,33374,76155,56,0
,2,33375,76157,56,0
,2,33376,76159,56,0
,2,33377,76161,56,0
,2,33378,76163,56,0
,2,33379,76165,56,0
,2,33380,76167,56,0
,2,33381,76169,56,0
,2,33382,76171,56,0
,2,33383,76173,56,0
,2,33384,76175,56,0
,2,33385,76177,56,0
,2,33386,76179,56,0
,2,33387,76181,56,0
,2,33388,76183,56,0
,2,33389,76185,56,0
,2,33390,76187,56,0
,2,33391,76189,56,0
,2,33392,76191,56,0
,2,33393,76193,56,0
,2,33394,76195,56,0
,2,33395,76197,56,0
,2,33396,76199,56,0
,2,33397,76201,56,0
,2,33398,76203,56,0
,2,33399,76205,56,0
,2,33400,76207,56,0
,2,33401,76209,56,0
,2,33402,76211,56,0
,2,33403,76213,56,0
,2,33404,76215,56,0
,2,33405,76217,56,0
,2,33406,76219,56,0
,2,33407,76221,56,0
,2,33408,76223,56,0
,2,33409,76225,56,0
,2,33410,76227,56,0
,2,33411,76229,56,0
,2,33412,76231,56,0
,2,33413,76233,56,0
,2,33414,76235,56,0
,2,33415,76237,56,0
,2,33416,76239,56,0
,2,33417,76241,56,0
,2,33418,76243,56,0
,2,33419,76245,56,0
,2,33420,76247,56,0
,2,33421,76249,56,0
,2,33422,76251,56,0
,2,33423,76253,56,0
,2,33424,76255,56,0
,2,33425,76257,56,0
,2,33426,76259,56,0
,2,33427,76261,56,0
,2,33428,76263,56,0
,2,33429,76265,56,0
,2,33430,76267,56,0
,2,33431,76269,56,0
,2,33432,76271,56,0
,2,33433,76273,56,0
,2,33434,76275,56,0
,2,33435,76277,56,0
,2,33436,76279,56,0
,2,33437,76281,56,0
,2,33438,76283,56,0
,2,33439,76285,56,0
,2,33440,76287,56,0
,2,33441,76289,56,0
,2,33442,76291,56,0
,2,33443,76293,56,0
,2,33444,76295,56,0
,2,33445,76297,56,0
,2,33446,76299,56,0
,2,33447,76301,56,0
,2,33448,76303,56,0
,2,33449,76305,56,0
,2,33450,76307,56,0
,2,33451,76309,56,0
,2,33452,76311,56,0
,2,33453,76313,56,0
,2,33454,76315,56,0
,2,33455,76317,56,0
,2,33456,76319,56,0
,2,33457,76321,56,0
,2,33458,76323,56,0
,2,33459,76325,56,0
,2,33460,76327,56,0
,2,33461,76329,56,0
,2,33462,76331,56,0
,2,33463,76333,56,0
,2,33464,76335,56,0
,2,33465,76337,56,0
,2,33466,76339,56,0
,2,33467,76341,56,0
,2,33468,76343,56,0
,2,33469,76345,56,0
,2,33470,76347,56,0
,2,33471,76349,56,0
,2,33472,76351,56,0
,2,33473,76353,56,0
,2,33474,76355,56,0
,2,33475,76357,56,0
,2,33476,76359,56,0
,2,33477,76361,56,0
,2,33478,76363,56,0
,2,33479,76365,56,0
,2,33480,76367,56,0
,2,33481,76369,56,0
,2,33482,76371,56,0
,2,33483,76373,56,0
,2,33484,76375,56,0
,2,33485,76377,56,0
,2,33486,76379,56,0
,2,33487,76381,56,0
,2,33488,76383,56,0
,2,33489,76385,56,0
,2,33490,76387,56,0
,2,33491,76389,56,0
,2,33492,76391,56,0
,2,33493,76393,56,0
,2,33494,76395,56,0
,2,33495,76397,56,0
,2,33496,76399,56,0
,2,33497,76401,56,0
,2,33498,76403,56,0
,2,33499,76405,56,0
,2,33500,76407,56,0
,2,33501,76409,56,0
,2,33502,76411,56,0
,2,33503,76413,56,0
,2,33504,76415,56,0
,2,33505,76417,56,0
,2,33506,76419,56,0
,2,33507,76421,56,0
,2,33508,76423,56,0
,2,33509,76425,56,0
,2,33510,76427,56,0
,2,33511,76429,56,0
,2,33512,76431,56,0
,2,33513,76433,56,0
,2,33514,76435,56,0
,2,33515,76437,56,0
,2,33516,76439,56,0
,2,33517,76441,56,0
,2,33518,76443,56,0
,2,33519,76445,56,0
,2,33520,76447,56,0
,2,33521,76449,56,0
,2,33522,76451,56,0
,2,33523,76453,56,0
,2,33524,76455,56,0
,2,33525,76457,56,0
,2,33526,76459,56,0
,2,33527,76461,56,0
,2,33528,76463,56,0
,2,33529,76465,56,0
,2,33530,76467,56,0
,2,33531,76469,56,0
,2,33532,76471,56,0
,2,33533,76473,56,0
,2,33534,76475,56,0
,2,33535,76477,56,0
,2,33536,76479,56,0
,2,33537,76481,56,0
,2,33538,76483,56,0
,2,33539,76485,56,0
,2,33540,76487,56,0
,2,33541,76489,56,0
,2,33542,76491,56,0
,2,33543,76493,56,0
,2,33544,76495,56,0
,2,33545,76497,56,0
,2,33546,76499,56,0
,2,33547,76501,56,0
,2,33548,76503,56,0
,2,33549,76505,56,0
,2,33550,76507,56,0
,2,33551,76509,56,0
,2,33552,76511,56,0
,2,33553,76513,56,0
,2,33554,76515,56,0
,2,33555,76517,56,0
,2,33556,76519,56,0
,2,33557,76521,56,0
,2,33558,76523,56,0
,2,33559,76525,56,0
,2,33560,76527,56,0
,2,33561,76529,56,0
,2,33562,76531,56,0
,2,33563,76533,56,0
,2,33564,76535,56,0
,2,33565,76537,56,0
,2,33566,76539,56,0
,2,33567,76541,56,0
,2,33568,76543,56,0
,2,33569,76545,56,0
,2,33570,76547,56,0
,2,33571,76549,56,0
,2,33572,76551,56,0
,2,33573,76553,56,0
,2,33574,76555,56,0
,2,33575,76557,56,0
,2,33576,76559,56,0
,2,33577,76561,56,0
,2,33578,76563,56,0
,2,33579,76565,56,0
,2,33580,76567,56,0
,2,33581,76569,56,0
,2,33582,76571,56,0
,2,33583,76573,56,0
,2,33584,76575,56,0
,2,33585,76577,56,0
,2,33586,76579,56,0
,2,33587,76581,56,0
,2,33588,76583,56,0
,2,33589,76585,56,0
,2,33590,76587,56,0
,2,33591,76589,56,0
,2,33592,76591,56,0
,2,33593,76593,56,0
,2,33594,76595,56,0
,2,33595,76597,56,0
,2,33596,76599,56,0
,2,33597,76601,56,0
,2,33598,76603,56,0
,2,33599,76605,56,0
,2,33600,76607,56,0
,2,33601,76609,56,0
,2,33602,76611,56,0
,2,33603,76613,56,0
,2,33604,76615,56,0
,2,33605,76617,56,0
,2,33606,76619,56,0
,2,33607,76621,56,0
,2,33608,76623,56,0
,2,33609,76625,56,0
,2,33610,76627,56,0
,2,33611,76629,56,0
,2,33612,76631,56,0
,2,33613,76633,56,0
,2,33614,76635,56,0
,2,33615,76637,56,0
,2,33616,76639,56,0
,2,33617,76641,56,0
,2,33618,76643,56,0
,2,33619,76645,56,0
,2,33620,76647,56,0
,2,33621,76649,56,0
,2,33622,76651,56,0
,2,33623,76653,56,0
,2,33624,76655,56,0
,2,33625,76657,56,0
,2,33626,76659,56,0
,2,33627,76661,56,0
,2,33628,76663,56,0
,2,33629,76665,56,0
,2,33630,76667,56,0
,2,33631,76669,56,0
,2,33632,76671,56,0
,2,33633,76673,56,0
,2,33634,76675,56,0
,2,33635,76677,56,0
,2,33636,76679,56,0
,2,33637,76681,56,0
,2,33638,76683,56,0
,2,33639,76685,56,0
,2,33640,76687,56,0
,2,33641,76689,56,0
,2,33642,76691,56,0
,2,33643,76693,56,0
,2,33644,76695,56,0
,2,33645,76697,56,0
,2,33646,76699,56,0
,2,33647,76701,56,0
,2,33648,76703,56,0
,2,33649,76705,56,0
,2,33650,76707,56,0
,2,33651,76709,56,0
,2,33652,76711,56,0
,2,33653,76713,56,0
,2,33654,76715,56,0
,2,33655,76717,56,0
,2,33656,76719,56,0
,2,33657,76721,56,0
,2,33658,76723,56,0
,2,33659,76725,56,0
,2,33660,76727,56,0
,2,33661,76729,56,0
,2,33662,76731,56,0
,2,33663,76733,56,0
,2,33664,76735,56,0
,2,33665,76737,56,0
,2,33666,76739,56,0
,2,33667,76741,56,0
,2,33668,76743,56,0
,2,33669,76745,56,0
,2,33670,76747,56,0
,2,33671,76749,56,0
,2,33672,76751,56,0
,2,33673,76753,56,0
,2,33674,76755,56,0
,2,33675,76757,56,0
,2,33676,76759,56,0
,2,33677,76761,56,0
,2,33678,76763,56,0
,2,33679,76765,56,0
,2,33680,76767,56,0
,2,33681,76769,56,0
,2,33682,76771,56,0
,2,33683,76773,56,0
,2,33684,76775,56,0
,2,33685,76777,56,0
,2,33686,76779,56,0
,2,33687,76781,56,0
,2,33688,76783,56,0
,2,33689,76785,56,0
,2,33690,76787,56,0
,2,33691,76789,56,0
,2,33692,76791,56,0
,2,33693,76793,56,0
,2,33694,76795,56,0
,2,33695,76797,56,0
,2,33696,76799,56,0
,2,33697,76801,56,0
,2,33698,76803,56,0
,2,33699,76805,56,0
,2,33700,76807,56,0
,2,33701,76809,56,0
,2,33702,76811,56,0
,2,33703,76813,56,0
,2,33704,76815,56,0
,2,33705,76817,56,0
,2,33706,76819,56,0
,2,33707,76821,56,0
,2,33708,76823,56,0
,2,33709,76825,56,0
,2,33710,76827,56,0
,2,33711,76829,56,0
,2,33712,76831,56,0
,2,33713,76833,56,0
,2,33714,76835,56,0
,2,33715,76837,56,0
,2,33716,76839,56,0
,2,33717,76841,56,0
,2,33718,76843,56,0
,2,33719,76845,56,0
,2,33720,76847,56,0
,2,33721,76849,56,0
,2,33722,76851,56,0
,2,33723,76853,56,0
,2,33724,76855,56,0
,2,33725,76857,56,0
,2,33726,76859,56,0
,2,33727,76861,56,0
,2,33728,76863,56,0
,2,33729,76865,56,0
,2,33730,76867,56,0
,2,33731,76869,56,0
,2,33732,76871,56,0
,2,33733,76873,56,0
,2,33734,76875,56,0
,2,33735,76877,56,0
,2,33736,76879,56,0
,2,33737,76881,56,0
,2,33738,76883,56,0
,2,33739,76885,56,0
,2,33740,76887,56,0
,2,33741,76889,56,0
,2,33742,76891,56,0
,2,33743,76893,56,0
,2,33744,76895,56,0
,2,33745,76897,56,0
,2,33746,76899,56,0
,2,33747,76901,56,0
,2,33748,76903,56,0
,2,33749,76905,56,0
,2,33750,76907,56,0
,2,33751,76909,56,0
,2,33752,76911,56,0
,2,33753,76913,56,0
,2,33754,76915,56,0
,2,33755,76917,56,0
,2,33756,76919,56,0
,2,33757,76921,56,0
,2,33758,76923,56,0
,2,33759,76925,56,0
,2,33760,76927,56,0
,2,33761,76929,56,0
,2,33762,76931,56,0
,2,33763,76933,56,0
,2,33764,76935,56,0
,2,33765,76937,56,0
,2,33766,76939,56,0
,2,33767,76941,56,0
,2,33768,76943,56,0
,2,33769,76945,56,0
,2,33770,76947,56,0
,2,33771,76949,56,0
,2,33772,76951,56,0
,2,33773,76953,56,0
,2,33774,76955,56,0
,2,33775,76957,56,0
,2,33776,76959,56,0
,2,33777,76961,56,0
,2,33778,76963,56,0
,2,33779,76965,56,0
,2,33780,76967,56,0
,2,33781,76969,56,0
,2,33782,76971,56,0
,2,33783,76973,56,0
,2,33784,76975,56,0
,2,33785,76977,56,0
,2,33786,76979,56,0
,2,33787,76981,56,0
,2,33788,76983,56,0
,2,33789,76985,56,0
,2,33790,76987,56,0
,2,33791,76989,56,0
,2,33792,76991,56,0
,2,33793,76993,56,0
,2,33794,76995,56,0
,2,33795,76997,56,0
,2,33796,76999,56,0
,2,33797,77001,56,0
,2,33798,77003,56,0
,2,33799,77005,56,0
,2,33800,77007,56,0
,2,33801,77009,56,0
,2,33802,77011,56,0
,2,33803,77013,56,0
,2,33804,77015,56,0
,2,33805,77017,56,0
,2,33806,77019,56,0
,2,33807,77021,56,0
,2,33808,77023,56,0
,2,33809,77025,56,0
,2,33810,77027,56,0
,2,33811,77029,56,0
,2,33812,77031,56,0
,2,33813,77033,56,0
,2,33814,77035,56,0
,2,33815,77037,56,0
,2,33816,77039,56,0
,2,33817,77041,56,0
,2,33818,77043,56,0
,2,33819,77045,56,0
,2,33820,77047,56,0
,2,33821,77049,56,0
,2,33822,77051,56,0
,2,33823,77053,56,0
,2,33824,77055,56,0
,2,33825,77057,56,0
,2,33826,77059,56,0
,2,33827,77061,56,0
,2,33828,77063,56,0
,2,33829,77065,56,0
,2,33830,77067,56,0
,2,33831,77069,56,0
,2,33832,77071,56,0
,2,33833,77073,56,0
,2,33834,77075,56,0
,2,33835,77077,56,0
,2,33836,77079,56,0
,2,33837,77081,56,0
,2,33838,77083,56,0
,2,33839,77085,56,0
,2,33840,77087,56,0
,2,33841,77089,56,0
,2,33842,77091,56,0
,2,33843,77093,56,0
,2,33844,77095,56,0
,2,33845,77097,56,0
,2,33846,77099,56,0
,2,33847,77101,56,0
,2,33848,77103,56,0
,2,33849,77105,56,0
,2,33850,77107,56,0
,2,33851,77109,56,0
,2,33852,77111,56,0
,2,33853,77113,56,0
,2,33854,77115,56,0
,2,33855,77117,56,0
,2,33856,77119,56,0
,2,33857,77121,56,0
,2,33858,77123,56,0
,2,33859,77125,56,0
,2,33860,77127,56,0
,2,33861,77129,56,0
,2,33862,77131,56,0
,2,33863,77133,56,0
,2,33864,77135,56,0
,2,33865,77137,56,0
,2,33866,77139,56,0
,2,33867,77141,56,0
,2,33868,77143,56,0
,2,33869,77145,56,0
,2,33870,77147,56,0
,2,33871,77149,56,0
,2,33872,77151,56,0
,2,33873,77153,56,0
,2,33874,77155,56,0
,2,33875,77157,56,0
,2,33876,77159,56,0
,2,33877,77161,56,0
,2,33878,77163,56,0
,2,33879,77165,56,0
,2,33880,77167,56,0
,2,33881,77169,56,0
,2,33882,77171,56,0
,2,33883,77173,56,0
,2,33884,77175,56,0
,2,33885,77177,56,0
,2,33886,77179,56,0
,2,33887,77181,56,0
,2,33888,77183,56,0
,2,33889,77185,56,0
,2,33890,77187,56,0
,2,33891,77189,56,0
,2,33892,77191,56,0
,2,33893,77193,56,0
,2,33894,77195,56,0
,2,33895,77197,56,0
,2,33896,77199,56,0
,2,33897,77201,56,0
,2,33898,77203,56,0
,2,33899,77205,56,0
,2,33900,77207,56,0
,2,33901,77209,56,0
,2,33902,77211,56,0
,2,33903,77213,56,0
,2,33904,77215,56,0
,2,33905,77217,56,0
,2,33906,77219,56,0
,2,33907,77221,56,0
,2,33908,77223,56,0
,2,33909,77225,56,0
,2,33910,77227,56,0
,2,33911,77229,56,0
,2,33912,77231,56,0
,2,33913,77233,56,0
,2,33914,77235,56,0
,2,33915,77237,56,0
,2,33916,77239,56,0
,2,33917,77241,56,0
,2,33918,77243,56,0
,2,33919,77245,56,0
,2,33920,77247,56,0
,2,33921,77249,56,0
,2,33922,77251,56,0
,2,33923,77253,56,0
,2,33924,77255,56,0
,2,33925,77257,56,0
,2,33926,77259,56,0
,2,33927,77261,56,0
,2,33928,77263,56,0
,2,33929,77265,56,0
,2,33930,77267,56,0
,2,33931,77269,56,0
,2,33932,77271,56,0
,2,33933,77273,56,0
,2,33934,77275,56,0
,2,33935,77277,56,0
,2,33936,77279,56,0
,2,33937,77281,56,0
,2,33938,77283,56,0
,2,33939,77285,56,0
,2,33940,77287,56,0
,2,33941,77289,56,0
,2,33942,77291,56,0
,2,33943,77293,56,0
,2,33944,77295,56,0
,2,33945,77297,56,0
,2,33946,77299,56,0
,2,33947,77301,56,0
,2,33948,77303,56,0
,2,33949,77305,56,0
,2,33950,77307,56,0
,2,33951,77309,56,0
,2,33952,77311,56,0
,2,33953,77313,56,0
,2,33954,77315,56,0
,2,33955,77317,56,0
,2,33956,77319,56,0
,2,33957,77321,56,0
,2,33958,77323,56,0
,2,33959,77325,56,0
,2,33960,77327,56,0
,2,33961,77329,56,0
,2,33962,77331,56,0
,2,33963,77333,56,0
,2,33964,77335,56,0
,2,33965,77337,56,0
,2,33966,77339,56,0
,2,33967,77341,56,0
,2,33968,77343,56,0
,2,33969,77345,56,0
,2,33970,77347,56,0
,2,33971,77349,56,0
,2,33972,77351,56,0
,2,33973,77353,56,0
,2,33974,77355,56,0
,2,33975,77357,56,0
,2,33976,77359,56,0
,2,33977,77361,56,0
,2,33978,77363,56,0
,2,33979,77365,56,0
,2,33980,77367,56,0
,2,33981,77369,56,0
,2,33982,77371,56,0
,2,33983,77373,56,0
,2,33984,77375,56,0
,2,33985,77377,56,0
,2,33986,77379,56,0
,2,33987,77381,56,0
,2,33988,77383,56,0
,2,33989,77385,56,0
,2,33990,77387,56,0
,2,33991,77389,56,0
,2,33992,77391,56,0
,2,33993,77393,56,0
,2,33994,77395,56,0
,2,33995,77397,56,0
,2,33996,77399,56,0
,2,33997,77401,56,0
,2,33998,77403,56,0
,2,33999,77405,56,0
,2,34000,77407,56,0
,2,34001,77409,56,0
,2,34002,77411,56,0
,2,34003,77413,56,0
,2,34004,77415,56,0
,2,34005,77417,56,0
,2,34006,77419,56,0
,2,34007,77421,56,0
,2,34008,77423,56,0
,2,34009,77425,56,0
,2,34010,77427,56,0
,2,34011,77429,56,0
,2,34012,77431,56,0
,2,34013,77433,56,0
,2,34014,77435,56,0
,2,34015,77437,56,0
,2,34016,77439,56,0
,2,34017,77441,56,0
,2,34018,77443,56,0
,2,34019,77445,56,0
,2,34020,77447,56,0
,2,34021,77449,56,0
,2,34022,77451,56,0
,2,34023,77453,56,0
,2,34024,77455,56,0
,2,34025,77457,56,0
,2,34026,77459,56,0
,2,34027,77461,56,0
,2,34028,77463,56,0
,2,34029,77465,56,0
,2,34030,77467,56,0
,2,34031,77469,56,0
,2,34032,77471,56,0
,2,34033,77473,56,0
,2,34034,77475,56,0
,2,34035,77477,56,0
,2,34036,77479,56,0
,2,34037,77481,56,0
,2,34038,77483,56,0
,2,34039,77485,56,0
,2,34040,77487,56,0
,2,34041,77489,56,0
,2,34042,77491,56,0
,2,34043,77493,56,0
,2,34044,77495,56,0
,2,34045,77497,56,0
,2,34046,77499,56,0
,2,34047,77501,56,0
,2,34048,77503,56,0
,2,34049,77505,56,0
,2,34050,77507,56,0
,2,34051,77509,56,0
,2,34052,77511,56,0
,2,34053,77513,56,0
,2,34054,77515,56,0
,2,34055,77517,56,0
,2,34056,77519,56,0
,2,34057,77521,56,0
,2,34058,77523,56,0
,2,34059,77525,56,0
,2,34060,77527,56,0
,2,34061,77529,56,0
,2,34062,77531,56,0
,2,34063,77533,56,0
,2,34064,77535,56,0
,2,34065,77537,56,0
,2,34066,77539,56,0
,2,34067,77541,56,0
,2,34068,77543,56,0
,2,34069,77545,56,0
,2,34070,77547,56,0
,2,34071,77549,56,0
,2,34072,77551,56,0
,2,34073,77553,56,0
,2,34074,77555,56,0
,2,34075,77557,56,0
,2,34076,77559,56,0
,2,34077,77561,56,0
,2,34078,77563,56,0
,2,34079,77565,56,0
,2,34080,77567,56,0
,2,34081,77569,56,0
,2,34082,77571,56,0
,2,34083,77573,56,0
,2,34084,77575,56,0
,2,34085,77577,56,0
,2,34086,77579,56,0
,2,34087,77581,56,0
,2,34088,77583,56,0
,2,34089,77585,56,0
,2,34090,77587,56,0
,2,34091,77589,56,0
,2,34092,77591,56,0
,2,34093,77593,56,0
,2,34094,77595,56,0
,2,34095,77597,56,0
,2,34096,77599,56,0
,2,34097,77601,56,0
,2,34098,77603,56,0
,2,34099,77605,56,0
,2,34100,77607,56,0
,2,34101,77609,56,0
,2,34102,77611,56,0
,2,34103,77613,56,0
,2,34104,77615,56,0
,2,34105,77617,56,0
,2,34106,77619,56,0
,2,34107,77621,56,0
,2,34108,77623,56,0
,2,34109,77625,56,0
,2,34110,77627,56,0
,2,34111,77629,56,0
,2,34112,77631,56,0
,2,34113,77633,56,0
,2,34114,77635,56,0
,2,34115,77637,56,0
,2,34116,77639,56,0
,2,34117,77641,56,0
,2,34118,77643,56,0
,2,34119,77645,56,0
,2,34120,77647,56,0
,2,34121,77649,56,0
,2,34122,77651,56,0
,2,34123,77653,56,0
,2,34124,77655,56,0
,2,34125,77657,56,0
,2,34126,77659,56,0
,2,34127,77661,56,0
,2,34128,77663,56,0
,2,34129,77665,56,0
,2,34130,77667,56,0
,2,34131,77669,56,0
,2,34132,77671,56,0
,2,34133,77673,56,0
,2,34134,77675,56,0
,2,34135,77677,56,0
,2,34136,77679,56,0
,2,34137,77681,56,0
,2,34138,77683,56,0
,2,34139,77685,56,0
,2,34140,77687,56,0
,2,34141,77689,56,0
,2,34142,77691,56,0
,2,34143,77693,56,0
,2,34144,77695,56,0
,2,34145,77697,56,0
,2,34146,77699,56,0
,2,34147,77701,56,0
,2,34148,77703,56,0
,2,34149,77705,56,0
,2,34150,77707,56,0
,2,34151,77709,56,0
,2,34152,77711,56,0
,2,34153,77713,56,0
,2,34154,77715,56,0
,2,34155,77717,56,0
,2,34156,77719,56,0
,2,34157,77721,56,0
,2,34158,77723,56,0
,2,34159,77725,56,0
,2,34160,77727,56,0
,2,34161,77729,56,0
,2,34162,77731,56,0
,2,34163,77733,56,0
,2,34164,77735,56,0
,2,34165,77737,56,0
,2,34166,77739,56,0
,2,34167,77741,56,0
,2,34168,77743,56,0
,2,34169,77745,56,0
,2,34170,77747,56,0
,2,34171,77749,56,0
,2,34172,77751,56,0
,2,34173,77753,56,0
,2,34174,77755,56,0
,2,34175,77757,56,0
,2,34176,77759,56,0
,2,34177,77761,56,0
,2,34178,77763,56,0
,2,34179,77765,56,0
,2,34180,77767,56,0
,2,34181,77769,56,0
,2,34182,77771,56,0
,2,34183,77773,56,0
,2,34184,77775,56,0
,2,34185,77777,56,0
,2,34186,77779,56,0
,2,34187,77781,56,0
,2,34188,77783,56,0
,2,34189,77785,56,0
,2,34190,77787,56,0
,2,34191,77789,56,0
,2,34192,77791,56,0
,2,34193,77793,56,0
,2,34194,77795,56,0
,2,34195,77797,56,0
,2,34196,77799,56,0
,2,34197,77801,56,0
,2,34198,77803,56,0
,2,34199,77805,56,0
,2,34200,77807,56,0
,2,34201,77809,56,0
,2,34202,77811,56,0
,2,34203,77813,56,0
,2,34204,77815,56,0
,2,34205,77817,56,0
,2,34206,77819,56,0
,2,34207,77821,56,0
,2,34208,77823,56,0
,2,34209,77825,56,0
,2,34210,77827,56,0
,2,34211,77829,56,0
,2,34212,77831,56,0
,2,34213,77833,56,0
,2,34214,77835,56,0
,2,34215,77837,56,0
,2,34216,77839,56,0
,2,34217,77841,56,0
,2,34218,77843,56,0
,2,34219,77845,56,0
,2,34220,77847,56,0
,2,34221,77849,56,0
,2,34222,77851,56,0
,2,34223,77853,56,0
,2,34224,77855,56,0
,2,34225,77857,56,0
,2,34226,77859,56,0
,2,34227,77861,56,0
,2,34228,77863,56,0
,2,34229,77865,56,0
,2,34230,77867,56,0
,2,34231,77869,56,0
,2,34232,77871,56,0
,2,34233,77873,56,0
,2,34234,77875,56,0
,2,34235,77877,56,0
,2,34236,77879,56,0
,2,34237,77881,56,0
,2,34238,77883,56,0
,2,34239,77885,56,0
,2,34240,77887,56,0
,2,34241,77889,56,0
,2,34242,77891,56,0
,2,34243,77893,56,0
,2,34244,77895,56,0
,2,34245,77897,56,0
,2,34246,77899,56,0
,2,34247,77901,56,0
,2,34248,77903,56,0
,2,34249,77905,56,0
,2,34250,77907,56,0
,2,34251,77909,56,0
,2,34252,77911,56,0
,2,34253,77913,56,0
,2,34254,77915,56,0
,2,34255,77917,56,0
,2,34256,77919,56,0
,2,34257,77921,56,0
,2,34258,77923,56,0
,2,34259,77925,56,0
,2,34260,77927,56,0
,2,34261,77929,56,0
,2,34262,77931,56,0
,2,34263,77933,56,0
,2,34264,77935,56,0
,2,34265,77937,56,0
,2,34266,77939,56,0
,2,34267,77941,56,0
,2,34268,77943,56,0
,2,34269,77945,56,0
,2,34270,77947,56,0
,2,34271,77949,56,0
,2,34272,77951,56,0
,2,34273,77953,56,0
,2,34274,77955,56,0
,2,34275,77957,56,0
,2,34276,77959,56,0
,2,34277,77961,56,0
,2,34278,77963,56,0
,2,34279,77965,56,0
,2,34280,77967,56,0
,2,34281,77969,56,0
,2,34282,77971,56,0
,2,34283,77973,56,0
,2,34284,77975,56,0
,2,34285,77977,56,0
,2,34286,77979,56,0
,2,34287,77981,56,0
,2,34288,77983,56,0
,2,34289,77985,56,0
,2,34290,77987,56,0
,2,34291,77989,56,0
,2,34292,77991,56,0
,2,34293,77993,56,0
,2,34294,77995,56,0
,1,1,77997,262160,0
,0,483,77999,32,1
,0,483,78001,32,1
,0,483,78003,32,1
,0,483,78005,32,1
,1,34295,78007,240,0
,1,34295,78009,248,1
,1,1,78011,88,1
,1,34295,78013,272,0
,1,34295,78015,216,1
,1,1,78017,104,1
,1,34295,78019,64,0
,1,34295,78021,120,1
,1,1,78023,40,1
,1,34295,78025,688,0
,1,34295,78027,344,1
,1,1,78029,136,1
,1,34295,78031,128,0
,1,34295,78033,248,1
,1,1,78035,88,1
,1,34295,78037,48,0
,1,34295,78039,88,1
,1,1,78041,32,1
,1,34295,78043,704,0
,1,34295,78045,864,0
,1,34295,78047,1264,0
,1,34295,78049,1400,2
,1,1,78051,1184,1
,1,1,78053,32,1
,1,34295,78055,432,0
,1,34295,78057,504,2
,1,1,78059,304,1
,1,1,78061,24,1
,5,1467,78063,72,7
,1,34295,78065,576,0
,1,34295,78067,672,0
,1,34295,78069,600,1
,1,1,78071,208,1
,1,34295,78073,208,0
,1,34295,78075,248,1
,1,1,78077,104,1
,0,16,78079,64,4
,1,34296,78081,56,2
,0,16,78083,64,4
,1,34296,78085,56,2
,0,16,78087,64,4
,1,34296,78089,56,2
,0,16,78091,64,4
,1,34296,78093,56,2
,0,16,78095,64,4
,1,34296,78097,56,2
,5,53,78099,72,7
,0,16,78101,64,1
,1,34296,78103,488,37
,0,87,78105,16,1
,2,34297,78107,32,0
,0,87,78109,16,1
,0,87,78111,16,1
,2,34298,78113,32,0
,0,87,78115,16,1
,2,34299,78117,40,0
,0,87,78119,16,1
,2,34300,78121,40,0
,2,34301,78123,40,0
,2,34302,78125,40,0
,2,34303,78127,40,0
,2,34304,78129,40,0
,2,34305,78131,40,0
,2,34306,78133,40,0
,2,34307,78135,40,0
,2,34308,78137,40,0
,2,34309,78139,40,0
,2,34310,78141,48,0
,2,34311,78143,48,0
,2,34312,78145,40,0
,2,34313,78147,40,0
,1,34314,78149,32,2
,0,16,78151,64,6
,1,34314,78153,32,2
,0,16,78155,64,6
,0,16,78157,64,6
,1,34314,78159,32,2
,0,16,78161,64,6
,1,34314,78163,32,2
,0,16,78165,64,6
,1,34314,78167,32,2
,0,16,78169,64,6
,1,34314,78171,32,2
,0,16,78173,64,6
,1,34314,78175,32,2
,0,16,78177,64,6
,1,34314,78179,32,2
,0,16,78181,64,6
,1,34314,78183,32,2
,0,16,78185,64,6
,1,34314,78187,32,2
,0,16,78189,64,6
,1,34314,78191,32,2
,0,16,78193,64,6
,1,34314,78195,32,2
,0,16,78197,64,6
,1,34314,78199,32,2
,0,16,78201,64,4
,0,16,78203,64,4
,1,34296,78205,56,2
,1,34296,78207,80,4
,1,90,78209,144,8
,0,16,78211,64,1
,0,16,78213,64,4
,1,34296,78215,56,2
,1,90,78217,144,8
,0,16,78219,64,4
,1,34296,78221,56,2
,0,16,78223,64,4
,1,34296,78225,56,2
,0,16,78227,64,4
,1,34296,78229,56,2
,0,16,78231,64,33
,0,16,78233,64,4
,1,34296,78235,56,2
,0,16,78237,64,4
,1,34296,78239,56,2
,0,16,78241,64,4
,1,34296,78243,56,2
,0,16,78245,64,4
,1,34296,78247,56,2
,0,16,78249,64,4
,1,34296,78251,152,10
,1,34296,78253,248,18
,1,34314,78255,32,2
,0,16,78257,64,6
,1,34314,78259,32,2
,0,16,78261,64,6
,0,16,78263,64,6
,1,34314,78265,32,2
,1,34314,78267,32,2
,0,16,78269,64,5
,1,34314,78271,32,2
,0,16,78273,64,7
,1,34296,78275,344,23
,2,34315,78277,32,0
,2,34316,78279,32,0
,2,34317,78281,40,0
,2,34318,78283,32,0
,2,34319,78285,40,0
,2,34320,78287,32,0
,1,34314,78289,32,2
,0,16,78291,64,6
,1,34314,78293,32,2
,0,16,78295,64,6
,0,16,78297,64,6
,1,34314,78299,32,2
,0,16,78301,64,6
,1,34314,78303,32,2
,0,16,78305,64,6
,1,34314,78307,32,2
,0,16,78309,64,6
,1,34314,78311,32,2
,0,16,78313,64,6
,1,34314,78315,32,2
,0,16,78317,64,4
,1,34296,78319,104,6
,1,34314,78321,32,1
,0,16,78323,64,7
,1,34314,78325,32,2
,0,16,78327,64,6
,0,16,78329,64,5
,3,799,78331,24,6
,1,131,78333,48,0
,3,50,78335,24,43
,3,50,78337,24,21
,3,120,78339,32,5
,1,69,78341,32,2
,1,131,78343,40,3
,0,16,78345,64,5
,1,34296,78347,128,4
,2,34321,78349,32,0
,1,34314,78351,32,1
,0,16,78353,64,7
,1,34314,78355,32,2
,0,16,78357,64,7
,1,34314,78359,32,2
,0,16,78361,64,7
,1,34314,78363,32,2
,0,16,78365,64,5
,2,34322,78367,40,2
,2,34323,78369,32,0
,2,34324,78371,40,0
,2,34325,78373,32,0
,2,34326,78375,40,2
,2,34327,78377,40,2
,2,34328,78379,40,0
,2,34329,78381,40,2
,1,34296,78383,80,3
,2,34330,78385,40,0
,1,34314,78387,32,2
,0,16,78389,64,5
,1,34296,78391,248,18
,2,34331,78393,40,0
,2,34332,78395,32,0
,2,34333,78397,32,0
,2,34334,78399,32,0
,2,34335,78401,48,0
,2,34336,78403,40,0
,5,53,78405,72,6
,1,34314,78407,32,1
,0,16,78409,64,7
,1,34314,78411,32,2
,0,16,78413,64,6
,0,16,78415,64,7
,1,34314,78417,32,2
,0,16,78419,64,7
,1,34314,78421,32,2
,0,16,78423,64,7
,1,34314,78425,32,2
,0,16,78427,64,7
,1,34314,78429,32,2
,0,16,78431,64,7
,1,34314,78433,32,2
,0,16,78435,64,7
,1,34314,78437,32,2
,0,16,78439,64,5
,1,34296,78441,176,12
,2,34337,78443,40,0
,1,34296,78445,56,2
,1,1,78447,32,2
,1,34314,78449,32,1
,0,16,78451,64,5
,1,34296,78453,56,1
,1,34314,78455,32,1
,0,16,78457,64,5
,3,831,78459,24,12
,1,131,78461,48,0
,5,53,78463,72,6
,5,53,78465,72,6
,5,53,78467,72,6
,5,53,78469,72,6
,5,53,78471,72,6
,5,53,78473,72,6
,5,53,78475,72,6
,5,53,78477,72,6
,5,53,78479,72,6
,5,53,78481,72,6
,5,53,78483,72,6
,5,53,78485,72,6
,5,53,78487,72,6
,5,53,78489,72,6
,5,53,78491,72,6
,5,53,78493,72,6
,5,53,78495,72,6
,5,53,78497,72,6
,5,53,78499,72,6
,1,131,78501,264,19
,0,16,78503,64,3
,1,34296,78505,344,12
,2,34338,78507,32,0
,2,34339,78509,40,0
,2,34340,78511,40,0
,2,34341,78513,40,0
,2,34342,78515,40,0
,2,34343,78517,40,0
,2,34344,78519,40,0
,2,34345,78521,40,0
,2,34346,78523,32,0
,2,34347,78525,40,0
,2,34348,78527,32,0
,2,34349,78529,40,0
,1,34314,78531,32,1
,0,16,78533,64,7
,1,34314,78535,32,2
,0,16,78537,64,7
,1,34314,78539,32,2
,0,16,78541,64,7
,1,34314,78543,32,2
,0,16,78545,64,7
,1,34314,78547,32,2
,0,16,78549,64,7
,1,34314,78551,32,2
,0,16,78553,64,7
,1,34314,78555,32,2
,0,16,78557,64,7
,1,34314,78559,32,2
,0,16,78561,64,7
,1,34314,78563,32,2
,0,16,78565,64,7
,1,34314,78567,32,2
,0,16,78569,64,7
,1,34314,78571,32,2
,0,16,78573,64,7
,1,34314,78575,32,2
,0,16,78577,64,5
,1,34296,78579,56,2
,3,122,78581,24,4
,1,131,78583,48,0
,0,16,78585,64,4
,1,34296,78587,2216,109
,2,784,78589,32,0
,2,34350,78591,32,0
,2,34351,78593,40,0
,2,34352,78595,32,0
,2,34353,78597,32,0
,2,34354,78599,32,0
,2,34355,78601,32,0
,2,34356,78603,32,0
,2,34357,78605,32,0
,2,34358,78607,32,0
,2,34359,78609,32,0
,2,787,78611,48,0
,2,34360,78613,32,0
,2,788,78615,40,0
,2,34361,78617,48,0
,2,34362,78619,48,0
,2,34363,78621,40,0
,2,34364,78623,32,0
,2,34365,78625,32,0
,2,34366,78627,32,0
,2,34367,78629,32,0
,2,34368,78631,32,0
,2,34369,78633,32,0
,2,34370,78635,32,0
,2,34371,78637,40,0
,2,34372,78639,40,0
,2,34373,78641,40,0
,2,34374,78643,32,0
,2,34375,78645,40,0
,2,34376,78647,40,0
,2,34377,78649,40,0
,2,34378,78651,32,0
,2,34379,78653,32,0
,2,34380,78655,32,0
,2,34381,78657,40,0
,2,34382,78659,40,0
,2,34383,78661,40,0
,2,34384,78663,32,0
,2,34385,78665,40,0
,2,34386,78667,40,0
,2,34387,78669,32,0
,5,1047,78671,72,14
,5,1048,78673,72,14
,5,1045,78675,72,13
,5,1046,78677,72,13
,5,1044,78679,72,13
,2,34388,78681,40,0
,2,34389,78683,40,0
,2,34390,78685,32,0
,2,34391,78687,32,0
,2,34392,78689,40,0
,1,34314,78691,32,1
,0,16,78693,64,7
,1,34314,78695,32,2
,0,16,78697,64,6
,0,16,78699,64,7
,1,34314,78701,32,2
,0,16,78703,64,7
,2,34393,78705,40,2
,1,34314,78707,32,2
,0,16,78709,64,7
,2,34394,78711,40,0
,2,34395,78713,32,0
,2,34396,78715,32,0
,2,34397,78717,40,0
,2,34398,78719,32,0
,2,34394,78721,40,0
,2,34399,78723,32,0
,2,34400,78725,40,0
,2,34401,78727,40,0
,2,34402,78729,40,0
,2,34403,78731,40,0
,2,34404,78733,40,0
,2,34405,78735,40,0
,2,34406,78737,40,0
,2,34407,78739,40,2
,2,34408,78741,40,2
,2,34409,78743,40,2
,2,34410,78745,40,2
,2,34411,78747,40,0
,2,34412,78749,40,0
,2,34413,78751,40,0
,2,34414,78753,40,0
,2,34415,78755,40,0
,2,34416,78757,40,0
,2,34417,78759,40,0
,2,34418,78761,40,2
,2,34419,78763,40,2
,2,34420,78765,40,0
,2,34421,78767,40,2
,2,34422,78769,40,2
,2,34423,78771,40,2
,2,34424,78773,40,2
,2,34425,78775,40,0
,2,34426,78777,40,2
,2,34427,78779,40,2
,2,34428,78781,40,2
,2,34429,78783,40,2
,2,34430,78785,40,2
,2,34431,78787,40,2
,2,34432,78789,40,2
,2,34433,78791,40,2
,1,90,78793,1040,44
,0,16,78795,64,4
,1,34296,78797,56,2
,0,16,78799,64,4
,1,34296,78801,56,2
,0,16,78803,64,4
,1,34296,78805,56,2
,0,16,78807,64,4
,1,34296,78809,56,2
,0,16,78811,64,4
,1,34296,78813,56,2
,0,16,78815,64,4
,1,34296,78817,56,2
,0,16,78819,64,4
,1,34296,78821,56,2
,0,16,78823,64,4
,1,34296,78825,56,2
,0,16,78827,64,4
,1,34296,78829,56,2
,0,16,78831,64,4
,1,34296,78833,56,2
,0,16,78835,64,4
,1,34296,78837,56,2
,0,16,78839,64,4
,1,34296,78841,56,2
,0,16,78843,64,4
,1,34296,78845,56,2
,0,16,78847,64,4
,1,34296,78849,56,2
,0,16,78851,64,4
,1,34296,78853,56,2
,0,16,78855,64,4
,1,34296,78857,56,2
,0,16,78859,64,4
,1,34296,78861,56,2
,0,16,78863,64,4
,1,34296,78865,56,2
,0,16,78867,64,4
,1,34296,78869,56,2
,0,16,78871,64,4
,1,34296,78873,56,2
,0,16,78875,64,4
,1,34296,78877,56,2
,0,16,78879,64,4
,1,34296,78881,56,2
,3,128,78883,24,47
,0,16,78885,64,5
,0,16,78887,64,4
,1,34296,78889,56,2
,1,34296,78891,248,14
,2,34434,78893,40,0
,2,34435,78895,40,0
,0,16,78897,64,4
,1,34296,78899,56,2
,1,34314,78901,32,2
,1,34296,78903,80,4
,2,34436,78905,48,0
,0,16,78907,64,4
,1,34296,78909,56,2
,1,34314,78911,32,2
,0,16,78913,64,5
,1,34314,78915,32,2
,0,16,78917,64,7
,0,16,78919,64,7
,2,34437,78921,32,0
,2,34438,78923,40,2
,2,34439,78925,32,0
,2,34440,78927,32,0
,2,34441,78929,40,0
,2,34442,78931,32,0
,2,34443,78933,32,0
,2,34444,78935,32,0
,2,34445,78937,40,0
,2,34446,78939,32,0
,5,53,78941,72,7
,1,34296,78943,488,34
,2,34447,78945,32,0
,2,34448,78947,40,0
,2,34449,78949,32,0
,2,34450,78951,32,0
,5,1022,78953,72,9
,5,1022,78955,72,9
,5,1022,78957,72,9
,2,34451,78959,32,0
,2,34452,78961,32,0
,1,34314,78963,32,2
,0,16,78965,64,7
,1,34314,78967,32,2
,0,16,78969,64,7
,0,16,78971,64,7
,1,34314,78973,32,2
,0,16,78975,64,7
,1,34314,78977,32,2
,0,16,78979,64,7
,1,34314,78981,32,2
,0,16,78983,64,7
,1,34314,78985,32,2
,0,16,78987,64,7
,1,34296,78989,344,13
,1,34296,78991,248,12
,2,34453,78993,32,0
,2,34454,78995,32,0
,1,34296,78997,248,8
,1,34314,78999,32,1
,0,16,79001,64,7
,1,34314,79003,32,2
,0,16,79005,64,5
,0,16,79007,64,7
,1,34314,79009,32,2
,0,16,79011,64,7
,1,34314,79013,32,2
,0,16,79015,64,7
,1,34314,79017,32,2
,0,16,79019,64,7
,1,34314,79021,32,2
,0,16,79023,64,7
,1,34314,79025,32,2
,0,16,79027,64,7
,1,34314,79029,32,2
,0,16,79031,64,5
,1,34314,79033,32,2
,0,16,79035,64,4
,1,34314,79037,32,2
,0,16,79039,64,7
,1,34314,79041,32,2
,0,16,79043,64,7
,1,34314,79045,32,2
,0,16,79047,64,7
,1,34314,79049,32,2
,0,16,79051,64,7
,1,34314,79053,32,2
,0,16,79055,64,7
,1,34314,79057,32,2
,0,16,79059,64,7
,1,34314,79061,32,2
,0,16,79063,64,7
,1,34314,79065,32,2
,0,16,79067,64,7
,1,34314,79069,32,2
,0,16,79071,64,7
,1,34314,79073,32,2
,0,16,79075,64,5
,5,53,79077,72,6
,1,34296,79079,488,34
,2,34455,79081,32,0
,2,34456,79083,40,0
,2,34457,79085,32,0
,1,34296,79087,176,12
,2,34458,79089,32,0
,1,34296,79091,128,4
,1,34314,79093,32,1
,0,16,79095,64,7
,1,34314,79097,32,2
,0,16,79099,64,5
,0,16,79101,64,7
,1,34314,79103,32,2
,0,16,79105,64,7
,1,34314,79107,32,2
,0,16,79109,64,5
,1,34296,79111,56,2
,3,488,79113,104,6
,1,131,79115,48,0
,0,16,79117,64,4
,1,34314,79119,32,2
,0,16,79121,64,6
,1,34314,79123,32,2
,0,16,79125,64,6
,0,16,79127,64,6
,1,34314,79129,32,2
,0,16,79131,64,6
,1,34314,79133,32,2
,0,16,79135,64,6
,1,34314,79137,32,2
,0,16,79139,64,6
,1,34314,79141,32,2
,0,16,79143,64,6
,1,34314,79145,32,2
,0,16,79147,64,6
,1,34314,79149,32,2
,0,16,79151,64,6
,1,34314,79153,32,2
,0,16,79155,64,6
,1,34314,79157,32,2
,0,16,79159,64,6
,1,34314,79161,32,2
,0,16,79163,64,4
,1,34296,79165,104,5
,2,34459,79167,48,0
,1,34296,79169,1544,88
,2,34460,79171,32,0
,2,34461,79173,40,0
,2,34462,79175,40,0
,2,34463,79177,40,0
,2,34464,79179,40,0
,2,34465,79181,40,0
,2,34466,79183,32,0
,2,34467,79185,40,0
,2,34468,79187,40,0
,2,34469,79189,40,0
,2,34470,79191,40,0
,2,34471,79193,40,0
,2,34472,79195,40,0
,2,34473,79197,40,0
,2,34474,79199,40,0
,2,34475,79201,40,0
,2,34476,79203,40,0
,2,34477,79205,40,0
,2,34478,79207,40,0
,2,34479,79209,40,0
,2,34480,79211,40,0
,1,34296,79213,848,52
,1,131,79215,48,0
,0,16,79217,64,5
,5,53,79219,72,6
,1,34314,79221,32,1
,0,16,79223,64,7
,1,34314,79225,32,2
,0,16,79227,64,6
,0,16,79229,64,7
,1,34314,79231,32,2
,1,34314,79233,40,1
,0,16,79235,64,6
,1,34296,79237,80,2
,2,34481,79239,32,0
,1,34314,79241,32,2
,0,16,79243,64,7
,1,34314,79245,32,2
,0,16,79247,64,7
,1,34314,79249,32,2
,0,16,79251,64,7
,0,16,79253,64,5
,1,34296,79255,344,19
,2,34482,79257,40,0
,2,34483,79259,32,0
,1,34314,79261,32,2
,0,16,79263,64,6
,1,34314,79265,32,2
,0,16,79267,64,6
,0,16,79269,64,6
,1,34314,79271,32,1
,0,16,79273,64,7
,1,34314,79275,32,2
,0,16,79277,64,6
,0,16,79279,64,7
,1,34314,79281,32,2
,0,16,79283,64,7
,1,34314,79285,32,2
,0,16,79287,64,7
,1,34314,79289,32,2
,0,16,79291,64,7
,1,34314,79293,32,2
,0,16,79295,64,7
,1,34314,79297,32,2
,0,16,79299,64,6
,1,34314,79301,32,2
,0,16,79303,64,7
,1,34314,79305,32,2
,0,16,79307,64,4
,1,34314,79309,32,2
,0,16,79311,64,7
,1,34314,79313,32,2
,0,16,79315,64,7
,1,34314,79317,32,2
,0,16,79319,64,7
,1,34314,79321,32,2
,0,16,79323,64,7
,1,34314,79325,32,2
,0,16,79327,64,7
,1,34314,79329,32,2
,0,16,79331,64,7
,1,34314,79333,32,2
,0,16,79335,64,7
,1,34314,79337,32,2
,0,16,79339,64,7
,1,34314,79341,32,2
,0,16,79343,64,7
,1,34314,79345,32,2
,0,16,79347,64,7
,1,34314,79349,32,2
,0,16,79351,64,7
,1,34314,79353,32,2
,0,16,79355,64,7
,1,34314,79357,32,2
,0,16,79359,64,7
,1,34314,79361,32,2
,0,16,79363,64,7
,1,34314,79365,32,2
,0,16,79367,64,7
,1,34314,79369,32,2
,0,16,79371,64,7
,1,34314,79373,32,2
,0,16,79375,64,7
,1,34314,79377,32,2
,0,16,79379,64,7
,1,34314,79381,32,2
,0,16,79383,64,7
,1,34314,79385,32,2
,0,16,79387,64,7
,1,34314,79389,32,2
,0,16,79391,64,7
,1,34314,79393,32,2
,0,16,79395,64,7
,1,34314,79397,32,2
,0,16,79399,64,7
,1,34314,79401,32,2
,0,16,79403,64,7
,1,34314,79405,32,2
,0,16,79407,64,7
,1,34314,79409,32,2
,0,16,79411,64,7
,1,34314,79413,32,2
,0,16,79415,64,7
,1,34314,79417,32,2
,0,16,79419,64,7
,1,34314,79421,32,2
,0,16,79423,64,7
,1,34314,79425,32,2
,0,16,79427,64,7
,1,34314,79429,32,2
,0,16,79431,64,7
,1,34314,79433,32,2
,0,16,79435,64,7
,1,34314,79437,32,2
,0,16,79439,64,7
,1,34314,79441,32,2
,0,16,79443,64,7
,1,34314,79445,32,2
,0,16,79447,64,7
,1,34314,79449,32,2
,1,34314,79451,32,2
,0,16,79453,64,7
,2,34484,79455,40,0
,2,34485,79457,40,0
,2,34486,79459,40,2
,2,34487,79461,40,2
,2,34488,79463,40,2
,2,34489,79465,40,2
,2,34490,79467,32,0
,1,34314,79469,32,2
,0,16,79471,64,7
,1,1,79473,48,2
,1,34296,79475,176,6
,1,1,79477,32,2
,2,34491,79479,32,0
,2,34492,79481,48,0
,2,34493,79483,32,0
,2,34494,79485,40,0
,2,34495,79487,40,0
,1,34314,79489,32,2
,0,16,79491,64,7
,1,34314,79493,32,2
,0,16,79495,64,7
,0,16,79497,64,7
,1,34314,79499,32,2
,0,16,79501,64,7
,1,34314,79503,32,2
,0,16,79505,64,5
,1,34296,79507,80,3
,1,1,79509,32,2
,2,34496,79511,40,0
,2,34497,79513,40,0
,1,34314,79515,32,2
,0,16,79517,64,5
,1,131,79519,824,2
,0,16,79521,64,3
,1,34314,79523,32,2
,0,16,79525,64,7
,0,16,79527,64,7
,1,34314,79529,32,2
,0,16,79531,64,7
,1,34314,79533,32,2
,0,16,79535,64,7
,1,34314,79537,32,2
,0,16,79539,64,7
,1,34314,79541,32,2
,0,16,79543,64,7
,1,34314,79545,32,2
,0,16,79547,64,7
,1,34314,79549,32,2
,0,16,79551,64,7
,2,34498,79553,40,0
,1,34314,79555,32,2
,0,16,79557,64,7
,1,34314,79559,32,2
,0,16,79561,64,7
,1,69,79563,48,1
,1,34314,79565,32,2
,0,16,79567,64,7
,1,34314,79569,32,2
,0,16,79571,64,7
,1,34314,79573,32,2
,0,16,79575,64,7
,1,34314,79577,32,2
,0,16,79579,64,7
,2,34499,79581,40,2
,2,34324,79583,40,0
,2,34326,79585,40,2
,1,34314,79587,32,2
,0,16,79589,64,7
,1,34314,79591,32,2
,0,16,79593,64,7
,1,34314,79595,32,2
,0,16,79597,64,7
,2,34500,79599,32,0
,2,34501,79601,40,0
,2,34502,79603,40,0
,2,34500,79605,32,0
,2,34501,79607,40,0
,2,34502,79609,40,0
,2,34503,79611,32,0
,2,34504,79613,40,0
,2,34505,79615,32,0
,2,34506,79617,40,0
,2,34506,79619,40,0
,5,53,79621,72,7
,1,34296,79623,344,22
,2,34507,79625,32,0
,2,34508,79627,32,0
,2,34509,79629,32,0
,2,34510,79631,40,0
,2,34511,79633,32,0
,2,34512,79635,32,0
,5,1022,79637,72,9
,2,34513,79639,40,0
,5,1022,79641,72,9
,2,34514,79643,40,0
,1,34314,79645,32,2
,0,16,79647,64,7
,1,34314,79649,32,2
,0,16,79651,64,7
,0,16,79653,64,7
,1,34314,79655,32,2
,0,16,79657,64,7
,1,34314,79659,32,2
,0,16,79661,64,7
,1,34314,79663,32,2
,0,16,79665,64,7
,1,34314,79667,32,2
,0,16,79669,64,7
,1,34314,79671,32,2
,0,16,79673,64,7
,1,34314,79675,32,2
,0,16,79677,64,7
,1,34314,79679,32,2
,0,16,79681,64,7
,1,34314,79683,32,2
,0,16,79685,64,7
,1,34314,79687,32,2
,0,16,79689,64,5
,2,34515,79691,32,0
,2,34515,79693,32,0
,2,34516,79695,40,0
,2,34517,79697,40,2
,2,34518,79699,40,2
,2,34519,79701,40,2
,2,34520,79703,32,0
,2,34521,79705,40,0
,2,34522,79707,40,2
,2,34523,79709,32,0
,2,34522,79711,40,2
,2,34524,79713,32,0
,2,34525,79715,32,0
,2,34526,79717,40,0
,2,34527,79719,40,0
,1,34296,79721,704,39
,2,34528,79723,40,0
,2,34529,79725,40,0
,2,34530,79727,40,0
,2,34531,79729,40,0
,2,34532,79731,32,0
,2,34533,79733,40,0
,2,34534,79735,40,0
,2,34535,79737,40,0
,2,34536,79739,48,0
,2,34537,79741,32,0
,2,34538,79743,40,0
,2,34539,79745,32,0
,2,34540,79747,40,0
,2,34541,79749,40,0
,1,34314,79751,32,2
,0,16,79753,64,6
,1,34314,79755,32,2
,0,16,79757,64,6
,0,16,79759,64,6
,1,34314,79761,32,2
,0,16,79763,64,6
,1,34314,79765,32,2
,0,16,79767,64,6
,1,34314,79769,32,2
,0,16,79771,64,6
,1,34314,79773,32,2
,0,16,79775,64,6
,5,53,79777,72,7
,1,34314,79779,32,2
,0,16,79781,64,6
,1,34314,79783,32,2
,0,16,79785,64,6
,1,34314,79787,32,2
,0,16,79789,64,6
,1,34314,79791,32,2
,0,16,79793,64,6
,1,34314,79795,32,2
,0,16,79797,64,6
,1,34314,79799,32,2
,0,16,79801,64,6
,1,34314,79803,32,2
,0,16,79805,64,6
,1,34296,79807,128,8
,2,34542,79809,32,0
,2,34543,79811,32,0
,1,34314,79813,32,1
,0,16,79815,64,7
,1,34314,79817,32,2
,0,16,79819,64,6
,0,16,79821,64,7
,1,34314,79823,32,2
,0,16,79825,64,5
,1,34296,79827,104,7
,1,1,79829,32,1
,2,34544,79831,32,0
,2,34545,79833,32,0
,2,34546,79835,32,0
,1,34314,79837,32,2
,0,16,79839,64,7
,1,34314,79841,32,2
,0,16,79843,64,7
,0,16,79845,64,5
,1,34314,79847,32,2
,0,16,79849,64,6
,1,34314,79851,32,2
,0,16,79853,64,6
,1,34314,79855,32,2
,0,16,79857,64,6
,1,90,79859,24,0
,1,34314,79861,32,2
,0,16,79863,64,4
,1,90,79865,32,0
,1,34296,79867,80,3
,1,1,79869,32,2
,1,34314,79871,32,1
,0,16,79873,64,7
,1,34314,79875,32,2
,0,16,79877,64,5
,0,16,79879,64,5
,2,34547,79881,32,0
,2,34548,79883,40,2
,2,34547,79885,32,0
,2,34549,79887,40,0
,2,34547,79889,32,0
,2,34550,79891,32,0
,2,34547,79893,32,0
,2,34551,79895,40,2
,2,34547,79897,32,0
,2,34552,79899,40,2
,2,34547,79901,32,0
,2,34553,79903,40,2
,2,34547,79905,32,0
,2,34554,79907,32,0
,2,34547,79909,32,0
,2,34555,79911,40,0
,2,34556,79913,40,0
,2,34557,79915,40,2
,2,34558,79917,40,0
,2,34559,79919,40,2
,2,34560,79921,40,2
,2,34561,79923,40,2
,2,34562,79925,40,0
,2,34563,79927,40,2
,2,34564,79929,40,0
,2,34565,79931,40,0
,2,34566,79933,40,0
,2,34567,79935,40,0
,2,34568,79937,40,0
,2,34569,79939,40,0
,2,34570,79941,40,0
,2,34571,79943,40,0
,2,34572,79945,40,2
,2,34573,79947,40,0
,2,34574,79949,40,2
,2,34575,79951,32,0
,2,34576,79953,32,0
,2,34575,79955,32,0
,2,34577,79957,32,0
,2,34578,79959,40,0
,2,34579,79961,40,2
,2,34580,79963,32,0
,2,34581,79965,32,0
,2,34582,79967,32,0
,2,34576,79969,32,0
,2,34583,79971,40,2
,2,34580,79973,32,0
,2,34584,79975,32,0
,2,34395,79977,32,0
,2,34585,79979,32,0
,2,34582,79981,32,0
,0,16,79983,64,5
,1,34296,79985,248,18
,2,34586,79987,48,0
,2,34587,79989,40,0
,2,34588,79991,32,0
,2,34589,79993,40,0
,2,34590,79995,48,0
,2,34591,79997,40,0
,2,34592,79999,32,0
,2,34593,80001,32,0
,1,34296,80003,704,52
,2,34594,80005,32,0
,2,34595,80007,32,0
,2,34596,80009,32,0
,2,34597,80011,40,0
,2,34598,80013,32,0
,2,34599,80015,32,0
,2,34600,80017,40,0
,2,34601,80019,32,0
,2,34602,80021,32,0
,2,34603,80023,32,0
,2,34604,80025,32,0
,2,34605,80027,32,0
,2,34606,80029,32,0
,2,34607,80031,32,0
,2,34608,80033,32,0
,2,34609,80035,32,0
,2,34610,80037,32,0
,2,34611,80039,32,0
,2,34612,80041,32,0
,2,34613,80043,32,0
,2,34614,80045,32,0
,0,16,80047,64,4
,1,34296,80049,56,2
,1,34314,80051,32,2
,0,16,80053,64,7
,0,16,80055,64,4
,1,34296,80057,56,2
,1,34314,80059,32,2
,0,16,80061,64,7
,0,16,80063,64,7
,0,16,80065,64,4
,1,34296,80067,56,2
,1,34314,80069,32,2
,0,16,80071,64,7
,0,16,80073,64,4
,1,34296,80075,56,2
,1,34314,80077,32,2
,0,16,80079,64,7
,0,16,80081,64,4
,1,34296,80083,56,2
,1,34314,80085,32,2
,0,16,80087,64,7
,0,16,80089,64,4
,1,34296,80091,56,2
,1,34314,80093,32,2
,0,16,80095,64,7
,0,16,80097,64,4
,1,34296,80099,56,2
,1,34314,80101,32,2
,0,16,80103,64,7
,0,16,80105,64,4
,1,34296,80107,56,2
,1,34314,80109,32,2
,0,16,80111,64,7
,0,16,80113,64,4
,1,34296,80115,56,2
,1,34314,80117,32,2
,0,16,80119,64,7
,0,16,80121,64,4
,1,34296,80123,56,2
,1,34314,80125,32,2
,0,16,80127,64,7
,0,16,80129,64,4
,1,34296,80131,56,2
,1,34314,80133,32,2
,0,16,80135,64,7
,0,16,80137,64,4
,1,34296,80139,56,2
,1,34314,80141,32,2
,0,16,80143,64,7
,0,16,80145,64,4
,1,34296,80147,56,2
,1,34314,80149,32,2
,0,16,80151,64,7
,0,16,80153,64,4
,1,34296,80155,56,2
,1,34314,80157,32,2
,0,16,80159,64,7
,0,16,80161,64,4
,1,34296,80163,56,2
,1,34314,80165,32,2
,0,16,80167,64,7
,0,16,80169,64,4
,1,34296,80171,56,2
,1,34314,80173,32,2
,0,16,80175,64,7
,0,16,80177,64,4
,1,34296,80179,56,2
,1,34314,80181,32,2
,0,16,80183,64,7
,0,16,80185,64,4
,1,34296,80187,56,2
,1,34314,80189,32,2
,0,16,80191,64,7
,0,16,80193,64,4
,1,34296,80195,56,2
,1,34314,80197,32,2
,0,16,80199,64,7
,0,16,80201,64,4
,1,34296,80203,56,2
,1,34314,80205,32,2
,0,16,80207,64,7
,0,16,80209,64,4
,1,34296,80211,56,2
,1,34314,80213,32,2
,0,16,80215,64,7
,0,16,80217,64,4
,1,34296,80219,56,2
,1,34314,80221,32,2
,0,16,80223,64,7
,0,16,80225,64,4
,1,34296,80227,56,2
,1,34314,80229,32,2
,0,16,80231,64,7
,0,16,80233,64,4
,1,34296,80235,56,2
,1,34314,80237,32,2
,0,16,80239,64,7
,1,90,80241,80,4
,0,16,80243,64,4
,1,34296,80245,56,2
,0,16,80247,64,4
,1,34296,80249,56,2
,0,16,80251,64,4
,1,34296,80253,104,6
,1,34314,80255,32,2
,0,16,80257,64,5
,1,34314,80259,32,2
,0,16,80261,64,7
,1,34314,80263,32,2
,0,16,80265,64,7
,1,34296,80267,344,23
,1,34296,80269,80,4
,2,34615,80271,32,0
,2,34616,80273,40,0
,2,34617,80275,32,0
,2,34618,80277,32,0
,2,34619,80279,40,0
,2,34620,80281,32,0
,2,34581,80283,32,0
,2,34621,80285,32,0
,2,34622,80287,32,0
,2,34623,80289,32,0
,2,34624,80291,32,0
,2,34625,80293,32,0
,1,34296,80295,248,16
,2,34626,80297,40,0
,1,34314,80299,32,2
,0,16,80301,64,6
,3,1268,80303,24,5
,1,131,80305,48,0
,0,16,80307,64,5
,1,34296,80309,344,26
,2,34627,80311,40,0
,2,34628,80313,32,0
,2,34629,80315,32,0
,2,34630,80317,32,0
,2,34631,80319,32,0
,5,53,80321,72,6
,1,34314,80323,32,1
,0,16,80325,64,7
,1,34314,80327,32,2
,0,16,80329,64,6
,0,16,80331,64,7
,1,34314,80333,32,2
,0,16,80335,64,7
,1,34314,80337,32,2
,0,16,80339,64,7
,1,34314,80341,32,2
,0,16,80343,64,7
,1,34314,80345,32,2
,0,16,80347,64,7
,1,34314,80349,32,2
,0,16,80351,64,7
,1,34314,80353,32,2
,0,16,80355,64,7
,1,34314,80357,32,2
,0,16,80359,64,7
,1,34314,80361,32,2
,0,16,80363,64,7
,1,34314,80365,32,2
,0,16,80367,64,7
,1,34314,80369,32,2
,0,16,80371,64,5
,1,34314,80373,32,2
,0,16,80375,64,6
,0,16,80377,64,4
,1,34314,80379,32,2
,0,16,80381,64,6
,2,34632,80383,40,0
,2,34633,80385,32,0
,2,34621,80387,32,0
,2,34395,80389,32,0
,2,34584,80391,32,0
,1,34296,80393,248,14
,1,34314,80395,32,2
,0,16,80397,64,4
,1,34296,80399,176,11
,1,1,80401,32,1
,2,34634,80403,32,0
,5,53,80405,72,6
,1,34314,80407,32,1
,0,16,80409,64,7
,1,34314,80411,32,2
,0,16,80413,64,6
,0,16,80415,64,7
,1,34314,80417,32,2
,0,16,80419,64,7
,1,34314,80421,32,2
,0,16,80423,64,5
,1,34314,80425,32,2
,0,16,80427,64,6
,0,16,80429,64,6
,2,34635,80431,40,0
,3,1269,80433,24,16
,1,131,80435,48,0
,1,34296,80437,128,8
,1,34314,80439,32,1
,0,16,80441,64,7
,1,34314,80443,32,2
,0,16,80445,64,6
,0,16,80447,64,7
,1,34314,80449,32,2
,0,16,80451,64,5
,1,34314,80453,32,2
,0,16,80455,64,6
,2,34636,80457,48,0
,2,34617,80459,32,0
,2,34637,80461,40,0
,2,34584,80463,32,0
,2,34581,80465,32,0
,3,1341,80467,24,7
,1,131,80469,48,0
,1,34296,80471,176,10
,2,34638,80473,40,0
,5,53,80475,72,6
,1,34314,80477,32,1
,0,16,80479,64,7
,1,34314,80481,32,2
,0,16,80483,64,6
,0,16,80485,64,7
,1,34314,80487,32,2
,0,16,80489,64,7
,1,34314,80491,32,2
,0,16,80493,64,5
,1,34314,80495,32,2
,0,16,80497,64,6
,2,34639,80499,48,0
,2,34637,80501,40,0
,3,1349,80503,24,8
,1,131,80505,48,0
,1,34296,80507,80,4
,5,53,80509,72,6
,1,34314,80511,32,1
,0,16,80513,64,5
,1,34314,80515,32,2
,0,16,80517,64,6
,1,34314,80519,32,2
,0,16,80521,64,4
,5,53,80523,72,6
,1,34314,80525,32,1
,5,53,80527,72,7
,1,34314,80529,32,1
,0,16,80531,64,7
,1,34314,80533,32,2
,0,16,80535,64,6
,0,16,80537,64,7
,1,34314,80539,32,2
,0,16,80541,64,7
,1,34314,80543,32,2
,0,16,80545,64,7
,1,34314,80547,32,2
,0,16,80549,64,7
,1,34314,80551,32,2
,0,16,80553,64,7
,1,34314,80555,32,2
,0,16,80557,64,7
,1,34314,80559,32,2
,1,34296,80561,80,2
,1,34314,80563,32,1
,0,16,80565,64,7
,1,34314,80567,32,2
,0,16,80569,64,5
,0,16,80571,64,5
,1,34296,80573,2288,154
,2,34640,80575,32,0
,2,34641,80577,40,0
,2,34642,80579,40,0
,2,34643,80581,40,0
,2,34644,80583,32,0
,2,34645,80585,32,0
,2,34646,80587,40,0
,2,34647,80589,40,0
,2,34648,80591,40,0
,2,34649,80593,40,0
,2,34650,80595,40,0
,2,34651,80597,40,0
,2,34652,80599,40,0
,2,34653,80601,40,0
,2,34654,80603,40,0
,2,34655,80605,40,0
,2,34656,80607,40,0
,2,34657,80609,32,0
,2,34658,80611,40,0
,2,34659,80613,40,0
,2,34660,80615,32,0
,2,34661,80617,40,0
,2,34662,80619,40,0
,2,34663,80621,32,0
,2,34664,80623,40,0
,2,34665,80625,40,0
,2,34666,80627,32,0
,2,34667,80629,40,0
,2,34668,80631,40,0
,2,34669,80633,40,0
,2,34670,80635,40,0
,2,34671,80637,40,0
,2,34672,80639,40,0
,2,34673,80641,40,0
,2,34674,80643,40,0
,2,34675,80645,40,0
,2,34676,80647,40,0
,2,34677,80649,32,0
,2,34678,80651,40,0
,2,34679,80653,40,0
,2,34680,80655,40,0
,2,34681,80657,40,0
,2,34682,80659,48,0
,2,34683,80661,40,0
,5,1169,80663,72,41
,1,34314,80665,32,1
,0,16,80667,64,7
,1,34314,80669,32,2
,0,16,80671,64,6
,0,16,80673,64,7
,1,34314,80675,32,2
,0,16,80677,64,7
,1,34314,80679,32,2
,0,16,80681,64,7
,1,34314,80683,32,2
,0,16,80685,64,7
,1,34314,80687,32,2
,0,16,80689,64,7
,1,34314,80691,32,2
,0,16,80693,64,7
,1,34314,80695,32,2
,0,16,80697,64,7
,1,34314,80699,32,2
,0,16,80701,64,7
,1,34314,80703,32,2
,0,16,80705,64,7
,1,34314,80707,32,2
,0,16,80709,64,7
,1,34314,80711,32,2
,0,16,80713,64,7
,1,34314,80715,32,2
,0,16,80717,64,7
,1,34314,80719,32,2
,0,16,80721,64,7
,1,34314,80723,32,2
,0,16,80725,64,7
,1,34314,80727,32,2
,0,16,80729,64,7
,1,34314,80731,32,2
,0,16,80733,64,7
,1,34314,80735,32,2
,0,16,80737,64,7
,1,34314,80739,32,2
,0,16,80741,64,7
,1,34314,80743,32,2
,0,16,80745,64,7
,1,34314,80747,32,2
,0,16,80749,64,7
,1,34314,80751,32,2
,0,16,80753,64,7
,1,34314,80755,32,2
,0,16,80757,64,7
,1,34314,80759,32,2
,0,16,80761,64,7
,1,34314,80763,32,2
,0,16,80765,64,7
,1,34314,80767,32,2
,0,16,80769,64,7
,1,34314,80771,32,2
,0,16,80773,64,7
,1,34314,80775,32,2
,0,16,80777,64,7
,1,34314,80779,32,2
,0,16,80781,64,7
,1,34314,80783,32,2
,0,16,80785,64,7
,1,34314,80787,32,2
,0,16,80789,64,7
,1,34314,80791,32,2
,0,16,80793,64,7
,1,34314,80795,32,2
,0,16,80797,64,7
,1,34314,80799,32,2
,0,16,80801,64,7
,1,34314,80803,32,2
,0,16,80805,64,7
,1,34314,80807,32,2
,0,16,80809,64,7
,1,34314,80811,32,2
,0,16,80813,64,7
,1,34314,80815,32,2
,0,16,80817,64,7
,1,34314,80819,32,2
,0,16,80821,64,7
,1,34314,80823,32,2
,0,16,80825,64,7
,1,34314,80827,32,2
,0,16,80829,64,7
,1,34314,80831,32,2
,0,16,80833,64,7
,1,34314,80835,32,2
,0,16,80837,64,7
,1,34314,80839,32,2
,0,16,80841,64,7
,1,34314,80843,32,2
,0,16,80845,64,7
,1,34314,80847,32,2
,0,16,80849,64,7
,1,34314,80851,32,2
,0,16,80853,64,7
,1,34314,80855,32,2
,0,16,80857,64,7
,1,34314,80859,32,2
,0,16,80861,64,7
,1,34314,80863,32,2
,0,16,80865,64,7
,1,34314,80867,32,2
,0,16,80869,64,7
,1,34314,80871,32,2
,0,16,80873,64,7
,1,34314,80875,32,2
,0,16,80877,64,7
,1,34314,80879,32,2
,0,16,80881,64,7
,1,34314,80883,32,2
,0,16,80885,64,7
,1,34314,80887,32,2
,0,16,80889,64,7
,1,34314,80891,32,2
,0,16,80893,64,7
,1,34314,80895,32,2
,0,16,80897,64,7
,1,34314,80899,32,2
,0,16,80901,64,7
,1,34296,80903,104,6
,1,34314,80905,32,1
,0,16,80907,64,7
,1,34314,80909,32,2
,0,16,80911,64,6
,0,16,80913,64,5
,1,34314,80915,32,2
,0,16,80917,64,7
,1,34296,80919,104,6
,1,34314,80921,32,1
,0,16,80923,64,7
,1,34314,80925,32,2
,0,16,80927,64,6
,0,16,80929,64,5
,1,34314,80931,32,2
,0,16,80933,64,7
,1,34314,80935,32,2
,0,16,80937,64,7
,1,34314,80939,32,2
,0,16,80941,64,7
,1,34314,80943,32,2
,0,16,80945,64,7
,1,34314,80947,32,2
,0,16,80949,64,7
,1,34296,80951,176,10
,2,34684,80953,32,0
,1,34314,80955,32,2
,0,16,80957,64,7
,1,34314,80959,32,2
,0,16,80961,64,7
,1,34314,80963,32,1
,0,16,80965,64,7
,1,34314,80967,32,2
,0,16,80969,64,6
,0,16,80971,64,7
,1,34314,80973,32,2
,0,16,80975,64,7
,1,34314,80977,32,2
,0,16,80979,64,5
,1,34314,80981,32,2
,0,16,80983,64,7
,3,1270,80985,24,8
,1,131,80987,48,0
,1,34296,80989,176,12
,2,34685,80991,40,0
,1,34314,80993,32,2
,0,16,80995,64,7
,1,34314,80997,32,2
,0,16,80999,64,7
,1,34314,81001,32,1
,0,16,81003,64,7
,1,34314,81005,32,2
,0,16,81007,64,6
,0,16,81009,64,7
,1,34314,81011,32,2
,0,16,81013,64,7
,1,34314,81015,32,2
,0,16,81017,64,7
,1,34314,81019,32,2
,0,16,81021,64,5
,1,34296,81023,176,10
,1,34314,81025,32,2
,0,16,81027,64,5
,1,34314,81029,32,1
,0,16,81031,64,7
,1,34314,81033,32,2
,0,16,81035,64,6
,0,16,81037,64,7
,1,34314,81039,32,2
,0,16,81041,64,7
,1,34314,81043,32,2
,0,16,81045,64,5
,1,34296,81047,344,13
,2,34686,81049,32,0
,2,34687,81051,32,0
,2,34688,81053,32,0
,2,34689,81055,32,0
,2,34690,81057,32,0
,2,34691,81059,32,0
,2,34692,81061,32,0
,2,34693,81063,32,0
,2,34694,81065,32,0
,2,34695,81067,32,0
,2,34696,81069,32,0
,1,34314,81071,32,1
,0,16,81073,64,7
,1,34314,81075,32,2
,0,16,81077,64,7
,1,34314,81079,32,2
,0,16,81081,64,7
,1,34314,81083,32,2
,0,16,81085,64,7
,1,34314,81087,32,2
,0,16,81089,64,7
,1,34314,81091,32,2
,0,16,81093,64,7
,1,34314,81095,32,2
,0,16,81097,64,7
,1,34314,81099,32,2
,0,16,81101,64,7
,1,34314,81103,32,2
,0,16,81105,64,7
,1,34314,81107,32,2
,0,16,81109,64,7
,1,34314,81111,32,2
,0,16,81113,64,7
,1,34314,81115,32,2
,0,16,81117,64,7
,1,34314,81119,32,2
,0,16,81121,64,5
,3,834,81123,24,7
,1,131,81125,48,0
,3,50,81127,24,5
,3,50,81129,24,5
,3,50,81131,24,5
,3,120,81133,32,6
,3,50,81135,24,17
,1,69,81137,40,3
,1,131,81139,88,6
,1,34296,81141,248,7
,2,34697,81143,32,0
,1,34314,81145,32,1
,0,16,81147,64,7
,1,34314,81149,32,2
,0,16,81151,64,7
,1,34314,81153,32,2
,0,16,81155,64,7
,1,34314,81157,32,2
,0,16,81159,64,7
,1,34314,81161,32,2
,0,16,81163,64,7
,1,34314,81165,32,2
,0,16,81167,64,7
,1,34314,81169,32,2
,0,16,81171,64,5
,2,1124,81173,32,0
,1,1,81175,48,2
,1,34314,81177,32,2
,0,16,81179,64,5
,1,34296,81181,80,2
,1,34314,81183,32,1
,0,16,81185,64,7
,1,34314,81187,32,2
,0,16,81189,64,5
,0,16,81191,64,5
,1,34296,81193,104,3
,1,34314,81195,32,1
,0,16,81197,64,7
,1,34314,81199,32,2
,0,16,81201,64,5
,1,34314,81203,32,2
,0,16,81205,64,7
,1,34314,81207,32,2
,0,16,81209,64,7
,1,34314,81211,40,2
,0,16,81213,64,5
,2,34500,81215,32,0
,2,1360,81217,40,2
,2,34698,81219,32,0
,2,34699,81221,40,2
,2,1125,81223,32,0
,1,1,81225,88,2
,1,34296,81227,56,1
,1,34314,81229,32,1
,0,16,81231,64,5
,1,90,81233,56,0
,0,16,81235,64,4
,1,34296,81237,56,2
,1,34296,81239,56,2
,2,34700,81241,40,0
,2,34701,81243,40,0
,2,34702,81245,32,0
,2,34703,81247,32,0
,2,34484,81249,40,0
,2,34486,81251,40,2
,2,34485,81253,40,0
,2,34487,81255,40,2
,2,34704,81257,32,0
,2,34576,81259,32,0
,2,34488,81261,40,2
,2,34489,81263,40,2
,2,34705,81265,40,2
,1,90,81267,272,16
,0,16,81269,64,4
,1,34296,81271,56,2
,0,16,81273,64,4
,1,34296,81275,56,2
,0,16,81277,64,4
,1,34296,81279,56,2
,0,16,81281,64,4
,1,34296,81283,56,2
,0,16,81285,64,4
,1,34296,81287,56,2
,0,16,81289,64,4
,1,34296,81291,56,2
,0,16,81293,64,4
,1,34296,81295,56,2
,0,16,81297,64,4
,1,34296,81299,56,2
,0,16,81301,64,4
,1,34296,81303,248,18
,1,34296,81305,56,2
,1,34314,81307,32,2
,0,16,81309,64,7
,1,34296,81311,176,12
,5,1465,81313,72,7
,5,1466,81315,72,7
,5,562,81317,72,7
,5,1468,81319,72,7
,5,1469,81321,72,7
,1,34314,81323,32,2
,0,16,81325,64,7
,1,34314,81327,32,2
,0,16,81329,64,7
,0,16,81331,64,7
,1,34314,81333,32,2
,0,16,81335,64,7
,1,34314,81337,32,2
,0,16,81339,64,7
,1,34314,81341,32,2
,0,16,81343,64,5
,5,53,81345,72,7
,1,34296,81347,344,20
,2,34706,81349,32,0
,2,34707,81351,32,0
,2,34708,81353,40,0
,2,34709,81355,40,0
,2,34710,81357,40,0
,2,34711,81359,40,0
,2,34712,81361,40,0
,2,34713,81363,40,0
,2,34714,81365,40,0
,1,34314,81367,32,2
,0,16,81369,64,7
,1,34314,81371,32,2
,0,16,81373,64,7
,0,16,81375,64,7
,1,34314,81377,32,2
,0,16,81379,64,7
,1,34314,81381,32,2
,0,16,81383,64,7
,1,34314,81385,32,2
,0,16,81387,64,7
,1,34314,81389,32,2
,0,16,81391,64,7
,1,34296,81393,128,8
,1,34314,81395,32,1
,0,16,81397,64,7
,1,34314,81399,32,2
,0,16,81401,64,6
,0,16,81403,64,7
,1,34314,81405,32,2
,0,16,81407,64,5
,1,34296,81409,80,2
,2,34715,81411,40,0
,2,34716,81413,40,0
,1,34314,81415,32,2
,0,16,81417,64,5
,1,34314,81419,32,2
,0,16,81421,64,7
,1,34314,81423,32,2
,0,16,81425,64,7
,1,34314,81427,32,2
,0,16,81429,64,5
,3,50,81431,24,7
,1,131,81433,48,0
,1,34296,81435,176,6
,2,34717,81437,40,0
,2,34718,81439,40,0
,2,34719,81441,40,0
,2,34720,81443,32,0
,1,34314,81445,32,1
,0,16,81447,64,7
,1,34314,81449,32,2
,0,16,81451,64,7
,1,34314,81453,32,2
,0,16,81455,64,7
,1,34314,81457,32,2
,0,16,81459,64,7
,1,34314,81461,32,2
,0,16,81463,64,7
,1,34314,81465,32,2
,0,16,81467,64,5
,1,34296,81469,128,5
,2,34721,81471,40,0
,1,34314,81473,32,1
,0,16,81475,64,7
,1,34314,81477,32,2
,0,16,81479,64,7
,1,34314,81481,32,2
,0,16,81483,64,7
,1,34314,81485,32,2
,0,16,81487,64,5
,4,1,81489,416,8
,4,1,81491,160,4
,4,1,81493,192,4
,0,70,81495,56,5
,4,1,81497,576,11
,1,90,81499,144,0
,1,90,81501,48,0
,7,19,81503,16,1
,7,19,81505,16,1
,7,19,81507,16,1
,7,19,81509,16,1
,7,19,81511,16,1
,7,19,81513,16,1
,7,19,81515,16,1
,7,19,81517,16,1
,0,16,81519,64,4
,0,16,81521,64,1
,1,90,81523,48,0
,1,131,81525,48,0
,3,120,81527,32,2
,2,34722,81529,40,0
,3,104,81531,104,7
,0,16,81533,64,5
,5,53,81535,72,6
,3,104,81537,104,7
,0,70,81539,56,5
,3,104,81541,104,7
,0,70,81543,56,5
,3,104,81545,104,7
,0,70,81547,56,5
,3,104,81549,104,7
,0,70,81551,56,5
,3,104,81553,104,7
,0,70,81555,56,5
,5,34723,81557,72,8
,5,1458,81559,72,8
,5,1460,81561,72,8
,5,34724,81563,72,8
,5,34725,81565,72,8
,5,34726,81567,72,8
,5,34727,81569,72,8
,5,34728,81571,72,8
,5,34729,81573,72,8
,5,34730,81575,72,8
,5,34731,81577,72,8
,5,53,81579,72,8
,5,53,81581,72,8
,5,53,81583,72,8
,5,53,81585,72,8
,5,53,81587,72,8
,5,53,81589,72,8
,5,53,81591,72,8
,5,53,81593,72,8
,5,53,81595,72,8
,5,53,81597,72,8
,5,53,81599,72,8
,5,53,81601,72,8
,5,53,81603,72,8
,5,53,81605,72,8
,5,34732,81607,72,8
,5,1458,81609,72,8
,5,1459,81611,72,8
,5,1460,81613,72,8
,5,1138,81615,72,8
,5,1284,81617,72,8
,1,90,81619,2120,151
,0,16,81621,64,5
,1,90,81623,80,0
,0,16,81625,64,7
,1,69,81627,48,3
,1,131,81629,40,1
,4,1,81631,992,18
,4,1,81633,352,5
,4,1,81635,352,5
,1,69,81637,32,2
,6,32,81639,72,7
,1,90,81641,32,0
,1,1,81643,48,2
,5,53,81645,72,7
,1,69,81647,32,2
,3,50,81649,24,3
,0,16,81651,64,5
,3,143,81653,40,4
,0,16,81655,64,5
,3,143,81657,40,5
,1,90,81659,32,1
,0,16,81661,64,4
,3,143,81663,32,7
,0,16,81665,64,4
,1,1,81667,152,6
,0,16,81669,64,5
,0,16,81671,64,7
,0,16,81673,64,7
,3,50,81675,24,4
,1,90,81677,32,0
,1,1,81679,1064,26
,0,16,81681,64,1
,1,1,81683,40,3
,0,16,81685,64,5
,1,1,81687,32,2
,0,16,81689,64,5
,1,1,81691,32,2
,0,16,81693,64,5
,1,1,81695,24,1
,0,16,81697,64,5
,1,1,81699,80,8
,1,1,81701,32,2
,1,1,81703,24,1
,0,16,81705,64,5
,1,1,81707,32,2
,1,1,81709,48,4
,1,1,81711,40,3
,0,16,81713,64,5
,1,1,81715,24,1
,0,16,81717,64,5
,1,1,81719,32,2
,1,131,81721,40,2
,3,1443,81723,136,7
,1,1,81725,48,2
,1,1,81727,48,2
,1,1,81729,48,2
,1,1,81731,48,2
,1,1,81733,48,2
,1,1,81735,48,2
,1,1,81737,48,2
,1,1,81739,48,2
,1,1,81741,48,2
,1,1,81743,48,2
,1,1,81745,48,2
,1,1,81747,48,2
,1,1,81749,48,2
,1,1,81751,48,2
,1,1,81753,48,2
,1,1,81755,48,2
,1,1,81757,48,2
,1,1,81759,48,2
,1,1,81761,48,2
,1,1,81763,48,2
,1,1,81765,48,2
,1,1,81767,48,2
,1,1,81769,48,2
,1,1,81771,48,2
,1,1,81773,48,2
,1,1,81775,48,2
,1,1,81777,48,2
,1,1,81779,48,2
,1,1,81781,88,2
,2,1091,81783,88,0
,4,1,81785,2592,6
,1,1,81787,88,2
,2,1359,81789,32,0
,4,1,81791,864,6
,4,1,81793,896,6
,1,1,81795,88,2
,2,1021,81797,32,0
,4,1,81799,832,8
,1,1,81801,88,2
,2,1358,81803,40,0
,4,1,81805,1184,6
,2,30,81807,32,0
,1,69,81809,40,3
,3,50,81811,24,2
,3,120,81813,32,5
,1,131,81815,176,14
,2,34733,81817,32,0
,2,34734,81819,32,0
,3,50,81821,24,9
,3,120,81823,32,2
,3,50,81825,24,2
,2,34735,81827,64,0
,3,120,81829,32,30
,3,120,81831,32,5
,2,34736,81833,32,0
,3,50,81835,24,11
,3,50,81837,24,4
,3,50,81839,24,4
,3,50,81841,24,5
,3,834,81843,136,9
,1,90,81845,360,27
,2,34737,81847,40,0
,2,34738,81849,40,0
,2,34739,81851,40,2
,2,34740,81853,40,2
,2,34741,81855,40,0
,2,34742,81857,40,2
,2,34743,81859,40,2
,2,34744,81861,40,2
,2,34745,81863,40,2
,2,34746,81865,40,2
,2,34747,81867,40,0
,2,34748,81869,48,0
,2,34749,81871,40,2
,2,34750,81873,40,2
,2,34751,81875,40,2
,2,34752,81877,40,2
,2,34753,81879,40,2
,2,34754,81881,40,2
,2,34755,81883,40,2
,2,34756,81885,48,0
,2,34757,81887,40,2
,2,34758,81889,40,2
,2,34759,81891,40,0
,2,34760,81893,40,2
,2,34761,81895,40,2
,2,34762,81897,48,0
,2,34763,81899,48,0
,1,131,81901,40,0
,1,131,81903,40,2
,3,1450,81905,32,6
,0,70,81907,128,9
,3,120,81909,32,2
,5,1042,81911,72,14
,5,1043,81913,72,13
,1,131,81915,40,1
,1,1,81917,88,1
,2,34764,81919,40,2
,1,1,81921,32,0
,1,131,81923,56,3
,5,53,81925,72,6
,5,53,81927,72,6
,5,53,81929,72,6
,1,131,81931,48,0
,1,1,81933,56,0
,1,131,81935,64,0
,1,131,81937,56,0
,1,131,81939,40,0
,0,70,81941,56,5
,1,131,81943,40,0
,0,70,81945,56,5
,0,70,81947,72,6
,5,53,81949,72,7
,0,70,81951,56,4
,0,70,81953,56,4
,0,70,81955,56,4
,0,70,81957,56,4
,0,70,81959,56,4
,0,70,81961,56,4
,0,70,81963,56,4
,0,70,81965,56,4
,0,70,81967,56,4
,0,70,81969,56,4
,1,1,81971,248,0
,1,131,81973,48,0
,1,90,81975,48,2
,2,294,81977,32,0
,1,90,81979,48,1
,2,34765,81981,48,0
,1,90,81983,144,9
,2,34765,81985,48,0
,2,883,81987,32,0
,2,884,81989,32,0
,2,294,81991,32,0
,2,34766,81993,32,0
,1,90,81995,48,1
,2,34765,81997,48,0
,1,90,81999,144,9
,2,34765,82001,48,0
,2,883,82003,32,0
,2,884,82005,32,0
,2,294,82007,32,0
,2,34766,82009,32,0
,1,90,82011,48,1
,2,34765,82013,48,0
,1,90,82015,144,9
,2,34765,82017,48,0
,2,883,82019,32,0
,2,884,82021,32,0
,2,294,82023,32,0
,2,34766,82025,32,0
,1,90,82027,48,1
,2,34765,82029,48,0
,1,90,82031,144,9
,2,34765,82033,48,0
,2,883,82035,32,0
,2,884,82037,32,0
,2,294,82039,32,0
,2,34766,82041,32,0
,1,90,82043,48,1
,2,34765,82045,48,0
,1,90,82047,144,9
,2,34765,82049,48,0
,2,883,82051,32,0
,2,884,82053,32,0
,2,294,82055,32,0
,2,34766,82057,32,0
,1,90,82059,48,1
,2,34765,82061,48,0
,1,90,82063,144,9
,2,34765,82065,48,0
,2,883,82067,32,0
,2,884,82069,32,0
,2,294,82071,32,0
,2,34766,82073,32,0
,1,90,82075,48,1
,2,34765,82077,48,0
,1,90,82079,144,9
,2,34765,82081,48,0
,2,883,82083,32,0
,2,884,82085,32,0
,2,294,82087,32,0
,2,34766,82089,32,0
,1,90,82091,48,1
,2,34765,82093,48,0
,1,90,82095,144,9
,2,34765,82097,48,0
,2,883,82099,32,0
,2,884,82101,32,0
,2,294,82103,32,0
,2,34766,82105,32,0
,1,90,82107,48,1
,2,34765,82109,48,0
,1,90,82111,144,9
,2,34765,82113,48,0
,2,883,82115,32,0
,2,884,82117,32,0
,2,294,82119,32,0
,2,34766,82121,32,0
,1,90,82123,528,32
,2,34767,82125,32,0
,2,34768,82127,32,0
,2,34769,82129,40,0
,2,34770,82131,32,0
,2,34771,82133,40,0
,2,34772,82135,32,0
,2,34773,82137,40,0
,2,34774,82139,40,0
,2,34775,82141,32,0
,2,34776,82143,32,0
,2,34777,82145,40,0
,2,34778,82147,32,0
,2,34779,82149,40,0
,2,34780,82151,32,0
,2,34781,82153,40,0
,2,34782,82155,40,0
,2,34783,82157,40,2
,2,34784,82159,40,2
,2,34785,82161,40,2
,2,34786,82163,40,2
,2,34787,82165,40,2
,2,34788,82167,40,2
,2,34789,82169,40,2
,2,34790,82171,40,2
,2,34791,82173,40,2
,2,34792,82175,40,2
,2,34793,82177,40,2
,2,34794,82179,40,2
,2,34795,82181,40,2
,1,69,82183,32,1
,3,50,82185,24,2
,1,69,82187,32,2
,0,16,82189,64,4
,1,131,82191,40,0
,1,1,82193,24,1
,1,1,82195,24,0
,1,69,82197,32,2
,1,69,82199,32,1
,1,69,82201,160,5
,3,50,82203,128,15
,3,50,82205,88,10
,1,69,82207,40,1
,1,131,82209,40,2
,1,69,82211,32,1
,1,69,82213,40,1
,1,69,82215,48,1
,1,69,82217,32,1
,1,69,82219,72,1
,1,69,82221,40,1
,2,34796,82223,64,0
,5,53,82225,72,29
,0,70,82227,72,6
,2,34797,82229,72,0
,5,53,82231,72,29
,0,70,82233,72,6
,2,34798,82235,88,0
,5,1007,82237,72,29
,0,70,82239,72,6
,1,69,82241,32,1
,1,69,82243,32,1
,1,131,82245,40,0
,1,131,82247,40,0
,1,90,82249,24,1
,1,131,82251,40,0
,1,90,82253,24,1
,1,1,82255,56,5
,1,1,82257,56,0
,1,1,82259,32,2
,1,1,82261,32,0
,2,34799,82263,40,0
,2,34800,82265,32,0
,3,34732,82267,32,3
,1,131,82269,40,1
,0,16,82271,64,5
,1,69,82273,48,2
,2,34801,82275,32,0
,1,131,82277,40,2
,2,34802,82279,64,0
,5,53,82281,72,14
,0,70,82283,72,6
,2,34803,82285,72,0
,5,53,82287,72,14
,0,70,82289,72,6
,2,34804,82291,40,0
,2,34804,82293,40,0
,1,69,82295,88,8
,2,34805,82297,80,0
,2,34806,82299,88,0
,2,34807,82301,64,0
,1,90,82303,168,3
,2,34808,82305,48,0
,1,131,82307,824,3
,1,1,82309,40,3
,1,1,82311,32,2
,1,1,82313,32,0
,5,1342,82315,72,10
,0,70,82317,80,8
,1,131,82319,40,1
,1,131,82321,40,1
,3,1356,82323,24,5
,1,131,82325,40,1
,1,131,82327,40,1
,3,1289,82329,24,4
,1,69,82331,40,2
,3,1321,82333,24,4
,1,69,82335,40,2
,1,1,82337,48,4
,1,69,82339,80,5
,1,131,82341,48,0
,7,19,82343,16,1
,7,19,82345,16,1
,1,131,82347,12344,179
,1,69,82349,32,1
,3,1164,82351,24,6
,1,131,82353,40,1
,3,1165,82355,24,6
,1,131,82357,40,1
,3,1168,82359,24,8
,1,69,82361,40,1
,1,131,82363,40,1
,3,1061,82365,24,9
,1,69,82367,32,1
,1,131,82369,40,1
,3,1169,82371,24,8
,1,131,82373,40,1
,3,50,82375,24,2
,3,120,82377,32,2
,2,34809,82379,40,2
,2,34810,82381,48,0
,3,50,82383,24,2
,3,120,82385,32,4
,3,120,82387,32,12
,1,69,82389,48,3
,3,1450,82391,32,6
,1,90,82393,824,3
,0,16,82395,64,4
,1,131,82397,40,2
,5,53,82399,72,6
,0,16,82401,64,5
,0,16,82403,64,5
,0,16,82405,64,5
,0,16,82407,64,5
,0,16,82409,64,5
,3,50,82411,32,3
,3,50,82413,32,3
,3,120,82415,32,2
,0,16,82417,64,1
,1,131,82419,72,0
,0,16,82421,64,5
,2,34811,82423,32,0
,2,1419,82425,184,0
,1,90,82427,32,2
,2,34812,82429,32,0
,2,34813,82431,32,0
,2,34814,82433,32,0
,2,34815,82435,40,0
,2,34816,82437,32,0
,2,34817,82439,32,0
,2,34818,82441,32,0
,2,34819,82443,32,0
,1,131,82445,96,8
,0,16,82447,64,5
,1,131,82449,48,0
,1,90,82451,24,1
,0,16,82453,64,4
,5,53,82455,72,9
,1,131,82457,48,0
,0,16,82459,64,5
,3,50,82461,24,8
,3,50,82463,24,20
,1,131,82465,48,2
,2,34820,82467,40,0
,2,34821,82469,32,0
,2,34822,82471,32,0
,2,34823,82473,32,0
,2,34824,82475,40,0
,3,50,82477,24,5
,1,131,82479,48,0
,2,792,82481,40,0
,2,792,82483,40,0
,2,792,82485,40,0
,2,792,82487,40,0
,2,792,82489,40,0
,2,792,82491,40,0
,2,792,82493,40,0
,2,792,82495,40,0
,2,34825,82497,40,0
,2,792,82499,40,0
,2,792,82501,40,0
,2,34826,82503,40,0
,2,792,82505,40,0
,2,792,82507,40,0
,2,792,82509,40,0
,2,792,82511,40,0
,2,792,82513,40,0
,2,792,82515,40,0
,2,792,82517,40,0
,2,792,82519,40,0
,2,792,82521,40,0
,2,792,82523,40,0
,2,792,82525,40,0
,2,792,82527,40,0
,2,792,82529,40,0
,2,792,82531,40,0
,2,792,82533,40,0
,2,792,82535,40,0
,2,792,82537,40,0
,2,792,82539,40,0
,2,792,82541,40,0
,2,792,82543,40,0
,2,792,82545,40,0
,2,792,82547,40,0
,2,792,82549,40,0
,2,792,82551,40,0
,2,792,82553,40,0
,2,792,82555,40,0
,2,34827,82557,40,0
,2,792,82559,40,0
,1,131,82561,3128,81
,0,16,82563,64,3
,3,50,82565,24,5
,1,131,82567,48,0
,3,50,82569,24,4
,1,131,82571,48,0
,0,16,82573,64,5
,3,1443,82575,136,7
,7,19,82577,16,1
,5,1415,82579,72,9
,1,69,82581,32,2
,3,799,82583,56,6
,3,799,82585,56,6
,3,799,82587,56,6
,3,799,82589,56,6
,3,799,82591,56,6
,3,799,82593,56,6
,3,799,82595,56,6
,3,799,82597,56,6
,3,799,82599,56,6
,3,799,82601,56,6
,3,799,82603,56,6
,3,799,82605,56,6
,3,799,82607,56,6
,3,799,82609,56,6
,3,799,82611,56,6
,3,799,82613,56,6
,3,799,82615,56,6
,3,799,82617,56,6
,1,131,82619,1592,37
,3,50,82621,24,2
,3,50,82623,40,4
,6,1021,82625,72,7
,3,50,82627,128,15
,3,50,82629,88,10
,3,120,82631,32,15
,6,1091,82633,72,7
,3,50,82635,24,2
,3,50,82637,24,2
,3,50,82639,24,2
,3,120,82641,32,2
,3,120,82643,32,2
,3,50,82645,24,2
,3,50,82647,24,2
,2,34828,82649,216,0
,5,53,82651,72,6
,1,131,82653,48,0
,3,120,82655,32,2
,3,120,82657,32,2
,3,50,82659,40,4
,3,50,82661,24,2
,6,1358,82663,72,7
,6,1359,82665,72,7
,2,34829,82667,32,0
,2,34830,82669,32,0
,2,34831,82671,40,0
,2,34832,82673,32,0
,2,34833,82675,40,0
,2,34834,82677,48,0
,2,34835,82679,40,0
,2,34836,82681,56,0
,2,34837,82683,32,0
,2,34838,82685,32,0
,2,34839,82687,32,0
,2,34840,82689,32,0
,2,34841,82691,32,0
,2,34842,82693,32,0
,2,34843,82695,32,0
,2,34844,82697,32,0
,2,34845,82699,40,0
,2,34846,82701,32,0
,2,34847,82703,32,0
,2,34848,82705,32,0
,2,34849,82707,64,0
,2,34850,82709,32,0
,2,34851,82711,32,0
,2,34852,82713,40,0
,2,34853,82715,32,0
,2,34854,82717,32,0
,2,34855,82719,32,0
,2,34856,82721,56,0
,2,34857,82723,32,0
,2,34858,82725,32,0
,2,34859,82727,32,0
,2,34860,82729,32,0
,2,34861,82731,40,0
,2,34862,82733,32,0
,2,34863,82735,32,0
,2,34864,82737,32,0
,2,34865,82739,32,0
,2,34866,82741,32,0
,2,34867,82743,32,0
,2,34868,82745,32,0
,2,34869,82747,32,0
,2,34870,82749,32,0
,2,34871,82751,48,0
,2,34872,82753,32,0
,2,34873,82755,40,0
,2,34874,82757,32,0
,2,34875,82759,32,0
,2,34876,82761,32,0
,2,34877,82763,64,0
,2,34878,82765,32,0
,2,34879,82767,64,0
,2,34880,82769,32,0
,2,34881,82771,32,0
,2,34882,82773,48,0
,2,34883,82775,40,0
,2,34884,82777,32,0
,2,34885,82779,32,0
,2,34886,82781,48,0
,2,34887,82783,32,0
,2,34888,82785,32,0
,2,34889,82787,32,0
,2,34890,82789,32,0
,2,34891,82791,32,0
,2,34892,82793,32,0
,2,34893,82795,72,0
,2,34894,82797,64,0
,2,34895,82799,32,0
,2,34896,82801,40,0
,2,34897,82803,40,0
,2,34898,82805,56,0
,2,34899,82807,32,0
,2,34900,82809,40,0
,2,34901,82811,32,0
,2,34902,82813,32,0
,2,34903,82815,32,0
,2,34904,82817,40,0
,2,34905,82819,32,0
,2,34906,82821,32,0
,2,34907,82823,32,0
,2,34908,82825,40,0
,2,34909,82827,40,0
,2,34910,82829,32,0
,2,34911,82831,48,0
,2,34912,82833,56,0
,2,34913,82835,40,0
,2,34914,82837,32,0
,2,34915,82839,32,0
,2,34916,82841,40,0
,2,34917,82843,32,0
,2,34918,82845,32,0
,2,34919,82847,32,0
,2,34920,82849,32,0
,2,34921,82851,32,0
,2,34922,82853,32,0
,2,34923,82855,32,0
,2,34924,82857,40,0
,2,34925,82859,48,0
,2,34926,82861,48,0
,2,34927,82863,64,0
,2,34928,82865,32,0
,2,34929,82867,40,0
,2,34930,82869,48,0
,2,34931,82871,40,0
,2,34932,82873,32,0
,2,34933,82875,56,0
,2,34934,82877,32,0
,2,34935,82879,48,0
,2,34936,82881,32,0
,2,34937,82883,32,0
,2,34938,82885,40,0
,2,34939,82887,48,0
,2,34940,82889,32,0
,2,34941,82891,32,0
,2,34942,82893,32,0
,2,34943,82895,32,0
,2,34944,82897,32,0
,2,34945,82899,32,0
,2,34946,82901,56,0
,2,34947,82903,48,0
,2,34948,82905,32,0
,2,34949,82907,32,0
,2,34950,82909,32,0
,2,34951,82911,32,0
,2,34952,82913,40,0
,2,34953,82915,32,0
,2,34954,82917,32,0
,2,34955,82919,32,0
,2,34956,82921,32,0
,2,34957,82923,40,0
,2,34958,82925,32,0
,2,34959,82927,40,0
,2,34960,82929,32,0
,2,34961,82931,32,0
,2,34962,82933,32,0
,2,34963,82935,32,0
,2,34964,82937,32,0
,2,34965,82939,32,0
,2,34966,82941,40,0
,2,34967,82943,32,0
,2,34968,82945,40,0
,2,34969,82947,32,0
,2,34970,82949,32,0
,2,34971,82951,64,0
,2,34972,82953,40,0
,2,34973,82955,32,0
,2,34974,82957,48,0
,2,34975,82959,32,0
,2,34976,82961,32,0
,2,34977,82963,48,0
,2,34978,82965,40,0
,2,34979,82967,32,0
,2,34980,82969,32,0
,2,34981,82971,56,0
,2,34982,82973,32,0
,2,34983,82975,40,0
,2,34984,82977,56,0
,2,34985,82979,32,0
,2,34986,82981,32,0
,2,34987,82983,40,0
,2,34988,82985,32,0
,2,34989,82987,32,0
,2,34990,82989,32,0
,2,34991,82991,56,0
,2,34992,82993,32,0
,1,131,82995,48,0
,1,131,82997,48,0
,1,131,82999,48,0
,1,131,83001,48,0
,1,131,83003,48,0
,3,834,83005,136,9
,1,131,83007,824,5
,2,34993,83009,272,0
,1,131,83011,824,5
,1,90,83013,40,3
,2,34994,83015,56,0
,2,34995,83017,40,0
,2,34996,83019,240,0
,2,34997,83021,224,0
,2,34998,83023,120,0
,2,34999,83025,152,0
,2,35000,83027,104,0
,2,34828,83029,216,0
,2,35001,83031,192,0
,2,35002,83033,168,0
,2,35003,83035,72,0
,2,35004,83037,136,0
,1,131,83039,824,29
,1,90,83041,152,1
,2,35001,83043,192,0
,2,35005,83045,184,0
,2,35006,83047,160,0
,2,35007,83049,144,0
,2,35008,83051,128,0
,2,35009,83053,96,0
,2,35010,83055,80,0
,2,35011,83057,64,0
,2,35012,83059,56,0
,1,90,83061,152,9
,3,50,83063,24,2
,3,50,83065,24,2
,2,35013,83067,32,0
,2,35014,83069,40,0
,2,35015,83071,32,0
,2,35016,83073,32,0
,2,35017,83075,32,0
,2,35018,83077,32,0
,2,35019,83079,32,0
,2,35020,83081,32,0
,2,35021,83083,32,0
,2,35022,83085,32,0
,2,35023,83087,40,0
,2,35024,83089,32,0
,2,35025,83091,32,0
,2,35026,83093,32,0
,2,35027,83095,40,0
,2,35028,83097,32,0
,2,837,83099,32,0
,2,35029,83101,32,0
,2,35030,83103,40,0
,2,35031,83105,32,0
,2,35032,83107,32,0
,2,35033,83109,32,0
,5,53,83111,72,9
,3,120,83113,32,2
,0,70,83115,80,7
,3,120,83117,32,2
,3,120,83119,32,3
,3,120,83121,32,3
,3,120,83123,32,3
,3,120,83125,32,3
,3,120,83127,32,3
,3,120,83129,32,3
,3,120,83131,32,3
,3,120,83133,32,3
,3,120,83135,32,3
,3,120,83137,32,3
,3,120,83139,32,3
,3,120,83141,32,3
,3,120,83143,32,3
,0,16,83145,64,4
,3,120,83147,32,3
,3,120,83149,32,3
,3,120,83151,32,3
,3,120,83153,32,3
,3,120,83155,32,3
,3,120,83157,32,3
,3,120,83159,32,3
,3,120,83161,32,3
,3,120,83163,32,3
,3,120,83165,32,3
,3,120,83167,32,3
,3,120,83169,32,3
,3,120,83171,32,3
,2,35034,83173,240,0
,2,35035,83175,1208,0
,2,34993,83177,272,0
,2,1419,83179,184,0
,3,120,83181,32,2
,2,35036,83183,32,0
,3,120,83185,32,2
,3,120,83187,32,2
,3,120,83189,32,2
,1,131,83191,72,5
,2,35037,83193,40,0
,2,30,83195,32,0
,2,34734,83197,32,0
,2,34734,83199,32,0
,1,131,83201,824,27
,3,120,83203,32,2
,3,120,83205,32,15
,2,35038,83207,48,0
,2,35039,83209,40,0
,2,35040,83211,56,0
,2,35041,83213,40,0
,2,35042,83215,40,0
,2,35043,83217,32,0
,2,35044,83219,40,0
,2,35045,83221,32,0
,2,35046,83223,40,0
,2,35047,83225,48,0
,2,35048,83227,40,0
,2,35049,83229,40,0
,2,35050,83231,32,0
,2,35051,83233,40,0
,2,35052,83235,40,0
,2,35053,83237,48,0
,2,35054,83239,40,0
,2,35055,83241,48,0
,2,35056,83243,40,0
,2,35057,83245,40,0
,2,35058,83247,48,0
,2,35059,83249,56,0
,3,120,83251,32,32818
,0,70,83253,80,7
,2,35060,83255,264,0
,2,35061,83257,248,0
,2,35062,83259,240,0
,2,35001,83261,192,0
,2,35005,83263,184,0
,2,35006,83265,160,0
,2,35007,83267,144,0
,2,35008,83269,128,0
,2,35009,83271,96,0
,2,35010,83273,80,0
,2,35011,83275,64,0
,2,35012,83277,56,0
,1,90,83279,152,12
,1,34295,83281,1536,0
,3,50,83283,24,4
,1,1,83285,6184,168
,4,1,83287,160,3
,4,1,83289,160,3
,4,1,83291,256,3
,4,1,83293,224,4
,4,1,83295,288,3
,4,1,83297,224,5
,4,1,83299,192,2
,4,1,83301,768,2
,4,1,83303,192,4
,4,1,83305,224,3
,4,1,83307,160,3
,4,1,83309,576,4
,4,1,83311,2624,9
,4,1,83313,256,5
,4,1,83315,320,5
,4,1,83317,224,4
,4,1,83319,1728,9
,4,1,83321,384,2
,4,1,83323,448,8
,4,1,83325,160,3
,4,1,83327,160,2
,4,1,83329,128,3
,4,1,83331,256,3
,4,1,83333,160,3
,4,1,83335,224,4
,4,1,83337,416,4
,4,1,83339,288,6
,4,1,83341,1728,9
,4,1,83343,320,4
,4,1,83345,288,4
,4,1,83347,992,2
,4,1,83349,224,4
,4,1,83351,480,3
,4,1,83353,160,3
,4,1,83355,1632,4
,4,1,83357,1728,9
,4,1,83359,320,3
,4,1,83361,192,3
,4,1,83363,288,3
,4,1,83365,352,3
,4,1,83367,288,3
,4,1,83369,160,3
,4,1,83371,288,5
,4,1,83373,256,3
,4,1,83375,992,2
,4,1,83377,160,3
,4,1,83379,1184,2
,4,1,83381,192,4
,4,1,83383,384,2
,4,1,83385,224,4
,4,1,83387,1760,9
,4,1,83389,320,3
,4,1,83391,352,5
,4,1,83393,256,5
,4,1,83395,480,3
,4,1,83397,1408,3
,4,1,83399,320,5
,4,1,83401,288,3
,4,1,83403,384,5
,4,1,83405,160,3
,4,1,83407,160,3
,4,1,83409,384,5
,4,1,83411,192,4
,4,1,83413,192,3
,4,1,83415,1792,9
,4,1,83417,320,5
,4,1,83419,192,4
,4,1,83421,224,4
,4,1,83423,256,3
,4,1,83425,224,4
,4,1,83427,224,3
,4,1,83429,192,4
,4,1,83431,800,2
,4,1,83433,320,3
,4,1,83435,288,5
,4,1,83437,288,5
,4,1,83439,1248,2
,4,1,83441,704,3
,4,1,83443,256,3
,4,1,83445,352,3
,4,1,83447,256,5
,4,1,83449,320,5
,4,1,83451,128,3
,4,1,83453,512,3
,4,1,83455,992,2
,4,1,83457,160,3
,4,1,83459,128,3
,4,1,83461,256,3
,4,1,83463,192,4
,4,1,83465,320,5
,4,1,83467,256,3
,4,1,83469,192,3
,4,1,83471,192,3
,4,1,83473,1024,6
,4,1,83475,1728,9
,4,1,83477,320,3
,4,1,83479,192,3
,4,1,83481,256,3
,4,1,83483,160,3
,4,1,83485,2656,9
,4,1,83487,1760,9
,4,1,83489,1056,3
,4,1,83491,1760,9
,4,1,83493,160,3
,4,1,83495,448,3
,4,1,83497,192,4
,4,1,83499,224,3
,4,1,83501,576,4
,4,1,83503,256,3
,4,1,83505,1728,9
,4,1,83507,1728,9
,4,1,83509,256,3
,4,1,83511,320,3
,4,1,83513,288,3
,4,1,83515,320,5
,4,1,83517,768,2
,4,1,83519,192,3
,4,1,83521,192,4
,4,1,83523,256,3
,4,1,83525,256,3
,4,1,83527,224,5
,4,1,83529,1632,4
,4,1,83531,1728,9
,4,1,83533,160,3
,4,1,83535,320,5
,4,1,83537,320,3
,4,1,83539,320,3
,4,1,83541,256,3
,4,1,83543,288,6
,4,1,83545,224,4
,4,1,83547,288,3
,4,1,83549,192,3
,4,1,83551,1760,9
,4,1,83553,1760,9
,4,1,83555,1440,3
,4,1,83557,160,3
,4,1,83559,2624,9
,4,1,83561,224,4
,4,1,83563,160,3
,4,1,83565,320,3
,4,1,83567,160,3
,4,1,83569,768,2
,4,1,83571,2688,9
,4,1,83573,160,3
,4,1,83575,416,4
,4,1,83577,160,3
,4,1,83579,480,3
,4,1,83581,992,2
,4,1,83583,1728,9
,4,1,83585,1792,9
,4,1,83587,352,4
,4,1,83589,352,4
,4,1,83591,768,2
,4,1,83593,288,3
,4,1,83595,2656,9
,4,1,83597,2624,9
,4,1,83599,224,4
,4,1,83601,320,3
,4,1,83603,160,3
,4,1,83605,224,3
,4,1,83607,224,3
,4,1,83609,224,4
,4,1,83611,224,4
,4,1,83613,160,3
,4,1,83615,288,5
,4,1,83617,768,3
,4,1,83619,320,3
,1,1,83621,3112,66
,4,1,83623,256,5
,4,1,83625,256,5
,4,1,83627,256,5
,4,1,83629,256,5
,4,1,83631,256,5
,4,1,83633,256,5
,4,1,83635,256,5
,4,1,83637,256,5
,4,1,83639,256,5
,4,1,83641,256,5
,4,1,83643,256,5
,4,1,83645,256,5
,4,1,83647,256,5
,4,1,83649,256,5
,4,1,83651,256,5
,4,1,83653,256,5
,4,1,83655,256,5
,4,1,83657,256,5
,4,1,83659,256,5
,4,1,83661,256,5
,4,1,83663,256,5
,4,1,83665,256,5
,4,1,83667,256,5
,4,1,83669,256,5
,4,1,83671,256,5
,4,1,83673,256,5
,4,1,83675,256,5
,4,1,83677,256,5
,4,1,83679,256,5
,4,1,83681,256,5
,4,1,83683,256,5
,4,1,83685,256,5
,4,1,83687,256,5
,4,1,83689,256,5
,4,1,83691,256,5
,4,1,83693,256,5
,4,1,83695,256,5
,4,1,83697,256,5
,4,1,83699,256,5
,4,1,83701,256,5
,4,1,83703,256,5
,4,1,83705,256,5
,4,1,83707,256,5
,4,1,83709,256,5
,4,1,83711,256,5
,4,1,83713,256,5
,4,1,83715,256,5
,4,1,83717,1472,9
,4,1,83719,256,5
,4,1,83721,256,5
,4,1,83723,256,5
,4,1,83725,256,5
,4,1,83727,256,5
,4,1,83729,256,5
,4,1,83731,256,5
,4,1,83733,256,5
,4,1,83735,224,5
,4,1,83737,256,5
,4,1,83739,256,5
,4,1,83741,256,5
,4,1,83743,256,5
,4,1,83745,256,5
,4,1,83747,256,5
,4,1,83749,256,5
,4,1,83751,256,5
,1,1,83753,128,11
,1,1,83755,24632,382
,2,35063,83757,48,0
,2,35064,83759,40,0
,2,35065,83761,40,0
,2,35066,83763,48,0
,2,35067,83765,56,0
,2,35068,83767,48,0
,2,35069,83769,40,0
,2,35070,83771,40,0
,2,35071,83773,40,0
,2,35072,83775,40,0
,2,35073,83777,48,0
,2,35074,83779,56,0
,2,35075,83781,48,0
,2,35076,83783,48,0
,2,35077,83785,48,0
,2,35078,83787,40,0
,2,35079,83789,40,0
,2,35080,83791,40,0
,2,35081,83793,48,0
,2,35082,83795,48,0
,2,35083,83797,40,0
,2,35084,83799,40,0
,2,35085,83801,48,0
,2,35086,83803,40,0
,2,35087,83805,32,0
,2,35088,83807,48,0
,2,35089,83809,40,0
,2,35090,83811,40,0
,2,35091,83813,40,0
,2,35092,83815,40,0
,2,35093,83817,40,0
,2,35094,83819,48,0
,2,35095,83821,48,0
,2,35096,83823,40,0
,2,35097,83825,40,0
,2,35098,83827,40,0
,2,35099,83829,40,0
,2,35100,83831,40,0
,2,35101,83833,40,0
,2,35102,83835,56,0
,2,35103,83837,40,0
,2,35104,83839,48,0
,2,35105,83841,32,0
,2,35106,83843,40,0
,2,35107,83845,32,0
,2,35108,83847,56,0
,2,35109,83849,48,0
,2,35110,83851,56,0
,2,35111,83853,56,0
,2,35112,83855,32,0
,2,35113,83857,40,0
,2,35114,83859,40,0
,2,35115,83861,40,0
,2,35116,83863,40,0
,2,35117,83865,48,0
,2,35118,83867,40,0
,2,35119,83869,40,0
,2,35120,83871,40,0
,2,35121,83873,40,0
,2,35122,83875,40,0
,2,35123,83877,40,0
,2,35124,83879,40,0
,2,35125,83881,48,0
,2,35126,83883,40,0
,2,35127,83885,40,0
,2,35128,83887,48,0
,2,35129,83889,48,0
,2,35130,83891,40,0
,2,35131,83893,40,0
,2,35132,83895,32,0
,2,35133,83897,40,0
,2,35134,83899,32,0
,2,35135,83901,40,0
,2,35136,83903,32,0
,2,35137,83905,64,0
,2,35138,83907,48,0
,2,35139,83909,40,0
,2,35140,83911,40,0
,2,35141,83913,40,0
,2,35142,83915,40,0
,2,35143,83917,40,0
,2,35144,83919,40,0
,2,35145,83921,48,0
,2,35146,83923,40,0
,2,35147,83925,40,0
,2,35148,83927,48,0
,2,35149,83929,48,0
,2,35150,83931,32,0
,2,35151,83933,48,0
,2,35152,83935,40,0
,2,35153,83937,40,0
,2,35154,83939,32,0
,2,35155,83941,32,0
,2,35156,83943,40,0
,2,35157,83945,56,0
,2,35158,83947,32,0
,2,35159,83949,40,0
,2,35160,83951,32,0
,2,35161,83953,72,0
,2,35162,83955,48,0
,2,35163,83957,32,0
,2,35164,83959,48,0
,2,35165,83961,48,0
,2,35166,83963,48,0
,2,35167,83965,40,0
,2,35168,83967,48,0
,2,35169,83969,64,0
,2,35170,83971,32,0
,2,35171,83973,40,0
,2,35172,83975,40,0
,2,35173,83977,56,0
,2,35174,83979,56,0
,2,35175,83981,32,0
,2,35176,83983,40,0
,2,35177,83985,40,0
,2,35178,83987,48,0
,2,35179,83989,32,0
,2,35180,83991,40,0
,2,35181,83993,40,0
,2,35182,83995,48,0
,2,35183,83997,40,0
,2,35184,83999,48,0
,2,35185,84001,40,0
,2,35186,84003,48,0
,2,35187,84005,40,0
,2,35188,84007,32,0
,2,35189,84009,56,0
,2,35190,84011,56,0
,2,35191,84013,48,0
,2,35192,84015,48,0
,2,35193,84017,48,0
,2,35194,84019,40,0
,2,35195,84021,48,0
,2,35196,84023,40,0
,2,35197,84025,40,0
,2,35198,84027,40,0
,2,35199,84029,48,0
,2,35200,84031,56,0
,2,35201,84033,40,0
,2,35202,84035,40,0
,2,35203,84037,32,0
,2,35204,84039,32,0
,2,35205,84041,32,0
,2,35206,84043,56,0
,2,35207,84045,32,0
,2,35208,84047,40,0
,2,35209,84049,48,0
,2,35210,84051,48,0
,2,35211,84053,48,0
,2,35212,84055,56,0
,2,35213,84057,40,0
,2,35214,84059,48,0
,2,35215,84061,48,0
,2,35216,84063,40,0
,2,35217,84065,48,0
,2,35218,84067,40,0
,2,35219,84069,32,0
,2,35220,84071,48,0
,2,35221,84073,40,0
,2,35222,84075,40,0
,2,35223,84077,40,0
,2,35224,84079,56,0
,2,35225,84081,48,0
,2,35226,84083,40,0
,2,35227,84085,32,0
,2,35228,84087,40,0
,2,35229,84089,40,0
,2,35230,84091,40,0
,2,35231,84093,48,0
,2,35232,84095,48,0
,2,35233,84097,40,0
,2,35234,84099,40,0
,2,35235,84101,40,0
,2,35236,84103,48,0
,2,35237,84105,56,0
,2,35238,84107,64,0
,2,35239,84109,40,0
,2,35240,84111,48,0
,2,35241,84113,48,0
,2,35242,84115,48,0
,2,35243,84117,48,0
,2,35244,84119,64,0
,2,35245,84121,48,0
,2,35246,84123,40,0
,2,35247,84125,56,0
,2,35248,84127,40,0
,2,35249,84129,40,0
,2,35250,84131,56,0
,2,35251,84133,40,0
,2,35252,84135,48,0
,2,35253,84137,56,0
,2,35254,84139,32,0
,2,35255,84141,56,0
,2,35256,84143,48,0
,2,35257,84145,56,0
,2,35258,84147,48,0
,2,35259,84149,48,0
,2,35260,84151,56,0
,2,35261,84153,56,0
,2,35262,84155,48,0
,2,35263,84157,56,0
,2,35264,84159,40,0
,2,35265,84161,48,0
,2,35266,84163,40,0
,2,35267,84165,40,0
,2,35268,84167,48,0
,2,35269,84169,40,0
,2,35270,84171,48,0
,2,35271,84173,32,0
,2,35272,84175,48,0
,2,35273,84177,32,0
,2,35274,84179,40,0
,2,35275,84181,64,0
,2,35276,84183,56,0
,2,35277,84185,48,0
,2,35278,84187,56,0
,2,35279,84189,48,0
,2,35280,84191,40,0
,2,35281,84193,48,0
,2,35282,84195,64,0
,2,35283,84197,56,0
,2,35284,84199,32,0
,2,35285,84201,48,0
,2,35286,84203,40,0
,2,35287,84205,40,0
,2,35288,84207,48,0
,2,35289,84209,32,0
,2,35290,84211,32,0
,2,35291,84213,48,0
,2,35292,84215,56,0
,2,35293,84217,40,0
,2,35294,84219,40,0
,2,35295,84221,40,0
,2,35296,84223,40,0
,2,35297,84225,40,0
,2,35298,84227,40,0
,2,35299,84229,40,0
,2,35300,84231,40,0
,2,35301,84233,64,0
,2,35302,84235,48,0
,2,35303,84237,32,0
,2,35304,84239,40,0
,2,35305,84241,40,0
,2,35306,84243,40,0
,2,35307,84245,40,0
,2,35308,84247,48,0
,2,35309,84249,40,0
,2,35310,84251,40,0
,2,35311,84253,48,0
,2,35312,84255,40,0
,2,35313,84257,48,0
,2,35314,84259,48,0
,2,35315,84261,40,0
,2,35316,84263,32,0
,2,35317,84265,48,0
,2,35318,84267,48,0
,2,35319,84269,48,0
,2,35320,84271,48,0
,2,35321,84273,48,0
,2,35322,84275,48,0
,2,35323,84277,40,0
,2,35324,84279,48,0
,2,35325,84281,40,0
,2,35326,84283,56,0
,2,35327,84285,48,0
,2,35328,84287,48,0
,2,35329,84289,48,0
,2,35330,84291,40,0
,2,35331,84293,48,0
,2,35332,84295,40,0
,2,35333,84297,56,0
,2,35334,84299,48,0
,2,35335,84301,40,0
,2,35336,84303,48,0
,2,35337,84305,40,0
,2,35338,84307,48,0
,2,35339,84309,56,0
,2,35340,84311,48,0
,2,35341,84313,48,0
,2,35342,84315,40,0
,2,35343,84317,48,0
,2,35344,84319,32,0
,2,35345,84321,56,0
,2,35346,84323,32,0
,2,35347,84325,40,0
,2,35348,84327,40,0
,2,35349,84329,56,0
,2,35350,84331,40,0
,2,35351,84333,32,0
,2,35352,84335,48,0
,2,35353,84337,48,0
,2,35354,84339,48,0
,2,35355,84341,40,0
,2,35356,84343,40,0
,2,35357,84345,40,0
,2,35358,84347,48,0
,2,35359,84349,56,0
,2,35360,84351,48,0
,2,35361,84353,40,0
,2,35362,84355,32,0
,2,35363,84357,48,0
,2,35364,84359,40,0
,2,35365,84361,40,0
,2,35366,84363,40,0
,2,35367,84365,40,0
,2,35368,84367,56,0
,2,35369,84369,40,0
,2,35370,84371,48,0
,2,35371,84373,32,0
,2,35372,84375,40,0
,2,35373,84377,40,0
,2,35374,84379,64,0
,2,35375,84381,32,0
,2,35376,84383,40,0
,2,35377,84385,48,0
,2,35378,84387,56,0
,2,35379,84389,48,0
,2,35380,84391,48,0
,2,35381,84393,48,0
,2,35382,84395,48,0
,2,35383,84397,40,0
,2,35384,84399,40,0
,2,35385,84401,32,0
,2,35386,84403,40,0
,2,35387,84405,48,0
,2,35388,84407,40,0
,2,35389,84409,48,0
,2,35390,84411,40,0
,2,35391,84413,56,0
,2,35392,84415,64,0
,2,35393,84417,40,0
,2,35394,84419,48,0
,2,35395,84421,40,0
,2,35396,84423,64,0
,2,35397,84425,48,0
,2,35398,84427,48,0
,2,35399,84429,32,0
,2,35400,84431,48,0
,2,35401,84433,40,0
,2,35402,84435,48,0
,2,35403,84437,48,0
,2,35404,84439,48,0
,2,35405,84441,40,0
,2,35406,84443,48,0
,2,35407,84445,40,0
,2,35408,84447,40,0
,2,35409,84449,56,0
,2,35410,84451,40,0
,2,35411,84453,48,0
,2,35412,84455,48,0
,2,35413,84457,40,0
,2,35414,84459,40,0
,2,35415,84461,40,0
,2,35416,84463,40,0
,2,35417,84465,40,0
,2,35418,84467,40,0
,2,35419,84469,56,0
,2,35420,84471,56,0
,2,35421,84473,40,0
,2,35422,84475,48,0
,5,1415,84477,72,9
,4,1,84479,672,13
,7,19,84481,16,1
,0,16,84483,64,4
,0,16,84485,64,3
,0,16,84487,64,3
,0,16,84489,64,3
,0,16,84491,64,3
,0,16,84493,64,4
,1,1,84495,24,1
,0,16,84497,64,1
,3,120,84499,32,2
,0,70,84501,80,7
,4,1,84503,800,19
,1,1,84505,2088,63
,1,1,84507,48,2
,4,53,84509,160,8
,1,1,84511,48,2
,4,53,84513,160,8
,1,1,84515,48,2
,4,53,84517,160,8
,1,1,84519,2088,1
,1,1,84521,2088,1
,3,50,84523,24,12
,3,50,84525,24,6
,3,50,84527,24,15
,3,50,84529,24,4
,1,131,84531,96,9
,0,16,84533,64,5
,1,1,84535,131112,2486
,2,35423,84537,48,0
,2,35424,84539,40,0
,2,35425,84541,32,0
,2,35426,84543,40,0
,2,35427,84545,40,0
,2,35428,84547,40,0
,2,35429,84549,32,0
,2,35430,84551,40,0
,2,35431,84553,40,0
,2,35432,84555,56,0
,2,35433,84557,40,0
,2,35434,84559,32,0
,2,35435,84561,48,0
,2,35436,84563,32,0
,2,35437,84565,32,0
,2,35438,84567,32,0
,2,35439,84569,32,0
,2,35440,84571,32,0
,2,35441,84573,32,0
,2,35442,84575,32,0
,2,35443,84577,32,0
,2,35444,84579,40,0
,2,35445,84581,32,0
,2,35446,84583,32,0
,2,35447,84585,32,0
,2,35448,84587,32,0
,2,35449,84589,32,0
,2,35450,84591,32,0
,2,35451,84593,40,0
,2,35452,84595,32,0
,2,35453,84597,40,0
,2,35454,84599,32,0
,2,35455,84601,40,0
,2,35456,84603,32,0
,2,35457,84605,48,0
,2,35458,84607,40,0
,2,35459,84609,40,0
,2,35460,84611,32,0
,2,35461,84613,64,0
,2,35462,84615,32,0
,2,35463,84617,32,0
,2,35464,84619,32,0
,2,35465,84621,40,0
,2,35466,84623,32,0
,2,35467,84625,32,0
,2,35468,84627,32,0
,2,34728,84629,40,0
,2,35469,84631,40,0
,2,35470,84633,32,0
,2,35471,84635,32,0
,2,35472,84637,40,0
,2,35473,84639,32,0
,2,35474,84641,32,0
,2,35475,84643,32,0
,2,35025,84645,32,0
,2,35476,84647,80,0
,2,35477,84649,32,0
,2,35478,84651,32,0
,2,35479,84653,32,0
,2,35480,84655,32,0
,2,35481,84657,40,0
,2,35482,84659,32,0
,2,35483,84661,40,0
,2,35484,84663,40,0
,2,35485,84665,40,0
,2,35486,84667,32,0
,2,35487,84669,32,0
,2,34725,84671,32,0
,2,35488,84673,32,0
,2,35489,84675,32,0
,2,35490,84677,40,0
,2,35491,84679,40,0
,2,35492,84681,40,0
,2,35493,84683,48,0
,2,35494,84685,40,0
,2,35495,84687,40,0
,2,35496,84689,32,0
,2,35497,84691,40,0
,2,35498,84693,48,0
,2,35499,84695,40,0
,2,35500,84697,48,0
,2,35501,84699,32,0
,2,35502,84701,32,0
,2,35503,84703,40,0
,2,35504,84705,32,0
,2,35505,84707,32,0
,2,35506,84709,40,0
,2,35507,84711,40,0
,2,35508,84713,32,0
,2,35509,84715,40,0
,2,35510,84717,32,0
,2,35511,84719,48,0
,2,35512,84721,40,0
,2,35513,84723,40,0
,2,34723,84725,32,0
,2,35514,84727,32,0
,2,35515,84729,40,0
,2,35516,84731,32,0
,2,35517,84733,32,0
,2,35518,84735,40,0
,2,35519,84737,40,0
,2,35520,84739,32,0
,2,35521,84741,32,0
,2,35522,84743,32,0
,2,35523,84745,32,0
,2,35524,84747,40,0
,2,35525,84749,32,0
,2,35526,84751,48,0
,2,35527,84753,32,0
,2,35528,84755,32,0
,2,35529,84757,32,0
,2,35530,84759,32,0
,2,35531,84761,48,0
,2,35532,84763,32,0
,2,35533,84765,32,0
,2,35534,84767,32,0
,2,35535,84769,48,0
,2,35536,84771,40,0
,2,35537,84773,48,0
,2,35538,84775,80,0
,2,35539,84777,32,0
,2,35540,84779,32,0
,2,35541,84781,40,0
,2,35542,84783,32,0
,2,35543,84785,40,0
,2,35544,84787,32,0
,2,35545,84789,32,0
,2,35546,84791,32,0
,2,35547,84793,48,0
,2,35548,84795,32,0
,2,35549,84797,40,0
,2,35550,84799,40,0
,2,35551,84801,40,0
,2,35552,84803,40,0
,2,35553,84805,32,0
,2,35554,84807,48,0
,2,35555,84809,32,0
,2,35556,84811,48,0
,2,35557,84813,40,0
,2,35558,84815,32,0
,2,35559,84817,32,0
,2,35560,84819,40,0
,2,35561,84821,48,0
,2,34730,84823,40,0
,2,35562,84825,32,0
,2,35563,84827,40,0
,2,35564,84829,40,0
,2,35565,84831,32,0
,2,35566,84833,40,0
,2,35567,84835,40,0
,2,35568,84837,40,0
,2,35569,84839,40,0
,2,35570,84841,48,0
,2,35571,84843,32,0
,2,35572,84845,40,0
,2,35573,84847,40,0
,2,35574,84849,56,0
,2,35575,84851,56,0
,2,35576,84853,48,0
,2,35577,84855,40,0
,2,35578,84857,64,0
,2,35579,84859,40,0
,2,35580,84861,40,0
,2,35581,84863,32,0
,2,35582,84865,32,0
,2,35583,84867,32,0
,2,35584,84869,32,0
,2,35585,84871,48,0
,2,35586,84873,48,0
,2,35587,84875,40,0
,2,35588,84877,40,0
,2,35589,84879,32,0
,2,35590,84881,32,0
,2,35591,84883,48,0
,2,35592,84885,40,0
,2,35593,84887,40,0
,2,35594,84889,32,0
,2,35595,84891,40,0
,2,35596,84893,48,0
,2,35597,84895,32,0
,2,35598,84897,48,0
,2,35599,84899,40,0
,2,35600,84901,48,0
,2,35601,84903,48,0
,2,35602,84905,40,0
,2,35603,84907,32,0
,2,35604,84909,32,0
,2,35605,84911,48,0
,2,35606,84913,40,0
,2,35607,84915,56,0
,2,35608,84917,40,0
,2,35609,84919,32,0
,2,35610,84921,32,0
,2,96,84923,32,0
,2,35611,84925,48,0
,2,35612,84927,32,0
,2,35613,84929,32,0
,2,35614,84931,40,0
,2,35615,84933,32,0
,2,35616,84935,32,0
,2,35617,84937,32,0
,2,35618,84939,32,0
,2,35619,84941,64,0
,2,35620,84943,32,0
,2,35621,84945,32,0
,2,35622,84947,48,0
,2,35623,84949,32,0
,2,35624,84951,40,0
,2,35625,84953,32,0
,2,35626,84955,48,0
,2,35627,84957,48,0
,2,35628,84959,40,0
,2,35629,84961,32,0
,2,35630,84963,32,0
,2,35631,84965,40,0
,2,35632,84967,32,0
,2,35633,84969,64,0
,2,35634,84971,32,0
,2,35635,84973,48,0
,2,35636,84975,40,0
,2,35637,84977,40,0
,2,35638,84979,32,0
,2,35639,84981,40,0
,2,35640,84983,32,0
,2,35641,84985,40,0
,2,35642,84987,32,0
,2,35643,84989,32,0
,2,35644,84991,40,0
,2,35645,84993,32,0
,2,35646,84995,40,0
,2,35647,84997,40,0
,2,35648,84999,32,0
,2,35649,85001,40,0
,2,35650,85003,48,0
,2,35651,85005,40,0
,2,35652,85007,32,0
,2,35653,85009,40,0
,2,35654,85011,32,0
,2,35655,85013,40,0
,2,35656,85015,40,0
,2,35657,85017,40,0
,2,35658,85019,56,0
,2,35659,85021,56,0
,2,35660,85023,40,0
,2,35661,85025,32,0
,2,35662,85027,40,0
,2,35663,85029,48,0
,2,35664,85031,40,0
,2,35665,85033,48,0
,2,35666,85035,48,0
,2,35667,85037,32,0
,2,35668,85039,32,0
,2,35669,85041,32,0
,2,35670,85043,64,0
,2,35671,85045,32,0
,2,35672,85047,32,0
,2,35673,85049,32,0
,2,35674,85051,32,0
,2,35675,85053,32,0
,2,35676,85055,40,0
,2,35677,85057,40,0
,2,35678,85059,32,0
,2,35679,85061,40,0
,2,35680,85063,40,0
,2,35681,85065,32,0
,2,35682,85067,48,0
,2,35683,85069,40,0
,2,35684,85071,40,0
,2,35685,85073,32,0
,2,35686,85075,40,0
,2,35687,85077,56,0
,2,35688,85079,32,0
,2,35689,85081,40,0
,2,35690,85083,40,0
,2,35691,85085,32,0
,2,35692,85087,32,0
,2,35693,85089,64,0
,2,35694,85091,32,0
,2,35695,85093,40,0
,2,35696,85095,48,0
,2,35697,85097,32,0
,2,35698,85099,32,0
,2,35699,85101,32,0
,2,35700,85103,80,0
,2,35701,85105,32,0
,2,35702,85107,40,0
,2,35703,85109,32,0
,2,35704,85111,48,0
,2,35705,85113,40,0
,2,35706,85115,40,0
,2,35707,85117,32,0
,2,35708,85119,32,0
,2,35709,85121,40,0
,2,35710,85123,40,0
,2,35711,85125,32,0
,2,35712,85127,40,0
,2,35713,85129,40,0
,2,35714,85131,40,0
,2,35027,85133,40,0
,2,35715,85135,88,0
,2,35716,85137,40,0
,2,35717,85139,32,0
,2,35718,85141,48,0
,2,35719,85143,48,0
,2,35720,85145,32,0
,2,35721,85147,32,0
,2,35722,85149,40,0
,2,35723,85151,40,0
,2,35724,85153,40,0
,2,34726,85155,40,0
,2,35725,85157,56,0
,2,35726,85159,48,0
,2,35727,85161,32,0
,2,35728,85163,48,0
,2,35729,85165,40,0
,2,35730,85167,32,0
,2,35731,85169,32,0
,2,35732,85171,32,0
,2,35733,85173,40,0
,2,35734,85175,32,0
,2,35735,85177,56,0
,2,35736,85179,32,0
,2,35737,85181,32,0
,2,35738,85183,32,0
,2,35739,85185,40,0
,2,35740,85187,32,0
,2,35741,85189,40,0
,2,35742,85191,32,0
,2,35743,85193,40,0
,2,35744,85195,32,0
,2,35018,85197,32,0
,2,35745,85199,40,0
,2,35746,85201,32,0
,2,35747,85203,48,0
,2,35748,85205,40,0
,2,35749,85207,32,0
,2,35750,85209,40,0
,2,35751,85211,40,0
,2,35752,85213,32,0
,2,35753,85215,32,0
,2,35754,85217,40,0
,2,35755,85219,32,0
,2,35756,85221,32,0
,2,35757,85223,40,0
,2,35758,85225,32,0
,2,35759,85227,32,0
,2,35760,85229,48,0
,2,35761,85231,40,0
,2,35762,85233,32,0
,2,34811,85235,32,0
,2,35763,85237,40,0
,2,35764,85239,40,0
,2,35765,85241,64,0
,2,35766,85243,40,0
,2,35767,85245,32,0
,2,35768,85247,40,0
,2,35769,85249,32,0
,2,35770,85251,32,0
,2,35771,85253,32,0
,2,35772,85255,48,0
,2,35773,85257,40,0
,2,35774,85259,32,0
,2,35775,85261,40,0
,2,35776,85263,32,0
,2,35777,85265,40,0
,2,35778,85267,40,0
,2,35779,85269,40,0
,2,35780,85271,48,0
,2,35781,85273,32,0
,2,35782,85275,48,0
,2,35783,85277,40,0
,2,35784,85279,72,0
,2,35785,85281,40,0
,2,35786,85283,32,0
,2,35787,85285,32,0
,2,35788,85287,40,0
,2,34732,85289,32,0
,2,35789,85291,48,0
,2,35790,85293,40,0
,2,35791,85295,32,0
,2,35792,85297,40,0
,2,35793,85299,32,0
,2,35794,85301,40,0
,2,35795,85303,32,0
,2,34724,85305,40,0
,2,35796,85307,40,0
,2,35797,85309,40,0
,2,35798,85311,40,0
,2,35799,85313,32,0
,2,35800,85315,40,0
,2,35801,85317,72,0
,2,35802,85319,56,0
,2,35803,85321,48,0
,2,35804,85323,32,0
,2,35805,85325,32,0
,2,35806,85327,32,0
,2,35807,85329,40,0
,2,35808,85331,40,0
,2,35809,85333,40,0
,2,35810,85335,32,0
,2,35811,85337,40,0
,2,35812,85339,40,0
,2,35813,85341,32,0
,2,35814,85343,48,0
,2,35815,85345,40,0
,2,35816,85347,72,0
,2,35817,85349,40,0
,2,35818,85351,40,0
,2,35819,85353,32,0
,2,35820,85355,32,0
,2,35821,85357,32,0
,2,35822,85359,32,0
,2,35823,85361,32,0
,2,35824,85363,40,0
,2,35825,85365,32,0
,2,35826,85367,32,0
,2,35827,85369,40,0
,2,35828,85371,40,0
,2,35829,85373,32,0
,2,35830,85375,32,0
,2,35831,85377,48,0
,2,35832,85379,48,0
,2,35833,85381,32,0
,2,35834,85383,40,0
,2,35835,85385,32,0
,2,35836,85387,32,0
,2,35837,85389,32,0
,2,35838,85391,48,0
,2,35839,85393,32,0
,2,35840,85395,40,0
,2,35841,85397,40,0
,2,35842,85399,32,0
,2,35843,85401,32,0
,2,35844,85403,32,0
,2,35845,85405,32,0
,2,34765,85407,48,0
,2,35846,85409,56,0
,2,35847,85411,32,0
,2,35848,85413,32,0
,2,35849,85415,32,0
,2,35850,85417,40,0
,2,35851,85419,32,0
,2,35852,85421,40,0
,2,35853,85423,32,0
,2,35854,85425,40,0
,2,35855,85427,40,0
,2,35856,85429,48,0
,2,35857,85431,48,0
,2,35858,85433,32,0
,2,35859,85435,40,0
,2,35860,85437,32,0
,2,35861,85439,32,0
,2,35862,85441,32,0
,2,35863,85443,32,0
,2,35864,85445,32,0
,2,35865,85447,40,0
,2,35866,85449,32,0
,2,35867,85451,40,0
,2,35868,85453,40,0
,2,35869,85455,32,0
,2,35870,85457,40,0
,2,35871,85459,72,0
,2,35872,85461,56,0
,2,35873,85463,64,0
,2,35874,85465,32,0
,2,35875,85467,40,0
,2,35876,85469,40,0
,2,35877,85471,40,0
,2,35878,85473,40,0
,2,35879,85475,56,0
,2,35880,85477,32,0
,2,35881,85479,56,0
,2,35882,85481,40,0
,2,35883,85483,56,0
,2,35884,85485,32,0
,2,35885,85487,32,0
,2,35886,85489,32,0
,2,35887,85491,48,0
,2,35888,85493,40,0
,2,35889,85495,40,0
,2,35890,85497,48,0
,2,35891,85499,40,0
,2,35892,85501,32,0
,2,35893,85503,40,0
,2,34727,85505,40,0
,2,35894,85507,40,0
,2,35895,85509,32,0
,2,35896,85511,40,0
,2,34729,85513,40,0
,2,35897,85515,32,0
,2,35898,85517,32,0
,2,35899,85519,72,0
,2,34731,85521,40,0
,2,35900,85523,32,0
,2,35901,85525,48,0
,2,35902,85527,32,0
,2,35903,85529,32,0
,2,35904,85531,40,0
,2,35905,85533,32,0
,2,35906,85535,32,0
,2,35907,85537,32,0
,2,35908,85539,40,0
,2,35909,85541,48,0
,2,35534,85543,32,0
,2,35910,85545,32,0
,2,35911,85547,40,0
,2,35912,85549,40,0
,2,35913,85551,32,0
,2,35914,85553,32,0
,2,35915,85555,40,0
,2,35916,85557,40,0
,2,35917,85559,56,0
,2,35918,85561,40,0
,2,35919,85563,40,0
,2,35920,85565,40,0
,2,35921,85567,56,0
,2,35922,85569,40,0
,2,35923,85571,32,0
,2,35924,85573,40,0
,2,35925,85575,72,0
,2,35926,85577,40,0
,2,35927,85579,40,0
,2,35928,85581,32,0
,2,35929,85583,40,0
,1,34296,85585,152,10
,0,87,85587,16,1
,0,87,85589,16,1
,0,87,85591,16,1
,0,87,85593,16,1
,0,87,85595,16,1
,1,34296,85597,128,8
,0,87,85599,16,1
,0,87,85601,16,1
,0,87,85603,16,1
,0,87,85605,16,1
,1,34296,85607,200,13
,0,87,85609,16,1
,0,87,85611,16,1
,0,87,85613,16,1
,0,87,85615,16,1
,0,87,85617,16,1
,1,34296,85619,200,11
,1,34296,85621,152,10
,0,87,85623,16,1
,0,87,85625,16,1
,0,87,85627,16,1
,1,34296,85629,128,8
,0,87,85631,16,1
,0,87,85633,16,1
,1,34296,85635,152,10
,0,87,85637,16,1
,0,87,85639,16,1
,0,87,85641,16,1
,1,34296,85643,152,10
,0,16,85645,64,4
,1,34296,85647,56,1
,0,484,85649,16,1
,2,92,85651,40,0
,0,484,85653,16,1
,2,93,85655,40,0
,0,484,85657,16,1
,2,94,85659,48,0
,0,484,85661,16,1
,2,95,85663,40,0
,0,484,85665,16,1
,0,484,85667,16,1
,0,484,85669,16,1
,0,484,85671,16,1
,0,484,85673,16,1
,0,484,85675,16,1
,0,484,85677,16,1
,0,484,85679,16,1
,0,484,85681,16,1
,0,484,85683,16,1
,0,484,85685,16,1
,0,484,85687,16,1
,0,484,85689,16,1
,2,100,85691,32,0
,0,484,85693,16,1
,0,484,85695,16,1
,2,102,85697,40,0
,0,484,85699,16,1
,0,484,85701,16,1
,0,484,85703,16,1
,2,103,85705,40,0
,0,484,85707,16,1
,0,484,85709,16,1
,0,484,85711,16,1
,0,484,85713,16,1
,0,484,85715,16,1
,0,484,85717,16,1
,0,484,85719,16,1
,0,484,85721,16,1
,0,484,85723,16,1
,0,484,85725,16,0
,2,108,85727,40,0
,0,484,85729,16,1
,0,484,85731,16,1
,2,109,85733,40,0
,0,484,85735,16,1
,0,484,85737,16,1
,0,484,85739,16,1
,0,484,85741,16,1
,0,484,85743,16,1
,0,484,85745,16,1
,0,484,85747,16,1
,0,484,85749,16,1
,0,484,85751,16,1
,0,484,85753,16,1
,0,484,85755,16,1
,0,484,85757,16,1
,0,484,85759,16,1
,0,484,85761,16,1
,0,484,85763,16,1
,0,484,85765,16,1
,0,484,85767,16,1
,2,123,85769,40,0
,0,484,85771,16,1
,2,124,85773,40,0
,0,484,85775,16,1
,0,484,85777,16,1
,0,484,85779,16,1
,0,484,85781,16,1
,0,484,85783,16,1
,0,484,85785,16,1
,0,484,85787,16,1
,0,484,85789,16,1
,0,484,85791,16,1
,0,484,85793,16,1
,1,34296,85795,56,2
,0,16,85797,64,4
,1,34296,85799,56,1
,1,34296,85801,152,5
,0,16,85803,64,4
,1,34296,85805,80,2
,1,34314,85807,32,1
,0,16,85809,64,7
,1,34314,85811,32,2
,1,34296,85813,80,2
,1,34296,85815,104,5
,1,34296,85817,56,2
,0,16,85819,64,4
,1,34296,85821,56,2
,0,16,85823,64,4
,1,34296,85825,56,2
,0,16,85827,64,4
,0,484,85829,16,1
,0,484,85831,16,1
,0,484,85833,16,1
,0,484,85835,16,1
,0,484,85837,16,1
,0,484,85839,16,1
,2,35930,85841,40,0
,0,484,85843,16,1
,0,484,85845,16,1
,0,484,85847,16,1
,0,484,85849,16,1
,0,484,85851,16,1
,0,484,85853,16,1
,0,484,85855,16,1
,0,484,85857,16,1
,0,484,85859,16,1
,0,484,85861,16,1
,0,484,85863,16,1
,0,484,85865,16,1
,0,484,85867,16,1
,0,484,85869,16,1
,0,484,85871,16,1
,0,484,85873,16,1
,0,484,85875,16,1
,0,484,85877,16,1
,0,484,85879,16,1
,0,484,85881,16,1
,0,484,85883,16,1
,0,484,85885,16,1
,0,484,85887,16,0
,0,484,85889,16,1
,0,484,85891,16,1
,0,484,85893,16,1
,0,484,85895,16,1
,0,484,85897,16,1
,0,484,85899,16,1
,0,484,85901,16,1
,0,484,85903,16,1
,0,484,85905,16,1
,0,484,85907,16,1
,0,484,85909,16,1
,0,484,85911,16,1
,0,484,85913,16,1
,0,484,85915,16,1
,0,484,85917,16,1
,0,484,85919,16,1
,0,484,85921,16,1
,0,484,85923,16,1
,0,484,85925,16,1
,0,484,85927,16,1
,0,484,85929,16,1
,0,484,85931,16,1
,0,484,85933,16,1
,0,484,85935,16,1
,0,484,85937,16,1
,0,484,85939,16,1
,0,484,85941,16,1
,0,484,85943,16,1
,0,484,85945,16,1
,0,484,85947,16,1
,0,484,85949,16,1
,0,484,85951,16,1
,0,484,85953,16,1
,0,484,85955,16,1
,0,484,85957,16,1
,0,484,85959,16,1
,0,484,85961,16,1
,0,484,85963,16,1
,0,484,85965,16,1
,0,484,85967,16,1
,0,484,85969,16,1
,0,484,85971,16,1
,0,484,85973,16,1
,0,484,85975,16,0
,0,484,85977,16,1
,2,35580,85979,40,0
,0,484,85981,16,1
,0,484,85983,16,1
,0,484,85985,16,1
,0,484,85987,16,1
,0,484,85989,16,1
,0,484,85991,16,1
,0,484,85993,16,1
,0,484,85995,16,1
,0,484,85997,16,1
,0,484,85999,16,1
,0,484,86001,16,1
,0,484,86003,16,1
,0,484,86005,16,1
,0,484,86007,16,1
,0,484,86009,16,1
,0,484,86011,16,1
,0,484,86013,16,1
,0,484,86015,16,1
,0,484,86017,16,1
,0,484,86019,16,1
,0,484,86021,16,1
,0,484,86023,16,1
,0,484,86025,16,1
,0,484,86027,16,1
,0,484,86029,16,1
,0,484,86031,16,1
,0,484,86033,16,0
,0,484,86035,16,1
,0,484,86037,16,1
,0,484,86039,16,1
,0,484,86041,16,1
,0,484,86043,16,1
,0,484,86045,16,1
,0,484,86047,16,1
,0,484,86049,16,1
,0,484,86051,16,1
,0,484,86053,16,1
,0,484,86055,16,1
,0,484,86057,16,1
,0,484,86059,16,0
,0,484,86061,16,1
,0,484,86063,16,1
,0,484,86065,16,1
,0,484,86067,16,1
,0,484,86069,16,1
,0,484,86071,16,1
,0,484,86073,16,1
,0,484,86075,16,1
,0,484,86077,16,1
,0,484,86079,16,1
,0,484,86081,16,1
,0,484,86083,16,1
,0,484,86085,16,1
,0,484,86087,16,1
,0,484,86089,16,1
,0,484,86091,16,1
,0,484,86093,16,1
,0,484,86095,16,1
,0,484,86097,16,1
,0,484,86099,16,1
,0,484,86101,16,1
,0,484,86103,16,1
,0,484,86105,16,1
,0,484,86107,16,1
,0,484,86109,16,1
,0,484,86111,16,1
,0,484,86113,16,1
,0,484,86115,16,1
,2,35931,86117,40,0
,0,484,86119,16,1
,0,484,86121,16,1
,2,35932,86123,40,0
,0,484,86125,16,1
,0,484,86127,16,1
,0,484,86129,16,1
,0,484,86131,16,1
,0,484,86133,16,1
,0,484,86135,16,1
,0,484,86137,16,1
,0,484,86139,16,1
,0,484,86141,16,1
,0,484,86143,16,1
,0,484,86145,16,1
,0,484,86147,16,1
,0,484,86149,16,1
,0,484,86151,16,1
,0,484,86153,16,1
,0,484,86155,16,1
,0,484,86157,16,1
,0,484,86159,16,1
,0,484,86161,16,1
,0,484,86163,16,1
,0,484,86165,16,1
,0,484,86167,16,1
,0,484,86169,16,1
,0,484,86171,16,1
,0,484,86173,16,1
,0,484,86175,16,0
,0,484,86177,16,1
,0,484,86179,16,1
,0,484,86181,16,1
,0,484,86183,16,1
,0,484,86185,16,1
,0,484,86187,16,1
,0,484,86189,16,1
,0,484,86191,16,1
,0,484,86193,16,1
,0,484,86195,16,1
,0,484,86197,16,1
,0,484,86199,16,1
,0,484,86201,16,1
,0,484,86203,16,1
,0,484,86205,16,1
,0,484,86207,16,1
,0,484,86209,16,1
,0,484,86211,16,1
,0,484,86213,16,1
,0,484,86215,16,1
,0,484,86217,16,1
,0,484,86219,16,1
,0,484,86221,16,1
,0,484,86223,16,1
,0,484,86225,16,1
,0,484,86227,16,1
,0,484,86229,16,1
,0,484,86231,16,1
,0,484,86233,16,1
,0,484,86235,16,1
,0,484,86237,16,1
,0,484,86239,16,1
,0,484,86241,16,1
,0,484,86243,16,1
,0,484,86245,16,1
,0,484,86247,16,1
,0,484,86249,16,1
,0,484,86251,16,1
,0,484,86253,16,1
,0,484,86255,16,1
,0,484,86257,16,1
,0,484,86259,16,1
,0,484,86261,16,1
,0,484,86263,16,1
,0,484,86265,16,1
,0,484,86267,16,1
,0,484,86269,16,1
,0,484,86271,16,1
,0,484,86273,16,1
,0,484,86275,16,1
,0,484,86277,16,1
,0,484,86279,16,1
,0,484,86281,16,1
,0,484,86283,16,1
,0,484,86285,16,1
,0,484,86287,16,1
,0,484,86289,16,1
,0,484,86291,16,1
,0,484,86293,16,1
,0,484,86295,16,1
,0,484,86297,16,1
,0,484,86299,16,1
,0,484,86301,16,1
,0,484,86303,16,1
,0,484,86305,16,1
,0,484,86307,16,0
,0,484,86309,16,1
,0,484,86311,16,1
,0,484,86313,16,1
,0,484,86315,16,1
,0,484,86317,16,1
,0,484,86319,16,1
,0,484,86321,16,1
,0,484,86323,16,1
,0,484,86325,16,1
,0,484,86327,16,1
,0,484,86329,16,1
,0,484,86331,16,1
,0,484,86333,16,1
,0,484,86335,16,1
,0,484,86337,16,1
,0,484,86339,16,1
,0,484,86341,16,1
,0,484,86343,16,1
,0,484,86345,16,1
,0,484,86347,16,1
,0,484,86349,16,1
,0,484,86351,16,1
,0,484,86353,16,1
,0,484,86355,16,1
,0,484,86357,16,1
,0,484,86359,16,0
,0,484,86361,16,1
,0,484,86363,16,1
,0,484,86365,16,1
,0,484,86367,16,1
,0,484,86369,16,1
,0,484,86371,16,1
,0,484,86373,16,1
,0,484,86375,16,1
,0,484,86377,16,1
,0,484,86379,16,1
,0,484,86381,16,1
,0,484,86383,16,1
,0,484,86385,16,1
,0,484,86387,16,1
,0,484,86389,16,1
,0,484,86391,16,1
,0,484,86393,16,1
,0,484,86395,16,1
,0,484,86397,16,1
,0,484,86399,16,1
,0,484,86401,16,1
,0,484,86403,16,1
,0,484,86405,16,1
,0,484,86407,16,1
,0,484,86409,16,1
,0,484,86411,16,1
,0,484,86413,16,1
,0,484,86415,16,1
,0,484,86417,16,1
,0,484,86419,16,1
,0,484,86421,16,1
,0,484,86423,16,1
,0,484,86425,16,1
,0,484,86427,16,1
,0,484,86429,16,1
,0,484,86431,16,1
,0,484,86433,16,1
,0,484,86435,16,1
,0,484,86437,16,1
,0,484,86439,16,1
,0,484,86441,16,1
,0,484,86443,16,1
,0,484,86445,16,1
,0,484,86447,16,1
,0,484,86449,16,1
,0,484,86451,16,1
,0,484,86453,16,1
,0,484,86455,16,1
,0,484,86457,16,1
,0,484,86459,16,0
,0,484,86461,16,1
,0,484,86463,16,1
,0,484,86465,16,1
,0,484,86467,16,1
,0,484,86469,16,1
,0,484,86471,16,1
,0,484,86473,16,1
,0,484,86475,16,1
,0,484,86477,16,1
,0,484,86479,16,1
,0,484,86481,16,1
,0,484,86483,16,1
,0,484,86485,16,1
,0,484,86487,16,1
,0,484,86489,16,1
,0,484,86491,16,1
,0,484,86493,16,1
,0,484,86495,16,1
,0,484,86497,16,1
,0,484,86499,16,1
,0,484,86501,16,1
,0,484,86503,16,1
,0,484,86505,16,1
,0,484,86507,16,1
,0,484,86509,16,1
,0,484,86511,16,1
,0,484,86513,16,1
,0,484,86515,16,1
,0,484,86517,16,1
,0,484,86519,16,1
,0,484,86521,16,1
,0,484,86523,16,1
,0,484,86525,16,1
,0,484,86527,16,1
,0,484,86529,16,1
,0,484,86531,16,1
,0,484,86533,16,1
,0,484,86535,16,1
,0,484,86537,16,1
,0,484,86539,16,1
,0,484,86541,16,1
,0,484,86543,16,1
,0,484,86545,16,1
,0,484,86547,16,1
,0,484,86549,16,1
,0,484,86551,16,1
,0,484,86553,16,1
,0,484,86555,16,1
,0,484,86557,16,1
,0,484,86559,16,1
,0,484,86561,16,1
,0,484,86563,16,1
,0,484,86565,16,1
,0,484,86567,16,1
,0,484,86569,16,1
,0,484,86571,16,1
,0,484,86573,16,1
,0,484,86575,16,1
,0,484,86577,16,1
,0,484,86579,16,1
,0,484,86581,16,1
,0,484,86583,16,1
,0,484,86585,16,1
,0,484,86587,16,1
,0,484,86589,16,1
,0,484,86591,16,1
,0,484,86593,16,1
,0,484,86595,16,1
,0,484,86597,16,1
,0,484,86599,16,1
,0,484,86601,16,1
,0,484,86603,16,1
,0,484,86605,16,1
,0,484,86607,16,1
,0,484,86609,16,1
,0,484,86611,16,1
,0,484,86613,16,1
,0,484,86615,16,1
,0,484,86617,16,1
,0,484,86619,16,1
,0,484,86621,16,1
,0,484,86623,16,1
,0,484,86625,16,1
,0,484,86627,16,1
,0,484,86629,16,1
,0,484,86631,16,1
,0,484,86633,16,1
,0,484,86635,16,1
,0,484,86637,16,1
,0,484,86639,16,1
,0,484,86641,16,1
,0,484,86643,16,1
,0,484,86645,16,1
,0,484,86647,16,1
,0,484,86649,16,1
,0,484,86651,16,1
,0,484,86653,16,1
,0,484,86655,16,1
,0,484,86657,16,1
,0,484,86659,16,1
,0,484,86661,16,1
,0,484,86663,16,1
,0,484,86665,16,1
,0,484,86667,16,1
,0,484,86669,16,1
,0,484,86671,16,1
,0,484,86673,16,1
,0,484,86675,16,1
,0,484,86677,16,1
,0,484,86679,16,1
,0,484,86681,16,1
,0,484,86683,16,1
,0,484,86685,16,1
,0,484,86687,16,1
,0,484,86689,16,1
,0,484,86691,16,1
,0,484,86693,16,1
,0,484,86695,16,1
,0,484,86697,16,1
,0,484,86699,16,1
,0,484,86701,16,1
,2,35933,86703,40,0
,0,484,86705,16,1
,0,484,86707,16,1
,0,484,86709,16,1
,0,484,86711,16,1
,0,484,86713,16,1
,0,484,86715,16,1
,0,484,86717,16,1
,0,484,86719,16,1
,0,484,86721,16,1
,1,34296,86723,344,26
,0,87,86725,16,1
,0,87,86727,16,1
,0,87,86729,16,1
,0,87,86731,16,1
,0,87,86733,16,1
,0,87,86735,16,1
,0,87,86737,16,1
,0,87,86739,16,1
,0,87,86741,16,1
,0,87,86743,16,1
,0,87,86745,16,1
,0,87,86747,16,1
,0,87,86749,16,1
,1,34296,86751,56,2
,0,87,86753,16,1
,1,34296,86755,56,2
,0,87,86757,16,1
,0,16,86759,64,4
,1,34314,86761,40,1
,1,34314,86763,40,2
,1,34314,86765,40,2
,1,34314,86767,40,2
,1,34314,86769,40,2
,2,35934,86771,32,0
,2,35935,86773,40,0
,2,35936,86775,40,0
,0,16,86777,64,4
,1,34296,86779,800,33
,1,34296,86781,296,23
,1,34296,86783,488,38
,1,34296,86785,104,6
,0,16,86787,64,4
,1,34296,86789,200,14
,1,34296,86791,320,19
,1,34296,86793,176,12
,1,34296,86795,248,14
,1,34314,86797,32,2
,0,16,86799,64,7
,1,34314,86801,32,2
,0,16,86803,64,7
,0,16,86805,64,7
,1,34314,86807,32,2
,0,16,86809,64,7
,1,34314,86811,32,2
,0,16,86813,64,7
,1,34314,86815,32,2
,0,16,86817,64,7
,1,34314,86819,32,2
,0,16,86821,64,5
,1,34296,86823,584,46
,1,34296,86825,104,6
,1,34296,86827,56,2
,0,87,86829,16,1
,0,16,86831,64,3
,1,34296,86833,176,7
,1,34296,86835,176,12
,1,34296,86837,920,74
,1,34296,86839,56,2
,0,16,86841,64,4
,1,34314,86843,40,1
,1,34296,86845,656,44
,1,34296,86847,392,23
,0,16,86849,64,3
,1,34296,86851,248,12
,0,16,86853,64,3
,1,34296,86855,200,9
,0,16,86857,64,3
,1,34296,86859,512,37
,5,53,86861,72,9
,0,16,86863,64,4
,0,16,86865,64,4
,0,16,86867,64,4
,1,34314,86869,24,0
,1,34296,86871,176,6
,1,34314,86873,32,1
,1,34296,86875,176,6
,1,34314,86877,32,1
,0,16,86879,64,5
,1,34296,86881,176,6
,1,34314,86883,32,1
,1,34296,86885,176,6
,1,34314,86887,32,1
,1,34296,86889,176,6
,1,34314,86891,32,1
,1,34296,86893,176,6
,1,34314,86895,32,1
,1,34314,86897,32,1
,0,16,86899,64,6
,1,34296,86901,128,6
,1,34296,86903,128,5
,1,34314,86905,32,1
,0,16,86907,64,7
,1,34314,86909,32,2
,0,16,86911,64,7
,1,34314,86913,32,2
,0,16,86915,64,7
,2,35937,86917,32,0
,2,35938,86919,32,0
,1,34314,86921,32,2
,0,16,86923,64,7
,1,34296,86925,128,5
,1,34314,86927,32,2
,1,34296,86929,80,2
,1,34314,86931,32,1
,0,16,86933,64,7
,1,34314,86935,32,2
,0,16,86937,64,4
,1,34296,86939,224,16
,1,34296,86941,1160,94
,1,34296,86943,80,4
,2,35939,86945,32,0
,2,35940,86947,32,0
,2,35937,86949,32,0
,2,35938,86951,32,0
,2,35941,86953,32,0
,1,34296,86955,272,15
,1,34296,86957,680,54
,1,34296,86959,248,18
,0,87,86961,16,1
,0,87,86963,16,1
,0,87,86965,16,1
,0,87,86967,16,1
,1,34296,86969,104,4
,1,34314,86971,32,2
,0,16,86973,64,4
,1,34296,86975,56,2
,1,34296,86977,248,8
,1,34314,86979,32,2
,0,16,86981,64,7
,1,34314,86983,32,2
,0,16,86985,64,7
,0,16,86987,64,7
,1,34314,86989,32,2
,0,16,86991,64,7
,1,34314,86993,32,2
,0,16,86995,64,7
,1,34314,86997,32,2
,0,16,86999,64,7
,1,34314,87001,32,2
,0,16,87003,64,7
,1,34314,87005,32,2
,0,16,87007,64,4
,1,34296,87009,56,2
,1,34296,87011,176,6
,1,34314,87013,32,2
,0,16,87015,64,7
,1,34314,87017,32,2
,0,16,87019,64,7
,0,16,87021,64,7
,1,34314,87023,32,2
,0,16,87025,64,7
,1,34314,87027,32,2
,0,16,87029,64,7
,1,34314,87031,32,2
,0,16,87033,64,4
,1,34296,87035,56,2
,0,16,87037,64,4
,1,34296,87039,56,2
,0,16,87041,64,4
,1,34296,87043,56,2
,0,16,87045,64,4
,1,34296,87047,56,2
,0,16,87049,64,4
,1,34296,87051,56,2
,0,16,87053,64,4
,1,34296,87055,56,2
,0,16,87057,64,4
,1,34296,87059,56,2
,0,16,87061,64,4
,1,34296,87063,56,2
,0,16,87065,64,4
,1,34296,87067,56,2
,0,16,87069,64,4
,1,34296,87071,56,2
,0,16,87073,64,4
,1,34296,87075,56,2
,0,16,87077,64,4
,1,34296,87079,56,2
,0,16,87081,64,4
,1,34296,87083,56,2
,0,16,87085,64,4
,1,34296,87087,56,2
,0,16,87089,64,4
,1,34296,87091,56,2
,0,16,87093,64,4
,1,34296,87095,56,2
,0,16,87097,64,4
,1,34296,87099,56,2
,0,16,87101,64,4
,1,34296,87103,56,2
,0,16,87105,64,4
,1,34296,87107,56,2
,0,16,87109,64,4
,1,34296,87111,56,2
,0,16,87113,64,4
,1,34296,87115,56,2
,0,16,87117,64,4
,1,34296,87119,56,2
,0,16,87121,64,4
,1,34296,87123,56,2
,0,16,87125,64,4
,1,34296,87127,56,2
,0,16,87129,64,4
,1,34296,87131,56,2
,0,16,87133,64,4
,1,34296,87135,56,2
,0,16,87137,64,4
,1,34296,87139,56,2
,0,16,87141,64,4
,1,34296,87143,56,2
,0,16,87145,64,4
,1,34296,87147,56,2
,0,16,87149,64,4
,1,34296,87151,56,2
,0,16,87153,64,4
,1,34296,87155,56,2
,0,16,87157,64,4
,1,34296,87159,56,2
,0,16,87161,64,4
,1,34296,87163,56,2
,0,16,87165,64,4
,1,34296,87167,56,2
,0,16,87169,64,4
,1,34296,87171,56,2
,0,16,87173,64,4
,1,34296,87175,56,2
,2,34520,87177,32,0
,2,35942,87179,40,0
,2,35943,87181,32,0
,2,35944,87183,40,0
,2,34625,87185,32,0
,2,35945,87187,32,0
,2,35946,87189,32,0
,0,16,87191,64,4
,1,34296,87193,56,2
,0,16,87195,64,4
,1,34296,87197,56,2
,0,16,87199,64,4
,1,34296,87201,56,2
,1,90,87203,56,2
,1,90,87205,24,2
,1,34295,87207,4480,0
,0,483,87209,32,1
,0,483,87211,32,1
,4,35947,87213,120,4
,2,846,87215,3328,0
,2,35947,87217,40,0
,0,87,87219,16,1
,4,35813,87221,160,8
,4,51,87223,864,54
,1,52,87225,72,4
,0,16,87227,64,5
,4,91,87229,160,8
,4,51,87231,320,18
,1,52,87233,56,2
,2,35948,87235,40,0
,4,91,87237,160,8
,4,51,87239,320,18
,1,52,87241,56,2
,2,35949,87243,40,0
,4,91,87245,160,8
,4,51,87247,288,15
,1,52,87249,56,2
,2,35950,87251,40,0
,4,91,87253,160,8
,4,51,87255,256,14
,1,52,87257,56,2
,2,35951,87259,40,0
,4,91,87261,160,8
,4,51,87263,448,26
,1,52,87265,72,4
,2,35952,87267,40,2
,4,91,87269,160,8
,4,51,87271,480,31
,1,52,87273,64,3
,2,35953,87275,40,2
,4,91,87277,160,8
,4,51,87279,512,28
,1,52,87281,88,5
,2,35954,87283,40,2
,0,483,87285,32,2
,1,1,87287,48,2
,0,484,87289,16,0
,0,484,87291,16,0
,1,52,87293,136,9
,4,91,87295,160,8
,4,51,87297,1344,90
,0,483,87299,32,1
,1,52,87301,56,2
,4,51,87303,256,9
,5,53,87305,72,9
,5,35813,87307,72,12
,0,70,87309,72,7
,5,53,87311,72,9
,5,53,87313,72,9
,5,53,87315,72,9
,5,53,87317,72,9
,5,53,87319,72,9
,5,53,87321,72,9
,4,91,87323,160,7
,2,35955,87325,40,2
,4,91,87327,160,7
,0,483,87329,32,2
,1,1,87331,32,1
,0,484,87333,16,0
,1,1,87335,64,3
,0,483,87337,32,2
,1,1,87339,80,4
,0,484,87341,16,0
,0,484,87343,16,0
,0,484,87345,16,0
,0,484,87347,16,0
,0,782,87349,128,6
,0,789,87351,24,2
,3,50,87353,24,4
,0,785,87355,40,2
,0,785,87357,40,2
,0,87,87359,16,1
,0,783,87361,56,4
,0,87,87363,16,1
,0,87,87365,16,1
,0,782,87367,128,2
,0,789,87369,24,2
,0,87,87371,16,1
,3,50,87373,24,24
,0,782,87375,128,2
,0,789,87377,24,2
,0,87,87379,16,1
,0,782,87381,128,2
,0,789,87383,24,2
,0,87,87385,16,1
,0,782,87387,128,2
,0,789,87389,24,2
,0,87,87391,16,1
,0,782,87393,128,2
,0,789,87395,24,2
,0,87,87397,16,1
,0,782,87399,128,2
,0,789,87401,24,2
,0,87,87403,16,1
,0,782,87405,128,2
,0,789,87407,24,2
,0,87,87409,16,1
,0,782,87411,128,2
,0,789,87413,24,2
,0,87,87415,16,1
,0,782,87417,128,2
,0,789,87419,24,2
,0,87,87421,16,1
,0,782,87423,128,2
,0,789,87425,24,2
,0,87,87427,16,1
,0,782,87429,128,2
,0,789,87431,24,2
,0,87,87433,16,1
,4,91,87435,160,7
,3,50,87437,24,3
,0,16,87439,64,3
,0,782,87441,128,2
,0,789,87443,24,2
,0,87,87445,16,1
,4,91,87447,160,7
,3,50,87449,24,3
,0,16,87451,64,3
,4,34723,87453,160,7
,3,34723,87455,24,14
,0,16,87457,64,6
,4,1458,87459,160,7
,3,1458,87461,24,3
,0,16,87463,64,3
,4,1460,87465,160,7
,3,1460,87467,24,3
,0,16,87469,64,3
,4,34724,87471,160,7
,3,34724,87473,24,3
,0,16,87475,64,3
,4,34725,87477,160,7
,3,34725,87479,24,3
,0,16,87481,64,3
,4,34726,87483,160,7
,3,34726,87485,24,3
,0,16,87487,64,3
,4,34727,87489,160,7
,3,34727,87491,24,3
,0,16,87493,64,3
,4,34728,87495,160,7
,3,34728,87497,24,3
,0,16,87499,64,3
,4,34729,87501,160,7
,3,34729,87503,24,3
,0,16,87505,64,3
,4,34730,87507,160,7
,3,34730,87509,24,3
,0,16,87511,64,3
,4,34731,87513,160,7
,3,34731,87515,24,3
,0,16,87517,64,3
,4,35956,87519,120,4
,2,846,87521,3888,0
,2,35956,87523,32,0
,0,87,87525,16,1
,4,1168,87527,160,7
,4,1061,87529,160,8
,4,51,87531,544,31
,1,52,87533,64,3
,0,16,87535,64,5
,4,797,87537,160,7
,4,91,87539,160,7
,2,35957,87541,40,2
,4,91,87543,160,7
,4,91,87545,160,7
,2,35958,87547,40,2
,4,91,87549,160,7
,2,35959,87551,40,2
,4,91,87553,160,7
,2,35960,87555,40,2
,4,91,87557,160,7
,2,35961,87559,40,2
,4,91,87561,160,7
,2,35962,87563,40,2
,4,91,87565,160,7
,2,35963,87567,40,2
,4,91,87569,160,7
,2,35964,87571,40,2
,0,483,87573,32,2
,1,1,87575,112,6
,0,484,87577,16,0
,0,484,87579,16,0
,0,484,87581,16,0
,0,484,87583,16,0
,0,484,87585,16,0
,0,484,87587,16,0
,1,52,87589,232,16
,4,91,87591,160,8
,4,51,87593,2048,119
,0,483,87595,32,1
,1,52,87597,56,2
,4,51,87599,256,9
,4,35965,87601,120,4
,2,846,87603,33984,0
,2,35965,87605,32,0
,0,87,87607,16,1
,1,1,87609,32,1
,1,1,87611,32,1
,4,35752,87613,160,7
,4,35536,87615,160,7
,4,35507,87617,160,7
,4,35741,87619,160,7
,4,35807,87621,160,7
,4,35856,87623,160,7
,4,35841,87625,160,8
,4,51,87627,416,26
,1,52,87629,56,2
,4,35668,87631,160,8
,4,51,87633,1632,96
,1,52,87635,56,2
,4,35794,87637,160,7
,4,35595,87639,160,7
,4,35714,87641,160,7
,4,35563,87643,160,7
,4,35815,87645,160,7
,4,35737,87647,160,7
,4,35785,87649,160,8
,4,51,87651,704,37
,1,52,87653,72,4
,4,1330,87655,160,8
,4,51,87657,1184,74
,1,52,87659,88,6
,4,35440,87661,160,7
,4,35662,87663,160,7
,4,797,87665,160,7
,4,35471,87667,160,7
,4,35562,87669,160,7
,4,35928,87671,160,7
,4,35751,87673,160,7
,4,53,87675,160,7
,4,91,87677,160,7
,4,91,87679,160,7
,2,35966,87681,40,2
,4,91,87683,160,7
,2,35967,87685,40,2
,4,91,87687,160,7
,2,35968,87689,40,0
,4,91,87691,160,7
,2,35969,87693,40,2
,4,91,87695,160,7
,2,35970,87697,40,2
,4,91,87699,160,7
,2,35971,87701,40,2
,4,91,87703,160,7
,2,35972,87705,40,2
,4,91,87707,160,7
,2,35973,87709,40,2
,4,91,87711,160,7
,2,35974,87713,40,2
,4,91,87715,160,7
,2,1411,87717,40,2
,4,91,87719,160,7
,2,1411,87721,40,2
,4,91,87723,160,7
,2,35975,87725,40,0
,4,91,87727,160,7
,2,35976,87729,40,0
,4,91,87731,160,7
,2,35977,87733,40,2
,4,91,87735,160,7
,2,35978,87737,40,2
,4,91,87739,160,7
,2,35979,87741,40,2
,4,91,87743,160,7
,2,35980,87745,40,2
,4,91,87747,160,7
,2,35981,87749,40,2
,4,91,87751,160,7
,4,91,87753,160,7
,4,91,87755,160,7
,2,35982,87757,40,0
,4,91,87759,160,7
,4,91,87761,160,8
,4,51,87763,672,31
,1,52,87765,128,8
,4,91,87767,160,8
,4,51,87769,1376,78
,1,52,87771,136,9
,2,35983,87773,40,2
,4,91,87775,160,7
,4,91,87777,160,7
,2,35984,87779,40,2
,4,91,87781,160,7
,2,35985,87783,40,0
,4,91,87785,160,7
,2,35986,87787,40,0
,4,91,87789,160,7
,2,35987,87791,40,2
,4,91,87793,160,7
,2,35988,87795,40,2
,4,91,87797,160,7
,2,35989,87799,40,2
,4,91,87801,160,7
,2,35990,87803,40,2
,4,91,87805,160,7
,2,35991,87807,40,2
,4,91,87809,160,7
,2,35992,87811,40,0
,4,91,87813,160,7
,2,35993,87815,40,2
,4,91,87817,160,7
,4,91,87819,160,7
,2,35994,87821,40,2
,4,91,87823,160,7
,2,35995,87825,40,0
,4,91,87827,160,7
,2,35996,87829,40,0
,4,91,87831,160,7
,2,35997,87833,40,2
,4,91,87835,160,7
,2,35998,87837,40,2
,4,53,87839,160,7
,2,35999,87841,40,2
,4,91,87843,160,7
,2,35999,87845,40,2
,0,483,87847,32,2
,1,1,87849,96,5
,0,484,87851,16,0
,0,484,87853,16,0
,0,484,87855,16,0
,0,484,87857,16,0
,0,484,87859,16,0
,1,52,87861,656,42
,4,91,87863,160,8
,4,51,87865,7264,430
,0,483,87867,32,1
,1,52,87869,56,2
,4,51,87871,256,9
,0,782,87873,128,2
,0,789,87875,24,2
,0,87,87877,16,1
,4,91,87879,160,7
,3,50,87881,24,3
,0,16,87883,64,3
,0,782,87885,128,2
,0,789,87887,24,2
,0,87,87889,16,1
,4,91,87891,160,7
,3,50,87893,24,3
,0,16,87895,64,3
,0,782,87897,128,2
,0,789,87899,24,2
,0,87,87901,16,1
,4,91,87903,160,7
,3,50,87905,24,3
,0,16,87907,64,3
,0,782,87909,128,2
,0,789,87911,24,2
,0,87,87913,16,1
,4,91,87915,160,7
,3,50,87917,24,3
,0,16,87919,64,3
,0,782,87921,128,2
,0,789,87923,24,2
,0,87,87925,16,1
,4,91,87927,160,7
,3,50,87929,24,3
,0,16,87931,64,3
,0,782,87933,128,2
,0,789,87935,24,2
,0,87,87937,16,1
,4,91,87939,160,7
,3,50,87941,24,3
,0,16,87943,64,3
,0,782,87945,128,2
,0,789,87947,24,2
,0,87,87949,16,1
,4,91,87951,160,7
,3,50,87953,24,3
,0,16,87955,64,3
,0,782,87957,128,2
,0,789,87959,24,2
,0,87,87961,16,1
,4,91,87963,160,7
,3,50,87965,24,3
,0,16,87967,64,3
,0,782,87969,128,2
,0,789,87971,24,2
,0,87,87973,16,1
,4,91,87975,160,7
,3,50,87977,24,3
,0,16,87979,64,3
,0,782,87981,128,2
,0,789,87983,24,2
,0,87,87985,16,1
,4,91,87987,160,7
,3,50,87989,24,3
,0,16,87991,64,3
,0,782,87993,128,2
,0,789,87995,24,2
,0,87,87997,16,1
,4,91,87999,160,7
,3,50,88001,24,3
,0,16,88003,64,3
,0,782,88005,128,2
,0,789,88007,24,2
,0,87,88009,16,1
,4,91,88011,160,7
,3,50,88013,24,3
,0,16,88015,64,3
,5,53,88017,72,41
,3,50,88019,24,14
,5,35752,88021,72,41
,5,35536,88023,72,41
,5,35507,88025,72,41
,5,35741,88027,72,41
,5,53,88029,72,41
,5,35807,88031,72,41
,5,35856,88033,72,42
,5,35841,88035,72,41
,5,35668,88037,72,45
,5,35794,88039,72,41
,5,35595,88041,72,41
,5,35714,88043,72,41
,5,35563,88045,72,41
,5,35815,88047,72,41
,5,35737,88049,72,41
,5,35785,88051,72,41
,5,1330,88053,72,41
,5,35440,88055,72,41
,5,35662,88057,72,41
,5,797,88059,72,41
,5,35471,88061,72,45
,5,35562,88063,72,41
,5,53,88065,72,41
,5,35928,88067,72,41
,5,35751,88069,72,42
,0,70,88071,328,36
,5,53,88073,72,41
,5,53,88075,72,41
,5,53,88077,72,41
,5,53,88079,72,41
,5,53,88081,72,41
,5,53,88083,72,41
,5,53,88085,72,41
,5,53,88087,72,41
,0,88,88089,24,2
,5,53,88091,72,41
,0,88,88093,24,2
,5,53,88095,72,41
,5,53,88097,72,41
,5,53,88099,72,41
,5,53,88101,72,41
,5,53,88103,72,41
,5,53,88105,72,41
,5,53,88107,72,42
,1,69,88109,40,1
,0,88,88111,24,2
,5,53,88113,72,41
,0,88,88115,24,2
,5,53,88117,72,41
,5,53,88119,72,42
,1,69,88121,40,1
,0,88,88123,24,2
,5,53,88125,72,41
,0,88,88127,24,2
,5,53,88129,72,41
,5,53,88131,72,41
,5,53,88133,72,41
,0,88,88135,24,2
,5,53,88137,72,41
,5,53,88139,72,41
,5,53,88141,72,41
,5,53,88143,72,41
,1,34295,88145,480,0
,5,53,88147,72,41
,5,53,88149,72,41
,5,53,88151,72,41
,5,53,88153,72,41
,5,53,88155,72,41
,5,53,88157,72,41
,5,53,88159,72,41
,5,53,88161,72,41
,5,53,88163,72,41
,5,53,88165,72,41
,5,53,88167,72,41
,5,53,88169,72,41
,5,53,88171,72,14
,5,1168,88173,72,18
,5,1061,88175,72,19
,5,797,88177,72,14
,0,70,88179,112,12
,5,53,88181,72,14
,5,53,88183,72,14
,5,53,88185,72,14
,5,53,88187,72,14
,5,53,88189,72,14
,5,53,88191,72,14
,5,53,88193,72,15
,1,69,88195,32,1
,1,1,88197,64,3
,0,483,88199,32,2
,1,1,88201,48,2
,0,484,88203,16,0
,0,484,88205,16,0
,1,1,88207,32,1
,0,483,88209,32,2
,1,1,88211,64,3
,0,484,88213,16,0
,0,484,88215,16,0
,0,484,88217,16,0
,0,483,88219,32,2
,1,1,88221,32,1
,0,484,88223,16,0
,0,483,88225,32,2
,1,1,88227,48,2
,0,484,88229,16,0
,0,484,88231,16,0
,1,1,88233,32,0
,0,483,88235,32,2
,1,1,88237,48,2
,0,484,88239,16,0
,0,484,88241,16,0
,0,483,88243,32,1
,0,483,88245,32,2
,1,1,88247,48,2
,0,484,88249,16,0
,0,484,88251,16,0
,1,1,88253,32,0
,4,91,88255,160,8
,4,51,88257,256,9
,1,52,88259,56,2
,2,36000,88261,40,2
,0,483,88263,32,1
,5,53,88265,72,7
,0,70,88267,56,5
,4,44,88269,160,7
,0,483,88271,32,1
,0,483,88273,32,2
,1,1,88275,48,2
,0,484,88277,16,0
,0,484,88279,16,0
,1,1,88281,32,0
,1,1,88283,32,1
,0,483,88285,32,1
,0,483,88287,32,1
,5,53,88289,72,9
,4,91,88291,160,7
,2,36001,88293,40,2
,0,483,88295,32,2
,1,1,88297,64,3
,0,484,88299,16,0
,0,484,88301,16,0
,0,484,88303,16,0
,0,483,88305,32,1
,0,483,88307,32,1
,0,782,88309,128,5
,0,789,88311,24,2
,0,785,88313,40,2
,0,785,88315,40,2
,0,87,88317,16,1
,0,782,88319,128,2
,0,789,88321,24,2
,0,87,88323,16,1
,3,50,88325,24,13
,0,782,88327,128,2
,0,789,88329,24,2
,0,87,88331,16,1
,0,782,88333,128,2
,0,789,88335,24,2
,0,87,88337,16,1
,0,782,88339,128,2
,0,789,88341,24,2
,0,87,88343,16,1
,0,782,88345,128,2
,0,789,88347,24,2
,0,87,88349,16,1
,4,34732,88351,160,7
,3,34732,88353,24,9
,0,16,88355,64,5
,4,1458,88357,160,7
,3,1458,88359,24,3
,0,16,88361,64,3
,4,1459,88363,160,7
,3,1459,88365,24,3
,0,16,88367,64,3
,4,1460,88369,160,7
,3,1460,88371,24,3
,0,16,88373,64,3
,4,1138,88375,160,7
,3,1138,88377,24,3
,0,16,88379,64,3
,4,1284,88381,160,7
,3,1284,88383,24,3
,0,16,88385,64,3
,5,53,88387,72,8
,0,70,88389,64,6
,4,91,88391,160,7
,2,36002,88393,40,2
,0,483,88395,32,2
,1,1,88397,32,1
,0,484,88399,16,0
,5,53,88401,72,7
,0,70,88403,56,5
,5,53,88405,72,9
,1,1,88407,64,3
,4,53,88409,160,8
,4,51,88411,256,11
,1,52,88413,56,2
,0,483,88415,32,2
,1,1,88417,48,2
,0,484,88419,16,0
,0,484,88421,16,0
,0,483,88423,32,1
,4,91,88425,160,8
,4,51,88427,1280,54
,1,52,88429,104,8
,0,483,88431,32,2
,1,1,88433,32,1
,0,484,88435,16,0
,0,483,88437,32,1
,0,483,88439,32,1
,0,483,88441,32,1
,0,483,88443,32,1
,0,483,88445,32,2
,1,1,88447,32,1
,0,484,88449,16,0
,0,483,88451,32,2
,1,1,88453,32,1
,0,484,88455,16,0
,0,483,88457,32,2
,1,1,88459,32,1
,0,484,88461,16,0
,0,483,88463,32,2
,1,1,88465,32,1
,0,484,88467,16,0
,1,1,88469,32,0
,4,53,88471,160,7
,0,483,88473,32,2
,1,1,88475,48,2
,0,484,88477,16,0
,0,484,88479,16,0
,0,483,88481,32,2
,1,1,88483,64,3
,0,484,88485,16,0
,0,484,88487,16,0
,0,484,88489,16,0
,0,483,88491,32,2
,1,1,88493,32,1
,0,484,88495,16,0
,4,53,88497,160,8
,4,51,88499,192,7
,1,52,88501,48,1
,0,483,88503,32,2
,1,1,88505,64,3
,0,484,88507,16,0
,0,484,88509,16,0
,0,484,88511,16,0
,4,53,88513,160,7
,0,483,88515,32,2
,1,1,88517,32,1
,0,484,88519,16,0
,0,483,88521,32,2
,1,1,88523,64,3
,0,484,88525,16,0
,0,484,88527,16,0
,0,484,88529,16,0
,0,483,88531,32,2
,1,1,88533,32,1
,0,484,88535,16,0
,0,483,88537,32,1
,4,53,88539,160,7
,0,483,88541,32,2
,1,1,88543,80,4
,0,484,88545,16,0
,0,484,88547,16,0
,0,484,88549,16,0
,0,484,88551,16,0
,0,483,88553,32,2
,1,1,88555,176,10
,0,484,88557,16,0
,0,484,88559,16,0
,0,484,88561,16,0
,0,484,88563,16,0
,0,484,88565,16,0
,0,484,88567,16,0
,0,484,88569,16,0
,0,484,88571,16,0
,0,484,88573,16,0
,0,484,88575,16,0
,0,483,88577,32,2
,1,1,88579,32,1
,0,484,88581,16,0
,0,483,88583,32,2
,1,1,88585,32,1
,0,484,88587,16,0
,4,53,88589,160,8
,4,51,88591,256,9
,1,52,88593,48,1
,0,483,88595,32,2
,1,1,88597,96,5
,0,484,88599,16,0
,0,484,88601,16,0
,0,484,88603,16,0
,0,484,88605,16,0
,0,484,88607,16,0
,0,483,88609,32,1
,0,483,88611,32,1
,1,1,88613,48,2
,0,483,88615,32,2
,1,1,88617,48,2
,0,484,88619,16,0
,0,484,88621,16,0
,0,483,88623,32,2
,1,1,88625,32,1
,0,484,88627,16,0
,0,483,88629,32,2
,1,1,88631,64,3
,0,484,88633,16,0
,0,484,88635,16,0
,0,484,88637,16,0
,0,483,88639,32,1
,0,483,88641,32,1
,1,1,88643,32,0
,0,483,88645,32,2
,1,1,88647,32,1
,0,484,88649,16,0
,0,483,88651,32,1
,0,483,88653,32,2
,1,1,88655,112,6
,0,484,88657,16,0
,0,484,88659,16,0
,0,484,88661,16,0
,0,484,88663,16,0
,0,484,88665,16,0
,0,484,88667,16,0
,3,35813,88669,24,13
,1,69,88671,40,3
,3,34723,88673,32,5
,1,131,88675,40,1
,0,16,88677,64,5
,0,16,88679,64,5
,3,34723,88681,32,5
,1,131,88683,40,1
,2,36003,88685,32,0
,2,36004,88687,32,0
,2,34490,88689,32,0
,1,34296,88691,344,21
,1,1,88693,32,1
,5,53,88695,72,6
,1,34314,88697,32,1
,0,16,88699,64,7
,1,34314,88701,32,2
,0,16,88703,64,6
,0,16,88705,64,7
,1,34314,88707,32,2
,0,16,88709,64,7
,1,34314,88711,32,2
,0,16,88713,64,7
,1,34314,88715,32,2
,0,16,88717,64,7
,1,34314,88719,32,2
,0,16,88721,64,7
,1,34314,88723,32,2
,0,16,88725,64,7
,1,34314,88727,32,2
,0,16,88729,64,7
,1,34314,88731,32,2
,0,16,88733,64,5
,2,36005,88735,40,2
,2,36006,88737,40,0
,1,90,88739,32,1
,1,90,88741,272,20
,0,16,88743,64,4
,1,34296,88745,56,2
,1,34296,88747,104,6
,1,34314,88749,248,28
,0,16,88751,64,5
,0,16,88753,64,7
,0,16,88755,64,7
,0,16,88757,64,7
,0,16,88759,64,7
,0,16,88761,64,7
,0,16,88763,64,4
,1,34296,88765,56,2
,1,34314,88767,32,2
,0,16,88769,64,7
,0,16,88771,64,4
,1,34296,88773,56,2
,0,16,88775,64,4
,1,34296,88777,56,2
,0,16,88779,64,4
,1,34296,88781,56,2
,0,16,88783,64,4
,1,34296,88785,56,2
,0,16,88787,64,4
,1,34296,88789,56,2
,0,16,88791,64,4
,1,34296,88793,56,2
,0,16,88795,64,4
,1,34296,88797,56,2
,0,16,88799,64,4
,1,34296,88801,56,2
,0,16,88803,64,4
,1,34296,88805,56,2
,0,16,88807,64,4
,1,34296,88809,56,2
,1,131,88811,40,1
,0,16,88813,64,4
,1,34296,88815,128,6
,1,34296,88817,296,21
,1,34314,88819,32,2
,0,16,88821,64,5
,1,34296,88823,248,9
,1,34314,88825,32,2
,0,16,88827,64,7
,1,131,88829,48,0
,2,36007,88831,32,0
,2,36008,88833,40,0
,2,36009,88835,40,2
,2,36010,88837,40,0
,2,36011,88839,40,0
,2,36012,88841,40,0
,2,36013,88843,40,2
,2,36014,88845,40,2
,2,36015,88847,40,2
,2,36016,88849,40,2
,2,36017,88851,40,2
,2,36018,88853,32,0
,2,34484,88855,40,0
,2,36019,88857,40,0
,2,36020,88859,40,0
,2,36021,88861,40,2
,2,36022,88863,32,0
,2,1360,88865,40,2
,2,34698,88867,32,0
,2,1360,88869,40,2
,2,34698,88871,32,0
,2,36006,88873,40,0
,2,36023,88875,40,0
,2,34582,88877,32,0
,2,36024,88879,40,2
,2,36025,88881,40,2
,2,34584,88883,32,0
,2,36026,88885,32,0
,2,36027,88887,40,2
,2,36028,88889,40,0
,2,36018,88891,32,0
,2,36022,88893,32,0
,2,36029,88895,40,2
,2,36030,88897,40,2
,2,36031,88899,40,0
,2,36032,88901,32,0
,2,36033,88903,32,0
,2,36034,88905,40,2
,2,36034,88907,40,2
,0,16,88909,64,4
,1,34296,88911,56,2
,1,34296,88913,488,27
,0,16,88915,64,4
,1,34296,88917,56,2
,1,34314,88919,32,2
,0,16,88921,64,7
,0,16,88923,64,4
,1,34296,88925,56,2
,1,34314,88927,32,2
,0,16,88929,64,7
,0,16,88931,64,4
,1,34296,88933,56,2
,1,34314,88935,32,2
,0,16,88937,64,7
,0,16,88939,64,4
,1,34296,88941,56,2
,1,34314,88943,32,2
,0,16,88945,64,7
,0,16,88947,64,4
,1,34296,88949,56,2
,1,34314,88951,32,2
,0,16,88953,64,7
,0,16,88955,64,4
,1,34296,88957,56,2
,1,34314,88959,32,2
,0,16,88961,64,7
,0,16,88963,64,4
,1,34296,88965,56,2
,1,34314,88967,32,2
,0,16,88969,64,7
,0,16,88971,64,4
,1,34296,88973,56,2
,1,34314,88975,32,2
,0,16,88977,64,7
,0,16,88979,64,4
,1,34296,88981,56,2
,1,34314,88983,32,2
,0,16,88985,64,7
,0,16,88987,64,4
,1,34296,88989,56,2
,1,34314,88991,32,2
,0,16,88993,64,7
,0,16,88995,64,4
,1,34296,88997,56,2
,1,34314,88999,32,2
,0,16,89001,64,7
,1,34314,89003,32,2
,0,16,89005,64,7
,1,34314,89007,32,2
,0,16,89009,64,7
,1,34314,89011,32,2
,0,16,89013,64,5
,1,34314,89015,32,2
,0,16,89017,64,7
,5,53,89019,72,7
,1,34296,89021,344,24
,1,34314,89023,264,29
,0,16,89025,64,7
,0,16,89027,64,7
,0,16,89029,64,7
,0,16,89031,64,7
,0,16,89033,64,7
,1,34314,89035,32,2
,0,16,89037,64,7
,1,34314,89039,32,2
,0,16,89041,64,7
,1,34314,89043,32,2
,0,16,89045,64,7
,1,34296,89047,704,54
,1,34314,89049,32,2
,0,16,89051,64,7
,1,34314,89053,32,2
,0,16,89055,64,7
,1,34314,89057,32,1
,0,16,89059,64,7
,1,34314,89061,32,2
,0,16,89063,64,6
,0,16,89065,64,7
,1,34314,89067,32,2
,0,16,89069,64,7
,1,34314,89071,32,2
,0,16,89073,64,7
,1,34314,89075,32,2
,0,16,89077,64,7
,1,34314,89079,32,2
,0,16,89081,64,7
,1,34314,89083,32,2
,0,16,89085,64,7
,1,34314,89087,32,2
,0,16,89089,64,7
,1,34314,89091,32,2
,0,16,89093,64,7
,1,34314,89095,32,2
,0,16,89097,64,7
,1,34314,89099,32,2
,0,16,89101,64,7
,1,34314,89103,32,2
,0,16,89105,64,7
,1,34314,89107,32,2
,0,16,89109,64,7
,1,34314,89111,32,2
,0,16,89113,64,7
,1,34314,89115,32,2
,0,16,89117,64,7
,1,34314,89119,32,2
,0,16,89121,64,7
,1,34314,89123,32,2
,0,16,89125,64,7
,1,34314,89127,32,2
,0,16,89129,64,7
,1,34314,89131,32,2
,0,16,89133,64,7
,1,34314,89135,32,2
,0,16,89137,64,7
,1,34314,89139,32,2
,0,16,89141,64,7
,1,34314,89143,32,2
,0,16,89145,64,7
,1,34314,89147,32,2
,0,16,89149,64,7
,1,34314,89151,32,2
,0,16,89153,64,7
,1,34314,89155,32,2
,0,16,89157,64,7
,1,34314,89159,32,2
,0,16,89161,64,5
,1,34296,89163,344,22
,5,1022,89165,72,9
,1,34314,89167,32,2
,0,16,89169,64,7
,1,34314,89171,32,2
,0,16,89173,64,7
,1,34314,89175,32,1
,0,16,89177,64,7
,1,34314,89179,32,2
,0,16,89181,64,6
,0,16,89183,64,7
,1,34314,89185,32,2
,0,16,89187,64,7
,1,34314,89189,32,2
,0,16,89191,64,7
,1,34314,89193,32,2
,0,16,89195,64,7
,1,34314,89197,32,2
,0,16,89199,64,7
,1,34314,89201,32,2
,0,16,89203,64,7
,1,34314,89205,32,2
,0,16,89207,64,7
,1,34314,89209,32,2
,0,16,89211,64,7
,1,34314,89213,32,2
,0,16,89215,64,5
,1,34314,89217,32,2
,0,16,89219,64,7
,1,34314,89221,32,2
,0,16,89223,64,7
,1,34314,89225,32,2
,0,16,89227,64,7
,1,34314,89229,32,2
,0,16,89231,64,5
,5,53,89233,72,6
,1,34296,89235,128,8
,5,1022,89237,72,9
,1,34314,89239,32,2
,0,16,89241,64,7
,3,35668,89243,24,37
,1,131,89245,48,0
,1,34296,89247,80,4
,1,34314,89249,32,2
,0,16,89251,64,7
,1,34314,89253,32,1
,0,16,89255,64,5
,1,34296,89257,248,15
,1,34314,89259,32,2
,0,16,89261,64,5
,1,34314,89263,32,1
,0,16,89265,64,7
,1,34314,89267,32,2
,0,16,89269,64,6
,0,16,89271,64,7
,1,34314,89273,32,2
,0,16,89275,64,7
,1,34314,89277,32,2
,0,16,89279,64,7
,1,34314,89281,32,2
,0,16,89283,64,7
,1,34314,89285,32,2
,0,16,89287,64,7
,1,34314,89289,32,2
,0,16,89291,64,5
,3,1061,89293,24,11
,1,131,89295,48,0
,1,69,89297,32,2
,1,131,89299,40,1
,1,34296,89301,104,3
,1,34314,89303,32,1
,0,16,89305,64,7
,1,34314,89307,32,2
,0,16,89309,64,7
,1,34314,89311,32,2
,0,16,89313,64,5
,1,34314,89315,32,1
,0,16,89317,64,7
,1,34296,89319,848,25
,1,34314,89321,32,1
,0,16,89323,64,7
,1,34314,89325,32,2
,0,16,89327,64,7
,1,34296,89329,56,2
,1,131,89331,48,0
,0,16,89333,64,4
,1,34296,89335,704,21
,1,34314,89337,32,1
,0,16,89339,64,7
,1,34314,89341,32,2
,0,16,89343,64,7
,1,34314,89345,32,2
,0,16,89347,64,7
,1,34314,89349,32,2
,0,16,89351,64,7
,1,34314,89353,32,2
,0,16,89355,64,7
,1,34314,89357,32,2
,0,16,89359,64,7
,1,34314,89361,32,2
,0,16,89363,64,7
,1,34314,89365,32,2
,0,16,89367,64,7
,1,34314,89369,32,2
,0,16,89371,64,7
,1,34314,89373,32,2
,0,16,89375,64,7
,1,34314,89377,32,2
,0,16,89379,64,7
,1,34314,89381,32,2
,0,16,89383,64,7
,1,34314,89385,32,2
,0,16,89387,64,7
,1,34314,89389,32,2
,0,16,89391,64,7
,1,34314,89393,32,2
,0,16,89395,64,7
,1,34314,89397,32,2
,0,16,89399,64,7
,1,34314,89401,32,2
,0,16,89403,64,7
,1,34314,89405,32,2
,0,16,89407,64,7
,1,34314,89409,32,2
,0,16,89411,64,7
,1,34314,89413,32,2
,0,16,89415,64,7
,1,34314,89417,32,2
,0,16,89419,64,5
,1,34314,89421,32,2
,0,16,89423,64,7
,1,34314,89425,32,2
,0,16,89427,64,7
,1,34314,89429,32,2
,0,16,89431,64,7
,1,34314,89433,32,2
,0,16,89435,64,7
,1,34314,89437,32,2
,0,16,89439,64,7
,2,36035,89441,32,0
,1,34296,89443,56,2
,1,131,89445,48,0
,0,16,89447,64,4
,1,34296,89449,488,16
,1,34314,89451,32,1
,0,16,89453,64,7
,1,34314,89455,32,2
,0,16,89457,64,7
,1,34314,89459,32,2
,0,16,89461,64,7
,1,34314,89463,32,2
,0,16,89465,64,7
,1,34314,89467,32,2
,0,16,89469,64,7
,1,34314,89471,32,2
,0,16,89473,64,7
,1,34314,89475,32,2
,0,16,89477,64,7
,1,34314,89479,32,2
,0,16,89481,64,7
,1,34314,89483,32,2
,0,16,89485,64,7
,1,34314,89487,32,2
,0,16,89489,64,7
,1,34314,89491,32,2
,0,16,89493,64,7
,1,34314,89495,32,2
,0,16,89497,64,7
,1,34296,89499,488,17
,1,34314,89501,32,2
,0,16,89503,64,7
,1,34314,89505,32,2
,0,16,89507,64,7
,1,34314,89509,32,2
,0,16,89511,64,7
,0,16,89513,64,7
,1,34314,89515,32,2
,0,16,89517,64,5
,1,34314,89519,32,2
,0,16,89521,64,7
,1,34314,89523,32,2
,0,16,89525,64,7
,1,34314,89527,32,2
,0,16,89529,64,7
,1,34296,89531,176,12
,1,34314,89533,264,28
,0,16,89535,64,4
,0,16,89537,64,6
,0,16,89539,64,6
,0,16,89541,64,6
,1,34296,89543,104,6
,5,44,89545,72,11
,1,34314,89547,32,2
,0,16,89549,64,7
,1,34314,89551,32,2
,0,16,89553,64,7
,1,34314,89555,32,2
,0,16,89557,64,7
,0,16,89559,64,5
,1,34314,89561,32,2
,0,16,89563,64,7
,1,34314,89565,32,2
,0,16,89567,64,7
,1,34314,89569,32,2
,0,16,89571,64,7
,1,34314,89573,32,2
,0,16,89575,64,7
,1,34314,89577,32,2
,0,16,89579,64,7
,1,34314,89581,32,2
,1,34314,89583,32,2
,0,16,89585,64,7
,1,34314,89587,32,2
,0,16,89589,64,7
,1,34314,89591,32,2
,0,16,89593,64,7
,1,34314,89595,32,2
,0,16,89597,64,7
,1,34314,89599,32,2
,0,16,89601,64,7
,1,34314,89603,32,2
,0,16,89605,64,7
,1,34314,89607,32,2
,0,16,89609,64,7
,3,1289,89611,280,19
,3,50,89613,24,5
,3,1321,89615,224,15
,1,131,89617,112,2
,0,16,89619,64,5
,1,34296,89621,704,26
,1,34314,89623,32,2
,0,16,89625,64,7
,1,34314,89627,32,2
,2,36036,89629,40,0
,1,90,89631,144,10
,0,16,89633,64,4
,1,34296,89635,56,2
,0,16,89637,64,4
,1,34296,89639,56,2
,0,16,89641,64,4
,1,34296,89643,56,2
,0,16,89645,64,4
,1,34296,89647,56,2
,0,16,89649,64,4
,1,34296,89651,56,2
,1,131,89653,40,1
,0,16,89655,64,4
,1,34296,89657,176,11
,1,34296,89659,56,2
,1,34314,89661,32,2
,1,34296,89663,56,2
,1,34314,89665,32,1
,1,34296,89667,56,1
,1,34296,89669,56,2
,2,36037,89671,40,2
,2,36006,89673,40,0
,1,34314,89675,32,2
,0,16,89677,64,7
,1,34314,89679,32,2
,0,16,89681,64,7
,1,34314,89683,32,2
,0,16,89685,64,5
,1,34296,89687,104,5
,1,34314,89689,32,2
,0,16,89691,64,7
,1,34314,89693,32,2
,0,16,89695,64,5
,3,1289,89697,280,19
,3,50,89699,24,6
,3,1321,89701,224,15
,1,131,89703,136,3
,0,16,89705,64,5
,1,34314,89707,32,2
,1,131,89709,48,0
,1,34296,89711,128,4
,1,34314,89713,32,1
,0,16,89715,64,7
,1,34314,89717,32,2
,0,16,89719,64,7
,1,34314,89721,32,2
,0,16,89723,64,7
,1,34314,89725,32,2
,0,16,89727,64,5
,1,34296,89729,344,23
,5,36038,89731,72,14
,5,36038,89733,72,14
,5,36038,89735,72,14
,5,36038,89737,72,14
,5,36038,89739,72,14
,5,36038,89741,72,14
,5,36038,89743,72,14
,5,36038,89745,72,14
,5,36038,89747,72,14
,1,34314,89749,32,1
,0,16,89751,64,7
,1,34314,89753,32,2
,0,16,89755,64,7
,1,34314,89757,32,2
,0,16,89759,64,7
,1,34296,89761,128,7
,1,34314,89763,32,2
,0,16,89765,64,7
,1,34296,89767,128,7
,1,34314,89769,32,2
,0,16,89771,64,7
,1,34296,89773,128,7
,1,34314,89775,32,2
,0,16,89777,64,7
,1,34296,89779,128,7
,1,34314,89781,32,2
,0,16,89783,64,7
,1,34296,89785,128,7
,1,34314,89787,32,2
,0,16,89789,64,7
,1,34296,89791,128,7
,1,34314,89793,32,2
,0,16,89795,64,7
,1,34296,89797,128,7
,1,34314,89799,32,2
,0,16,89801,64,7
,1,34296,89803,128,7
,1,34314,89805,32,2
,0,16,89807,64,7
,1,34296,89809,128,7
,1,34314,89811,32,2
,0,16,89813,64,7
,1,34314,89815,32,2
,0,16,89817,64,5
,1,34296,89819,80,2
,1,34314,89821,32,1
,0,16,89823,64,7
,1,34314,89825,32,2
,0,16,89827,64,5
,1,69,89829,40,1
,1,131,89831,40,1
,3,50,89833,48,5
,3,50,89835,24,2
,3,50,89837,24,6
,3,35813,89839,104,15
,1,1,89841,88,9
,2,36039,89843,40,2
,2,36040,89845,32,0
,2,36041,89847,40,2
,2,36042,89849,32,0
,2,34809,89851,40,2
,2,34809,89853,40,2
,1,131,89855,48,0
,1,131,89857,48,0
,1,69,89859,48,3
,1,69,89861,48,1
,3,35471,89863,24,14
,1,69,89865,56,1
,1,131,89867,40,1
,1,69,89869,32,1
,5,53,89871,72,42
,0,70,89873,72,6
,3,1168,89875,24,5
,1,69,89877,32,1
,1,131,89879,40,1
,5,53,89881,72,14
,0,70,89883,72,6
,3,50,89885,48,5
,0,70,89887,80,7
,3,120,89889,32,2
,3,120,89891,32,2
,0,70,89893,56,5
,2,36043,89895,40,2
,2,36044,89897,32,0
,3,120,89899,32,2
,5,44,89901,72,11
,1,131,89903,40,1
,3,120,89905,32,2
,1,36045,89907,32,3
,0,70,89909,56,5
,1,131,89911,40,0
,0,16,89913,64,3
,1,36045,89915,32,3
,0,70,89917,56,5
,1,131,89919,40,0
,0,16,89921,64,3
,1,36045,89923,32,3
,0,70,89925,56,5
,1,131,89927,40,0
,0,16,89929,64,3
,1,36045,89931,32,3
,0,70,89933,56,5
,1,131,89935,40,0
,0,16,89937,64,3
,1,36045,89939,32,3
,0,70,89941,56,5
,1,131,89943,40,0
,0,16,89945,64,3
,1,36045,89947,32,3
,0,70,89949,56,5
,1,131,89951,40,0
,0,16,89953,64,3
,1,36045,89955,32,3
,0,70,89957,56,5
,1,131,89959,40,0
,0,16,89961,64,3
,1,36045,89963,32,3
,0,70,89965,56,5
,1,131,89967,40,0
,0,16,89969,64,3
,1,36045,89971,32,3
,0,70,89973,56,5
,1,131,89975,40,0
,0,16,89977,64,3
,3,50,89979,24,2
,2,34582,89981,32,0
,2,36026,89983,32,0
,3,50,89985,32,3
,3,50,89987,32,3
,1,131,89989,48,0
,1,131,89991,48,0
,2,34582,89993,32,0
,1,69,89995,32,1
,0,70,89997,80,7
,1,34295,89999,2392,2
,1,1,90001,2296,1
,1,1,90003,32,0
,1,1,90005,16,0
,1,1,90007,16,1
,0,16,90009,64,1
,7,19,90011,16,1
,0,16,90013,64,1
,7,19,90015,16,1
,2,53,90017,24,0
,1,36046,90019,24,1
,1,36046,90021,24,1
,1,36046,90023,32,1
,1,36046,90025,32,1
,1,36046,90027,16,1
,1,36046,90029,16,1
,1,36046,90031,40,1
,1,36046,90033,40,1
,1,36046,90035,16,1
,1,36046,90037,40,1
,1,36046,90039,40,1
,1,36046,90041,40,1
,1,36046,90043,40,1
,1,36046,90045,40,1
,1,36046,90047,40,1
,1,36046,90049,16,1
,1,36046,90051,40,1
,1,36046,90053,40,1
,1,36046,90055,40,1
,1,36046,90057,40,1
,1,36046,90059,24,1
,1,36046,90061,24,1
,1,36046,90063,24,1
,1,36046,90065,24,1
,1,36046,90067,24,1
,1,36046,90069,24,1
,1,36046,90071,24,1
,1,36046,90073,24,1
,1,36046,90075,24,1
,1,36046,90077,24,1
,1,36046,90079,24,1
,1,36046,90081,24,1
,1,36046,90083,24,1
,1,36046,90085,24,1
,1,36046,90087,24,1
,1,36046,90089,24,1
,1,36046,90091,16,1
,1,36046,90093,16,1
,1,36046,90095,24,1
,1,36046,90097,24,1
,1,36046,90099,24,1
,1,36046,90101,24,1
,1,36046,90103,24,1
,1,36046,90105,24,1
,1,36046,90107,24,1
,1,36046,90109,24,1
,1,36046,90111,24,1
,1,36046,90113,24,1
,1,36046,90115,24,1
,1,36046,90117,24,1
,1,36046,90119,24,1
,1,36046,90121,24,1
,1,36046,90123,24,1
,1,36046,90125,24,1
,1,36046,90127,24,1
,1,36046,90129,24,1
,1,36046,90131,24,1
,1,36046,90133,24,1
,1,36046,90135,24,1
,1,36046,90137,24,1
,1,36046,90139,32,1
,1,36046,90141,24,1
,1,36046,90143,24,1
,1,36046,90145,24,1
,1,36046,90147,24,1
,1,36046,90149,24,1
,1,36046,90151,24,1
,1,36046,90153,24,1
,1,36046,90155,24,1
,1,36046,90157,24,1
,1,36046,90159,32,1
,1,36046,90161,24,1
,1,36046,90163,32,1
,1,36046,90165,24,1
,1,36046,90167,24,1
,1,36046,90169,24,1
,1,36046,90171,24,1
,1,36046,90173,32,1
,1,36046,90175,24,1
,1,36046,90177,24,1
,1,36046,90179,24,1
,1,36046,90181,24,1
,1,36046,90183,24,1
,1,36046,90185,24,1
,1,36046,90187,24,1
,1,36046,90189,24,1
,1,36046,90191,24,1
,1,36046,90193,24,1
,1,36046,90195,64,1
,1,36046,90197,24,1
,1,36046,90199,64,1
,1,36046,90201,32,1
,1,36046,90203,32,1
,1,36046,90205,24,1
,1,36046,90207,32,1
,1,36046,90209,24,1
,1,36046,90211,16,1
,1,36046,90213,40,1
,1,36046,90215,40,1
,1,36046,90217,40,1
,1,36046,90219,24,1
,1,36046,90221,24,1
,1,36046,90223,24,1
,1,36046,90225,24,1
,1,36046,90227,24,1
,1,36046,90229,24,1
,1,36046,90231,24,1
,1,36046,90233,24,1
,1,36046,90235,24,1
,1,36046,90237,24,1
,1,36046,90239,24,1
,1,36046,90241,24,1
,1,36046,90243,24,1
,1,36046,90245,16,1
,1,36046,90247,16,1
,0,16,90249,64,1
,1,36046,90251,24,1
,1,36046,90253,24,1
,1,36046,90255,152,1
,1,36046,90257,24,1
,1,36046,90259,24,1
,1,36046,90261,256,1
,1,36046,90263,72,1
,1,36046,90265,24,1
,1,36046,90267,24,1
,1,36046,90269,168,1
,1,36046,90271,24,1
,1,36046,90273,128,1
,1,36046,90275,64,1
,1,36046,90277,64,1
,1,36046,90279,64,1
,1,36046,90281,64,1
,1,36046,90283,64,1
,1,36046,90285,88,1
,1,36046,90287,64,1
,1,36046,90289,48,1
,1,36046,90291,48,1
,1,36046,90293,64,1
,1,36046,90295,88,1
,1,36046,90297,64,1
,1,36046,90299,56,1
,1,36046,90301,24,1
,1,36046,90303,72,1
,1,36046,90305,24,1
,1,36046,90307,24,1
,1,36046,90309,24,1
,1,36046,90311,144,1
,1,36046,90313,56,1
,1,36046,90315,24,1
,1,36046,90317,72,1
,1,36046,90319,72,1
,1,36046,90321,24,1
,1,36046,90323,24,1
,1,36046,90325,64,1
,1,36046,90327,48,1
,1,36046,90329,40,1
,1,36046,90331,40,1
,1,36046,90333,40,1
,1,36046,90335,24,1
,1,36046,90337,88,1
,1,36046,90339,88,1
,1,36046,90341,24,1
,1,36046,90343,24,1
,1,36046,90345,24,1
,1,36046,90347,24,1
,1,36046,90349,160,1
,1,36046,90351,48,1
,1,36046,90353,24,1
,1,36046,90355,24,1
,1,36046,90357,24,1
,1,36046,90359,24,1
,1,36046,90361,416,1
,1,36046,90363,24,1
,1,36046,90365,24,1
,1,36046,90367,136,1
,1,36046,90369,24,1
,1,36046,90371,24,1
,1,36046,90373,24,1
,1,36046,90375,24,1
,1,36046,90377,144,1
,1,36046,90379,24,1
,1,36046,90381,24,1
,1,36046,90383,24,1
,1,36046,90385,24,1
,1,36046,90387,24,1
,1,36046,90389,24,1
,1,36046,90391,24,1
,1,36046,90393,56,1
,1,36046,90395,24,1
,1,36046,90397,104,1
,1,36046,90399,24,1
,1,36046,90401,24,1
,1,36046,90403,24,1
,1,36046,90405,24,1
,1,36046,90407,16,1
,1,36046,90409,216,1
,1,36046,90411,24,1
,1,36046,90413,24,1
,1,36046,90415,24,1
,1,36046,90417,72,1
,1,36046,90419,24,1
,1,36046,90421,24,1
,1,36046,90423,328,1
,1,36046,90425,24,1
,1,36046,90427,24,1
,1,36046,90429,24,1
,1,36046,90431,88,1
,1,36046,90433,24,1
,1,36046,90435,64,1
,1,36046,90437,24,1
,1,36046,90439,104,1
,1,36046,90441,304,1
,1,36046,90443,24,1
,1,36046,90445,240,1
,1,36046,90447,88,1
,1,36046,90449,64,1
,1,36046,90451,24,1
,1,36046,90453,24,1
,1,36046,90455,24,1
,1,36046,90457,24,1
,1,36046,90459,24,1
,1,36046,90461,24,1
,1,36046,90463,600,1
,1,36046,90465,24,1
,1,36046,90467,64,1
,1,36046,90469,24,1
,1,36046,90471,104,1
,1,36046,90473,24,1
,1,36046,90475,24,1
,1,36046,90477,24,1
,1,36046,90479,24,1
,1,36046,90481,24,1
,1,36046,90483,24,1
,1,36046,90485,192,1
,1,36046,90487,72,1
,1,36046,90489,24,1
,1,36046,90491,368,1
,1,36046,90493,24,1
,1,36046,90495,56,1
,1,36046,90497,112,1
,1,36046,90499,128,1
,1,36046,90501,32,1
,1,36046,90503,24,1
,1,36046,90505,312,1
,1,36046,90507,24,1
,1,36046,90509,24,1
,1,36046,90511,24,1
,1,36046,90513,24,1
,1,36046,90515,24,1
,1,36046,90517,680,1
,1,36046,90519,48,1
,1,36046,90521,24,1
,1,36046,90523,24,1
,1,36046,90525,24,1
,1,36046,90527,24,1
,1,36046,90529,24,1
,1,36046,90531,112,1
,1,36046,90533,40,1
,1,36046,90535,168,1
,1,36046,90537,24,1
,1,36046,90539,24,1
,1,36046,90541,24,1
,1,36046,90543,32,1
,1,36046,90545,136,1
,1,36046,90547,24,1
,1,36046,90549,24,1
,1,36046,90551,24,1
,1,36046,90553,112,1
,1,36046,90555,24,1
,1,36046,90557,24,1
,1,36046,90559,24,1
,1,36046,90561,24,1
,1,36046,90563,24,1
,1,36046,90565,56,1
,1,36046,90567,88,1
,1,36046,90569,24,1
,1,36046,90571,72,1
,1,36046,90573,24,1
,1,36046,90575,24,1
,1,36046,90577,64,1
,1,36046,90579,24,1
,1,36046,90581,200,1
,1,36046,90583,24,1
,1,36046,90585,24,1
,1,36046,90587,24,1
,1,36046,90589,376,1
,1,36046,90591,24,1
,1,36046,90593,528,1
,1,36046,90595,24,1
,1,36046,90597,56,1
,1,36046,90599,80,1
,1,36046,90601,104,1
,1,36046,90603,24,1
,1,36046,90605,536,1
,1,36046,90607,72,1
,1,36046,90609,24,1
,1,36046,90611,24,1
,1,36046,90613,24,1
,1,36046,90615,24,1
,1,36046,90617,24,1
,1,36046,90619,96,1
,1,36046,90621,88,1
,1,36046,90623,48,1
,1,36046,90625,24,1
,1,36046,90627,24,1
,1,36046,90629,24,1
,1,36046,90631,160,1
,1,36046,90633,24,1
,1,36046,90635,24,1
,1,36046,90637,264,1
,1,36046,90639,32,1
,1,36046,90641,24,1
,1,36046,90643,24,1
,1,36046,90645,24,1
,1,36046,90647,24,1
,1,36046,90649,24,1
,1,36046,90651,160,1
,1,36046,90653,24,1
,1,36046,90655,24,1
,1,36046,90657,24,1
,1,36046,90659,24,1
,1,36046,90661,24,1
,1,36046,90663,24,1
,1,36046,90665,24,1
,1,36046,90667,24,1
,1,36046,90669,24,1
,1,36046,90671,40,1
,1,36046,90673,24,1
,1,36046,90675,456,1
,1,36046,90677,48,1
,1,36046,90679,24,1
,1,36046,90681,24,1
,1,36046,90683,736,1
,1,36046,90685,176,1
,1,36046,90687,48,1
,1,36046,90689,48,1
,1,36046,90691,72,1
,1,36046,90693,24,1
,1,36046,90695,48,1
,1,36046,90697,24,1
,1,36046,90699,136,1
,1,36046,90701,48,1
,1,36046,90703,64,1
,1,36046,90705,24,1
,1,36046,90707,24,1
,1,36046,90709,256,1
,1,36046,90711,40,1
,1,36046,90713,24,1
,1,36046,90715,24,1
,1,36046,90717,24,1
,1,36046,90719,112,1
,1,36046,90721,200,1
,1,36046,90723,104,1
,1,36046,90725,88,1
,1,36046,90727,384,1
,1,36046,90729,128,1
,1,36046,90731,24,1
,1,36046,90733,48,1
,1,36046,90735,24,1
,1,36046,90737,24,1
,1,36046,90739,48,1
,1,36046,90741,64,1
,1,36046,90743,40,1
,1,36046,90745,40,1
,1,36046,90747,88,1
,1,36046,90749,24,1
,1,36046,90751,1104,1
,1,36046,90753,168,1
,1,36046,90755,40,1
,1,36046,90757,24,1
,1,36046,90759,40,1
,1,36046,90761,64,1
,1,36046,90763,40,1
,1,36046,90765,40,1
,1,36046,90767,24,1
,1,36046,90769,40,1
,1,36046,90771,16,1
,1,36046,90773,144,1
,1,36046,90775,56,1
,1,36046,90777,176,1
,1,36046,90779,24,1
,1,36046,90781,24,1
,1,36046,90783,24,1
,1,36046,90785,24,1
,1,36046,90787,64,1
,1,36046,90789,40,1
,1,36046,90791,16,1
,1,36046,90793,32,1
,1,36046,90795,16,1
,1,36046,90797,32,1
,1,36046,90799,32,1
,1,36046,90801,32,1
,1,36046,90803,32,1
,1,36046,90805,24,1
,1,36046,90807,24,1
,1,36046,90809,24,1
,1,36046,90811,24,1
,1,36046,90813,24,1
,1,36046,90815,24,1
,1,36046,90817,24,1
,1,36046,90819,24,1
,1,36046,90821,24,1
,1,36046,90823,1176,1
,1,36046,90825,40,1
,1,36046,90827,24,1
,1,36046,90829,24,1
,1,36046,90831,24,1
,1,36046,90833,24,1
,1,36046,90835,320,1
,1,36046,90837,40,1
,1,36046,90839,24,1
,1,36046,90841,432,1
,1,36046,90843,40,1
,1,36046,90845,408,1
,1,36046,90847,112,1
,1,36046,90849,24,1
,1,36046,90851,80,1
,1,36046,90853,24,1
,1,36046,90855,24,1
,1,36046,90857,96,1
,1,36046,90859,24,1
,1,36046,90861,24,1
,1,36046,90863,24,1
,1,36046,90865,24,1
,1,36046,90867,24,1
,1,36046,90869,24,1
,1,36046,90871,32,1
,1,36046,90873,24,1
,1,36046,90875,24,1
,1,36046,90877,24,1
,1,36046,90879,24,1
,1,36046,90881,24,1
,1,36046,90883,24,1
,1,36046,90885,24,1
,1,36046,90887,24,1
,1,36046,90889,24,1
,1,36046,90891,24,1
,1,36046,90893,24,1
,1,36046,90895,24,1
,1,36046,90897,24,1
,1,36046,90899,24,1
,1,36046,90901,24,1
,1,36046,90903,48,1
,1,36046,90905,24,1
,1,36046,90907,24,1
,1,36046,90909,48,1
,1,36046,90911,24,1
,1,36046,90913,24,1
,1,36046,90915,24,1
,1,36046,90917,48,1
,1,36046,90919,24,1
,1,36046,90921,24,1
,1,36046,90923,24,1
,1,36046,90925,24,1
,1,36046,90927,24,1
,1,36046,90929,24,1
,1,36046,90931,24,1
,1,36046,90933,24,1
,1,36046,90935,24,1
,1,36046,90937,24,1
,1,36046,90939,24,1
,1,36046,90941,24,1
,1,36046,90943,24,1
,1,36046,90945,24,1
,1,36046,90947,24,1
,1,36046,90949,40,1
,1,36046,90951,24,1
,1,36046,90953,24,1
,1,36046,90955,40,1
,1,36046,90957,24,1
,1,36046,90959,24,1
,1,36046,90961,24,1
,1,36046,90963,24,1
,1,36046,90965,40,1
,1,36046,90967,24,1
,1,36046,90969,24,1
,1,36046,90971,24,1
,1,36046,90973,144,1
,1,36046,90975,56,1
,1,36046,90977,144,1
,1,36046,90979,48,1
,1,36046,90981,24,1
,1,36046,90983,24,1
,1,36046,90985,24,1
,1,36046,90987,24,1
,1,36046,90989,24,1
,1,36046,90991,24,1
,1,36046,90993,72,1
,1,36046,90995,40,1
,1,36046,90997,56,1
,1,36046,90999,152,1
,7,19,91001,16,1
,1,36046,91003,24,1
,1,36046,91005,192,1
,1,36046,91007,24,1
,1,36046,91009,120,1
,1,36046,91011,24,1
,1,36046,91013,496,1
,1,36046,91015,64,1
,1,36046,91017,24,1
,1,36046,91019,24,1
,1,36046,91021,24,1
,1,36046,91023,64,1
,1,36046,91025,24,1
,1,36046,91027,24,1
,1,36046,91029,24,1
,1,36046,91031,440,1
,1,36046,91033,88,1
,1,36046,91035,184,1
,1,36046,91037,24,1
,1,36046,91039,24,1
,1,36046,91041,64,1
,1,36046,91043,24,1
,1,36046,91045,184,1
,1,36046,91047,104,1
,1,36046,91049,24,1
,1,36046,91051,24,1
,1,36046,91053,24,1
,1,36046,91055,24,1
,1,36046,91057,24,1
,1,36046,91059,24,1
,1,36046,91061,64,1
,1,36046,91063,112,1
,1,36046,91065,144,1
,1,36046,91067,144,1
,1,36046,91069,24,1
,1,36046,91071,144,1
,1,36046,91073,24,1
,1,36046,91075,24,1
,2,36047,91077,96,0
,2,53,91079,24,0
,2,36048,91081,88,0
,2,53,91083,24,0
,2,53,91085,24,0
,1,36046,91087,464,1
,1,36046,91089,40,1
,1,36046,91091,24,1
,1,36046,91093,296,1
,1,36046,91095,24,1
,1,36046,91097,40,1
,1,36046,91099,352,1
,1,36046,91101,40,1
,1,36046,91103,208,1
,1,36046,91105,24,1
,1,36046,91107,24,1
,1,36046,91109,24,1
,1,36046,91111,24,1
,1,36046,91113,24,1
,2,857,91115,32,0
,2,53,91117,24,0
,1,36046,91119,656,1
,1,36046,91121,40,1
,1,36046,91123,24,1
,1,36046,91125,24,1
,1,36046,91127,24,1
,1,36046,91129,272,1
,1,36046,91131,24,1
,1,36046,91133,24,1
,1,36046,91135,24,1
,1,36046,91137,24,1
,1,36046,91139,24,1
,1,36046,91141,24,1
,1,36046,91143,24,1
,1,36046,91145,24,1
,1,36046,91147,24,1
,1,36046,91149,24,1
,1,36046,91151,24,1
,1,36046,91153,80,1
,1,36046,91155,24,1
,1,36046,91157,352,1
,1,36046,91159,24,1
,1,36046,91161,200,1
,2,36049,91163,40,0
,2,53,91165,24,0
,1,36046,91167,400,1
,1,36046,91169,24,1
,1,36046,91171,184,1
,1,36046,91173,280,1
,1,36046,91175,320,1
,1,36046,91177,24,1
,1,36046,91179,616,1
,1,36046,91181,32,1
,1,36046,91183,360,1
,1,36046,91185,104,1
,1,36046,91187,184,1
,1,36046,91189,24,1
,1,36046,91191,64,1
,1,36046,91193,24,1
,1,36046,91195,24,1
,1,36046,91197,256,1
,1,36046,91199,24,1
,1,36046,91201,96,1
,2,1151,91203,32,0
,2,53,91205,24,0
,2,36050,91207,48,0
,2,36051,91209,80,0
,2,53,91211,24,0
,2,53,91213,24,0
,1,36046,91215,24,1
,1,36046,91217,2408,1
,1,36046,91219,40,1
,1,36046,91221,184,1
,1,36046,91223,40,1
,1,36046,91225,24,1
,1,36046,91227,24,1
,1,36046,91229,24,1
,1,36046,91231,24,1
,1,36046,91233,24,1
,1,36046,91235,24,1
,1,36046,91237,440,1
,1,36046,91239,40,1
,1,36046,91241,24,1
,1,36046,91243,224,1
,1,36046,91245,40,1
,1,36046,91247,136,1
,1,36046,91249,40,1
,1,36046,91251,32,1
,1,36046,91253,272,1
,1,36046,91255,64,1
,1,36046,91257,24,1
,1,36046,91259,168,1
,1,36046,91261,40,1
,1,36046,91263,24,1
,1,36046,91265,104,1
,1,36046,91267,40,1
,1,36046,91269,24,1
,1,36046,91271,144,1
,1,36046,91273,64,1
,1,36046,91275,56,1
,1,36046,91277,120,1
,1,36046,91279,40,1
,1,36046,91281,56,1
,1,36046,91283,64,1
,1,36046,91285,24,1
,1,36046,91287,24,1
,1,36046,91289,24,1
,1,36046,91291,64,1
,1,36046,91293,56,1
,1,36046,91295,24,1
,1,36046,91297,520,1
,1,36046,91299,112,1
,1,36046,91301,32,1
,1,36046,91303,200,1
,1,36046,91305,32,1
,1,36046,91307,24,1
,1,36046,91309,24,1
,1,36046,91311,216,1
,1,36046,91313,24,1
,1,36046,91315,24,1
,1,36046,91317,24,1
,1,36046,91319,24,1
,1,36046,91321,24,1
,1,36046,91323,24,1
,1,36046,91325,32,1
,1,36046,91327,24,1
,1,36046,91329,64,1
,1,36046,91331,24,1
,1,36046,91333,64,1
,1,36046,91335,24,1
,1,36046,91337,24,1
,1,36046,91339,24,1
,1,36046,91341,24,1
,1,36046,91343,24,1
,1,36046,91345,24,1
,1,36046,91347,32,1
,1,36046,91349,24,1
,1,36046,91351,24,1
,1,36046,91353,112,1
,1,36046,91355,24,1
,1,36046,91357,24,1
,1,36046,91359,200,1
,1,36046,91361,24,1
,1,36046,91363,72,1
,1,36046,91365,24,1
,1,36046,91367,120,1
,1,36046,91369,56,1
,1,36046,91371,32,1
,1,36046,91373,224,1
,2,36052,91375,32,0
,2,53,91377,24,0
,2,53,91379,24,0
,1,36046,91381,256,1
,1,36046,91383,392,1
,1,36046,91385,56,1
,1,36046,91387,24,1
,1,36046,91389,32,1
,1,36046,91391,144,1
,1,36046,91393,24,1
,1,36046,91395,24,1
,1,36046,91397,48,1
,1,36046,91399,24,1
,1,36046,91401,32,1
,1,36046,91403,32,1
,1,36046,91405,80,1
,1,36046,91407,24,1
,1,36046,91409,488,1
,1,36046,91411,24,1
,1,36046,91413,72,1
,1,36046,91415,112,1
,1,36046,91417,64,1
,1,36046,91419,80,1
,1,36046,91421,104,1
,1,36046,91423,24,1
,1,36046,91425,24,1
,1,36046,91427,416,1
,1,36046,91429,40,1
,1,36046,91431,24,1
,1,36046,91433,816,1
,1,36046,91435,48,1
,1,36046,91437,64,1
,1,36046,91439,24,1
,1,36046,91441,24,1
,1,36046,91443,24,1
,1,36046,91445,184,1
,1,36046,91447,40,1
,1,36046,91449,40,1
,1,36046,91451,376,1
,1,36046,91453,64,1
,1,36046,91455,104,1
,2,53,91457,24,0
,1,36046,91459,24,1
,1,36046,91461,24,1
,1,36046,91463,608,1
,1,36046,91465,24,1
,1,36046,91467,32,1
,1,36046,91469,24,1
,1,36046,91471,24,1
,1,36046,91473,96,1
,1,36046,91475,40,1
,1,36046,91477,40,1
,1,36046,91479,64,1
,1,36046,91481,24,1
,1,36046,91483,24,1
,1,36046,91485,24,1
,1,36046,91487,24,1
,1,36046,91489,24,1
,1,36046,91491,24,1
,1,36046,91493,24,1
,1,36046,91495,24,1
,1,36046,91497,24,1
,1,36046,91499,24,1
,1,36046,91501,24,1
,1,36046,91503,24,1
,1,36046,91505,24,1
,1,36046,91507,24,1
,1,36046,91509,24,1
,1,36046,91511,24,1
,1,36046,91513,24,1
,1,36046,91515,24,1
,1,36046,91517,24,1
,1,36046,91519,32,1
,1,36046,91521,24,1
,1,36046,91523,112,1
,1,36046,91525,24,1
,1,36046,91527,24,1
,1,36046,91529,24,1
,1,36046,91531,96,1
,1,36046,91533,216,1
,1,36046,91535,64,1
,1,36046,91537,24,1
,1,36046,91539,24,1
,1,36046,91541,24,1
,1,36046,91543,24,1
,1,36046,91545,24,1
,1,36046,91547,24,1
,1,36046,91549,24,1
,1,36046,91551,32,1
,1,36046,91553,24,1
,1,36046,91555,32,1
,1,36046,91557,24,1
,1,36046,91559,24,1
,1,36046,91561,24,1
,1,36046,91563,32,1
,1,36046,91565,24,1
,1,36046,91567,24,1
,1,36046,91569,32,1
,1,36046,91571,24,1
,1,36046,91573,32,1
,1,36046,91575,24,1
,1,36046,91577,24,1
,1,36046,91579,24,1
,1,36046,91581,24,1
,1,36046,91583,32,1
,1,36046,91585,24,1
,1,36046,91587,24,1
,1,36046,91589,24,1
,1,36046,91591,32,1
,1,36046,91593,24,1
,1,36046,91595,32,1
,1,36046,91597,24,1
,1,36046,91599,24,1
,1,36046,91601,24,1
,1,36046,91603,24,1
,1,36046,91605,24,1
,1,36046,91607,32,1
,1,36046,91609,24,1
,1,36046,91611,24,1
,1,36046,91613,24,1
,1,36046,91615,24,1
,1,36046,91617,32,1
,1,36046,91619,32,1
,1,36046,91621,32,1
,1,36046,91623,32,1
,1,36046,91625,32,1
,1,36046,91627,32,1
,1,36046,91629,24,1
,1,36046,91631,24,1
,1,36046,91633,24,1
,1,36046,91635,24,1
,1,36046,91637,24,1
,1,36046,91639,24,1
,1,36046,91641,24,1
,1,36046,91643,24,1
,1,36046,91645,32,1
,1,36046,91647,24,1
,1,36046,91649,24,1
,1,36046,91651,56,1
,2,1472,91653,32,0
,2,53,91655,24,0
,1,36046,91657,464,1
,1,36046,91659,40,1
,1,36046,91661,112,1
,1,36046,91663,40,1
,1,36046,91665,48,1
,1,36046,91667,24,1
,1,36046,91669,192,1
,1,36046,91671,24,1
,1,36046,91673,80,1
,1,36046,91675,240,1
,1,36046,91677,112,1
,1,36046,91679,24,1
,1,36046,91681,24,1
,1,36046,91683,104,1
,1,36046,91685,152,1
,1,36046,91687,40,1
,1,36046,91689,24,1
,1,36046,91691,24,1
,1,36046,91693,24,1
,1,36046,91695,80,1
,1,36046,91697,104,1
,1,36046,91699,24,1
,1,36046,91701,24,1
,1,36046,91703,24,1
,1,36046,91705,24,1
,1,36046,91707,48,1
,1,36046,91709,24,1
,1,36046,91711,24,1
,1,36046,91713,24,1
,1,36046,91715,24,1
,1,36046,91717,32,1
,1,36046,91719,32,1
,1,36046,91721,32,1
,1,36046,91723,32,1
,1,36046,91725,32,1
,1,36046,91727,32,1
,1,36046,91729,24,1
,1,36046,91731,24,1
,1,36046,91733,24,1
,1,36046,91735,24,1
,1,36046,91737,24,1
,1,36046,91739,24,1
,1,36046,91741,24,1
,1,36046,91743,24,1
,1,36046,91745,24,1
,1,36046,91747,24,1
,1,36046,91749,32,1
,1,36046,91751,24,1
,1,36046,91753,24,1
,1,36046,91755,32,1
,1,36046,91757,32,1
,1,36046,91759,24,1
,1,36046,91761,24,1
,1,36046,91763,24,1
,1,36046,91765,24,1
,1,36046,91767,24,1
,1,36046,91769,24,1
,1,36046,91771,288,1
,1,36046,91773,24,1
,1,36046,91775,24,1
,1,36046,91777,24,1
,1,36046,91779,24,1
,1,36046,91781,408,1
,1,36046,91783,24,1
,1,36046,91785,32,1
,1,36046,91787,64,1
,1,36046,91789,24,1
,1,36046,91791,24,1
,1,36046,91793,88,1
,1,36046,91795,24,1
,1,36046,91797,24,1
,1,36046,91799,24,1
,1,36046,91801,24,1
,1,36046,91803,24,1
,1,36046,91805,24,1
,1,36046,91807,24,1
,1,36046,91809,112,1
,1,36046,91811,80,1
,1,36046,91813,24,1
,1,36046,91815,24,1
,1,36046,91817,32,1
,1,36046,91819,24,1
,1,36046,91821,24,1
,1,36046,91823,24,1
,1,36046,91825,24,1
,1,36046,91827,24,1
,1,36046,91829,24,1
,1,36046,91831,24,1
,1,36046,91833,32,1
,1,36046,91835,24,1
,1,36046,91837,48,1
,1,36046,91839,24,1
,1,36046,91841,64,1
,1,36046,91843,32,1
,1,36046,91845,24,1
,1,36046,91847,40,1
,1,36046,91849,16,1
,1,36046,91851,40,1
,1,36046,91853,216,1
,1,36046,91855,40,1
,1,36046,91857,40,1
,1,36046,91859,40,1
,1,36046,91861,40,1
,1,36046,91863,88,1
,1,36046,91865,96,1
,1,36046,91867,48,1
,0,16,91869,64,1
,0,16,91871,64,1
,0,87,91873,16,1
,1,36046,91875,24,1
,1,36046,91877,56,1
,1,36046,91879,40,1
,1,36046,91881,296,1
,1,36046,91883,40,1
,1,36046,91885,112,1
,1,36046,91887,24,1
,1,36046,91889,368,1
,1,36046,91891,392,1
,1,36046,91893,40,1
,1,36046,91895,32,1
,2,35029,91897,32,0
,2,53,91899,24,0
,1,36046,91901,24,1
,1,36046,91903,1304,1
,1,36046,91905,40,1
,1,36046,91907,24,1
,1,36046,91909,144,1
,1,36046,91911,24,1
,1,36046,91913,424,1
,1,36046,91915,160,1
,1,36046,91917,96,1
,1,36046,91919,24,1
,1,36046,91921,384,1
,1,36046,91923,24,1
,1,36046,91925,24,1
,1,36046,91927,24,1
,1,36046,91929,40,1
,1,36046,91931,24,1
,1,36046,91933,112,1
,1,36046,91935,312,1
,1,36046,91937,24,1
,1,36046,91939,24,1
,1,36046,91941,24,1
,1,36046,91943,96,1
,1,36046,91945,168,1
,1,36046,91947,400,1
,1,36046,91949,24,1
,1,36046,91951,24,1
,1,36046,91953,24,1
,1,36046,91955,104,1
,1,36046,91957,24,1
,1,36046,91959,168,1
,1,36046,91961,64,1
,1,36046,91963,72,1
,1,36046,91965,24,1
,1,36046,91967,24,1
,1,36046,91969,88,1
,1,36046,91971,32,1
,1,36046,91973,32,1
,1,36046,91975,24,1
,1,36046,91977,24,1
,1,36046,91979,24,1
,1,36046,91981,40,1
,1,36046,91983,40,1
,1,36046,91985,24,1
,1,36046,91987,24,1
,1,36046,91989,24,1
,1,36046,91991,32,1
,1,36046,91993,24,1
,1,36046,91995,32,1
,1,36046,91997,32,1
,1,36046,91999,32,1
,1,36046,92001,32,1
,1,36046,92003,32,1
,1,36046,92005,32,1
,1,36046,92007,32,1
,1,36046,92009,32,1
,1,36046,92011,32,1
,1,36046,92013,32,1
,1,36046,92015,32,1
,1,36046,92017,32,1
,1,36046,92019,32,1
,1,36046,92021,32,1
,1,36046,92023,32,1
,1,36046,92025,32,1
,1,36046,92027,32,1
,1,36046,92029,32,1
,1,36046,92031,32,1
,1,36046,92033,32,1
,1,36046,92035,40,1
,1,36046,92037,40,1
,1,36046,92039,24,1
,1,36046,92041,24,1
,1,36046,92043,32,1
,1,36046,92045,32,1
,1,36046,92047,24,1
,1,36046,92049,32,1
,1,36046,92051,32,1
,1,36046,92053,32,1
,1,36046,92055,32,1
,1,36046,92057,32,1
,1,36046,92059,32,1
,1,36046,92061,32,1
,1,36046,92063,32,1
,1,36046,92065,32,1
,1,36046,92067,32,1
,1,36046,92069,40,1
,1,36046,92071,40,1
,1,36046,92073,24,1
,1,36046,92075,24,1
,1,36046,92077,40,1
,1,36046,92079,32,1
,1,36046,92081,32,1
,1,36046,92083,24,1
,1,36046,92085,40,1
,1,36046,92087,32,1
,1,36046,92089,40,1
,1,36046,92091,40,1
,1,36046,92093,40,1
,1,36046,92095,40,1
,1,36046,92097,24,1
,1,36046,92099,32,1
,1,36046,92101,40,1
,1,36046,92103,40,1
,1,36046,92105,24,1
,1,36046,92107,24,1
,1,36046,92109,32,1
,1,36046,92111,40,1
,1,36046,92113,40,1
,1,36046,92115,40,1
,1,36046,92117,24,1
,1,36046,92119,24,1
,1,36046,92121,32,1
,1,36046,92123,40,1
,1,36046,92125,40,1
,1,36046,92127,224,1
,1,36046,92129,24,1
,1,36046,92131,48,1
,1,36046,92133,24,1
,1,36046,92135,160,1
,1,36046,92137,80,1
,1,36046,92139,24,1
,1,36046,92141,80,1
,1,36046,92143,72,1
,1,36046,92145,56,1
,1,36046,92147,104,1
,1,36046,92149,136,1
,1,36046,92151,120,1
,1,36046,92153,24,1
,1,36046,92155,264,1
,1,36046,92157,24,1
,1,36046,92159,272,1
,1,36046,92161,432,1
,1,36046,92163,24,1
,1,1,92165,144,1
,1,1,92167,144,1
,1,36046,92169,32,1
,1,36046,92171,120,1
,1,36046,92173,152,1
,1,36046,92175,144,1
,1,36046,92177,24,1
,1,36046,92179,192,1
,1,36046,92181,80,1
,1,36046,92183,24,1
,1,36046,92185,104,1
,1,36046,92187,24,1
,1,36046,92189,24,1
,1,36046,92191,24,1
,1,36046,92193,24,1
,1,36046,92195,328,1
,1,36046,92197,24,1
,1,36046,92199,24,1
,1,36046,92201,408,1
,1,36046,92203,176,1
,1,36046,92205,24,1
,1,36046,92207,40,1
,1,36046,92209,176,1
,1,36046,92211,80,1
,1,36046,92213,72,1
,1,36046,92215,136,1
,1,36046,92217,24,1
,1,36046,92219,48,1
,1,36046,92221,64,1
,1,36046,92223,72,1
,1,36046,92225,32,1
,1,36046,92227,24,1
,1,36046,92229,160,1
,1,36046,92231,104,1
,1,36046,92233,296,1
,1,36046,92235,24,1
,1,36046,92237,32,1
,1,36046,92239,352,1
,1,36046,92241,32,1
,7,19,92243,16,1
,7,19,92245,16,1
,0,16,92247,64,1
,4,1,92249,128,3
,4,1,92251,128,3
,4,1,92253,128,3
,4,1,92255,288,2
,4,1,92257,128,2
,4,1,92259,224,4
,4,1,92261,192,4
,4,1,92263,192,4
,4,1,92265,224,5
,4,1,92267,224,5
,4,1,92269,192,4
,4,1,92271,128,3
,4,1,92273,128,3
,4,1,92275,128,3
,4,1,92277,128,3
,4,1,92279,128,3
,4,1,92281,128,3
,4,1,92283,128,3
,4,1,92285,128,3
,4,1,92287,128,3
,4,1,92289,128,3
,4,1,92291,352,4
,4,1,92293,128,3
,4,1,92295,160,3
,4,1,92297,192,3
,4,1,92299,192,3
,4,1,92301,320,3
,4,1,92303,160,3
,4,1,92305,128,3
,4,1,92307,128,3
,4,1,92309,1024,4
,4,1,92311,736,14
,4,1,92313,192,4
,4,1,92315,320,4
,4,1,92317,128,3
,4,1,92319,224,4
,4,1,92321,448,5
,4,1,92323,352,3
,4,1,92325,128,3
,4,1,92327,128,3
,4,1,92329,224,4
,4,1,92331,448,5
,4,1,92333,352,3
,4,1,92335,128,3
,4,1,92337,160,3
,4,1,92339,128,3
,4,1,92341,2368,21
,4,1,92343,128,3
,4,1,92345,2368,21
,4,1,92347,416,6
,4,1,92349,480,6
,4,1,92351,480,6
,4,1,92353,928,5
,4,1,92355,192,4
,4,1,92357,192,4
,4,1,92359,192,4
,4,1,92361,224,4
,4,1,92363,224,4
,4,1,92365,192,4
,4,1,92367,192,4
,4,1,92369,192,4
,4,1,92371,192,4
,4,1,92373,192,4
,4,1,92375,128,2
,4,1,92377,160,2
,0,484,92379,16,0
,0,484,92381,16,0
,0,484,92383,16,0
,0,484,92385,16,0
,0,484,92387,16,0
,4,1,92389,192,6
,4,1,92391,192,6
,0,484,92393,16,0
,0,484,92395,16,0
,0,484,92397,16,0
,0,484,92399,16,0
,0,484,92401,16,0
,0,484,92403,16,0
,0,484,92405,16,0
,0,484,92407,16,0
,0,484,92409,16,0
,0,484,92411,16,0
,0,484,92413,16,0
,0,484,92415,16,0
,0,484,92417,16,0
,0,484,92419,16,0
,0,484,92421,16,0
,0,484,92423,16,0
,0,484,92425,16,0
,0,484,92427,16,0
,0,484,92429,16,0
,0,484,92431,16,0
,0,484,92433,16,0
,0,484,92435,16,0
,0,484,92437,16,0
,0,484,92439,16,0
,0,484,92441,16,0
,0,484,92443,16,0
,4,1,92445,192,6
,0,484,92447,16,0
,4,1,92449,192,5
,0,484,92451,16,0
,0,484,92453,16,0
,4,1,92455,160,5
,0,484,92457,16,0
,0,484,92459,16,0
,0,484,92461,16,0
,0,16,92463,64,3
,0,484,92465,16,0
,0,484,92467,16,0
,0,484,92469,16,0
,0,484,92471,16,0
,0,484,92473,16,0
,0,484,92475,16,0
,0,484,92477,16,0
,0,484,92479,16,0
,0,484,92481,16,0
,0,484,92483,16,0
,0,484,92485,16,0
,4,1,92487,192,7
,0,484,92489,16,0
,0,484,92491,16,0
,0,484,92493,16,0
,0,484,92495,16,0
,0,484,92497,16,0
,0,484,92499,16,0
,0,484,92501,16,0
,0,484,92503,16,0
,0,484,92505,16,0
,0,484,92507,16,0
,0,484,92509,16,0
,0,484,92511,16,0
,0,484,92513,16,0
,4,1,92515,160,5
,4,1,92517,160,5
,4,1,92519,160,5
,0,484,92521,16,0
,0,484,92523,16,0
,4,1,92525,160,5
,4,1,92527,192,6
,4,1,92529,192,6
,0,484,92531,16,0
,0,484,92533,16,0
,4,1,92535,192,6
,0,484,92537,16,0
,4,1,92539,192,5
,4,1,92541,192,5
,0,484,92543,16,0
,0,484,92545,16,0
,0,484,92547,16,0
,4,1,92549,192,5
,0,484,92551,16,0
,0,484,92553,16,0
,0,484,92555,16,0
,0,484,92557,16,0
,0,484,92559,16,0
,0,484,92561,16,0
,4,1,92563,160,5
,4,1,92565,192,6
,0,484,92567,16,0
,4,1,92569,192,6
,0,484,92571,16,0
,0,484,92573,16,0
,0,484,92575,16,0
,0,484,92577,16,0
,0,484,92579,16,0
,4,1,92581,192,6
,4,1,92583,192,6
,4,1,92585,160,5
,4,1,92587,160,5
,4,1,92589,224,7
,4,1,92591,160,5
,0,484,92593,16,0
,4,1,92595,160,5
,4,1,92597,160,5
,4,1,92599,192,6
,0,484,92601,16,0
,0,484,92603,16,0
,0,484,92605,16,0
,4,1,92607,192,5
,4,1,92609,192,5
,4,1,92611,160,5
,4,1,92613,160,5
,0,484,92615,16,0
,0,484,92617,16,0
,4,1,92619,160,5
,4,1,92621,160,4
,4,1,92623,160,5
,4,1,92625,672,10
,4,1,92627,192,6
,4,1,92629,192,6
,4,1,92631,160,4
,0,484,92633,16,0
,4,1,92635,160,4
,4,1,92637,576,11
,0,484,92639,16,0
,4,1,92641,352,11
,4,1,92643,352,11
,4,1,92645,352,11
,4,1,92647,352,11
,0,484,92649,16,0
,4,1,92651,160,4
,0,484,92653,16,0
,4,1,92655,160,5
,4,1,92657,160,5
,4,1,92659,160,4
,4,1,92661,160,5
,4,1,92663,192,5
,0,484,92665,16,0
,0,484,92667,16,0
,4,1,92669,160,4
,0,484,92671,16,0
,0,484,92673,16,0
,0,484,92675,16,0
,4,1,92677,160,5
,4,1,92679,192,6
,0,484,92681,16,0
,4,1,92683,192,6
,4,1,92685,192,6
,4,1,92687,160,5
,4,1,92689,160,5
,4,1,92691,192,6
,4,1,92693,672,11
,0,484,92695,16,0
,4,1,92697,192,6
,0,484,92699,16,0
,0,484,92701,16,0
,4,1,92703,160,5
,4,1,92705,192,6
,4,1,92707,256,6
,4,1,92709,256,6
,4,1,92711,256,6
,4,1,92713,256,6
,4,1,92715,160,4
,4,1,92717,256,6
,4,1,92719,192,6
,0,484,92721,16,0
,4,1,92723,320,9
,4,1,92725,320,9
,4,1,92727,320,9
,4,1,92729,320,9
,4,1,92731,320,9
,4,1,92733,320,9
,4,1,92735,320,9
,4,1,92737,320,9
,4,1,92739,320,9
,4,1,92741,320,9
,4,1,92743,320,9
,4,1,92745,320,9
,0,484,92747,16,0
,4,1,92749,192,5
,4,1,92751,192,5
,0,484,92753,16,0
,4,1,92755,192,6
,4,1,92757,192,6
,0,484,92759,16,0
,0,484,92761,16,0
,4,1,92763,256,6
,4,1,92765,256,6
,4,1,92767,160,4
,0,484,92769,16,0
,4,1,92771,160,4
,0,484,92773,16,0
,0,484,92775,16,0
,4,1,92777,192,6
,0,484,92779,16,0
,4,1,92781,192,6
,4,1,92783,256,6
,4,1,92785,256,6
,4,1,92787,256,6
,4,1,92789,256,6
,4,1,92791,192,6
,4,1,92793,256,6
,4,1,92795,256,6
,4,1,92797,256,6
,4,1,92799,256,6
,4,1,92801,256,6
,0,484,92803,16,0
,4,1,92805,160,4
,0,484,92807,16,0
,4,1,92809,160,4
,0,484,92811,16,0
,0,484,92813,16,0
,4,1,92815,160,4
,0,484,92817,16,0
,4,1,92819,160,4
,0,484,92821,16,0
,4,1,92823,160,4
,0,484,92825,16,0
,4,1,92827,160,4
,0,484,92829,16,0
,0,484,92831,16,0
,4,1,92833,192,5
,0,484,92835,16,0
,0,484,92837,16,0
,0,484,92839,16,0
,4,1,92841,192,5
,0,484,92843,16,0
,0,484,92845,16,0
,0,484,92847,16,0
,0,484,92849,16,0
,4,1,92851,160,5
,0,484,92853,16,0
,0,484,92855,16,0
,0,484,92857,16,0
,4,1,92859,256,11
,4,1,92861,160,5
,4,1,92863,192,5
,4,1,92865,160,5
,0,484,92867,16,0
,4,1,92869,192,5
,4,1,92871,192,5
,0,484,92873,16,0
,4,1,92875,192,5
,4,1,92877,192,5
,0,484,92879,16,0
,4,1,92881,192,5
,4,1,92883,192,5
,0,484,92885,16,0
,4,1,92887,160,4
,0,484,92889,16,0
,4,1,92891,160,4
,0,484,92893,16,0
,4,1,92895,160,4
,0,484,92897,16,0
,0,484,92899,16,0
,0,484,92901,16,0
,0,484,92903,16,0
,4,1,92905,192,5
,4,1,92907,192,5
,0,484,92909,16,0
,0,484,92911,16,0
,4,1,92913,160,4
,0,484,92915,16,0
,0,484,92917,16,0
,0,484,92919,16,0
,0,484,92921,16,0
,4,1,92923,192,6
,0,484,92925,16,0
,4,1,92927,160,5
,4,1,92929,192,6
,0,484,92931,16,0
,4,1,92933,160,5
,4,1,92935,192,6
,0,484,92937,16,0
,0,484,92939,16,0
,0,484,92941,16,0
,4,1,92943,160,5
,4,1,92945,192,6
,4,1,92947,160,5
,0,484,92949,16,0
,0,484,92951,16,0
,4,1,92953,160,5
,4,1,92955,192,6
,0,484,92957,16,0
,0,484,92959,16,0
,0,484,92961,16,0
,0,484,92963,16,0
,0,484,92965,16,0
,0,484,92967,16,0
,0,484,92969,16,0
,0,484,92971,16,0
,0,484,92973,16,0
,0,484,92975,16,0
,4,1,92977,160,5
,4,1,92979,160,4
,4,1,92981,160,5
,4,1,92983,800,18
,0,484,92985,16,0
,4,1,92987,224,8
,4,1,92989,224,7
,4,1,92991,192,6
,4,1,92993,192,6
,4,1,92995,160,5
,0,484,92997,16,0
,0,484,92999,16,0
,4,1,93001,192,6
,0,484,93003,16,0
,0,484,93005,16,0
,0,484,93007,16,0
,4,1,93009,192,5
,0,484,93011,16,0
,0,484,93013,16,0
,4,1,93015,160,5
,4,1,93017,160,4
,0,484,93019,16,0
,4,1,93021,192,5
,4,1,93023,192,6
,4,1,93025,160,4
,0,484,93027,16,0
,4,1,93029,160,5
,4,1,93031,160,5
,4,1,93033,192,6
,4,1,93035,160,5
,0,484,93037,16,0
,4,1,93039,224,7
,0,484,93041,16,0
,4,1,93043,192,6
,0,484,93045,16,0
,4,1,93047,192,6
,4,1,93049,192,6
,0,484,93051,16,0
,0,484,93053,16,0
,4,1,93055,256,7
,0,484,93057,16,0
,4,1,93059,160,4
,4,1,93061,160,5
,4,1,93063,224,8
,4,1,93065,192,5
,4,1,93067,192,5
,4,1,93069,160,4
,0,484,93071,16,0
,4,1,93073,192,6
,0,484,93075,16,0
,0,484,93077,16,0
,4,1,93079,192,6
,0,484,93081,16,0
,4,1,93083,192,6
,0,484,93085,16,0
,4,1,93087,160,5
,4,1,93089,192,6
,4,1,93091,160,4
,4,1,93093,160,5
,0,484,93095,16,0
,4,1,93097,192,5
,0,484,93099,16,0
,0,484,93101,16,0
,0,484,93103,16,0
,0,484,93105,16,0
,0,484,93107,16,0
,0,484,93109,16,0
,0,484,93111,16,0
,0,484,93113,16,0
,0,484,93115,16,0
,0,484,93117,16,0
,0,484,93119,16,0
,0,484,93121,16,0
,0,484,93123,16,0
,0,484,93125,16,0
,0,484,93127,16,0
,0,484,93129,16,0
,0,484,93131,16,0
,4,1,93133,160,5
,0,484,93135,16,0
,4,1,93137,160,5
,4,1,93139,576,8
,0,484,93141,16,0
,4,1,93143,224,7
,0,484,93145,16,0
,0,484,93147,16,0
,4,1,93149,160,5
,4,1,93151,192,6
,0,484,93153,16,0
,4,1,93155,192,6
,0,484,93157,16,0
,4,1,93159,192,6
,0,484,93161,16,0
,4,1,93163,160,4
,0,484,93165,16,0
,4,1,93167,192,6
,4,1,93169,160,5
,4,1,93171,192,7
,0,484,93173,16,0
,4,1,93175,192,5
,4,1,93177,192,6
,4,1,93179,160,5
,4,1,93181,160,4
,4,1,93183,160,5
,4,1,93185,192,6
,0,484,93187,16,0
,4,1,93189,160,4
,0,484,93191,16,0
,4,1,93193,160,5
,4,1,93195,192,6
,4,1,93197,160,5
,0,484,93199,16,0
,4,1,93201,576,8
,0,484,93203,16,0
,0,484,93205,16,0
,4,1,93207,352,11
,4,1,93209,352,11
,4,1,93211,352,11
,4,1,93213,352,11
,4,1,93215,352,11
,4,1,93217,352,11
,0,484,93219,16,0
,4,1,93221,160,4
,4,1,93223,160,4
,4,1,93225,192,5
,4,1,93227,160,5
,4,1,93229,160,5
,4,1,93231,352,11
,4,1,93233,160,5
,4,1,93235,192,5
,0,484,93237,16,0
,0,484,93239,16,0
,0,484,93241,16,0
,4,1,93243,224,7
,4,1,93245,192,6
,0,484,93247,16,0
,0,484,93249,16,0
,4,1,93251,160,4
,4,1,93253,192,6
,4,1,93255,192,6
,4,1,93257,672,10
,0,484,93259,16,0
,0,484,93261,16,0
,4,1,93263,192,6
,0,484,93265,16,0
,0,484,93267,16,0
,0,484,93269,16,0
,0,484,93271,16,0
,4,1,93273,192,5
,4,1,93275,160,4
,4,1,93277,160,4
,4,1,93279,160,5
,4,1,93281,160,5
,4,1,93283,160,4
,4,1,93285,160,5
,4,1,93287,192,6
,0,484,93289,16,0
,4,1,93291,160,5
,4,1,93293,224,7
,4,1,93295,160,5
,0,484,93297,16,0
,4,1,93299,224,7
,0,484,93301,16,0
,0,484,93303,16,0
,4,1,93305,576,8
,0,484,93307,16,0
,0,484,93309,16,0
,0,484,93311,16,0
,4,1,93313,576,8
,0,484,93315,16,0
,0,484,93317,16,0
,4,1,93319,160,5
,4,1,93321,160,5
,4,1,93323,352,11
,4,1,93325,160,4
,4,1,93327,160,4
,4,1,93329,352,11
,4,1,93331,160,4
,4,1,93333,352,11
,4,1,93335,160,4
,4,1,93337,192,5
,4,1,93339,160,4
,4,1,93341,160,4
,4,1,93343,576,8
,0,484,93345,16,0
,0,484,93347,16,0
,4,1,93349,160,5
,4,1,93351,576,8
,0,484,93353,16,0
,0,484,93355,16,0
,4,1,93357,576,8
,0,484,93359,16,0
,4,1,93361,192,6
,4,1,93363,160,4
,4,1,93365,160,4
,0,484,93367,16,0
,4,1,93369,160,4
,4,1,93371,608,9
,0,484,93373,16,0
,0,484,93375,16,0
,4,1,93377,192,5
,0,484,93379,16,0
,0,484,93381,16,0
,0,484,93383,16,0
,0,484,93385,16,0
,0,484,93387,16,0
,0,484,93389,16,0
,0,484,93391,16,0
,0,484,93393,16,0
,0,484,93395,16,0
,4,1,93397,160,5
,4,1,93399,192,7
,0,484,93401,16,0
,0,484,93403,16,0
,0,484,93405,16,0
,0,484,93407,16,0
,0,484,93409,16,0
,4,1,93411,256,10
,4,1,93413,352,11
,0,484,93415,16,0
,4,1,93417,160,5
,4,1,93419,160,5
,4,1,93421,192,5
,4,1,93423,192,5
,4,1,93425,160,4
,4,1,93427,160,5
,0,484,93429,16,0
,4,1,93431,352,11
,4,1,93433,352,11
,4,1,93435,352,11
,4,1,93437,352,11
,4,1,93439,352,11
,4,1,93441,352,11
,0,484,93443,16,0
,4,1,93445,160,4
,0,484,93447,16,0
,4,1,93449,192,6
,0,484,93451,16,0
,4,1,93453,160,4
,4,1,93455,160,5
,0,484,93457,16,0
,4,1,93459,160,5
,4,1,93461,160,5
,4,1,93463,192,5
,4,1,93465,192,5
,0,484,93467,16,0
,4,1,93469,160,5
,4,1,93471,608,9
,4,1,93473,160,5
,4,1,93475,352,11
,4,1,93477,160,5
,0,484,93479,16,0
,4,1,93481,160,4
,4,1,93483,192,5
,4,1,93485,192,5
,4,1,93487,192,5
,4,1,93489,192,5
,0,484,93491,16,0
,4,1,93493,160,4
,4,1,93495,160,4
,0,484,93497,16,0
,0,484,93499,16,0
,0,484,93501,16,1
,0,484,93503,16,1
,0,484,93505,16,1
,0,484,93507,16,0
,4,1,93509,160,5
,4,1,93511,160,5
,4,1,93513,160,4
,4,1,93515,160,4
,4,1,93517,160,4
,4,1,93519,608,9
,0,484,93521,16,0
,4,1,93523,160,5
,4,1,93525,160,5
,4,1,93527,160,4
,4,1,93529,192,7
,4,1,93531,224,5
,0,484,93533,16,0
,4,1,93535,160,4
,0,484,93537,16,0
,0,484,93539,16,0
,0,484,93541,16,1
,4,1,93543,160,4
,0,484,93545,16,0
,4,1,93547,224,7
,0,484,93549,16,0
,0,484,93551,16,1
,0,484,93553,16,1
,0,484,93555,16,1
,0,484,93557,16,1
,0,484,93559,16,1
,0,484,93561,16,1
,0,484,93563,16,1
,0,484,93565,16,1
,0,484,93567,16,1
,0,484,93569,16,1
,0,484,93571,16,1
,4,1,93573,576,8
,0,484,93575,16,0
,0,484,93577,16,0
,0,484,93579,16,0
,0,484,93581,16,0
,0,484,93583,16,0
,4,1,93585,576,8
,4,1,93587,576,8
,4,1,93589,160,5
,4,1,93591,416,19
,4,1,93593,160,4
,4,1,93595,192,6
,4,1,93597,608,9
,4,1,93599,480,20
,4,1,93601,480,20
,0,484,93603,16,0
,0,484,93605,16,0
,0,484,93607,16,0
,0,484,93609,16,0
,0,484,93611,16,0
,0,484,93613,16,0
,4,1,93615,160,5
,4,1,93617,192,5
,4,1,93619,192,7
,4,1,93621,160,4
,4,1,93623,608,9
,4,1,93625,480,20
,4,1,93627,480,20
,0,484,93629,16,0
,4,1,93631,480,20
,4,1,93633,480,20
,4,1,93635,160,5
,4,1,93637,160,4
,4,1,93639,192,5
,4,1,93641,416,19
,4,1,93643,288,11
,4,1,93645,480,20
,4,1,93647,416,19
,4,1,93649,160,4
,4,1,93651,192,6
,4,1,93653,192,5
,4,1,93655,160,4
,0,484,93657,16,0
,4,1,93659,192,7
,4,1,93661,192,7
,4,1,93663,192,5
,4,1,93665,160,4
,4,1,93667,480,20
,4,1,93669,352,15
,0,484,93671,16,0
,4,1,93673,480,20
,4,1,93675,480,20
,4,1,93677,192,7
,4,1,93679,352,11
,4,1,93681,160,4
,4,1,93683,192,5
,4,1,93685,352,11
,4,1,93687,352,11
,4,1,93689,352,11
,4,1,93691,352,11
,4,1,93693,352,11
,4,1,93695,352,11
,4,1,93697,352,11
,4,1,93699,352,11
,4,1,93701,352,11
,4,1,93703,352,11
,4,1,93705,352,11
,4,1,93707,352,11
,4,1,93709,352,11
,4,1,93711,352,11
,4,1,93713,352,11
,4,1,93715,352,11
,4,1,93717,352,11
,4,1,93719,352,11
,4,1,93721,352,11
,4,1,93723,352,11
,0,484,93725,16,0
,4,1,93727,192,7
,0,484,93729,16,0
,0,484,93731,16,0
,4,1,93733,480,20
,4,1,93735,480,20
,4,1,93737,352,11
,4,1,93739,352,11
,4,1,93741,160,4
,4,1,93743,192,5
,4,1,93745,352,11
,4,1,93747,352,11
,4,1,93749,352,11
,4,1,93751,352,11
,4,1,93753,352,11
,4,1,93755,352,11
,4,1,93757,352,11
,4,1,93759,352,11
,4,1,93761,352,11
,4,1,93763,352,11
,0,484,93765,16,0
,4,1,93767,288,11
,0,484,93769,16,0
,4,1,93771,192,7
,4,1,93773,192,7
,0,484,93775,16,0
,0,484,93777,16,0
,4,1,93779,480,20
,4,1,93781,480,20
,4,1,93783,416,19
,4,1,93785,480,20
,4,1,93787,160,4
,4,1,93789,352,11
,0,484,93791,16,0
,0,484,93793,16,0
,0,484,93795,16,0
,4,1,93797,160,4
,4,1,93799,192,5
,0,484,93801,16,0
,0,484,93803,16,0
,0,484,93805,16,1
,0,484,93807,16,1
,0,484,93809,16,0
,4,1,93811,192,5
,4,1,93813,192,7
,0,484,93815,16,0
,0,484,93817,16,0
,0,484,93819,16,0
,0,484,93821,16,0
,0,484,93823,16,0
,0,484,93825,16,0
,0,484,93827,16,0
,0,484,93829,16,0
,0,484,93831,16,0
,0,484,93833,16,0
,0,484,93835,16,0
,4,1,93837,160,5
,0,484,93839,16,0
,0,484,93841,16,0
,0,484,93843,16,0
,0,484,93845,16,0
,4,1,93847,192,5
,0,484,93849,16,0
,0,484,93851,16,0
,4,1,93853,192,5
,4,1,93855,192,5
,4,1,93857,192,5
,4,1,93859,192,5
,0,484,93861,16,0
,0,484,93863,16,0
,4,1,93865,192,5
,4,1,93867,192,5
,4,1,93869,192,5
,4,1,93871,352,16
,0,484,93873,16,0
,0,484,93875,16,0
,0,484,93877,16,0
,0,484,93879,16,0
,0,484,93881,16,0
,0,484,93883,16,0
,0,484,93885,16,0
,4,1,93887,192,5
,0,484,93889,16,0
,0,484,93891,16,0
,0,484,93893,16,0
,0,484,93895,16,0
,0,484,93897,16,0
,0,484,93899,16,0
,4,1,93901,224,6
,0,484,93903,16,0
,0,16,93905,64,1
,0,16,93907,64,1
,0,16,93909,64,1
,0,16,93911,64,1
,0,16,93913,64,1
,0,16,93915,64,1
,0,16,93917,64,1
,0,16,93919,64,1
,0,16,93921,64,1
,0,16,93923,64,1
,0,16,93925,64,1
,0,16,93927,64,1
,0,16,93929,64,1
,0,16,93931,64,1
,0,16,93933,64,1
,0,16,93935,64,1
,0,16,93937,64,1
,0,16,93939,64,1
,0,16,93941,64,1
,0,16,93943,64,1
,0,16,93945,64,1
,0,16,93947,64,1
,0,16,93949,64,1
,0,16,93951,64,1
,0,16,93953,64,1
,0,16,93955,64,1
,0,16,93957,64,1
,0,16,93959,64,1
,0,16,93961,64,1
,0,16,93963,64,1
,0,16,93965,64,1
,0,16,93967,64,1
,0,16,93969,64,1
,0,16,93971,64,1
,0,16,93973,64,1
,0,16,93975,64,1
,0,16,93977,64,1
,0,16,93979,64,1
,0,16,93981,64,1
,0,16,93983,64,1
,0,16,93985,64,1
,0,16,93987,64,1
,0,16,93989,64,1
,0,16,93991,64,1
,0,16,93993,64,1
,0,16,93995,64,1
,0,16,93997,64,1
,0,16,93999,64,1
,0,16,94001,64,6
,0,16,94003,64,6
,0,16,94005,64,6
,0,16,94007,64,6
,0,16,94009,64,6
,0,16,94011,64,6
,0,16,94013,64,6
,0,16,94015,64,6
,0,16,94017,64,6
,0,16,94019,64,7
,8,128,1207189724,0,1
,9,128,1191180796,0,2
,8,128,1207193500,8192,1
],
"edges":[5,32,685
,1,2,5
,1,3,235045
,1,1,10
,1,2,15
,1,3,20
,1,4,25
,1,5,30
,1,6,35
,1,7,40
,1,8,45
,1,9,50
,1,10,55
,1,11,60
,1,12,65
,3,36053,225010
,3,36054,234880
,3,36055,203790
,3,36056,234925
,3,36057,85
,3,36058,120
,3,36059,70
,3,36060,100
,3,36061,110
,3,36062,234920
,3,36063,345
,3,36064,234750
,3,36065,234760
,3,36066,234810
,3,36067,225020
,3,36068,211230
,3,36069,175
,3,36070,230605
,3,36071,4430
,3,36072,7530
,3,36073,234875
,3,36074,140
,3,36075,204190
,3,36076,445
,3,36077,225005
,3,36078,340
,3,36079,225000
,3,36080,130
,3,36081,194980
,3,36058,120
,3,36058,120
,3,36082,185
,3,36083,305
,3,36084,310
,3,36085,150
,3,36086,234805
,3,36087,234755
,3,36088,234815
,3,36089,234820
,3,36090,234825
,3,36091,234830
,3,36092,234765
,3,36093,234770
,3,36094,234775
,3,36095,234780
,3,36096,234785
,3,36097,234835
,3,36098,234840
,3,36099,234845
,3,36100,234790
,3,36101,234795
,3,36102,234800
,3,36103,234850
,3,36104,234855
,3,36105,234860
,3,36106,234865
,3,36107,234870
,3,36108,234885
,3,36109,234890
,3,36110,229660
,3,36111,234895
,3,36112,234900
,3,36113,234905
,3,36114,229665
,3,36115,234910
,3,36116,234915
,3,36117,206030
,3,36118,195240
,3,36119,234960
,3,36120,234965
,3,36121,234970
,3,36122,234975
,3,36123,234980
,3,36124,75
,3,36125,234985
,3,36126,225610
,3,36127,95
,3,36128,225025
,3,36129,225015
,3,36130,195515
,3,36131,208195
,3,36132,229670
,3,36133,208200
,3,36134,209040
,3,36135,160
,3,36136,208955
,3,36137,208960
,3,36138,209370
,3,36139,3590
,3,36140,209375
,3,36141,1050
,3,36142,320
,3,36143,211990
,3,36144,212625
,3,36145,4665
,3,36146,1445
,3,36147,12580
,3,36148,12595
,3,36149,195270
,3,36150,19790
,3,36151,1160
,3,36152,213585
,3,36153,16560
,3,36154,211585
,3,36155,4435
,3,36156,212505
,3,36157,211745
,3,36158,655
,3,36159,4860
,3,36160,211455
,3,36161,21455
,3,36162,16915
,3,36163,195255
,3,36164,212685
,3,36165,80
,3,36166,19785
,3,36167,1090
,3,36168,212935
,3,36169,1285
,3,36170,16735
,3,36171,990
,3,36172,212565
,3,36173,213855
,3,36174,211740
,3,36175,21460
,3,36176,213860
,3,36177,212345
,3,36178,195280
,3,36179,10495
,3,36180,1190
,3,36181,1235
,3,36182,211670
,3,36183,4890
,3,36184,213055
,3,36185,90
,3,36186,4910
,3,36187,210965
,3,36188,210265
,3,36189,212275
,3,36190,212110
,3,36191,213645
,3,36192,9890
,3,36193,211725
,3,36194,213320
,3,36195,211720
,3,36196,17655
,3,36197,17665
,3,36198,1020
,3,36199,213415
,3,36200,9380
,3,36201,9370
,3,36202,9340
,3,36203,213510
,3,36204,212570
,3,36205,213695
,3,36206,211890
,3,36207,211855
,3,36208,212250
,3,36209,213665
,3,36210,211830
,3,36211,212035
,3,36212,213725
,3,36213,211905
,3,36214,12150
,3,36215,210
,3,36216,5740
,3,36217,212900
,3,36218,213085
,3,36219,212315
,3,36220,200
,3,36221,212885
,3,36222,213600
,3,36223,212835
,3,36224,213680
,3,36225,213395
,3,36226,211500
,3,36227,211460
,3,36228,12695
,3,36229,590
,3,36230,234930
,3,36231,12735
,3,36232,12840
,3,36233,12610
,3,36234,12720
,3,36235,13745
,3,36236,234935
,3,36237,575
,3,36238,234940
,3,36239,165
,3,36240,4410
,3,36241,234945
,3,36242,234950
,3,36243,234955
,1,1,225030
,3,36076,445
,3,36058,120
,3,36058,120
,1,3,560
,3,36058,120
,3,36058,120
,1,6,208590
,1,7,208590
,1,8,29565
,1,9,204110
,1,10,207765
,1,11,208120
,1,12,29345
,1,13,206425
,1,14,12600
,1,15,560
,1,16,12600
,1,17,207770
,1,18,206425
,1,19,207765
,1,20,206435
,1,21,207775
,1,22,30645
,1,23,206425
,1,24,224720
,1,25,29640
,3,36060,100
,3,36057,85
,1,28,230600
,1,29,206425
,1,30,230595
,1,31,30525
,1,32,224720
,1,33,29640
,1,34,204750
,1,35,30525
,1,36,230625
,1,37,204750
,1,38,30525
,1,39,230635
,1,40,230635
,3,36136,208955
,3,36136,208955
,1,1,204110
,1,2,29565
,3,36057,85
,1,1,230875
,1,2,230920
,3,36057,85
,3,36057,85
,1,3,211250
,1,4,211285
,1,5,211290
,3,36057,85
,3,36057,85
,3,36057,85
,3,36057,85
,3,36057,85
,3,36057,85
,1,1,725
,1,2,12615
,1,3,16930
,1,4,15160
,1,5,15165
,1,6,195235
,1,7,560
,1,8,725
,1,9,915
,1,10,15735
,1,11,213905
,1,12,560
,1,13,2350
,1,14,970
,1,15,970
,1,16,560
,1,17,560
,1,18,780
,1,19,15765
,1,20,213175
,1,21,560
,1,22,2350
,1,23,970
,1,24,970
,1,25,560
,1,26,560
,1,27,690
,1,28,15795
,1,29,211695
,1,30,560
,1,31,2350
,1,32,970
,1,33,970
,1,34,560
,1,35,560
,1,36,955
,1,37,15825
,1,38,213435
,1,39,560
,1,40,2350
,1,41,970
,1,42,970
,1,43,560
,1,44,560
,1,45,740
,1,46,15855
,1,47,212680
,1,48,560
,1,49,2350
,1,50,970
,1,51,970
,1,52,560
,1,53,560
,1,54,810
,1,55,15885
,1,56,212880
,1,57,560
,1,58,2350
,1,59,970
,1,60,970
,1,61,560
,1,62,560
,1,63,785
,1,64,15915
,1,65,211375
,1,66,560
,1,67,2350
,1,68,970
,1,69,970
,1,70,560
,1,71,560
,1,72,905
,1,73,15945
,1,74,213685
,1,75,560
,1,76,2350
,1,77,970
,1,78,970
,1,79,560
,1,80,560
,1,81,760
,3,36057,85
,1,83,30525
,1,84,560
,1,85,560
,1,1,660
,1,2,525
,1,3,230610
,1,4,230615
,1,5,7390
,1,6,7375
,1,7,7405
,1,8,7425
,1,9,7445
,1,10,7465
,1,11,7485
,1,12,12650
,1,13,230620
,1,14,1505
,1,15,1530
,1,16,635
,1,17,230625
,1,18,230630
,1,19,1450
,1,20,335
,1,21,12655
,1,22,230635
,1,23,230640
,1,24,4220
,1,25,203715
,1,26,230645
,1,27,230650
,1,28,230655
,1,29,230660
,1,30,230665
,1,31,230670
,1,32,230675
,1,33,230680
,1,34,230685
,1,35,230690
,1,36,230695
,1,37,230700
,1,38,230705
,1,39,230710
,1,40,230715
,1,41,230720
,1,42,230725
,1,43,230730
,1,44,230735
,1,45,230740
,1,46,230745
,1,47,230750
,1,48,230755
,1,49,230760
,1,50,230765
,1,51,230770
,1,52,230775
,1,53,230780
,1,54,230785
,1,55,230790
,1,56,230795
,1,57,230800
,1,58,230805
,1,59,230810
,1,60,230815
,1,61,230820
,1,62,230825
,1,63,230830
,1,64,230835
,1,65,230840
,1,66,230845
,1,67,230850
,1,68,230855
,1,69,230860
,1,70,230865
,1,71,12585
,1,72,12600
,1,73,3635
,1,74,1055
,1,75,1060
,1,76,1205
,1,77,230870
,1,78,230875
,1,79,230880
,1,80,230885
,1,81,230890
,1,82,230895
,1,83,230900
,1,84,230905
,1,85,230910
,1,86,230915
,1,87,230920
,1,88,230925
,1,89,230930
,1,1,560
,1,2,915
,1,3,204560
,1,4,13710
,1,5,13780
,1,6,13905
,1,7,14025
,1,8,14145
,1,9,14265
,1,10,14385
,1,11,14505
,1,12,14625
,1,13,14745
,1,14,14865
,1,15,12615
,1,16,16930
,1,17,15735
,1,18,15765
,1,19,15795
,1,20,15825
,1,21,15855
,1,22,15885
,1,23,15915
,1,24,15945
,1,25,211295
,1,26,16110
,1,27,16155
,3,36161,21455
,1,29,212985
,1,30,18160
,6,31,20660
,1,32,950
,1,33,24915
,1,34,213095
,1,35,25780
,1,36,202610
,1,37,202640
,1,38,28945
,1,39,202615
,1,40,202620
,1,41,202625
,1,42,202630
,1,43,28850
,1,44,202635
,1,45,202645
,1,46,202650
,1,47,202655
,1,48,202660
,6,49,20670
,1,50,213325
,1,51,212705
,1,52,16625
,1,53,16655
,1,54,16905
,1,55,203665
,1,56,205965
,1,57,204750
,1,58,196675
,1,59,28860
,1,60,212990
,1,61,212080
,1,62,212940
,1,63,213095
,1,64,213095
,1,65,221670
,1,66,211550
,1,67,205655
,1,68,221690
,1,69,196685
,3,36057,85
,1,2,211325
,1,1,206205
,1,2,206215
,1,3,206230
,1,4,206335
,1,5,206370
,1,6,206340
,1,7,206310
,1,8,206315
,1,9,206220
,1,10,206240
,1,11,206380
,1,12,206350
,1,13,206360
,1,14,206265
,1,15,206225
,1,16,206385
,1,17,206260
,1,18,206200
,1,19,206365
,1,20,206270
,1,21,206280
,1,22,206245
,1,23,206285
,1,24,206375
,1,25,206355
,1,26,206195
,1,27,206290
,1,28,206210
,1,29,206330
,1,30,206300
,1,31,206320
,1,32,206325
,1,33,206275
,1,34,206235
,1,35,206255
,1,36,206190
,1,37,206295
,1,38,206345
,1,39,206250
,1,40,206305
,1,41,15160
,1,42,15165
,3,36244,75
,4,1,80
,3,36244,234750
,3,36244,75
,4,1,90
,4,2,95
,3,36244,225020
,3,36244,75
,4,1,105
,3,36244,75
,4,1,115
,3,36244,75
,4,1,125
,3,36244,75
,4,1,135
,3,36244,75
,4,1,145
,3,36244,75
,4,1,155
,3,36244,165
,3,36244,234750
,3,36244,234750
,4,35,190
,4,40,195
,4,47,200
,4,48,205
,4,49,210
,4,50,215
,4,51,220
,4,52,225
,4,53,230
,4,54,235
,4,55,240
,4,56,245
,4,57,250
,4,58,255
,4,61,260
,4,63,265
,4,98,270
,4,104,275
,4,105,280
,4,109,285
,4,111,290
,4,113,295
,4,116,300
,3,36245,320
,3,36246,325
,3,36247,330
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226030
,3,36252,6480
,3,36244,230605
,4,1,208635
,4,2,231155
,4,3,208615
,4,4,231155
,4,5,4270
,4,6,209190
,4,8,208800
,4,9,4270
,4,10,209190
,3,36244,4430
,4,5,270
,3,36251,225230
,3,36244,230605
,4,1,335
,4,2,208590
,4,3,230625
,3,36244,234750
,2,54,355
,2,55,360
,2,56,365
,2,57,370
,2,58,375
,2,59,380
,2,60,385
,2,61,390
,2,62,395
,2,63,400
,2,64,405
,2,65,410
,2,66,415
,2,67,420
,2,35551,425
,2,34299,430
,3,36253,435
,3,36254,315
,3,36255,440
,6,64,85
,3,36244,450
,4,1,325
,4,2,455
,2,35551,425
,3,36253,6305
,3,36254,5005
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,5015
,2,35551,425
,3,36253,6380
,3,36254,5355
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,5365
,2,35551,425
,3,36253,6385
,3,36254,5375
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,5385
,2,35551,425
,3,36253,6390
,3,36254,5415
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,5425
,2,35551,425
,3,36253,6405
,3,36254,5455
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6360
,3,36254,5315
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6365
,3,36254,5325
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6375
,3,36254,5345
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,5505
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6425
,3,36254,5495
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6420
,3,36254,5485
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6415
,3,36254,5475
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6410
,3,36254,5465
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6400
,3,36254,5445
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,828,535
,2,82,540
,2,71,545
,2,83,550
,2,84,555
,2,35551,430
,3,36254,515
,3,36255,560
,6,64,85
,3,36244,565
,4,1,525
,2,828,350
,2,71,460
,2,72,465
,2,73,470
,2,74,475
,2,75,480
,2,76,485
,2,77,490
,2,78,495
,2,79,500
,2,80,505
,2,35551,70
,3,36244,510
,4,1,560
,3,36256,3545
,3,36257,560
,3,36258,970
,3,36244,195240
,3,36259,425
,3,36260,216945
,3,36244,234750
,3,36259,430
,3,36261,350
,4,2,206120
,4,3,204915
,4,4,29900
,4,5,206420
,4,6,22780
,4,7,217535
,4,8,198685
,4,9,198725
,4,10,213900
,4,11,217450
,4,12,213210
,4,13,221865
,4,14,207225
,4,15,206135
,4,16,198765
,4,17,221870
,4,18,213780
,4,19,221875
,4,20,16125
,4,21,221880
,4,22,200000
,4,23,200140
,4,24,18115
,4,25,221885
,4,26,212600
,4,27,221890
,4,28,212185
,4,29,197280
,3,36262,221860
,3,36244,234750
,2,35551,425
,3,36254,4885
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6295
,3,36254,4895
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,4905
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,4915
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4925
,2,35551,425
,3,36253,6300
,3,36254,4935
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,4945
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,4955
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4965
,2,35551,425
,3,36254,4975
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,4985
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,4995
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,3,36261,350
,3,36260,216940
,3,36244,234750
,3,36245,520
,3,36246,525
,3,36248,320
,3,36263,530
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225140
,3,36244,230605
,4,1,208590
,3,36264,570
,3,36244,575
,4,3,580
,2,35551,425
,2,34299,425
,3,36253,1035
,3,36254,1015
,3,36255,440
,6,64,85
,3,36244,675
,4,1,1025
,4,2,1040
,2,35551,425
,3,36254,5655
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,5665
,2,35551,425
,3,36254,5650
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,12575
,3,36255,560
,6,64,85
,3,36244,6290
,4,1,12585
,2,35551,425
,3,36254,12590
,3,36255,560
,6,64,85
,3,36244,6290
,4,1,12600
,3,36256,425
,3,36265,685
,3,36258,685
,3,36266,725
,3,36267,685
,3,36268,855
,3,36269,820
,3,36270,840
,3,36271,211195
,3,36272,350
,3,36273,2765
,3,36274,895
,3,36275,204155
,3,36276,880
,3,36277,720
,3,36278,845
,3,36279,430
,3,36280,1805
,3,36281,2415
,3,36282,1590
,3,36283,2580
,3,36284,2905
,3,36285,1855
,3,36286,2490
,3,36287,2290
,3,36288,960
,3,36289,2350
,3,36290,1950
,3,36291,12670
,3,36292,211200
,3,36293,6290
,3,36294,211205
,3,36295,211210
,3,36296,211215
,3,36297,211220
,3,36298,204120
,3,36299,204130
,3,36300,204145
,3,36131,204175
,3,36301,1920
,3,36302,1715
,3,36303,1550
,3,36304,1560
,3,36305,440
,3,36306,1510
,3,36307,1535
,3,36308,2740
,3,36309,2990
,3,36310,1485
,3,36311,204185
,3,36312,2530
,3,36313,211225
,6,63,2645
,6,65,85
,3,36244,211230
,3,36259,430
,3,36260,217385
,3,36244,234750
,3,36244,234750
,3,36244,225610
,3,36244,590
,4,1,595
,4,2,595
,3,36244,234750
,2,35551,425
,3,36254,625
,3,36255,560
,6,64,85
,3,36314,640
,3,36244,645
,4,1,635
,3,36244,590
,4,1,595
,4,2,595
,3,36244,590
,4,1,595
,4,2,595
,3,36244,590
,4,1,595
,4,2,595
,3,36244,590
,4,1,595
,4,2,595
,3,36244,590
,4,1,595
,4,2,595
,3,36245,630
,3,36246,635
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225210
,3,36244,230605
,4,1,208590
,3,36244,204190
,3,36259,425
,3,36260,214095
,3,36244,234750
,3,36245,655
,3,36246,660
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225135
,3,36244,230605
,4,1,208590
,2,35551,425
,2,34299,670
,3,36254,650
,3,36255,560
,6,64,85
,3,36244,675
,4,1,660
,4,2,680
,2,828,350
,2,35551,430
,3,36315,204775
,3,36244,214100
,3,36259,425
,4,2,217235
,3,36262,217230
,3,36260,214005
,3,36244,234750
,3,36259,670
,3,36261,665
,3,36244,234750
,2,35782,690
,2,92,695
,2,93,700
,2,94,705
,2,95,710
,2,35880,715
,2,96,720
,2,1379,725
,2,97,730
,2,98,735
,2,35832,740
,2,34711,745
,2,99,750
,2,34713,755
,2,35736,95
,2,35881,760
,2,132,725
,2,100,765
,2,101,770
,2,102,775
,2,35921,780
,2,35725,785
,2,103,790
,2,104,795
,2,105,800
,2,81,535
,2,34710,805
,2,35687,810
,2,106,815
,2,107,820
,2,34709,825
,2,18,85
,2,108,830
,2,50,350
,2,109,835
,2,110,840
,2,111,845
,2,618,850
,2,113,855
,2,34712,860
,2,114,865
,2,115,870
,2,116,875
,2,117,880
,2,118,885
,2,119,890
,2,120,895
,2,34708,900
,2,35432,905
,2,121,910
,2,122,915
,2,123,920
,2,124,925
,2,35028,930
,2,125,935
,2,126,940
,2,127,945
,2,128,950
,2,35493,955
,2,129,960
,2,130,965
,2,35913,725
,2,35551,670
,3,36316,970
,3,36317,560
,3,36318,725
,3,36315,975
,3,36244,980
,4,1,560
,2,35551,425
,2,34299,15785
,3,36254,15780
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,15790
,2,35551,425
,2,34299,13770
,3,36254,13765
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13775
,2,35551,425
,2,34299,14850
,3,36254,14845
,3,36255,560
,6,64,85
,3,36315,14855
,3,36244,13895
,4,1,12650
,4,2,14860
,2,35551,425
,2,34299,14130
,3,36254,14125
,3,36255,560
,6,64,85
,3,36315,14135
,3,36244,13895
,4,1,12650
,4,2,14140
,2,35551,425
,2,34299,14730
,3,36254,14725
,3,36255,560
,6,64,85
,3,36315,14735
,3,36244,13895
,4,1,12650
,4,2,14740
,3,36244,225020
,2,136,1425
,2,142,1430
,2,35551,430
,3,36244,1435
,3,36244,1010
,4,3,560
,0,486,730
,2,35551,425
,2,34299,203815
,3,36254,10045
,3,36255,204850
,6,64,85
,3,36244,675
,4,1,10025
,4,2,10055
,2,35551,425
,3,36254,4825
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,2,34299,15845
,3,36254,15840
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,15850
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,21010
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,4220
,2,35551,425
,3,36254,4845
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,21030
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,4220
,2,35551,425
,2,34299,15965
,3,36254,15960
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,15970
,2,35551,425
,2,34299,15145
,3,36254,15140
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,15150
,2,35551,425
,3,36254,8595
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,2,34299,13885
,3,36254,13880
,3,36255,560
,6,64,85
,3,36315,13890
,3,36244,13895
,4,1,12650
,4,2,13900
,2,35551,425
,2,34299,15755
,3,36254,15750
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,15760
,2,35551,425
,2,34299,15905
,3,36254,15900
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,15910
,2,35551,425
,2,34299,14010
,3,36254,14005
,3,36255,560
,6,64,85
,3,36315,14015
,3,36244,13895
,4,1,12650
,4,2,14020
,0,486,795
,2,176,1740
,2,35551,425
,2,34299,197770
,3,36254,10015
,3,36255,204840
,6,64,85
,3,36315,204845
,3,36244,217150
,4,1,10025
,4,2,217155
,0,486,800
,2,35551,425
,2,34299,203840
,3,36254,10060
,3,36255,203845
,6,64,85
,3,36244,675
,4,1,10025
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,20980
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,20985
,2,35551,425
,2,34299,15875
,3,36254,15870
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,15880
,0,486,815
,2,35551,425
,2,34299,203860
,3,36254,10080
,3,36255,203865
,6,64,85
,3,36244,675
,4,1,10025
,2,35573,1105
,2,35494,1110
,2,35736,95
,2,35838,1115
,2,35576,1120
,2,98,1125
,2,114,1130
,2,35551,425
,2,34299,1135
,3,36254,1085
,3,36255,440
,6,64,85
,3,36315,1140
,3,36244,1145
,4,1,1095
,4,2,1150
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,21000
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,4220
,2,35551,425
,2,34299,14250
,3,36254,14245
,3,36255,560
,6,64,85
,3,36315,14255
,3,36244,13895
,4,1,12650
,4,2,14260
,2,35551,425
,2,34299,14490
,3,36254,14485
,3,36255,560
,6,64,85
,3,36315,14495
,3,36244,13895
,4,1,12650
,4,2,14500
,2,134,1210
,2,35551,425
,2,34299,1215
,3,36254,1185
,3,36255,440
,6,64,85
,3,36244,1220
,4,1,1195
,4,2,1225
,2,36319,1300
,2,36320,1305
,2,36321,1300
,2,36322,1305
,2,36323,1300
,2,36324,1305
,2,36325,1310
,2,36326,1315
,2,36327,1310
,2,36328,1315
,2,36329,1320
,2,36330,1325
,2,36331,1320
,2,36332,1325
,2,36333,1330
,2,36334,1325
,2,36335,1330
,2,36336,1325
,2,36337,1335
,2,36338,1325
,2,36339,1335
,2,36340,1325
,2,36341,1340
,2,36342,1325
,2,36343,1340
,2,36344,1325
,2,36345,1345
,2,36346,1325
,2,36347,1350
,2,36348,1325
,2,36349,1355
,2,36350,1325
,2,36351,1360
,2,36352,1325
,2,36353,1365
,2,36354,1325
,2,36355,1370
,2,36356,1325
,2,36357,1375
,2,36358,1325
,2,36359,1380
,2,36360,1325
,2,36361,1385
,2,36362,1325
,2,35551,425
,2,34299,1390
,3,36254,1280
,3,36255,440
,6,64,85
,3,36244,1395
,4,1,1290
,4,2,1400
,2,35654,203745
,2,35669,203750
,2,35565,203755
,2,35869,203760
,2,35858,203765
,2,35910,203770
,2,35546,203775
,2,35830,203780
,2,383,2870
,2,250,2130
,2,262,2190
,2,325,2535
,2,440,3195
,2,171,1710
,2,442,3205
,2,151,1600
,2,227,2005
,2,200,1870
,2,296,2370
,2,420,3080
,2,468,3355
,2,290,2340
,2,252,2140
,2,257,2165
,2,370,2795
,2,150,1595
,2,35551,430
,3,36244,203785
,2,35551,425
,2,34299,1175
,3,36254,1155
,3,36255,440
,6,64,85
,3,36244,675
,4,1,1165
,4,2,1180
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,21020
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,4220
,2,35551,425
,3,36254,4815
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,4835
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,8675
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,135,1250
,2,136,1255
,2,137,1260
,2,35551,425
,2,34299,1265
,3,36254,1230
,3,36255,440
,6,64,85
,3,36244,1270
,4,1,1240
,4,2,1275
,0,486,885
,2,35551,425
,2,34299,203830
,3,36254,10035
,3,36255,203835
,6,64,85
,3,36244,675
,4,1,10025
,0,486,890
,2,35551,425
,2,34299,203850
,3,36254,10070
,3,36255,203855
,6,64,85
,3,36244,675
,4,1,10025
,2,133,1065
,2,35551,425
,2,34299,1070
,3,36254,1045
,3,36255,560
,6,64,85
,3,36244,1075
,4,1,1055
,4,2,1080
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,20970
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,4220
,2,35551,425
,2,34299,15935
,3,36254,15930
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,15940
,0,486,910
,2,35551,425
,2,34299,203870
,3,36254,10090
,3,36255,203875
,6,64,85
,3,36244,675
,4,1,10025
,2,34350,204570
,2,34351,204560
,2,34352,204575
,2,34353,204535
,2,34354,204530
,2,34355,204565
,2,34356,204545
,2,34357,204550
,2,34359,204540
,2,34360,204555
,2,34361,12855
,2,34362,12890
,2,1049,12925
,2,34363,12960
,2,34364,12995
,2,34365,13030
,2,1072,13065
,2,34366,13100
,2,34367,13135
,2,34368,13170
,2,34369,13205
,2,34370,13240
,2,34371,13275
,2,34372,13310
,2,34373,13345
,2,34374,13380
,2,34375,13415
,2,34376,13450
,2,34377,13485
,2,34378,13520
,2,34379,13555
,2,34380,13590
,2,34381,13625
,2,1266,13660
,2,34382,13695
,2,34383,204580
,2,34384,204585
,2,860,70
,2,831,26450
,2,34386,17385
,2,34387,110
,2,820,15985
,2,1037,204590
,2,1047,196665
,2,1048,196670
,2,1045,196675
,2,1046,196680
,2,1044,196685
,2,36363,21540
,2,36364,120
,2,36365,21550
,2,36366,120
,2,36367,21560
,2,36368,120
,2,34389,21565
,2,34390,21610
,2,34391,21615
,2,1068,21690
,2,34333,21690
,2,1069,21710
,2,34392,204595
,2,35551,196440
,3,36315,204525
,3,36244,202915
,2,35551,425
,2,34299,14610
,3,36254,14605
,3,36255,560
,6,64,85
,3,36315,14615
,3,36244,13895
,4,1,12650
,4,2,14620
,2,35551,425
,2,34299,14370
,3,36254,14365
,3,36255,560
,6,64,85
,3,36315,14375
,3,36244,13895
,4,1,12650
,4,2,14380
,3,36244,590
,4,1,21100
,2,35551,425
,3,36254,8625
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,8635
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,8685
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,34482,20735
,2,881,20740
,2,34434,18530
,2,251,20785
,2,35551,425
,2,34299,197195
,3,36254,17435
,3,36255,20720
,6,64,85
,3,36315,204740
,3,36244,198255
,4,1,17445
,4,2,17455
,2,35551,425
,2,34299,15815
,3,36254,15810
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,15820
,2,35551,425
,3,36254,4855
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,8605
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,500,960
,2,519,375
,2,549,1585
,2,149,1590
,2,633,1595
,2,629,1600
,2,35930,800
,2,741,1605
,2,574,1610
,2,154,1615
,2,734,1620
,2,156,1625
,2,612,935
,2,135,1630
,2,157,1635
,2,158,1640
,2,708,1250
,2,732,1645
,2,132,685
,2,706,1650
,2,731,1655
,2,605,1660
,2,162,1665
,2,601,1670
,2,764,1425
,2,709,1260
,2,164,1675
,2,165,1680
,2,700,85
,2,578,1685
,2,496,865
,2,753,1690
,2,168,1695
,2,169,1700
,2,170,1705
,2,627,1710
,2,140,1335
,2,655,1715
,2,172,1720
,2,480,535
,2,508,495
,2,173,1725
,2,174,1730
,2,557,1735
,2,176,1740
,2,177,1745
,2,614,875
,2,178,1750
,2,179,1755
,2,516,365
,2,180,1760
,2,181,1765
,2,182,1770
,2,183,1775
,2,184,1780
,2,185,1785
,2,186,1790
,2,187,1795
,2,512,380
,2,188,1800
,2,35549,730
,2,189,1805
,2,592,1210
,2,190,1810
,2,558,1815
,2,716,1820
,2,728,1825
,2,193,1830
,2,699,95
,2,520,415
,2,698,880
,2,648,1835
,2,772,85
,2,585,1840
,2,35580,885
,2,195,1845
,2,196,1850
,2,197,1855
,2,198,1860
,2,199,1865
,2,533,1125
,2,631,1870
,2,201,1875
,2,202,1880
,2,203,1885
,2,204,1890
,2,205,1895
,2,584,1900
,2,207,1905
,2,744,1910
,2,510,505
,2,209,1915
,2,210,1920
,2,746,1925
,2,212,1930
,2,213,1935
,2,522,405
,2,214,1940
,2,215,1945
,2,216,1950
,2,754,1955
,2,218,1960
,2,219,1965
,2,499,750
,2,220,1970
,2,147,970
,2,221,1975
,2,569,1980
,2,223,1985
,2,582,1990
,2,225,1995
,2,226,2000
,2,771,85
,2,619,2005
,2,515,360
,2,228,2010
,2,599,2015
,2,230,2020
,2,231,2025
,2,615,945
,2,748,2030
,2,233,2035
,2,747,2040
,2,481,855
,2,235,2045
,2,568,2050
,2,718,2055
,2,237,2060
,2,238,2065
,2,603,2070
,2,567,2075
,2,240,2080
,2,241,2085
,2,242,2090
,2,243,2095
,2,244,2100
,2,245,2105
,2,536,540
,2,246,2110
,2,531,2115
,2,248,2120
,2,35931,910
,2,768,845
,2,35932,890
,2,613,940
,2,503,470
,2,249,2125
,2,622,2130
,2,571,2135
,2,524,395
,2,626,2140
,2,505,480
,2,253,2145
,2,254,2150
,2,729,2155
,2,256,2160
,2,634,2165
,2,258,2170
,2,495,735
,2,749,2175
,2,719,2180
,2,587,2185
,2,623,2190
,2,263,2195
,2,264,2200
,2,265,2205
,2,266,2210
,2,506,485
,2,267,2215
,2,268,2220
,2,526,2225
,2,742,2230
,2,270,2235
,2,271,2240
,2,272,2245
,2,273,2250
,2,274,2255
,2,275,2260
,2,276,2265
,2,277,2270
,2,572,2275
,2,730,2280
,2,280,2285
,2,139,1330
,2,281,2290
,2,282,2295
,2,283,2300
,2,284,2305
,2,739,2310
,2,769,2315
,2,733,2320
,2,545,2325
,2,288,2330
,2,289,2335
,2,639,2340
,2,291,2345
,2,292,2350
,2,293,2355
,2,580,2360
,2,295,2365
,2,636,2370
,2,751,2375
,2,298,2380
,2,299,2385
,2,300,2390
,2,521,410
,2,727,2395
,2,724,2400
,2,737,2405
,2,575,2410
,2,305,2415
,2,589,2420
,2,307,2425
,2,597,2430
,2,595,2435
,2,725,2440
,2,513,385
,2,535,545
,2,311,2445
,2,775,2450
,2,525,2455
,2,312,2460
,2,745,2465
,2,514,390
,2,740,2470
,2,702,2475
,2,315,2480
,2,316,2485
,2,317,2490
,2,594,2495
,2,319,2500
,2,604,2505
,2,586,2510
,2,322,2515
,2,710,2520
,2,721,2525
,2,138,1320
,2,324,2530
,2,624,2535
,2,326,2540
,2,703,2545
,2,559,2550
,2,328,2555
,2,329,2560
,2,112,2565
,2,547,2570
,2,330,2575
,2,331,2580
,2,647,2585
,2,332,2590
,2,479,820
,2,333,2595
,2,509,500
,2,334,2600
,2,335,2605
,2,336,2610
,2,478,840
,2,337,2615
,2,602,2620
,2,621,850
,2,339,2625
,2,497,735
,2,340,2630
,2,532,2635
,2,498,870
,2,342,2640
,2,577,2645
,2,344,2650
,2,345,2655
,2,346,2660
,2,347,2665
,2,494,865
,2,527,2670
,2,348,2675
,2,349,2680
,2,350,2685
,2,351,2690
,2,551,2695
,2,353,2700
,2,750,2705
,2,355,2710
,2,712,2715
,2,357,2720
,2,358,2725
,2,550,2730
,2,360,2735
,2,361,2740
,2,362,2745
,2,363,2750
,2,364,2755
,2,365,2760
,2,166,2765
,2,366,2770
,2,367,2775
,2,556,2780
,2,368,2785
,2,369,2790
,2,632,2795
,2,371,2800
,2,581,2805
,2,701,2810
,2,743,2815
,2,374,2820
,2,375,2825
,2,620,2130
,2,715,2830
,2,377,2835
,2,776,70
,2,378,2840
,2,379,2845
,2,598,2850
,2,381,2855
,2,382,2860
,2,707,1255
,2,645,2865
,2,635,2870
,2,384,2875
,2,523,400
,2,720,2880
,2,386,2885
,2,387,2890
,2,388,2895
,2,528,2900
,2,389,2905
,2,593,2910
,2,391,2915
,2,392,2920
,2,393,2925
,2,394,2930
,2,705,2935
,2,554,2940
,2,35571,795
,2,396,2945
,2,397,2950
,2,507,490
,2,398,2955
,2,501,460
,2,735,2960
,2,600,2965
,2,401,2970
,2,774,2975
,2,548,2980
,2,773,2985
,2,477,895
,2,404,2990
,2,610,770
,2,630,2005
,2,405,2995
,2,406,3000
,2,736,3005
,2,738,3010
,2,714,3015
,2,410,3020
,2,411,3025
,2,534,1130
,2,590,3030
,2,765,1430
,2,413,3035
,2,414,3040
,2,415,3045
,2,591,3050
,2,611,965
,2,416,3055
,2,417,3060
,2,504,475
,2,553,3065
,2,419,3070
,2,713,3075
,2,637,3080
,2,421,3085
,2,763,720
,2,422,3090
,2,423,3095
,2,424,3100
,2,425,3105
,2,426,3110
,2,722,3115
,2,755,3120
,2,717,3125
,2,430,3130
,2,573,3135
,2,482,95
,2,596,3140
,2,642,3145
,2,552,3150
,2,433,3155
,2,723,3160
,2,546,3165
,2,435,3170
,2,141,1340
,2,502,465
,2,436,3175
,2,437,3180
,2,438,3185
,2,518,420
,2,439,3190
,2,625,3195
,2,441,3200
,2,628,3205
,2,656,1715
,2,443,3210
,2,583,3215
,2,445,3220
,2,446,3225
,2,530,3230
,2,711,3235
,2,449,3240
,2,450,3245
,2,560,1065
,2,511,355
,2,570,3250
,2,452,3255
,2,453,3260
,2,770,3265
,2,579,3270
,2,576,3275
,2,555,3280
,2,588,3285
,2,476,350
,2,458,3290
,2,459,3295
,2,517,370
,2,460,3300
,2,461,3305
,2,529,3310
,2,462,3315
,2,463,3320
,2,752,3325
,2,646,3330
,2,35933,815
,2,465,3335
,2,704,3340
,2,466,3345
,2,467,3350
,2,638,3355
,2,469,3360
,2,470,3365
,2,726,3370
,2,35551,70
,3,36316,970
,3,36317,560
,3,36318,970
,3,36315,3375
,3,36244,3380
,4,1,560
,4,2,2875
,4,3,3350
,4,4,1725
,4,5,2925
,4,6,2710
,4,7,2110
,4,8,3095
,4,9,2300
,4,10,1940
,4,11,2100
,4,12,3255
,4,13,2120
,4,14,3045
,4,15,1790
,4,16,2785
,4,17,1760
,4,18,3055
,4,19,3345
,4,20,2800
,4,21,2090
,4,22,1770
,4,23,2700
,4,24,2200
,4,25,2150
,4,26,3085
,4,27,3180
,4,28,2270
,4,29,2560
,4,30,2540
,4,31,2345
,4,32,2745
,4,33,3385
,4,34,3390
,4,35,3395
,4,36,3400
,4,37,3405
,4,38,3410
,4,39,3415
,4,40,3420
,4,41,3425
,4,42,3430
,4,43,3435
,4,44,3440
,4,45,3445
,4,46,3450
,4,47,3455
,4,48,3460
,4,49,3465
,4,50,3470
,4,51,3475
,4,52,3480
,4,53,3485
,4,54,3490
,4,55,3495
,4,56,3500
,4,57,3505
,4,58,3510
,4,59,3515
,4,60,3520
,4,61,3525
,4,62,3530
,4,63,3535
,3,36244,204190
,4,6,213175
,4,7,214110
,4,9,214115
,4,10,214120
,4,24,214125
,4,25,214130
,4,27,214135
,4,28,214140
,4,30,214145
,4,31,214150
,4,36,213680
,4,37,214155
,4,39,212295
,4,40,214160
,4,42,28615
,4,43,214165
,4,48,10050
,4,49,214170
,4,60,4830
,4,61,214175
,4,69,213435
,4,70,214180
,4,72,203385
,4,73,214185
,4,78,4850
,4,79,214190
,4,81,203395
,4,82,214195
,4,96,212935
,4,97,214200
,4,99,213685
,4,100,214205
,4,102,990
,4,103,214210
,4,114,214215
,4,115,214220
,4,123,8600
,4,124,214225
,4,129,214230
,4,130,214235
,4,132,213905
,4,133,214240
,4,135,212880
,4,136,214245
,4,138,214250
,4,139,214255
,4,141,10020
,4,142,214260
,4,147,10065
,4,148,214265
,4,150,1020
,4,151,214270
,4,153,203380
,4,154,214275
,4,156,212680
,4,157,214280
,4,159,10085
,4,160,214285
,4,162,1090
,4,163,214290
,4,165,203375
,4,166,214295
,4,180,90
,4,181,214300
,4,183,214305
,4,184,214310
,4,189,320
,4,190,214315
,4,192,214320
,4,193,214325
,4,195,1190
,4,196,214330
,4,201,1285
,4,202,214335
,4,204,8835
,4,205,214340
,4,210,1160
,4,211,214345
,4,237,203390
,4,238,214350
,4,240,4820
,4,241,214355
,4,246,4840
,4,247,214360
,4,249,8680
,4,250,214365
,4,258,1235
,4,259,214370
,4,270,10040
,4,271,214375
,4,276,10075
,4,277,214380
,4,279,1050
,4,280,214385
,4,285,203370
,4,286,214390
,4,288,211375
,4,289,214395
,4,291,10095
,4,292,214400
,4,300,12615
,4,301,214405
,4,312,214410
,4,313,214415
,4,315,214420
,4,316,214425
,4,318,207730
,4,319,214430
,4,321,8630
,4,322,214435
,4,342,8640
,4,343,214440
,4,351,8690
,4,352,214445
,4,354,17440
,4,355,214450
,4,360,211695
,4,361,214455
,4,366,4860
,4,367,214460
,4,369,8610
,4,370,214465
,4,375,213865
,4,376,214470
,3,36259,670
,3,36261,665
,3,36244,234750
,3,36245,655
,3,36246,660
,3,36248,990
,3,36249,335
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,1000
,3,36254,985
,3,36255,560
,6,64,85
,3,36244,675
,4,1,660
,4,2,1005
,2,828,995
,2,35551,430
,3,36244,214480
,3,36259,1000
,3,36261,995
,3,36244,234750
,3,36259,685
,3,36261,995
,3,36244,234750
,3,36245,1020
,3,36246,1025
,3,36247,1030
,3,36248,1020
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226100
,3,36252,6515
,3,36244,230605
,4,1,208635
,4,2,655
,4,3,208245
,4,4,3630
,4,5,230705
,4,6,208920
,4,7,6525
,4,8,208690
,4,9,209005
,4,10,230835
,4,11,208305
,4,12,208370
,4,13,231185
,4,14,208615
,4,15,231185
,4,16,208920
,4,17,208515
,4,18,208920
,4,19,212740
,4,20,4250
,4,21,230705
,4,22,6610
,4,23,209220
,4,24,211955
,4,25,6920
,4,26,209135
,4,27,208645
,4,28,212175
,4,29,6510
,4,30,208250
,4,31,9370
,4,32,209160
,4,33,208590
,4,34,208245
,4,35,208920
,4,36,209005
,4,37,4230
,4,38,209190
,4,39,655
,4,40,212070
,4,41,208370
,4,42,211385
,4,43,208895
,4,44,208895
,4,45,212405
,4,46,208895
,4,47,990
,4,48,230705
,4,49,208590
,4,50,208590
,4,51,230625
,4,52,208590
,4,53,208590
,4,54,208590
,4,55,231185
,4,56,208615
,4,57,231185
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,4,11,275
,4,12,280
,4,1,560
,3,36259,425
,3,36261,535
,3,36244,234750
,3,36245,1050
,3,36246,1055
,3,36248,1050
,3,36249,1060
,3,36250,340
,6,1,85
,3,36251,225525
,3,36244,230605
,4,7,225020
,4,8,208965
,4,9,230615
,3,36251,225530
,3,36244,230605
,4,7,225020
,4,8,208965
,4,9,335
,2,35551,425
,3,36254,6955
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,828,895
,2,71,3165
,2,72,2570
,2,402,2980
,2,472,3650
,2,473,3655
,2,251,7490
,2,148,1585
,2,562,7410
,2,563,7430
,2,294,7450
,2,564,7470
,2,359,2730
,2,352,2695
,2,432,3150
,2,418,3065
,2,395,2940
,2,456,3280
,2,278,2780
,2,175,1735
,2,191,1815
,2,327,2550
,2,35551,430
,3,36244,216885
,3,36259,425
,3,36260,216970
,3,36244,234750
,3,36259,1070
,3,36261,895
,4,2,204050
,3,36262,216890
,3,36260,216875
,3,36244,234750
,3,36245,1090
,3,36246,1095
,3,36247,1100
,3,36248,1090
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226075
,3,36252,6495
,3,36244,230605
,4,1,208635
,4,2,208730
,4,3,4195
,4,4,209110
,4,5,208525
,4,6,231170
,4,7,208615
,4,8,231170
,3,36244,4430
,4,5,270
,4,6,4500
,3,36244,225020
,3,36244,225020
,3,36244,225020
,3,36244,225020
,2,35551,425
,3,36254,5610
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,5615
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,828,820
,2,71,2670
,2,72,2900
,2,73,3310
,2,447,3230
,2,247,2115
,2,341,2635
,2,35551,430
,3,36244,216955
,4,1,1115
,4,2,1110
,4,3,1120
,4,4,1105
,4,5,95
,3,36259,425
,3,36260,216965
,3,36244,234750
,3,36259,1135
,3,36261,820
,3,36244,234750
,3,36245,1160
,3,36246,1165
,3,36247,1170
,3,36248,1160
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225970
,3,36252,6465
,3,36244,230605
,4,1,208635
,4,2,4175
,4,3,209110
,4,4,208525
,4,5,4175
,4,6,209190
,4,7,231135
,4,8,208615
,4,9,231135
,3,36244,4430
,4,5,270
,2,828,855
,2,71,2455
,2,73,2225
,2,35551,430
,3,36244,216930
,3,36259,1175
,3,36261,855
,3,36244,234750
,3,36245,1190
,3,36246,1195
,3,36247,1200
,3,36248,1190
,3,36249,1205
,3,36250,340
,6,1,85
,3,36251,226205
,3,36252,8485
,3,36244,230605
,4,1,208635
,4,2,208730
,4,3,655
,4,4,4250
,4,5,209190
,4,6,208525
,4,7,231225
,4,8,208615
,4,9,231225
,3,36244,4430
,4,5,270
,4,6,4500
,3,36251,225535
,3,36244,230605
,4,1,225020
,4,2,1205
,4,3,1205
,4,4,208590
,2,35551,425
,3,36254,7910
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,828,840
,2,73,2050
,2,71,2075
,2,222,1980
,2,451,3250
,2,251,2135
,2,278,2275
,2,175,3135
,2,153,1610
,2,304,2410
,2,343,2645
,2,455,3270
,2,294,2360
,2,372,2805
,2,224,1990
,2,444,3215
,2,206,1900
,2,194,1840
,2,321,2510
,2,261,2185
,2,457,3285
,2,306,2420
,2,412,3030
,2,390,2910
,2,318,2495
,2,309,2435
,2,431,3140
,2,308,2430
,2,380,2850
,2,229,2015
,2,400,2965
,2,163,1670
,2,338,2620
,2,239,2070
,2,320,2505
,2,161,1660
,2,35551,430
,3,36244,211195
,4,1,340
,3,36259,425
,3,36260,217075
,3,36244,234750
,3,36259,1215
,3,36261,840
,3,36260,217055
,3,36244,234750
,3,36245,1235
,3,36246,1240
,3,36247,1245
,3,36248,1235
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226460
,3,36252,11750
,3,36244,230605
,4,1,208635
,4,2,11410
,4,3,230705
,4,4,11760
,4,5,208690
,4,6,4890
,4,7,209265
,4,8,231370
,4,9,208615
,4,10,231370
,4,11,208730
,4,12,208590
,4,13,208590
,4,14,208730
,4,15,11425
,4,16,230705
,4,17,10495
,4,18,230705
,4,19,208560
,4,20,10490
,4,21,230705
,4,22,11455
,4,23,209190
,4,24,208645
,4,25,10490
,4,26,230780
,4,27,10495
,4,28,230780
,4,29,4155
,4,30,209160
,4,31,11455
,4,32,209190
,4,33,4195
,4,34,209190
,4,35,208590
,4,36,4195
,4,37,209190
,4,38,4195
,4,39,209190
,4,40,208245
,4,41,4195
,4,42,209190
,4,43,208245
,4,44,4195
,4,45,209190
,4,46,208245
,4,47,4195
,4,48,209190
,4,49,208245
,4,50,4195
,4,51,209190
,4,52,208245
,4,53,4195
,4,54,209190
,4,55,208645
,4,56,4195
,4,57,209190
,4,58,208590
,4,59,208790
,4,60,4195
,4,61,209190
,4,62,208590
,4,63,208790
,4,64,4195
,4,65,209190
,4,66,208590
,4,67,208370
,4,68,10780
,4,69,209085
,4,70,10760
,4,71,209220
,4,72,10790
,4,73,209160
,4,74,208590
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10275
,4,12,11765
,4,13,11770
,4,14,285
,4,15,11775
,4,16,11780
,2,35551,425
,3,36254,10885
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,10875
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,10890
,3,36255,440
,6,64,11735
,3,36244,6290
,4,1,11740
,2,828,880
,2,71,2520
,2,448,3235
,2,356,2715
,2,72,3075
,2,409,3015
,2,376,2830
,2,73,1820
,2,429,3125
,2,236,2055
,2,260,2180
,2,385,2880
,2,323,2525
,2,427,3115
,2,434,3160
,2,302,2400
,2,310,2440
,2,471,3370
,2,301,2395
,2,192,1825
,2,255,2155
,2,279,2280
,2,160,1655
,2,159,1645
,2,287,2320
,2,155,1620
,2,399,2960
,2,407,3005
,2,303,2405
,2,408,3010
,2,285,2310
,2,314,2470
,2,152,1605
,2,269,2230
,2,373,2815
,2,208,1910
,2,313,2465
,2,211,1925
,2,234,2040
,2,232,2030
,2,259,2175
,2,167,1690
,2,354,2705
,2,297,2375
,2,464,3325
,2,217,1955
,2,428,3120
,2,35551,430
,3,36244,217330
,4,1,95
,4,2,95
,4,3,95
,4,4,95
,4,5,95
,4,6,95
,4,7,95
,4,8,95
,4,9,95
,3,36259,425
,3,36260,217335
,3,36244,234750
,3,36259,1265
,3,36261,880
,3,36244,234750
,3,36245,1285
,3,36246,1290
,3,36247,1295
,3,36248,1285
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226505
,3,36252,12430
,3,36244,230605
,4,1,208635
,4,2,12060
,4,3,231410
,4,4,231415
,4,5,208615
,4,6,231415
,4,7,12275
,4,8,230705
,4,9,12440
,4,10,208690
,3,36244,4430
,4,5,270
,4,6,4500
,0,44,110
,2,35551,425
,3,36254,12375
,3,36255,204865
,6,64,85
,3,36244,675
,4,1,4220
,0,44,110
,2,35551,425
,3,36254,12385
,3,36255,204865
,6,64,85
,3,36244,675
,4,1,4220
,0,44,110
,2,35551,425
,3,36254,12395
,3,36255,204865
,6,64,85
,3,36244,675
,4,1,4220
,0,44,110
,2,35551,425
,3,36254,12405
,3,36255,204865
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12190
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,0,44,110
,2,35551,425
,3,36254,12415
,3,36255,204865
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12200
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12210
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12220
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12520
,3,36255,204870
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12520
,3,36255,204875
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12520
,3,36255,204880
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12520
,3,36255,204885
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12520
,3,36255,204890
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12520
,3,36255,204895
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12520
,3,36255,204900
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12520
,3,36255,204905
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12520
,3,36255,204910
,6,64,85
,3,36244,675
,4,1,4220
,2,842,211460
,2,132,110
,2,35664,110
,2,35911,110
,2,828,845
,2,454,3265
,2,403,2985
,2,71,2975
,2,286,2315
,2,35551,430
,3,36244,214495
,4,1,204780
,3,36259,425
,3,36260,217380
,3,36244,234750
,3,36259,1390
,3,36261,845
,3,36260,214490
,3,36244,234750
,3,36245,1410
,3,36246,660
,3,36248,1410
,3,36249,335
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,430
,3,36254,1405
,3,36255,560
,6,64,85
,3,36244,675
,4,1,660
,4,2,1420
,3,36259,430
,3,36261,1415
,3,36244,234750
,2,35551,425
,3,36253,12015
,3,36254,11830
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,11835
,2,35551,425
,3,36253,12025
,3,36254,11935
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,11945
,3,36259,430
,3,36261,1415
,3,36260,217345
,3,36244,234750
,3,36245,1445
,3,36246,660
,3,36248,1445
,3,36249,1450
,3,36250,340
,6,1,1455
,3,36251,225225
,3,36244,230605
,4,1,1450
,4,2,208590
,4,3,208590
,4,4,230625
,3,36259,430
,3,36261,1460
,4,2,214510
,3,36262,214505
,3,36244,234750
,2,35551,425
,2,34299,430
,3,36254,1440
,3,36255,560
,6,64,85
,3,36244,675
,4,1,660
,4,2,1455
,3,36244,590
,4,1,595
,4,2,595
,3,36244,590
,4,1,595
,4,2,595
,3,36245,655
,3,36246,660
,3,36248,1480
,3,36249,335
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,1490
,3,36254,1475
,3,36255,560
,6,64,85
,3,36244,675
,4,1,660
,4,2,1495
,2,828,1485
,2,35551,430
,3,36244,214535
,3,36259,1490
,3,36261,1485
,3,36244,234750
,3,36245,655
,3,36246,1505
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225200
,3,36244,230605
,4,1,208590
,2,35551,425
,2,34299,1515
,3,36254,1500
,3,36255,560
,6,64,85
,3,36244,675
,4,1,1505
,4,2,1520
,2,828,1510
,2,35551,430
,3,36244,214545
,3,36259,1515
,3,36261,1510
,3,36244,234750
,3,36245,655
,3,36246,1530
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225205
,3,36244,230605
,4,1,208590
,2,35551,425
,2,34299,1540
,3,36254,1525
,3,36255,560
,6,64,85
,3,36244,675
,4,1,1530
,4,2,1545
,2,828,1535
,2,35551,430
,3,36244,214555
,3,36259,1540
,3,36261,1535
,3,36244,234750
,4,1,1555
,4,1,845
,3,36245,655
,3,36246,660
,3,36248,1570
,3,36249,335
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,70
,3,36254,1565
,3,36255,560
,6,64,85
,3,36244,675
,4,1,660
,4,2,1580
,3,36261,1575
,3,36244,234750
,2,35551,425
,3,36253,7125
,3,36254,6775
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,4225
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4235
,2,35551,425
,3,36254,8965
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,8925
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11215
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,8375
,3,36254,7615
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,4485
,3,36254,4345
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11135
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,9940
,3,36254,9305
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,10745
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11875
,3,36255,440
,6,64,85
,3,36244,675
,4,1,11885
,2,35551,425
,3,36253,8785
,3,36254,8655
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11115
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,1070
,3,36314,204045
,3,36244,204050
,2,35551,425
,3,36254,11105
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,8050
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,4775
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4785
,2,35551,425
,3,36254,8010
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,6635
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9710
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,3640
,3,36314,203735
,3,36244,3645
,2,35551,425
,3,36254,11335
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11810
,3,36255,440
,6,64,85
,3,36244,675
,4,1,11820
,2,35551,425
,3,36254,9650
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,6340
,3,36254,5245
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8895
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,8905
,1,0,12660
,1,1,12775
,1,2,12855
,1,3,12890
,1,4,12925
,1,5,12960
,1,6,12995
,1,7,13030
,1,8,13065
,1,9,13100
,1,10,13135
,1,11,13170
,1,12,13205
,1,13,13240
,1,14,13275
,1,15,13310
,1,16,13345
,1,17,13380
,1,18,13415
,1,19,13450
,1,20,13485
,1,21,13520
,1,22,13555
,1,23,13590
,1,24,13625
,1,25,13660
,1,26,13695
,1,27,695
,1,29,775
,1,34,790
,1,39,705
,1,44,830
,1,49,925
,1,54,835
,1,59,920
,1,64,710
,1,69,700
,1,74,765
,1,91,780
,1,92,690
,1,93,955
,1,94,740
,1,95,810
,1,96,785
,1,97,905
,1,98,760
,1,99,16140
,1,100,16395
,1,101,16425
,1,102,16450
,1,103,16470
,1,104,16495
,1,105,16275
,1,106,16310
,1,107,16005
,1,108,16375
,1,109,18525
,1,110,18565
,1,111,18590
,1,112,18615
,1,113,18640
,1,114,18665
,1,115,18690
,1,116,18715
,1,117,18740
,1,118,18765
,1,119,18790
,1,120,18815
,1,121,18840
,1,122,18865
,1,123,18890
,1,124,18915
,1,125,18940
,1,126,18965
,1,127,18990
,1,128,19015
,1,129,19040
,1,130,19060
,1,131,19085
,1,132,18530
,1,133,18535
,1,134,19180
,1,135,24925
,1,136,24960
,1,137,24995
,1,138,25030
,1,139,25065
,1,140,25100
,1,141,25135
,1,142,25170
,1,143,25205
,1,144,25240
,1,145,25275
,1,146,25310
,1,147,25345
,1,148,25380
,1,149,25415
,1,150,25450
,1,151,25485
,1,152,25520
,1,153,25555
,1,154,25590
,1,155,25625
,1,156,25660
,1,157,25695
,1,158,25730
,1,159,25765
,1,160,25845
,1,161,25865
,1,162,25890
,1,163,29565
,1,164,30125
,1,165,30150
,1,166,30175
,1,167,30200
,1,168,30220
,1,169,30240
,1,170,30265
,1,171,30290
,1,172,30315
,1,173,203880
,1,174,203885
,1,175,203890
,1,176,203895
,1,177,203900
,1,178,203905
,1,179,203910
,1,180,203915
,1,181,203920
,1,182,203925
,1,183,203930
,1,184,203935
,1,185,203940
,1,186,203945
,1,187,203950
,1,188,203955
,1,189,203960
,1,190,203965
,1,191,203970
,1,192,203975
,1,193,203980
,1,194,203985
,1,195,203990
,1,196,203995
,1,197,204000
,1,198,204005
,1,199,204010
,1,200,204015
,1,201,204020
,1,202,204025
,1,203,204030
,2,35551,3640
,3,36314,204035
,3,36244,3645
,2,35551,425
,3,36254,6665
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6675
,2,35551,425
,3,36254,3715
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3395
,2,35551,425
,3,36254,10765
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,7190
,3,36254,6925
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9790
,3,36255,440
,6,64,85
,3,36244,675
,4,1,9800
,2,35551,425
,3,36254,9445
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8070
,3,36255,440
,6,64,85
,3,36244,675
,4,1,8080
,2,35551,425
,3,36253,9945
,3,36254,9465
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,3940
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3460
,2,35551,425
,3,36254,5685
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5695
,2,35551,425
,3,36253,4460
,3,36254,4015
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3485
,2,35551,425
,3,36253,6370
,3,36254,5335
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,6645
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,7115
,3,36254,6735
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,3910
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3450
,2,35551,425
,3,36254,9660
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9435
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,10320
,3,36255,440
,6,64,85
,3,36244,675
,4,1,10330
,2,35551,425
,3,36254,12250
,3,36255,440
,6,64,85
,3,36244,675
,4,1,12260
,2,35551,425
,3,36253,7195
,3,36254,6935
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,10960
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11075
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,5620
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5630
,2,35756,85
,2,491,203805
,2,1404,203810
,2,36369,10285
,2,36370,10295
,2,35551,203815
,3,36244,203820
,2,35551,425
,3,36253,8445
,3,36254,7850
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,8565
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9620
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,4285
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,6605
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6615
,2,35551,425
,3,36254,6655
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8945
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,9970
,3,36254,9770
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,2,34299,8480
,3,36254,8060
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12095
,3,36255,440
,6,64,85
,3,36244,675
,4,1,12105
,2,35551,425
,3,36254,5640
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8615
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,8440
,3,36254,7830
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,7840
,2,35551,425
,3,36254,9750
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11245
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,6585
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6595
,2,35551,425
,3,36254,9545
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11265
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6315
,3,36254,5125
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5135
,2,35551,425
,3,36254,4170
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4180
,2,35551,425
,3,36254,3835
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3425
,2,35551,425
,3,36253,4490
,3,36254,4355
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,10380
,3,36255,440
,6,64,85
,3,36244,675
,4,1,10390
,2,35551,425
,3,36253,11745
,3,36254,11355
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,10755
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,2,34299,9960
,3,36254,9575
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8515
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11895
,3,36255,440
,6,64,85
,3,36244,675
,4,1,11905
,2,35551,425
,3,36253,8350
,3,36254,7550
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,7560
,2,35551,425
,3,36254,10725
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,8430
,3,36254,7790
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,7800
,2,35551,425
,3,36254,11845
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,6765
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8935
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,10795
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,7990
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9385
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9740
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11285
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,9935
,3,36254,9285
,3,36255,440
,6,64,85
,3,36244,675
,4,1,9295
,2,35551,425
,3,36254,11275
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9810
,3,36255,440
,6,64,85
,3,36244,675
,4,1,9820
,2,35551,425
,3,36254,7545
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,10975
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9415
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,10845
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8030
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,7540
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,8585
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12230
,3,36255,440
,6,64,85
,3,36244,675
,4,1,12240
,2,35551,425
,3,36254,4000
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3480
,2,35551,425
,3,36254,6685
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,3850
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3430
,2,35551,425
,3,36254,4795
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4805
,2,35551,425
,3,36254,3790
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3410
,2,35551,425
,3,36253,6440
,3,36254,5590
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,3880
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3440
,2,35551,425
,3,36254,5065
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5075
,2,35551,425
,3,36254,8845
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,8360
,3,36254,7590
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,8885
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9830
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,4060
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3500
,2,35551,425
,3,36254,11085
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,8695
,3,36255,440
,6,64,85
,3,36244,675
,4,1,8705
,2,35551,425
,3,36254,8975
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9680
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11295
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,10985
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,8455
,3,36254,7870
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,8855
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6355
,3,36254,5285
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,4045
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3495
,2,35551,425
,3,36254,9590
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9730
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,4325
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,8475
,3,36254,7920
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,5540
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11225
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,8780
,3,36254,8525
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,7100
,3,36254,6555
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9345
,3,36255,440
,6,64,85
,3,36244,675
,4,1,9355
,2,35551,425
,3,36254,5025
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5035
,2,35551,425
,3,36254,5175
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5185
,2,35551,425
,3,36254,4335
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9640
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,4135
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3515
,2,35551,425
,3,36253,8365
,3,36254,7595
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,7600
,2,35551,425
,3,36254,11095
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9720
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,4315
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9335
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,3820
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3420
,2,35551,425
,3,36254,8645
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11195
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,12355
,3,36254,12085
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11125
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,3640
,3,36244,3645
,2,35551,425
,3,36254,11865
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,7150
,3,36254,6825
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9025
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,4470
,3,36254,4075
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3530
,2,35551,425
,3,36253,10445
,3,36254,10340
,3,36255,440
,6,64,85
,3,36244,675
,4,1,10350
,2,35551,425
,3,36254,9325
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,8410
,3,36254,7735
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,7740
,2,35551,425
,3,36253,7205
,3,36254,6965
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6975
,2,35551,425
,3,36254,8995
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11315
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9245
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,5215
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,6350
,3,36254,5265
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5275
,2,35551,425
,3,36254,11065
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11035
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11175
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,8380
,3,36254,7625
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,4190
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4200
,2,35551,425
,3,36253,8465
,3,36254,7890
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9375
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,7970
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,7950
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11045
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,5395
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5405
,1,1,208110
,1,2,208110
,2,35551,3640
,3,36314,217995
,3,36244,3645
,2,35551,425
,3,36254,5535
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,8555
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11255
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11205
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,1,0,10505
,1,1,10510
,1,2,10515
,1,3,10520
,1,4,10525
,1,5,10530
,1,6,10535
,2,35551,1070
,3,36314,10500
,3,36244,198805
,2,35551,425
,3,36254,9455
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12175
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,4295
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4305
,2,35551,425
,3,36254,7940
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9035
,3,36255,440
,6,64,85
,3,36244,675
,4,1,9045
,2,35551,425
,3,36254,8040
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,8450
,3,36254,7860
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9630
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,10910
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11005
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,5145
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8865
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,3760
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3525
,1,0,10550
,1,1,10555
,1,2,10560
,1,3,10565
,1,4,10570
,1,5,10575
,1,6,10580
,1,7,10585
,1,8,10590
,1,9,10595
,1,10,10600
,1,11,10605
,2,35551,1070
,3,36314,10545
,3,36244,198805
,2,35551,425
,3,36253,7200
,3,36254,6945
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9525
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,3745
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3520
,2,35551,425
,2,34299,9195
,3,36254,8815
,3,36255,440
,6,64,85
,3,36244,675
,4,1,8825
,4,2,8840
,2,35551,425
,3,36254,6700
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,2,34299,9955
,3,36254,9510
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9275
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,9975
,3,36254,9850
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,7715
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,10835
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,5295
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5305
,2,35551,425
,3,36254,10865
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9535
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,2,34299,9950
,3,36254,9475
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8020
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,10735
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9780
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,6445
,3,36254,5600
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,5225
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,8385
,3,36254,7655
,3,36255,440
,6,64,8390
,3,36244,6290
,4,1,8395
,2,35551,425
,3,36254,11345
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,12350
,3,36254,12055
,3,36255,440
,6,64,85
,3,36244,675
,4,1,12065
,2,35551,425
,3,36254,11375
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9315
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,5565
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,7110
,3,36254,6725
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,6450
,3,36254,5675
,3,36255,440
,6,64,85
,3,36244,675
,4,1,1025
,2,35551,425
,3,36254,6625
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9405
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,7160
,3,36254,6845
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,6855
,2,35551,425
,3,36253,4465
,3,36254,4030
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3490
,2,35551,425
,3,36254,11305
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,3775
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3405
,2,35551,425
,3,36254,10925
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6395
,3,36254,5435
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,10805
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,7155
,3,36254,6835
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11385
,3,36255,440
,6,64,85
,3,36244,675
,4,1,11395
,2,35551,425
,2,34299,3570
,3,36254,3550
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3560
,4,2,3575
,2,35551,425
,3,36253,4475
,3,36254,4090
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3535
,2,35551,425
,3,36253,7140
,3,36254,6805
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6815
,2,35551,425
,3,36253,9965
,3,36254,9760
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,10825
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,2,34299,3640
,3,36254,3625
,3,36255,560
,6,64,85
,3,36244,675
,4,1,3635
,4,2,3645
,2,35551,425
,3,36254,12075
,3,36255,440
,6,64,85
,3,36244,675
,4,1,1290
,2,35551,425
,3,36254,5515
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5525
,2,35551,425
,3,36253,7185
,3,36254,6915
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,3925
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3455
,2,35551,425
,3,36254,4245
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4255
,2,35551,425
,3,36254,8955
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,4455
,3,36254,3985
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3475
,2,35551,425
,3,36253,8415
,3,36254,7750
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,7760
,2,659,95
,2,660,70
,2,35551,430
,3,36244,204040
,2,35551,425
,3,36254,11235
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,7675
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,12135
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,10950
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6330
,3,36254,5195
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9690
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,5045
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5055
,2,35551,425
,3,36254,7980
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,8535
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8545
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,3640
,3,36314,203795
,3,36244,3645
,2,35551,425
,3,36254,8985
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,3685
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3385
,2,35551,425
,3,36254,10995
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9490
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,6565
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9610
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,6430
,3,36254,5570
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,4480
,3,36254,4265
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4275
,2,35551,425
,3,36254,7930
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,10775
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9555
,3,36255,440
,6,64,85
,3,36244,675
,4,1,9565
,2,35551,425
,3,36254,3730
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3400
,2,35551,425
,3,36254,5085
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5095
,1,0,10665
,1,1,10670
,1,2,10675
,1,3,10680
,1,4,10570
,1,5,10685
,1,6,10690
,1,7,10695
,1,8,10700
,1,9,10705
,1,10,10710
,1,11,10715
,2,35551,1070
,3,36314,10660
,3,36244,198805
,2,35551,425
,3,36253,7175
,3,36254,6895
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,10455
,3,36254,10360
,3,36255,440
,6,64,85
,3,36244,675
,4,1,10370
,2,35551,425
,2,34299,6320
,3,36254,5155
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5165
,4,2,6325
,2,35551,425
,3,36253,6345
,3,36254,5255
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11145
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,11155
,2,35551,425
,3,36254,8000
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,6310
,3,36254,5105
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,12370
,3,36254,12185
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,7105
,3,36254,6705
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,6715
,2,35551,425
,3,36253,12365
,3,36254,12165
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,2,34299,3610
,3,36254,3600
,3,36255,560
,6,64,85
,3,36244,675
,4,1,660
,4,2,3615
,2,35551,425
,3,36254,4210
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,10815
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11165
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11185
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,10940
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9255
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,5545
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5555
,2,35551,425
,3,36253,8470
,3,36254,7900
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,5205
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,6335
,3,36254,5235
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,3895
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3445
,2,35551,3640
,3,36314,203740
,3,36244,3645
,2,35551,425
,3,36254,3955
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3465
,2,35551,425
,3,36254,4865
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4875
,2,35551,425
,3,36253,7170
,3,36254,6885
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,4150
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4160
,2,35551,425
,3,36254,10935
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9005
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,4105
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3505
,2,35551,425
,3,36254,9700
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,3805
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3415
,2,35551,425
,3,36254,7695
,3,36255,440
,6,64,85
,3,36244,675
,4,1,7705
,2,35551,425
,3,36254,9265
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11955
,3,36255,440
,6,64,85
,3,36244,675
,4,1,11965
,2,35551,425
,3,36254,11015
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11365
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,10965
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11855
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,8370
,3,36254,7610
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,7960
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,430
,3,36244,195565
,2,35551,425
,3,36253,7165
,3,36254,6865
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,6875
,2,35551,425
,3,36254,8665
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11025
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,6695
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,11915
,3,36255,440
,6,64,85
,3,36244,675
,4,1,11925
,2,35551,425
,3,36253,7130
,3,36254,6785
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,4120
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3510
,2,35551,425
,3,36254,10785
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8575
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8875
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9395
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8915
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,8420
,3,36254,7770
,3,36255,440
,6,64,85
,3,36244,675
,4,1,7780
,2,35551,425
,3,36253,8435
,3,36254,7810
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,7820
,2,35551,425
,3,36254,6575
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9840
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,6435
,3,36254,5580
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,10915
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,10855
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36253,7120
,3,36254,6745
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6755
,2,35551,425
,3,36253,8355
,3,36254,7570
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,7580
,2,35551,425
,3,36254,3865
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3435
,2,35551,425
,3,36254,12115
,3,36255,440
,6,64,85
,3,36244,675
,4,1,12125
,2,35551,425
,3,36253,12360
,3,36254,12145
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,12155
,2,35551,425
,3,36253,8405
,3,36254,7725
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,1,1,655
,1,2,655
,2,35551,1070
,3,36314,7525
,3,36244,198805
,2,35551,425
,3,36253,7180
,3,36254,6905
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,8460
,3,36254,7880
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9500
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,7635
,3,36255,440
,6,64,85
,3,36244,675
,4,1,7645
,2,35551,425
,3,36254,5115
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,7685
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,5575
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36254,9670
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9365
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11325
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,430
,3,36315,203800
,3,36244,455
,2,35551,425
,3,36254,9425
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,1,0,10620
,1,1,10625
,1,2,10630
,1,3,10635
,1,4,10640
,1,5,10645
,1,6,10650
,2,35551,1070
,3,36314,10615
,3,36244,198805
,2,35551,425
,3,36253,4450
,3,36254,3970
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3470
,2,35551,425
,3,36254,3700
,3,36255,440
,6,64,85
,3,36244,675
,4,1,3390
,2,35551,425
,3,36254,9015
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,2,35551,425
,3,36253,7135
,3,36254,6795
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,9600
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,11055
,3,36255,440
,6,64,85
,3,36244,6290
,4,1,4220
,3,36244,204190
,4,12,5740
,4,13,214560
,4,18,5835
,4,19,214565
,4,21,7010
,4,22,214570
,4,24,4230
,4,25,214575
,4,27,9130
,4,28,214580
,4,33,9110
,4,34,214585
,4,42,214590
,4,43,214595
,4,45,11625
,4,46,214600
,4,54,8130
,4,55,214605
,4,57,4350
,4,58,214610
,4,60,11590
,4,61,214615
,4,63,9310
,4,64,214620
,4,69,8740
,4,70,214625
,4,72,10750
,4,73,214630
,4,78,11880
,4,79,214635
,4,81,8660
,4,82,214640
,4,84,11460
,4,85,214645
,4,90,11580
,4,91,214650
,4,99,990
,4,100,214655
,4,102,11450
,4,103,214660
,4,105,11575
,4,106,214665
,4,108,8285
,4,109,214670
,4,114,4780
,4,115,214675
,4,120,8265
,4,121,214680
,4,123,11985
,4,124,214685
,4,132,11465
,4,133,214690
,4,138,6640
,4,139,214695
,4,147,9715
,4,148,214700
,4,150,11420
,4,151,214705
,4,156,8150
,4,157,214710
,4,162,5720
,4,163,214715
,4,165,11685
,4,166,214720
,4,171,11815
,4,172,214725
,4,177,9655
,4,178,214730
,4,189,5250
,4,190,214735
,4,201,9100
,4,202,214740
,4,207,12215
,4,208,214745
,4,210,10405
,4,211,214750
,4,219,6670
,4,220,214755
,4,225,4390
,4,226,214760
,4,228,5780
,4,229,214765
,4,234,3720
,4,235,214770
,4,237,10770
,4,238,214775
,4,243,7050
,4,244,214780
,4,255,9795
,4,256,214785
,4,261,9450
,4,262,214790
,4,270,8750
,4,271,214795
,4,273,8075
,4,274,214800
,4,288,9470
,4,289,214805
,4,291,5820
,4,292,214810
,4,297,3945
,4,298,214815
,4,300,5690
,4,301,214820
,4,306,4020
,4,307,214825
,4,309,5340
,4,310,214830
,4,312,6650
,4,313,214835
,4,318,6740
,4,319,214840
,4,327,3915
,4,328,214845
,4,333,9665
,4,334,214850
,4,348,5800
,4,349,214855
,4,351,9440
,4,352,214860
,4,369,211980
,4,370,214865
,4,372,10325
,4,373,214870
,4,381,8220
,4,382,214875
,4,399,12255
,4,400,214880
,4,423,7055
,4,424,214885
,4,426,11500
,4,427,214890
,4,429,11560
,4,430,214895
,4,465,5625
,4,466,214900
,4,468,11415
,4,469,214905
,4,471,5840
,4,472,214910
,4,474,11410
,4,475,214915
,4,477,9890
,4,478,214920
,4,480,12295
,4,481,214925
,4,498,8185
,4,499,214930
,4,501,214935
,4,502,214940
,4,510,8570
,4,511,214945
,4,519,9625
,4,520,214950
,4,522,4290
,4,523,214955
,4,528,6610
,4,529,214960
,4,531,6660
,4,532,214965
,4,537,5905
,4,538,214970
,4,540,9120
,4,541,214975
,4,543,9775
,4,544,214980
,4,546,8065
,4,547,214985
,4,549,12100
,4,550,214990
,4,555,5645
,4,556,214995
,4,558,8620
,4,559,215000
,4,570,8180
,4,571,215005
,4,582,9755
,4,583,215010
,4,594,11640
,4,595,215015
,4,603,5790
,4,604,215020
,4,606,6590
,4,607,215025
,4,609,9550
,4,610,215030
,4,612,11650
,4,613,215035
,4,621,5130
,4,622,215040
,4,624,4175
,4,625,215045
,4,642,5850
,4,643,215050
,4,645,3840
,4,646,215055
,4,648,4360
,4,649,215060
,4,651,10385
,4,652,215065
,4,654,9870
,4,655,215070
,4,657,11690
,4,658,215075
,4,660,10760
,4,661,215080
,4,672,9580
,4,673,215085
,4,687,5735
,4,688,215090
,4,705,8520
,4,706,215095
,4,729,1570
,4,730,215100
,4,738,11900
,4,739,215105
,4,741,8105
,4,742,215110
,4,744,10730
,4,745,215115
,4,756,8170
,4,757,215120
,4,759,11850
,4,760,215125
,4,765,6770
,4,766,215130
,4,768,12290
,4,769,215135
,4,774,9060
,4,775,215140
,4,777,5815
,4,778,215145
,4,780,10800
,4,781,215150
,4,783,8255
,4,784,215155
,4,786,9390
,4,787,215160
,4,804,9745
,4,805,215165
,4,810,8755
,4,811,215170
,4,813,11660
,4,814,215175
,4,816,9290
,4,817,215180
,4,822,11655
,4,823,215185
,4,825,4395
,4,826,215190
,4,840,9815
,4,841,215195
,4,843,8100
,4,844,215200
,4,864,11510
,4,865,215205
,4,876,9420
,4,877,215210
,4,885,10850
,4,886,215215
,4,894,8275
,4,895,215220
,4,906,8095
,4,907,215225
,4,918,8590
,4,919,215230
,4,927,12235
,4,928,215235
,4,945,4005
,4,946,215240
,4,948,6690
,4,949,215245
,4,957,3855
,4,958,215250
,4,960,4800
,4,961,215255
,4,963,5920
,4,964,215260
,4,996,3795
,4,997,215265
,4,999,5895
,4,1000,215270
,4,1017,3885
,4,1018,215275
,4,1026,215280
,4,1027,215285
,4,1029,12275
,4,1030,215290
,4,1032,215295
,4,1033,215300
,4,1044,8745
,4,1045,215305
,4,1059,5755
,4,1060,215310
,4,1062,5070
,4,1063,215315
,4,1065,9075
,4,1066,215320
,4,1068,8115
,4,1069,215325
,4,1071,5860
,4,1072,215330
,4,1086,9095
,4,1087,215335
,4,1092,5765
,4,1093,215340
,4,1095,9835
,4,1096,215345
,4,1107,4065
,4,1108,215350
,4,1110,11565
,4,1111,215355
,4,1134,8700
,4,1135,215360
,4,1140,9135
,4,1141,215365
,4,1143,9685
,4,1144,215370
,4,1146,5715
,4,1147,215375
,4,1149,11665
,4,1150,215380
,4,1158,11515
,4,1159,215385
,4,1179,8195
,4,1180,215390
,4,1182,9080
,4,1183,215395
,4,1185,5290
,4,1186,215400
,4,1188,4050
,4,1189,215405
,4,1191,9595
,4,1192,215410
,4,1194,9735
,4,1195,215415
,4,1197,5770
,4,1198,215420
,4,1200,9865
,4,1201,215425
,4,1203,4330
,4,1204,215430
,4,1209,7925
,4,1210,215435
,4,1215,5870
,4,1216,215440
,4,1218,11630
,4,1219,215445
,4,1221,8530
,4,1222,215450
,4,1230,6560
,4,1231,215455
,4,1236,9350
,4,1237,215460
,4,1242,5030
,4,1243,215465
,4,1254,5180
,4,1255,215470
,4,1263,4340
,4,1264,215475
,4,1299,9645
,4,1300,215480
,4,1302,4140
,4,1303,215485
,4,1305,8120
,4,1306,215490
,4,1317,11570
,4,1318,215495
,4,1332,9725
,4,1333,215500
,4,1335,12205
,4,1336,215505
,4,1341,4320
,4,1342,215510
,4,1344,9340
,4,1345,215515
,4,1353,3825
,4,1354,215520
,4,1356,8650
,4,1357,215525
,4,1359,11615
,4,1360,215530
,4,1362,12280
,4,1363,215535
,4,1380,11585
,4,1381,215540
,4,1389,6990
,4,1390,215545
,4,1392,11870
,4,1393,215550
,4,1395,6830
,4,1396,215555
,4,1401,9160
,4,1402,215560
,4,1404,4080
,4,1405,215565
,4,1407,10345
,4,1408,215570
,4,1410,9330
,4,1411,215575
,4,1413,8160
,4,1414,215580
,4,1416,6970
,4,1417,215585
,4,1419,9145
,4,1420,215590
,4,1422,11675
,4,1423,215595
,4,1434,9250
,4,1435,215600
,4,1455,5220
,4,1456,215605
,4,1464,5270
,4,1465,215610
,4,1473,5845
,4,1474,215615
,4,1476,11555
,4,1477,215620
,4,1479,11540
,4,1480,215625
,4,1494,11605
,4,1495,215630
,4,1497,8135
,4,1498,215635
,4,1503,4195
,4,1504,215640
,4,1506,8205
,4,1507,215645
,4,1509,9380
,4,1510,215650
,4,1515,8245
,4,1516,215655
,4,1518,8235
,4,1519,215660
,4,1521,11545
,4,1522,215665
,4,1524,5805
,4,1525,215670
,4,1527,5915
,4,1528,215675
,4,1533,5400
,4,1534,215680
,4,1551,12310
,4,1552,215685
,4,1560,5865
,4,1561,215690
,4,1563,8560
,4,1564,215695
,4,1569,11645
,4,1570,215700
,4,1587,5810
,4,1588,215705
,4,1608,11620
,4,1609,215710
,4,1614,11430
,4,1615,215715
,4,1626,9460
,4,1627,215720
,4,1632,12180
,4,1633,215725
,4,1638,4300
,4,1639,215730
,4,1647,8230
,4,1648,215735
,4,1662,9040
,4,1663,215740
,4,1668,8280
,4,1669,215745
,4,1671,8190
,4,1672,215750
,4,1680,8720
,4,1681,215755
,4,1683,9635
,4,1684,215760
,4,1701,11470
,4,1702,215765
,4,1707,11525
,4,1708,215770
,4,1728,12195
,4,1729,215775
,4,1731,5150
,4,1732,215780
,4,1749,9085
,4,1750,215785
,4,1761,3765
,4,1762,215790
,4,1764,11435
,4,1765,215795
,4,1770,7060
,4,1771,215800
,4,1773,9530
,4,1774,215805
,4,1779,3750
,4,1780,215810
,4,1788,8820
,4,1789,215815
,4,1791,7000
,4,1792,215820
,4,1797,9515
,4,1798,215825
,4,1803,9280
,4,1804,215830
,4,1806,9885
,4,1807,215835
,4,1809,7720
,4,1810,215840
,4,1812,4385
,4,1813,215845
,4,1824,10840
,4,1825,215850
,4,1836,5785
,4,1837,215855
,4,1839,5300
,4,1840,215860
,4,1842,10870
,4,1843,215865
,4,1845,9540
,4,1846,215870
,4,1866,4380
,4,1867,215875
,4,1869,9480
,4,1870,215880
,4,1875,8725
,4,1876,215885
,4,1878,8270
,4,1879,215890
,4,1881,9070
,4,1882,215895
,4,1884,10740
,4,1885,215900
,4,1896,5725
,4,1897,215905
,4,1902,9785
,4,1903,215910
,4,1911,5900
,4,1912,215915
,4,1923,5730
,4,1924,215920
,4,1926,5230
,4,1927,215925
,4,1929,8145
,4,1930,215930
,4,1932,11350
,4,1933,215935
,4,1935,12060
,4,1936,215940
,4,1950,11380
,4,1951,215945
,4,1953,9320
,4,1954,215950
,4,1956,5710
,4,1957,215955
,4,1959,5875
,4,1960,215960
,4,1965,6730
,4,1966,215965
,4,1986,5680
,4,1987,215970
,4,1989,6630
,4,1990,215975
,4,1995,9410
,4,1996,215980
,4,2001,7020
,4,2002,215985
,4,2013,4035
,4,2014,215990
,4,2016,11670
,4,2017,215995
,4,2019,3780
,4,2020,216000
,4,2028,11480
,4,2029,216005
,4,2061,5440
,4,2062,216010
,4,2070,10810
,4,2071,216015
,4,2076,7015
,4,2077,216020
,4,2082,11390
,4,2083,216025
,4,2085,3555
,4,2086,216030
,4,2091,4095
,4,2092,216035
,4,2094,6810
,4,2095,216040
,4,2097,9765
,4,2098,216045
,4,2100,10830
,4,2101,216050
,4,2109,3630
,4,2110,216055
,4,2118,12080
,4,2119,216060
,4,2124,5520
,4,2125,216065
,4,2127,7045
,4,2128,216070
,4,2136,3930
,4,2137,216075
,4,2151,4250
,4,2152,216080
,4,2154,9125
,4,2155,216085
,4,2166,3990
,4,2167,216090
,4,2169,8165
,4,2170,216095
,4,2175,11425
,4,2176,216100
,4,2178,11635
,4,2179,216105
,4,2184,7680
,4,2185,216110
,4,2190,12140
,4,2191,216115
,4,2193,9065
,4,2194,216120
,4,2196,11495
,4,2197,216125
,4,2202,5200
,4,2203,216130
,4,2217,12315
,4,2218,216135
,4,2232,9695
,4,2233,216140
,4,2235,5050
,4,2236,216145
,4,2238,8250
,4,2239,216150
,4,2241,8540
,4,2242,216155
,4,2244,8550
,4,2245,216160
,4,2247,11455
,4,2248,216165
,4,2250,9875
,4,2251,216170
,4,2256,9140
,4,2257,216175
,4,2274,3690
,4,2275,216180
,4,2277,5855
,4,2278,216185
,4,2280,11520
,4,2281,216190
,4,2283,9495
,4,2284,216195
,4,2289,6570
,4,2290,216200
,4,2292,9615
,4,2293,216205
,4,2295,5880
,4,2296,216210
,4,2301,4270
,4,2302,216215
,4,2304,8225
,4,2305,216220
,4,2307,10780
,4,2308,216225
,4,2319,9560
,4,2320,216230
,4,2325,3735
,4,2326,216235
,4,2328,5090
,4,2329,216240
,4,2331,11445
,4,2332,216245
,4,2349,7035
,4,2350,216250
,4,2352,212095
,4,2353,216255
,4,2355,10365
,4,2356,216260
,4,2361,5160
,4,2362,216265
,4,2364,5775
,4,2365,216270
,4,2382,5260
,4,2383,216275
,4,2385,5745
,4,2386,216280
,4,2406,11595
,4,2407,216285
,4,2409,8260
,4,2410,216290
,4,2412,5110
,4,2413,216295
,4,2418,12305
,4,2419,216300
,4,2421,7005
,4,2422,216305
,4,2424,12300
,4,2425,216310
,4,2433,4375
,4,2434,216315
,4,2436,3605
,4,2437,216320
,4,2439,8730
,4,2440,216325
,4,2442,9115
,4,2443,216330
,4,2457,4215
,4,2458,216335
,4,2460,10820
,4,2461,216340
,4,2463,11600
,4,2464,216345
,4,2481,11610
,4,2482,216350
,4,2493,11490
,4,2494,216355
,4,2496,9260
,4,2497,216360
,4,2499,5550
,4,2500,216365
,4,2502,5910
,4,2503,216370
,4,2505,8210
,4,2506,216375
,4,2511,11990
,4,2512,216380
,4,2514,5210
,4,2515,216385
,4,2520,5240
,4,2521,216390
,4,2535,3900
,4,2536,216395
,4,2538,8215
,4,2539,216400
,4,2544,8735
,4,2545,216405
,4,2568,3960
,4,2569,216410
,4,2571,4870
,4,2572,216415
,4,2583,5760
,4,2584,216420
,4,2586,7030
,4,2587,216425
,4,2589,4155
,4,2590,216430
,4,2595,11485
,4,2596,216435
,4,2625,9150
,4,2626,216440
,4,2637,4110
,4,2638,216445
,4,2649,11980
,4,2650,216450
,4,2658,9705
,4,2659,216455
,4,2661,3810
,4,2662,216460
,4,2664,7700
,4,2665,216465
,4,2673,9270
,4,2674,216470
,4,2679,11960
,4,2680,216475
,4,2691,11530
,4,2692,216480
,4,2700,11695
,4,2701,216485
,4,2709,11505
,4,2710,216490
,4,2712,11860
,4,2713,216495
,4,2718,8125
,4,2719,216500
,4,2745,4400
,4,2746,216505
,4,2748,8240
,4,2749,216510
,4,2751,9860
,4,2752,216515
,4,2754,7025
,4,2755,216520
,4,2757,8670
,4,2758,216525
,4,2784,11535
,4,2785,216530
,4,2787,6995
,4,2788,216535
,4,2793,11920
,4,2794,216540
,4,2805,12225
,4,2806,216545
,4,2811,5750
,4,2812,216550
,4,2814,6790
,4,2815,216555
,4,2817,4125
,4,2818,216560
,4,2829,10790
,4,2830,216565
,4,2832,5830
,4,2833,216570
,4,2835,8580
,4,2836,216575
,4,2838,9090
,4,2839,216580
,4,2841,9400
,4,2842,216585
,4,2844,9105
,4,2845,216590
,4,2847,10410
,4,2848,216595
,4,2853,7775
,4,2854,216600
,4,2871,8175
,4,2872,216605
,4,2874,6580
,4,2875,216610
,4,2877,9845
,4,2878,216615
,4,2880,5890
,4,2881,216620
,4,2883,11475
,4,2884,216625
,4,2886,10860
,4,2887,216630
,4,2889,6750
,4,2890,216635
,4,2892,7065
,4,2893,216640
,4,2901,5795
,4,2902,216645
,4,2904,8110
,4,2905,216650
,4,2907,3870
,4,2908,216655
,4,2925,12120
,4,2926,216660
,4,2928,12285
,4,2929,216665
,4,2946,8155
,4,2947,216670
,4,2949,8140
,4,2950,216675
,4,2976,7040
,4,2977,216680
,4,2979,8200
,4,2980,216685
,4,2982,4370
,4,2983,216690
,4,2985,9505
,4,2986,216695
,4,2988,7640
,4,2989,216700
,4,2991,5825
,4,2992,216705
,4,2994,5120
,4,2995,216710
,4,2997,7690
,4,2998,216715
,4,3003,5885
,4,3004,216720
,4,3006,9675
,4,3007,216725
,4,3009,9370
,4,3010,216730
,4,3012,11680
,4,3013,216735
,4,3015,9880
,4,3016,216740
,4,3021,216745
,4,3022,216750
,4,3024,9430
,4,3025,216755
,4,3030,11440
,4,3031,216760
,4,3036,3975
,4,3037,216765
,4,3039,3705
,4,3040,216770
,4,3042,9155
,4,3043,216775
,4,3045,6800
,4,3046,216780
,4,3069,9605
,4,3070,216785
,4,3072,11550
,4,3073,216790
,3,36261,1575
,3,36244,234750
,3,36251,225640
,3,36252,4495
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,230940
,4,4,208615
,4,5,230940
,4,6,208590
,4,7,4195
,4,8,209135
,4,9,208590
,4,10,4155
,4,11,209305
,4,12,230940
,4,13,208615
,4,14,230940
,4,15,208590
,4,16,4195
,4,17,209135
,4,18,208590
,4,19,4195
,4,20,209135
,4,21,4195
,4,22,209135
,4,23,208590
,4,24,4155
,4,25,209305
,4,26,230940
,4,27,208615
,4,28,230940
,4,29,4195
,4,30,209135
,4,31,208590
,4,32,4195
,4,33,209135
,4,34,4195
,4,35,209135
,4,36,208590
,4,37,4195
,4,38,209135
,4,39,4155
,4,40,209305
,4,41,4195
,4,42,209135
,4,43,4155
,4,44,209305
,4,45,230940
,4,46,208615
,4,47,230940
,3,36251,225645
,3,36252,4505
,3,36244,230605
,4,1,208635
,4,2,230945
,4,3,208615
,4,4,230945
,4,5,208590
,4,6,208590
,3,36251,225660
,3,36252,4510
,3,36244,230605
,4,1,208635
,4,2,208855
,4,3,230950
,4,4,208615
,4,5,230950
,4,6,208590
,4,7,4155
,4,8,209305
,4,9,4155
,4,10,209305
,4,11,4155
,4,12,209305
,4,13,4155
,4,14,209305
,4,15,208855
,4,16,4195
,4,17,209135
,4,18,4195
,4,19,209135
,4,20,208645
,4,21,208645
,4,22,208590
,3,36251,225670
,3,36252,4535
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,230955
,4,4,208615
,4,5,230955
,4,6,208875
,4,7,4155
,4,8,230960
,4,9,4155
,4,10,230960
,4,11,4230
,4,12,230965
,4,13,208875
,4,14,4250
,4,15,209335
,4,16,208875
,4,17,4195
,4,18,209135
,4,19,4195
,4,20,209135
,4,21,208590
,3,36251,225675
,3,36252,4540
,3,36244,230605
,4,1,208635
,4,2,4215
,4,3,209135
,4,4,4215
,4,5,209135
,4,6,208590
,4,7,230970
,4,8,208615
,4,9,230970
,3,36251,225680
,3,36252,4545
,3,36244,230605
,4,1,208635
,4,2,4215
,4,3,209135
,4,4,4215
,4,5,209135
,4,6,208590
,4,7,230975
,4,8,208615
,4,9,230975
,3,36251,225685
,3,36252,4550
,3,36244,230605
,4,1,208635
,4,2,4215
,4,3,209135
,4,4,4215
,4,5,209135
,4,6,208590
,4,7,230980
,4,8,208615
,4,9,230980
,3,36251,225690
,3,36252,4555
,3,36244,230605
,4,1,208635
,4,2,4215
,4,3,209135
,4,4,4215
,4,5,209135
,4,6,208590
,4,7,230985
,4,8,208615
,4,9,230985
,3,36251,225695
,3,36252,4560
,3,36244,230605
,4,1,208635
,4,2,4215
,4,3,209135
,4,4,4215
,4,5,209135
,4,6,208590
,4,7,230990
,4,8,208615
,4,9,230990
,3,36251,225700
,3,36252,4565
,3,36244,230605
,4,1,208635
,4,2,4215
,4,3,209135
,4,4,4215
,4,5,209135
,4,6,4215
,4,7,209135
,4,8,208645
,4,9,230995
,4,10,208615
,4,11,230995
,4,12,208590
,3,36251,225705
,3,36252,4570
,3,36244,230605
,4,1,208635
,4,2,4215
,4,3,209135
,4,4,4215
,4,5,209135
,4,6,208590
,4,7,231000
,4,8,208615
,4,9,231000
,3,36251,225710
,3,36252,4575
,3,36244,230605
,4,1,208635
,4,2,4215
,4,3,209135
,4,4,208590
,4,5,231005
,4,6,208615
,4,7,231005
,3,36251,225715
,3,36252,4580
,3,36244,230605
,4,1,208635
,4,2,4215
,4,3,209135
,4,4,208590
,4,5,231010
,4,6,208615
,4,7,231010
,3,36251,225720
,3,36252,4585
,3,36244,230605
,4,1,208635
,4,2,4215
,4,3,209135
,4,4,4215
,4,5,209135
,4,6,208590
,4,7,231015
,4,8,208615
,4,9,231015
,3,36251,225725
,3,36252,4590
,3,36244,230605
,4,1,208635
,4,2,4215
,4,3,209135
,4,4,4215
,4,5,209135
,4,6,4215
,4,7,209135
,4,8,208645
,4,9,231020
,4,10,208615
,4,11,231020
,4,12,208590
,3,36251,225730
,3,36252,4595
,3,36244,230605
,4,1,208635
,4,2,4215
,4,3,209135
,4,4,4215
,4,5,209135
,4,6,208590
,4,7,231025
,4,8,208615
,4,9,231025
,3,36251,225735
,3,36252,4600
,3,36244,230605
,4,1,208635
,4,2,4270
,4,3,209335
,4,4,4230
,4,5,209335
,4,6,208590
,4,7,231030
,4,8,208615
,4,9,231030
,3,36251,225745
,3,36371,220350
,3,36252,4615
,3,36244,230605
,4,1,208635
,4,2,213800
,4,3,4610
,4,4,208640
,4,5,208950
,4,6,208950
,4,7,9340
,4,8,209305
,4,9,208590
,4,10,208590
,4,11,4230
,4,12,230965
,4,13,208590
,4,14,231035
,4,15,208615
,4,16,231035
,3,36251,225765
,3,36252,4640
,3,36244,230605
,4,1,208635
,4,2,1020
,4,3,320
,4,4,1020
,4,5,208325
,4,6,213675
,4,7,4625
,4,8,208795
,4,9,208950
,4,10,9340
,4,11,209305
,4,12,208590
,4,13,231040
,4,14,208615
,4,15,231040
,4,16,208590
,4,17,208310
,4,18,230750
,4,19,195280
,4,20,230705
,4,21,213640
,4,22,4635
,4,23,208795
,4,24,208950
,4,25,9340
,4,26,209305
,4,27,208590
,4,28,208590
,4,29,208310
,3,36251,225770
,3,36252,4645
,3,36244,230605
,4,1,208635
,4,2,4230
,4,3,230965
,4,4,208590
,4,5,208720
,4,6,231045
,4,7,208615
,4,8,231045
,3,36251,225780
,3,36252,4660
,3,36244,230605
,4,1,208620
,4,2,208635
,4,3,208590
,4,4,212895
,4,5,4655
,4,6,208795
,4,7,208590
,4,8,208950
,4,9,9340
,4,10,209305
,4,11,208590
,4,12,208590
,4,13,231050
,4,14,208615
,4,15,231050
,3,36251,225785
,3,36252,4680
,3,36244,230605
,4,1,208620
,4,2,208635
,4,3,208590
,4,4,212895
,4,5,4675
,4,6,208795
,4,7,208590
,4,8,208950
,4,9,9340
,4,10,209305
,4,11,208590
,4,12,208590
,4,13,231055
,4,14,208615
,4,15,231055
,3,36251,225800
,3,36252,4685
,3,36244,230605
,4,1,208620
,4,2,208635
,4,3,208920
,4,4,209005
,4,5,208590
,4,6,208590
,4,7,231060
,4,8,208615
,4,9,231060
,3,36251,225805
,3,36252,4690
,3,36244,230605
,4,1,208620
,4,2,208635
,4,3,208590
,4,4,208590
,4,5,231065
,4,6,208615
,4,7,231065
,3,36251,225810
,3,36252,4695
,3,36244,230605
,4,1,208635
,4,2,4270
,4,3,209135
,4,4,231070
,4,5,208615
,4,6,231070
,3,36251,225815
,3,36252,4700
,3,36244,230605
,4,1,208635
,4,2,4195
,4,3,209335
,4,4,231075
,4,5,208615
,4,6,231075
,3,36251,225820
,3,36252,4705
,3,36244,230605
,4,1,208635
,4,2,4230
,4,3,209135
,4,4,231080
,4,5,208615
,4,6,231080
,3,36251,225830
,3,36371,195095
,3,36252,4710
,3,36244,230605
,4,1,208635
,4,2,1020
,4,3,320
,4,4,1190
,4,5,208740
,4,6,4910
,4,7,208350
,4,8,4155
,4,9,209305
,4,10,4230
,4,11,209135
,4,12,208875
,4,13,231085
,4,14,208615
,4,15,231085
,3,36251,225835
,3,36252,4715
,3,36244,230605
,4,1,208635
,4,2,1020
,4,3,320
,4,4,1190
,4,5,208740
,4,6,4910
,4,7,208350
,4,8,4155
,4,9,209305
,4,10,4230
,4,11,209135
,4,12,208875
,4,13,231090
,4,14,208615
,4,15,231090
,3,36251,225860
,3,36371,208190
,3,36252,4740
,3,36244,230605
,4,1,208635
,4,2,21455
,4,3,230720
,4,4,208360
,4,5,208220
,4,6,1020
,4,7,320
,4,8,1020
,4,9,208325
,4,10,231095
,4,11,208615
,4,12,231095
,4,13,21455
,4,14,230705
,4,15,4300
,4,16,231100
,4,17,208450
,4,18,203810
,4,19,4720
,4,20,208250
,4,21,9350
,4,22,209305
,4,23,208590
,4,24,1020
,4,25,320
,4,26,1020
,4,27,208325
,4,28,212420
,4,29,4730
,4,30,208640
,4,31,4230
,4,32,209135
,4,33,208950
,4,34,208590
,4,35,208950
,4,36,9340
,4,37,209305
,4,38,208590
,4,39,213010
,4,40,4735
,4,41,208250
,4,42,9340
,4,43,209305
,4,44,208590
,3,36251,225865
,3,36252,4750
,3,36244,230605
,4,1,208635
,4,2,203810
,4,3,4745
,4,4,208250
,4,5,9350
,4,6,209305
,4,7,208590
,4,8,231105
,4,9,208615
,4,10,231105
,3,36245,655
,3,36246,660
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,85
,3,36254,3540
,3,36255,560
,6,64,85
,3,36244,675
,4,1,660
,3,36245,3555
,3,36246,3560
,3,36247,3565
,3,36248,3555
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226285
,3,36252,9980
,3,36244,230605
,4,1,208635
,4,2,212095
,4,3,230705
,4,4,212205
,4,5,9990
,4,6,208690
,4,7,208590
,4,8,231265
,4,9,208615
,4,10,231265
,3,36244,4430
,4,5,270
,2,828,2740
,2,842,85
,2,34297,85
,2,35808,85
,2,35599,85
,2,35465,85
,2,35887,85
,2,35535,85
,2,35713,2690
,2,35611,2060
,2,35743,3335
,2,35850,1800
,2,35811,1745
,2,35557,2480
,2,35702,1755
,2,35551,70
,3,36315,3580
,3,36244,3585
,3,36259,3570
,3,36261,2740
,3,36260,216795
,3,36244,234750
,3,36261,350
,3,36260,217105
,3,36244,234750
,3,36264,340
,3,36244,575
,4,3,3595
,3,36244,225610
,3,36245,3605
,3,36246,660
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,2,35551,430
,3,36244,3620
,3,36259,3610
,3,36261,2990
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36244,234750
,3,36245,3630
,3,36246,3635
,3,36248,3630
,3,36249,1060
,3,36250,340
,6,1,85
,3,36251,225520
,3,36244,230605
,4,7,225020
,4,8,208965
,4,9,230610
,2,402,2980
,2,472,3650
,2,473,3655
,2,35551,70
,3,36244,3660
,3,36259,3640
,3,36261,2765
,3,36260,216865
,3,36244,234750
,2,35551,425
,3,36254,7365
,3,36255,560
,6,64,85
,3,36244,6290
,4,1,7375
,2,35551,425
,3,36254,7380
,3,36255,560
,6,64,85
,3,36244,6290
,4,1,7390
,3,36261,350
,3,36260,217050
,3,36244,234750
,3,36264,3670
,3,36245,3675
,3,36244,575
,4,3,3680
,3,36244,225610
,3,36245,3690
,3,36246,3385
,3,36247,3695
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,3705
,3,36246,3390
,3,36247,3710
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,3,36245,3720
,3,36246,3395
,3,36247,3725
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,3,36245,3735
,3,36246,3400
,3,36247,3740
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,36245,3750
,3,36246,3520
,3,36247,3755
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,3,36245,3765
,3,36246,3525
,3,36247,3770
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,3780
,3,36246,3405
,3,36247,3785
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,3795
,3,36246,3410
,3,36247,3800
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,3810
,3,36246,3415
,3,36247,3815
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,3825
,3,36246,3420
,3,36247,3830
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,3840
,3,36246,3425
,3,36247,3845
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,3855
,3,36246,3430
,3,36247,3860
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,3870
,3,36246,3435
,3,36247,3875
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,3885
,3,36246,3440
,3,36247,3890
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,3,36245,3900
,3,36246,3445
,3,36247,3905
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,3,36245,3915
,3,36246,3450
,3,36247,3920
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,3930
,3,36246,3455
,3,36247,3935
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,3945
,3,36246,3460
,3,36247,3950
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,3960
,3,36246,3465
,3,36247,3965
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,3975
,3,36246,3470
,3,36247,3980
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,3,36245,3990
,3,36246,3475
,3,36247,3995
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,3,36245,4005
,3,36246,3480
,3,36247,4010
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,4020
,3,36246,3485
,3,36247,4025
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,4665
,4,6,270
,3,36245,4035
,3,36246,3490
,3,36247,4040
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,4665
,4,6,270
,3,36245,4050
,3,36246,3495
,3,36247,4055
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,4665
,4,6,270
,4,7,4500
,4,8,4515
,3,36245,4065
,3,36246,3500
,3,36247,4070
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,4665
,4,6,270
,4,7,4500
,3,36245,4080
,3,36246,3530
,3,36247,4085
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,4095
,3,36246,3535
,3,36247,4100
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,4,5,270
,3,36245,4110
,3,36246,3505
,3,36247,4115
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,3,36245,4125
,3,36246,3510
,3,36247,4130
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,3,36245,4140
,3,36246,3515
,3,36247,4145
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4430
,3,36245,4155
,3,36246,4160
,3,36247,4165
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226535
,3,36252,12510
,3,36244,230605
,4,1,208635
,4,2,231420
,4,3,208615
,4,4,231420
,4,5,208645
,4,6,1020
,4,7,320
,4,8,1235
,4,9,208560
,4,10,208645
,4,11,4350
,4,12,209135
,4,13,4360
,4,14,209135
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,4175
,3,36246,4180
,3,36247,4185
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225980
,3,36252,6470
,3,36244,230605
,4,1,208635
,4,2,231140
,4,3,208615
,4,4,231140
,4,5,21455
,4,6,230705
,4,7,208645
,4,9,208645
,4,10,208645
,3,36244,4430
,4,5,270
,3,36245,4195
,3,36246,4200
,3,36247,4205
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226085
,3,36252,6500
,3,36244,230605
,4,1,208635
,4,2,231175
,4,3,208615
,4,4,231175
,4,5,208590
,4,6,208310
,4,7,4400
,4,8,230710
,4,9,4350
,4,10,209135
,4,11,4195
,4,12,209190
,3,36244,4430
,4,5,270
,3,36245,4215
,3,36246,4220
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225255
,3,36244,230605
,4,1,4220
,4,2,208590
,3,36245,4230
,3,36246,4235
,3,36247,4240
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226540
,3,36252,12515
,3,36244,230605
,4,1,208635
,4,2,231425
,4,3,208615
,4,4,231425
,4,5,208350
,4,6,208310
,4,7,105
,4,8,115
,4,9,90
,4,10,80
,4,11,4360
,4,12,209135
,4,13,4230
,4,14,209135
,3,36244,4430
,4,5,270
,3,36245,4250
,3,36246,4255
,3,36247,4260
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229470
,3,36371,195150
,3,36252,194990
,3,36244,230605
,4,1,208635
,4,2,208350
,4,3,233835
,4,4,208615
,4,5,233835
,4,6,208310
,4,7,105
,4,8,115
,4,9,90
,4,10,80
,4,11,4360
,4,12,209135
,4,13,4230
,4,14,209135
,3,36244,4430
,4,5,270
,3,36245,4270
,3,36246,4275
,3,36247,4280
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226795
,3,36252,17100
,3,36244,230605
,4,1,208635
,4,2,4380
,4,3,230705
,4,4,17110
,4,5,208690
,4,6,231735
,4,7,208615
,4,8,231735
,4,9,4385
,4,10,230705
,4,11,17115
,4,12,208690
,4,13,4395
,4,14,230705
,4,15,17120
,4,16,208690
,4,17,213360
,4,18,17095
,4,19,208250
,4,20,9340
,4,21,209305
,4,22,208590
,3,36244,4430
,4,5,270
,3,36245,4290
,3,36246,4220
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4300
,3,36246,4305
,3,36247,4310
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227545
,3,36252,21250
,3,36244,230605
,4,1,208635
,4,2,208360
,4,3,232335
,4,4,208615
,4,5,232335
,4,6,4195
,4,7,209190
,4,8,208590
,3,36244,4430
,4,5,270
,3,36245,4320
,3,36246,4220
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4330
,3,36246,4220
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4340
,3,36246,4220
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4350
,3,36246,4220
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4360
,3,36246,4220
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,4,1,4370
,4,3,4375
,4,5,4380
,4,7,4385
,4,9,4390
,4,11,4395
,4,13,4400
,4,15,1570
,4,17,3690
,4,18,3685
,4,19,3705
,4,20,3700
,4,21,3720
,4,22,3715
,4,23,3735
,4,24,3730
,4,25,3750
,4,26,3745
,4,27,3765
,4,28,3760
,4,29,3780
,4,30,3775
,4,31,3795
,4,32,3790
,4,33,3810
,4,34,3805
,4,35,3825
,4,36,3820
,4,37,3840
,4,38,3835
,4,39,3855
,4,40,3850
,4,41,3870
,4,42,3865
,4,43,3885
,4,44,3880
,4,45,3900
,4,46,3895
,4,47,3915
,4,48,3910
,4,49,3930
,4,50,3925
,4,51,3945
,4,52,3940
,4,53,3960
,4,54,3955
,4,55,3975
,4,56,3970
,4,57,3990
,4,58,3985
,4,59,4005
,4,60,4000
,4,61,4020
,4,62,4015
,4,63,4035
,4,64,4030
,4,65,4050
,4,66,4045
,4,67,4065
,4,68,4060
,4,69,4080
,4,70,4075
,4,71,4095
,4,72,4090
,4,73,4110
,4,74,4105
,4,75,4125
,4,76,4120
,4,77,4140
,4,78,4135
,4,79,4155
,4,80,4150
,4,81,4175
,4,82,4170
,4,83,4195
,4,84,4190
,4,85,4215
,4,86,4210
,4,87,4230
,4,88,4225
,4,89,4250
,4,90,4245
,4,91,4270
,4,92,4265
,4,93,4290
,4,94,4285
,4,95,4300
,4,96,4295
,4,97,4320
,4,98,4315
,4,99,4330
,4,100,4325
,4,101,4340
,4,102,4335
,4,103,4350
,4,104,4345
,4,105,4360
,4,106,4355
,3,36244,4410
,4,3,4415
,3,36244,234750
,4,1,4420
,3,36244,4430
,4,5,4435
,3,36244,234750
,3,36245,655
,3,36246,4445
,3,36247,4425
,3,36248,320
,3,36263,3665
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225625
,3,36252,4405
,3,36244,230605
,4,1,4365
,4,2,208590
,4,3,208635
,4,4,4370
,4,5,990
,4,6,230710
,4,7,320
,4,8,230710
,4,9,208590
,4,10,4375
,4,11,990
,4,12,230710
,4,13,1050
,4,14,230710
,4,15,208590
,4,16,4380
,4,17,990
,4,18,230710
,4,19,1190
,4,20,230710
,4,21,208590
,4,22,4385
,4,23,990
,4,24,230710
,4,25,1090
,4,26,230710
,4,27,208590
,4,28,4390
,4,29,990
,4,30,230710
,4,31,1020
,4,32,230710
,4,33,208590
,4,34,4395
,4,35,990
,4,36,230710
,4,37,1160
,4,38,230710
,4,39,208590
,4,40,4400
,4,41,208590
,4,42,208590
,4,43,1570
,4,44,208590
,4,45,4375
,4,46,230710
,4,47,4375
,4,48,230710
,4,49,4420
,4,50,208690
,4,51,208590
,4,52,230935
,4,53,208615
,4,54,230935
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,2,4605
,3,36244,4410
,4,2,4620
,4,2,4630
,3,36244,4410
,3,36244,4410
,4,2,4650
,3,36244,4410
,4,2,4670
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,2,4725
,3,36244,4410
,3,36244,4410
,3,36264,4760
,3,36245,4765
,3,36244,575
,4,3,4770
,3,36244,225610
,3,36245,4780
,3,36246,4785
,3,36247,4790
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225930
,3,36252,6460
,3,36244,230605
,4,1,208635
,4,2,21455
,4,3,230720
,4,4,208360
,4,5,21455
,4,6,230720
,4,7,208385
,4,8,208590
,4,9,231125
,4,10,208680
,4,11,231125
,4,12,208590
,4,13,208590
,4,14,208590
,4,15,208590
,4,16,208680
,4,17,231130
,4,18,208615
,4,19,231130
,4,20,21455
,4,21,230720
,4,22,208220
,4,23,208590
,4,24,231130
,4,25,208615
,4,26,231130
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,3,36245,4800
,3,36246,4805
,3,36247,4810
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226010
,3,36252,6475
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,195280
,4,4,230705
,4,5,21455
,4,6,230720
,4,7,208385
,4,8,208660
,4,9,21455
,4,10,230720
,4,11,208990
,4,12,208360
,4,13,208590
,4,14,208660
,4,15,231125
,4,16,208590
,4,17,208305
,4,18,208680
,4,19,231150
,4,20,208615
,4,21,231150
,4,22,21455
,4,23,230720
,4,24,208220
,4,25,231125
,4,26,208680
,4,27,231125
,4,28,208590
,4,29,208590
,4,30,208680
,4,31,231150
,4,32,208615
,4,33,231150
,4,34,21455
,4,35,230720
,4,36,208220
,4,38,211990
,4,39,230780
,4,40,208590
,4,41,231150
,4,42,208615
,4,43,231150
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,4,11,275
,4,12,280
,3,36245,4820
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4830
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4840
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4850
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4860
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4870
,3,36246,4875
,3,36247,4880
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225905
,3,36252,6455
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,990
,4,4,230710
,4,5,212935
,4,6,4400
,4,7,230710
,4,8,208590
,4,9,990
,4,10,230710
,4,11,213680
,4,12,715
,4,13,208590
,4,14,990
,4,15,230710
,4,16,90
,4,17,208590
,4,18,990
,4,19,230710
,4,20,4820
,4,21,5720
,4,22,230710
,4,23,4830
,4,24,5725
,4,25,230710
,4,26,4840
,4,27,5730
,4,28,230710
,4,29,4850
,4,30,5735
,4,31,230710
,4,32,4860
,4,33,5740
,4,34,230710
,4,35,4375
,4,36,209145
,4,37,4780
,4,38,209245
,4,39,231120
,4,40,208615
,4,41,231120
,3,36244,4430
,3,36245,4890
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4900
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4910
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4920
,3,36246,4925
,3,36247,4930
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226165
,3,36252,7500
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,208720
,4,4,208590
,4,5,211515
,4,6,212495
,4,7,230705
,4,8,4250
,4,9,209190
,4,10,5220
,4,11,209220
,4,12,231215
,4,13,208615
,4,14,231215
,4,15,4270
,4,16,209190
,4,17,4250
,4,18,209190
,4,19,208590
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,4940
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4950
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4960
,3,36246,4965
,3,36247,4970
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227430
,3,36252,21065
,3,36244,230605
,4,1,208635
,4,2,990
,4,3,230705
,4,4,208590
,4,5,1020
,4,6,320
,4,7,1020
,4,8,208325
,4,9,212140
,4,10,230705
,4,11,211925
,4,12,21075
,4,13,208690
,4,14,208590
,4,15,5160
,4,16,231745
,4,17,21080
,4,18,208690
,4,19,211555
,4,20,231780
,4,22,213930
,4,23,231755
,4,25,213755
,4,26,231760
,4,27,4270
,4,28,231695
,4,29,4230
,4,30,231305
,4,32,5300
,4,33,231730
,4,34,232245
,4,35,208615
,4,36,232245
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,3,36245,4980
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4990
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5000
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5010
,3,36246,5015
,3,36247,5020
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227950
,3,36252,23415
,3,36244,230605
,4,1,208635
,4,2,213215
,4,3,23410
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,208590
,4,9,208720
,4,10,208590
,4,11,5010
,4,12,212720
,4,13,230705
,4,14,5210
,4,15,209085
,4,16,5010
,4,17,5340
,4,18,209160
,4,19,232675
,4,20,208615
,4,21,232675
,4,22,208590
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,36245,5030
,3,36246,5035
,3,36247,5040
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226840
,3,36252,17215
,3,36244,230605
,4,1,208635
,4,3,231890
,4,4,208615
,4,5,231890
,4,6,211705
,4,7,231895
,4,8,208720
,4,9,212830
,4,10,231900
,3,36244,4430
,4,5,270
,3,36245,5050
,3,36246,5055
,3,36247,5060
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226890
,3,36252,17335
,3,36244,230605
,4,1,208635
,4,3,232020
,4,4,208615
,4,5,232020
,4,6,212255
,4,7,231980
,4,8,208720
,4,9,213540
,4,10,231970
,3,36244,4430
,4,5,270
,3,36245,5070
,3,36246,5075
,3,36247,5080
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227470
,3,36252,21090
,3,36244,230605
,4,1,208635
,4,3,232265
,4,4,208615
,4,5,232265
,4,6,5030
,4,7,231875
,4,8,208720
,4,9,5050
,4,10,209190
,4,11,208310
,3,36244,4430
,4,5,270
,3,36245,5090
,3,36246,5095
,3,36247,5100
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226835
,3,36252,17210
,3,36244,230605
,4,1,208635
,4,2,5030
,4,3,231875
,4,4,208720
,4,5,5050
,4,6,231880
,4,7,231885
,4,8,208615
,4,9,231885
,3,36244,4430
,4,5,270
,3,36245,5110
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5120
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5130
,3,36246,5135
,3,36247,5140
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226805
,3,36252,17185
,3,36244,230605
,4,1,208635
,4,2,211785
,4,3,17150
,4,4,208795
,4,5,208950
,4,6,9340
,4,7,209160
,4,8,208590
,4,9,5160
,4,10,231745
,4,11,17195
,4,12,208690
,4,13,20520
,4,14,20520
,4,15,230705
,4,16,4175
,4,17,231750
,4,18,213930
,4,19,231755
,4,20,20530
,4,21,20530
,4,22,230705
,4,23,4175
,4,24,231750
,4,25,213755
,4,26,231760
,4,27,16550
,4,28,16550
,4,29,230705
,4,30,212145
,4,31,231765
,4,32,20525
,4,33,20525
,4,34,230705
,4,35,4175
,4,36,231750
,4,37,213030
,4,38,231770
,4,39,17655
,4,40,17655
,4,41,231775
,4,42,1020
,4,43,320
,4,44,1020
,4,45,208325
,4,46,212575
,4,47,17160
,4,48,208795
,4,49,208950
,4,50,9340
,4,51,209160
,4,52,208590
,4,53,211555
,4,54,231780
,4,55,17665
,4,56,17665
,4,57,230705
,4,58,1020
,4,59,320
,4,60,1020
,4,61,208560
,4,62,213125
,4,63,17170
,4,64,208795
,4,65,208950
,4,66,9340
,4,67,209160
,4,68,208590
,4,69,212290
,4,70,209135
,4,71,5090
,4,72,231785
,4,73,208720
,4,74,211730
,4,75,17180
,4,76,208795
,4,77,208950
,4,78,9340
,4,79,209160
,4,80,208590
,4,81,231790
,4,82,208615
,4,83,231790
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,3,36245,5150
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5160
,3,36246,5165
,3,36247,5170
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226810
,3,36252,17200
,3,36244,230605
,4,1,208635
,4,2,196255
,4,3,231795
,4,5,196260
,4,6,231800
,4,8,196265
,4,9,231805
,4,11,196270
,4,12,231810
,4,14,196275
,4,15,231815
,4,17,196280
,4,18,231820
,4,20,196285
,4,21,231825
,4,23,196290
,4,24,231830
,4,25,196295
,4,26,231835
,4,28,196300
,4,29,231840
,4,30,196305
,4,31,231845
,4,33,196310
,4,34,231850
,4,35,231855
,4,36,208615
,4,37,231855
,3,36244,4430
,3,36245,5180
,3,36246,5185
,3,36247,5190
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226870
,3,36252,17310
,3,36244,230605
,4,1,208635
,4,3,208740
,4,4,211520
,4,5,208590
,4,6,231995
,4,7,208615
,4,8,231995
,4,9,5160
,4,10,230705
,4,11,17320
,4,12,208690
,4,13,230750
,4,14,208310
,4,15,230750
,4,16,211555
,4,17,209135
,4,18,230750
,4,19,212290
,4,20,209135
,4,21,230750
,4,22,212145
,4,23,209135
,4,24,230750
,4,25,213030
,4,26,209135
,4,27,230750
,4,28,213930
,4,29,209135
,4,30,230750
,4,31,213755
,4,32,209135
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,5200
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5210
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5220
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5230
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5240
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5250
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5260
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5270
,3,36246,5275
,3,36247,5280
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226865
,3,36252,17305
,3,36244,230605
,4,1,208635
,4,2,4270
,4,3,231695
,4,4,4230
,4,5,231305
,4,6,208590
,4,8,208740
,4,9,231935
,4,10,208615
,4,11,231935
,4,12,5180
,4,13,231940
,4,14,4270
,4,15,231695
,4,16,208590
,4,17,208720
,4,18,208310
,4,19,213165
,4,20,17240
,4,21,208795
,4,22,208950
,4,23,9340
,4,24,209160
,4,25,208590
,4,27,5070
,4,28,209190
,4,29,208310
,4,30,5050
,4,31,209190
,4,32,5050
,4,33,209190
,4,34,208645
,4,35,212365
,4,36,209265
,4,37,208310
,4,38,213105
,4,39,209265
,4,40,213105
,4,41,209265
,4,42,4330
,4,43,209160
,4,44,208310
,4,45,212430
,4,46,209265
,4,47,208310
,4,48,213910
,4,49,209265
,4,50,213910
,4,51,209265
,4,52,4330
,4,53,209160
,4,54,208310
,4,55,213540
,4,56,209265
,4,57,208310
,4,58,213735
,4,59,209265
,4,60,213735
,4,61,209265
,4,62,4330
,4,63,209160
,4,64,208310
,4,65,212255
,4,66,209265
,4,67,208310
,4,68,212730
,4,69,209265
,4,70,212730
,4,71,209265
,4,72,4330
,4,73,209160
,4,74,208310
,4,75,211705
,4,76,209265
,4,77,208310
,4,78,212000
,4,79,209265
,4,80,212000
,4,81,209265
,4,82,4330
,4,83,209160
,4,84,208310
,4,85,212830
,4,86,209265
,4,87,208310
,4,88,211735
,4,89,209265
,4,90,211735
,4,91,209265
,4,92,4330
,4,93,209160
,4,94,208310
,4,96,213910
,4,97,209265
,4,98,208310
,4,99,213910
,4,100,209265
,4,101,208310
,4,102,212365
,4,103,209265
,4,104,208310
,4,105,213105
,4,106,209265
,4,107,213105
,4,108,209265
,4,109,208645
,4,110,208310
,4,111,212015
,4,112,17250
,4,113,208795
,4,114,208950
,4,115,9340
,4,116,209160
,4,117,208590
,4,119,5070
,4,120,209190
,4,121,208310
,4,122,5050
,4,123,209190
,4,124,5050
,4,125,209190
,4,126,208645
,4,127,208310
,4,128,212015
,4,129,17260
,4,130,208795
,4,131,208950
,4,132,9340
,4,133,209160
,4,134,208590
,4,136,5050
,4,137,209190
,4,138,208310
,4,139,5050
,4,140,209190
,4,141,208310
,4,142,213735
,4,143,209265
,4,144,208310
,4,145,213735
,4,146,209265
,4,147,208310
,4,148,208310
,4,149,212015
,4,150,17270
,4,151,208795
,4,152,208950
,4,153,9340
,4,154,209160
,4,155,208590
,4,157,213735
,4,158,209265
,4,159,208310
,4,160,212255
,4,161,209265
,4,162,208310
,4,163,212730
,4,164,209265
,4,165,212730
,4,166,209265
,4,167,4330
,4,168,209160
,4,169,208310
,4,170,208310
,4,171,212015
,4,172,17280
,4,173,208795
,4,174,208950
,4,175,9340
,4,176,209160
,4,177,208590
,4,179,5030
,4,180,209190
,4,181,208310
,4,182,5030
,4,183,209190
,4,184,208310
,4,185,212830
,4,186,209265
,4,187,208310
,4,188,211735
,4,189,209265
,4,190,211735
,4,191,209265
,4,192,4330
,4,193,209160
,4,194,208310
,4,195,208310
,4,196,212015
,4,197,17290
,4,198,208795
,4,199,208950
,4,200,9340
,4,201,209160
,4,202,208590
,4,204,211705
,4,205,209265
,4,206,208310
,4,207,212000
,4,208,209265
,4,209,212000
,4,210,209265
,4,211,4330
,4,212,209160
,4,213,208310
,4,214,208310
,4,215,212015
,4,216,17300
,4,217,208795
,4,218,208950
,4,219,9340
,4,220,209160
,4,221,208590
,4,223,212365
,4,224,231945
,4,225,208720
,4,226,213105
,4,227,231950
,4,228,208720
,4,229,208970
,4,230,213105
,4,231,209265
,4,232,208310
,4,233,208410
,4,234,208970
,4,235,212430
,4,236,231955
,4,237,208720
,4,238,213910
,4,239,231960
,4,240,208720
,4,241,208970
,4,242,213910
,4,243,209265
,4,244,208310
,4,245,208410
,4,246,208970
,4,247,5050
,4,248,231880
,4,249,208720
,4,250,5070
,4,251,231965
,4,252,208720
,4,253,5050
,4,254,209190
,4,255,208310
,4,256,213540
,4,257,231970
,4,258,208720
,4,259,213735
,4,260,231975
,4,261,208720
,4,262,208970
,4,263,213735
,4,264,209265
,4,265,208310
,4,266,208410
,4,267,208970
,4,268,212255
,4,269,231980
,4,270,208720
,4,271,212730
,4,272,231985
,4,273,5050
,4,274,209190
,4,275,208310
,4,276,212730
,4,277,209265
,4,278,208590
,4,279,211705
,4,280,231895
,4,281,208720
,4,282,212000
,4,283,231990
,4,285,212830
,4,286,231900
,4,287,208720
,4,288,211735
,4,289,209265
,4,291,208590
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,4,11,275
,4,12,280
,4,13,10275
,4,14,11765
,4,15,11770
,3,36245,5290
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5300
,3,36246,5305
,3,36247,5310
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226855
,3,36252,17230
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,208720
,4,4,5120
,4,5,209190
,4,6,5260
,4,7,209220
,4,8,231925
,4,9,208615
,4,10,231925
,4,11,5290
,4,12,209220
,4,13,5270
,4,14,231930
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,3,36245,5320
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5330
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5340
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5350
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5360
,3,36246,5365
,3,36247,5370
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226785
,3,36252,17050
,3,36244,230605
,4,1,208635
,4,2,212040
,4,3,17045
,4,4,208795
,4,5,208950
,4,6,9340
,4,7,209160
,4,8,208590
,4,9,4370
,4,10,231680
,4,11,17060
,4,12,208690
,4,13,211990
,4,14,230780
,4,15,5825
,4,16,231685
,4,17,231690
,4,18,208615
,4,19,231690
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,36245,5380
,3,36246,5385
,3,36247,5390
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228165
,3,36252,27845
,3,36244,230605
,4,1,208635
,4,2,213215
,4,3,27840
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,4230
,4,9,231305
,4,10,208590
,4,11,208720
,4,13,208800
,4,14,208590
,4,15,27855
,4,16,230750
,4,17,230835
,4,18,232815
,4,19,208615
,4,20,232815
,4,22,5260
,4,23,209220
,4,24,5130
,4,25,231715
,4,27,5300
,4,28,231730
,4,29,232815
,4,30,208615
,4,31,232815
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,4,11,275
,3,36245,5400
,3,36246,5405
,3,36247,5410
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226800
,3,36252,17125
,3,36244,230605
,4,1,208635
,4,2,3630
,4,3,231705
,4,4,17135
,4,5,208690
,4,6,208590
,4,7,17140
,4,8,208590
,4,9,208720
,4,10,7385
,4,11,231720
,4,12,231740
,4,13,208615
,4,14,231740
,4,15,231740
,4,16,208615
,4,17,231740
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,36245,5420
,3,36246,5425
,3,36247,5430
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226790
,3,36252,17080
,3,36244,230605
,4,1,208635
,4,2,213215
,4,3,17075
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,4270
,4,9,231695
,4,10,5400
,4,11,231700
,4,12,3630
,4,13,231705
,4,14,17090
,4,15,208690
,4,16,231465
,4,17,231710
,4,18,5130
,4,19,231715
,4,20,7385
,4,21,231720
,4,22,208305
,4,23,208680
,4,24,231725
,4,25,208615
,4,26,231725
,4,27,21455
,4,28,230720
,4,29,208220
,4,30,231465
,4,31,231465
,4,33,5300
,4,34,231730
,4,35,208305
,4,36,208680
,4,37,231725
,4,38,208615
,4,39,231725
,4,40,21455
,4,41,230720
,4,42,208220
,4,43,231725
,4,44,208615
,4,45,231725
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,3,36245,5440
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5450
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5460
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5470
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5480
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5490
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5500
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5510
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5520
,3,36246,5525
,3,36247,5530
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226045
,3,36252,6485
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,4370
,4,4,230710
,4,5,195280
,4,6,230710
,4,7,4890
,4,8,5745
,4,9,230710
,4,10,4900
,4,11,5750
,4,12,230710
,4,13,4910
,4,14,5755
,4,15,230710
,4,16,4920
,4,17,5760
,4,18,230710
,4,19,4940
,4,20,5765
,4,21,230710
,4,22,4950
,4,23,5770
,4,24,230710
,4,25,4960
,4,26,5775
,4,27,230710
,4,28,4980
,4,29,5780
,4,30,230710
,4,31,4990
,4,32,5785
,4,33,230710
,4,34,5000
,4,35,5790
,4,36,230710
,4,37,4375
,4,38,209065
,4,39,4780
,4,40,209245
,4,41,4370
,4,42,230710
,4,43,5010
,4,44,5795
,4,45,230710
,4,46,5360
,4,47,5815
,4,48,230710
,4,49,5380
,4,50,5820
,4,51,230710
,4,52,5420
,4,53,5825
,4,54,230710
,4,55,5460
,4,56,5835
,4,57,230710
,4,58,5320
,4,59,5800
,4,60,230710
,4,61,5330
,4,62,5805
,4,63,230710
,4,64,5350
,4,65,5810
,4,66,230710
,4,67,5510
,4,68,5860
,4,69,230710
,4,70,5500
,4,71,5855
,4,72,230710
,4,73,5490
,4,74,5850
,4,75,230710
,4,76,5480
,4,77,5845
,4,78,230710
,4,79,5470
,4,80,5840
,4,81,230710
,4,82,5450
,4,83,5830
,4,84,230710
,4,85,4375
,4,86,209070
,4,87,4780
,4,88,209245
,4,89,231160
,4,90,208615
,4,91,231160
,3,36244,4430
,3,36245,4890
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4910
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5550
,3,36246,5555
,3,36247,5560
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226065
,3,36252,6490
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,4395
,4,4,230710
,4,5,195280
,4,6,230710
,4,7,4890
,4,8,5865
,4,9,230710
,4,10,4910
,4,11,5870
,4,12,230710
,4,13,4375
,4,14,209115
,4,15,4780
,4,16,209245
,4,17,231165
,4,18,208615
,4,19,231165
,3,36244,4430
,3,36245,4890
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4900
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4910
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5585
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5595
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5605
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4830
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4820
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5625
,3,36246,5630
,3,36247,5635
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226090
,3,36252,6505
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,4385
,4,4,230710
,4,5,195280
,4,6,230710
,4,7,208590
,4,8,4385
,4,9,230710
,4,10,195280
,4,11,230710
,4,12,16560
,4,13,4385
,4,14,230710
,4,15,208590
,4,16,4385
,4,17,230710
,4,18,208590
,4,19,4385
,4,20,230710
,4,21,212105
,4,22,1105
,4,23,208590
,4,24,4385
,4,25,230710
,4,26,211700
,4,27,1110
,4,28,208590
,4,29,4385
,4,30,230710
,4,31,212935
,4,32,4400
,4,33,230710
,4,34,208590
,4,35,4385
,4,36,230710
,4,37,213465
,4,38,1115
,4,39,208590
,4,40,4385
,4,41,230710
,4,42,212120
,4,43,1120
,4,44,208590
,4,45,4385
,4,46,230710
,4,47,208590
,4,48,4385
,4,49,230710
,4,50,195280
,4,51,230710
,4,52,4890
,4,53,5875
,4,54,230710
,4,55,4900
,4,56,5880
,4,57,230710
,4,58,4910
,4,59,5885
,4,60,230710
,4,61,5585
,4,62,5890
,4,63,230710
,4,64,5595
,4,65,5895
,4,66,230710
,4,67,5605
,4,68,5900
,4,69,230710
,4,70,4375
,4,71,209165
,4,72,4780
,4,73,209245
,4,74,4385
,4,75,230710
,4,76,4830
,4,77,5905
,4,78,230710
,4,79,4820
,4,80,5910
,4,81,230710
,4,82,4375
,4,83,209115
,4,84,4780
,4,85,209245
,4,86,231180
,4,87,208615
,4,88,231180
,3,36244,4430
,3,36245,5645
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4890
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5660
,3,36246,5665
,3,36247,5670
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230325
,3,36252,221065
,3,36244,230605
,4,1,208555
,4,2,208635
,4,3,1020
,4,4,320
,4,5,1020
,4,6,208325
,4,7,212140
,4,8,230705
,4,9,212410
,4,10,221075
,4,11,208690
,4,12,208590
,4,13,221050
,4,14,208330
,4,15,208870
,4,16,208590
,4,17,1020
,4,18,320
,4,19,1020
,4,20,208280
,4,21,21455
,4,22,230710
,4,23,208570
,4,24,208535
,4,25,208450
,4,26,208305
,4,27,208830
,4,28,208830
,4,29,208220
,4,30,208590
,4,31,234530
,4,32,208615
,4,33,234530
,3,36244,4430
,4,5,270
,4,6,10275
,4,7,11765
,4,8,4520
,4,9,11770
,4,10,4500
,3,36245,5680
,3,36246,1025
,3,36247,1030
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,5690
,3,36246,5695
,3,36247,5700
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226105
,3,36252,6530
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,4390
,4,4,230710
,4,5,195280
,4,6,230710
,4,7,5660
,4,8,5920
,4,9,230710
,4,10,4890
,4,11,5915
,4,12,230710
,4,13,4375
,4,14,209115
,4,15,4780
,4,16,209245
,4,17,231190
,4,18,208615
,4,19,231190
,3,36244,4430
,4,1,5710
,4,3,5715
,4,5,4780
,4,6,4775
,4,7,4800
,4,8,4795
,4,9,5720
,4,10,4815
,4,11,5725
,4,12,4825
,4,13,5730
,4,14,4835
,4,15,5735
,4,16,4845
,4,17,5740
,4,18,4855
,4,19,4870
,4,20,4865
,4,21,5745
,4,22,4885
,4,23,5750
,4,24,4895
,4,25,5755
,4,26,4905
,4,27,5760
,4,28,4915
,4,29,5765
,4,30,4935
,4,31,5770
,4,32,4945
,4,33,5775
,4,34,4955
,4,35,5780
,4,36,4975
,4,37,5785
,4,38,4985
,4,39,5790
,4,40,4995
,4,41,5795
,4,42,5005
,4,43,5030
,4,44,5025
,4,45,5050
,4,46,5045
,4,47,5070
,4,48,5065
,4,49,5090
,4,50,5085
,4,51,5110
,4,52,5105
,4,53,5120
,4,54,5115
,4,55,5130
,4,56,5125
,4,57,5150
,4,58,5145
,4,59,5160
,4,60,5155
,4,61,5180
,4,62,5175
,4,63,5200
,4,64,5195
,4,65,5210
,4,66,5205
,4,67,5220
,4,68,5215
,4,69,5230
,4,70,5225
,4,71,5240
,4,72,5235
,4,73,5250
,4,74,5245
,4,75,5260
,4,76,5255
,4,77,5270
,4,78,5265
,4,79,5290
,4,80,5285
,4,81,5300
,4,82,5295
,4,83,5800
,4,84,5315
,4,85,5805
,4,86,5325
,4,87,5340
,4,88,5335
,4,89,5810
,4,90,5345
,4,91,5815
,4,92,5355
,4,93,5820
,4,94,5375
,4,95,5400
,4,96,5395
,4,97,5825
,4,98,5415
,4,99,5440
,4,100,5435
,4,101,5830
,4,102,5445
,4,103,5835
,4,104,5455
,4,105,5840
,4,106,5465
,4,107,5845
,4,108,5475
,4,109,5850
,4,110,5485
,4,111,5855
,4,112,5495
,4,113,5860
,4,114,5505
,4,115,5520
,4,116,5515
,4,117,5865
,4,118,5535
,4,119,5870
,4,120,5540
,4,121,5550
,4,122,5545
,4,123,5875
,4,124,5565
,4,125,5880
,4,126,5570
,4,127,5885
,4,128,5575
,4,129,5890
,4,130,5580
,4,131,5895
,4,132,5590
,4,133,5900
,4,134,5600
,4,135,5905
,4,136,5610
,4,137,5910
,4,138,5615
,4,139,5625
,4,140,5620
,4,141,5645
,4,142,5640
,4,143,5915
,4,144,5650
,4,145,5920
,4,146,5655
,4,147,5680
,4,148,5675
,4,149,5690
,4,150,5685
,3,36245,655
,3,36246,1165
,3,36247,1170
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,5935
,6,1,85
,3,36372,4375
,3,36373,216915
,3,36245,655
,3,36246,5945
,3,36247,5950
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,5955
,3,36374,5960
,6,1,85
,3,36251,226820
,3,36252,17205
,3,36244,230605
,4,1,208635
,4,2,196255
,4,3,231860
,4,5,196260
,4,6,231865
,4,7,231870
,4,8,208615
,4,9,231870
,3,36244,4430
,4,5,270
,3,36372,4375
,3,36373,216920
,4,1,196255
,4,4,196260
,3,36245,655
,3,36246,5970
,3,36247,5975
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,5955
,6,1,85
,3,36251,226910
,3,36252,17350
,3,36244,230605
,4,1,208635
,4,2,196255
,4,3,232045
,4,4,232050
,4,5,208615
,4,6,232050
,3,36244,4430
,3,36245,655
,3,36246,5985
,3,36247,5990
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,5955
,6,1,85
,3,36251,226895
,3,36252,17340
,3,36244,230605
,4,1,208635
,4,2,196260
,4,3,232025
,4,4,232030
,4,5,208615
,4,6,232030
,3,36244,4430
,3,36245,655
,3,36246,6000
,3,36247,6005
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,6010
,3,36374,6015
,6,1,85
,3,36251,227245
,3,36252,20555
,3,36244,230605
,4,1,208635
,4,2,196275
,4,3,232160
,4,5,196280
,4,6,232165
,4,7,232170
,4,8,208615
,4,9,232170
,3,36244,4430
,4,5,270
,3,36372,4375
,3,36373,216925
,4,1,196275
,4,4,196280
,3,36245,655
,3,36246,6025
,3,36247,6030
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,6010
,6,1,85
,3,36251,227360
,3,36252,20570
,3,36244,230605
,4,1,208635
,4,2,196275
,4,3,232205
,4,4,232210
,4,5,208615
,4,6,232210
,3,36244,4430
,3,36245,655
,3,36246,6040
,3,36247,6045
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,6010
,6,1,85
,3,36251,226875
,3,36252,17325
,3,36244,230605
,4,1,208635
,4,2,196280
,4,3,232000
,4,4,232005
,4,5,208615
,4,6,232005
,3,36244,4430
,3,36245,655
,3,36246,6055
,3,36247,6060
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,6065
,3,36374,6070
,6,1,85
,3,36251,227280
,3,36252,20565
,3,36244,230605
,4,1,208635
,4,2,196265
,4,3,232190
,4,5,196270
,4,6,232195
,4,7,232200
,4,8,208615
,4,9,232200
,3,36244,4430
,4,5,270
,3,36372,4375
,3,36373,204785
,4,1,196265
,4,4,196270
,3,36245,655
,3,36246,6080
,3,36247,6085
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,6065
,6,1,85
,3,36251,227400
,3,36252,20580
,3,36244,230605
,4,1,208635
,4,2,196265
,4,3,232225
,4,4,232230
,4,5,208615
,4,6,232230
,3,36244,4430
,3,36245,655
,3,36246,6095
,3,36247,6100
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,6065
,6,1,85
,3,36251,226900
,3,36252,17345
,3,36244,230605
,4,1,208635
,4,2,196270
,4,3,232035
,4,4,232040
,4,5,208615
,4,6,232040
,3,36244,4430
,3,36245,655
,3,36246,6110
,3,36247,6115
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,6120
,3,36374,6125
,6,1,85
,3,36251,227260
,3,36252,20560
,3,36244,230605
,4,1,208635
,4,2,196285
,4,3,232175
,4,5,196290
,4,6,232180
,4,7,232185
,4,8,208615
,4,9,232185
,3,36244,4430
,4,5,270
,4,1,196285
,4,4,196290
,3,36245,655
,3,36246,6135
,3,36247,6140
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,6120
,6,1,85
,3,36251,226885
,3,36252,17330
,3,36244,230605
,4,1,208635
,4,2,196290
,4,3,232010
,4,4,232015
,4,5,208615
,4,6,232015
,3,36244,4430
,3,36245,655
,3,36246,6150
,3,36247,6155
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,6120
,6,1,85
,3,36251,227375
,3,36252,20575
,3,36244,230605
,4,1,208635
,4,2,196285
,4,3,232215
,4,4,232220
,4,5,208615
,4,6,232220
,3,36244,4430
,3,36245,655
,3,36246,6165
,3,36247,6170
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,6175
,3,36374,6180
,6,1,85
,3,36251,227435
,3,36252,21085
,3,36244,230605
,4,1,208635
,4,2,196295
,4,3,232250
,4,5,196300
,4,6,232255
,4,7,232260
,4,8,208615
,4,9,232260
,3,36244,4430
,4,5,270
,4,1,196295
,4,4,196300
,3,36245,655
,3,36246,6190
,3,36247,6195
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,6175
,6,1,85
,3,36251,227475
,3,36252,21095
,3,36244,230605
,4,1,208635
,4,2,196295
,4,3,232270
,4,4,232275
,4,5,208615
,4,6,232275
,3,36244,4430
,3,36245,655
,3,36246,6205
,3,36247,6210
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,6175
,6,1,85
,3,36251,226845
,3,36252,17220
,3,36244,230605
,4,1,208635
,4,2,196300
,4,3,231905
,4,4,231910
,4,5,208615
,4,6,231910
,3,36244,4430
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,3,36374,6220
,6,1,85
,4,1,196305
,4,4,196310
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,6235
,3,36247,6240
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226850
,3,36252,17225
,3,36244,230605
,4,1,208635
,4,2,196310
,4,3,231915
,4,4,231920
,4,5,208615
,4,6,231920
,3,36244,4430
,3,36245,655
,3,36246,325
,3,36247,330
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,1095
,3,36247,1100
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,6260
,4,1,6265
,4,3,6270
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,6285
,3,36247,6275
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225890
,3,36252,6255
,3,36244,230605
,4,1,5705
,4,2,208590
,4,3,208635
,4,4,5710
,4,5,5720
,4,6,230710
,4,7,208590
,4,8,5715
,4,9,5725
,4,10,230710
,4,11,208590
,4,12,4870
,4,13,209150
,4,14,4395
,4,15,230710
,4,16,5925
,4,18,208590
,4,19,208590
,4,20,4395
,4,21,230710
,4,22,4395
,4,23,230710
,4,25,6265
,4,26,208690
,4,27,208590
,4,28,4395
,4,29,230710
,4,30,195280
,4,31,230710
,4,32,16560
,4,33,4395
,4,34,230710
,4,35,208590
,4,36,4370
,4,37,230710
,4,38,195280
,4,39,230710
,4,40,4370
,4,41,230710
,4,42,16560
,4,43,231110
,4,44,5160
,4,45,230710
,4,46,196255
,4,47,196260
,4,48,196265
,4,49,196270
,4,50,196275
,4,51,196280
,4,52,196285
,4,53,196290
,4,54,196295
,4,55,196300
,4,56,196305
,4,57,196310
,4,58,4375
,4,59,209165
,4,60,4890
,4,61,5930
,4,63,208590
,4,64,212145
,4,65,5940
,4,67,208590
,4,68,212730
,4,69,5965
,4,71,208590
,4,72,212255
,4,73,5980
,4,75,208590
,4,76,213930
,4,77,5995
,4,79,208590
,4,80,213105
,4,81,6020
,4,83,208590
,4,84,212365
,4,85,6035
,4,87,208590
,4,88,213030
,4,89,6050
,4,91,208590
,4,92,213735
,4,93,6075
,4,95,208590
,4,96,213540
,4,97,6090
,4,99,208590
,4,100,213755
,4,101,6105
,4,103,208590
,4,104,212430
,4,105,6130
,4,107,208590
,4,108,213910
,4,109,6145
,4,111,208590
,4,112,211555
,4,113,6160
,4,115,208590
,4,116,212000
,4,117,6185
,4,119,208590
,4,120,211705
,4,121,6200
,4,123,208590
,4,124,212290
,4,125,6215
,4,127,208590
,4,128,211735
,4,129,6225
,4,131,208590
,4,132,212830
,4,133,6230
,4,135,208590
,4,136,4375
,4,137,209075
,4,138,4800
,4,139,209245
,4,140,4370
,4,141,230710
,4,142,6245
,4,144,208590
,4,145,208590
,4,146,4370
,4,147,230710
,4,148,208590
,4,149,5520
,4,150,209150
,4,151,5550
,4,152,209150
,4,153,4385
,4,154,230710
,4,155,6250
,4,157,208590
,4,158,208590
,4,159,4385
,4,160,230710
,4,161,4385
,4,162,230710
,4,163,6270
,4,164,208690
,4,165,208590
,4,166,5625
,4,167,209150
,4,168,4390
,4,169,230710
,4,170,195280
,4,171,230710
,4,172,4390
,4,173,230710
,4,174,16560
,4,175,230780
,4,176,4390
,4,177,230710
,4,178,5680
,4,179,230710
,4,180,208590
,4,181,5690
,4,182,209150
,4,183,231115
,4,184,208615
,4,185,231115
,3,36259,425
,3,36260,213980
,3,36244,234750
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,2,828,2950
,2,34338,85
,2,34339,85
,2,34340,85
,2,34341,85
,2,34342,85
,2,34343,85
,2,34344,85
,2,34345,85
,2,34346,85
,2,34347,85
,2,34348,85
,2,34349,85
,2,71,196145
,2,35581,196150
,2,35697,196155
,2,35603,196160
,2,35926,196165
,2,35768,196170
,2,35624,196175
,2,35754,196180
,2,35891,196185
,2,35852,196190
,2,35894,196195
,2,35637,196200
,2,35922,196205
,2,35468,196210
,2,35553,196215
,2,35495,196220
,2,35610,196225
,2,35501,196230
,2,35716,196235
,2,35551,70
,3,36315,196240
,3,36244,196245
,3,36259,6320
,3,36261,2950
,4,2,196320
,3,36262,196315
,3,36244,234750
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,3,6520
,4,1,6525
,3,36244,4410
,3,36264,6540
,3,36245,6545
,3,36244,575
,4,3,6550
,3,36244,225610
,3,36245,6560
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6570
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6580
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6590
,3,36246,6595
,3,36247,6600
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227525
,3,36252,21245
,3,36244,230605
,4,1,208635
,4,2,208720
,4,3,208450
,4,6,208720
,4,7,208310
,4,8,208590
,4,9,208880
,4,10,208515
,4,13,232330
,4,14,208615
,4,15,232330
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,36245,6610
,3,36246,6615
,3,36247,6620
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227520
,3,36375,21205
,3,36252,21210
,3,36244,230605
,4,1,208635
,4,2,208730
,4,3,655
,4,4,232315
,4,5,208615
,4,6,232315
,4,9,208720
,4,10,6990
,4,11,232320
,4,12,208590
,4,13,208720
,4,14,655
,4,15,208590
,4,16,6615
,4,17,208720
,4,18,6990
,4,19,232320
,4,20,6990
,4,21,232320
,4,22,21455
,4,23,230720
,4,24,208830
,4,25,21455
,4,26,230785
,4,27,6615
,4,28,6615
,4,29,6590
,4,30,232325
,4,31,208720
,4,32,21455
,4,33,230705
,4,34,208645
,4,35,6580
,4,36,209085
,4,37,6570
,4,38,209220
,4,39,208730
,4,40,230750
,4,41,21220
,4,42,208775
,4,43,3630
,4,44,231705
,4,45,21225
,4,46,208690
,4,47,21455
,4,48,230725
,4,49,208730
,4,50,230750
,4,51,21230
,4,52,208775
,4,53,208305
,4,54,208370
,4,55,230835
,4,56,208305
,4,57,208370
,4,58,232315
,4,59,208615
,4,60,232315
,4,61,208515
,4,62,21455
,4,63,230780
,4,64,655
,4,65,655
,4,66,208590
,4,67,231515
,4,68,231515
,4,69,21235
,4,70,208775
,4,71,231455
,4,72,208305
,4,73,208680
,4,74,232315
,4,75,208615
,4,76,232315
,4,77,208220
,4,78,230750
,4,79,208350
,4,80,21240
,4,81,208775
,4,82,230835
,4,83,208305
,4,84,208370
,4,85,232315
,4,86,208615
,4,87,232315
,4,88,208515
,4,89,208590
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4525
,4,10,4530
,4,11,275
,4,12,280
,4,13,10275
,4,14,11765
,3,36245,6630
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6640
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6650
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6660
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6670
,3,36246,6675
,3,36247,6680
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229180
,3,36252,30715
,3,36244,230605
,4,1,208635
,4,2,208370
,4,3,230750
,4,4,230835
,4,5,208305
,4,6,208370
,4,7,233615
,4,8,208615
,4,9,233615
,4,10,208220
,4,11,233615
,4,12,208615
,4,13,233615
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4530
,4,10,275
,4,11,280
,4,12,10275
,3,36245,6690
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4890
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4900
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6710
,3,36246,6715
,3,36247,6720
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227510
,3,36252,21200
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,21195
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,212740
,4,9,4250
,4,10,209190
,4,11,232300
,4,12,208615
,4,13,232300
,4,14,21455
,4,15,230720
,4,16,208570
,4,17,6630
,4,18,232305
,4,19,6610
,4,20,232310
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,6730
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6740
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6750
,3,36246,6755
,3,36247,6760
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228465
,3,36252,28730
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,28725
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,4270
,4,9,231695
,4,10,3630
,4,11,231705
,4,12,208680
,4,13,28740
,4,14,208690
,4,15,231455
,4,16,208680
,4,17,209005
,4,18,231455
,4,19,208305
,4,20,208680
,4,21,233155
,4,22,208615
,4,23,233155
,4,24,208220
,4,25,208590
,4,26,233155
,4,27,208615
,4,28,233155
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4530
,3,36245,6770
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6780
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6790
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6800
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6810
,3,36246,6815
,3,36247,6820
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229175
,3,36252,30710
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,30700
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,21455
,4,9,233600
,4,10,208570
,4,11,4195
,4,12,209190
,4,13,208590
,4,14,4195
,4,15,209190
,4,16,208590
,4,17,208220
,4,18,208370
,4,19,208515
,4,20,208450
,4,21,208220
,4,22,208370
,4,23,208515
,4,24,208450
,4,25,30705
,4,26,208250
,4,27,208220
,4,28,233605
,4,29,208615
,4,30,233605
,4,31,208245
,4,32,208590
,4,33,208515
,4,34,208920
,4,35,6650
,4,36,209080
,4,37,208830
,4,38,6670
,4,39,233610
,4,40,208830
,4,41,21455
,4,42,230785
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,4530
,4,10,275
,3,36245,6830
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6840
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6850
,3,36246,6855
,3,36247,6860
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227735
,3,36252,22245
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,22230
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,4270
,4,9,231695
,4,10,21455
,4,11,230720
,4,12,4300
,4,13,232470
,4,14,1020
,4,15,320
,4,16,1020
,4,17,208325
,4,18,212895
,4,19,22240
,4,20,208795
,4,21,208950
,4,22,9340
,4,23,209160
,4,24,208590
,4,25,208590
,4,26,208660
,4,27,4270
,4,28,209190
,4,29,4375
,4,30,232475
,4,31,22255
,4,32,208690
,4,33,3630
,4,34,231705
,4,35,22260
,4,36,208690
,4,37,208590
,4,38,208720
,4,39,230750
,4,40,208590
,4,41,230625
,4,42,208590
,4,43,208310
,4,44,208305
,4,45,208370
,4,46,230835
,4,47,208305
,4,48,208370
,4,49,232480
,4,50,208615
,4,51,232480
,4,52,208515
,4,53,231515
,4,54,230625
,4,55,208590
,4,56,208720
,4,57,208305
,4,58,208680
,4,59,231475
,4,60,208305
,4,61,208680
,4,62,232480
,4,63,208615
,4,64,232480
,4,65,208220
,4,66,208590
,4,67,232480
,4,68,208615
,4,69,232480
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10275
,4,12,11765
,4,13,11770
,3,36245,6870
,3,36246,6875
,3,36247,6880
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228120
,3,36252,27295
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,27280
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,4270
,4,9,231695
,4,10,21455
,4,11,230720
,4,12,208570
,4,13,1020
,4,14,320
,4,15,1020
,4,16,208325
,4,17,212895
,4,18,27290
,4,19,208795
,4,20,208950
,4,21,9340
,4,22,209160
,4,23,208590
,4,24,208590
,4,25,208660
,4,26,4270
,4,27,209190
,4,28,208590
,4,29,208720
,4,30,230750
,4,31,208590
,4,32,230625
,4,33,208590
,4,34,208305
,4,35,208370
,4,36,232785
,4,37,208615
,4,38,232785
,4,39,208515
,4,40,231515
,4,41,230625
,4,42,208590
,4,43,208305
,4,44,208680
,4,45,232785
,4,46,208615
,4,47,232785
,4,48,208220
,4,49,232785
,4,50,208615
,4,51,232785
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,3,36245,6890
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6900
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6910
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6920
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6930
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6940
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6950
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6960
,3,36246,4220
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6970
,3,36246,6975
,3,36247,6980
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226145
,3,36252,7235
,3,36244,230605
,4,1,208555
,4,2,208635
,4,3,208590
,4,4,4375
,4,5,230710
,4,6,195280
,4,7,230710
,4,8,16560
,4,9,4375
,4,10,230710
,4,11,208590
,4,12,4375
,4,13,230710
,4,14,6960
,4,15,7065
,4,16,230710
,4,17,4375
,4,18,209185
,4,19,4780
,4,20,209245
,4,22,208800
,4,23,208590
,4,24,208870
,4,25,7215
,4,26,208925
,4,27,4375
,4,28,230710
,4,29,195280
,4,30,230710
,4,31,4890
,4,32,4890
,4,33,6995
,4,34,230710
,4,35,7245
,4,36,208650
,4,37,4900
,4,38,4900
,4,39,7000
,4,40,230710
,4,41,7250
,4,42,208650
,4,43,6710
,4,44,6710
,4,45,7005
,4,46,230710
,4,47,7255
,4,48,208650
,4,49,7370
,4,50,7370
,4,51,6730
,4,52,230710
,4,53,7260
,4,54,208650
,4,55,7385
,4,56,7385
,4,57,6740
,4,58,230710
,4,59,7265
,4,60,208530
,4,61,7480
,4,62,7480
,4,63,6750
,4,64,230710
,4,65,7270
,4,66,208530
,4,67,6780
,4,68,6780
,4,69,7010
,4,70,230710
,4,71,7275
,4,72,208650
,4,73,7400
,4,74,7400
,4,75,6790
,4,76,230710
,4,77,7280
,4,78,208650
,4,79,7420
,4,80,7420
,4,81,6800
,4,82,230710
,4,83,7285
,4,84,208530
,4,85,7440
,4,86,7440
,4,87,6810
,4,88,230710
,4,89,7290
,4,90,208530
,4,91,7460
,4,92,7460
,4,93,6830
,4,94,230710
,4,95,7295
,4,96,208530
,4,97,6840
,4,98,6840
,4,99,7015
,4,100,230710
,4,101,7300
,4,102,208650
,4,103,6850
,4,104,6850
,4,105,7020
,4,106,230710
,4,107,7305
,4,108,208530
,4,109,6870
,4,110,6870
,4,111,7025
,4,112,230710
,4,113,7310
,4,114,208530
,4,115,6890
,4,116,6890
,4,117,7030
,4,118,230710
,4,119,7315
,4,120,208530
,4,121,6900
,4,122,6900
,4,123,7035
,4,124,230710
,4,125,7320
,4,126,208530
,4,127,6910
,4,128,6910
,4,129,7040
,4,130,230710
,4,131,7325
,4,132,208530
,4,133,6920
,4,134,6920
,4,135,7045
,4,136,230710
,4,137,7330
,4,138,208530
,4,139,6930
,4,140,6930
,4,141,7050
,4,142,230710
,4,143,7335
,4,144,208530
,4,145,6940
,4,146,6940
,4,147,7055
,4,148,230710
,4,149,7340
,4,150,208530
,4,151,6950
,4,152,6950
,4,153,7060
,4,154,230710
,4,155,7345
,4,156,208530
,4,157,4375
,4,158,209255
,4,159,4780
,4,160,209245
,4,161,4375
,4,162,230710
,4,163,195280
,4,164,230710
,4,165,208590
,4,166,3630
,4,167,230710
,4,168,4375
,4,169,209150
,4,170,6710
,4,171,6710
,4,172,7005
,4,173,230710
,4,174,7350
,4,175,208650
,4,176,7370
,4,177,7370
,4,178,6730
,4,179,230710
,4,180,7355
,4,181,208650
,4,182,7385
,4,183,7385
,4,184,6740
,4,185,230710
,4,186,7360
,4,187,208650
,4,188,4375
,4,189,209270
,4,190,4800
,4,191,209245
,4,192,231200
,4,193,208615
,4,194,231200
,3,36244,4430
,4,5,4500
,4,6,270
,4,1,6990
,4,3,6560
,4,4,6555
,4,5,6570
,4,6,6565
,4,7,6580
,4,8,6575
,4,9,6590
,4,10,6585
,4,11,6610
,4,12,6605
,4,13,6630
,4,14,6625
,4,15,6640
,4,16,6635
,4,17,6650
,4,18,6645
,4,19,6660
,4,20,6655
,4,21,6670
,4,22,6665
,4,23,6690
,4,24,6685
,4,25,6995
,4,26,6695
,4,27,7000
,4,28,6700
,4,29,7005
,4,30,6705
,4,31,6730
,4,32,6725
,4,33,6740
,4,34,6735
,4,35,6750
,4,36,6745
,4,37,6770
,4,38,6765
,4,39,7010
,4,40,6775
,4,41,6790
,4,42,6785
,4,43,6800
,4,44,6795
,4,45,6810
,4,46,6805
,4,47,6830
,4,48,6825
,4,49,7015
,4,50,6835
,4,51,7020
,4,52,6845
,4,53,7025
,4,54,6865
,4,55,7030
,4,56,6885
,4,57,7035
,4,58,6895
,4,59,7040
,4,60,6905
,4,61,7045
,4,62,6915
,4,63,7050
,4,64,6925
,4,65,7055
,4,66,6935
,4,67,7060
,4,68,6945
,4,69,7065
,4,70,6955
,4,71,6970
,4,72,6965
,3,36244,4410
,4,3,7075
,4,1,7080
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,7095
,3,36247,7085
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226110
,3,36252,7070
,3,36244,230605
,4,1,6985
,4,2,208590
,4,3,208635
,4,4,6990
,4,5,3630
,4,6,230710
,4,7,7080
,4,8,208690
,4,9,208590
,4,10,6970
,4,11,209150
,4,12,231195
,4,13,208615
,4,14,231195
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,3,7145
,2,35551,1070
,3,36244,198805
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,2,7210
,2,35551,430
,3,36244,195565
,3,36245,655
,3,36246,7220
,3,36247,7225
,3,36248,320
,3,36263,6535
,3,36249,335
,3,36250,7230
,6,1,85
,3,36251,226155
,3,36252,7495
,3,36244,230605
,4,1,208635
,4,2,4920
,4,3,231205
,4,4,208720
,4,5,230750
,4,6,208590
,4,7,231210
,4,8,208615
,4,9,231210
,3,36244,4430
,4,5,4515
,4,6,4520
,4,7,275
,4,8,280
,3,36244,4410
,4,3,7240
,4,1,7245
,4,3,7250
,4,5,7255
,4,7,7260
,4,9,7265
,4,11,7270
,4,13,7275
,4,15,7280
,4,17,7285
,4,19,7290
,4,21,7295
,4,23,7300
,4,25,7305
,4,27,7310
,4,29,7315
,4,31,7320
,4,33,7325
,4,35,7330
,4,37,7335
,4,39,7340
,4,41,7345
,4,43,7350
,4,45,7355
,4,47,7360
,3,36245,7370
,3,36246,7375
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225160
,3,36244,230605
,4,1,208590
,3,36245,7385
,3,36246,7390
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225155
,3,36244,230605
,4,1,208590
,3,36245,7400
,3,36246,7405
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225165
,3,36244,230605
,4,1,208590
,2,35551,425
,3,36254,7395
,3,36255,560
,6,64,85
,3,36244,6290
,4,1,7405
,3,36245,7420
,3,36246,7425
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225170
,3,36244,230605
,4,1,208590
,2,35551,425
,3,36254,7415
,3,36255,560
,6,64,85
,3,36244,6290
,4,1,7425
,3,36245,7440
,3,36246,7445
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225175
,3,36244,230605
,4,1,208590
,2,35551,425
,3,36254,7435
,3,36255,560
,6,64,85
,3,36244,6290
,4,1,7445
,3,36245,7460
,3,36246,7465
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225180
,3,36244,230605
,4,1,208590
,2,35551,425
,3,36254,7455
,3,36255,560
,6,64,85
,3,36244,6290
,4,1,7465
,3,36245,7480
,3,36246,7485
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225185
,3,36244,230605
,4,1,208590
,2,35551,425
,3,36254,7475
,3,36255,560
,6,64,85
,3,36244,6290
,4,1,7485
,3,36244,4410
,3,36244,4410
,3,36264,7510
,3,36245,7515
,3,36244,575
,4,3,7520
,3,36244,225610
,3,36244,7530
,4,2,655
,4,3,655
,3,36244,234750
,4,2,7525
,3,36245,4890
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4910
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7555
,3,36246,7560
,3,36247,7565
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227105
,3,36252,20240
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,20235
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,208590
,4,9,225020
,4,10,208590
,4,11,208590
,4,12,208590
,4,13,208590
,4,14,208590
,4,15,208590
,4,16,4250
,4,17,209190
,4,18,4195
,4,19,209190
,4,20,208590
,4,21,208590
,4,22,225020
,4,23,208590
,4,24,208590
,4,25,208590
,4,26,208590
,4,27,208590
,4,28,208590
,4,29,232125
,4,30,208615
,4,31,232125
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,7575
,3,36246,7580
,3,36247,7585
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228625
,3,36252,29165
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,29160
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,208590
,4,9,225020
,4,10,208590
,4,11,208590
,4,12,208590
,4,13,4250
,4,14,209190
,4,15,4195
,4,16,209190
,4,17,208590
,4,18,208590
,4,19,225020
,4,20,208590
,4,21,208590
,4,22,208590
,4,23,233425
,4,24,208615
,4,25,233425
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,7480
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6920
,3,36246,7600
,3,36247,7605
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227665
,3,36252,21780
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,21775
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,4250
,4,9,209190
,4,10,4250
,4,11,209190
,4,12,208450
,4,13,209005
,4,14,4195
,4,15,209190
,4,16,208590
,4,17,208515
,4,18,21455
,4,19,230705
,4,20,208245
,4,21,21455
,4,22,230705
,4,23,208590
,4,24,232415
,4,25,208615
,4,26,232415
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,36245,6930
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7620
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7630
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7640
,3,36246,7645
,3,36247,7650
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227965
,3,36252,23440
,3,36244,230605
,4,1,208635
,4,2,208680
,4,3,208730
,4,4,208590
,4,5,225020
,4,6,208590
,4,7,208590
,4,8,208590
,4,9,208590
,4,10,208590
,4,11,208590
,4,12,232690
,4,13,208615
,4,14,232690
,4,15,209030
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,36245,7660
,3,36246,7665
,3,36247,7670
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227565
,3,36371,218005
,3,36252,21270
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,21265
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,4250
,4,9,209190
,4,10,1020
,4,11,320
,4,12,1020
,4,13,208740
,4,14,990
,4,15,230710
,4,16,208720
,4,17,7700
,4,18,209245
,4,19,232340
,4,20,208615
,4,21,232340
,4,22,7720
,4,23,209085
,4,24,12315
,4,25,232345
,4,26,4250
,4,27,232350
,4,28,12310
,4,29,232355
,4,30,208590
,4,31,12310
,4,32,230705
,4,33,230750
,4,34,12310
,4,35,230705
,4,36,230835
,4,37,4250
,4,38,209190
,4,39,12310
,4,40,230705
,4,41,208590
,4,42,12310
,4,43,230705
,4,44,230750
,4,45,12310
,4,46,230705
,4,47,230835
,4,49,12315
,4,50,230780
,4,51,4250
,4,52,209190
,4,53,21455
,4,54,230705
,4,55,208645
,4,56,21455
,4,57,230705
,4,58,208245
,4,59,211395
,4,60,208590
,4,61,208515
,4,62,208590
,4,63,208590
,4,64,208515
,4,65,21455
,4,66,230705
,4,67,208370
,4,68,7640
,4,69,209085
,4,70,1020
,4,71,320
,4,72,1020
,4,73,208560
,4,74,208590
,4,75,230625
,4,76,208590
,4,77,208370
,4,78,8140
,4,79,230705
,4,80,230835
,4,81,8140
,4,82,230705
,4,83,230835
,4,84,4250
,4,85,209190
,4,86,8140
,4,87,230705
,4,88,7680
,4,89,209220
,4,90,21455
,4,91,230705
,4,92,7640
,4,93,209085
,4,94,208370
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10275
,4,12,11765
,4,13,11770
,3,36245,7680
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7690
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7700
,3,36246,7705
,3,36247,7710
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230390
,3,36252,221190
,3,36244,230605
,4,1,208635
,4,2,8150
,4,3,230710
,4,4,208660
,4,6,8150
,4,7,234580
,4,8,3630
,4,9,230705
,4,10,221200
,4,11,208690
,4,12,12310
,4,13,230710
,4,14,208590
,4,15,213860
,4,16,232925
,4,17,8150
,4,18,234580
,4,19,234585
,4,20,208615
,4,21,234585
,4,22,21455
,4,23,230705
,4,24,12310
,4,25,230705
,4,26,230750
,4,27,208645
,4,28,3630
,4,29,230705
,4,31,221205
,4,32,208690
,4,33,208590
,4,34,230750
,4,35,208245
,4,36,208880
,4,37,208820
,4,38,208895
,4,39,208305
,4,40,208370
,4,41,230750
,4,42,208920
,4,43,230835
,4,44,230835
,4,45,12315
,4,46,230780
,4,47,230625
,4,48,208590
,4,49,4250
,4,50,209190
,4,51,230835
,4,52,21455
,4,53,230705
,4,54,208370
,4,55,208305
,4,56,208370
,4,57,234585
,4,58,208615
,4,59,234585
,4,60,208515
,4,61,208590
,4,62,230750
,4,63,12315
,4,64,230780
,4,65,21455
,4,66,230705
,4,67,208590
,4,68,4250
,4,69,209190
,4,70,230835
,4,71,208305
,4,72,208370
,4,73,234585
,4,74,208615
,4,75,234585
,4,76,208515
,4,77,8065
,4,78,230705
,4,79,221210
,4,80,208690
,4,81,212965
,4,82,209265
,4,83,21455
,4,84,230780
,4,85,8150
,4,86,230780
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10275
,4,12,11765
,4,13,11770
,4,14,285
,4,15,11775
,4,16,290
,4,17,11780
,4,18,28705
,3,36245,7720
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7730
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7440
,3,36246,7740
,3,36247,7745
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227955
,3,36252,23435
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,23430
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,4250
,4,9,209190
,4,10,21455
,4,11,230725
,4,12,4195
,4,13,209190
,4,14,208590
,4,15,4195
,4,16,209190
,4,17,208590
,4,18,208220
,4,19,208680
,4,20,208220
,4,21,208450
,4,22,655
,4,23,232680
,4,24,208615
,4,25,232680
,4,26,208220
,4,27,208370
,4,28,208515
,4,29,655
,4,30,208450
,4,31,208540
,4,32,655
,4,33,7640
,4,34,232685
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,3,36245,7755
,3,36246,7760
,3,36247,7765
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227500
,3,36252,21180
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,21155
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,4250
,4,9,209190
,4,10,227490
,4,11,208255
,4,12,21165
,4,13,208795
,4,14,208950
,4,15,232290
,4,16,208615
,4,17,232290
,4,18,21455
,4,19,230725
,4,20,4250
,4,21,209190
,4,22,208605
,4,23,21170
,4,24,208250
,4,25,21455
,4,26,230725
,4,27,208535
,4,28,208590
,4,29,208590
,4,30,208605
,4,31,21175
,4,32,208250
,4,33,7775
,4,34,232295
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,3,36245,7775
,3,36246,7780
,3,36247,7785
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228445
,3,36252,28700
,3,36244,230605
,4,1,208635
,4,2,208535
,4,3,12100
,4,4,209220
,4,5,28680
,4,6,208250
,4,7,233140
,4,8,208615
,4,9,233140
,4,10,28690
,4,11,208795
,4,12,208950
,4,13,28695
,4,14,208250
,4,15,208535
,4,16,7640
,4,17,209085
,4,18,7385
,4,19,209135
,4,20,12100
,4,21,233145
,4,22,231465
,4,23,208535
,4,24,7640
,4,25,232685
,4,26,7385
,4,27,233130
,4,28,231465
,4,29,208535
,4,30,208560
,4,31,208305
,4,32,208370
,4,33,208680
,4,34,208730
,4,35,208590
,4,36,225020
,4,37,208590
,4,38,208590
,4,39,208590
,4,40,208590
,4,41,208590
,4,42,208590
,4,43,7385
,4,44,209135
,4,45,209030
,4,46,7385
,4,47,233130
,4,48,21455
,4,49,230720
,4,50,208605
,4,51,231465
,4,52,208680
,4,53,208305
,4,54,208370
,4,55,230750
,4,56,208305
,4,57,208370
,4,58,230750
,4,59,208645
,4,60,208370
,4,61,208645
,4,62,208590
,4,63,225020
,4,64,208590
,4,65,208590
,4,66,208590
,4,67,208590
,4,68,208590
,4,69,208590
,4,70,7385
,4,71,209135
,4,72,209030
,4,73,7385
,4,74,209135
,4,75,7385
,4,76,209135
,4,77,21455
,4,78,230705
,4,79,208560
,4,80,233140
,4,81,208615
,4,82,233140
,4,83,208220
,4,84,233140
,4,85,208615
,4,86,233140
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10275
,4,12,11765
,4,13,11770
,4,14,285
,4,15,11775
,4,16,290
,4,17,11780
,4,18,28705
,3,36245,7795
,3,36246,7800
,3,36247,7805
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227915
,3,36252,23280
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,23275
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,4250
,4,9,209190
,4,10,21455
,4,11,230725
,4,12,4195
,4,13,209190
,4,14,208590
,4,15,208220
,4,16,208450
,4,17,4195
,4,18,209190
,4,19,208590
,4,20,208450
,4,21,208220
,4,22,208450
,4,23,208680
,4,24,208730
,4,25,208590
,4,26,225020
,4,27,208590
,4,28,208590
,4,29,208590
,4,30,208590
,4,31,208590
,4,32,208590
,4,33,209030
,4,34,232590
,4,35,208615
,4,36,232590
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10275
,3,36245,7815
,3,36246,7820
,3,36247,7825
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228420
,3,36252,28645
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,28640
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,4250
,4,9,209190
,4,10,21455
,4,11,230705
,4,12,4195
,4,13,209190
,4,14,208590
,4,15,208540
,4,16,655
,4,17,233110
,4,18,208615
,4,19,233110
,4,20,4195
,4,21,209190
,4,22,208590
,4,23,21455
,4,24,230725
,4,25,208360
,4,26,655
,4,27,208220
,4,28,21455
,4,29,230705
,4,30,208370
,4,31,208515
,4,32,208680
,4,33,21455
,4,34,230725
,4,35,208450
,4,36,21455
,4,37,230705
,4,38,208680
,4,39,208730
,4,40,208590
,4,41,225020
,4,42,208590
,4,43,208590
,4,44,208590
,4,45,208590
,4,46,208590
,4,47,208590
,4,48,209030
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,3,36245,7835
,3,36246,7840
,3,36247,7845
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228530
,3,36252,28910
,3,36244,230605
,4,1,208635
,4,2,212115
,4,3,28905
,4,4,208735
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,4250
,4,9,209190
,4,10,208590
,4,11,233245
,4,12,208615
,4,13,233245
,3,36244,4430
,3,36245,7855
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7865
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7875
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7885
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7895
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7905
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7915
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7925
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7935
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7945
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7955
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7965
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7975
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7985
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,7995
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8005
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8015
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8025
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8035
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8045
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8055
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8065
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8075
,3,36246,8080
,3,36247,8085
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226215
,3,36252,8490
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,4380
,4,4,230710
,4,5,195280
,4,6,230710
,4,7,16560
,4,8,4380
,4,9,230710
,4,10,208590
,4,11,4380
,4,12,230710
,4,13,7915
,4,14,8220
,4,15,230710
,4,16,4375
,4,17,209185
,4,18,4780
,4,19,209245
,4,20,4380
,4,21,230710
,4,22,195280
,4,23,230710
,4,24,4910
,4,25,8100
,4,26,230710
,4,27,4890
,4,28,8095
,4,29,230710
,4,30,7555
,4,31,8105
,4,32,230710
,4,33,7575
,4,34,8110
,4,35,230710
,4,36,7480
,4,37,8115
,4,38,230710
,4,39,6920
,4,40,8120
,4,41,230710
,4,42,6930
,4,43,8125
,4,44,230710
,4,45,7620
,4,46,8130
,4,47,230710
,4,48,7630
,4,49,8135
,4,50,230710
,4,51,7660
,4,52,8145
,4,53,230710
,4,54,7730
,4,55,8155
,4,56,230710
,4,57,7440
,4,58,8160
,4,59,230710
,4,60,7755
,4,61,8165
,4,62,230710
,4,63,7795
,4,64,8170
,4,65,230710
,4,66,7815
,4,67,8175
,4,68,230710
,4,69,7835
,4,70,8180
,4,71,230710
,4,72,7855
,4,73,8185
,4,74,230710
,4,75,7865
,4,76,8190
,4,77,230710
,4,78,7875
,4,79,8195
,4,80,230710
,4,81,7885
,4,82,8200
,4,83,230710
,4,84,7895
,4,85,8205
,4,86,230710
,4,87,7905
,4,88,8210
,4,89,230710
,4,90,7935
,4,91,8225
,4,92,230710
,4,93,7945
,4,94,8230
,4,95,230710
,4,96,7955
,4,97,8235
,4,98,230710
,4,99,7965
,4,100,8240
,4,101,230710
,4,102,7975
,4,103,8245
,4,104,230710
,4,105,7985
,4,106,8250
,4,107,230710
,4,108,7995
,4,109,8255
,4,110,230710
,4,111,8005
,4,112,8260
,4,113,230710
,4,114,8015
,4,115,8265
,4,116,230710
,4,117,8025
,4,118,8270
,4,119,230710
,4,120,8035
,4,121,8275
,4,122,230710
,4,123,8045
,4,124,8280
,4,125,230710
,4,126,8055
,4,127,8285
,4,128,230710
,4,129,4375
,4,130,209295
,4,131,4780
,4,132,209245
,4,133,231230
,4,134,208615
,4,135,231230
,3,36244,4430
,4,1,8095
,4,2,7540
,4,3,8100
,4,4,7545
,4,5,8105
,4,6,7550
,4,7,8110
,4,8,7570
,4,9,8115
,4,10,7590
,4,11,8120
,4,12,7595
,4,13,8125
,4,14,7610
,4,15,8130
,4,16,7615
,4,17,8135
,4,18,7625
,4,19,7640
,4,20,7635
,4,21,8140
,4,23,8145
,4,24,7655
,4,25,7680
,4,26,7675
,4,27,7690
,4,28,7685
,4,29,8150
,4,31,7700
,4,32,7695
,4,33,7720
,4,34,7715
,4,35,8155
,4,36,7725
,4,37,8160
,4,38,7735
,4,39,8165
,4,40,7750
,4,41,7775
,4,42,7770
,4,43,8170
,4,44,7790
,4,45,8175
,4,46,7810
,4,47,8180
,4,48,7830
,4,49,8185
,4,50,7850
,4,51,8190
,4,52,7860
,4,53,8195
,4,54,7870
,4,55,8200
,4,56,7880
,4,57,8205
,4,58,7890
,4,59,8210
,4,60,7900
,4,61,8215
,4,63,8220
,4,64,7910
,4,65,7925
,4,66,7920
,4,67,8225
,4,68,7930
,4,69,8230
,4,70,7940
,4,71,8235
,4,72,7950
,4,73,8240
,4,74,7960
,4,75,8245
,4,76,7970
,4,77,8250
,4,78,7980
,4,79,8255
,4,80,7990
,4,81,8260
,4,82,8000
,4,83,8265
,4,84,8010
,4,85,8270
,4,86,8020
,4,87,8275
,4,88,8030
,4,89,8280
,4,90,8040
,4,91,8285
,4,92,8050
,4,93,8065
,4,94,8060
,4,95,8075
,4,96,8070
,3,36245,655
,3,36246,1195
,3,36247,1200
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,4515
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,270
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,8315
,4,1,8320
,4,3,8325
,4,5,8330
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,8345
,3,36247,8335
,3,36248,320
,3,36263,7505
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226200
,3,36252,8310
,3,36244,230605
,4,1,8090
,4,2,208590
,4,3,208635
,4,4,4380
,4,5,230710
,4,6,8290
,4,8,208590
,4,9,208590
,4,10,4380
,4,11,230710
,4,12,4380
,4,13,230710
,4,14,8320
,4,15,208690
,4,16,208590
,4,17,8115
,4,18,230710
,4,19,208590
,4,20,8140
,4,21,7535
,4,22,208735
,4,23,208590
,4,24,8150
,4,25,3630
,4,26,230710
,4,27,8325
,4,28,208690
,4,29,208590
,4,30,8215
,4,31,3630
,4,32,230710
,4,33,8330
,4,34,208690
,4,35,208590
,4,36,8065
,4,37,230710
,4,38,211610
,4,39,213605
,4,40,4375
,4,41,209185
,4,42,213380
,4,43,8295
,4,45,208590
,4,46,213160
,4,47,8300
,4,49,208590
,4,50,212965
,4,51,8305
,4,53,208590
,4,54,4375
,4,55,209270
,4,56,4800
,4,57,209245
,4,58,8075
,4,59,209150
,4,60,231220
,4,61,208615
,4,62,231220
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,2,8400
,0,1421,204110
,0,660,208110
,0,1422,208115
,2,35551,425
,3,36253,204080
,3,36254,29325
,3,36255,208120
,6,64,211180
,3,36244,12670
,4,1,211185
,3,36251,230585
,3,36371,224985
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,8400
,4,4,215515
,4,5,2295
,4,6,212115
,4,7,2295
,4,8,208590
,4,9,216080
,4,10,2790
,4,11,2790
,4,12,216080
,4,13,2790
,4,14,2790
,4,15,21455
,4,16,230705
,4,17,208645
,4,18,21455
,4,19,230705
,4,20,208245
,4,21,211395
,4,22,208590
,4,23,208515
,4,24,208590
,4,25,208515
,4,26,21455
,4,27,230705
,4,28,208370
,4,29,216700
,4,30,3295
,4,31,3295
,4,32,1020
,4,33,216675
,4,34,230835
,4,35,216675
,4,36,230835
,4,37,216080
,4,38,2790
,4,39,2790
,4,40,216675
,4,41,216110
,4,42,2820
,4,43,2820
,4,44,208590
,4,45,208470
,4,46,230625
,4,47,208370
,4,48,21455
,4,49,230705
,4,50,216700
,4,51,3295
,4,52,3295
,4,53,208370
,4,54,208590
,4,55,1020
,4,56,216135
,4,57,215685
,4,58,230750
,4,59,215685
,4,60,230835
,4,61,216080
,4,62,2790
,4,63,2790
,4,64,215685
,4,65,208590
,4,66,215685
,4,67,230750
,4,69,216135
,4,70,215685
,4,71,230835
,4,72,216080
,4,73,2790
,4,74,2790
,4,75,215685
,4,76,208590
,4,77,990
,4,78,230705
,4,79,215840
,4,80,2590
,4,81,2590
,4,82,216465
,4,83,3100
,4,84,3100
,1,0,21260
,2,35551,1070
,3,36314,218000
,3,36244,198805
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,5,8425
,2,35551,1070
,3,36244,198805
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,2,828,1880
,2,35477,85
,2,35865,85
,2,35821,204800
,2,35779,204805
,2,35742,204810
,2,35551,70
,3,36315,204795
,3,36244,217065
,3,36244,4410
,3,36244,4410
,3,36264,8500
,3,36245,8505
,3,36244,575
,4,3,8510
,3,36244,225610
,3,36245,8520
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8530
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8540
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8550
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8560
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8570
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8580
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8590
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8600
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8610
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8620
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8630
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8640
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8650
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8660
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8670
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8680
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8690
,3,36246,4220
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8700
,3,36246,8705
,3,36247,8710
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226230
,3,36252,8790
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,990
,4,4,230710
,4,5,8680
,4,6,8750
,4,7,230710
,4,8,8690
,4,9,8755
,4,10,230710
,4,11,8600
,4,12,8730
,4,13,230710
,4,14,8610
,4,15,8735
,4,16,230710
,4,17,8630
,4,18,8740
,4,19,230710
,4,20,8640
,4,21,8745
,4,22,230710
,4,23,4375
,4,24,209165
,4,25,4780
,4,26,209245
,4,27,231240
,4,28,208615
,4,29,231240
,3,36244,4430
,4,1,8720
,4,3,8725
,4,5,8520
,4,6,8515
,4,7,8530
,4,8,8525
,4,9,8540
,4,10,8535
,4,11,8550
,4,12,8545
,4,13,8560
,4,14,8555
,4,15,8570
,4,16,8565
,4,17,8580
,4,18,8575
,4,19,8590
,4,20,8585
,4,21,8730
,4,22,8595
,4,23,8735
,4,24,8605
,4,25,8620
,4,26,8615
,4,27,8740
,4,28,8625
,4,29,8745
,4,30,8635
,4,31,8650
,4,32,8645
,4,33,8660
,4,34,8655
,4,35,8670
,4,36,8665
,4,37,8750
,4,38,8675
,4,39,8755
,4,40,8685
,4,41,8700
,4,42,8695
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,8775
,3,36247,8765
,3,36248,320
,3,36263,8495
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226225
,3,36252,8760
,3,36244,230605
,4,1,8715
,4,2,208590
,4,3,208635
,4,4,8720
,4,5,208590
,4,6,8725
,4,7,208590
,4,8,8700
,4,9,209150
,4,10,231235
,4,11,208615
,4,12,231235
,4,1,560
,4,1,560
,3,36244,4410
,3,36264,8800
,3,36245,8805
,3,36244,575
,4,3,8810
,3,36244,225610
,3,36245,8820
,3,36246,8825
,3,36247,8830
,3,36248,8835
,3,36263,8795
,3,36249,1450
,3,36250,340
,6,1,8840
,3,36251,226240
,3,36252,9200
,3,36244,230605
,4,1,208635
,4,2,231250
,4,3,208615
,4,4,231250
,3,36244,4430
,3,36259,9195
,3,36261,2565
,4,3,204820
,3,36262,217095
,3,36244,234750
,3,36245,8850
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8860
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8870
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8880
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8890
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8900
,3,36246,8905
,3,36247,8910
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228575
,3,36252,29050
,3,36244,230605
,4,1,208635
,4,2,4215
,4,3,209190
,4,4,208590
,4,5,233350
,4,6,208615
,4,7,233350
,3,36244,4430
,4,5,270
,3,36245,8920
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8930
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8940
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8950
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8960
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8970
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8980
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,8990
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9000
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9010
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9020
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9030
,3,36246,4220
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9040
,3,36246,9045
,3,36247,9050
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226250
,3,36252,9205
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,9070
,4,4,230710
,4,5,208590
,4,6,9070
,4,7,230710
,4,8,212515
,4,9,203745
,4,10,208590
,4,11,9070
,4,12,230710
,4,13,212590
,4,14,203750
,4,15,208590
,4,16,9070
,4,17,230710
,4,18,212065
,4,19,203755
,4,20,208590
,4,21,9070
,4,22,230710
,4,23,213625
,4,24,203760
,4,25,208590
,4,26,9070
,4,27,230710
,4,28,213570
,4,29,203765
,4,30,208590
,4,31,9070
,4,32,230710
,4,33,213850
,4,34,203770
,4,35,208590
,4,36,9070
,4,37,230710
,4,38,211965
,4,39,203775
,4,40,208590
,4,41,9070
,4,42,230710
,4,43,213425
,4,44,203780
,4,45,208590
,4,46,9070
,4,47,230710
,4,48,208590
,4,49,9070
,4,50,230710
,4,51,8990
,4,52,9140
,4,53,230710
,4,54,8850
,4,55,9075
,4,56,230710
,4,57,8860
,4,58,9080
,4,59,230710
,4,60,8870
,4,61,9085
,4,62,230710
,4,63,8880
,4,64,9090
,4,65,230710
,4,66,8900
,4,67,9100
,4,68,230710
,4,69,8920
,4,70,9105
,4,71,230710
,4,72,8930
,4,73,9110
,4,74,230710
,4,75,8940
,4,76,9115
,4,77,230710
,4,78,8950
,4,79,9120
,4,80,230710
,4,81,9000
,4,82,9145
,4,83,230710
,4,84,9010
,4,85,9150
,4,86,230710
,4,87,9020
,4,88,9155
,4,89,230710
,4,90,9030
,4,91,9160
,4,92,230710
,4,93,8890
,4,94,9095
,4,95,230710
,4,96,8980
,4,97,9135
,4,98,230710
,4,99,8960
,4,100,9125
,4,101,230710
,4,102,8970
,4,103,9130
,4,104,230710
,4,105,4375
,4,106,209320
,4,107,4780
,4,108,209245
,4,109,231255
,4,110,208615
,4,111,231255
,3,36244,4430
,4,1,9060
,4,3,9065
,4,5,8820
,4,6,8815
,4,7,9070
,4,9,9075
,4,10,8845
,4,11,9080
,4,12,8855
,4,13,9085
,4,14,8865
,4,15,9090
,4,16,8875
,4,17,9095
,4,18,8885
,4,19,9100
,4,20,8895
,4,21,9105
,4,22,8915
,4,23,9110
,4,24,8925
,4,25,9115
,4,26,8935
,4,27,9120
,4,28,8945
,4,29,9125
,4,30,8955
,4,31,9130
,4,32,8965
,4,33,9135
,4,34,8975
,4,35,9140
,4,36,8985
,4,37,9145
,4,38,8995
,4,39,9150
,4,40,9005
,4,41,9155
,4,42,9015
,4,43,9160
,4,44,9025
,4,45,9040
,4,46,9035
,3,36244,4410
,4,3,9170
,4,1,9175
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,9190
,3,36247,9180
,3,36248,320
,3,36263,8795
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226235
,3,36252,9165
,3,36244,230605
,4,1,9055
,4,2,208590
,4,3,208635
,4,4,9060
,4,5,9115
,4,6,230710
,4,7,208590
,4,8,9065
,4,9,9075
,4,10,230710
,4,11,208590
,4,12,8820
,4,13,230710
,4,14,8835
,4,15,208590
,4,16,9070
,4,17,8820
,4,18,230710
,4,19,9175
,4,20,208690
,4,21,208590
,4,22,9070
,4,23,230710
,4,24,4370
,4,25,230710
,4,26,195280
,4,27,230710
,4,28,211990
,4,29,230780
,4,30,990
,4,31,230710
,4,32,8835
,4,33,9070
,4,34,230710
,4,35,208590
,4,36,9040
,4,37,209150
,4,38,231245
,4,39,208615
,4,40,231245
,2,828,2565
,2,35551,430
,3,36315,204815
,3,36244,217090
,3,36244,4410
,3,36244,4410
,3,36264,9215
,3,36245,9220
,3,36244,575
,4,3,9225
,3,36244,225610
,4,1,4890
,4,2,9230
,3,36245,9250
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9260
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9270
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9280
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9290
,3,36246,9295
,3,36247,9300
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226405
,3,36252,10235
,3,36244,230605
,4,1,208635
,4,2,10230
,4,3,208250
,4,4,9860
,4,5,230710
,4,6,10245
,4,7,208690
,4,8,29045
,4,9,231335
,4,10,4665
,4,11,231340
,4,12,231345
,4,13,208615
,4,14,231345
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,3,36245,9310
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9320
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9330
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9340
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9350
,3,36246,9355
,3,36247,9360
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226400
,3,36252,10225
,3,36244,230605
,4,1,208635
,4,2,211980
,4,3,230710
,4,4,9290
,4,5,209245
,4,6,231330
,4,7,208615
,4,8,231330
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,9370
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9380
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9390
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9400
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9410
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9420
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9430
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9440
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9450
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9460
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9470
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9480
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,3,36374,9485
,6,1,85
,4,1,16755
,4,4,29100
,4,7,212260
,4,10,211590
,4,13,23245
,4,16,29140
,3,36245,9495
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9505
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9515
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,3,36374,9520
,6,1,85
,4,1,16755
,4,4,212770
,4,7,211845
,4,10,212465
,4,13,212525
,3,36245,9530
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9540
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9550
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9560
,3,36246,9565
,3,36247,9570
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226415
,3,36252,10270
,3,36244,230605
,4,1,208420
,4,2,208945
,4,3,208635
,4,4,208870
,4,5,10250
,4,6,208925
,4,7,10260
,4,8,208925
,4,9,208590
,4,10,231350
,4,11,208615
,4,12,231350
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,280
,4,9,10275
,4,10,270
,4,11,4520
,4,12,275
,3,36245,9580
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,3,36374,9585
,6,1,85
,4,1,213870
,4,4,211400
,4,7,28475
,3,36245,9595
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9605
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9615
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9625
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9635
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9645
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9655
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9665
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9675
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9685
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9695
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9705
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9715
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9725
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9735
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9745
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9755
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9765
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9775
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9785
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9795
,3,36246,9800
,3,36247,9805
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226370
,3,36252,10220
,3,36244,230605
,4,1,208555
,4,2,208635
,4,3,212095
,4,4,231285
,4,5,212775
,4,6,230705
,4,7,208205
,4,9,231320
,4,10,208615
,4,11,231320
,4,12,208220
,4,13,208450
,4,14,208660
,4,15,9795
,4,16,230705
,4,17,208590
,4,18,208870
,4,19,213040
,4,20,10215
,4,21,208925
,4,22,9560
,4,23,231325
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,3,36245,9815
,3,36246,9820
,3,36247,9825
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226315
,3,36252,10100
,3,36244,230605
,4,1,208635
,4,2,9995
,4,3,208925
,4,4,10015
,4,5,208925
,4,6,10110
,4,7,208775
,4,8,10035
,4,9,208925
,4,10,10115
,4,11,208775
,4,12,10045
,4,13,208925
,4,14,10120
,4,15,208775
,4,16,10060
,4,17,208925
,4,18,10125
,4,19,208775
,4,20,10070
,4,21,208925
,4,22,10130
,4,23,208775
,4,24,10080
,4,25,208925
,4,26,10135
,4,27,208775
,4,28,10090
,4,29,208925
,4,30,10140
,4,31,208775
,4,32,231270
,4,33,208615
,4,34,231270
,3,36244,4430
,4,5,270
,3,36245,9835
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,9845
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4890
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,4,1,9860
,4,3,9865
,4,5,9250
,4,6,9245
,4,7,9260
,4,8,9255
,4,9,9270
,4,10,9265
,4,11,9280
,4,12,9275
,4,13,9290
,4,14,9285
,4,15,9310
,4,16,9305
,4,17,9320
,4,18,9315
,4,19,9330
,4,20,9325
,4,21,9340
,4,22,9335
,4,23,9350
,4,24,9345
,4,25,9370
,4,26,9365
,4,27,9380
,4,28,9375
,4,29,9390
,4,30,9385
,4,31,9400
,4,32,9395
,4,33,9410
,4,34,9405
,4,35,9420
,4,36,9415
,4,37,9430
,4,38,9425
,4,39,9440
,4,40,9435
,4,41,9450
,4,42,9445
,4,43,9460
,4,44,9455
,4,45,9470
,4,46,9465
,4,47,9480
,4,48,9475
,4,49,9870
,4,51,9495
,4,52,9490
,4,53,9505
,4,54,9500
,4,55,9515
,4,56,9510
,4,57,9530
,4,58,9525
,4,59,9540
,4,60,9535
,4,61,9550
,4,62,9545
,4,63,9560
,4,64,9555
,4,65,9580
,4,66,9575
,4,67,9595
,4,68,9590
,4,69,9605
,4,70,9600
,4,71,9615
,4,72,9610
,4,73,9625
,4,74,9620
,4,75,9635
,4,76,9630
,4,77,9645
,4,78,9640
,4,79,9655
,4,80,9650
,4,81,9665
,4,82,9660
,4,83,9675
,4,84,9670
,4,85,9685
,4,86,9680
,4,87,9695
,4,88,9690
,4,89,9705
,4,90,9700
,4,91,9715
,4,92,9710
,4,93,9725
,4,94,9720
,4,95,9735
,4,96,9730
,4,97,9745
,4,98,9740
,4,99,9755
,4,100,9750
,4,101,9765
,4,102,9760
,4,103,9775
,4,104,9770
,4,105,9785
,4,106,9780
,4,107,9795
,4,108,9790
,4,109,9815
,4,110,9810
,4,111,9875
,4,113,9880
,4,115,9835
,4,116,9830
,4,117,9845
,4,118,9840
,4,119,9885
,4,120,9850
,4,121,9890
,3,36245,655
,3,36246,3560
,3,36247,3565
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,9905
,4,1,9910
,4,3,9915
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,9930
,3,36247,9920
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226280
,3,36252,9900
,3,36244,230605
,4,1,9855
,4,2,208590
,4,3,208635
,4,4,9860
,4,6,208800
,4,7,208590
,4,8,9865
,4,9,208590
,4,10,3555
,4,11,230710
,4,12,3555
,4,13,208590
,4,14,3555
,4,15,230710
,4,16,195280
,4,17,230710
,4,18,16560
,4,19,3555
,4,20,230710
,4,21,208590
,4,22,3555
,4,23,230710
,4,24,9895
,4,26,208590
,4,27,208590
,4,28,3555
,4,29,230710
,4,30,16735
,4,31,195255
,4,32,213315
,4,33,212235
,4,34,211540
,4,35,213715
,4,36,211910
,4,37,4375
,4,38,209095
,4,39,212810
,4,40,9410
,4,41,230710
,4,42,212300
,4,43,9420
,4,44,230710
,4,45,212970
,4,46,9430
,4,47,230710
,4,48,213530
,4,49,9440
,4,50,230710
,4,51,213330
,4,52,9450
,4,53,230710
,4,54,212020
,4,55,9460
,4,56,230710
,4,57,212755
,4,58,9470
,4,59,230710
,4,60,4375
,4,61,209205
,4,62,4800
,4,63,209245
,4,64,9870
,4,65,208590
,4,66,9480
,4,67,230710
,4,68,16755
,4,69,29100
,4,70,212260
,4,71,211590
,4,72,23245
,4,73,29140
,4,74,4375
,4,75,209270
,4,76,211860
,4,77,9495
,4,78,230710
,4,79,212520
,4,80,9505
,4,81,230710
,4,82,4375
,4,83,209115
,4,84,4800
,4,85,209245
,4,86,9515
,4,87,230710
,4,88,16755
,4,89,212770
,4,90,211845
,4,91,212465
,4,92,212525
,4,93,4375
,4,94,209120
,4,95,212520
,4,96,9530
,4,97,230710
,4,98,4375
,4,99,209185
,4,100,4800
,4,101,209245
,4,102,9580
,4,103,230710
,4,104,213870
,4,105,211400
,4,106,28475
,4,107,4375
,4,108,209245
,4,109,211755
,4,110,9595
,4,111,230710
,4,112,213230
,4,113,9605
,4,114,230710
,4,115,213155
,4,116,9615
,4,117,230710
,4,118,213595
,4,119,9625
,4,120,230710
,4,121,211335
,4,122,9635
,4,123,230710
,4,124,212195
,4,125,9645
,4,126,230710
,4,127,213550
,4,128,9655
,4,129,230710
,4,130,211640
,4,131,9665
,4,132,230710
,4,133,212480
,4,134,9675
,4,135,230710
,4,136,212790
,4,137,9685
,4,138,230710
,4,139,213745
,4,140,9695
,4,141,230710
,4,142,212860
,4,143,9705
,4,144,230710
,4,145,213795
,4,146,9715
,4,147,230710
,4,148,213920
,4,149,9725
,4,150,230710
,4,151,213140
,4,152,9735
,4,153,230710
,4,154,4890
,4,155,9745
,4,156,230710
,4,157,4375
,4,158,209125
,4,159,4800
,4,160,209245
,4,161,9815
,4,162,209150
,4,163,212095
,4,164,230710
,4,165,9795
,4,166,230710
,4,167,9795
,4,168,230780
,4,169,212095
,4,170,230710
,4,171,195280
,4,172,230710
,4,173,28595
,4,174,655
,4,175,208590
,4,176,9875
,4,177,3630
,4,178,230710
,4,179,9910
,4,180,208690
,4,181,208590
,4,182,9880
,4,183,4370
,4,184,230710
,4,185,9915
,4,186,208690
,4,187,208590
,4,188,212095
,4,189,230710
,4,190,195280
,4,191,230710
,4,192,9235
,4,193,208640
,4,194,9885
,4,195,230710
,4,196,208950
,4,197,4780
,4,198,209245
,4,199,9890
,4,200,203810
,4,201,9240
,4,202,208250
,4,203,9350
,4,204,209185
,4,205,208590
,4,206,231260
,4,207,208615
,4,208,231260
,4,1,560
,4,1,560
,4,1,560
,2,828,2615
,2,844,85
,2,1405,85
,2,35604,85
,2,35474,85
,2,1138,85
,2,1408,85
,2,35525,2885
,2,35655,3290
,2,35551,70
,3,36315,204825
,3,36244,217110
,2,828,2575
,2,844,85
,2,35705,85
,2,35522,85
,2,35644,85
,2,35656,85
,2,35655,2555
,2,35551,70
,3,36315,204830
,3,36244,217120
,2,828,1965
,2,35914,85
,2,35437,85
,2,1372,85
,2,35505,2205
,2,35792,3365
,2,35778,2895
,2,35863,1850
,2,35424,2515
,2,35591,2265
,2,35854,1700
,2,35483,1795
,2,35647,3315
,2,35709,2170
,2,35893,2840
,2,35722,3090
,2,35900,1680
,2,35924,2285
,2,35775,2210
,2,71,2025
,2,35551,70
,3,36315,204835
,3,36244,217130
,4,1,560
,4,1,560
,4,1,560
,3,36244,4410
,4,3,9985
,4,1,9990
,3,36245,655
,3,36246,10000
,3,36247,10005
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,10010
,6,1,85
,3,36251,226325
,3,36252,10170
,3,36244,230605
,4,1,208555
,4,2,208945
,4,3,208635
,4,4,195255
,4,5,230710
,4,6,990
,4,7,231275
,4,8,208590
,4,9,1570
,4,10,231280
,4,11,211395
,4,12,209010
,4,13,208590
,4,14,10020
,4,15,208280
,4,16,10145
,4,17,208925
,4,18,4370
,4,19,230710
,4,20,195280
,4,21,230710
,4,22,208590
,4,23,10020
,4,24,208590
,4,25,10180
,4,26,208690
,4,27,208590
,4,28,212095
,4,29,231285
,4,30,10185
,4,31,208690
,4,32,208590
,4,33,10020
,4,34,208590
,4,35,195280
,4,36,230735
,4,37,16560
,4,38,208590
,4,39,195280
,4,40,230735
,4,41,195255
,4,42,208590
,4,43,10165
,4,44,208925
,4,45,208590
,4,46,208590
,4,47,231290
,4,48,208615
,4,49,231290
,3,36244,4430
,4,5,4500
,4,6,4515
,4,7,4520
,4,8,4500
,3,36245,10020
,3,36246,10025
,3,36247,10030
,3,36248,10020
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226350
,3,36252,10200
,3,36244,230605
,4,1,208635
,4,2,213040
,4,3,208590
,4,4,4665
,4,5,208590
,4,6,29045
,4,7,208590
,4,8,9860
,4,9,231300
,4,10,208740
,4,11,28595
,4,12,10195
,4,13,208925
,4,14,9560
,4,15,209245
,4,16,28595
,4,17,4230
,4,18,231305
,4,19,208590
,4,20,9795
,4,21,231310
,4,22,10210
,4,23,208690
,4,24,231315
,4,25,208615
,4,26,231315
,3,36244,4430
,4,5,275
,3,36245,10040
,3,36246,10025
,3,36247,10030
,3,36248,10020
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10050
,3,36246,10025
,3,36247,10030
,3,36248,10020
,3,36249,1450
,3,36250,340
,6,1,10055
,3,36259,203815
,3,36261,730
,4,2,217255
,3,36262,217250
,3,36244,234750
,3,36245,10065
,3,36246,10025
,3,36247,10030
,3,36248,10020
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10075
,3,36246,10025
,3,36247,10030
,3,36248,10020
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10085
,3,36246,10025
,3,36247,10030
,3,36248,10020
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10095
,3,36246,10025
,3,36247,10030
,3,36248,10020
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,10105
,4,1,10110
,4,3,10115
,4,5,10120
,4,7,10125
,4,9,10130
,4,11,10135
,4,13,10140
,3,36245,655
,3,36246,10150
,3,36247,10155
,3,36248,10020
,3,36263,9210
,3,36249,1450
,3,36250,4520
,6,1,10160
,3,36251,226345
,3,36252,10190
,3,36244,230605
,4,1,208635
,4,2,231295
,4,3,208615
,4,4,231295
,3,36244,4430
,3,36259,430
,3,36261,217140
,3,36244,234750
,3,36245,655
,3,36246,10025
,3,36247,10030
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,10175
,4,1,10180
,4,3,10185
,3,36244,4410
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,10205
,4,1,10210
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,3,10240
,4,1,10245
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,10255
,6,1,85
,3,36372,9560
,3,36373,217280
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,9210
,3,36249,335
,3,36250,10265
,6,1,85
,3,36372,9560
,3,36373,217285
,3,36244,4410
,3,36244,590
,4,1,10285
,0,43,1835
,0,488,85
,0,44,204860
,2,35551,425
,3,36254,10250
,3,36255,204855
,6,64,85
,3,36244,675
,4,1,4220
,3,36244,590
,4,1,10285
,4,2,10295
,0,43,1835
,0,488,85
,0,44,204860
,2,35551,425
,3,36254,10260
,3,36255,204855
,6,64,85
,3,36244,675
,4,1,4220
,3,36264,10305
,3,36245,10310
,3,36244,575
,4,3,10315
,3,36244,225610
,3,36245,10325
,3,36246,10330
,3,36247,10335
,3,36248,320
,3,36263,10300
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228190
,3,36252,28365
,3,36244,230605
,4,1,208635
,4,2,11410
,4,3,232860
,4,4,28375
,4,5,208690
,4,6,11150
,4,7,232865
,4,8,232870
,4,9,208615
,4,10,232870
,3,36244,4430
,4,5,270
,4,6,4500
,3,36245,10345
,3,36246,10350
,3,36247,10355
,3,36248,320
,3,36263,10300
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226565
,3,36252,12620
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,208720
,4,4,231435
,4,5,208615
,4,6,231435
,4,7,208590
,4,8,208535
,4,9,208535
,4,10,10365
,4,11,231440
,4,12,208590
,4,14,208800
,4,15,10345
,4,16,209190
,4,17,12630
,4,18,208690
,4,19,10385
,4,20,231445
,4,21,208590
,4,22,211390
,4,23,208370
,4,24,265
,4,25,208895
,4,26,208590
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,3,36245,10365
,3,36246,10370
,3,36247,10375
,3,36248,320
,3,36263,10300
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226580
,3,36375,12635
,3,36252,12640
,3,36244,230605
,4,1,208635
,4,2,10405
,4,3,231450
,4,4,208590
,4,7,208720
,4,8,230750
,4,9,208645
,4,10,208720
,4,11,4525
,4,12,208590
,4,13,230835
,4,14,208590
,4,15,10370
,4,17,230835
,4,18,208590
,4,19,208390
,4,20,208590
,4,21,231455
,4,22,208590
,4,23,208590
,4,25,208800
,4,26,10345
,4,27,231460
,4,28,195280
,4,29,230780
,4,30,208405
,4,31,208430
,4,32,208590
,4,33,195280
,4,34,230735
,4,35,16560
,4,36,208590
,4,37,208590
,4,38,10345
,4,39,209190
,4,40,195280
,4,41,230705
,4,42,195280
,4,43,230705
,4,44,211990
,4,45,230780
,4,46,10385
,4,47,231445
,4,48,231465
,4,49,231470
,4,50,208615
,4,51,231470
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10275
,4,12,11765
,4,13,11770
,4,14,285
,3,36245,10385
,3,36246,10390
,3,36247,10395
,3,36248,320
,3,36263,10300
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226615
,3,36375,12680
,3,36252,12685
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,208665
,4,4,208590
,4,5,208590
,4,6,10390
,4,7,208720
,4,8,208590
,4,9,10390
,4,10,10390
,4,11,208680
,4,12,231480
,4,13,208680
,4,14,231480
,4,15,208680
,4,16,231480
,4,17,10345
,4,18,231485
,4,19,208590
,4,20,208680
,4,21,231490
,4,22,208615
,4,23,231490
,4,24,231480
,4,25,208220
,4,26,231490
,4,27,208615
,4,28,231490
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10275
,4,12,11765
,4,13,11770
,4,1,10325
,4,2,10320
,4,3,10405
,4,5,10410
,4,7,10345
,4,8,10340
,4,9,10365
,4,10,10360
,4,11,10385
,4,12,10380
,3,36244,4410
,4,3,10420
,4,1,10425
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,10440
,3,36247,10430
,3,36248,320
,3,36263,10300
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226430
,3,36252,10415
,3,36244,230605
,4,1,10400
,4,2,208590
,4,3,208635
,4,4,10405
,4,5,3630
,4,6,230710
,4,7,10425
,4,8,208690
,4,9,208590
,4,10,10410
,4,11,10405
,4,12,230710
,4,13,208590
,4,14,231355
,4,15,208615
,4,16,231355
,4,1,560
,4,2,10450
,2,35551,430
,3,36244,195565
,4,1,560
,4,2,10460
,2,35551,430
,3,36244,195565
,3,36264,10470
,3,36245,10475
,3,36244,575
,4,3,10480
,3,36244,225610
,4,1,10490
,4,3,10495
,3,36244,7530
,4,1,10505
,4,2,10510
,4,3,10515
,4,4,10520
,4,5,10525
,4,6,10530
,4,7,10535
,4,2,10500
,3,36244,7530
,4,1,10550
,4,2,10555
,4,3,10560
,4,4,10565
,4,5,10570
,4,6,10575
,4,7,10580
,4,8,10585
,4,9,10590
,4,10,10595
,4,11,10600
,4,12,10605
,4,2,10545
,3,36244,7530
,4,1,10620
,4,2,10625
,4,3,10630
,4,4,10635
,4,5,10640
,4,6,10645
,4,7,10650
,4,2,10615
,3,36244,7530
,4,1,10665
,4,2,10670
,4,3,10675
,4,4,10680
,4,5,10570
,4,6,10685
,4,7,10690
,4,8,10695
,4,9,10700
,4,10,10705
,4,11,10710
,4,12,10715
,4,2,10660
,3,36245,10730
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10740
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10750
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10760
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10770
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10780
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10790
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10800
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10810
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10820
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10830
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10840
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10850
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10860
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10870
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10880
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10750
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10895
,3,36246,10900
,3,36247,10905
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229205
,3,36371,195035
,3,36252,30765
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,233685
,4,4,208615
,4,5,233685
,3,36244,4430
,3,36245,4890
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10920
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10930
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4900
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10945
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10955
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4910
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10970
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10980
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,10990
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11000
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11010
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11020
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11030
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11040
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11050
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11060
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11070
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11080
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11090
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11100
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11110
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11120
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11130
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11140
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11150
,3,36246,11155
,3,36247,11160
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228195
,3,36252,28380
,3,36244,230605
,4,1,208635
,4,2,1020
,4,3,320
,4,4,1235
,4,5,208325
,4,6,10730
,4,7,209350
,4,8,4195
,4,9,232875
,4,10,208590
,4,11,208590
,4,12,232880
,4,13,208615
,4,14,232880
,3,36244,4430
,4,5,270
,3,36245,11170
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11180
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11190
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11200
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11210
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11220
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11230
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11240
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11250
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11260
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11270
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11280
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11290
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11300
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11310
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11320
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11330
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11340
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11350
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11360
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11370
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11380
,3,36246,4220
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11390
,3,36246,11395
,3,36247,11400
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226470
,3,36252,11785
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,11410
,4,4,230710
,4,5,10750
,4,6,11460
,4,7,230710
,4,8,10880
,4,9,11455
,4,10,230710
,4,11,10895
,4,12,11465
,4,13,230710
,4,14,4375
,4,15,209270
,4,16,4780
,4,17,209245
,4,18,11410
,4,19,230710
,4,20,195280
,4,21,230710
,4,22,16560
,4,23,11410
,4,24,230710
,4,25,208590
,4,26,11410
,4,27,230710
,4,28,195280
,4,29,230710
,4,30,4890
,4,31,11470
,4,32,230710
,4,33,10920
,4,34,11475
,4,35,230710
,4,36,10930
,4,37,11480
,4,38,230710
,4,39,4900
,4,40,11485
,4,41,230710
,4,42,10945
,4,43,11490
,4,44,230710
,4,45,10955
,4,46,11495
,4,47,230710
,4,48,4910
,4,49,11500
,4,50,230710
,4,51,10970
,4,52,11505
,4,53,230710
,4,54,10980
,4,55,11510
,4,56,230710
,4,57,10990
,4,58,11515
,4,59,230710
,4,60,11000
,4,61,11520
,4,62,230710
,4,63,11010
,4,64,11525
,4,65,230710
,4,66,11020
,4,67,11530
,4,68,230710
,4,69,11030
,4,70,11535
,4,71,230710
,4,72,11040
,4,73,11540
,4,74,230710
,4,75,11050
,4,76,11545
,4,77,230710
,4,78,11060
,4,79,11550
,4,80,230710
,4,81,11070
,4,82,11555
,4,83,230710
,4,84,11080
,4,85,11560
,4,86,230710
,4,87,11090
,4,88,11565
,4,89,230710
,4,90,11100
,4,91,11570
,4,92,230710
,4,93,11110
,4,94,11575
,4,95,230710
,4,96,11120
,4,97,11580
,4,98,230710
,4,99,11130
,4,100,11585
,4,101,230710
,4,102,11140
,4,103,11590
,4,104,230710
,4,105,11150
,4,106,11595
,4,107,230710
,4,108,11170
,4,109,11600
,4,110,230710
,4,111,11180
,4,112,11605
,4,113,230710
,4,114,11190
,4,115,11610
,4,116,230710
,4,117,11200
,4,118,11615
,4,119,230710
,4,120,11210
,4,121,11620
,4,122,230710
,4,123,11220
,4,124,11625
,4,125,230710
,4,126,11230
,4,127,11630
,4,128,230710
,4,129,11240
,4,130,11635
,4,131,230710
,4,132,11250
,4,133,11640
,4,134,230710
,4,135,11260
,4,136,11645
,4,137,230710
,4,138,11270
,4,139,11650
,4,140,230710
,4,141,11280
,4,142,11655
,4,143,230710
,4,144,11290
,4,145,11660
,4,146,230710
,4,147,11300
,4,148,11665
,4,149,230710
,4,150,11340
,4,151,11685
,4,152,230710
,4,153,11310
,4,154,11670
,4,155,230710
,4,156,11320
,4,157,11675
,4,158,230710
,4,159,11330
,4,160,11680
,4,161,230710
,4,162,11360
,4,163,11690
,4,164,230710
,4,165,11370
,4,166,11695
,4,167,230710
,4,168,4375
,4,169,209285
,4,170,4780
,4,171,209245
,4,172,231375
,4,173,208615
,4,174,231375
,3,36244,4430
,4,1,11410
,4,3,10730
,4,4,10725
,4,5,11415
,4,7,11420
,4,9,10740
,4,10,10735
,4,11,10750
,4,12,10745
,4,13,10760
,4,14,10755
,4,15,10770
,4,16,10765
,4,17,10780
,4,18,10775
,4,19,10790
,4,20,10785
,4,21,10800
,4,22,10795
,4,23,11425
,4,25,11430
,4,27,11435
,4,29,10810
,4,30,10805
,4,31,10820
,4,32,10815
,4,33,11440
,4,35,11445
,4,37,10830
,4,38,10825
,4,39,10840
,4,40,10835
,4,41,10850
,4,42,10845
,4,43,10860
,4,44,10855
,4,45,10870
,4,46,10865
,4,47,11450
,4,49,11455
,4,50,10875
,4,51,11460
,4,52,10885
,4,53,11465
,4,54,10890
,4,55,11470
,4,56,10910
,4,57,11475
,4,58,10915
,4,59,11480
,4,60,10925
,4,61,11485
,4,62,10935
,4,63,11490
,4,64,10940
,4,65,11495
,4,66,10950
,4,67,11500
,4,68,10960
,4,69,11505
,4,70,10965
,4,71,11510
,4,72,10975
,4,73,11515
,4,74,10985
,4,75,11520
,4,76,10995
,4,77,11525
,4,78,11005
,4,79,11530
,4,80,11015
,4,81,11535
,4,82,11025
,4,83,11540
,4,84,11035
,4,85,11545
,4,86,11045
,4,87,11550
,4,88,11055
,4,89,11555
,4,90,11065
,4,91,11560
,4,92,11075
,4,93,11565
,4,94,11085
,4,95,11570
,4,96,11095
,4,97,11575
,4,98,11105
,4,99,11580
,4,100,11115
,4,101,11585
,4,102,11125
,4,103,11590
,4,104,11135
,4,105,11595
,4,106,11145
,4,107,11600
,4,108,11165
,4,109,11605
,4,110,11175
,4,111,11610
,4,112,11185
,4,113,11615
,4,114,11195
,4,115,11620
,4,116,11205
,4,117,11625
,4,118,11215
,4,119,11630
,4,120,11225
,4,121,11635
,4,122,11235
,4,123,11640
,4,124,11245
,4,125,11645
,4,126,11255
,4,127,11650
,4,128,11265
,4,129,11655
,4,130,11275
,4,131,11660
,4,132,11285
,4,133,11665
,4,134,11295
,4,135,11670
,4,136,11305
,4,137,11675
,4,138,11315
,4,139,11680
,4,140,11325
,4,141,11685
,4,142,11335
,4,143,11350
,4,144,11345
,4,145,11690
,4,146,11355
,4,147,11695
,4,148,11365
,4,149,11380
,4,150,11375
,4,151,11390
,4,152,11385
,3,36245,655
,3,36246,1240
,3,36247,1245
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,11710
,4,1,11715
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,11730
,3,36247,11720
,3,36248,320
,3,36263,10465
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226440
,3,36252,11705
,3,36244,230605
,4,1,11405
,4,2,208590
,4,3,208635
,4,4,11410
,4,5,990
,4,6,230710
,4,7,1235
,4,8,230710
,4,9,208590
,4,10,11415
,4,11,4400
,4,12,230710
,4,13,208590
,4,14,11420
,4,15,208590
,4,16,11425
,4,17,10485
,4,18,208655
,4,19,4400
,4,20,230710
,4,21,10490
,4,22,231360
,4,23,208590
,4,24,11410
,4,25,230710
,4,26,11700
,4,28,208590
,4,29,208590
,4,30,11410
,4,31,230710
,4,32,11410
,4,33,230710
,4,34,4400
,4,35,230710
,4,36,11715
,4,37,208690
,4,38,208590
,4,39,11430
,4,40,10540
,4,41,208735
,4,42,208590
,4,43,11435
,4,44,10610
,4,45,208735
,4,46,208590
,4,47,11440
,4,48,10655
,4,49,208735
,4,50,208590
,4,51,11445
,4,52,10720
,4,53,208735
,4,54,208590
,4,55,11450
,4,56,4375
,4,57,209110
,4,58,208590
,4,59,11390
,4,60,209150
,4,61,231365
,4,62,208615
,4,63,231365
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,962,20445
,2,955,20465
,2,756,11735
,2,963,20585
,2,964,20590
,2,965,20595
,2,966,20600
,2,967,20605
,2,968,20610
,2,34455,20615
,2,34456,20625
,2,34457,20635
,2,35551,425
,3,36254,19255
,3,36255,20505
,6,64,203275
,3,36244,197895
,4,1,203710
,3,36251,229585
,3,36371,195040
,3,36244,230605
,4,1,208635
,4,2,208590
,4,1,560
,3,36244,4410
,4,3,11755
,4,1,11760
,3,36244,4410
,3,36264,11795
,3,36245,11800
,3,36244,575
,4,3,11805
,3,36244,225610
,3,36245,11815
,3,36246,11820
,3,36247,11825
,3,36248,320
,3,36263,11790
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227575
,3,36252,21285
,3,36244,230605
,4,1,208635
,4,2,230750
,4,3,21455
,4,4,230720
,4,5,4380
,4,6,209190
,4,7,11815
,4,8,209085
,4,9,230835
,4,10,208305
,4,11,208370
,4,12,232365
,4,13,208615
,4,14,232365
,4,15,208220
,4,16,208590
,4,17,21295
,4,18,5760
,4,19,232370
,4,20,230625
,4,21,208590
,4,22,208720
,4,23,11815
,4,24,232375
,4,25,230835
,4,26,232365
,4,27,208615
,4,28,232365
,4,29,230625
,4,30,208590
,4,31,232365
,4,32,208615
,4,33,232365
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10275
,4,12,11765
,3,36245,10880
,3,36246,11835
,3,36247,11840
,3,36248,320
,3,36263,11790
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227570
,3,36252,21280
,3,36244,230605
,4,1,208635
,4,2,4250
,4,3,209190
,4,4,208590
,4,5,1020
,4,6,320
,4,7,1020
,4,8,208740
,4,9,21275
,4,10,208315
,4,11,655
,4,12,230790
,4,13,655
,4,14,11815
,4,15,209245
,4,16,232360
,4,17,208615
,4,18,232360
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,3,36245,11850
,3,36246,4220
,3,36248,320
,3,36263,11790
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11860
,3,36246,4220
,3,36248,320
,3,36263,11790
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11870
,3,36246,4220
,3,36248,320
,3,36263,11790
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,11880
,3,36246,11885
,3,36247,11890
,3,36248,320
,3,36263,11790
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227935
,3,36252,23320
,3,36244,230605
,4,1,208635
,4,2,21455
,4,3,230720
,4,4,208730
,4,5,213005
,4,6,7385
,4,7,209135
,4,9,232620
,4,10,208615
,4,11,232620
,4,12,208590
,4,13,208720
,4,14,213730
,4,15,4375
,4,16,209350
,4,17,9340
,4,18,209160
,4,19,208590
,4,20,211545
,4,21,7385
,4,22,231720
,4,23,231125
,4,24,208590
,4,25,21455
,4,26,230720
,4,27,208830
,4,28,231455
,4,29,7370
,4,30,232625
,4,32,208590
,4,33,7385
,4,34,209335
,4,35,231125
,4,36,208590
,4,37,7385
,4,38,231720
,4,39,212740
,4,40,7385
,4,41,209135
,4,42,21455
,4,43,230705
,4,44,11920
,4,45,209220
,4,46,21455
,4,47,230705
,4,48,208645
,4,49,208920
,4,50,211360
,4,51,230835
,4,52,208305
,4,53,208680
,4,54,232620
,4,55,208615
,4,56,232620
,4,57,208220
,4,58,208920
,4,59,208645
,4,60,208350
,4,61,80
,4,62,7385
,4,63,209135
,4,64,212740
,4,65,7385
,4,66,209135
,4,67,230750
,4,68,208920
,4,69,208645
,4,70,208350
,4,71,80
,4,72,7385
,4,73,209135
,4,74,21455
,4,75,230705
,4,76,11920
,4,77,209220
,4,78,21455
,4,79,230705
,4,80,208645
,4,81,208920
,4,82,211360
,4,83,230835
,4,84,208305
,4,85,208370
,4,86,232620
,4,87,208615
,4,88,232620
,4,89,208515
,4,90,21455
,4,91,230705
,4,92,11920
,4,93,209220
,4,94,21455
,4,95,230705
,4,96,208645
,4,97,80
,4,98,7385
,4,99,209135
,4,100,212740
,4,101,7385
,4,102,209135
,4,103,21455
,4,104,230705
,4,105,230750
,4,106,11920
,4,107,209220
,4,108,21455
,4,109,230705
,4,110,208645
,4,111,208920
,4,112,211360
,4,113,230835
,4,114,208305
,4,115,208370
,4,116,232620
,4,117,208615
,4,118,232620
,4,119,208515
,4,120,7370
,4,121,209275
,4,122,211770
,4,123,7385
,4,124,209335
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10275
,4,12,11765
,3,36245,11900
,3,36246,11905
,3,36247,11910
,3,36248,320
,3,36263,11790
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227980
,3,36252,23445
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,208720
,4,4,213730
,4,5,4375
,4,6,209350
,4,7,9340
,4,8,209160
,4,9,208590
,4,10,213115
,4,11,7385
,4,12,231720
,4,14,5795
,4,15,232695
,4,16,21455
,4,17,230720
,4,18,231515
,4,19,208720
,4,20,208590
,4,21,7385
,4,22,231720
,4,23,208590
,4,24,7385
,4,25,231720
,4,26,205675
,4,27,7385
,4,28,231720
,4,29,21455
,4,30,230720
,4,31,230750
,4,32,11920
,4,33,232595
,4,34,21455
,4,35,230720
,4,36,208730
,4,37,7370
,4,38,209265
,4,39,7370
,4,40,209265
,4,42,208305
,4,43,208680
,4,44,232700
,4,45,208615
,4,46,232700
,4,47,208220
,4,48,7370
,4,49,232625
,4,50,212415
,4,51,7385
,4,52,231720
,4,53,232700
,4,54,208615
,4,55,232700
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10275
,4,12,11765
,4,13,11770
,3,36245,11920
,3,36246,11925
,3,36247,11930
,3,36248,320
,3,36263,11790
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227925
,3,36252,23315
,3,36244,230605
,4,1,208635
,4,2,11370
,4,3,230705
,4,4,1020
,4,5,320
,4,6,1020
,4,7,208740
,4,8,4230
,4,9,209190
,4,10,230625
,4,11,208590
,4,12,655
,4,13,208495
,4,14,208590
,4,15,213515
,4,16,7385
,4,17,231720
,4,18,208920
,4,19,208645
,4,20,208350
,4,21,80
,4,22,7385
,4,23,209135
,4,24,208310
,4,25,105
,4,26,115
,4,27,7385
,4,28,209135
,4,29,80
,4,30,7385
,4,31,209135
,4,32,1020
,4,33,320
,4,34,1090
,4,35,208325
,4,36,4195
,4,37,209190
,4,38,208920
,4,39,208645
,4,40,208350
,4,41,80
,4,42,7385
,4,43,209135
,4,44,1020
,4,45,320
,4,46,1190
,4,47,208325
,4,48,4230
,4,49,209190
,4,50,208590
,4,51,7385
,4,52,209135
,4,53,1020
,4,54,320
,4,55,1160
,4,56,208325
,4,57,208310
,4,58,105
,4,59,115
,4,60,7385
,4,61,209135
,4,62,11880
,4,63,232605
,4,64,11900
,4,65,232610
,4,66,232615
,4,67,208615
,4,68,232615
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,3,36245,11940
,3,36246,11945
,3,36247,11950
,3,36248,320
,3,36263,11790
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227920
,3,36252,23290
,3,36244,230605
,4,1,208635
,4,2,208730
,4,3,3630
,4,4,231705
,4,5,23300
,4,6,208690
,4,7,655
,4,8,3630
,4,9,231705
,4,10,23305
,4,11,208690
,4,12,11920
,4,13,232595
,4,14,21455
,4,15,230720
,4,16,208730
,4,18,232600
,4,19,208615
,4,20,232600
,4,21,655
,4,22,21455
,4,23,230720
,4,24,655
,4,25,208590
,4,26,1020
,4,27,320
,4,28,1090
,4,29,208560
,4,30,4195
,4,31,209190
,4,32,1020
,4,33,320
,4,34,1190
,4,35,208560
,4,36,4230
,4,37,209190
,4,38,4290
,4,39,209190
,4,40,9130
,4,41,209160
,4,42,9125
,4,43,209160
,4,44,213130
,4,45,7640
,4,46,209085
,4,47,21455
,4,48,230705
,4,49,208245
,4,50,7640
,4,51,209085
,4,52,655
,4,53,655
,4,54,23285
,4,55,208315
,4,56,655
,4,57,230780
,4,58,3630
,4,59,230705
,4,60,23310
,4,61,208690
,4,62,655
,4,63,11870
,4,64,209355
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,3,36245,11960
,3,36246,11965
,3,36247,11970
,3,36248,320
,3,36263,11790
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226485
,3,36252,12030
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,11980
,4,4,230710
,4,5,10880
,4,6,11985
,4,7,230710
,4,8,11940
,4,9,11990
,4,10,230710
,4,11,4375
,4,12,209115
,4,13,4780
,4,14,209245
,4,15,231385
,4,16,208615
,4,17,231385
,3,36244,4430
,4,1,11980
,4,3,11815
,4,4,11810
,4,5,11985
,4,6,11830
,4,7,11850
,4,8,11845
,4,9,11860
,4,10,11855
,4,11,11870
,4,12,11865
,4,13,11880
,4,14,11875
,4,15,11900
,4,16,11895
,4,17,11920
,4,18,11915
,4,19,11990
,4,20,11935
,4,21,11960
,4,22,11955
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,12010
,3,36247,12000
,3,36248,320
,3,36263,11790
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226480
,3,36252,11995
,3,36244,230605
,4,1,11975
,4,2,208590
,4,3,208635
,4,4,11980
,4,5,990
,4,6,230710
,4,7,212295
,4,8,230710
,4,9,208590
,4,10,11960
,4,11,209150
,4,12,231380
,4,13,208615
,4,14,231380
,4,1,560
,4,2,12020
,3,53,85
,2,35551,430
,3,36315,198785
,3,36244,198790
,4,1,560
,3,36244,4410
,3,36264,12040
,3,36245,12045
,3,36244,575
,4,3,12050
,3,36244,225610
,3,36245,12060
,3,36246,12065
,3,36247,12070
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227100
,3,36252,20220
,3,36244,230605
,4,1,208635
,4,2,212665
,4,3,20175
,4,4,208250
,4,5,9340
,4,6,209160
,4,7,208590
,4,8,990
,4,9,230705
,4,10,208310
,4,11,275
,4,12,655
,4,13,212565
,4,14,230705
,4,15,208310
,4,16,10275
,4,17,655
,4,18,208370
,4,19,213855
,4,20,230705
,4,21,208310
,4,22,11775
,4,23,655
,4,24,208895
,4,25,16735
,4,26,230705
,4,27,655
,4,28,4230
,4,29,231305
,4,30,655
,4,31,4230
,4,32,231305
,4,36,8105
,4,37,232115
,4,38,230625
,4,39,208590
,4,40,275
,4,41,208325
,4,42,10275
,4,43,208560
,4,44,11775
,4,45,208560
,4,46,208720
,4,47,212725
,4,48,20185
,4,49,208795
,4,50,208950
,4,51,9370
,4,52,209160
,4,53,208590
,4,55,208310
,4,56,212725
,4,57,20195
,4,58,208795
,4,59,208950
,4,60,9370
,4,61,209160
,4,62,208590
,4,64,208310
,4,65,212725
,4,66,20205
,4,67,208795
,4,68,208950
,4,69,9370
,4,70,209160
,4,71,208590
,4,73,212725
,4,74,20215
,4,75,208795
,4,76,208950
,4,77,9370
,4,78,209160
,4,79,208590
,4,80,208305
,4,81,208680
,4,82,232120
,4,83,208615
,4,84,232120
,4,85,21455
,4,86,230725
,4,87,208220
,4,88,208590
,4,89,208590
,4,90,232120
,4,91,208615
,4,92,232120
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10275
,4,12,11765
,3,36245,12080
,3,36246,1290
,3,36247,1295
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,12090
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,12100
,3,36246,12105
,3,36247,12110
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228450
,3,36252,28710
,3,36244,230605
,4,1,208635
,4,2,12310
,4,3,232355
,4,4,208670
,4,6,12315
,4,7,232970
,4,8,233150
,4,9,208615
,4,10,233150
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,3,36245,12120
,3,36246,12125
,3,36247,12130
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228265
,3,36252,28520
,3,36244,230605
,4,1,208635
,4,2,231465
,4,3,208385
,4,4,231465
,4,5,231465
,4,6,208765
,4,7,208680
,4,8,208730
,4,9,208590
,4,10,225020
,4,11,208590
,4,12,208590
,4,13,208590
,4,14,208590
,4,15,208590
,4,16,208590
,4,17,232980
,4,18,209030
,4,19,232980
,4,20,208305
,4,21,208680
,4,22,231465
,4,23,208730
,4,24,231465
,4,25,208680
,4,26,208730
,4,27,208590
,4,28,225020
,4,29,208590
,4,30,208590
,4,31,208590
,4,32,208590
,4,33,208590
,4,34,208590
,4,35,232980
,4,36,209030
,4,37,232980
,4,38,208305
,4,39,208680
,4,40,208305
,4,41,208680
,4,42,232985
,4,43,208615
,4,44,232985
,4,45,208220
,4,46,232985
,4,47,208615
,4,48,232985
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,4,10,280
,4,11,10275
,4,12,11765
,3,36245,12140
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,12150
,3,36246,12155
,3,36247,12160
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228245
,3,36252,28515
,3,36244,230605
,4,1,208635
,4,2,212930
,4,3,28510
,4,4,208640
,4,5,208950
,4,6,9340
,4,7,209160
,4,8,208590
,4,9,4250
,4,10,209190
,4,11,213860
,4,12,232940
,4,13,4195
,4,14,209190
,4,15,208590
,4,16,990
,4,17,232960
,4,18,208720
,4,19,208220
,4,20,21455
,4,21,230725
,4,22,208450
,4,23,213860
,4,24,230780
,4,26,232965
,4,27,208615
,4,28,232965
,4,29,12310
,4,30,232355
,4,31,208670
,4,32,208310
,4,33,213860
,4,34,230780
,4,37,12315
,4,38,232970
,4,39,208720
,4,40,12310
,4,41,232355
,4,42,231465
,4,43,213860
,4,44,232925
,4,45,12120
,4,46,232975
,3,36244,4430
,4,5,270
,4,6,4500
,4,7,4515
,4,8,4520
,4,9,275
,3,36245,12170
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,12180
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4890
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,12195
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,12205
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,12215
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,12225
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,12235
,3,36246,12240
,3,36247,12245
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226545
,3,36252,12525
,3,36244,230605
,4,1,208555
,4,2,208945
,4,3,208635
,4,4,12520
,4,5,208925
,4,6,231430
,4,7,208615
,4,8,231430
,3,36244,4430
,4,5,270
,4,6,270
,3,36245,12255
,3,36246,12260
,3,36247,12265
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226500
,3,36252,12425
,3,36244,230605
,4,1,208555
,4,2,208635
,4,3,208590
,4,4,12275
,4,5,230710
,4,6,1285
,4,7,208590
,4,8,12275
,4,9,230710
,4,10,195280
,4,11,230710
,4,12,16560
,4,13,12275
,4,14,230710
,4,15,208590
,4,16,12275
,4,17,230710
,4,18,12080
,4,19,230710
,4,20,208590
,4,21,12275
,4,22,230710
,4,23,195280
,4,24,230710
,4,25,12150
,4,26,12285
,4,27,230710
,4,28,12170
,4,29,12300
,4,30,230710
,4,31,4890
,4,32,12305
,4,33,230710
,4,34,12090
,4,35,12280
,4,36,230710
,4,37,4375
,4,38,209180
,4,39,4780
,4,40,209245
,4,41,12275
,4,42,230710
,4,43,195280
,4,44,230710
,4,45,12090
,4,46,230710
,4,47,208590
,4,48,12375
,4,49,208925
,4,50,12385
,4,51,208925
,4,52,12275
,4,53,230710
,4,54,208590
,4,55,12275
,4,56,230710
,4,57,211740
,4,58,208590
,4,59,12275
,4,60,230710
,4,61,212395
,4,62,208590
,4,63,12275
,4,64,230710
,4,65,213225
,4,66,208590
,4,68,208870
,4,69,12395
,4,70,208925
,4,71,12405
,4,72,208925
,4,73,12275
,4,74,230710
,4,75,213855
,4,76,208590
,4,77,12275
,4,78,230710
,4,79,211625
,4,80,208590
,4,81,12415
,4,82,208925
,4,83,12275
,4,84,230710
,4,85,213880
,4,86,12195
,4,87,230710
,4,88,208590
,4,89,12275
,4,90,230710
,4,91,213825
,4,92,12195
,4,93,230710
,4,94,208590
,4,95,12275
,4,96,230710
,4,97,213255
,4,98,12205
,4,99,230710
,4,100,208590
,4,101,12275
,4,102,230710
,4,103,213580
,4,104,12205
,4,105,230710
,4,106,208590
,4,107,12275
,4,108,230710
,4,109,213815
,4,110,12215
,4,111,230710
,4,112,208590
,4,113,12275
,4,114,230710
,4,115,213535
,4,116,12215
,4,117,230710
,4,118,208590
,4,119,12275
,4,120,230710
,4,121,212870
,4,122,12225
,4,123,230710
,4,124,208590
,4,125,12275
,4,126,230710
,4,127,212335
,4,128,12225
,4,129,230710
,4,130,208590
,4,131,12275
,4,132,231395
,4,133,211395
,4,134,208805
,4,135,12235
,4,136,231400
,4,137,208590
,4,138,208305
,4,139,208680
,4,140,231405
,4,141,208615
,4,142,231405
,4,143,208220
,4,144,12275
,4,145,230710
,4,146,208590
,4,147,231405
,4,148,208615
,4,149,231405
,3,36244,4430
,4,5,270
,4,6,4515
,4,7,280
,4,8,10275
,4,9,11770
,4,10,11775
,4,11,275
,4,1,12275
,4,3,12060
,4,4,12055
,4,5,12080
,4,6,12075
,4,7,12280
,4,8,12085
,4,9,12100
,4,10,12095
,4,11,12120
,4,12,12115
,4,13,12140
,4,14,12135
,4,15,12285
,4,16,12145
,4,17,12290
,4,19,12295
,4,21,12300
,4,22,12165
,4,23,12180
,4,24,12175
,4,25,12305
,4,26,12185
,4,27,12195
,4,28,12190
,4,29,12205
,4,30,12200
,4,31,12215
,4,32,12210
,4,33,12225
,4,34,12220
,4,35,12235
,4,36,12230
,4,37,12310
,4,39,12315
,4,41,12255
,4,42,12250
,3,36244,4410
,4,3,12325
,4,1,12330
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,12345
,3,36247,12335
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226490
,3,36252,12320
,3,36244,230605
,4,1,12270
,4,2,208590
,4,3,208635
,4,4,12275
,4,5,990
,4,6,230710
,4,7,1285
,4,8,230710
,4,9,208590
,4,10,12290
,4,11,208590
,4,12,12295
,4,13,208590
,4,14,12310
,4,15,3630
,4,16,230710
,4,17,655
,4,18,12330
,4,19,208690
,4,20,208590
,4,21,12315
,4,23,208590
,4,24,12255
,4,25,209150
,4,26,231390
,4,27,208615
,4,28,231390
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,12380
,6,1,85
,3,36372,12255
,3,36373,217350
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,12390
,6,1,85
,3,36372,12255
,3,36373,217355
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,12400
,6,1,85
,3,36372,12255
,3,36373,217360
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,12410
,6,1,85
,3,36372,12255
,3,36373,217365
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,12420
,6,1,85
,3,36372,12255
,3,36373,217370
,3,36244,4410
,3,36244,4410
,4,3,12435
,4,1,12440
,3,36244,590
,4,1,1300
,4,2,1305
,3,36244,590
,4,1,1300
,4,2,1305
,3,36244,590
,4,1,1300
,4,2,1305
,3,36244,590
,4,1,1310
,4,2,1315
,3,36244,590
,4,1,1310
,4,2,1315
,3,36244,590
,4,1,1320
,4,2,1325
,3,36244,590
,4,1,1320
,4,2,1325
,3,36244,590
,4,1,1330
,4,2,1325
,3,36244,590
,4,1,1330
,4,2,1325
,3,36244,590
,4,1,1335
,4,2,1325
,3,36244,590
,4,1,1335
,4,2,1325
,3,36244,590
,4,1,1340
,4,2,1325
,3,36244,590
,4,1,1340
,4,2,1325
,3,36244,4410
,3,36244,4410
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,12035
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,3,36244,590
,4,1,1345
,4,2,1325
,3,36244,590
,4,1,1350
,4,2,1325
,3,36244,590
,4,1,1355
,4,2,1325
,3,36244,590
,4,1,1360
,4,2,1325
,3,36244,590
,4,1,1365
,4,2,1325
,3,36244,590
,4,1,1370
,4,2,1325
,3,36244,590
,4,1,1375
,4,2,1325
,3,36244,590
,4,1,1380
,4,2,1325
,3,36244,590
,4,1,1385
,4,2,1325
,3,36245,12580
,3,36246,12585
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225505
,3,36244,230605
,4,2,12585
,4,3,230625
,4,4,230625
,4,5,230625
,3,36245,12595
,3,36246,12600
,3,36248,320
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,225510
,3,36244,230605
,4,1,12600
,4,2,230750
,4,3,230625
,4,4,230625
,3,36244,12610
,4,11,12615
,3,36244,234750
,3,36244,4410
,4,3,12625
,4,1,12630
,3,36244,4410
,3,36245,12615
,3,36246,12650
,3,36248,12615
,3,36249,12655
,3,36376,12605
,3,36250,340
,6,1,85
,3,36251,225190
,3,36244,230605
,4,1,208590
,3,36251,225235
,3,36244,230605
,4,1,12655
,4,2,208590
,4,3,230620
,2,35551,425
,2,34299,12665
,3,36254,12645
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,12675
,2,828,12660
,2,35551,430
,3,36244,217420
,3,36259,425
,4,4,19340
,4,5,197800
,4,6,212800
,4,7,223825
,4,8,197220
,4,9,223830
,4,10,197470
,4,11,223835
,4,12,213505
,4,13,13895
,4,14,197710
,4,15,201055
,4,16,196095
,4,17,205460
,4,18,26655
,4,19,223840
,4,20,198130
,4,21,198155
,4,22,16420
,4,23,195640
,4,24,199295
,4,25,199380
,4,26,26060
,4,27,200925
,4,28,195290
,4,29,195375
,4,30,195680
,4,31,195725
,3,36262,223820
,3,36260,214035
,3,36244,234750
,3,36259,12665
,3,36261,12660
,3,36244,234750
,3,36244,4410
,3,36244,12695
,4,1,12700
,4,2,12705
,4,4,12710
,3,36244,234750
,3,36244,225610
,3,36244,225610
,3,36244,12720
,4,3,12725
,3,36244,234750
,3,36244,12610
,4,8,12730
,4,10,12715
,3,36244,12735
,4,1,12740
,4,2,12745
,4,3,12750
,4,4,12755
,4,5,12760
,4,6,12765
,3,36244,234750
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,2,35551,430
,3,36315,204920
,3,36244,455
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,12725
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,12780
,3,36254,12770
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,12785
,2,828,12775
,2,35551,430
,3,36244,217505
,3,36259,12780
,3,36261,12775
,3,36244,234750
,3,36244,12695
,4,1,12795
,4,2,12800
,4,4,12805
,3,36244,225610
,3,36244,225610
,3,36244,12695
,4,1,12815
,4,2,12820
,4,4,12825
,3,36244,225610
,3,36244,225610
,3,36244,12610
,4,4,12835
,3,36244,12840
,4,1,12845
,3,36244,234750
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,12830
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,12860
,3,36254,12850
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,12865
,2,828,12855
,2,35551,430
,3,36244,217570
,3,36259,12860
,3,36261,12855
,3,36244,234750
,3,36244,12610
,4,4,12875
,3,36244,12840
,4,1,12880
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,12870
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,12895
,3,36254,12885
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,12900
,2,828,12890
,2,35551,430
,3,36244,217580
,3,36259,12895
,3,36261,12890
,3,36244,234750
,3,36244,12610
,4,4,12910
,3,36244,12840
,4,1,12915
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,12905
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,12930
,3,36254,12920
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,12935
,2,828,12925
,2,35551,430
,3,36244,217590
,3,36259,12930
,3,36261,12925
,3,36244,234750
,3,36244,12610
,4,4,12945
,3,36244,12840
,4,1,12950
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,12940
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,12965
,3,36254,12955
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,12970
,2,828,12960
,2,35551,430
,3,36244,217600
,3,36259,12965
,3,36261,12960
,3,36244,234750
,3,36244,12610
,4,4,12980
,3,36244,12840
,4,1,12985
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,12975
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13000
,3,36254,12990
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13005
,2,828,12995
,2,35551,430
,3,36244,217610
,3,36259,13000
,3,36261,12995
,3,36244,234750
,3,36244,12610
,4,4,13015
,3,36244,12840
,4,1,13020
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13010
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13035
,3,36254,13025
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13040
,2,828,13030
,2,35551,430
,3,36244,217620
,3,36259,13035
,3,36261,13030
,3,36244,234750
,3,36244,12610
,4,4,13050
,3,36244,12840
,4,1,13055
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13045
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13070
,3,36254,13060
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13075
,2,828,13065
,2,35551,430
,3,36244,217630
,3,36259,13070
,3,36261,13065
,3,36244,234750
,3,36244,12610
,4,4,13085
,3,36244,12840
,4,1,13090
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13080
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13105
,3,36254,13095
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13110
,2,828,13100
,2,35551,430
,3,36244,217640
,3,36259,13105
,3,36261,13100
,3,36244,234750
,3,36244,12610
,4,4,13120
,3,36244,12840
,4,1,13125
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13115
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13140
,3,36254,13130
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13145
,2,828,13135
,2,35551,430
,3,36244,217650
,3,36259,13140
,3,36261,13135
,3,36244,234750
,3,36244,12610
,4,4,13155
,3,36244,12840
,4,1,13160
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13150
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13175
,3,36254,13165
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13180
,2,828,13170
,2,35551,430
,3,36244,217660
,3,36259,13175
,3,36261,13170
,3,36244,234750
,3,36244,12610
,4,4,13190
,3,36244,12840
,4,1,13195
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13185
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13210
,3,36254,13200
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13215
,2,828,13205
,2,35551,430
,3,36244,217670
,3,36259,13210
,3,36261,13205
,3,36244,234750
,3,36244,12610
,4,4,13225
,3,36244,12840
,4,1,13230
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13220
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13245
,3,36254,13235
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13250
,2,828,13240
,2,35551,430
,3,36244,217680
,3,36259,13245
,3,36261,13240
,3,36244,234750
,3,36244,12610
,4,4,13260
,3,36244,12840
,4,1,13265
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13255
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13280
,3,36254,13270
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13285
,2,828,13275
,2,35551,430
,3,36244,217690
,3,36259,13280
,3,36261,13275
,3,36244,234750
,3,36244,12610
,4,4,13295
,3,36244,12840
,4,1,13300
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13290
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13315
,3,36254,13305
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13320
,2,828,13310
,2,35551,430
,3,36244,217700
,3,36259,13315
,3,36261,13310
,3,36244,234750
,3,36244,12610
,4,4,13330
,3,36244,12840
,4,1,13335
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13325
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13350
,3,36254,13340
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13355
,2,828,13345
,2,35551,430
,3,36244,217710
,3,36259,13350
,3,36261,13345
,3,36244,234750
,3,36244,12610
,4,4,13365
,3,36244,12840
,4,1,13370
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13360
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13385
,3,36254,13375
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13390
,2,828,13380
,2,35551,430
,3,36244,217720
,3,36259,13385
,3,36261,13380
,3,36244,234750
,3,36244,12610
,4,4,13400
,3,36244,12840
,4,1,13405
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13395
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13420
,3,36254,13410
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13425
,2,828,13415
,2,35551,430
,3,36244,217730
,3,36259,13420
,3,36261,13415
,3,36244,234750
,3,36244,12610
,4,4,13435
,3,36244,12840
,4,1,13440
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13430
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13455
,3,36254,13445
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13460
,2,828,13450
,2,35551,430
,3,36244,217740
,3,36259,13455
,3,36261,13450
,3,36244,234750
,3,36244,12610
,4,4,13470
,3,36244,12840
,4,1,13475
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13465
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13490
,3,36254,13480
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13495
,2,828,13485
,2,35551,430
,3,36244,217750
,3,36259,13490
,3,36261,13485
,3,36244,234750
,3,36244,12610
,4,4,13505
,3,36244,12840
,4,1,13510
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13500
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13525
,3,36254,13515
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13530
,2,828,13520
,2,35551,430
,3,36244,217760
,3,36259,13525
,3,36261,13520
,3,36244,234750
,3,36244,12610
,4,4,13540
,3,36244,12840
,4,1,13545
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13535
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13560
,3,36254,13550
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13565
,2,828,13555
,2,35551,430
,3,36244,217770
,3,36259,13560
,3,36261,13555
,3,36244,234750
,3,36244,12610
,4,4,13575
,3,36244,12840
,4,1,13580
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13570
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13595
,3,36254,13585
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13600
,2,828,13590
,2,35551,430
,3,36244,217780
,3,36259,13595
,3,36261,13590
,3,36244,234750
,3,36244,12610
,4,4,13610
,3,36244,12840
,4,1,13615
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13605
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13630
,3,36254,13620
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13635
,2,828,13625
,2,35551,430
,3,36244,217790
,3,36259,13630
,3,36261,13625
,3,36244,234750
,3,36244,12610
,4,4,13645
,3,36244,12840
,4,1,13650
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13640
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13665
,3,36254,13655
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13670
,2,828,13660
,2,35551,430
,3,36244,217800
,3,36259,13665
,3,36261,13660
,3,36244,234750
,3,36244,12610
,4,4,13680
,3,36244,12840
,4,1,13685
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,13675
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,13700
,3,36254,13690
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,13705
,2,828,13695
,2,35551,430
,3,36244,217810
,3,36259,13700
,3,36261,13695
,3,36244,234750
,3,36244,12610
,4,4,13715
,4,10,13720
,4,11,13725
,3,36244,12840
,4,1,13730
,3,36244,12720
,4,2,13735
,4,3,13710
,3,36244,225610
,1,1,204930
,1,2,13750
,2,35551,70
,3,36314,204925
,3,36244,195515
,3,36244,13745
,4,1,13710
,3,36244,234750
,3,36244,12610
,4,4,13755
,4,12,13740
,3,36244,12840
,4,1,13760
,3,36244,225610
,3,36245,13725
,3,36246,12650
,3,36248,13725
,3,36249,12655
,3,36376,13710
,3,36250,340
,6,1,85
,2,828,695
,2,35551,430
,3,36244,217820
,3,36259,13770
,3,36261,695
,3,36244,234750
,3,36244,12610
,4,2,13785
,4,4,13790
,4,10,13795
,4,11,13800
,1,1,204940
,2,35551,70
,3,36314,204935
,3,36244,195515
,3,36244,12840
,4,1,13805
,3,36244,12720
,4,2,13810
,4,3,13780
,3,36244,225610
,1,1,204950
,1,4,204955
,1,5,13820
,1,7,204960
,1,8,13835
,1,10,204965
,1,11,13850
,1,13,204970
,1,14,13865
,2,35551,70
,3,36314,204945
,3,36244,195515
,3,36244,13745
,4,1,13780
,3,36244,12610
,4,4,13825
,4,12,13815
,3,36244,12840
,4,1,13830
,3,36244,225610
,3,36244,12610
,4,4,13840
,4,12,13815
,3,36244,12840
,4,1,13845
,3,36244,225610
,3,36244,12610
,4,4,13855
,4,12,13815
,3,36244,12840
,4,1,13860
,3,36244,225610
,3,36244,12610
,4,4,13870
,4,12,13815
,3,36244,12840
,4,1,13875
,3,36244,225610
,3,36245,13800
,3,36246,12650
,3,36248,13800
,3,36249,12655
,3,36376,13780
,3,36250,340
,6,1,85
,2,828,775
,2,35551,430
,3,36244,217830
,3,36259,425
,3,36377,12670
,3,36260,214035
,3,36244,234750
,3,36259,13885
,3,36261,775
,3,36244,234750
,3,36244,12610
,4,2,13910
,4,4,13915
,4,10,13920
,4,11,13925
,1,1,204980
,2,35551,70
,3,36314,204975
,3,36244,195515
,3,36244,12840
,4,1,13930
,3,36244,12720
,4,2,13935
,4,3,13905
,3,36244,225610
,1,1,204990
,1,4,204995
,1,5,13945
,1,7,205000
,1,8,13960
,1,10,205005
,1,11,13975
,1,13,205010
,1,14,13990
,2,35551,70
,3,36314,204985
,3,36244,195515
,3,36244,13745
,4,1,13905
,3,36244,12610
,4,4,13950
,4,12,13940
,3,36244,12840
,4,1,13955
,3,36244,225610
,3,36244,12610
,4,4,13965
,4,12,13940
,3,36244,12840
,4,1,13970
,3,36244,225610
,3,36244,12610
,4,4,13980
,4,12,13940
,3,36244,12840
,4,1,13985
,3,36244,225610
,3,36244,12610
,4,4,13995
,4,12,13940
,3,36244,12840
,4,1,14000
,3,36244,225610
,3,36245,13925
,3,36246,12650
,3,36248,13925
,3,36249,12655
,3,36376,13905
,3,36250,340
,6,1,85
,2,828,790
,2,35551,430
,3,36244,217840
,3,36259,14010
,3,36261,790
,3,36244,234750
,3,36244,12610
,4,2,14030
,4,4,14035
,4,10,14040
,4,11,14045
,1,1,205020
,2,35551,70
,3,36314,205015
,3,36244,195515
,3,36244,12840
,4,1,14050
,3,36244,12720
,4,2,14055
,4,3,14025
,3,36244,225610
,1,1,205030
,1,4,205035
,1,5,14065
,1,7,205040
,1,8,14080
,1,10,205045
,1,11,14095
,1,13,205050
,1,14,14110
,2,35551,70
,3,36314,205025
,3,36244,195515
,3,36244,13745
,4,1,14025
,3,36244,12610
,4,4,14070
,4,12,14060
,3,36244,12840
,4,1,14075
,3,36244,225610
,3,36244,12610
,4,4,14085
,4,12,14060
,3,36244,12840
,4,1,14090
,3,36244,225610
,3,36244,12610
,4,4,14100
,4,12,14060
,3,36244,12840
,4,1,14105
,3,36244,225610
,3,36244,12610
,4,4,14115
,4,12,14060
,3,36244,12840
,4,1,14120
,3,36244,225610
,3,36245,14045
,3,36246,12650
,3,36248,14045
,3,36249,12655
,3,36376,14025
,3,36250,340
,6,1,85
,2,828,705
,2,35551,430
,3,36244,217850
,3,36259,14130
,3,36261,705
,3,36244,234750
,3,36244,12610
,4,2,14150
,4,4,14155
,4,10,14160
,4,11,14165
,1,1,205060
,2,35551,70
,3,36314,205055
,3,36244,195515
,3,36244,12840
,4,1,14170
,3,36244,12720
,4,2,14175
,4,3,14145
,3,36244,225610
,1,1,205070
,1,4,205075
,1,5,14185
,1,7,205080
,1,8,14200
,1,10,205085
,1,11,14215
,1,13,205090
,1,14,14230
,2,35551,70
,3,36314,205065
,3,36244,195515
,3,36244,13745
,4,1,14145
,3,36244,12610
,4,4,14190
,4,12,14180
,3,36244,12840
,4,1,14195
,3,36244,225610
,3,36244,12610
,4,4,14205
,4,12,14180
,3,36244,12840
,4,1,14210
,3,36244,225610
,3,36244,12610
,4,4,14220
,4,12,14180
,3,36244,12840
,4,1,14225
,3,36244,225610
,3,36244,12610
,4,4,14235
,4,12,14180
,3,36244,12840
,4,1,14240
,3,36244,225610
,3,36245,14165
,3,36246,12650
,3,36248,14165
,3,36249,12655
,3,36376,14145
,3,36250,340
,6,1,85
,2,828,830
,2,35551,430
,3,36244,217860
,3,36259,14250
,3,36261,830
,3,36244,234750
,3,36244,12610
,4,2,14270
,4,4,14275
,4,10,14280
,4,11,14285
,1,1,205100
,2,35551,70
,3,36314,205095
,3,36244,195515
,3,36244,12840
,4,1,14290
,3,36244,12720
,4,2,14295
,4,3,14265
,3,36244,225610
,1,1,205110
,1,4,205115
,1,5,14305
,1,7,205120
,1,8,14320
,1,10,205125
,1,11,14335
,1,13,205130
,1,14,14350
,2,35551,70
,3,36314,205105
,3,36244,195515
,3,36244,13745
,4,1,14265
,3,36244,12610
,4,4,14310
,4,12,14300
,3,36244,12840
,4,1,14315
,3,36244,225610
,3,36244,12610
,4,4,14325
,4,12,14300
,3,36244,12840
,4,1,14330
,3,36244,225610
,3,36244,12610
,4,4,14340
,4,12,14300
,3,36244,12840
,4,1,14345
,3,36244,225610
,3,36244,12610
,4,4,14355
,4,12,14300
,3,36244,12840
,4,1,14360
,3,36244,225610
,3,36245,14285
,3,36246,12650
,3,36248,14285
,3,36249,12655
,3,36376,14265
,3,36250,340
,6,1,85
,2,828,925
,2,35551,430
,3,36244,217870
,3,36259,14370
,3,36261,925
,3,36244,234750
,3,36244,12610
,4,2,14390
,4,4,14395
,4,10,14400
,4,11,14405
,1,1,205140
,2,35551,70
,3,36314,205135
,3,36244,195515
,3,36244,12840
,4,1,14410
,3,36244,12720
,4,2,14415
,4,3,14385
,3,36244,225610
,1,1,205150
,1,4,205155
,1,5,14425
,1,7,205160
,1,8,14440
,1,10,205165
,1,11,14455
,1,13,205170
,1,14,14470
,2,35551,70
,3,36314,205145
,3,36244,195515
,3,36244,13745
,4,1,14385
,3,36244,12610
,4,4,14430
,4,12,14420
,3,36244,12840
,4,1,14435
,3,36244,225610
,3,36244,12610
,4,4,14445
,4,12,14420
,3,36244,12840
,4,1,14450
,3,36244,225610
,3,36244,12610
,4,4,14460
,4,12,14420
,3,36244,12840
,4,1,14465
,3,36244,225610
,3,36244,12610
,4,4,14475
,4,12,14420
,3,36244,12840
,4,1,14480
,3,36244,225610
,3,36245,14405
,3,36246,12650
,3,36248,14405
,3,36249,12655
,3,36376,14385
,3,36250,340
,6,1,85
,2,828,835
,2,35551,430
,3,36244,217880
,3,36259,14490
,3,36261,835
,3,36244,234750
,3,36244,12610
,4,2,14510
,4,4,14515
,4,10,14520
,4,11,14525
,1,1,205180
,2,35551,70
,3,36314,205175
,3,36244,195515
,3,36244,12840
,4,1,14530
,3,36244,12720
,4,2,14535
,4,3,14505
,3,36244,225610
,1,1,205190
,1,4,205195
,1,5,14545
,1,7,205200
,1,8,14560
,1,10,205205
,1,11,14575
,1,13,205210
,1,14,14590
,2,35551,70
,3,36314,205185
,3,36244,195515
,3,36244,13745
,4,1,14505
,3,36244,12610
,4,4,14550
,4,12,14540
,3,36244,12840
,4,1,14555
,3,36244,225610
,3,36244,12610
,4,4,14565
,4,12,14540
,3,36244,12840
,4,1,14570
,3,36244,225610
,3,36244,12610
,4,4,14580
,4,12,14540
,3,36244,12840
,4,1,14585
,3,36244,225610
,3,36244,12610
,4,4,14595
,4,12,14540
,3,36244,12840
,4,1,14600
,3,36244,225610
,3,36245,14525
,3,36246,12650
,3,36248,14525
,3,36249,12655
,3,36376,14505
,3,36250,340
,6,1,85
,2,828,920
,2,35551,430
,3,36244,217890
,3,36259,14610
,3,36261,920
,3,36244,234750
,3,36244,12610
,4,2,14630
,4,4,14635
,4,10,14640
,4,11,14645
,1,1,205220
,2,35551,70
,3,36314,205215
,3,36244,195515
,3,36244,12840
,4,1,14650
,3,36244,12720
,4,2,14655
,4,3,14625
,3,36244,225610
,1,1,205230
,1,4,205235
,1,5,14665
,1,7,205240
,1,8,14680
,1,10,205245
,1,11,14695
,1,13,205250
,1,14,14710
,2,35551,70
,3,36314,205225
,3,36244,195515
,3,36244,13745
,4,1,14625
,3,36244,12610
,4,4,14670
,4,12,14660
,3,36244,12840
,4,1,14675
,3,36244,225610
,3,36244,12610
,4,4,14685
,4,12,14660
,3,36244,12840
,4,1,14690
,3,36244,225610
,3,36244,12610
,4,4,14700
,4,12,14660
,3,36244,12840
,4,1,14705
,3,36244,225610
,3,36244,12610
,4,4,14715
,4,12,14660
,3,36244,12840
,4,1,14720
,3,36244,225610
,3,36245,14645
,3,36246,12650
,3,36248,14645
,3,36249,12655
,3,36376,14625
,3,36250,340
,6,1,85
,2,828,710
,2,35551,430
,3,36244,217900
,3,36259,14730
,3,36261,710
,3,36244,234750
,3,36244,12610
,4,2,14750
,4,4,14755
,4,10,14760
,4,11,14765
,1,1,205260
,2,35551,70
,3,36314,205255
,3,36244,195515
,3,36244,12840
,4,1,14770
,3,36244,12720
,4,2,14775
,4,3,14745
,3,36244,225610
,1,1,205270
,1,4,205275
,1,5,14785
,1,7,205280
,1,8,14800
,1,10,205285
,1,11,14815
,1,13,205290
,1,14,14830
,2,35551,70
,3,36314,205265
,3,36244,195515
,3,36244,13745
,4,1,14745
,3,36244,12610
,4,4,14790
,4,12,14780
,3,36244,12840
,4,1,14795
,3,36244,225610
,3,36244,12610
,4,4,14805
,4,12,14780
,3,36244,12840
,4,1,14810
,3,36244,225610
,3,36244,12610
,4,4,14820
,4,12,14780
,3,36244,12840
,4,1,14825
,3,36244,225610
,3,36244,12610
,4,4,14835
,4,12,14780
,3,36244,12840
,4,1,14840
,3,36244,225610
,3,36245,14765
,3,36246,12650
,3,36248,14765
,3,36249,12655
,3,36376,14745
,3,36250,340
,6,1,85
,2,828,700
,2,35551,430
,3,36244,217910
,3,36259,14850
,3,36261,700
,3,36244,234750
,3,36244,12610
,4,4,14870
,4,10,14875
,4,11,14880
,3,36244,12840
,4,1,14885
,3,36244,12720
,4,2,14890
,4,3,14865
,3,36244,225610
,1,1,205300
,1,2,14900
,1,4,205305
,1,5,14915
,1,7,205310
,1,8,14930
,1,10,205315
,1,11,14945
,1,13,205320
,1,14,14960
,1,16,205325
,1,17,14975
,1,19,205330
,1,20,14990
,1,22,205335
,1,23,15005
,1,25,205340
,1,26,15020
,1,28,205345
,1,29,15035
,1,31,205350
,1,32,15050
,1,34,205355
,1,35,15065
,1,37,205360
,1,38,15080
,1,40,205365
,1,41,15095
,1,43,205370
,1,44,15110
,1,46,205375
,1,47,15125
,1,49,85
,1,50,85
,1,51,85
,1,52,85
,1,53,85
,1,54,85
,1,55,85
,1,56,85
,1,57,85
,1,58,85
,1,59,85
,1,60,85
,1,61,85
,1,62,85
,1,63,85
,2,35551,70
,3,36314,205295
,3,36244,195515
,3,36244,13745
,4,1,14865
,3,36244,12610
,4,4,14905
,4,12,14895
,3,36244,12840
,4,1,14910
,3,36244,225610
,3,36244,12610
,4,4,14920
,4,12,14895
,3,36244,12840
,4,1,14925
,3,36244,225610
,3,36244,12610
,4,4,14935
,4,12,14895
,3,36244,12840
,4,1,14940
,3,36244,225610
,3,36244,12610
,4,4,14950
,4,12,14895
,3,36244,12840
,4,1,14955
,3,36244,225610
,3,36244,12610
,4,4,14965
,4,12,14895
,3,36244,12840
,4,1,14970
,3,36244,225610
,3,36244,12610
,4,4,14980
,4,12,14895
,3,36244,12840
,4,1,14985
,3,36244,225610
,3,36244,12610
,4,4,14995
,4,12,14895
,3,36244,12840
,4,1,15000
,3,36244,225610
,3,36244,12610
,4,4,15010
,4,12,14895
,3,36244,12840
,4,1,15015
,3,36244,225610
,3,36244,12610
,4,4,15025
,4,12,14895
,3,36244,12840
,4,1,15030
,3,36244,225610
,3,36244,12610
,4,4,15040
,4,12,14895
,3,36244,12840
,4,1,15045
,3,36244,225610
,3,36244,12610
,4,4,15055
,4,12,14895
,3,36244,12840
,4,1,15060
,3,36244,225610
,3,36244,12610
,4,4,15070
,4,12,14895
,3,36244,12840
,4,1,15075
,3,36244,225610
,3,36244,12610
,4,4,15085
,4,12,14895
,3,36244,12840
,4,1,15090
,3,36244,225610
,3,36244,12610
,4,4,15100
,4,12,14895
,3,36244,12840
,4,1,15105
,3,36244,225610
,3,36244,12610
,4,4,15115
,4,12,14895
,3,36244,12840
,4,1,15120
,3,36244,225610
,3,36244,12610
,4,4,15130
,4,12,14895
,3,36244,12840
,4,1,15135
,3,36244,225610
,3,36245,14880
,3,36246,12650
,3,36248,14880
,3,36249,12655
,3,36376,14865
,3,36250,340
,6,1,85
,2,828,765
,2,35551,430
,3,36244,217920
,3,36259,15145
,3,36261,765
,3,36244,234750
,3,36264,15160
,3,36245,15165
,3,36244,575
,4,3,15170
,3,36244,225610
,3,36244,7530
,4,1,15180
,4,2,15185
,4,2,15175
,3,36245,15200
,3,36246,15205
,3,36247,15210
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226695
,3,36252,16605
,3,36244,230605
,4,1,208555
,4,2,208635
,4,3,206160
,4,4,16910
,4,5,209335
,4,6,16620
,4,7,230710
,4,8,320
,4,9,230710
,4,10,195280
,4,11,230710
,4,12,16555
,4,13,208590
,4,14,16545
,4,15,208315
,4,16,16560
,4,17,230710
,4,18,16550
,4,19,231505
,4,20,16560
,4,21,231510
,4,22,5360
,4,23,209315
,4,24,211990
,4,25,230780
,4,26,12580
,4,27,209335
,4,28,16620
,4,29,230780
,4,30,195315
,4,31,209275
,4,32,195290
,4,33,209275
,4,34,195295
,4,35,209275
,4,36,195300
,4,37,209275
,4,38,195320
,4,39,209275
,4,40,195325
,4,41,209275
,4,42,195330
,4,43,209275
,4,44,195335
,4,45,209275
,4,46,195340
,4,47,209275
,4,48,195345
,4,49,209275
,4,50,195350
,4,51,209275
,4,52,195355
,4,53,209275
,4,54,213840
,4,55,195695
,4,56,209335
,4,57,208720
,4,58,16580
,4,59,208925
,4,60,21400
,4,61,209135
,4,62,196490
,4,63,230710
,4,64,231515
,4,65,22780
,4,66,208510
,4,67,207660
,4,68,16910
,4,69,209135
,4,70,23245
,4,71,209265
,4,72,212470
,4,73,230710
,4,74,212285
,4,75,16615
,4,76,208775
,4,77,196490
,4,78,230710
,4,79,231515
,4,80,208860
,4,81,16625
,4,82,16910
,4,83,209335
,4,84,196490
,4,85,230710
,4,86,196490
,4,87,230710
,4,88,231515
,4,89,199050
,4,90,209335
,4,91,231520
,4,92,196500
,4,93,230710
,4,94,213205
,4,95,230710
,4,96,208300
,4,97,16630
,4,98,16910
,4,99,209135
,4,100,212085
,4,101,209265
,4,102,196500
,4,103,230705
,4,104,213205
,4,105,16915
,4,106,16910
,4,107,209335
,4,108,990
,4,109,230710
,4,110,211655
,4,111,230710
,4,112,208300
,4,113,196495
,4,114,230705
,4,115,16585
,4,117,208590
,4,118,6890
,4,119,209135
,4,120,208310
,4,121,196500
,4,122,230705
,4,123,212355
,4,124,230705
,4,125,208305
,4,126,208310
,4,127,199350
,4,128,230705
,4,129,203370
,4,130,209160
,4,131,199350
,4,132,209275
,4,133,16915
,4,134,16910
,4,135,209135
,4,136,211995
,4,137,230705
,4,138,208310
,4,139,207655
,4,140,16910
,4,141,209135
,4,142,211420
,4,143,209135
,4,144,208310
,4,145,16565
,4,146,208655
,4,147,196500
,4,148,230705
,4,149,211510
,4,150,230705
,4,151,4840
,4,152,209160
,4,153,208310
,4,155,211870
,4,156,230780
,4,157,196500
,4,158,230705
,4,159,211970
,4,160,230705
,4,161,4840
,4,162,209160
,4,163,208310
,4,165,213150
,4,166,230780
,4,167,199360
,4,168,209265
,4,169,23245
,4,170,209135
,4,171,196700
,4,172,16590
,4,173,208925
,4,174,195980
,4,175,209305
,4,176,21520
,4,177,230705
,4,178,211945
,4,179,200765
,4,180,209135
,4,181,655
,4,182,208870
,4,183,21520
,4,184,230705
,4,185,211900
,4,186,16595
,4,187,208925
,4,188,195980
,4,189,209305
,4,190,21520
,4,191,230705
,4,192,29140
,4,193,16600
,4,194,208925
,4,195,195980
,4,196,209305
,4,197,231525
,4,198,208615
,4,199,231525
,3,36244,4430
,4,5,16620
,4,6,4520
,4,7,16625
,4,8,16630
,4,9,16635
,4,10,16640
,4,11,16645
,4,12,16650
,4,13,16655
,3,36245,15220
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,15230
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,15240
,3,36246,15245
,3,36247,15250
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229710
,3,36252,218330
,3,36244,230605
,4,1,208635
,4,2,212615
,4,3,24795
,4,4,233950
,4,5,212865
,4,6,233955
,4,7,211800
,4,8,208495
,4,9,211895
,4,10,208560
,4,11,213300
,4,12,208560
,4,13,213520
,4,14,208560
,4,15,207655
,4,16,16910
,4,17,232705
,4,18,23705
,4,19,233960
,4,20,218340
,4,21,208690
,4,22,207655
,4,23,211835
,4,24,233965
,4,25,212605
,4,26,233970
,4,27,208660
,4,28,212605
,4,29,233970
,4,30,30195
,4,31,233975
,4,32,208660
,4,33,212605
,4,34,233970
,4,35,30195
,4,36,233980
,4,37,23470
,4,38,16910
,4,39,209135
,4,40,23715
,4,41,230705
,4,42,218345
,4,43,208690
,4,44,23470
,4,45,211835
,4,46,230780
,4,47,207740
,4,48,16910
,4,49,209135
,4,50,212585
,4,51,230705
,4,52,218325
,4,53,208545
,4,54,21735
,4,55,230780
,4,56,218350
,4,57,208690
,4,59,27205
,4,60,230780
,4,62,200010
,4,63,230780
,4,64,200665
,4,65,211835
,4,66,230780
,4,67,212605
,4,68,230705
,4,69,208310
,4,70,212605
,4,71,230705
,4,72,30195
,4,73,230705
,4,74,208310
,4,75,212605
,4,76,230705
,4,77,30195
,4,78,209265
,4,79,10020
,4,80,230705
,4,81,212130
,4,82,218355
,4,83,208690
,4,84,208590
,4,85,21735
,4,86,233985
,4,88,213740
,4,89,233990
,4,90,233995
,4,91,208615
,4,92,233995
,3,36244,4430
,4,5,21735
,4,6,206165
,4,7,212615
,4,8,207655
,4,9,23470
,4,10,207740
,3,36245,15260
,3,36246,15265
,3,36247,15270
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226715
,3,36252,16705
,3,36244,230605
,4,1,208635
,4,2,199565
,4,3,209010
,4,4,23105
,4,5,231590
,4,6,16680
,4,7,231595
,4,9,208800
,4,10,16905
,4,11,231600
,4,13,195860
,4,14,231605
,4,15,231610
,4,16,208615
,4,17,231610
,3,36244,4430
,4,5,16680
,3,36245,655
,3,36246,15280
,3,36247,15285
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15290
,6,1,85
,3,36251,226930
,3,36252,17390
,3,36244,230605
,4,1,208635
,4,2,990
,4,3,230710
,4,4,12615
,4,5,230780
,4,6,990
,4,7,230710
,4,8,990
,4,9,230710
,4,10,990
,4,11,230780
,4,12,990
,4,13,230710
,4,14,990
,4,15,230710
,4,16,213865
,4,17,230780
,4,18,990
,4,19,230710
,4,20,990
,4,21,230710
,4,22,28615
,4,23,230780
,4,24,990
,4,25,230710
,4,26,28860
,4,27,16910
,4,28,209335
,4,29,17440
,4,30,230710
,4,31,17440
,4,32,230780
,4,33,28860
,4,34,24795
,4,35,209335
,4,36,990
,4,37,230710
,4,38,17440
,4,39,230710
,4,40,197250
,4,41,209335
,4,43,16930
,4,44,232070
,4,46,196660
,4,47,230780
,4,48,232075
,4,49,208615
,4,50,232075
,3,36244,4430
,3,36372,15200
,3,36373,205380
,3,36245,655
,3,36246,15300
,3,36247,15305
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15310
,6,1,85
,3,36251,227420
,3,36252,21040
,3,36244,230605
,4,1,208635
,4,2,990
,4,3,230710
,4,4,20970
,4,6,208590
,4,7,203370
,4,8,230780
,4,9,990
,4,10,230710
,4,11,20980
,4,13,208590
,4,14,203380
,4,15,230780
,4,16,990
,4,17,230710
,4,18,21000
,4,20,208590
,4,21,203375
,4,22,230780
,4,23,990
,4,24,230710
,4,25,21010
,4,27,208590
,4,28,203385
,4,29,230780
,4,30,990
,4,31,230710
,4,32,21020
,4,34,208590
,4,35,203390
,4,36,230780
,4,37,990
,4,38,230710
,4,39,21030
,4,41,208590
,4,42,203395
,4,43,230780
,4,44,232235
,4,45,208615
,4,46,232235
,3,36244,4430
,3,36372,15200
,3,36373,205385
,3,36245,655
,3,36246,15320
,3,36247,15325
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15330
,6,1,85
,3,36251,227425
,3,36252,21060
,3,36244,230605
,4,1,208635
,4,2,990
,4,3,230710
,4,4,207730
,4,5,21045
,4,6,208925
,4,7,4960
,4,8,209315
,4,9,232240
,4,10,208615
,4,11,232240
,3,36244,4430
,3,36372,15200
,3,36373,205390
,3,36245,655
,3,36246,15340
,3,36247,15345
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15350
,6,1,85
,3,36251,229895
,3,36252,220755
,3,36244,230605
,4,1,208635
,4,2,195305
,4,3,234480
,4,4,208520
,4,5,24800
,4,6,24795
,4,7,209335
,4,8,195305
,4,9,234485
,4,10,195305
,4,11,234480
,4,12,234490
,4,13,208615
,4,14,234490
,3,36244,4430
,3,36372,15200
,3,36373,205395
,3,36245,655
,3,36246,15360
,3,36247,15365
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15370
,6,1,85
,3,36251,226925
,3,36252,17380
,3,36244,230605
,4,1,208635
,4,2,17370
,4,4,208590
,4,5,196655
,4,6,230780
,4,7,232065
,4,8,208615
,4,9,232065
,3,36244,4430
,3,36372,15200
,3,36373,205400
,3,36245,655
,3,36246,15380
,3,36247,15385
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15390
,6,1,85
,3,36251,227480
,3,36252,21115
,3,36244,230605
,4,1,208635
,4,2,21105
,4,4,208590
,4,5,15695
,4,6,230780
,4,7,208870
,4,8,232280
,4,9,208615
,4,10,232280
,3,36244,4430
,3,36372,15200
,3,36373,205405
,3,36245,655
,3,36246,15400
,3,36247,15405
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15410
,6,1,85
,3,36251,227485
,3,36252,21135
,3,36244,230605
,4,1,208635
,4,2,195680
,4,3,230710
,4,4,21140
,4,5,230710
,4,6,195680
,4,7,230710
,4,8,21140
,4,9,212310
,4,10,7755
,4,11,209335
,4,12,7440
,4,13,209335
,4,14,212310
,4,15,6710
,4,16,209335
,4,17,195
,4,18,275
,4,19,208590
,4,20,208590
,4,21,190
,4,22,7660
,4,23,209315
,4,24,212295
,4,25,230710
,4,26,21120
,4,27,208925
,4,28,10880
,4,29,209315
,4,30,21140
,4,31,230780
,4,32,232285
,4,33,208615
,4,34,232285
,3,36244,4430
,4,5,21140
,3,36372,15200
,3,36373,205410
,3,36245,655
,3,36246,15420
,3,36247,15425
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15430
,6,1,85
,3,36251,227600
,3,36252,21425
,3,36244,230605
,4,1,208770
,4,2,21315
,4,4,208590
,4,5,208705
,4,6,21335
,4,7,208925
,4,8,208705
,4,9,21345
,4,10,208925
,4,11,21365
,4,12,208925
,4,13,21385
,4,14,208925
,4,15,21395
,4,17,208590
,4,18,21415
,4,20,208590
,4,21,208635
,4,22,21430
,4,23,230710
,4,24,208870
,4,25,21310
,4,26,208250
,4,27,208870
,4,29,208870
,4,31,208870
,4,32,196640
,4,33,230710
,4,34,208870
,4,35,208870
,4,36,208870
,4,37,208870
,4,38,21400
,4,39,230780
,4,40,21420
,4,41,230780
,4,42,21370
,4,43,230780
,4,44,21390
,4,45,230780
,4,46,21350
,4,47,230780
,4,48,196690
,4,49,230780
,4,50,232385
,4,51,208615
,4,52,232385
,3,36244,4430
,4,5,21350
,4,6,21370
,4,7,21390
,4,8,21400
,4,9,21420
,4,10,21430
,4,11,21435
,4,12,21440
,4,13,21445
,4,14,21450
,4,15,21455
,4,16,21460
,4,17,21465
,4,18,21320
,4,19,21340
,3,36372,15200
,3,36373,205415
,3,36245,655
,3,36246,15440
,3,36247,15445
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15450
,6,1,85
,3,36251,227605
,3,36252,21515
,3,36244,230605
,4,1,208420
,4,2,208635
,4,3,21525
,4,4,21470
,4,5,208925
,4,6,4960
,4,7,209315
,4,8,21530
,4,9,21485
,4,10,208925
,4,11,4960
,4,12,209315
,4,13,21520
,4,14,21500
,4,16,208590
,4,17,4960
,4,18,209315
,4,19,21505
,4,21,208590
,4,22,196695
,4,23,230780
,4,24,232390
,4,25,208615
,4,26,232390
,3,36244,4430
,4,5,21520
,4,6,21525
,4,7,21530
,3,36372,15200
,3,36373,205420
,3,36245,655
,3,36246,15460
,3,36247,15465
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15470
,6,1,85
,3,36251,227640
,3,36252,21605
,3,36244,230605
,4,1,208635
,4,2,21585
,4,4,208590
,4,5,196700
,4,6,230780
,4,7,21595
,4,9,208590
,4,10,196705
,4,11,230780
,4,12,232395
,4,13,208615
,4,14,232395
,3,36244,4430
,3,36372,15200
,3,36373,205425
,3,36245,655
,3,36246,15480
,3,36247,15485
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15490
,6,1,85
,3,36251,227645
,3,36252,21670
,3,36244,230605
,4,1,208745
,4,2,21620
,4,3,208925
,4,4,208705
,4,5,208635
,4,7,208800
,4,8,208870
,4,9,21680
,4,10,230710
,4,11,208870
,4,12,21685
,4,13,230710
,4,14,208870
,4,15,21640
,4,17,208590
,4,18,21680
,4,19,230780
,4,20,195980
,4,21,230780
,4,22,21660
,4,24,208590
,4,25,21685
,4,26,230780
,4,27,232400
,4,28,208615
,4,29,232400
,3,36244,4430
,4,5,21675
,4,6,21680
,4,7,21685
,4,8,21625
,3,36372,15200
,3,36373,205430
,3,36245,655
,3,36246,15500
,3,36247,15505
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15510
,6,1,85
,3,36251,227650
,3,36252,21715
,3,36244,230605
,4,1,208635
,4,2,196500
,4,3,230710
,4,4,213045
,4,5,230710
,4,6,208300
,4,7,196500
,4,8,230705
,4,9,213045
,4,10,230705
,4,11,4840
,4,12,209160
,4,13,208440
,4,16,21725
,4,17,208775
,4,18,196500
,4,19,230705
,4,20,213045
,4,21,207745
,4,22,16910
,4,23,209135
,4,24,213500
,4,25,24795
,4,26,209135
,4,27,211470
,4,28,209135
,4,29,211465
,4,30,230705
,4,31,21730
,4,32,208775
,4,33,232405
,4,34,208615
,4,35,232405
,3,36244,4430
,4,5,21735
,4,6,21740
,3,36372,15200
,3,36373,205435
,3,36245,655
,3,36246,15520
,3,36247,15525
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15530
,6,1,85
,3,36251,227655
,3,36252,21745
,3,36244,230605
,4,1,208635
,4,2,21750
,4,3,209275
,4,4,196485
,4,5,230710
,4,6,212785
,4,7,208495
,4,10,196490
,4,11,230710
,4,12,231515
,4,13,208720
,4,14,205
,4,15,6920
,4,16,209335
,4,17,208535
,4,18,7555
,4,19,209135
,4,20,205
,4,21,208560
,4,22,16625
,4,23,16910
,4,24,209135
,4,25,196490
,4,26,230705
,4,27,196490
,4,28,230705
,4,29,230750
,4,30,6710
,4,31,209305
,4,32,230835
,4,33,232410
,4,34,208615
,4,35,232410
,3,36244,4430
,4,5,21750
,4,6,21755
,4,7,21760
,4,8,16625
,3,36372,15200
,3,36373,205440
,3,36245,655
,3,36246,15540
,3,36247,15545
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15550
,6,1,85
,3,36251,226700
,3,36252,16660
,3,36244,230605
,4,1,208635
,4,2,212475
,4,3,208280
,4,4,231530
,4,5,208615
,4,6,231530
,4,7,195690
,4,8,231535
,4,9,208665
,4,10,16905
,4,11,231540
,4,12,195695
,4,13,231545
,4,14,208720
,4,15,10020
,4,16,230705
,4,17,212845
,4,18,208370
,4,19,16670
,4,20,208690
,4,21,208590
,4,22,196470
,4,23,230705
,4,24,206155
,4,25,209010
,4,26,7385
,4,27,231550
,4,28,16675
,4,29,208690
,4,30,28435
,4,31,231555
,4,32,12090
,4,33,231560
,4,34,16905
,4,35,231540
,3,36244,4430
,4,5,16680
,4,6,16685
,4,7,16690
,3,36372,15260
,3,36373,217930
,3,36245,655
,3,36246,15560
,3,36247,15565
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15570
,6,1,85
,3,36251,226705
,3,36252,16695
,3,36244,230605
,4,1,208635
,4,2,195685
,4,3,231565
,4,4,230750
,4,5,231570
,4,6,208615
,4,7,231570
,3,36244,4430
,4,5,16680
,3,36372,15260
,3,36373,217935
,3,36245,655
,3,36246,15580
,3,36247,15585
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15590
,6,1,85
,3,36251,226710
,3,36252,16700
,3,36244,230605
,4,1,208635
,4,2,195680
,4,3,231575
,4,4,4920
,4,5,231580
,4,6,231585
,4,7,208615
,4,8,231585
,3,36244,4430
,4,5,16680
,3,36372,15260
,3,36373,217940
,3,36245,655
,3,36246,15600
,3,36247,15605
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15610
,6,1,85
,3,36251,226740
,3,36252,16745
,3,36244,230605
,4,1,208635
,4,2,195680
,4,3,231575
,4,4,230750
,4,5,231655
,4,6,208615
,4,7,231655
,3,36244,4430
,4,5,16680
,3,36372,15260
,3,36373,217945
,3,36245,655
,3,36246,15620
,3,36247,15625
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15630
,6,1,85
,3,36251,226745
,3,36252,16750
,3,36244,230605
,4,1,208635
,4,2,29280
,4,3,231660
,4,4,231125
,4,5,209010
,4,6,29280
,4,7,231660
,4,8,231125
,4,9,209015
,4,10,231665
,4,11,208615
,4,12,231665
,3,36244,4430
,4,5,16755
,3,36372,15260
,3,36373,217950
,3,36245,655
,3,36246,15640
,3,36247,15645
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15650
,6,1,85
,3,36251,226735
,3,36252,16715
,3,36244,230605
,4,1,208635
,4,2,16680
,4,3,231615
,4,4,195700
,4,5,231625
,4,6,195705
,4,7,231630
,4,8,23105
,4,9,231635
,4,11,16725
,4,12,208530
,4,13,16905
,4,14,231540
,4,15,16910
,4,16,231640
,4,17,23105
,4,18,231635
,4,19,16730
,4,20,208485
,4,22,195860
,4,23,231645
,4,24,231650
,4,25,208615
,4,26,231650
,3,36244,4430
,4,5,16735
,4,6,16740
,3,36372,15260
,3,36373,217955
,3,36245,655
,3,36246,15660
,3,36247,15665
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,15670
,6,1,85
,3,36251,226725
,3,36252,16710
,3,36244,230605
,4,1,208635
,4,2,195685
,4,3,231565
,4,4,16680
,4,5,231615
,4,6,230835
,4,7,231620
,4,8,208615
,4,9,231620
,3,36244,4430
,3,36372,15260
,3,36373,217960
,3,36244,4410
,4,3,15680
,4,1,15685
,3,36244,4430
,4,5,12615
,4,6,3555
,4,7,12615
,4,8,15200
,4,9,15695
,4,10,15220
,4,11,15230
,4,12,15240
,4,13,15700
,4,14,15260
,3,36245,655
,3,36246,15710
,3,36247,15690
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226675
,3,36252,15675
,3,36244,230605
,4,1,208840
,4,2,208945
,4,3,15195
,4,5,208590
,4,6,208705
,4,7,15215
,4,8,208925
,4,9,208705
,4,10,15225
,4,11,208925
,4,12,208705
,4,13,15235
,4,15,208590
,4,16,208705
,4,17,15255
,4,19,208590
,4,20,208705
,4,21,208635
,4,22,990
,4,23,230780
,4,24,15275
,4,26,208590
,4,27,195290
,4,28,230780
,4,29,15295
,4,31,208590
,4,32,195295
,4,33,230780
,4,34,15315
,4,36,208590
,4,37,195300
,4,38,230780
,4,40,195305
,4,41,230780
,4,42,15335
,4,44,208590
,4,45,195310
,4,46,230780
,4,47,15355
,4,49,208590
,4,50,195315
,4,51,230780
,4,52,15375
,4,54,208590
,4,55,195320
,4,56,230780
,4,57,15395
,4,59,208590
,4,60,195325
,4,61,230780
,4,62,15415
,4,64,208590
,4,65,195330
,4,66,230780
,4,67,15435
,4,69,208590
,4,70,195335
,4,71,230780
,4,72,15455
,4,74,208590
,4,75,195340
,4,76,230780
,4,77,15475
,4,79,208590
,4,80,195345
,4,81,230780
,4,82,15495
,4,84,208590
,4,85,195350
,4,86,230780
,4,87,15515
,4,89,208590
,4,90,195355
,4,91,230780
,4,92,212185
,4,93,24795
,4,94,209335
,4,95,16180
,4,96,230710
,4,97,15700
,4,98,230710
,4,99,208870
,4,100,213120
,4,101,24795
,4,102,209335
,4,103,195680
,4,104,230780
,4,106,208800
,4,107,195685
,4,108,230780
,4,109,15535
,4,111,208590
,4,112,16910
,4,113,230780
,4,114,15555
,4,116,208590
,4,117,195690
,4,118,230780
,4,119,15575
,4,121,208590
,4,122,195695
,4,123,230780
,4,124,15595
,4,126,208590
,4,127,195700
,4,128,230780
,4,129,15615
,4,131,208590
,4,132,195705
,4,133,230780
,4,134,15190
,4,135,208735
,4,136,29280
,4,137,230780
,4,138,195280
,4,139,230710
,4,140,15635
,4,142,208590
,4,143,12090
,4,144,230780
,4,145,195280
,4,146,230710
,4,147,15655
,4,149,208590
,4,150,28435
,4,151,230780
,4,152,15685
,4,153,208825
,4,154,231495
,4,155,208615
,4,156,231495
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,15730
,3,36247,15720
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226680
,3,36252,15715
,3,36244,230605
,4,1,208635
,4,2,15705
,4,4,208590
,4,5,231500
,4,6,208615
,4,7,231500
,3,36244,12610
,4,4,15740
,3,36244,12840
,4,1,15745
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,15735
,3,36250,340
,6,1,85
,2,828,780
,2,35551,430
,3,36244,217965
,3,36259,15755
,3,36261,780
,3,36244,234750
,3,36244,12610
,4,4,15770
,3,36244,12840
,4,1,15775
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,15765
,3,36250,340
,6,1,85
,2,828,690
,2,35551,430
,3,36244,217975
,3,36259,15785
,3,36261,690
,3,36244,234750
,3,36244,12610
,4,4,15800
,3,36244,12840
,4,1,15805
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,15795
,3,36250,340
,6,1,85
,2,828,955
,2,35551,430
,3,36244,217985
,3,36259,15815
,3,36261,955
,3,36244,234750
,3,36244,12610
,4,4,15830
,3,36244,12840
,4,1,15835
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,15825
,3,36250,340
,6,1,85
,2,828,740
,2,35551,430
,3,36244,195185
,3,36259,15845
,3,36261,740
,3,36244,234750
,3,36244,12610
,4,4,15860
,3,36244,12840
,4,1,15865
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,15855
,3,36250,340
,6,1,85
,2,828,810
,2,35551,430
,3,36244,195195
,3,36259,15875
,3,36261,810
,3,36244,234750
,3,36244,12610
,4,4,15890
,3,36244,12840
,4,1,15895
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,15885
,3,36250,340
,6,1,85
,2,828,785
,2,35551,430
,3,36244,195205
,3,36259,15905
,3,36261,785
,3,36244,234750
,3,36244,12610
,4,4,15920
,3,36244,12840
,4,1,15925
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,15915
,3,36250,340
,6,1,85
,2,828,905
,2,35551,430
,3,36244,195215
,3,36259,15935
,3,36261,905
,3,36244,234750
,3,36244,12610
,4,4,15950
,3,36244,12840
,4,1,15955
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,15945
,3,36250,340
,6,1,85
,2,828,760
,2,35551,430
,3,36244,195225
,3,36259,15965
,3,36261,760
,3,36244,234750
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15275
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15280
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,34300,15975
,2,34301,16020
,2,34302,16025
,2,34303,27645
,2,34304,16030
,2,34305,16035
,2,34306,16040
,2,34307,16045
,2,34308,16060
,2,34309,16075
,2,34310,16080
,2,34311,16085
,2,34312,16100
,2,34313,16105
,2,35551,425
,3,36253,204055
,3,36254,15195
,3,36255,16015
,6,64,85
,3,36315,204060
,3,36244,195490
,4,1,15205
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,21105
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,4220
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15215
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,4220
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15225
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,4220
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36253,205445
,3,36254,15235
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15245
,2,35551,425
,2,34299,16345
,3,36254,16340
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,16350
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,34315,195825
,2,34316,195830
,2,856,16510
,2,34317,16515
,2,34318,16520
,2,34319,16525
,2,34320,16530
,2,1415,195835
,2,35551,425
,2,34299,195815
,3,36253,195840
,3,36254,15255
,3,36255,16015
,6,64,85
,3,36315,195845
,3,36244,195780
,4,1,15265
,4,2,195850
,3,36256,195235
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,915
,4,3,15980
,4,4,15985
,4,5,15990
,4,6,15995
,4,7,16000
,4,8,16005
,4,9,16010
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15295
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15300
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15315
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15320
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15335
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15340
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15355
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15360
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15375
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15380
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36253,16050
,3,36254,15395
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15400
,4,1,560
,4,2,16055
,2,842,195
,2,132,100
,2,35664,110
,2,35911,110
,2,35551,1390
,3,36244,1400
,4,1,198670
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36253,16065
,3,36254,15415
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15420
,4,1,560
,4,2,16070
,2,35551,1070
,3,36244,198805
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15435
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15440
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15455
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15460
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36253,16090
,3,36254,15475
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15480
,4,1,560
,4,2,16095
,2,35551,430
,3,36244,195565
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15495
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15500
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15515
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15520
,3,36244,12610
,4,4,16115
,4,10,16120
,4,11,16125
,3,36244,12840
,4,1,16130
,3,36244,12720
,4,3,16110
,3,36244,225610
,3,36245,16125
,3,36246,12650
,3,36248,16125
,3,36249,12655
,3,36376,16110
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,16145
,3,36254,16135
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,16150
,2,828,16140
,2,35551,430
,3,36244,195495
,3,36259,16145
,3,36261,16140
,3,36244,234750
,3,36244,12610
,4,2,16160
,4,4,16165
,4,6,16170
,4,10,16175
,4,11,16180
,1,1,16420
,1,2,16275
,1,4,16445
,1,5,16310
,1,7,15700
,1,8,16005
,1,10,16490
,1,11,16375
,1,13,85
,1,14,85
,1,15,85
,2,35551,70
,3,36314,195530
,3,36244,195515
,3,36244,12840
,4,1,16185
,3,36244,12720
,4,2,16205
,3,36244,12720
,4,3,16155
,3,36244,225610
,3,36244,12610
,4,4,16195
,3,36244,12840
,4,1,16200
,3,36244,225610
,1,1,16420
,1,2,16190
,1,4,16445
,1,5,16210
,1,7,15700
,1,8,16225
,1,10,16490
,1,11,16240
,1,13,85
,1,14,85
,1,15,85
,2,35551,70
,3,36314,195510
,3,36244,195515
,3,36244,12610
,4,4,16215
,3,36244,12840
,4,1,16220
,3,36244,225610
,3,36244,12610
,4,4,16230
,3,36244,12840
,4,1,16235
,3,36244,225610
,3,36244,12610
,4,4,16245
,3,36244,12840
,4,1,16250
,3,36244,225610
,3,36244,12610
,4,4,16260
,3,36244,12840
,4,1,16265
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,16255
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,16280
,3,36254,16270
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,16285
,2,828,16275
,2,35551,430
,3,36244,195520
,3,36259,16280
,3,36261,16275
,3,36244,234750
,3,36244,12610
,4,4,16295
,3,36244,12840
,4,1,16300
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,16290
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,16315
,3,36254,16305
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,16320
,2,828,16310
,2,35551,430
,3,36244,195535
,3,36259,16315
,3,36261,16310
,3,36244,234750
,3,36244,12610
,4,4,16330
,3,36244,12840
,4,1,16335
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,16325
,3,36250,340
,6,1,85
,2,828,16005
,2,35551,430
,3,36244,195545
,3,36259,16345
,3,36261,16005
,3,36244,234750
,3,36244,12610
,4,4,16360
,3,36244,12840
,4,1,16365
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,16355
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,16380
,3,36254,16370
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,16385
,2,828,16375
,2,35551,430
,3,36244,195555
,3,36259,16380
,3,36261,16375
,3,36244,234750
,3,36245,16180
,3,36246,12650
,3,36248,16180
,3,36249,12655
,3,36376,16155
,3,36250,340
,6,1,85
,2,824,16275
,2,825,16310
,2,821,16005
,2,826,16375
,2,35551,425
,2,34299,16400
,3,36254,16390
,3,36255,560
,6,64,85
,3,36244,16405
,4,1,12650
,4,2,16410
,2,824,16425
,2,825,16450
,2,821,16470
,2,826,16495
,2,828,16395
,2,35551,430
,3,36244,195610
,3,36259,425
,3,36377,195645
,3,36260,195620
,3,36244,234750
,3,36259,16400
,3,36261,16395
,3,36244,234750
,3,36245,16420
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,16190
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,16430
,3,36254,16415
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,16435
,2,828,16425
,2,35551,430
,3,36244,195570
,3,36259,16430
,3,36261,16425
,3,36244,234750
,3,36245,16445
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,16210
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,16455
,3,36254,16440
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,16460
,2,828,16450
,2,35551,430
,3,36244,195580
,3,36259,16455
,3,36261,16450
,3,36244,234750
,3,36245,15700
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,16225
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,16475
,3,36254,16465
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,16480
,2,828,16470
,2,35551,430
,3,36244,195590
,3,36259,16475
,3,36261,16470
,3,36244,234750
,3,36245,16490
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,16240
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,16500
,3,36254,16485
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,16505
,2,828,16495
,2,35551,430
,3,36244,195600
,3,36259,16500
,3,36261,16495
,3,36244,234750
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15535
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15540
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15555
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15560
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15575
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15580
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15595
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15600
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15615
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15620
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15635
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15640
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,15655
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,15660
,4,1,16550
,4,1,16560
,4,1,16570
,4,3,16575
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,16610
,4,1,16615
,3,36244,4410
,4,3,16665
,4,1,16670
,4,3,16675
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,3,16720
,4,1,16725
,4,3,16730
,3,36244,4410
,3,36244,4410
,3,36264,16765
,3,36245,16770
,3,36244,575
,4,3,16775
,3,36244,225610
,3,36245,16620
,3,36246,16785
,3,36247,16790
,3,36248,320
,3,36263,16760
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226920
,3,36252,17355
,3,36244,230605
,4,1,208635
,4,3,16930
,4,4,230780
,4,5,195950
,4,6,232055
,4,7,208720
,4,8,208310
,4,9,16930
,4,10,17365
,4,11,208775
,4,12,208870
,4,13,203365
,4,14,230705
,4,15,208310
,4,16,212955
,4,17,230705
,4,18,208290
,4,19,203365
,4,20,230705
,4,21,16930
,4,22,230780
,4,23,196645
,4,24,230705
,4,25,208665
,4,27,208800
,4,28,196645
,4,29,230780
,4,30,196650
,4,31,230705
,4,32,208205
,4,33,196650
,4,34,230780
,4,35,232060
,4,36,208615
,4,37,232060
,3,36244,4430
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,16760
,3,36249,335
,3,36250,16800
,6,1,85
,3,36372,16620
,3,36373,195905
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,16760
,3,36249,335
,3,36250,16810
,6,1,85
,3,36372,16620
,3,36373,195910
,3,36245,655
,3,36246,16820
,3,36247,16825
,3,36248,320
,3,36263,16760
,3,36249,335
,3,36250,16830
,6,1,85
,3,36251,229855
,3,36252,220700
,3,36244,230605
,4,1,208635
,4,2,212535
,4,3,10040
,4,4,209190
,4,5,208590
,4,6,196645
,4,7,230705
,4,8,208660
,4,10,208800
,4,11,196645
,4,12,230780
,4,13,196645
,4,14,230705
,4,15,211810
,4,16,230705
,4,17,208300
,4,18,211810
,4,19,212800
,4,20,230705
,4,21,212800
,4,22,230705
,4,23,195975
,4,24,209060
,4,25,196645
,4,26,230705
,4,27,230750
,4,28,208300
,4,29,196645
,4,30,230705
,4,31,230835
,4,32,196645
,4,33,230705
,4,34,230750
,4,35,196645
,4,36,230705
,4,37,230750
,4,38,7385
,4,39,209135
,4,40,196645
,4,41,230705
,4,42,220695
,4,43,208640
,4,44,196645
,4,45,230705
,4,46,230750
,4,47,208950
,4,48,208950
,4,49,230835
,4,50,196645
,4,51,230705
,4,52,230750
,4,53,196645
,4,54,230705
,4,55,230750
,4,56,20410
,4,57,230705
,4,58,208310
,4,59,196650
,4,60,230705
,4,61,208310
,4,62,208245
,4,63,196645
,4,64,230705
,4,65,230750
,4,66,21455
,4,67,230705
,4,68,208245
,4,69,196645
,4,70,230705
,4,71,230750
,4,73,20410
,4,74,230780
,4,75,207730
,4,76,230705
,4,77,213185
,4,78,212340
,4,79,208370
,4,80,213785
,4,81,208895
,4,82,196645
,4,83,230705
,4,84,230750
,4,85,21455
,4,86,230705
,4,87,20135
,4,88,209305
,4,89,207730
,4,90,230705
,4,91,211880
,4,92,209265
,4,93,234430
,4,94,208615
,4,95,234430
,3,36244,4430
,4,5,29045
,4,6,212800
,4,7,11775
,3,36372,16620
,3,36373,195915
,3,36245,655
,3,36246,16840
,3,36247,16845
,3,36248,320
,3,36263,16760
,3,36249,335
,3,36250,16850
,6,1,85
,3,36251,229845
,3,36252,220665
,3,36244,230605
,4,1,208745
,4,2,208945
,4,3,208945
,4,4,220660
,4,5,208925
,4,6,208705
,4,7,208635
,4,8,212535
,4,9,10040
,4,10,209190
,4,11,208590
,4,13,208870
,4,14,212800
,4,15,230780
,4,16,195980
,4,17,234405
,4,18,234410
,4,19,208615
,4,20,234410
,3,36244,4430
,4,5,29045
,4,6,212800
,4,7,212800
,4,8,29045
,4,9,213050
,4,10,275
,3,36372,16620
,3,36373,195920
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,16760
,3,36249,335
,3,36250,16860
,6,1,85
,3,36372,16620
,3,36373,195925
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,16760
,3,36249,335
,3,36250,16870
,6,1,85
,3,36372,16620
,3,36373,195930
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,16760
,3,36249,335
,3,36250,16880
,6,1,85
,3,36372,16620
,3,36373,195935
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,16760
,3,36249,335
,3,36250,16890
,6,1,85
,3,36372,16620
,3,36373,195940
,3,36244,4410
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,16620
,4,11,16910
,4,12,16905
,4,13,16930
,4,14,16935
,3,36245,655
,3,36246,16945
,3,36247,16900
,3,36248,320
,3,36263,16760
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226760
,3,36252,16895
,3,36244,230605
,4,1,208745
,4,2,208945
,4,3,208945
,4,4,16780
,4,6,208590
,4,7,208635
,4,9,195950
,4,10,230780
,4,11,16620
,4,12,230780
,4,13,208870
,4,14,195280
,4,15,230710
,4,16,16795
,4,18,208590
,4,19,195970
,4,20,230780
,4,21,195280
,4,22,230710
,4,23,16805
,4,25,208590
,4,26,195975
,4,27,230780
,4,28,195280
,4,29,230710
,4,30,16815
,4,32,208590
,4,33,21680
,4,34,230780
,4,35,195280
,4,36,230710
,4,37,195280
,4,38,230710
,4,39,21680
,4,40,230710
,4,41,195980
,4,42,230780
,4,43,195280
,4,44,230710
,4,45,16835
,4,47,208590
,4,48,195985
,4,49,230780
,4,50,195280
,4,51,230710
,4,52,16855
,4,54,208590
,4,55,21685
,4,56,230780
,4,57,195280
,4,58,230710
,4,59,16865
,4,61,208590
,4,62,195990
,4,63,230780
,4,64,195280
,4,65,230710
,4,66,16875
,4,68,208590
,4,69,195995
,4,70,230780
,4,71,16885
,4,73,208590
,4,74,196095
,4,75,230780
,4,76,231670
,4,77,208615
,4,78,231670
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,16965
,3,36247,16955
,3,36248,320
,3,36263,16760
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,226765
,3,36252,16950
,3,36244,230605
,4,1,208635
,4,2,16940
,4,4,208590
,4,5,231675
,4,6,208615
,4,7,231675
,0,856,16510
,0,855,16975
,0,860,85
,2,35551,425
,3,36254,16795
,3,36255,16980
,6,64,85
,3,36244,12670
,4,1,4220
,2,34330,110
,2,831,26450
,2,35551,430
,3,36315,205465
,3,36244,195960
,3,36256,196000
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,16510
,4,3,16975
,0,856,16510
,0,855,16975
,0,860,85
,2,35551,425
,3,36253,16990
,3,36254,16805
,3,36255,16980
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,856,16510
,0,855,16975
,0,860,85
,2,35551,425
,3,36253,17000
,3,36254,16815
,3,36255,16980
,6,64,85
,3,36244,12670
,4,1,16820
,4,1,560
,0,856,16510
,0,855,16975
,0,860,85
,2,35551,425
,3,36254,16835
,3,36255,16980
,6,64,85
,3,36244,12670
,4,1,16840
,0,856,16510
,0,855,16975
,0,860,85
,2,35551,425
,3,36254,16855
,3,36255,16980
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,16975
,0,860,85
,2,35551,425
,3,36253,17020
,3,36254,16865
,3,36255,16980
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,856,16510
,0,855,16975
,0,860,85
,2,35551,425
,3,36253,17030
,3,36254,16875
,3,36255,16980
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,856,16510
,0,855,16975
,0,860,85
,2,35551,425
,3,36254,16885
,3,36255,16980
,6,64,85
,3,36244,12670
,4,1,4220
,4,2,17040
,3,36244,4410
,4,3,17055
,4,1,17060
,3,36244,7530
,4,1,17070
,4,2,17065
,3,36244,4410
,4,3,17085
,4,1,17090
,3,36244,4410
,4,3,17105
,4,1,17110
,4,3,17115
,4,5,17120
,3,36244,4410
,4,3,17130
,4,1,17135
,4,3,17140
,4,2,17145
,4,2,17155
,4,2,17165
,4,2,17175
,3,36244,4410
,4,3,17190
,4,1,17195
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,2,17235
,4,2,17245
,4,2,17255
,4,2,17265
,4,2,17275
,4,2,17285
,4,2,17295
,3,36244,4410
,3,36244,4410
,4,3,17315
,4,1,17320
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,3,17360
,4,1,17365
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,17375
,6,1,85
,3,36372,12615
,3,36373,196750
,3,36244,4410
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,17370
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,4220
,3,36244,4410
,3,36264,17400
,3,36245,17405
,3,36244,575
,4,3,17410
,3,36244,225610
,3,36245,17420
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,17430
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,17440
,3,36246,17445
,3,36247,17450
,3,36248,320
,3,36263,17395
,3,36249,1450
,3,36250,340
,6,1,17455
,3,36251,228570
,3,36252,28995
,3,36244,230605
,4,1,208635
,4,2,208290
,4,3,29005
,4,4,208690
,4,5,233280
,4,6,208615
,4,7,233280
,4,8,17625
,4,9,209135
,4,10,208310
,4,11,10040
,4,12,230705
,4,13,213925
,4,14,29010
,4,15,208690
,4,16,208590
,4,17,208305
,4,18,208245
,4,19,8835
,4,20,230705
,4,21,8900
,4,22,209135
,4,23,21455
,4,24,230780
,4,25,23095
,4,26,230705
,4,27,208310
,4,28,23095
,4,29,230705
,4,30,23095
,4,31,230780
,4,32,29040
,4,33,230780
,4,34,208590
,4,35,19785
,4,36,208325
,4,37,10495
,4,38,208560
,4,39,212345
,4,40,208560
,4,41,208305
,4,42,208450
,4,43,8835
,4,44,233285
,4,45,8900
,4,46,233290
,4,47,21455
,4,48,233295
,4,49,197220
,4,50,209305
,4,51,21455
,4,52,230780
,4,53,21455
,4,54,230705
,4,55,208305
,4,56,208245
,4,57,8835
,4,58,230705
,4,59,21455
,4,60,230705
,4,61,8900
,4,62,209135
,4,63,21455
,4,64,230780
,4,65,10040
,4,66,230705
,4,67,212710
,4,68,213720
,4,69,208370
,4,70,29015
,4,71,208690
,4,72,208590
,4,73,21455
,4,74,233300
,4,75,198135
,4,76,233305
,4,77,208450
,4,78,21455
,4,79,230705
,4,80,29020
,4,81,208690
,4,82,23095
,4,83,230780
,4,84,29040
,4,85,230780
,4,86,21455
,4,87,233300
,4,88,208450
,4,89,208665
,4,90,21455
,4,91,230710
,4,92,198085
,4,93,230710
,4,94,208830
,4,95,21455
,4,96,230710
,4,97,208220
,4,98,29025
,4,99,208825
,4,100,23095
,4,101,233310
,4,102,198085
,4,103,233315
,4,104,29040
,4,105,233320
,4,106,198085
,4,107,233315
,4,108,21455
,4,109,233325
,4,110,208680
,4,111,208990
,4,112,208395
,4,113,198085
,4,114,233330
,4,115,23095
,4,116,230780
,4,117,29040
,4,118,230780
,4,119,10495
,4,120,208560
,4,121,197915
,4,122,209060
,4,123,21455
,4,124,230780
,4,125,17625
,4,126,209135
,4,127,208310
,4,128,23095
,4,129,230705
,4,130,208310
,4,131,23095
,4,132,230705
,4,133,23095
,4,134,230705
,4,135,29040
,4,136,230705
,4,137,29040
,4,138,230705
,4,139,21455
,4,140,230705
,4,141,29040
,4,142,230705
,4,143,208370
,4,144,19080
,4,145,209105
,4,146,23095
,4,147,230705
,4,148,29040
,4,149,230705
,4,150,21455
,4,151,230705
,4,152,19080
,4,153,209105
,4,154,29030
,4,155,208775
,4,156,208310
,4,157,23095
,4,158,230705
,4,159,29040
,4,160,230705
,4,161,208370
,4,162,230750
,4,163,230835
,4,164,208305
,4,165,208370
,4,166,233280
,4,167,208615
,4,168,233280
,4,169,21455
,4,170,230705
,4,171,208515
,4,172,23095
,4,173,233335
,4,174,29040
,4,175,233340
,4,176,21455
,4,177,233325
,4,178,197225
,4,179,233345
,3,36244,4430
,4,5,29035
,4,6,28785
,4,7,29040
,4,8,29045
,4,9,10275
,3,36259,197195
,3,36261,950
,4,2,202980
,3,36262,202975
,3,36244,234750
,3,36245,17465
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,17475
,3,36246,17480
,3,36247,17485
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228580
,3,36252,29055
,3,36244,230605
,4,1,208635
,4,2,198135
,4,3,230710
,4,4,29065
,4,5,208690
,4,6,208870
,4,7,198085
,4,8,230780
,4,9,233355
,4,10,208615
,4,11,233355
,3,36244,4430
,3,36245,17495
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,17505
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,17515
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,17525
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,17535
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,17545
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,17555
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,17565
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17575
,6,1,85
,3,36372,18115
,3,36373,196765
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17585
,6,1,85
,3,36372,18115
,3,36373,196770
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17595
,6,1,85
,3,36372,18115
,3,36373,196775
,3,36245,655
,3,36246,17605
,3,36247,17610
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17615
,6,1,85
,3,36251,228525
,3,36252,28890
,3,36244,230605
,4,1,208635
,4,2,208860
,4,3,7835
,4,4,233235
,4,5,213235
,4,6,208325
,4,7,211945
,4,8,208325
,4,9,213705
,4,10,208560
,4,11,213100
,4,12,208560
,4,13,212735
,4,14,208560
,4,15,212550
,4,16,208560
,4,17,211635
,4,18,208560
,4,19,213820
,4,20,208560
,4,21,213370
,4,22,208560
,4,23,212760
,4,24,208560
,4,25,213440
,4,26,208560
,4,28,233240
,4,29,208615
,4,30,233240
,3,36244,4430
,4,5,28785
,3,36372,17440
,3,36373,196780
,3,36245,17625
,3,36246,17630
,3,36247,17635
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228605
,3,36252,29115
,3,36244,230605
,4,1,208635
,4,2,208290
,4,5,233375
,4,6,208615
,4,7,233375
,3,36244,4430
,4,5,4500
,4,6,17625
,3,36245,17645
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,17655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,17665
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17675
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17685
,6,1,85
,3,36372,17440
,3,36373,196785
,3,36245,655
,3,36246,17695
,3,36247,17700
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17705
,6,1,85
,3,36251,228615
,3,36252,29125
,3,36244,230605
,4,1,208635
,4,2,208860
,4,3,211945
,4,4,1190
,4,5,233390
,4,6,7835
,4,7,233235
,4,8,208515
,4,9,21455
,4,10,230705
,4,11,208245
,4,12,21455
,4,13,230705
,4,14,21455
,4,15,230705
,4,16,208245
,4,17,21455
,4,18,233395
,4,19,208515
,4,20,29040
,4,21,233400
,4,22,208680
,4,23,29040
,4,24,233400
,4,25,208680
,4,26,213235
,4,27,208325
,4,28,211945
,4,29,208325
,4,30,213705
,4,31,208560
,4,32,213100
,4,33,208560
,4,34,212735
,4,35,208560
,4,36,212550
,4,37,208560
,4,38,211635
,4,39,208560
,4,40,213820
,4,41,208560
,4,42,213370
,4,43,208560
,4,44,212760
,4,45,208560
,4,46,23095
,4,47,230705
,4,48,18660
,4,49,209305
,4,50,233405
,4,51,208615
,4,52,233405
,4,53,23095
,4,54,233410
,4,55,18685
,4,56,233415
,4,57,23095
,4,58,230705
,4,59,18585
,4,60,209305
,4,61,23095
,4,62,230705
,4,63,18560
,4,64,209305
,4,65,23095
,4,66,230705
,4,67,18610
,4,68,209305
,4,69,23095
,4,70,230705
,4,71,18635
,4,72,209305
,4,73,10040
,4,74,230705
,4,75,212380
,4,76,208370
,4,77,29135
,4,78,208690
,4,79,208590
,3,36244,4430
,4,5,28785
,4,6,23245
,4,7,29140
,3,36372,17440
,3,36373,196790
,3,36245,17715
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17725
,6,1,85
,3,36372,17440
,3,36373,196795
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17735
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17745
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17755
,6,1,85
,3,36372,17440
,3,36373,196800
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17765
,6,1,85
,3,36372,17440
,3,36373,196805
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17775
,6,1,85
,3,36372,17440
,3,36373,196810
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17785
,6,1,85
,3,36372,17440
,3,36373,196815
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17795
,6,1,85
,3,36372,17440
,3,36373,196820
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17805
,6,1,85
,3,36372,17440
,3,36373,196825
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17815
,6,1,85
,3,36372,17440
,3,36373,196830
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17825
,6,1,85
,3,36372,17440
,3,36373,196835
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17835
,6,1,85
,3,36372,17440
,3,36373,196840
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17845
,6,1,85
,3,36372,17440
,3,36373,196845
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17855
,6,1,85
,3,36372,17440
,3,36373,196850
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17865
,6,1,85
,3,36372,17440
,3,36373,196855
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17875
,6,1,85
,3,36372,17440
,3,36373,196860
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17885
,6,1,85
,3,36372,17440
,3,36373,196865
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17895
,6,1,85
,3,36372,17440
,3,36373,196870
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17905
,6,1,85
,3,36372,17440
,3,36373,196875
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17915
,6,1,85
,3,36372,17440
,3,36373,196880
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17925
,6,1,85
,3,36372,17440
,3,36373,196885
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17935
,6,1,85
,3,36372,17440
,3,36373,196890
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17945
,6,1,85
,3,36372,17440
,3,36373,196895
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17955
,6,1,85
,3,36372,17440
,3,36373,196900
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17965
,6,1,85
,3,36372,17440
,3,36373,196905
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17975
,6,1,85
,3,36372,17440
,3,36373,196910
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17985
,6,1,85
,3,36372,17440
,3,36373,196915
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,17995
,6,1,85
,3,36372,17440
,3,36373,196920
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,18005
,6,1,85
,3,36372,17440
,3,36373,196925
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,18015
,6,1,85
,3,36372,17440
,3,36373,196930
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,18025
,6,1,85
,3,36372,17440
,3,36373,196935
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,18035
,6,1,85
,3,36372,17440
,3,36373,196940
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,18045
,6,1,85
,3,36372,17440
,3,36373,196945
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,18055
,6,1,85
,3,36372,17440
,3,36373,196950
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,18065
,6,1,85
,3,36372,17440
,3,36373,196955
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,18075
,6,1,85
,3,36372,17440
,3,36373,196960
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,18085
,6,1,85
,3,36372,17440
,3,36373,196965
,3,36244,4410
,4,3,18095
,4,1,18100
,4,3,18105
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,15695
,4,11,16905
,4,12,18115
,4,13,17420
,4,14,17430
,4,15,18120
,4,16,17440
,4,17,17465
,4,18,18125
,4,19,17475
,4,20,17495
,4,21,17505
,4,22,17515
,4,23,17525
,4,24,17535
,4,25,17545
,4,26,17555
,4,27,17565
,3,36245,655
,3,36246,18135
,3,36247,18110
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227045
,3,36252,18090
,3,36244,230605
,4,1,208900
,4,2,208945
,4,3,17415
,4,4,208925
,4,5,208705
,4,6,17425
,4,7,208925
,4,8,208705
,4,9,17435
,4,10,208925
,4,11,208705
,4,12,17460
,4,13,208925
,4,14,208705
,4,15,17470
,4,16,208925
,4,17,208705
,4,18,17490
,4,19,208925
,4,20,208705
,4,21,17500
,4,22,208925
,4,23,208705
,4,24,17510
,4,25,208925
,4,26,208705
,4,27,17520
,4,28,208925
,4,29,208705
,4,30,17530
,4,31,208925
,4,32,208705
,4,33,17540
,4,34,208925
,4,35,208705
,4,36,17550
,4,37,208925
,4,38,208705
,4,39,17560
,4,40,208925
,4,41,208705
,4,42,208635
,4,43,12615
,4,44,230710
,4,45,28860
,4,46,24795
,4,47,209335
,4,48,18115
,4,49,230710
,4,50,208870
,4,51,15695
,4,52,18100
,4,53,208775
,4,54,197905
,4,55,230780
,4,56,195280
,4,57,230710
,4,58,195280
,4,59,230710
,4,60,211990
,4,61,230780
,4,62,195280
,4,63,230710
,4,64,17570
,4,66,208590
,4,67,4890
,4,68,230780
,4,69,195280
,4,70,230710
,4,71,17580
,4,73,208590
,4,74,197915
,4,75,230780
,4,76,195280
,4,77,230710
,4,78,17590
,4,80,208590
,4,81,7440
,4,82,230780
,4,83,18105
,4,84,208690
,4,85,208870
,4,86,18115
,4,87,230780
,4,88,17440
,4,89,230780
,4,90,17600
,4,92,208590
,4,93,198130
,4,94,230780
,4,95,198135
,4,96,230780
,4,97,17620
,4,99,208590
,4,100,17625
,4,101,230780
,4,102,195280
,4,103,230710
,4,104,17640
,4,106,208590
,4,107,17645
,4,108,230780
,4,109,195280
,4,110,230710
,4,111,17650
,4,113,208590
,4,114,17655
,4,115,230780
,4,116,195280
,4,117,230710
,4,118,17660
,4,120,208590
,4,121,17665
,4,122,230780
,4,123,195280
,4,124,230710
,4,125,17670
,4,127,208590
,4,128,197915
,4,129,230780
,4,130,195280
,4,131,230710
,4,132,17680
,4,134,208590
,4,135,11370
,4,136,230780
,4,137,195280
,4,138,230710
,4,139,17690
,4,141,208590
,4,142,4890
,4,143,230780
,4,144,197220
,4,145,230710
,4,146,197220
,4,147,230780
,4,148,195280
,4,149,230710
,4,150,17710
,4,152,208590
,4,153,17715
,4,154,230780
,4,155,17720
,4,157,208590
,4,158,7480
,4,159,230780
,4,160,195280
,4,161,230710
,4,162,17730
,4,164,208590
,4,165,19080
,4,166,230780
,4,167,195280
,4,168,230710
,4,169,17740
,4,171,208590
,4,172,7440
,4,173,230780
,4,174,195280
,4,175,230710
,4,176,17750
,4,178,208590
,4,179,18685
,4,180,230780
,4,181,195280
,4,182,230710
,4,183,17760
,4,185,208590
,4,186,18560
,4,187,230780
,4,188,195280
,4,189,230710
,4,190,17770
,4,192,208590
,4,193,18585
,4,194,230780
,4,195,195280
,4,196,230710
,4,197,17780
,4,199,208590
,4,200,18710
,4,201,230780
,4,202,195280
,4,203,230710
,4,204,17790
,4,206,208590
,4,207,18760
,4,208,230780
,4,209,195280
,4,210,230710
,4,211,17800
,4,213,208590
,4,214,18735
,4,215,230780
,4,216,195280
,4,217,230710
,4,218,17810
,4,220,208590
,4,221,197920
,4,222,230780
,4,223,195280
,4,224,230710
,4,225,17820
,4,227,208590
,4,228,197925
,4,229,230780
,4,230,195280
,4,231,230710
,4,232,17830
,4,234,208590
,4,235,197930
,4,236,230780
,4,237,195280
,4,238,230710
,4,239,17840
,4,241,208590
,4,242,197935
,4,243,230780
,4,244,195280
,4,245,230710
,4,246,17850
,4,248,208590
,4,249,197940
,4,250,230780
,4,251,195280
,4,252,230710
,4,253,17860
,4,255,208590
,4,256,197945
,4,257,230780
,4,258,195280
,4,259,230710
,4,260,17870
,4,262,208590
,4,263,197950
,4,264,230780
,4,265,195280
,4,266,230710
,4,267,17880
,4,269,208590
,4,270,197955
,4,271,230780
,4,272,195280
,4,273,230710
,4,274,17890
,4,276,208590
,4,277,197960
,4,278,230780
,4,279,195280
,4,280,230710
,4,281,17900
,4,283,208590
,4,284,197965
,4,285,230780
,4,286,195280
,4,287,230710
,4,288,17910
,4,290,208590
,4,291,18860
,4,292,230780
,4,293,195280
,4,294,230710
,4,295,17920
,4,297,208590
,4,298,18885
,4,299,230780
,4,300,195280
,4,301,230710
,4,302,17930
,4,304,208590
,4,305,18910
,4,306,230780
,4,307,195280
,4,308,230710
,4,309,17940
,4,311,208590
,4,312,18935
,4,313,230780
,4,314,195280
,4,315,230710
,4,316,17950
,4,318,208590
,4,319,197970
,4,320,230780
,4,321,195280
,4,322,230710
,4,323,17960
,4,325,208590
,4,326,197975
,4,327,230780
,4,328,195280
,4,329,230710
,4,330,17970
,4,332,208590
,4,333,197980
,4,334,230780
,4,335,195280
,4,336,230710
,4,337,17980
,4,339,208590
,4,340,197985
,4,341,230780
,4,342,195280
,4,343,230710
,4,344,17990
,4,346,208590
,4,347,197990
,4,348,230780
,4,349,195280
,4,350,230710
,4,351,18000
,4,353,208590
,4,354,197995
,4,355,230780
,4,356,195280
,4,357,230710
,4,358,18010
,4,360,208590
,4,361,198000
,4,362,230780
,4,363,195280
,4,364,230710
,4,365,18020
,4,367,208590
,4,368,198005
,4,369,230780
,4,370,195280
,4,371,230710
,4,372,18030
,4,374,208590
,4,375,198010
,4,376,230780
,4,377,195280
,4,378,230710
,4,379,18040
,4,381,208590
,4,382,198015
,4,383,230780
,4,384,195280
,4,385,230710
,4,386,18050
,4,388,208590
,4,389,18960
,4,390,230780
,4,391,195280
,4,392,230710
,4,393,18060
,4,395,208590
,4,396,18985
,4,397,230780
,4,398,195280
,4,399,230710
,4,400,18070
,4,402,208590
,4,403,19010
,4,404,230780
,4,405,195280
,4,406,230710
,4,407,18080
,4,409,208590
,4,410,19035
,4,411,230780
,4,412,232080
,4,413,208615
,4,414,232080
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,18155
,3,36247,18145
,3,36248,320
,3,36263,17395
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227050
,3,36252,18140
,3,36244,230605
,4,1,208635
,4,2,18130
,4,4,208590
,4,5,232085
,4,6,208615
,4,7,232085
,3,36244,12610
,4,4,18165
,4,6,18170
,4,10,18175
,4,11,18115
,3,36244,12840
,4,1,18180
,3,36244,12720
,4,2,18200
,3,36244,12720
,4,3,18160
,3,36244,225610
,3,36244,12610
,4,4,18190
,3,36244,12840
,4,1,18195
,3,36244,225610
,1,1,18560
,1,2,18185
,1,4,18585
,1,5,18205
,1,7,18610
,1,8,18220
,1,10,18635
,1,11,18235
,1,13,18660
,1,14,18250
,1,16,18685
,1,17,18265
,1,19,18710
,1,20,18280
,1,22,18735
,1,23,18295
,1,25,18760
,1,26,18310
,1,28,18785
,1,29,18325
,1,31,18810
,1,32,18340
,1,34,18835
,1,35,18355
,1,37,18860
,1,38,18370
,1,40,18885
,1,41,18385
,1,43,18910
,1,44,18400
,1,46,18935
,1,47,18415
,1,49,18960
,1,50,18430
,1,52,18985
,1,53,18445
,1,55,19010
,1,56,18460
,1,58,19035
,1,59,18475
,1,61,17715
,1,62,18490
,1,64,19080
,1,65,18505
,1,67,85
,1,68,85
,1,69,85
,1,70,85
,1,71,85
,1,72,85
,1,73,85
,1,74,85
,1,75,85
,1,76,85
,1,77,85
,1,78,85
,1,79,85
,1,80,85
,1,81,85
,1,82,85
,1,83,85
,1,84,85
,1,85,85
,1,86,85
,1,87,85
,1,88,85
,1,89,85
,1,90,85
,1,91,85
,1,92,85
,1,93,85
,1,94,85
,1,95,85
,1,96,85
,1,97,85
,1,98,85
,1,99,85
,1,100,85
,1,101,85
,1,102,85
,1,103,85
,1,104,85
,1,105,85
,1,106,85
,1,107,85
,1,108,85
,1,109,85
,1,110,85
,1,111,85
,1,112,85
,1,113,85
,1,114,85
,1,115,85
,1,116,85
,1,117,85
,1,118,85
,1,119,85
,1,120,85
,1,121,85
,1,122,85
,1,123,85
,1,124,85
,1,125,85
,1,126,85
,1,127,85
,2,35551,70
,3,36314,196970
,3,36244,195515
,3,36244,12610
,4,4,18210
,3,36244,12840
,4,1,18215
,3,36244,225610
,3,36244,12610
,4,4,18225
,3,36244,12840
,4,1,18230
,3,36244,225610
,3,36244,12610
,4,4,18240
,3,36244,12840
,4,1,18245
,3,36244,225610
,3,36244,12610
,4,4,18255
,3,36244,12840
,4,1,18260
,3,36244,225610
,3,36244,12610
,4,4,18270
,3,36244,12840
,4,1,18275
,3,36244,225610
,3,36244,12610
,4,4,18285
,3,36244,12840
,4,1,18290
,3,36244,225610
,3,36244,12610
,4,4,18300
,3,36244,12840
,4,1,18305
,3,36244,225610
,3,36244,12610
,4,4,18315
,3,36244,12840
,4,1,18320
,3,36244,225610
,3,36244,12610
,4,4,18330
,3,36244,12840
,4,1,18335
,3,36244,225610
,3,36244,12610
,4,4,18345
,3,36244,12840
,4,1,18350
,3,36244,225610
,3,36244,12610
,4,4,18360
,3,36244,12840
,4,1,18365
,3,36244,225610
,3,36244,12610
,4,4,18375
,3,36244,12840
,4,1,18380
,3,36244,225610
,3,36244,12610
,4,4,18390
,3,36244,12840
,4,1,18395
,3,36244,225610
,3,36244,12610
,4,4,18405
,3,36244,12840
,4,1,18410
,3,36244,225610
,3,36244,12610
,4,4,18420
,3,36244,12840
,4,1,18425
,3,36244,225610
,3,36244,12610
,4,4,18435
,3,36244,12840
,4,1,18440
,3,36244,225610
,3,36244,12610
,4,4,18450
,3,36244,12840
,4,1,18455
,3,36244,225610
,3,36244,12610
,4,4,18465
,3,36244,12840
,4,1,18470
,3,36244,225610
,3,36244,12610
,4,4,18480
,3,36244,12840
,4,1,18485
,3,36244,225610
,3,36244,12610
,4,4,18495
,3,36244,12840
,4,1,18500
,3,36244,225610
,3,36244,12610
,4,4,18510
,3,36244,12840
,4,1,18515
,3,36244,225610
,3,36245,18115
,3,36246,12650
,3,36248,18115
,3,36249,12655
,3,36376,18160
,3,36250,340
,6,1,85
,2,34434,18530
,2,34435,18535
,2,35551,425
,2,34299,18540
,3,36254,18520
,3,36255,560
,6,64,85
,3,36244,18545
,4,1,12650
,4,2,18550
,2,35551,425
,2,34299,19120
,3,36254,19115
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,19125
,2,35551,425
,2,34299,19150
,3,36254,19145
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,19155
,2,929,18565
,2,930,18590
,2,931,18615
,2,932,18640
,2,933,18665
,2,934,18690
,2,935,18715
,2,936,18740
,2,937,18765
,2,938,18790
,2,939,18815
,2,940,18840
,2,941,18865
,2,942,18890
,2,943,18915
,2,944,18940
,2,945,18965
,2,946,18990
,2,947,19015
,2,948,19040
,2,888,19060
,2,949,19085
,2,828,18525
,2,71,20640
,2,34460,20725
,2,294,20730
,2,35551,197195
,3,36244,197200
,3,36259,425
,3,36377,223830
,3,36260,197215
,3,36244,234750
,3,36259,18540
,3,36261,18525
,4,2,198075
,3,36262,198070
,3,36244,234750
,3,36245,18560
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18185
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18570
,3,36254,18555
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18575
,2,828,18565
,2,35551,430
,3,36244,196975
,3,36259,18570
,3,36261,18565
,3,36244,234750
,3,36245,18585
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18205
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18595
,3,36254,18580
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18600
,2,828,18590
,2,35551,430
,3,36244,196985
,3,36259,18595
,3,36261,18590
,3,36244,234750
,3,36245,18610
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18220
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18620
,3,36254,18605
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18625
,2,828,18615
,2,35551,430
,3,36244,196995
,3,36259,18620
,3,36261,18615
,3,36244,234750
,3,36245,18635
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18235
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18645
,3,36254,18630
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18650
,2,828,18640
,2,35551,430
,3,36244,197005
,3,36259,18645
,3,36261,18640
,3,36244,234750
,3,36245,18660
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18250
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18670
,3,36254,18655
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18675
,2,828,18665
,2,35551,430
,3,36244,197015
,3,36259,18670
,3,36261,18665
,3,36244,234750
,3,36245,18685
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18265
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18695
,3,36254,18680
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18700
,2,828,18690
,2,35551,430
,3,36244,197025
,3,36259,18695
,3,36261,18690
,3,36244,234750
,3,36245,18710
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18280
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18720
,3,36254,18705
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18725
,2,828,18715
,2,35551,430
,3,36244,197035
,3,36259,18720
,3,36261,18715
,3,36244,234750
,3,36245,18735
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18295
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18745
,3,36254,18730
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18750
,2,828,18740
,2,35551,430
,3,36244,197045
,3,36259,18745
,3,36261,18740
,3,36244,234750
,3,36245,18760
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18310
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18770
,3,36254,18755
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18775
,2,828,18765
,2,35551,430
,3,36244,197055
,3,36259,18770
,3,36261,18765
,3,36244,234750
,3,36245,18785
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18325
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18795
,3,36254,18780
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18800
,2,828,18790
,2,35551,430
,3,36244,197065
,3,36259,18795
,3,36261,18790
,3,36244,234750
,3,36245,18810
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18340
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18820
,3,36254,18805
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18825
,2,828,18815
,2,35551,430
,3,36244,197075
,3,36259,18820
,3,36261,18815
,3,36244,234750
,3,36245,18835
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18355
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18845
,3,36254,18830
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18850
,2,828,18840
,2,35551,430
,3,36244,197085
,3,36259,18845
,3,36261,18840
,3,36244,234750
,3,36245,18860
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18370
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18870
,3,36254,18855
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18875
,2,828,18865
,2,35551,430
,3,36244,197095
,3,36259,18870
,3,36261,18865
,3,36244,234750
,3,36245,18885
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18385
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18895
,3,36254,18880
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18900
,2,828,18890
,2,35551,430
,3,36244,197105
,3,36259,18895
,3,36261,18890
,3,36244,234750
,3,36245,18910
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18400
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18920
,3,36254,18905
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18925
,2,828,18915
,2,35551,430
,3,36244,197115
,3,36259,18920
,3,36261,18915
,3,36244,234750
,3,36245,18935
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18415
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18945
,3,36254,18930
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18950
,2,828,18940
,2,35551,430
,3,36244,197125
,3,36259,18945
,3,36261,18940
,3,36244,234750
,3,36245,18960
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18430
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18970
,3,36254,18955
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,18975
,2,828,18965
,2,35551,430
,3,36244,197135
,3,36259,18970
,3,36261,18965
,3,36244,234750
,3,36245,18985
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18445
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,18995
,3,36254,18980
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,19000
,2,828,18990
,2,35551,430
,3,36244,197145
,3,36259,18995
,3,36261,18990
,3,36244,234750
,3,36245,19010
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18460
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,19020
,3,36254,19005
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,19025
,2,828,19015
,2,35551,430
,3,36244,197155
,3,36259,19020
,3,36261,19015
,3,36244,234750
,3,36245,19035
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18475
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,19045
,3,36254,19030
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,19050
,2,828,19040
,2,35551,430
,3,36244,197165
,3,36259,19045
,3,36261,19040
,3,36244,234750
,3,36245,17715
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18490
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,19065
,3,36254,19055
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,19070
,2,828,19060
,2,35551,430
,3,36244,197175
,3,36259,19065
,3,36261,19060
,3,36244,234750
,3,36245,19080
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,18505
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,19090
,3,36254,19075
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,19095
,2,828,19085
,2,35551,430
,3,36244,197185
,3,36259,19090
,3,36261,19085
,3,36244,234750
,3,36244,12610
,4,4,19105
,3,36244,12840
,4,1,19110
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,19100
,3,36250,340
,6,1,85
,2,828,18530
,2,35551,430
,3,36244,197205
,3,36259,19120
,3,36261,18530
,3,36244,234750
,3,36244,12610
,4,4,19135
,3,36244,12840
,4,1,19140
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,19130
,3,36250,340
,6,1,85
,2,828,18535
,2,35551,430
,3,36244,197230
,3,36259,19150
,3,36261,18535
,3,36244,234750
,3,36244,12610
,4,4,19165
,3,36244,12840
,4,1,19170
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,19160
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,19185
,3,36254,19175
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,19190
,2,828,19180
,2,35551,430
,3,36244,197255
,3,36259,19185
,3,36261,19180
,3,36244,234750
,3,36264,19200
,3,36245,19205
,3,36244,575
,4,3,19210
,3,36244,225610
,3,36245,19220
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19230
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19240
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19250
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19260
,3,36246,19265
,3,36247,19270
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228395
,3,36371,195020
,3,36252,28580
,3,36244,230605
,4,1,208635
,4,2,208685
,4,4,213600
,4,5,19260
,4,6,230705
,4,7,28590
,4,8,208610
,4,9,233085
,4,10,208615
,4,11,233085
,3,36244,4430
,4,5,16550
,4,6,28595
,3,36245,19280
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19290
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19300
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19310
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19320
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19330
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19340
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19350
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19360
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19370
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19380
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19390
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19400
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,19410
,6,1,85
,3,36372,15695
,3,36373,197290
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,19420
,6,1,85
,3,36372,15695
,3,36373,197295
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,19430
,6,1,85
,3,36372,15695
,3,36373,197300
,3,36244,4410
,4,3,19440
,4,1,19445
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,19455
,4,11,19260
,4,12,19460
,4,13,15695
,4,14,19220
,4,15,19230
,4,16,19240
,4,17,19250
,4,18,19280
,4,19,19290
,4,20,19300
,4,21,19310
,4,22,19320
,4,23,19330
,3,36245,655
,3,36246,19470
,3,36247,19450
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227075
,3,36252,19435
,3,36244,230605
,4,1,208225
,4,2,19215
,4,3,208925
,4,4,208705
,4,5,19225
,4,6,208925
,4,7,208705
,4,8,19235
,4,9,208925
,4,10,208705
,4,11,19245
,4,13,208590
,4,14,208705
,4,15,19255
,4,16,208925
,4,17,19275
,4,18,208925
,4,19,208705
,4,20,19285
,4,21,208925
,4,22,208705
,4,23,19295
,4,24,208925
,4,25,208705
,4,26,19305
,4,27,208925
,4,28,208705
,4,29,19315
,4,31,208590
,4,32,208705
,4,33,19325
,4,34,208925
,4,35,208705
,4,36,208635
,4,37,19455
,4,38,19445
,4,39,208775
,4,40,1050
,4,41,230710
,4,42,195280
,4,43,230710
,4,44,7440
,4,45,230710
,4,46,208870
,4,47,16905
,4,48,232090
,4,49,208870
,4,50,19335
,4,52,208590
,4,53,19340
,4,54,230780
,4,55,19340
,4,56,230710
,4,57,10020
,4,58,230710
,4,59,197385
,4,60,209315
,4,61,19250
,4,62,230780
,4,63,19260
,4,64,230780
,4,65,19345
,4,67,208590
,4,68,19350
,4,69,230780
,4,70,19355
,4,72,208590
,4,73,19360
,4,74,230780
,4,75,19365
,4,77,208590
,4,78,19370
,4,79,230780
,4,80,19375
,4,82,208590
,4,83,19380
,4,84,230780
,4,85,19385
,4,87,208590
,4,88,19390
,4,89,230780
,4,90,19395
,4,92,208590
,4,93,19400
,4,94,230780
,4,95,19405
,4,97,208590
,4,98,197690
,4,99,230780
,4,100,19415
,4,102,208590
,4,103,197695
,4,104,230780
,4,105,19425
,4,107,208590
,4,108,197700
,4,109,230780
,4,110,232095
,4,111,208615
,4,112,232095
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,19490
,3,36247,19480
,3,36248,320
,3,36263,19195
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227080
,3,36252,19475
,3,36244,230605
,4,1,208635
,4,2,19465
,4,4,208590
,4,5,232100
,4,6,208615
,4,7,232100
,3,36264,19500
,3,36245,19505
,3,36244,575
,4,3,19510
,3,36244,225610
,3,36244,7530
,4,2,19515
,3,36244,7530
,4,2,19525
,3,36244,7530
,4,2,19535
,3,36244,7530
,4,2,19545
,3,36244,7530
,4,2,19555
,3,36244,7530
,4,2,19565
,3,36244,7530
,4,2,19575
,3,36244,7530
,4,2,19585
,3,36244,7530
,4,2,19595
,3,36244,7530
,4,2,19605
,3,36244,7530
,4,2,19615
,3,36244,7530
,4,2,19625
,3,36244,7530
,4,2,19635
,4,1,7995
,4,2,19650
,4,3,19655
,4,4,19660
,4,5,19665
,4,6,19670
,4,7,19675
,4,8,19680
,4,9,19685
,4,10,19690
,4,11,19695
,4,12,19700
,4,13,19705
,4,14,19710
,4,15,19715
,4,16,19720
,4,17,19725
,4,18,19730
,4,19,19735
,4,20,19740
,4,21,19745
,4,22,19750
,4,23,19755
,4,24,19760
,4,25,19765
,4,26,19770
,4,2,19520
,4,2,19530
,4,2,19540
,4,2,19550
,4,2,19560
,4,2,19570
,4,2,19580
,4,2,19590
,4,2,19600
,4,2,19610
,4,2,19620
,4,2,19630
,4,2,19640
,4,1,19780
,4,2,19725
,4,3,19785
,4,4,19765
,4,5,19790
,4,6,19765
,4,7,90
,4,8,19695
,4,9,80
,4,10,7995
,4,11,10495
,4,12,19735
,4,13,19795
,4,14,19745
,4,15,19800
,4,16,19755
,3,36244,7530
,4,1,10550
,4,2,10555
,4,3,10560
,4,4,10565
,4,5,10570
,4,6,10575
,4,7,10580
,4,8,10585
,4,9,10590
,4,10,10595
,4,11,10600
,4,12,10605
,4,2,19805
,3,36245,17645
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19825
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19835
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19845
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19855
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19865
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19875
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19885
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19895
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19905
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,6960
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19920
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19930
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19940
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19950
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19960
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19970
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,19980
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,4920
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,19995
,3,36247,20000
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,20005
,6,1,85
,3,36251,230385
,3,36252,221170
,3,36244,230605
,4,1,208745
,4,2,208945
,4,3,208620
,4,4,208635
,4,5,221160
,4,6,208250
,4,7,208870
,4,8,230750
,4,9,221180
,4,10,208775
,4,11,7385
,4,12,209135
,4,13,208305
,4,14,208370
,4,15,208870
,4,16,234575
,4,17,208615
,4,18,234575
,4,19,21455
,4,20,230705
,4,21,208515
,4,22,211905
,4,23,6710
,4,24,209135
,4,25,234575
,4,26,208615
,4,27,234575
,4,28,208870
,4,29,208870
,4,30,21455
,4,31,230710
,4,32,208870
,4,33,1190
,4,34,209110
,4,35,221165
,4,36,208925
,4,37,7660
,4,38,209315
,4,39,230750
,4,40,211905
,4,41,208370
,4,42,208505
,4,43,211905
,4,44,221185
,4,45,208775
,4,46,208370
,4,47,208505
,4,48,208305
,4,49,208370
,4,50,208870
,4,51,230750
,4,52,234575
,4,53,208615
,4,54,234575
,4,55,208220
,3,36244,4430
,4,5,4530
,4,6,4665
,4,7,211595
,4,8,29110
,4,9,212445
,4,10,4530
,4,11,10275
,4,12,29290
,4,13,211440
,3,36372,16905
,3,36373,197305
,3,36245,655
,3,36246,20015
,3,36247,20020
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,20025
,6,1,85
,3,36251,227115
,3,36252,20400
,3,36244,230605
,4,1,208420
,4,2,208945
,4,3,208945
,4,4,20390
,4,5,208925
,4,6,208635
,4,7,12615
,4,8,230705
,4,9,211345
,4,10,230705
,4,12,208740
,4,13,232130
,4,14,208615
,4,15,232130
,4,17,208870
,3,36244,4430
,4,5,16740
,4,6,20405
,4,7,20395
,4,8,20405
,4,9,16740
,4,10,20410
,3,36372,16905
,3,36373,197310
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,20035
,6,1,85
,3,36372,16905
,3,36373,197315
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,20045
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,20055
,6,1,85
,3,36372,16905
,3,36373,197320
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,20065
,6,1,85
,3,36372,16905
,3,36373,197325
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,20080
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,20095
,3,36247,20100
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,20105
,6,1,85
,3,36251,227130
,3,36252,20540
,3,36244,230605
,4,1,208635
,4,2,197710
,4,3,232135
,4,4,320
,4,5,232140
,4,6,195280
,4,7,230735
,4,8,20535
,4,9,208590
,4,10,20515
,4,11,208490
,4,12,16550
,4,13,232145
,4,14,16560
,4,15,231510
,4,16,5360
,4,17,232150
,4,18,195280
,4,19,230780
,4,20,232155
,4,21,208615
,4,22,232155
,3,36244,4430
,4,5,20545
,4,6,20550
,3,36372,16905
,3,36373,197330
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,20115
,6,1,85
,3,36372,16905
,3,36373,197335
,3,36244,4410
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,19980
,4,11,16910
,4,12,16905
,4,13,20130
,4,14,20135
,4,15,17645
,4,16,19825
,4,17,19835
,4,18,19845
,4,19,19855
,4,20,19865
,4,21,19875
,4,22,19885
,4,23,19895
,4,24,19905
,4,25,6960
,4,26,19920
,4,27,19930
,4,28,19940
,4,29,19950
,4,30,19960
,4,31,20140
,4,32,19970
,4,33,4920
,3,36245,655
,3,36246,20150
,3,36247,20125
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227090
,3,36252,20120
,3,36244,230605
,4,1,208400
,4,2,208945
,4,3,208945
,4,4,19815
,4,6,208590
,4,7,208705
,4,8,19820
,4,9,208925
,4,10,208705
,4,11,19830
,4,12,208925
,4,13,208705
,4,14,19840
,4,16,208590
,4,17,208705
,4,18,19850
,4,20,208590
,4,21,208705
,4,22,19860
,4,24,208590
,4,25,208705
,4,26,19870
,4,27,208925
,4,28,208705
,4,29,19880
,4,31,208590
,4,32,208705
,4,33,19890
,4,35,208590
,4,36,208705
,4,37,19900
,4,38,208925
,4,39,208705
,4,40,19910
,4,41,208925
,4,42,208705
,4,43,19915
,4,44,208925
,4,45,208705
,4,46,19925
,4,47,208925
,4,48,208705
,4,49,19935
,4,50,208925
,4,51,208705
,4,52,19945
,4,53,208925
,4,54,208705
,4,55,19955
,4,56,208925
,4,57,208705
,4,58,19965
,4,60,208590
,4,61,208705
,4,62,19975
,4,63,208925
,4,64,19985
,4,65,208925
,4,66,208705
,4,67,208635
,4,68,204480
,4,69,275
,4,70,208590
,4,71,208590
,4,72,208870
,4,73,19990
,4,75,208590
,4,76,197350
,4,77,230780
,4,78,20010
,4,80,208590
,4,81,197355
,4,82,230780
,4,83,20030
,4,85,208590
,4,86,197360
,4,87,230780
,4,88,20040
,4,90,208590
,4,91,197365
,4,92,230780
,4,93,20050
,4,95,208590
,4,96,22780
,4,97,230780
,4,98,20060
,4,100,208590
,4,101,20135
,4,102,230780
,4,103,208870
,4,104,17645
,4,105,230780
,4,106,19645
,4,107,208590
,4,108,197470
,4,109,230780
,4,110,19775
,4,111,208590
,4,112,197475
,4,113,230780
,4,114,6960
,4,115,230780
,4,116,19920
,4,117,230780
,4,118,19930
,4,119,230780
,4,120,19940
,4,121,230780
,4,122,20070
,4,123,208925
,4,124,205545
,4,125,197355
,4,126,209315
,4,127,295
,4,128,230780
,4,129,19810
,4,130,208735
,4,131,208870
,4,132,20075
,4,134,208590
,4,135,8950
,4,136,230780
,4,137,20085
,4,138,208925
,4,139,205560
,4,140,197355
,4,141,209315
,4,142,12150
,4,143,230780
,4,144,205575
,4,145,197355
,4,146,209315
,4,147,19980
,4,148,230780
,4,149,20090
,4,151,208590
,4,152,197385
,4,153,230780
,4,154,20110
,4,156,208590
,4,157,197390
,4,158,230780
,4,159,232105
,4,160,208615
,4,161,232105
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,20170
,3,36247,20160
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227095
,3,36252,20155
,3,36244,230605
,4,1,208635
,4,2,20145
,4,4,208590
,4,5,232110
,4,6,208615
,4,7,232110
,4,2,20180
,4,2,20190
,4,2,20200
,4,2,20210
,3,36244,4410
,3,36244,7530
,4,1,20230
,4,2,20225
,3,36244,4410
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36253,20360
,3,36254,19990
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,19995
,2,34447,20245
,2,34448,20370
,2,34449,20375
,2,34450,20380
,2,1121,20385
,2,1018,20260
,2,882,20265
,2,133,20315
,2,1001,20320
,2,1002,20325
,2,1003,20330
,2,48,197370
,2,200,20415
,2,454,197375
,2,1007,197380
,2,34451,20420
,2,34452,20440
,2,35551,430
,3,36244,197675
,2,842,204480
,2,132,100
,2,35664,110
,2,35911,110
,2,35551,1390
,3,36244,1400
,4,1,204475
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,20060
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,34453,205495
,2,34454,205500
,2,35551,425
,3,36253,205505
,3,36254,19815
,3,36255,20365
,6,64,85
,3,36315,205510
,3,36244,197575
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,19820
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,19830
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36253,205515
,3,36254,19840
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36253,205520
,3,36254,19850
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36253,205525
,3,36254,19860
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,19870
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36253,205530
,3,36254,19880
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36253,205535
,3,36254,19890
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,19900
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,19910
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,19915
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,19925
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,19935
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,19945
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,19955
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,1,0,10550
,1,1,10555
,1,2,10560
,1,3,10565
,1,4,10570
,1,5,10575
,1,6,10580
,1,7,10585
,1,8,10590
,1,9,10595
,1,10,10600
,1,11,10605
,2,35551,1070
,3,36314,19805
,3,36244,198805
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36253,205540
,3,36254,19965
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,19985
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,3,36256,197340
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,16510
,4,3,20250
,4,4,20255
,4,5,20260
,4,6,20265
,4,7,20270
,4,8,20275
,4,9,20280
,4,10,20285
,4,11,20290
,4,12,20295
,4,13,20300
,4,14,20305
,4,15,20310
,4,16,20315
,4,17,20320
,4,18,20325
,4,19,20330
,4,20,20335
,4,21,20340
,4,22,20345
,4,23,20350
,4,24,20355
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,20010
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,20015
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,20030
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,20040
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,20050
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,3,36245,20395
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,20075
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36253,20425
,3,36254,20090
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,20095
,4,1,560
,4,2,20430
,4,3,20435
,2,827,85
,2,1025,110
,2,1026,100
,2,1027,100
,2,35551,430
,3,36244,197760
,2,828,85
,2,35551,430
,3,36244,196115
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,20110
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,34458,795
,2,35551,425
,2,34299,20500
,3,36254,19335
,3,36255,20505
,6,64,85
,3,36244,20510
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19215
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19225
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19235
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36253,205590
,3,36254,19245
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19275
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19285
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19295
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19305
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36253,205595
,3,36254,19315
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19325
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,2,828,20445
,2,35551,197770
,3,36315,197775
,3,36244,197780
,3,36256,197680
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,7450
,4,3,11735
,4,4,20450
,4,5,20455
,4,6,20460
,4,7,20465
,4,8,20470
,4,9,20475
,4,10,20480
,4,11,20485
,4,12,20490
,4,13,20495
,3,36259,425
,3,36377,12670
,3,36260,197705
,3,36244,234750
,4,1,16550
,4,3,20520
,4,5,20525
,4,7,20530
,4,1,16560
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19345
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19355
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19365
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19375
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19385
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19395
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36253,20620
,3,36254,19405
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36253,20630
,3,36254,19415
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,973,7450
,0,820,11735
,0,952,20450
,0,953,20455
,0,954,20460
,0,955,20465
,0,956,20470
,0,957,20475
,0,958,20480
,0,959,20485
,0,960,20490
,0,961,20495
,2,35551,425
,3,36254,19425
,3,36255,20505
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17570
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,2,926,18525
,2,128,950
,2,35551,430
,3,36315,205600
,3,36244,198120
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17415
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17425
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,2,35551,18540
,3,36315,205605
,3,36314,205610
,3,36244,198095
,3,36378,235040
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17460
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,2,35551,18540
,3,36315,205615
,3,36314,205620
,3,36244,202990
,3,36378,235050
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17470
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,17480
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17490
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17500
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17510
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17520
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17530
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17540
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17550
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17560
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,198035
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,20645
,4,3,18525
,4,4,20650
,4,5,20655
,4,6,20660
,4,7,950
,4,8,20665
,4,9,20670
,4,10,20675
,4,11,20680
,4,12,20685
,4,13,20690
,4,14,20695
,4,15,20700
,4,16,20705
,4,17,20710
,4,18,20715
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17580
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17590
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17600
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,17605
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17620
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,17630
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36253,20750
,3,36254,17640
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17650
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17660
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17670
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17680
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17690
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,17695
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17710
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17720
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17730
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17740
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17750
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17760
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17770
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17780
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17790
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17800
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17810
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17820
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17830
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17840
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17850
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17860
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17870
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17880
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17890
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17900
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17910
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17920
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17930
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17940
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17950
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17960
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17970
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17980
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,17990
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,18000
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,18010
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,18020
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,18030
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,18040
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,18050
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,18060
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,18070
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,0,855,20645
,0,926,18525
,0,865,20650
,0,866,20655
,0,927,20660
,0,128,950
,0,867,20665
,0,928,20670
,0,868,20675
,0,869,20680
,0,870,20685
,0,871,20690
,0,872,20695
,0,873,20700
,0,874,20705
,0,875,20710
,0,876,20715
,2,35551,425
,3,36254,18080
,3,36255,20720
,6,64,85
,3,36244,12670
,4,1,4220
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,20975
,6,1,85
,3,36372,990
,3,36373,198625
,3,36245,655
,3,36246,20985
,3,36247,20990
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,20995
,6,1,85
,3,36251,229115
,3,36252,29580
,3,36244,230605
,4,1,208620
,4,2,208635
,4,3,206170
,4,4,16910
,4,5,232705
,4,6,203380
,4,7,233480
,4,8,12595
,4,9,233485
,4,10,233490
,4,11,208615
,4,12,233490
,3,36244,4430
,4,5,4665
,4,6,29585
,3,36372,990
,3,36373,198630
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,21005
,6,1,85
,3,36372,990
,3,36373,198635
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,21015
,6,1,85
,3,36372,990
,3,36373,198640
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,21025
,6,1,85
,3,36372,990
,3,36373,198645
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,21035
,6,1,85
,3,36372,990
,3,36373,198650
,3,36244,4410
,3,36245,655
,3,36246,21050
,3,36247,21055
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229685
,3,36252,218015
,3,36244,230605
,4,1,208635
,4,2,207730
,4,3,16910
,4,4,209335
,4,5,233930
,4,6,208615
,4,7,233930
,3,36244,4430
,3,36244,4410
,3,36244,4410
,4,3,21070
,4,1,21075
,4,3,21080
,3,36244,4410
,3,36244,4410
,3,36244,4410
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,21045
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,21050
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,21110
,6,1,85
,3,36372,12615
,3,36373,198655
,3,36244,4410
,3,36245,655
,3,36246,21125
,3,36247,21130
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227590
,3,36252,21300
,3,36244,230605
,4,1,208635
,4,2,105
,4,3,208740
,4,5,232380
,4,6,208615
,4,7,232380
,4,8,115
,4,9,208740
,3,36244,4430
,4,5,21305
,4,6,16550
,3,36244,4410
,3,36244,7530
,4,1,21150
,4,2,21145
,4,2,21160
,3,36244,4410
,3,36244,7530
,4,1,21190
,4,2,21185
,3,36244,4410
,3,36244,4410
,4,3,21215
,4,1,21220
,4,3,21225
,4,5,21230
,4,7,21235
,4,9,21240
,3,36244,4410
,3,36244,4410
,3,36244,7530
,4,1,21260
,4,2,21255
,3,36244,4410
,4,1,655
,3,36244,4410
,3,36244,4410
,4,3,21290
,4,1,21295
,3,36244,4410
,3,36245,21320
,3,36246,21325
,3,36247,21330
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230560
,3,36252,221600
,3,36244,230605
,4,1,208635
,4,2,233760
,4,3,208535
,4,4,233760
,4,5,233760
,4,6,208540
,4,7,221595
,4,8,208250
,4,9,208870
,4,10,233765
,4,11,230750
,4,12,7460
,4,13,209305
,4,14,21455
,4,15,230705
,4,16,230835
,4,17,208310
,4,18,221610
,4,19,208825
,4,21,208870
,4,23,208870
,4,24,233765
,4,25,233765
,4,26,234730
,4,27,208615
,4,28,234730
,3,36244,4430
,4,5,211365
,3,36245,21340
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,21350
,3,36246,21355
,3,36247,21360
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230565
,3,36252,221615
,3,36244,230605
,4,1,208635
,4,3,208870
,4,4,233760
,4,5,208535
,4,6,230835
,4,7,233760
,4,8,208535
,4,9,233765
,4,10,233765
,4,11,234735
,4,12,208615
,4,13,234735
,4,14,21370
,4,15,209265
,3,36244,4430
,3,36245,21370
,3,36246,21375
,3,36247,21380
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229415
,3,36375,30795
,3,36252,30800
,3,36244,230605
,4,1,208635
,4,2,208720
,4,4,233755
,4,5,208615
,4,6,233755
,4,7,233760
,4,8,208535
,4,9,233765
,4,10,233765
,4,13,208870
,4,14,233760
,4,15,233760
,4,16,208535
,4,17,30810
,4,18,208775
,4,19,233760
,4,20,208305
,4,21,208680
,4,22,233765
,4,23,231125
,4,24,28350
,4,25,230710
,4,27,208590
,4,28,21375
,4,29,208720
,4,30,230750
,4,31,30815
,4,32,208775
,4,33,21375
,4,34,21375
,4,35,30820
,4,36,208825
,4,38,233755
,4,39,208615
,4,40,233755
,4,41,233760
,4,42,208220
,4,43,233755
,4,44,208615
,4,45,233755
,4,46,233760
,4,47,208305
,4,48,208680
,4,49,233765
,4,50,196690
,4,51,233770
,4,52,208220
,4,53,30825
,4,54,208775
,3,36244,4430
,4,5,28350
,4,6,30830
,4,7,28855
,3,36245,21390
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,21400
,3,36246,21405
,3,36247,21410
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230525
,3,36252,221525
,3,36244,230605
,4,1,208635
,4,2,196660
,4,3,230710
,4,4,208720
,4,6,234700
,4,7,208615
,4,8,234700
,4,9,233760
,4,10,196690
,4,11,230710
,4,12,208360
,4,13,221535
,4,14,208825
,4,15,221520
,4,16,208655
,4,17,28350
,4,18,234705
,4,19,7385
,4,20,209335
,4,21,233760
,4,22,208305
,4,23,208680
,4,24,233765
,4,25,208720
,4,26,221540
,4,27,208825
,4,29,208870
,3,36244,4430
,4,5,28350
,4,6,29535
,3,36245,21420
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,3,36245,655
,3,36246,21475
,3,36247,21480
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229700
,3,36252,218310
,3,36244,230605
,4,1,208635
,4,2,208665
,4,3,233945
,4,4,208615
,4,5,233945
,4,6,218320
,4,7,208775
,4,8,208870
,4,9,218295
,4,11,208590
,4,12,202465
,4,13,230780
,4,14,202370
,4,15,230780
,4,16,212600
,4,17,230710
,4,18,208720
,4,19,207225
,4,20,218305
,4,21,208925
,4,22,195980
,4,23,209315
,3,36244,4430
,3,36245,655
,3,36246,21490
,3,36247,21495
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229910
,3,36252,220975
,3,36244,230605
,4,1,208635
,4,2,208665
,4,3,234495
,4,4,208615
,4,5,234495
,4,6,220985
,4,7,208775
,4,8,208870
,4,9,220965
,4,11,208590
,4,12,202465
,4,13,230780
,4,14,202370
,4,15,230780
,3,36244,4430
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,21510
,6,1,85
,3,36372,12615
,3,36373,198870
,3,36244,4410
,3,36244,590
,4,1,21540
,0,1058,85
,0,1059,21570
,0,1060,21575
,2,35551,425
,3,36254,21470
,3,36255,21580
,6,64,85
,3,36244,12670
,4,1,21475
,3,36244,590
,4,1,21550
,0,1058,85
,0,1059,21570
,0,1060,21575
,2,35551,425
,3,36254,21485
,3,36255,21580
,6,64,85
,3,36244,12670
,4,1,21490
,3,36244,590
,4,1,21560
,0,1058,85
,0,1059,21570
,0,1060,21575
,2,35551,425
,3,36253,198895
,3,36254,21500
,3,36255,21580
,6,64,85
,3,36244,12670
,4,1,4220
,0,1058,85
,0,1059,21570
,0,1060,21575
,2,35551,425
,3,36254,21505
,3,36255,21580
,6,64,85
,3,36244,12670
,4,1,4220
,2,35855,110
,2,35672,221670
,2,35657,224015
,2,1343,110
,2,860,70
,2,34384,224020
,2,35497,224025
,2,1026,100
,2,35458,110
,2,1342,70
,2,35868,110
,2,35834,110
,2,35512,70
,2,35800,655
,2,35520,207655
,2,35892,100
,2,34685,220710
,2,34684,220710
,2,35551,223220
,3,36315,224030
,3,36244,224035
,2,35855,110
,2,35672,221690
,2,35657,224230
,2,1343,110
,2,860,70
,2,34384,224235
,2,35497,224240
,2,1026,100
,2,35458,110
,2,1342,70
,2,35868,110
,2,35834,110
,2,35512,70
,2,35800,655
,2,35520,207655
,2,35892,100
,2,34685,221000
,2,34684,221000
,2,35551,223220
,3,36315,224245
,3,36244,224250
,3,36256,16075
,3,36257,16015
,3,36258,685
,3,36244,195240
,4,3,21570
,4,4,21575
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,21590
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,21600
,6,1,85
,3,36244,4410
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,21585
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,4220
,0,122,915
,0,795,15980
,0,820,15985
,0,796,15990
,0,797,15995
,0,798,16000
,0,821,16005
,0,799,16010
,2,35551,425
,3,36254,21595
,3,36255,16015
,6,64,85
,3,36244,12670
,4,1,4220
,3,36245,21625
,3,36246,21630
,3,36247,21635
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229890
,3,36252,220750
,3,36244,230605
,4,1,208635
,4,2,7440
,4,3,209315
,4,4,213200
,4,5,208495
,4,8,208720
,4,9,195310
,4,10,209275
,4,11,4920
,4,12,209335
,4,13,234475
,4,14,208615
,4,15,234475
,3,36244,4430
,4,5,213025
,3,36245,655
,3,36246,21645
,3,36247,21650
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,21655
,6,1,85
,3,36251,229885
,3,36252,220725
,3,36244,230605
,4,1,208595
,4,2,208945
,4,3,208945
,4,4,208620
,4,5,208635
,4,6,220735
,4,7,208775
,4,8,208720
,4,9,4920
,4,10,209335
,4,11,208720
,4,12,212695
,4,13,24795
,4,14,209335
,4,15,213210
,4,16,230710
,4,17,220740
,4,18,208690
,4,19,30195
,4,20,209275
,4,21,220715
,4,23,208590
,4,24,211550
,4,25,230780
,4,26,195310
,4,27,209275
,4,28,230755
,4,29,23245
,4,30,209335
,4,31,208430
,4,32,30145
,4,33,209265
,4,34,212360
,4,35,230705
,4,36,211350
,4,37,220745
,4,38,208650
,4,39,208590
,4,40,230835
,4,41,12595
,4,42,209315
,4,43,234470
,4,44,208615
,4,45,234470
,3,36244,4430
,4,5,29045
,4,6,212800
,4,7,4665
,4,8,213210
,4,9,195705
,4,10,212700
,4,11,28795
,4,12,212800
,4,13,29045
,3,36372,198940
,3,36373,198945
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,21665
,6,1,85
,3,36372,12615
,3,36373,198950
,3,36244,4410
,0,1067,21695
,0,1068,16995
,0,1069,17010
,0,1064,21700
,2,35551,425
,3,36254,21640
,3,36255,21705
,6,64,85
,3,36244,12670
,4,1,21645
,2,34943,205655
,2,35551,430
,3,36315,205660
,3,36244,205665
,0,1067,21695
,0,1068,16995
,0,1069,17010
,0,1064,21700
,2,35551,425
,3,36254,21620
,3,36255,21705
,6,64,85
,3,36244,12670
,4,1,21630
,3,36256,16085
,3,36257,16015
,3,36258,685
,3,36244,195240
,4,2,21695
,4,3,16995
,4,4,17010
,4,5,21700
,0,1067,21695
,0,1068,16995
,0,1069,17010
,0,1064,21700
,2,35551,425
,3,36254,21660
,3,36255,21705
,6,64,85
,3,36244,12670
,4,1,4220
,3,36244,4410
,4,3,21720
,4,1,21725
,4,3,21730
,3,36244,4410
,3,36244,7530
,4,1,21770
,4,2,21765
,3,36244,4410
,3,36264,21790
,3,36245,21795
,3,36244,575
,4,3,21800
,3,36244,225610
,3,36245,21810
,3,36246,21815
,3,36247,21820
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227745
,3,36252,22270
,3,36244,230605
,4,1,208635
,4,2,21455
,4,3,230720
,4,4,208830
,4,5,231515
,4,6,200
,4,7,208495
,4,8,7460
,4,9,209315
,4,10,211675
,4,11,208495
,4,12,7460
,4,13,232490
,4,14,208305
,4,15,208680
,4,16,208430
,4,17,7460
,4,18,232490
,4,19,208305
,4,20,208830
,4,21,208305
,4,22,208830
,4,23,232495
,4,24,208615
,4,25,232495
,4,26,208360
,4,27,208720
,4,28,211675
,4,29,7420
,4,30,209135
,4,31,232495
,4,32,208615
,4,33,232495
,4,34,208305
,4,35,208920
,4,36,208310
,4,37,232495
,4,38,208615
,4,39,232495
,3,36244,4430
,4,5,22275
,4,6,22280
,4,7,22285
,4,8,10275
,4,9,22290
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21830
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21840
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21850
,6,1,85
,3,36372,16905
,3,36373,198985
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21860
,6,1,85
,3,36372,16905
,3,36373,198990
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21870
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21880
,6,1,85
,3,36372,16905
,3,36373,198995
,3,36245,655
,3,36246,21890
,3,36247,21895
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21830
,6,1,85
,3,36251,228410
,3,36252,28625
,3,36244,230605
,4,1,208635
,4,2,12150
,4,3,232930
,4,4,7440
,4,5,233100
,4,6,233105
,4,7,208615
,4,8,233105
,3,36244,4430
,4,5,23105
,3,36245,655
,3,36246,21905
,3,36247,21910
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21915
,6,1,85
,3,36251,227720
,3,36252,22190
,3,36244,230605
,4,1,208620
,4,2,208635
,4,3,655
,4,5,21455
,4,6,232435
,4,7,208830
,4,8,208360
,4,9,232440
,4,10,12615
,4,11,230710
,4,12,21750
,4,13,209275
,4,14,10040
,4,15,230705
,4,16,213280
,4,17,22200
,4,18,208690
,4,19,208590
,4,20,208860
,4,21,205
,4,22,209010
,4,23,209015
,4,24,7555
,4,25,232445
,4,26,205
,4,27,208325
,4,30,208305
,4,31,208830
,4,32,232450
,4,33,208615
,4,34,232450
,4,35,208360
,4,36,208720
,4,37,205
,4,38,7755
,4,39,232455
,4,40,22175
,4,41,208925
,4,42,6850
,4,43,232460
,4,44,208720
,4,45,22205
,4,46,208650
,4,47,205
,4,48,6710
,4,49,232465
,4,50,208720
,4,51,205
,4,52,655
,4,53,209010
,4,54,208860
,4,55,200
,4,56,232450
,4,57,208615
,4,58,232450
,3,36244,4430
,4,5,4665
,4,6,22210
,4,7,22215
,4,8,10275
,4,9,16625
,3,36372,16905
,3,36373,199000
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21925
,6,1,85
,3,36372,16905
,3,36373,199005
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21935
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21945
,6,1,85
,3,36372,16905
,3,36373,199010
,3,36245,655
,3,36246,21955
,3,36247,21960
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21965
,6,1,85
,3,36251,228405
,3,36252,28600
,3,36244,230605
,4,1,208635
,4,2,28610
,4,3,208775
,4,4,231515
,4,5,231515
,4,6,208860
,4,7,208310
,4,8,200
,4,9,233090
,4,10,208615
,4,11,233090
,4,12,208860
,4,13,21455
,4,14,230725
,4,15,208830
,4,16,7815
,4,17,233095
,4,18,209010
,3,36244,4430
,4,5,16625
,4,6,28450
,4,7,28615
,4,8,28620
,3,36372,16905
,3,36373,199015
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21975
,6,1,85
,3,36372,16905
,3,36373,199020
,3,36245,655
,3,36246,21985
,3,36247,21990
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,21995
,6,1,85
,3,36251,228480
,3,36252,28745
,3,36244,230605
,4,1,208635
,4,2,28755
,4,3,208775
,4,4,231515
,4,5,233160
,4,6,208615
,4,7,233160
,3,36244,4430
,4,5,16625
,3,36372,16905
,3,36373,199025
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,22015
,6,1,85
,3,36372,16905
,3,36373,199030
,3,36245,655
,3,36246,22025
,3,36247,22030
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,22035
,6,1,85
,3,36251,228185
,3,36252,28360
,3,36244,230605
,4,1,208635
,4,2,232855
,4,3,208615
,4,4,232855
,3,36244,4430
,4,5,16625
,3,36372,16905
,3,36373,199035
,3,36244,4410
,4,3,22045
,4,1,22050
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,21755
,4,11,19455
,4,12,16910
,4,13,16905
,4,14,21810
,4,15,22060
,4,16,22065
,4,17,21830
,4,18,21840
,4,19,22070
,3,36245,655
,3,36246,22080
,3,36247,22055
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227705
,3,36252,22040
,3,36244,230605
,4,1,208840
,4,2,208945
,4,3,208945
,4,4,21805
,4,5,208925
,4,6,208705
,4,7,208635
,4,8,12615
,4,9,230710
,4,10,196485
,4,11,230710
,4,12,212785
,4,13,208495
,4,16,19455
,4,17,22050
,4,18,208775
,4,19,208720
,4,20,227680
,4,21,227685
,4,22,208590
,4,23,208590
,4,24,208870
,4,25,227690
,4,26,227695
,4,27,208590
,4,28,208590
,4,29,208870
,4,30,21825
,4,32,208590
,4,33,208870
,4,34,21835
,4,36,208590
,4,37,208870
,4,38,21845
,4,40,208590
,4,41,199050
,4,42,230780
,4,43,21855
,4,45,208590
,4,46,24785
,4,47,230780
,4,48,21865
,4,50,208590
,4,51,6710
,4,52,230780
,4,53,21875
,4,55,208590
,4,56,199055
,4,57,230780
,4,58,212610
,4,59,199060
,4,60,230780
,4,61,211935
,4,62,199065
,4,63,230780
,4,64,204445
,4,65,227700
,4,66,208590
,4,67,208590
,4,68,208870
,4,69,21885
,4,70,208925
,4,71,208870
,4,72,21900
,4,74,208590
,4,75,199050
,4,76,230780
,4,77,21920
,4,79,208590
,4,80,24785
,4,81,230780
,4,82,21930
,4,84,208590
,4,85,6710
,4,86,230780
,4,87,21940
,4,89,208590
,4,90,199055
,4,91,230780
,4,92,205
,4,93,199060
,4,94,230780
,4,95,205675
,4,96,199065
,4,97,230780
,4,98,21950
,4,100,208590
,4,101,29270
,4,102,230780
,4,103,21970
,4,105,208590
,4,106,199070
,4,107,230780
,4,108,21980
,4,110,208590
,4,111,199075
,4,112,230780
,4,113,22000
,4,114,208925
,4,115,205685
,4,116,197355
,4,117,209315
,4,118,195695
,4,119,230780
,4,120,22005
,4,121,208925
,4,122,205700
,4,123,197355
,4,124,209315
,4,125,199085
,4,126,230780
,4,127,208720
,4,128,22010
,4,130,208590
,4,131,199095
,4,132,230780
,4,133,22020
,4,135,208590
,4,136,199095
,4,137,230780
,4,138,232420
,4,139,208615
,4,140,232420
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,22100
,3,36247,22090
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227710
,3,36252,22085
,3,36244,230605
,4,1,208635
,4,2,22075
,4,4,208590
,4,5,232425
,4,6,208615
,4,7,232425
,0,856,16510
,0,855,22110
,0,1077,22115
,0,1088,85
,0,1089,85
,0,1078,22120
,0,1079,85
,0,1090,22125
,2,35551,425
,3,36254,21900
,3,36255,22130
,6,64,85
,3,36244,12670
,4,1,21905
,2,34507,22105
,2,1264,22135
,2,402,22140
,2,34508,22145
,2,34509,205
,2,34510,205675
,2,1413,22155
,2,34511,22160
,2,34512,22165
,2,34318,199080
,2,34513,199090
,2,34514,22170
,2,35551,430
,3,36315,205680
,3,36244,199210
,0,856,16510
,0,855,22110
,0,1077,22115
,0,1088,85
,0,1089,85
,0,1078,22120
,0,1079,85
,0,1090,22125
,2,35551,425
,3,36254,21805
,3,36255,22130
,6,64,85
,3,36244,12670
,4,1,21815
,0,856,16510
,0,855,22110
,0,1077,22115
,0,1088,85
,0,1089,85
,0,1078,22120
,0,1079,85
,0,1090,22125
,2,35551,425
,3,36254,21885
,3,36255,22130
,6,64,85
,3,36244,12670
,4,1,21890
,2,842,204445
,2,132,110
,2,35664,110
,2,35911,110
,2,35551,1390
,3,36244,1400
,4,1,204440
,3,36256,199040
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,16510
,4,3,22110
,4,4,22115
,4,7,22120
,4,9,22125
,0,856,16510
,0,855,22110
,0,1077,22115
,0,1088,85
,0,1089,85
,0,1078,22120
,0,1079,85
,0,1090,22125
,2,35551,425
,3,36254,21920
,3,36255,22130
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,22110
,0,1077,22115
,0,1088,85
,0,1089,85
,0,1078,22120
,0,1079,85
,0,1090,22125
,2,35551,425
,3,36254,21930
,3,36255,22130
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,22110
,0,1077,22115
,0,1088,85
,0,1089,85
,0,1078,22120
,0,1079,85
,0,1090,22125
,2,35551,425
,3,36253,22150
,3,36254,21940
,3,36255,22130
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,856,16510
,0,855,22110
,0,1077,22115
,0,1088,85
,0,1089,85
,0,1078,22120
,0,1079,85
,0,1090,22125
,2,35551,425
,3,36254,21950
,3,36255,22130
,6,64,85
,3,36244,12670
,4,1,21955
,0,856,16510
,0,855,22110
,0,1077,22115
,0,1088,85
,0,1089,85
,0,1078,22120
,0,1079,85
,0,1090,22125
,2,35551,425
,3,36254,21970
,3,36255,22130
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,22110
,0,1077,22115
,0,1088,85
,0,1089,85
,0,1078,22120
,0,1079,85
,0,1090,22125
,2,35551,425
,3,36254,21980
,3,36255,22130
,6,64,85
,3,36244,12670
,4,1,21985
,0,856,16510
,0,855,22110
,0,1077,22115
,0,1088,85
,0,1089,85
,0,1078,22120
,0,1079,85
,0,1090,22125
,2,35551,425
,3,36254,22020
,3,36255,22130
,6,64,85
,3,36244,12670
,4,1,22025
,3,36245,655
,3,36246,22180
,3,36247,22185
,3,36248,320
,3,36263,21785
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227740
,3,36252,22265
,3,36244,230605
,4,1,208635
,4,2,208860
,4,3,232485
,4,4,208615
,4,5,232485
,3,36244,4430
,4,5,295
,3,36244,4410
,4,3,22195
,4,1,22200
,4,3,22205
,3,36244,7530
,4,1,22225
,4,2,22220
,4,2,22235
,3,36244,4410
,4,3,22250
,4,1,22255
,4,3,22260
,3,36244,4410
,3,36244,4410
,3,36264,22300
,3,36245,22305
,3,36244,575
,4,3,22310
,3,36244,225610
,3,36245,4920
,3,36246,22330
,3,36247,22335
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228825
,3,36252,29530
,3,36244,230605
,4,1,208635
,4,2,320
,4,3,230710
,4,4,195280
,4,5,230710
,4,6,4920
,4,7,230710
,4,8,12580
,4,9,209315
,4,10,233475
,4,11,208615
,4,12,233475
,3,36244,4430
,4,5,29535
,4,6,29540
,3,36245,16635
,3,36246,22345
,3,36247,22350
,3,36248,320
,3,36263,22295
,3,36249,1450
,3,36250,340
,6,1,22355
,3,36251,228370
,3,36252,28550
,3,36244,230605
,4,1,208635
,4,2,16680
,4,3,233005
,4,5,208800
,4,6,16905
,4,7,233010
,4,8,23095
,4,9,233015
,4,10,208520
,4,11,202845
,4,12,230710
,4,13,208660
,4,14,202845
,4,15,230710
,4,16,7385
,4,17,209335
,4,19,23105
,4,20,233020
,4,22,195860
,4,23,233025
,4,24,28545
,4,25,208250
,4,26,202845
,4,27,233030
,4,28,233035
,4,29,208615
,4,30,233035
,3,36244,4430
,4,5,16680
,4,6,23095
,3,36259,202795
,3,36261,22835
,4,2,202855
,3,36262,202850
,3,36244,234750
,3,36245,22365
,3,36246,22370
,3,36247,22375
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228170
,3,36375,28305
,3,36252,28310
,3,36244,230605
,4,1,208635
,4,2,23470
,4,3,16910
,4,4,232705
,4,5,212455
,4,6,208590
,4,7,22370
,4,8,201510
,4,9,232820
,4,10,232825
,4,11,208615
,4,12,232825
,3,36244,4430
,4,5,16625
,4,6,23470
,3,36245,22385
,3,36246,22390
,3,36247,22395
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228820
,3,36375,29500
,3,36252,29505
,3,36244,230605
,4,1,208635
,4,2,29515
,4,3,208650
,4,4,208720
,4,5,230750
,4,6,233470
,4,7,208615
,4,8,233470
,4,9,23470
,4,10,16910
,4,11,209335
,4,12,4525
,4,13,208590
,4,15,22390
,4,16,211580
,4,17,199050
,4,18,209315
,4,19,211945
,4,20,201430
,4,21,209315
,4,22,4525
,4,23,208590
,4,24,16625
,4,25,230780
,4,26,211645
,4,27,208370
,4,28,211535
,4,29,208895
,4,30,28595
,4,31,230705
,4,32,208895
,4,33,28595
,4,34,230780
,4,35,208590
,4,36,22390
,4,37,212295
,4,38,230710
,4,39,10880
,4,40,209335
,4,41,213470
,4,42,230710
,4,43,230835
,3,36244,4430
,4,5,23465
,4,6,23470
,4,7,29520
,4,8,29525
,4,9,29495
,3,36245,22405
,3,36246,22410
,3,36247,22415
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228815
,3,36252,29465
,3,36244,230605
,4,1,208635
,4,2,29475
,4,3,208775
,4,4,208860
,4,6,233465
,4,7,208615
,4,8,233465
,4,9,199050
,4,10,209315
,4,11,29480
,4,12,208775
,4,13,208720
,4,14,29485
,4,15,208650
,4,16,208860
,4,17,21460
,4,18,199050
,4,19,209305
,4,20,29490
,4,21,208650
,3,36244,4430
,4,5,23465
,4,6,23375
,4,7,29495
,4,8,23105
,3,36245,22425
,3,36246,22430
,3,36247,22435
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227990
,3,36252,23450
,3,36244,230605
,4,1,208635
,4,2,23470
,4,3,16910
,4,4,232705
,4,5,23460
,4,6,208775
,4,7,208785
,4,8,199960
,4,9,232710
,4,10,208720
,4,11,199320
,4,12,232715
,4,13,24595
,4,14,232720
,4,15,232725
,4,16,208615
,4,17,232725
,3,36244,4430
,4,5,23465
,4,6,23470
,4,7,23475
,3,36245,22445
,3,36246,22450
,3,36247,22455
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228795
,3,36252,29445
,3,36244,230605
,4,1,208635
,4,2,21455
,4,3,230720
,4,4,231515
,4,5,209010
,4,6,29455
,4,7,208775
,4,8,208685
,4,9,233460
,4,10,208615
,4,11,233460
,4,12,208305
,4,13,208680
,4,14,233460
,4,15,208615
,4,16,233460
,4,17,208220
,3,36244,4430
,4,5,295
,4,6,23375
,4,7,10275
,4,8,29460
,4,9,23105
,3,36245,22465
,3,36246,22470
,3,36247,22475
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228620
,3,36252,29145
,3,36244,230605
,4,1,208635
,4,2,7575
,4,3,209335
,4,4,208535
,4,5,7440
,4,6,209135
,4,7,233420
,4,8,208615
,4,9,233420
,3,36244,4430
,4,5,28775
,3,36245,655
,3,36246,22485
,3,36247,22490
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22495
,6,1,85
,3,36251,227940
,3,36252,23325
,3,36244,230605
,4,1,208635
,4,2,232630
,4,3,208615
,4,4,232630
,3,36244,4430
,3,36372,16635
,3,36373,199215
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22505
,6,1,85
,3,36372,16635
,3,36373,199220
,3,36245,655
,3,36246,22515
,3,36247,22520
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22525
,6,1,85
,3,36251,227945
,3,36252,23345
,3,36244,230605
,4,1,208635
,4,2,320
,4,3,232140
,4,4,199305
,4,5,232635
,4,6,5010
,4,7,232640
,4,8,7555
,4,9,232445
,4,10,205
,4,11,208325
,4,12,23335
,4,13,208735
,4,14,7440
,4,15,232645
,4,16,205
,4,17,208325
,4,20,212295
,4,21,232565
,4,22,23340
,4,23,208655
,4,24,23090
,4,25,232650
,4,26,23040
,4,27,232655
,4,28,11940
,4,29,232570
,4,30,199300
,4,31,232660
,4,32,230750
,4,33,208300
,4,34,199300
,4,35,230705
,4,36,230750
,4,37,232665
,4,38,208615
,4,39,232665
,4,40,21455
,4,41,230720
,4,42,231125
,4,43,199050
,4,44,232670
,4,45,208720
,4,46,23355
,4,47,208775
,4,48,208685
,4,49,208720
,4,50,23360
,4,51,208650
,4,52,208685
,4,53,23365
,4,54,208650
,4,55,208860
,4,56,21460
,4,57,199050
,4,58,209305
,4,59,23370
,4,60,208650
,4,61,208860
,4,62,199300
,4,63,232660
,4,64,230835
,4,65,208305
,4,66,208370
,4,67,232665
,4,68,208615
,4,69,232665
,4,70,208220
,3,36244,4430
,4,5,23090
,4,6,23040
,4,7,23375
,4,8,23380
,4,9,23385
,4,10,10275
,4,11,23390
,4,12,23395
,4,13,23105
,3,36372,16635
,3,36373,199225
,3,36245,655
,3,36246,22535
,3,36247,22540
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22545
,6,1,85
,3,36251,228440
,3,36252,28655
,3,36244,230605
,4,1,208635
,4,2,199050
,4,3,232905
,4,4,12615
,4,5,232430
,4,6,196485
,4,7,233115
,4,8,212785
,4,9,208495
,4,10,228425
,4,11,228430
,4,12,208590
,4,13,208590
,4,14,202920
,4,15,228435
,4,16,208590
,4,17,208590
,4,18,12615
,4,19,232430
,4,20,196485
,4,21,233115
,4,22,212785
,4,23,208495
,4,24,212610
,4,25,205
,4,26,28650
,4,27,208250
,4,28,7755
,4,29,232455
,4,30,21455
,4,31,230720
,4,32,208830
,4,33,231125
,4,34,212440
,4,35,208495
,4,36,208680
,4,37,7440
,4,38,233120
,4,39,212440
,4,40,7480
,4,41,233125
,4,42,6710
,4,43,232465
,4,44,7385
,4,45,233130
,4,46,208305
,4,47,208830
,4,48,233135
,4,49,208615
,4,50,233135
,4,51,208360
,4,52,233135
,4,53,208615
,4,54,233135
,3,36244,4430
,4,5,28660
,4,6,28665
,4,7,28670
,4,8,23040
,4,9,22275
,4,10,28675
,4,11,28620
,3,36372,16635
,3,36373,199230
,3,36245,655
,3,36246,22555
,3,36247,22560
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22565
,6,1,85
,3,36251,227905
,3,36252,23230
,3,36244,230605
,4,1,208635
,4,2,195695
,4,3,231545
,4,4,208720
,4,5,23170
,4,6,208590
,4,7,208950
,4,8,232580
,4,9,208615
,4,10,232580
,4,11,7795
,4,12,232585
,4,13,212155
,4,14,208495
,4,15,211675
,4,16,208495
,4,17,208520
,4,18,23040
,4,19,230710
,4,20,208660
,4,21,23175
,4,22,208250
,4,23,23040
,4,24,230780
,4,25,23040
,4,26,230710
,4,27,7480
,4,28,209335
,4,29,23185
,4,30,208640
,4,31,208950
,4,32,208950
,4,33,208310
,4,34,16680
,4,35,230705
,4,36,208310
,4,37,23105
,4,38,230705
,4,39,208310
,4,40,23195
,4,41,208735
,4,42,7480
,4,43,209135
,4,44,200
,4,45,199330
,4,46,209135
,4,47,7480
,4,48,209135
,4,49,23205
,4,50,208640
,4,51,208950
,4,52,208950
,4,53,227895
,4,54,227900
,4,55,208590
,4,56,208590
,4,57,23105
,4,58,230705
,4,59,199070
,4,60,209135
,4,61,12170
,4,62,209135
,4,63,208310
,4,64,16680
,4,65,230705
,4,66,16680
,4,67,230705
,4,68,29270
,4,69,209135
,4,70,199050
,4,71,209305
,4,72,200
,4,73,208560
,4,74,205
,4,75,6920
,4,76,209135
,4,77,208560
,4,78,212155
,4,79,208370
,4,80,213060
,4,81,208370
,4,82,213335
,4,83,208895
,4,84,208895
,4,85,212325
,4,86,208895
,4,87,16680
,4,88,230705
,4,89,208895
,4,90,23240
,4,91,208775
,4,92,23225
,4,93,208590
,4,94,208950
,4,95,23215
,4,96,208795
,4,97,23105
,4,98,230705
,4,99,29270
,4,100,209135
,4,101,208950
,4,102,208950
,3,36244,4430
,4,5,23090
,4,6,23095
,4,7,23245
,4,8,23040
,4,9,23250
,4,10,23255
,4,11,23260
,4,12,16680
,3,36372,16635
,3,36373,199235
,3,36245,655
,3,36246,22575
,3,36247,22580
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22585
,6,1,85
,3,36251,227880
,3,36375,23055
,3,36252,23060
,3,36244,230605
,4,1,208635
,4,2,208520
,4,3,211330
,4,4,209010
,4,5,211630
,4,6,209015
,4,7,16680
,4,8,230710
,4,9,209015
,4,10,23070
,4,11,208775
,4,12,199345
,4,13,232525
,4,14,195685
,4,15,232530
,4,16,230750
,4,17,208300
,4,18,16905
,4,19,230705
,4,20,232535
,4,21,208615
,4,22,232535
,4,23,195695
,4,24,231545
,4,25,208720
,4,26,16650
,4,27,208645
,4,28,16650
,4,29,23075
,4,30,208690
,4,31,16650
,4,32,195700
,4,33,209135
,4,34,211445
,4,35,199515
,4,36,209305
,4,37,195685
,4,38,230705
,4,39,16650
,4,40,230780
,4,41,16905
,4,42,230705
,4,43,212840
,4,44,208370
,4,45,23080
,4,46,208775
,4,47,16910
,4,48,209135
,4,49,23085
,4,50,208690
,4,51,208320
,4,52,12615
,4,53,230710
,4,54,196710
,4,55,230780
,4,56,200
,4,57,16680
,4,58,232540
,4,59,195685
,4,60,232530
,4,61,230835
,4,63,208590
,4,64,22575
,4,65,208720
,4,66,195685
,4,67,230705
,4,68,22575
,4,69,22575
,4,70,199510
,4,71,232545
,4,73,16905
,4,74,232550
,3,36244,4430
,4,5,23090
,4,6,23095
,4,7,23100
,4,8,23105
,4,9,23110
,4,10,23115
,4,11,16915
,4,12,23120
,3,36245,655
,3,36246,22595
,3,36247,22600
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22605
,6,1,85
,3,36251,227890
,3,36252,23125
,3,36244,230605
,4,1,208635
,4,2,195695
,4,3,231545
,4,4,208720
,4,5,232555
,4,6,208615
,4,7,232555
,4,8,199335
,4,9,232560
,4,10,231125
,4,11,231125
,4,12,212400
,4,13,212295
,4,14,232565
,4,15,11940
,4,16,232570
,4,17,209010
,4,18,213485
,4,19,209015
,4,20,212295
,4,21,232565
,4,22,11940
,4,23,232570
,4,24,209015
,4,25,23135
,4,26,208775
,4,27,199325
,4,28,232575
,4,29,208860
,4,30,10020
,4,31,230705
,4,32,212220
,4,33,208370
,4,34,195
,4,35,208895
,4,36,23140
,4,37,208690
,4,38,213895
,4,39,16655
,4,40,230780
,4,41,208590
,3,36244,4430
,4,5,23090
,4,6,23095
,4,7,23145
,4,8,16680
,4,9,23040
,4,10,23105
,4,11,23150
,3,36372,16635
,3,36373,199240
,3,36245,655
,3,36246,22615
,3,36247,22620
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22625
,6,1,85
,3,36251,228385
,3,36252,28555
,3,36244,230605
,4,1,208635
,4,2,212485
,4,3,212295
,4,4,232565
,4,5,11940
,4,6,232570
,4,7,209010
,4,8,213065
,4,9,209015
,4,10,212295
,4,11,232565
,4,12,16680
,4,13,233040
,4,14,11940
,4,15,232570
,4,16,209015
,4,17,28565
,4,18,208775
,4,19,195860
,4,20,233045
,4,21,208720
,4,22,28570
,4,23,208775
,4,24,23105
,4,25,233050
,4,26,29270
,4,27,233055
,4,28,199330
,4,29,233060
,4,30,23040
,4,31,233065
,4,32,199075
,4,33,233070
,4,34,208860
,4,35,199565
,4,36,199305
,4,37,232635
,4,38,230750
,4,39,208660
,4,40,199565
,4,41,199305
,4,42,232635
,4,43,209325
,4,45,195860
,4,46,233075
,4,47,233080
,4,48,208615
,4,49,233080
,3,36244,4430
,4,5,23105
,4,6,28575
,3,36245,655
,3,36246,22635
,3,36247,22640
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22645
,6,1,85
,3,36251,228685
,3,36252,29425
,3,36244,230605
,4,1,208635
,4,4,213430
,4,5,29435
,4,6,208650
,4,7,211380
,4,8,29440
,4,9,208650
,4,10,199340
,4,11,209315
,4,12,233455
,4,13,208615
,4,14,233455
,3,36244,4430
,4,5,16625
,3,36372,16635
,3,36373,199245
,3,36245,655
,3,36246,22655
,3,36247,22660
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22665
,6,1,85
,3,36251,228645
,3,36252,29230
,3,36244,230605
,4,1,208555
,4,2,29185
,4,3,208925
,4,4,208635
,4,5,208870
,4,6,203045
,4,7,228630
,4,8,208590
,4,9,208590
,4,10,655
,4,11,7660
,4,12,209315
,4,13,29200
,4,15,208590
,4,16,199050
,4,17,230780
,4,18,320
,4,19,230710
,4,20,23040
,4,21,29170
,4,22,208315
,4,23,29210
,4,24,208925
,4,25,17655
,4,26,233430
,4,27,5380
,4,28,209345
,4,29,12615
,4,30,230710
,4,31,196710
,4,32,230710
,4,33,213470
,4,34,230780
,4,35,199305
,4,36,230710
,4,37,211760
,4,38,230780
,4,39,29220
,4,41,208590
,4,42,205940
,4,43,230780
,4,44,195685
,4,45,230710
,4,46,28435
,4,47,230780
,4,48,29270
,4,49,209335
,4,50,199295
,4,51,230710
,4,52,208720
,4,53,16680
,4,54,230705
,4,55,200
,4,56,208560
,4,57,213615
,4,58,29240
,4,59,208775
,4,61,208800
,4,62,990
,4,63,230705
,4,64,208590
,4,65,29245
,4,66,990
,4,67,230705
,4,68,230750
,4,69,230835
,4,70,233435
,4,71,208615
,4,72,233435
,4,73,16910
,4,74,230780
,4,75,16905
,4,76,230705
,4,77,16905
,4,78,230780
,4,79,16920
,4,80,230780
,4,81,16925
,4,82,230780
,4,83,16915
,4,84,230780
,4,85,990
,4,86,230780
,4,87,28615
,4,88,230705
,4,89,28615
,4,90,230780
,4,92,29250
,4,93,208485
,4,94,233435
,4,95,208615
,4,96,233435
,4,97,213475
,4,98,29255
,4,99,208775
,4,100,990
,4,101,230705
,4,102,16910
,4,103,230780
,4,104,990
,4,105,230705
,4,106,16905
,4,107,230705
,4,108,16905
,4,109,230780
,4,110,990
,4,111,230705
,4,112,16920
,4,113,230780
,4,114,990
,4,115,230705
,4,116,16925
,4,117,230780
,4,118,990
,4,119,230705
,4,120,16915
,4,121,230780
,4,123,29260
,4,124,208530
,4,125,195705
,4,126,209335
,4,128,29265
,4,129,208530
,4,130,990
,4,131,230710
,4,132,211655
,4,133,230710
,4,134,208300
,4,135,208310
,4,136,12615
,4,137,230705
,4,138,196490
,4,139,230705
,4,140,230750
,4,141,208310
,4,142,12615
,4,143,230705
,4,144,196490
,4,145,230705
,4,146,230750
,4,148,199345
,4,149,209305
,4,150,208870
,4,151,16650
,4,152,208870
,4,153,208560
,4,154,990
,4,155,230705
,4,156,211655
,4,157,230705
,4,158,211530
,4,159,230705
,4,160,212950
,4,161,209060
,4,162,29180
,4,163,208260
,4,164,16905
,4,165,230710
,4,166,208465
,4,167,208465
,4,168,208465
,4,169,208465
,4,170,208465
,4,171,16905
,4,172,230710
,4,173,12595
,4,174,209315
,3,36244,4430
,4,5,28775
,4,6,23105
,4,7,16910
,4,8,29270
,4,9,29275
,4,10,11770
,4,11,29280
,4,12,29285
,4,13,29290
,4,14,29295
,3,36372,16635
,3,36373,199250
,3,36245,655
,3,36246,22675
,3,36247,22680
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22685
,6,1,85
,3,36251,228500
,3,36252,28760
,3,36244,230605
,4,1,208635
,4,2,23470
,4,3,16910
,4,4,209335
,4,5,211945
,4,6,201430
,4,7,209315
,4,8,28770
,4,9,208775
,4,10,199515
,4,11,209315
,4,12,233165
,4,13,208615
,4,14,233165
,3,36244,4430
,4,5,16915
,4,6,23105
,4,7,28775
,3,36372,199255
,3,36373,199260
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22695
,6,1,85
,3,36372,199265
,3,36373,199270
,3,36245,655
,3,36246,22705
,3,36247,22710
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22715
,6,1,85
,3,36251,227870
,3,36252,23050
,3,36244,230605
,4,1,208635
,4,2,12615
,4,3,230710
,4,4,196490
,4,5,230710
,4,6,231515
,4,9,199340
,4,10,209345
,4,11,12615
,4,12,230710
,4,13,21370
,4,14,209275
,4,15,232520
,4,16,208615
,4,17,232520
,3,36244,4430
,3,36372,16635
,3,36373,199275
,3,36245,655
,3,36246,22725
,3,36247,22730
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22735
,6,1,85
,3,36251,227810
,3,36252,23030
,3,36244,230605
,4,1,208635
,4,2,12615
,4,3,230710
,4,4,196485
,4,5,230710
,4,6,212785
,4,7,208495
,4,10,208720
,4,11,12615
,4,12,230705
,4,13,196500
,4,14,230705
,4,15,212660
,4,16,230705
,4,17,12615
,4,18,230710
,4,19,196500
,4,20,230710
,4,21,212030
,4,22,230710
,4,23,23025
,4,24,208795
,4,25,12615
,4,26,230710
,4,27,196520
,4,28,230710
,4,29,211675
,4,30,211675
,4,31,211875
,4,32,213075
,4,33,199050
,4,34,209140
,4,35,208950
,4,36,208860
,4,37,212675
,4,38,199050
,4,39,209315
,4,40,7420
,4,41,209335
,4,42,213875
,4,43,199050
,4,44,209315
,4,45,7420
,4,46,209335
,4,47,12615
,4,48,230710
,4,49,196500
,4,50,230710
,4,51,212200
,4,52,230710
,4,53,208300
,4,54,208310
,4,55,211935
,4,56,205675
,4,57,12615
,4,58,230705
,4,59,196500
,4,60,230705
,4,61,212200
,4,62,230705
,4,63,7755
,4,64,209135
,4,65,7480
,4,66,209135
,4,67,208870
,4,68,7440
,4,69,209335
,4,70,199310
,4,71,232510
,4,72,232515
,4,73,208615
,4,74,232515
,3,36244,4430
,4,5,21755
,4,6,23035
,4,7,23040
,4,8,23045
,3,36372,16635
,3,36373,199280
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,22745
,6,1,85
,3,36372,16635
,3,36373,199285
,3,36244,4410
,4,3,22755
,4,1,22760
,4,3,22765
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,3555
,4,11,15260
,4,12,15700
,4,13,16490
,4,14,15695
,4,15,4920
,4,16,16635
,4,17,22775
,4,18,16625
,4,19,22780
,4,20,22365
,4,21,22785
,4,22,22385
,4,23,22405
,4,24,22425
,4,25,22445
,4,26,22790
,4,27,22465
,3,36245,655
,3,36246,22800
,3,36247,22770
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227785
,3,36252,22750
,3,36244,230605
,4,1,208900
,4,2,22325
,4,3,208925
,4,4,208705
,4,5,22340
,4,7,208590
,4,8,208705
,4,9,22360
,4,10,208925
,4,11,208705
,4,12,22380
,4,13,208925
,4,14,208705
,4,15,22400
,4,16,208925
,4,17,208705
,4,18,22420
,4,19,208925
,4,20,208705
,4,21,22440
,4,22,208925
,4,23,208705
,4,24,22460
,4,25,208925
,4,26,208705
,4,27,208635
,4,28,212475
,4,29,22760
,4,30,208775
,4,31,208870
,4,32,12615
,4,33,230710
,4,34,212185
,4,35,24795
,4,36,209335
,4,37,16180
,4,38,230710
,4,39,15700
,4,40,230710
,4,41,208870
,4,42,16490
,4,43,230710
,4,44,208870
,4,45,15695
,4,46,22765
,4,47,208775
,4,48,19260
,4,49,230710
,4,50,208870
,4,51,16905
,4,52,232090
,4,53,12615
,4,54,230710
,4,55,196500
,4,56,230710
,4,57,212165
,4,58,230710
,4,59,208305
,4,60,208580
,4,63,199295
,4,64,230780
,4,66,208800
,4,67,195685
,4,68,230780
,4,70,208800
,4,71,199300
,4,72,230780
,4,74,208800
,4,75,199305
,4,76,230780
,4,77,22315
,4,78,208250
,4,79,208870
,4,80,22320
,4,81,208250
,4,82,199310
,4,83,230780
,4,84,29280
,4,85,230710
,4,86,29280
,4,87,230780
,4,88,195705
,4,89,230710
,4,90,195705
,4,91,230780
,4,92,16625
,4,93,16910
,4,94,209335
,4,95,208870
,4,96,22480
,4,98,208590
,4,99,199315
,4,100,230780
,4,101,12615
,4,102,230710
,4,103,196500
,4,104,230710
,4,105,212450
,4,106,230710
,4,107,208300
,4,108,227775
,4,109,227780
,4,110,208590
,4,111,208590
,4,112,12615
,4,113,230705
,4,114,196500
,4,115,230705
,4,116,212450
,4,117,230705
,4,118,12170
,4,119,209135
,4,120,208310
,4,121,22500
,4,123,208590
,4,124,199315
,4,125,230780
,4,126,199315
,4,127,230710
,4,128,208870
,4,130,208800
,4,131,208870
,4,133,208800
,4,134,199320
,4,135,230780
,4,136,22510
,4,138,208590
,4,139,199325
,4,140,230780
,4,141,22530
,4,143,208590
,4,144,199330
,4,145,230780
,4,146,22550
,4,148,208590
,4,149,199335
,4,150,230780
,4,151,22570
,4,153,208590
,4,154,199340
,4,155,230780
,4,156,22590
,4,158,208590
,4,159,199345
,4,160,230780
,4,161,195280
,4,162,230710
,4,163,22610
,4,165,208590
,4,166,199510
,4,167,230780
,4,168,195280
,4,169,230710
,4,170,22630
,4,172,208590
,4,173,16910
,4,174,230780
,4,175,195280
,4,176,230710
,4,177,22650
,4,179,208590
,4,180,199515
,4,181,230780
,4,182,199305
,4,183,230710
,4,184,22670
,4,186,208590
,4,187,199565
,4,188,230780
,4,189,199305
,4,190,230710
,4,191,22690
,4,193,208590
,4,194,199570
,4,195,230780
,4,196,199305
,4,197,230710
,4,198,12615
,4,199,230710
,4,200,196620
,4,201,230710
,4,202,199575
,4,203,230780
,4,204,22700
,4,206,208590
,4,207,199350
,4,208,230780
,4,209,22720
,4,211,208590
,4,212,199355
,4,213,230780
,4,214,22740
,4,216,208590
,4,217,199360
,4,218,230780
,4,219,199355
,4,220,209275
,4,221,16635
,4,222,230780
,4,223,232500
,4,224,208615
,4,225,232500
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,22820
,3,36247,22810
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,227790
,3,36252,22805
,3,36244,230605
,4,1,208635
,4,2,22795
,4,4,208590
,4,5,232505
,4,6,208615
,4,7,232505
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22480
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22485
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22325
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22330
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,34528,110
,2,34316,202805
,2,34529,202810
,2,34530,202815
,2,34531,202820
,2,1415,195835
,2,34320,16530
,2,34532,22825
,2,34533,202825
,2,34534,22885
,2,34535,22905
,2,34536,22925
,2,34537,22940
,2,34538,22945
,2,34539,22995
,2,34540,23000
,2,34541,23015
,2,834,22835
,2,35551,425
,2,34299,202795
,3,36253,202830
,3,36254,22340
,3,36255,22880
,6,64,85
,3,36315,202835
,3,36244,199645
,4,1,22345
,4,2,22355
,1,0,205730
,1,1,205735
,1,2,205740
,2,35551,1070
,3,36314,205745
,3,36244,198805
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22360
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22370
,2,34828,205750
,2,35551,430
,3,36315,205755
,3,36244,198790
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22380
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22390
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22400
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22410
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22420
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22430
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22440
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22450
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22460
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22470
,3,36256,199430
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,16010
,4,3,16005
,4,4,16375
,4,5,11735
,4,6,22830
,4,7,22835
,4,8,22840
,4,9,22110
,4,10,22825
,4,11,22845
,4,12,22850
,4,13,22855
,4,14,22860
,4,15,22865
,4,16,22870
,4,18,22875
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36253,22890
,3,36254,22510
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22515
,4,1,560
,4,2,22895
,4,3,22900
,1,0,655
,2,35551,1070
,3,36314,23330
,3,36244,198805
,2,1129,85
,2,1127,85
,2,35551,430
,3,36244,199685
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36253,22910
,3,36254,22530
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22535
,4,1,560
,4,3,22915
,4,4,22920
,2,842,202920
,2,132,110
,2,35664,110
,2,35911,110
,2,35551,1390
,3,36244,1400
,4,1,202925
,2,35551,1070
,3,36244,198805
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36253,22930
,3,36254,22550
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22555
,4,1,560
,4,5,22935
,2,35551,1070
,3,36314,199650
,3,36244,198805
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22570
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22575
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22590
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22595
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22610
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22615
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22630
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22635
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36253,22965
,3,36254,22650
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22655
,4,1,560
,4,2,22970
,4,3,22975
,4,5,22980
,2,842,203045
,2,132,110
,2,35664,110
,2,35911,110
,2,35551,1390
,3,36244,1400
,4,1,203050
,2,883,85
,2,35551,430
,3,36244,203065
,2,35551,1070
,3,36314,203070
,3,36244,198805
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22670
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22675
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22690
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,4220
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22700
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22705
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36253,23005
,3,36254,22720
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,22725
,4,1,560
,4,2,23010
,2,35551,1070
,3,36314,199635
,3,36244,198805
,0,799,16010
,0,821,16005
,0,826,16375
,0,820,11735
,0,74,22830
,0,834,22835
,0,1120,22840
,0,832,22110
,0,1121,22825
,0,1100,22845
,0,1122,22850
,0,1101,22855
,0,1102,22860
,0,1103,22865
,0,1104,22870
,0,1123,85
,0,1105,22875
,2,35551,425
,3,36254,22740
,3,36255,22880
,6,64,85
,3,36244,12670
,4,1,4220
,4,2,23020
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,3,23065
,4,1,23070
,4,3,23075
,4,5,23080
,4,7,23085
,3,36244,4410
,4,3,23130
,4,1,23135
,4,3,23140
,4,2,23165
,4,2,23155
,4,2,23160
,4,2,23180
,3,36244,7530
,4,1,200
,4,2,23190
,4,2,23200
,4,2,23210
,4,2,23220
,3,36244,4410
,4,3,23235
,4,1,23240
,3,36244,7530
,4,1,23270
,4,2,23265
,3,36244,4410
,4,1,655
,3,36244,4410
,4,3,23295
,4,1,23300
,4,3,23305
,4,5,23310
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,7530
,4,1,655
,4,2,23330
,4,1,23090
,4,3,23040
,3,36244,4410
,4,3,23350
,4,1,23355
,4,3,23360
,4,5,23365
,4,7,23370
,3,36244,7530
,4,1,23405
,4,2,23400
,3,36244,4410
,3,36244,7530
,4,1,23425
,4,2,23420
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,3,23455
,4,1,23460
,3,36264,23485
,3,36245,23490
,3,36244,575
,4,3,23495
,3,36244,225610
,4,1,20520
,4,3,16550
,3,36245,23510
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,23520
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,23530
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,23540
,3,36246,23545
,3,36247,23550
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228520
,3,36252,28875
,3,36244,230605
,4,1,208635
,4,2,208860
,4,3,17440
,4,4,233200
,4,5,198130
,4,6,233225
,4,7,208720
,4,8,10020
,4,9,230705
,4,10,212380
,4,11,208370
,4,12,28885
,4,13,208690
,4,14,208590
,4,15,233230
,4,16,208615
,4,17,233230
,3,36244,4430
,4,5,28785
,3,36245,23560
,3,36246,23565
,3,36247,23570
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228180
,3,36252,28335
,3,36244,230605
,4,1,208595
,4,2,208945
,4,3,208635
,4,4,655
,4,5,209010
,4,6,213845
,4,7,6920
,4,8,232845
,4,9,208535
,4,10,10020
,4,11,230705
,4,12,213355
,4,13,28345
,4,14,208690
,4,15,208870
,4,16,208310
,4,17,208590
,4,18,12615
,4,19,230705
,4,20,28330
,4,21,208925
,4,22,21400
,4,23,209135
,4,25,232850
,4,26,208615
,4,27,232850
,3,36244,4430
,4,5,16625
,4,6,28350
,4,7,28350
,4,8,28355
,3,36245,23580
,3,36246,23585
,3,36247,23590
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228555
,3,36252,28970
,3,36244,230605
,4,1,208635
,4,2,233265
,4,3,208615
,4,4,233265
,4,5,208430
,4,6,212445
,4,7,6920
,4,8,209135
,4,9,209020
,4,10,208310
,4,11,207100
,4,12,211680
,4,13,28980
,4,14,208650
,4,15,208590
,4,16,28795
,4,17,208325
,4,18,212635
,4,19,208560
,4,20,213760
,4,21,208560
,4,22,212435
,4,23,208560
,4,24,213700
,4,25,208560
,4,26,212855
,4,27,208560
,4,28,212305
,4,29,208560
,4,30,213805
,4,31,208560
,4,32,211820
,4,33,208560
,4,34,211615
,4,35,208560
,4,36,270
,4,37,208560
,4,38,212925
,4,39,208560
,4,40,211975
,4,41,208560
,4,42,213610
,4,43,208560
,4,44,213400
,4,45,208560
,4,46,213710
,4,47,208560
,4,48,208410
,4,49,208410
,4,50,208410
,4,51,208210
,4,52,208410
,4,53,208210
,4,54,208210
,4,55,208410
,4,56,208210
,4,57,208410
,4,58,208210
,4,59,208210
,4,60,208410
,4,61,208210
,4,62,208410
,4,63,208210
,4,64,208210
,4,65,208410
,4,66,208210
,4,67,208410
,4,68,208210
,4,69,208210
,4,70,10020
,4,71,230705
,4,72,212655
,4,73,208370
,4,74,28985
,4,75,208690
,4,76,208590
,3,36244,4430
,4,5,28790
,3,36245,23600
,3,36246,23605
,3,36247,23610
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228540
,3,36252,28950
,3,36244,230605
,4,1,208635
,4,2,208590
,4,3,19785
,4,4,208325
,4,5,10495
,4,6,208560
,4,7,233260
,4,8,208615
,4,9,233260
,4,10,4840
,4,11,209160
,4,12,208310
,4,13,28960
,4,14,208775
,4,15,90
,4,16,230705
,3,36244,4430
,4,5,11775
,4,6,28965
,3,36245,23620
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,23630
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,23640
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,15230
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,23655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,23665
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,23675
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,23685
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,23695
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,23705
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,23715
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,23725
,3,36247,23730
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23735
,6,1,85
,3,36251,228220
,3,36252,28390
,3,36244,230605
,4,1,208635
,4,2,28945
,4,3,232895
,4,4,207250
,4,5,230715
,4,6,208405
,4,7,208535
,4,10,232900
,4,11,208615
,4,12,232900
,3,36244,4430
,4,5,28395
,3,36372,199690
,3,36373,199695
,3,36245,655
,3,36246,23745
,3,36247,23750
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23755
,6,1,85
,3,36251,228215
,3,36252,28385
,3,36244,230605
,4,1,208635
,4,2,206655
,4,3,230715
,4,4,199955
,4,5,232885
,4,6,232890
,4,7,208615
,4,8,232890
,3,36244,4430
,3,36372,199700
,3,36373,199705
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23765
,6,1,85
,3,36372,199710
,3,36373,199715
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23775
,6,1,85
,3,36372,199720
,3,36373,199725
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23785
,6,1,85
,3,36372,199730
,3,36373,199735
,3,36245,655
,3,36246,23795
,3,36247,23800
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23805
,6,1,85
,3,36251,228320
,3,36252,28540
,3,36244,230605
,4,1,208635
,4,2,207385
,4,3,230715
,4,4,199955
,4,5,232885
,4,6,233000
,4,7,208615
,4,8,233000
,3,36244,4430
,3,36372,199740
,3,36373,199745
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23815
,6,1,85
,3,36372,199750
,3,36373,199755
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23825
,6,1,85
,3,36372,199760
,3,36373,199765
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23835
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23845
,6,1,85
,3,36372,23470
,3,36373,199770
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23855
,6,1,85
,3,36245,655
,3,36246,23865
,3,36247,23870
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23875
,6,1,85
,3,36251,228510
,3,36375,28810
,3,36252,28815
,3,36244,230605
,4,1,208635
,4,2,208860
,4,3,28780
,4,4,208655
,4,5,28800
,4,6,208655
,4,7,28785
,4,8,233170
,4,9,10040
,4,10,230705
,4,11,212180
,4,12,28825
,4,13,208690
,4,14,208590
,4,15,28785
,4,16,233175
,4,17,28830
,4,18,208775
,4,19,28790
,4,20,233180
,4,21,208860
,4,22,28795
,4,23,201445
,4,24,233185
,4,26,208590
,4,27,23865
,4,28,208720
,4,29,201440
,4,30,209135
,4,31,23865
,4,32,23865
,4,33,201500
,4,34,233190
,4,35,28850
,4,36,233195
,4,38,208535
,4,39,28805
,4,40,208250
,4,41,17440
,4,42,233200
,4,43,28835
,4,44,208690
,4,47,208590
,4,48,23865
,4,49,208720
,4,50,201440
,4,51,209135
,4,52,23865
,4,53,23865
,4,54,208535
,4,55,208830
,4,56,201450
,4,57,233205
,4,58,17440
,4,59,230705
,4,60,28840
,4,61,208690
,4,62,201450
,4,63,209105
,4,64,208310
,4,65,7440
,4,66,209305
,4,67,7385
,4,68,209135
,4,70,208680
,4,71,208535
,4,74,208720
,4,75,208535
,4,76,208720
,4,77,208360
,4,80,233210
,4,81,208615
,4,82,233210
,4,83,208720
,4,84,201440
,4,85,233215
,4,86,208535
,4,87,17440
,4,88,230705
,4,89,7480
,4,90,209305
,4,91,208220
,4,92,7440
,4,93,209305
,4,94,208860
,4,95,4890
,4,96,233220
,4,97,233210
,4,98,208615
,4,99,233210
,3,36244,4430
,4,5,16625
,4,6,28845
,4,7,28785
,4,8,28790
,4,9,21735
,4,10,28850
,4,11,28855
,4,12,28475
,4,13,28860
,4,14,28865
,4,15,27365
,4,16,28870
,3,36372,23470
,3,36373,199775
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23885
,6,1,85
,3,36245,655
,3,36246,23895
,3,36247,23900
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23905
,6,1,85
,3,36251,228610
,3,36252,29120
,3,36244,230605
,4,1,208635
,4,2,30145
,4,3,233380
,4,4,233385
,4,5,208615
,4,6,233385
,3,36244,4430
,4,5,21735
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23915
,6,1,85
,3,36245,655
,3,36246,23925
,3,36247,23930
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23935
,6,1,85
,3,36251,228535
,3,36252,28915
,3,36244,230605
,4,1,208635
,4,2,28925
,4,3,208650
,4,4,28930
,4,5,208775
,4,6,199095
,4,7,232830
,4,8,28935
,4,9,208775
,4,10,200005
,4,11,233250
,4,12,233255
,4,13,208615
,4,14,233255
,3,36244,4430
,4,5,16625
,4,6,28940
,4,7,28945
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23945
,6,1,85
,3,36245,655
,3,36246,23955
,3,36247,23960
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23965
,6,1,85
,3,36251,228600
,3,36252,29080
,3,36244,230605
,4,1,208760
,4,2,208945
,4,3,208945
,4,4,208945
,4,5,208945
,4,6,208945
,4,7,208620
,4,8,208635
,4,10,17440
,4,11,233200
,4,12,17625
,4,13,233360
,4,14,208720
,4,16,230750
,4,17,29090
,4,18,208775
,4,19,230750
,4,20,208870
,4,21,230750
,4,22,208870
,4,23,17440
,4,24,230705
,4,25,29095
,4,26,208690
,4,27,208870
,4,28,208870
,4,29,200010
,4,30,233365
,4,31,208720
,4,32,233370
,4,33,208615
,4,34,233370
,4,35,208245
,4,36,4890
,4,37,209060
,4,38,655
,4,39,29075
,4,40,208640
,4,41,208950
,4,42,208950
,3,36244,4430
,4,5,21735
,4,6,28860
,4,7,29040
,4,8,21455
,4,9,29100
,4,10,4665
,4,11,29105
,4,12,28785
,4,13,28795
,4,14,29110
,4,15,29100
,4,16,21455
,4,17,29040
,4,18,28860
,4,19,21735
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23975
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23985
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,23995
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24005
,6,1,85
,3,36372,23470
,3,36373,199780
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24015
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24025
,6,1,85
,3,36372,23470
,3,36373,199785
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24035
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24045
,6,1,85
,3,36372,23470
,3,36373,199790
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24055
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24065
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24075
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24085
,6,1,85
,3,36372,23470
,3,36373,199795
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24095
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24105
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24115
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24125
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24135
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24145
,6,1,85
,3,36372,23470
,3,36373,199800
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24155
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24165
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24175
,6,1,85
,3,36245,655
,3,36246,24185
,3,36247,24190
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24195
,6,1,85
,3,36251,228560
,3,36252,28990
,3,36244,230605
,4,1,208635
,4,2,200055
,4,3,233270
,4,4,233275
,4,5,208615
,4,6,233275
,3,36244,4430
,4,5,21735
,3,36245,655
,3,36246,24205
,3,36247,24210
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24215
,6,1,85
,3,36251,228310
,3,36252,28525
,3,36244,230605
,4,1,208635
,4,2,28535
,4,3,208775
,4,4,199095
,4,5,232830
,4,6,200050
,4,7,232990
,4,8,232995
,4,9,208615
,4,10,232995
,3,36244,4430
,4,5,16625
,3,36245,655
,3,36246,24225
,3,36247,24230
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24235
,6,1,85
,3,36251,228175
,3,36252,28315
,3,36244,230605
,4,1,208635
,4,2,28325
,4,3,208775
,4,4,199095
,4,5,232830
,4,6,28460
,4,7,232835
,4,8,232840
,4,9,208615
,4,10,232840
,3,36244,4430
,4,5,16625
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24245
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24255
,6,1,85
,3,36372,23470
,3,36373,199805
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24265
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24275
,6,1,85
,3,36372,23470
,3,36373,199810
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24285
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24295
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24305
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24315
,6,1,85
,3,36372,23470
,3,36373,199815
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24325
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24335
,6,1,85
,3,36372,23470
,3,36373,199820
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24345
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24355
,6,1,85
,3,36372,23470
,3,36373,199825
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24365
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24375
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24385
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24395
,6,1,85
,3,36372,23470
,3,36373,199830
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24405
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24415
,6,1,85
,3,36372,23470
,3,36373,199835
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24425
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24435
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24445
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24455
,6,1,85
,3,36372,23470
,3,36373,199840
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24465
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24475
,6,1,85
,3,36372,23470
,3,36373,199845
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24485
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24495
,6,1,85
,3,36372,23470
,3,36373,199850
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24505
,6,1,85
,3,36372,23470
,3,36373,199855
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24515
,6,1,85
,3,36372,23470
,3,36373,199860
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24525
,6,1,85
,3,36372,23655
,3,36373,199865
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24535
,6,1,85
,3,36372,23655
,3,36373,199870
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24545
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24555
,6,1,85
,3,36372,23665
,3,36373,199875
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24565
,6,1,85
,3,36372,23665
,3,36373,199880
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24575
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24585
,6,1,85
,3,36372,23470
,3,36373,199885
,3,36245,24595
,3,36246,24600
,3,36247,24605
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228230
,3,36252,28415
,3,36244,230605
,4,1,208215
,4,2,208945
,4,3,28400
,4,4,208925
,4,5,208635
,4,6,199050
,4,7,232905
,4,8,208870
,4,9,208660
,4,10,320
,4,11,232140
,4,12,195280
,4,13,230735
,4,14,4920
,4,15,232910
,4,16,12580
,4,17,232915
,4,18,208720
,4,19,230750
,4,20,232920
,4,21,208615
,4,22,232920
,4,24,208800
,4,26,208800
,4,27,208870
,4,28,28425
,4,29,208825
,4,30,213860
,4,31,232925
,4,32,12150
,4,33,232930
,4,34,208870
,4,35,232935
,4,36,209010
,4,37,208870
,4,38,232935
,4,39,209010
,4,40,208870
,4,41,213860
,4,42,232940
,4,43,208870
,4,44,230750
,4,45,208300
,4,46,208660
,4,47,230750
,4,48,208740
,4,49,208660
,4,50,320
,4,51,232140
,4,52,195280
,4,53,230735
,4,54,4920
,4,55,232910
,4,56,12580
,4,57,232915
,4,58,208720
,4,59,230750
,4,60,201505
,4,61,232945
,4,62,199980
,4,63,232950
,4,64,208720
,4,66,230835
,4,67,208660
,4,68,230835
,4,70,208310
,4,71,202610
,4,72,230705
,4,73,4890
,4,74,209135
,4,75,205675
,4,76,208370
,4,77,202640
,4,78,230705
,4,79,4890
,4,80,209135
,4,81,208895
,4,82,4920
,4,83,209135
,4,84,208310
,4,85,230750
,4,86,201510
,4,87,209135
,4,88,201515
,4,89,209135
,4,90,199050
,4,91,209305
,4,92,208310
,4,93,230835
,4,94,208310
,4,95,230835
,4,96,7440
,4,97,209135
,4,98,199050
,4,99,209305
,4,100,208870
,4,101,28430
,4,102,208825
,4,103,232920
,4,104,208615
,4,105,232920
,4,106,21455
,4,107,230725
,4,108,208220
,4,109,208660
,4,110,230835
,3,36244,4430
,4,5,295
,4,6,28435
,4,7,28440
,4,8,28445
,4,9,23245
,4,10,28450
,4,11,28455
,4,12,28460
,4,13,28465
,4,14,16680
,4,15,295
,4,16,28470
,4,17,28475
,4,18,28480
,4,19,28485
,4,20,28490
,4,27,24595
,3,36245,24615
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24625
,6,1,85
,3,36372,23470
,3,36373,199890
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24635
,6,1,85
,3,36372,23695
,3,36373,199895
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24645
,6,1,85
,3,36372,23695
,3,36373,199900
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24655
,6,1,85
,3,36372,23695
,3,36373,199905
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24665
,6,1,85
,3,36372,23695
,3,36373,199910
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24675
,6,1,85
,3,36372,23470
,3,36373,199915
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24685
,6,1,85
,3,36372,23705
,3,36373,199920
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24695
,6,1,85
,3,36372,23705
,3,36373,199925
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24705
,6,1,85
,3,36372,23715
,3,36373,199930
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24715
,6,1,85
,3,36372,23715
,3,36373,199935
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,24725
,6,1,85
,3,36372,23715
,3,36373,199940
,3,36244,4410
,4,3,24735
,4,1,24740
,4,3,24745
,4,5,24750
,4,7,24755
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,24765
,4,11,24770
,4,12,24775
,4,13,24780
,4,14,24785
,4,15,23715
,4,16,19455
,4,17,24790
,4,18,24795
,4,19,24800
,4,20,23470
,4,21,24805
,4,22,16620
,4,23,24810
,4,24,24815
,4,25,24820
,4,26,24825
,4,27,24830
,4,28,24835
,4,29,24840
,4,30,24845
,4,31,24850
,4,32,24855
,4,33,24860
,4,34,21755
,4,35,24865
,4,36,23510
,4,37,23520
,4,38,23530
,4,39,23540
,4,40,23560
,4,41,23580
,4,42,23600
,4,43,23620
,4,44,23630
,4,45,23640
,4,46,15230
,4,47,23655
,4,48,23665
,4,49,24870
,4,50,23675
,4,51,24875
,4,52,24880
,4,53,18125
,4,54,23685
,4,55,23695
,4,56,23705
,3,36245,655
,3,36246,24890
,3,36247,24760
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228030
,3,36252,24730
,3,36244,230605
,4,1,208935
,4,2,23505
,4,3,208925
,4,4,208705
,4,5,23515
,4,6,208925
,4,7,208705
,4,8,23525
,4,9,208925
,4,10,208705
,4,11,23535
,4,12,208925
,4,13,208705
,4,14,23555
,4,15,208925
,4,16,208705
,4,17,23575
,4,18,208925
,4,19,208705
,4,20,23595
,4,21,208925
,4,22,208705
,4,23,23615
,4,25,208590
,4,26,208705
,4,27,23625
,4,28,208925
,4,29,208705
,4,30,23635
,4,31,208925
,4,32,208705
,4,33,23645
,4,34,208925
,4,35,208705
,4,36,23650
,4,37,208925
,4,38,208705
,4,39,23660
,4,40,208925
,4,41,208705
,4,42,23670
,4,43,208925
,4,44,208705
,4,45,23680
,4,46,208925
,4,47,208705
,4,48,23690
,4,50,208590
,4,51,208705
,4,52,23700
,4,54,208590
,4,55,208705
,4,56,23710
,4,57,208925
,4,58,208635
,4,59,19455
,4,60,24740
,4,61,208775
,4,62,208870
,4,63,16625
,4,64,24745
,4,65,208775
,4,66,208870
,4,67,12615
,4,68,230710
,4,69,23470
,4,70,24795
,4,71,209335
,4,72,208870
,4,73,12615
,4,74,230710
,4,75,24800
,4,76,24795
,4,77,209335
,4,78,208870
,4,79,208870
,4,80,206165
,4,81,24750
,4,82,208775
,4,83,24805
,4,84,230710
,4,85,208870
,4,86,206160
,4,87,24755
,4,88,208775
,4,89,16620
,4,90,230710
,4,91,208870
,4,92,24810
,4,93,230710
,4,94,208870
,4,95,24815
,4,96,230710
,4,97,208870
,4,98,208870
,4,99,24825
,4,100,230710
,4,101,208430
,4,102,208870
,4,103,24830
,4,104,230710
,4,105,208430
,4,106,208870
,4,107,24765
,4,108,230710
,4,109,208430
,4,110,24835
,4,111,230710
,4,112,208430
,4,113,208870
,4,114,24770
,4,115,230710
,4,116,208430
,4,117,24775
,4,118,230710
,4,119,208430
,4,120,24840
,4,121,230710
,4,122,208430
,4,123,208870
,4,124,24845
,4,125,230710
,4,126,208430
,4,127,208870
,4,128,24780
,4,129,230710
,4,130,208430
,4,131,24850
,4,132,230710
,4,133,208430
,4,134,208870
,4,135,24855
,4,136,230710
,4,137,208430
,4,138,208870
,4,139,24860
,4,140,230710
,4,141,208430
,4,142,208870
,4,143,12615
,4,144,230710
,4,145,196485
,4,146,230710
,4,147,212785
,4,148,208495
,4,151,208870
,4,152,12615
,4,153,230710
,4,154,196500
,4,155,230710
,4,156,212450
,4,157,230710
,4,158,208300
,4,159,227995
,4,160,228000
,4,161,208590
,4,162,208590
,4,163,12615
,4,164,230705
,4,165,196500
,4,166,230705
,4,167,212450
,4,168,230705
,4,169,12170
,4,170,209135
,4,171,208870
,4,172,200000
,4,173,230710
,4,174,200000
,4,175,230780
,4,176,200000
,4,177,230710
,4,178,195280
,4,179,230710
,4,180,23720
,4,182,208590
,4,183,199955
,4,184,230780
,4,185,200000
,4,186,230710
,4,187,195280
,4,188,230710
,4,189,23740
,4,191,208590
,4,192,199960
,4,193,230780
,4,194,200000
,4,195,230710
,4,196,195280
,4,197,230710
,4,198,23760
,4,200,208590
,4,201,199965
,4,202,230780
,4,203,200000
,4,204,230710
,4,205,195280
,4,206,230710
,4,207,23770
,4,209,208590
,4,210,199970
,4,211,230780
,4,212,200000
,4,213,230710
,4,214,195280
,4,215,230710
,4,216,23780
,4,218,208590
,4,219,199975
,4,220,230780
,4,221,200000
,4,222,230710
,4,223,195280
,4,224,230710
,4,225,23790
,4,227,208590
,4,228,199980
,4,229,230780
,4,230,200000
,4,231,230710
,4,232,195280
,4,233,230710
,4,234,23810
,4,236,208590
,4,237,199985
,4,238,230780
,4,239,200000
,4,240,230710
,4,241,195280
,4,242,230710
,4,243,23820
,4,245,208590
,4,246,199990
,4,247,230780
,4,248,23830
,4,250,208590
,4,251,195695
,4,252,230780
,4,253,23840
,4,255,208590
,4,256,199085
,4,257,230780
,4,258,23850
,4,260,208590
,4,261,201425
,4,262,230780
,4,263,23860
,4,265,208590
,4,266,201430
,4,267,230780
,4,268,320
,4,269,230710
,4,270,201435
,4,271,23500
,4,272,208655
,4,273,16550
,4,274,232730
,4,275,5380
,4,276,209345
,4,277,23880
,4,279,208590
,4,280,30145
,4,281,230780
,4,282,23890
,4,284,208590
,4,285,201440
,4,286,230780
,4,287,23910
,4,289,208590
,4,290,200005
,4,291,230780
,4,292,23920
,4,294,208590
,4,295,201445
,4,296,230780
,4,297,23940
,4,299,208590
,4,300,200010
,4,301,230780
,4,302,23950
,4,304,208590
,4,305,201450
,4,306,230780
,4,307,23970
,4,309,208590
,4,310,197915
,4,311,230780
,4,312,23980
,4,314,208590
,4,315,201455
,4,316,230780
,4,317,23990
,4,319,208590
,4,320,200025
,4,321,230780
,4,322,24000
,4,324,208590
,4,325,201460
,4,326,230780
,4,327,24010
,4,329,208590
,4,330,19230
,4,331,230780
,4,332,24020
,4,334,208590
,4,335,201465
,4,336,230780
,4,337,24030
,4,339,208590
,4,340,200030
,4,341,230780
,4,342,24040
,4,344,208590
,4,345,201470
,4,346,230780
,4,347,24050
,4,349,208590
,4,350,200035
,4,351,230780
,4,352,24060
,4,354,208590
,4,355,201475
,4,356,230780
,4,357,24070
,4,359,208590
,4,360,200015
,4,361,230780
,4,362,24080
,4,364,208590
,4,365,201480
,4,366,230780
,4,367,24090
,4,369,208590
,4,370,200020
,4,371,230780
,4,372,24100
,4,374,208590
,4,375,201485
,4,376,230780
,4,377,24110
,4,379,208590
,4,380,200040
,4,381,230780
,4,382,24120
,4,384,208590
,4,385,201490
,4,386,230780
,4,387,24130
,4,389,208590
,4,390,200045
,4,391,230780
,4,392,24140
,4,394,208590
,4,395,201495
,4,396,230780
,4,397,24150
,4,399,208590
,4,400,200055
,4,401,230780
,4,402,24160
,4,404,208590
,4,405,200050
,4,406,230780
,4,407,24170
,4,409,208590
,4,410,28460
,4,411,230780
,4,412,24180
,4,414,208590
,4,415,201500
,4,416,230780
,4,417,24200
,4,419,208590
,4,420,201505
,4,421,230780
,4,422,24220
,4,424,208590
,4,425,201510
,4,426,230780
,4,427,24240
,4,429,208590
,4,430,200065
,4,431,230780
,4,432,24250
,4,434,208590
,4,435,201515
,4,436,230780
,4,437,24260
,4,439,208590
,4,440,200060
,4,441,230780
,4,442,24270
,4,444,208590
,4,445,201520
,4,446,230780
,4,447,24280
,4,449,208590
,4,450,7935
,4,451,230780
,4,452,24290
,4,454,208590
,4,455,201525
,4,456,230780
,4,457,24300
,4,459,208590
,4,460,200070
,4,461,230780
,4,462,24310
,4,464,208590
,4,465,201530
,4,466,230780
,4,467,24320
,4,469,208590
,4,470,200080
,4,471,230780
,4,472,24330
,4,474,208590
,4,475,201535
,4,476,230780
,4,477,24780
,4,478,4920
,4,479,209335
,4,480,208720
,4,481,24340
,4,483,208590
,4,484,201540
,4,485,230780
,4,486,24350
,4,488,208590
,4,489,201545
,4,490,230780
,4,491,24360
,4,493,208590
,4,494,200075
,4,495,230780
,4,496,24370
,4,498,208590
,4,499,201550
,4,500,230780
,4,501,24780
,4,502,4920
,4,503,209335
,4,504,208720
,4,505,24380
,4,507,208590
,4,508,201555
,4,509,230780
,4,510,24390
,4,512,208590
,4,513,201560
,4,514,230780
,4,515,24400
,4,517,208590
,4,518,200090
,4,519,230780
,4,520,24410
,4,522,208590
,4,523,201565
,4,524,230780
,4,525,24420
,4,527,208590
,4,528,200085
,4,529,230780
,4,530,24430
,4,532,208590
,4,533,201570
,4,534,230780
,4,535,201575
,4,536,230780
,4,537,24440
,4,539,208590
,4,540,200095
,4,541,230780
,4,542,24450
,4,544,208590
,4,545,201580
,4,546,230780
,4,547,24460
,4,549,208590
,4,550,200100
,4,551,230780
,4,552,24470
,4,554,208590
,4,555,201585
,4,556,230780
,4,557,24480
,4,559,208590
,4,560,201590
,4,561,230780
,4,562,24490
,4,564,208590
,4,565,201595
,4,566,230780
,4,567,24500
,4,569,208590
,4,570,201600
,4,571,230780
,4,572,24510
,4,574,208590
,4,575,201605
,4,576,230780
,4,577,197385
,4,578,209315
,4,579,195280
,4,580,230710
,4,581,24520
,4,583,208590
,4,584,23245
,4,585,230780
,4,586,195280
,4,587,230710
,4,588,24530
,4,590,208590
,4,591,30145
,4,592,230780
,4,593,24540
,4,595,208590
,4,596,201610
,4,597,230780
,4,598,197385
,4,599,209315
,4,600,195280
,4,601,230710
,4,602,24550
,4,604,208590
,4,605,23245
,4,606,230780
,4,607,195280
,4,608,230710
,4,609,24560
,4,611,208590
,4,612,25885
,4,613,230780
,4,615,208800
,4,616,208870
,4,617,24570
,4,619,208590
,4,620,201615
,4,621,230780
,4,622,24580
,4,624,208590
,4,625,201620
,4,626,230780
,4,627,24785
,4,628,230710
,4,629,208720
,4,630,228005
,4,631,275
,4,632,208590
,4,633,208590
,4,634,208870
,4,635,204495
,4,636,275
,4,637,208590
,4,638,208590
,4,639,208870
,4,640,208720
,4,641,228010
,4,642,228015
,4,643,208590
,4,644,208590
,4,645,208870
,4,646,204460
,4,647,228020
,4,648,208590
,4,649,208590
,4,650,208870
,4,651,24590
,4,653,208590
,4,654,24595
,4,655,230780
,4,656,24610
,4,658,208590
,4,659,24615
,4,660,230780
,4,661,24620
,4,663,208590
,4,664,201625
,4,665,230780
,4,666,197385
,4,667,209315
,4,668,23695
,4,669,230780
,4,670,23695
,4,671,230710
,4,672,201630
,4,673,230780
,4,674,195280
,4,675,230710
,4,676,24630
,4,678,208590
,4,679,200005
,4,680,230780
,4,681,195280
,4,682,230710
,4,683,24640
,4,685,208590
,4,686,200770
,4,687,230780
,4,688,195280
,4,689,230710
,4,690,24650
,4,692,208590
,4,693,202370
,4,694,230780
,4,695,195280
,4,696,230710
,4,697,24660
,4,699,208590
,4,700,30145
,4,701,230780
,4,702,24670
,4,704,208590
,4,705,201635
,4,706,230780
,4,707,197385
,4,708,209315
,4,709,23705
,4,710,230780
,4,711,23705
,4,712,230710
,4,713,201640
,4,714,230780
,4,715,195280
,4,716,230710
,4,717,24680
,4,719,208590
,4,720,200005
,4,721,230780
,4,722,195280
,4,723,230710
,4,724,24690
,4,726,208590
,4,727,200995
,4,728,230780
,4,729,195280
,4,730,230710
,4,731,195280
,4,732,230710
,4,733,202370
,4,734,230710
,4,735,202370
,4,736,230780
,4,737,195280
,4,738,230710
,4,739,195280
,4,740,230710
,4,741,30145
,4,742,230710
,4,743,30145
,4,744,230780
,4,745,195280
,4,746,230710
,4,747,195280
,4,748,230710
,4,749,29140
,4,750,230710
,4,751,202465
,4,752,230780
,4,753,197385
,4,754,209315
,4,755,23715
,4,756,230780
,4,757,195280
,4,758,230710
,4,759,24700
,4,761,208590
,4,762,197915
,4,763,230780
,4,764,195280
,4,765,230710
,4,766,24710
,4,768,208590
,4,769,29140
,4,770,230780
,4,771,195280
,4,772,230710
,4,773,24720
,4,775,208590
,4,776,202370
,4,777,230780
,4,778,195280
,4,779,230710
,4,780,195280
,4,781,230710
,4,782,202370
,4,783,230710
,4,784,202465
,4,785,230780
,4,786,232735
,4,787,208615
,4,788,232735
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,24910
,3,36247,24900
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228035
,3,36252,24895
,3,36244,230605
,4,1,208635
,4,2,24885
,4,4,208590
,4,5,232740
,4,6,208615
,4,7,232740
,3,36244,12610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,24915
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,24930
,3,36254,24920
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,24935
,2,828,24925
,2,34586,27635
,2,34587,27760
,2,34588,27765
,2,34589,27770
,2,34590,27775
,2,34591,27780
,2,34592,27785
,2,34593,27790
,2,35551,430
,3,36244,199945
,3,36259,24930
,3,36261,24925
,4,2,202670
,3,36262,202665
,3,36244,234750
,3,36244,12610
,4,4,24945
,3,36244,12840
,4,1,24950
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,24940
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,24965
,3,36254,24955
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,24970
,2,828,24960
,2,35551,430
,3,36244,200105
,3,36259,24965
,3,36261,24960
,3,36244,234750
,3,36244,12610
,4,4,24980
,3,36244,12840
,4,1,24985
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,24975
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25000
,3,36254,24990
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25005
,2,828,24995
,2,35551,430
,3,36244,200125
,3,36259,25000
,3,36261,24995
,3,36244,234750
,3,36244,12610
,4,4,25015
,3,36244,12840
,4,1,25020
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25010
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25035
,3,36254,25025
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25040
,2,828,25030
,2,35551,430
,3,36244,200150
,3,36259,25035
,3,36261,25030
,3,36244,234750
,3,36244,12610
,4,4,25050
,3,36244,12840
,4,1,25055
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25045
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25070
,3,36254,25060
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25075
,2,828,25065
,2,35551,430
,3,36244,200170
,3,36259,25070
,3,36261,25065
,3,36244,234750
,3,36244,12610
,4,4,25085
,3,36244,12840
,4,1,25090
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25080
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25105
,3,36254,25095
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25110
,2,828,25100
,2,35551,430
,3,36244,200190
,3,36259,25105
,3,36261,25100
,3,36244,234750
,3,36244,12610
,4,4,25120
,3,36244,12840
,4,1,25125
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25115
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25140
,3,36254,25130
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25145
,2,828,25135
,2,35551,430
,3,36244,200210
,3,36259,25140
,3,36261,25135
,3,36244,234750
,3,36244,12610
,4,4,25155
,3,36244,12840
,4,1,25160
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25150
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25175
,3,36254,25165
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25180
,2,828,25170
,2,35551,430
,3,36244,200230
,3,36259,25175
,3,36261,25170
,3,36244,234750
,3,36244,12610
,4,4,25190
,3,36244,12840
,4,1,25195
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25185
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25210
,3,36254,25200
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25215
,2,828,25205
,2,35551,430
,3,36244,200250
,3,36259,25210
,3,36261,25205
,3,36244,234750
,3,36244,12610
,4,4,25225
,3,36244,12840
,4,1,25230
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25220
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25245
,3,36254,25235
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25250
,2,828,25240
,2,35551,430
,3,36244,200270
,3,36259,25245
,3,36261,25240
,3,36244,234750
,3,36244,12610
,4,4,25260
,3,36244,12840
,4,1,25265
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25255
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25280
,3,36254,25270
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25285
,2,828,25275
,2,35551,430
,3,36244,200290
,3,36259,25280
,3,36261,25275
,3,36244,234750
,3,36244,12610
,4,4,25295
,3,36244,12840
,4,1,25300
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25290
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25315
,3,36254,25305
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25320
,2,828,25310
,2,35551,430
,3,36244,200310
,3,36259,25315
,3,36261,25310
,3,36244,234750
,3,36244,12610
,4,4,25330
,3,36244,12840
,4,1,25335
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25325
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25350
,3,36254,25340
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25355
,2,828,25345
,2,35551,430
,3,36244,200330
,3,36259,25350
,3,36261,25345
,3,36244,234750
,3,36244,12610
,4,4,25365
,3,36244,12840
,4,1,25370
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25360
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25385
,3,36254,25375
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25390
,2,828,25380
,2,35551,430
,3,36244,200350
,3,36259,25385
,3,36261,25380
,3,36244,234750
,3,36244,12610
,4,4,25400
,3,36244,12840
,4,1,25405
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25395
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25420
,3,36254,25410
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25425
,2,828,25415
,2,35551,430
,3,36244,200370
,3,36259,25420
,3,36261,25415
,3,36244,234750
,3,36244,12610
,4,4,25435
,3,36244,12840
,4,1,25440
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25430
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25455
,3,36254,25445
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25460
,2,828,25450
,2,35551,430
,3,36244,200390
,3,36259,25455
,3,36261,25450
,3,36244,234750
,3,36244,12610
,4,4,25470
,3,36244,12840
,4,1,25475
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25465
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25490
,3,36254,25480
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25495
,2,828,25485
,2,35551,430
,3,36244,200410
,3,36259,25490
,3,36261,25485
,3,36244,234750
,3,36244,12610
,4,4,25505
,3,36244,12840
,4,1,25510
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25500
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25525
,3,36254,25515
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25530
,2,828,25520
,2,35551,430
,3,36244,200430
,3,36259,25525
,3,36261,25520
,3,36244,234750
,3,36244,12610
,4,4,25540
,3,36244,12840
,4,1,25545
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25535
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25560
,3,36254,25550
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25565
,2,828,25555
,2,35551,430
,3,36244,200450
,3,36259,25560
,3,36261,25555
,3,36244,234750
,3,36244,12610
,4,4,25575
,3,36244,12840
,4,1,25580
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25570
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25595
,3,36254,25585
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25600
,2,828,25590
,2,35551,430
,3,36244,200470
,3,36259,25595
,3,36261,25590
,3,36244,234750
,3,36244,12610
,4,4,25610
,3,36244,12840
,4,1,25615
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25605
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25630
,3,36254,25620
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25635
,2,828,25625
,2,35551,430
,3,36244,200490
,3,36259,25630
,3,36261,25625
,3,36244,234750
,3,36244,12610
,4,4,25645
,3,36244,12840
,4,1,25650
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25640
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25665
,3,36254,25655
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25670
,2,828,25660
,2,35551,430
,3,36244,200510
,3,36259,25665
,3,36261,25660
,3,36244,234750
,3,36244,12610
,4,4,25680
,3,36244,12840
,4,1,25685
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25675
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25700
,3,36254,25690
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25705
,2,828,25695
,2,35551,430
,3,36244,200530
,3,36259,25700
,3,36261,25695
,3,36244,234750
,3,36244,12610
,4,4,25715
,3,36244,12840
,4,1,25720
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25710
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25735
,3,36254,25725
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25740
,2,828,25730
,2,35551,430
,3,36244,200550
,3,36259,25735
,3,36261,25730
,3,36244,234750
,3,36244,12610
,4,4,25750
,3,36244,12840
,4,1,25755
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25745
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25770
,3,36254,25760
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25775
,2,828,25765
,2,35551,430
,3,36244,200570
,3,36259,25770
,3,36261,25765
,3,36244,234750
,3,36244,12610
,4,4,25785
,4,6,25790
,4,10,25795
,4,11,23665
,3,36244,12840
,4,1,25800
,3,36244,12720
,4,2,25820
,3,36244,12720
,4,3,25780
,3,36244,225610
,3,36244,12610
,4,4,25810
,3,36244,12840
,4,1,25815
,3,36244,225610
,1,1,23245
,1,2,25805
,1,4,25885
,1,5,25825
,1,7,85
,2,35551,70
,3,36314,200590
,3,36244,195515
,3,36244,12610
,4,4,25830
,3,36244,12840
,4,1,25835
,3,36244,225610
,3,36245,23665
,3,36246,12650
,3,36248,23665
,3,36249,12655
,3,36376,25780
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25850
,3,36254,25840
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25855
,2,1138,25865
,2,1284,25890
,2,828,25845
,2,35551,430
,3,36244,200615
,3,36259,25850
,3,36261,25845
,3,36244,234750
,3,36245,23245
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25805
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25870
,3,36254,25860
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25875
,2,828,25865
,2,35551,430
,3,36244,200595
,3,36259,25870
,3,36261,25865
,3,36244,234750
,3,36245,25885
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,25825
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,25895
,3,36254,25880
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,25900
,2,828,25890
,2,35551,430
,3,36244,200605
,3,36259,25895
,3,36261,25890
,3,36244,234750
,3,36264,25910
,3,36245,25915
,3,36244,575
,4,3,25920
,3,36244,225610
,3,36245,24805
,3,36246,25930
,3,36247,25935
,3,36248,320
,3,36263,25905
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229810
,3,36252,220595
,3,36244,230605
,4,1,208635
,4,2,12580
,4,3,234305
,4,4,234310
,4,5,208615
,4,6,234310
,3,36244,4430
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,25905
,3,36249,335
,3,36250,25945
,6,1,85
,3,36244,4410
,4,3,25955
,4,1,25960
,4,3,25965
,4,5,25970
,4,7,25975
,4,9,25980
,4,11,25985
,4,13,25990
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,19455
,4,11,24805
,4,12,26000
,3,36245,655
,3,36246,26010
,3,36247,25995
,3,36248,320
,3,36263,25905
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228040
,3,36252,25950
,3,36244,230605
,4,1,208555
,4,2,25925
,4,3,208925
,4,4,208635
,4,5,16905
,4,6,232090
,4,7,206160
,4,8,25960
,4,9,208775
,4,10,16620
,4,11,230710
,4,12,208870
,4,13,19455
,4,14,25965
,4,15,208775
,4,16,197385
,4,17,209315
,4,18,200670
,4,19,25970
,4,20,208775
,4,21,24810
,4,22,230780
,4,23,200945
,4,24,25975
,4,25,208775
,4,26,24815
,4,27,230780
,4,28,201065
,4,29,25980
,4,30,208775
,4,31,27165
,4,32,230780
,4,33,201130
,4,34,25985
,4,35,208775
,4,36,27355
,4,37,230780
,4,38,201235
,4,39,25990
,4,40,208775
,4,41,27540
,4,42,230780
,4,43,24805
,4,44,230780
,4,45,195280
,4,46,230710
,4,47,25940
,4,49,208590
,4,50,200665
,4,51,230780
,4,52,232745
,4,53,208615
,4,54,232745
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,26030
,3,36247,26020
,3,36248,320
,3,36263,25905
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228045
,3,36252,26015
,3,36244,230605
,4,1,208635
,4,2,26005
,4,4,208590
,4,5,232750
,4,6,208615
,4,7,232750
,3,36264,26040
,3,36245,26045
,3,36244,575
,4,3,26050
,3,36372,200670
,3,36373,199565
,3,36244,225610
,3,36245,26060
,3,36246,26065
,3,36247,26070
,3,36248,320
,3,36263,26035
,3,36249,1450
,3,36250,340
,6,1,26075
,3,36251,229790
,3,36252,220575
,3,36244,230605
,4,1,208635
,4,2,208660
,4,4,208800
,4,5,212690
,4,6,234115
,4,7,208300
,4,8,208740
,4,9,212690
,4,10,234185
,4,11,212690
,4,12,234190
,4,13,208695
,4,14,208930
,4,15,212690
,4,16,234195
,4,17,220570
,4,18,208250
,4,19,28860
,4,20,234200
,4,21,21455
,4,22,234205
,4,24,212780
,4,25,234210
,4,26,212490
,4,27,234215
,4,29,213455
,4,30,234220
,4,32,213495
,4,33,234225
,4,35,212135
,4,36,234230
,4,38,211570
,4,39,234235
,4,41,213180
,4,42,234240
,4,44,212915
,4,45,234245
,4,47,211650
,4,48,234250
,4,50,213630
,4,51,234255
,4,53,212765
,4,54,234260
,4,55,213890
,4,56,234115
,4,57,208300
,4,58,213890
,4,59,234265
,4,60,211480
,4,61,234115
,4,62,208300
,4,63,211945
,4,64,211480
,4,65,234270
,4,67,213390
,4,68,234275
,4,69,211490
,4,70,234280
,4,72,211690
,4,73,234285
,4,75,212750
,4,76,234290
,4,78,28785
,4,79,234295
,4,80,28785
,4,81,234115
,4,82,208300
,4,83,208310
,4,84,212820
,4,85,220585
,4,86,208775
,4,87,26405
,4,88,230705
,4,89,208870
,4,90,28785
,4,91,230705
,4,92,220590
,4,93,208690
,4,94,212750
,4,95,230780
,4,96,28785
,4,97,230705
,4,98,28785
,4,99,230780
,4,100,234300
,4,101,208615
,4,102,234300
,3,36244,4430
,4,5,28845
,4,6,206165
,4,7,213135
,3,36259,205810
,3,36261,26460
,4,2,223335
,3,36262,223330
,3,36244,234750
,3,36245,24810
,3,36246,26085
,3,36247,26090
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229780
,3,36252,220550
,3,36244,230605
,4,1,208635
,4,2,208290
,4,3,220560
,4,4,208690
,4,5,234165
,4,6,208615
,4,7,234165
,4,8,220565
,4,9,208690
,4,10,212530
,4,11,234170
,4,13,27205
,4,14,234175
,4,15,12580
,4,16,234180
,3,36244,4430
,4,5,28845
,3,36245,26100
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26110
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26120
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26130
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26140
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26150
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26160
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26170
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26180
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26190
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26200
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26210
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26220
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26230
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26240
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26250
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,26260
,6,1,85
,3,36372,24810
,3,36373,200675
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,26270
,6,1,85
,3,36372,24810
,3,36373,200680
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,26280
,6,1,85
,3,36372,24810
,3,36373,200685
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,26290
,6,1,85
,3,36372,24810
,3,36373,200690
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,26300
,6,1,85
,3,36372,24810
,3,36373,200695
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,26310
,6,1,85
,3,36372,24810
,3,36373,200700
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,26320
,6,1,85
,3,36372,24810
,3,36373,200705
,3,36245,655
,3,36246,26330
,3,36247,26335
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,26340
,6,1,85
,3,36251,229850
,3,36252,220670
,3,36244,230605
,4,1,208635
,4,2,195280
,4,3,230735
,4,4,195980
,4,5,234415
,4,6,12580
,4,7,234420
,4,8,211900
,4,9,208325
,4,10,212530
,4,11,230705
,4,12,213455
,4,13,230705
,4,14,208310
,4,15,220680
,4,16,208775
,4,17,27205
,4,18,208325
,4,19,27205
,4,20,230705
,4,21,208310
,4,22,212530
,4,23,230705
,4,24,212765
,4,25,230705
,4,26,208310
,4,28,212765
,4,29,230780
,4,31,213630
,4,32,230780
,4,34,211650
,4,35,230780
,4,36,211570
,4,37,230705
,4,38,208310
,4,39,200010
,4,40,209135
,4,41,21455
,4,42,230705
,4,43,208310
,4,44,220685
,4,45,208650
,4,46,234425
,4,47,208615
,4,48,234425
,3,36244,4430
,4,5,213295
,4,6,16740
,4,7,212715
,4,8,211405
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,26350
,6,1,85
,3,36372,24810
,3,36373,200710
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,26360
,6,1,85
,3,36372,24810
,3,36373,200715
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,26370
,6,1,85
,3,36372,24810
,3,36373,200720
,3,36244,4410
,4,3,26380
,4,1,26385
,4,3,26390
,4,5,26395
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,19455
,4,11,16910
,4,12,26000
,4,13,24805
,4,14,26405
,4,15,26060
,4,16,24810
,4,17,26100
,4,18,26110
,4,19,26410
,4,20,26120
,4,21,26130
,4,22,26140
,4,23,26150
,4,24,26160
,4,25,26170
,4,26,26180
,4,27,26190
,4,28,26200
,4,29,26210
,4,30,26220
,4,31,26230
,4,32,26240
,4,33,26250
,3,36245,655
,3,36246,26420
,3,36247,26400
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228080
,3,36252,26375
,3,36244,230605
,4,1,208400
,4,2,208945
,4,3,26055
,4,5,208590
,4,6,208705
,4,7,26080
,4,8,208925
,4,9,208705
,4,10,26095
,4,11,208925
,4,12,208705
,4,13,26105
,4,14,208925
,4,15,208705
,4,16,26115
,4,17,208925
,4,18,208705
,4,19,26125
,4,20,208925
,4,21,208705
,4,22,26135
,4,23,208925
,4,24,208705
,4,25,26145
,4,26,208925
,4,27,208705
,4,28,26155
,4,29,208925
,4,30,208705
,4,31,26165
,4,32,208925
,4,33,208705
,4,34,26175
,4,35,208925
,4,36,208705
,4,37,26185
,4,38,208925
,4,39,208705
,4,40,26195
,4,41,208925
,4,42,208705
,4,43,26205
,4,44,208925
,4,45,208705
,4,46,26215
,4,47,208925
,4,48,208705
,4,49,26225
,4,50,208925
,4,51,208705
,4,52,26235
,4,53,208925
,4,54,208705
,4,55,26245
,4,56,208925
,4,57,208705
,4,58,208635
,4,59,16905
,4,60,232090
,4,61,26060
,4,62,230780
,4,63,206160
,4,64,26385
,4,65,208775
,4,66,16620
,4,67,230710
,4,68,208870
,4,69,206165
,4,70,26390
,4,71,208775
,4,72,208870
,4,73,19455
,4,74,26395
,4,75,208775
,4,76,197385
,4,77,209315
,4,78,195280
,4,79,230710
,4,80,26255
,4,82,208590
,4,83,7385
,4,84,230780
,4,85,195280
,4,86,230710
,4,87,26265
,4,89,208590
,4,90,7420
,4,91,230780
,4,92,195280
,4,93,230710
,4,94,26275
,4,96,208590
,4,97,200765
,4,98,230780
,4,99,208870
,4,100,195280
,4,101,230710
,4,102,26285
,4,104,208590
,4,105,200010
,4,106,230780
,4,107,195280
,4,108,230710
,4,109,26295
,4,111,208590
,4,112,200770
,4,113,230780
,4,114,195280
,4,115,230710
,4,116,26305
,4,118,208590
,4,119,200665
,4,120,230780
,4,121,195280
,4,122,230710
,4,123,26315
,4,125,208590
,4,126,200775
,4,127,230780
,4,128,195280
,4,129,230710
,4,130,26325
,4,132,208590
,4,133,195980
,4,134,230780
,4,135,195280
,4,136,230710
,4,137,195280
,4,138,230710
,4,139,195980
,4,140,230710
,4,141,21680
,4,142,230780
,4,143,195280
,4,144,230710
,4,145,26345
,4,147,208590
,4,148,200780
,4,149,230780
,4,150,195280
,4,151,230710
,4,152,26355
,4,154,208590
,4,155,200785
,4,156,230780
,4,157,195280
,4,158,230710
,4,159,26365
,4,161,208590
,4,162,195705
,4,163,230780
,4,164,200730
,4,165,230780
,4,166,232755
,4,167,208615
,4,168,232755
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,26440
,3,36247,26430
,3,36248,320
,3,36263,26035
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228085
,3,36252,26425
,3,36244,230605
,4,1,208635
,4,2,26415
,4,4,208590
,4,5,232760
,4,6,208615
,4,7,232760
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26255
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,16975
,0,860,85
,2,34337,17035
,2,35551,425
,2,34299,196135
,3,36253,205455
,3,36254,16780
,3,36255,16980
,6,64,85
,3,36244,205460
,4,1,16785
,0,1287,26450
,2,34458,26450
,2,1269,26465
,2,1270,27045
,2,1341,27470
,2,1349,27485
,2,1356,27615
,2,1268,26455
,2,35551,425
,2,34299,200745
,3,36254,25925
,3,36255,27630
,6,64,85
,3,36315,205805
,3,36244,201290
,4,1,25930
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,2,34299,205810
,3,36253,205815
,3,36254,26055
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,26065
,4,2,26075
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,1289,26460
,2,34458,26455
,2,34626,26540
,2,35551,425
,2,34299,201070
,3,36254,26080
,3,36255,26550
,6,64,85
,3,36244,200930
,4,1,26085
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26095
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26105
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26115
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26125
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26135
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26145
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26155
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26165
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26175
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26185
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26195
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26205
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26215
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26225
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26235
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26245
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,200790
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,16510
,4,3,26450
,4,4,26455
,4,6,26460
,4,7,26465
,4,8,26470
,4,9,26475
,4,11,26480
,4,12,26485
,4,13,26490
,4,14,26495
,4,15,26500
,4,16,26505
,4,17,26510
,4,18,26515
,4,19,26520
,4,20,26525
,4,21,26530
,4,22,26535
,4,23,26540
,4,24,26545
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26265
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26275
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26285
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26295
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36253,26580
,3,36254,26305
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26315
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26325
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,26330
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26345
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36254,26355
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,1287,26450
,0,1268,26455
,0,1317,85
,0,1289,26460
,0,1269,26465
,0,1290,26470
,0,1291,26475
,0,1292,26480
,0,1293,26485
,0,1294,26490
,0,1295,26495
,0,1296,26500
,0,1297,26505
,0,1298,26510
,0,1299,26515
,0,1300,26520
,0,1301,26525
,0,1302,26530
,0,1303,26535
,0,1304,26540
,0,1305,26545
,2,35551,425
,3,36253,26610
,3,36254,26365
,3,36255,26550
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,3,36264,26620
,3,36245,26625
,3,36244,575
,4,3,26630
,3,36372,200945
,3,36373,199565
,3,36244,225610
,3,36245,26640
,3,36246,4220
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,3,36374,26645
,6,1,85
,4,1,200950
,4,4,28785
,4,7,28350
,3,36245,26655
,3,36246,26660
,3,36247,26665
,3,36248,320
,3,36263,26615
,3,36249,1450
,3,36250,340
,6,1,26670
,3,36251,229825
,3,36252,220645
,3,36244,230605
,4,1,208555
,4,2,208945
,4,3,208635
,4,4,208660
,4,6,208800
,4,7,212690
,4,8,234115
,4,9,208300
,4,10,208740
,4,11,212690
,4,12,234330
,4,13,213890
,4,14,234115
,4,15,208300
,4,16,213890
,4,17,234335
,4,18,212690
,4,19,234340
,4,20,208695
,4,21,208930
,4,22,212690
,4,23,234345
,4,25,213660
,4,26,234350
,4,28,213460
,4,29,234355
,4,31,213495
,4,32,234360
,4,34,213110
,4,35,234365
,4,36,213945
,4,37,234115
,4,39,208740
,4,42,208720
,4,43,213945
,4,44,234370
,4,45,211480
,4,46,234115
,4,47,208300
,4,48,211945
,4,49,211480
,4,50,234375
,4,51,21455
,4,52,234380
,4,54,213170
,4,55,234385
,4,57,212915
,4,58,234390
,4,60,212125
,4,61,234395
,4,62,220625
,4,64,208590
,4,65,26815
,4,66,230780
,4,68,211485
,4,69,230780
,4,70,213070
,4,71,230780
,4,72,220620
,4,73,208250
,4,74,28860
,4,75,230780
,4,76,234400
,4,77,208615
,4,78,234400
,3,36244,4430
,4,5,28845
,4,6,206165
,4,7,213135
,4,8,213035
,4,9,206165
,3,36259,205820
,3,36261,27040
,4,2,223620
,3,36262,223615
,3,36244,234750
,3,36245,24815
,3,36246,26680
,3,36247,26685
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229820
,3,36252,220600
,3,36244,230605
,4,1,208635
,4,2,208290
,4,3,27165
,4,4,234075
,4,5,208290
,4,6,220610
,4,7,208690
,4,8,234315
,4,9,208615
,4,10,234315
,4,11,220615
,4,12,208690
,4,13,211715
,4,14,234320
,4,16,20525
,4,17,234325
,4,18,12580
,4,19,234180
,3,36244,4430
,4,5,28845
,3,36245,26695
,3,36246,4220
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26705
,3,36246,26710
,3,36247,26715
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230425
,3,36252,221275
,3,36244,230605
,4,1,208595
,4,2,208945
,4,3,208635
,4,5,17440
,4,6,230710
,4,7,17625
,4,8,209335
,4,9,208720
,4,10,90
,4,11,230705
,4,12,208560
,4,13,213890
,4,14,230705
,4,15,208310
,4,16,10040
,4,17,230705
,4,18,213285
,4,19,221285
,4,20,208690
,4,21,208870
,4,22,20135
,4,23,195975
,4,24,209305
,4,25,12615
,4,26,230705
,4,27,221270
,4,28,208925
,4,29,21400
,4,30,209135
,4,32,234600
,4,33,208615
,4,34,234600
,3,36244,4430
,4,5,206165
,4,6,211405
,4,7,200950
,4,8,213545
,4,9,212370
,4,10,213545
,4,11,28355
,3,36245,26725
,3,36246,26730
,3,36247,26735
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230440
,3,36252,221315
,3,36244,230605
,4,1,208635
,4,2,213890
,4,3,230710
,4,4,208720
,4,5,213945
,4,6,230710
,4,8,208740
,4,9,17440
,4,10,230705
,4,11,221325
,4,12,208690
,4,13,234615
,4,14,208615
,4,15,234615
,3,36244,4430
,4,5,211405
,4,6,200950
,4,7,28785
,3,36245,26745
,3,36246,26750
,3,36247,26755
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230435
,3,36252,221290
,3,36244,230605
,4,1,208635
,4,2,221300
,4,3,208530
,4,4,17440
,4,5,230710
,4,6,17625
,4,7,209335
,4,8,208720
,4,9,28860
,4,10,213890
,4,11,230710
,4,12,208720
,4,13,21455
,4,14,230710
,4,15,21455
,4,16,230710
,4,17,208680
,4,18,21455
,4,19,234605
,4,20,21455
,4,21,230710
,4,22,212690
,4,23,230710
,4,24,208220
,4,27,208720
,4,29,213660
,4,30,230780
,4,31,213170
,4,32,230710
,4,33,208720
,4,34,28860
,4,35,230705
,4,36,221305
,4,37,208690
,4,38,7385
,4,39,209135
,4,40,221310
,4,41,208275
,4,42,234610
,4,43,208615
,4,44,234610
,3,36244,4430
,4,5,206165
,4,6,211405
,4,7,200950
,4,8,28785
,4,9,213545
,4,10,211440
,4,11,211805
,3,36245,26765
,3,36246,26770
,3,36247,26775
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230450
,3,36252,221330
,3,36244,230605
,4,1,208635
,4,2,213070
,4,3,234620
,4,4,211485
,4,5,234625
,4,7,213170
,4,8,234630
,4,10,212915
,4,11,234635
,4,12,26815
,4,13,230710
,4,14,200995
,4,15,209345
,4,17,212915
,4,18,234635
,4,19,234640
,4,20,208615
,4,21,234640
,3,36244,4430
,4,5,206165
,4,6,211405
,4,7,211440
,4,8,200950
,4,9,28785
,4,10,213545
,3,36245,26785
,3,36246,4220
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26795
,3,36246,26800
,3,36247,26805
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230515
,3,36252,221510
,3,36244,230605
,4,1,208635
,4,3,213170
,4,4,234630
,4,6,211485
,4,7,234625
,4,8,21455
,4,9,230710
,4,10,213070
,4,11,230710
,4,12,208830
,4,13,21455
,4,14,234605
,4,15,213070
,4,16,234620
,4,17,234690
,4,18,208615
,4,19,234690
,3,36244,4430
,4,5,211405
,3,36245,26815
,3,36246,26820
,3,36247,26825
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230510
,3,36252,221475
,3,36244,230605
,4,1,208745
,4,2,208945
,4,3,208635
,4,4,211715
,4,5,230710
,4,6,208870
,4,7,212915
,4,8,230710
,4,9,211485
,4,10,230710
,4,11,208870
,4,12,221485
,4,13,208775
,4,14,208300
,4,15,221490
,4,16,208610
,4,17,221495
,4,18,208650
,4,19,208870
,4,20,208720
,4,21,212125
,4,22,230710
,4,23,208720
,4,24,28860
,4,25,230710
,4,26,21455
,4,27,230710
,4,28,208430
,4,29,221500
,4,30,208650
,4,31,208720
,4,32,12615
,4,33,230710
,4,34,221460
,4,35,208925
,4,36,21400
,4,37,209335
,4,38,221505
,4,39,208485
,4,40,234685
,4,41,208615
,4,42,234685
,3,36244,4430
,4,5,206165
,4,6,28355
,4,7,212915
,4,8,206165
,4,9,211405
,4,10,213545
,4,11,213110
,3,36245,26835
,3,36246,26840
,3,36247,26845
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230540
,3,36252,221560
,3,36244,230605
,4,1,208635
,4,2,208720
,4,3,221570
,4,4,208650
,4,5,221575
,4,6,208825
,4,7,208720
,4,8,221580
,4,9,208650
,4,10,234715
,4,11,208615
,4,12,234715
,3,36244,4430
,4,5,206165
,4,6,211405
,4,7,213110
,4,8,213545
,3,36245,26855
,3,36246,26860
,3,36247,26865
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230545
,3,36252,221585
,3,36244,230605
,4,1,208635
,4,2,21455
,4,3,230710
,4,4,208535
,4,5,213660
,4,6,230710
,4,7,208720
,4,9,213660
,4,10,230780
,4,11,211475
,4,12,195975
,4,13,209135
,4,14,234720
,4,15,208615
,4,16,234720
,3,36244,4430
,4,5,206165
,4,6,211405
,3,36245,26875
,3,36246,4220
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26885
,3,36246,26890
,3,36247,26895
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230520
,3,36252,221515
,3,36244,230605
,4,1,208635
,4,2,213460
,4,3,230710
,4,4,208720
,4,5,21455
,4,6,230705
,4,7,208560
,4,10,208720
,4,11,213110
,4,12,230705
,4,13,208310
,4,14,208720
,4,15,213170
,4,16,230705
,4,17,208310
,4,18,234695
,4,19,208615
,4,20,234695
,3,36244,4430
,4,5,206165
,4,6,211405
,3,36245,26905
,3,36246,4220
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,26915
,3,36246,4220
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,26925
,6,1,85
,3,36372,24815
,3,36373,200955
,3,36245,655
,3,36246,26935
,3,36247,26940
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,26945
,6,1,85
,3,36251,230420
,3,36252,221245
,3,36244,230605
,4,1,208635
,4,2,211715
,4,3,230710
,4,6,17440
,4,7,230710
,4,8,17625
,4,9,209335
,4,10,208720
,4,11,28860
,4,12,208300
,4,13,211480
,4,14,230710
,4,15,221230
,4,16,208925
,4,17,213495
,4,18,230710
,4,19,208720
,4,20,221255
,4,21,208530
,4,22,221260
,4,23,208485
,4,24,208720
,4,25,221265
,4,26,208610
,4,27,234595
,4,28,208615
,4,29,234595
,3,36244,4430
,4,5,200950
,4,6,28785
,4,7,213545
,4,8,211405
,4,9,211805
,3,36372,24815
,3,36373,200960
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,26955
,6,1,85
,3,36372,24815
,3,36373,200965
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,26965
,6,1,85
,3,36244,4410
,4,3,26975
,4,1,26980
,4,3,26985
,4,5,26990
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,19455
,4,11,15695
,4,12,24805
,4,13,26640
,4,14,26655
,4,15,24815
,4,16,26695
,4,17,26705
,4,18,26725
,4,19,26745
,4,20,26765
,4,21,26785
,4,22,26795
,4,23,26815
,4,24,26835
,4,25,26855
,4,26,26875
,4,27,26885
,4,28,26905
,4,29,26915
,3,36245,655
,3,36246,27005
,3,36247,26995
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228095
,3,36252,26970
,3,36244,230605
,4,1,208835
,4,2,26635
,4,3,208925
,4,4,208705
,4,5,26650
,4,7,208590
,4,8,208705
,4,9,26675
,4,10,208925
,4,11,208705
,4,12,26690
,4,13,208925
,4,14,208705
,4,15,26700
,4,16,208925
,4,17,208705
,4,18,26720
,4,19,208925
,4,20,208705
,4,21,26740
,4,22,208925
,4,23,208705
,4,24,26760
,4,25,208925
,4,26,208705
,4,27,26780
,4,28,208925
,4,29,208705
,4,30,26790
,4,31,208925
,4,32,208705
,4,33,26810
,4,34,208925
,4,35,208705
,4,36,26830
,4,37,208925
,4,38,208705
,4,39,26850
,4,40,208925
,4,41,208705
,4,42,26870
,4,43,208925
,4,44,208705
,4,45,26880
,4,46,208925
,4,47,208705
,4,48,26900
,4,49,208925
,4,50,208705
,4,51,26910
,4,52,208925
,4,53,208705
,4,54,208635
,4,55,16905
,4,56,232090
,4,57,26655
,4,58,230780
,4,59,19455
,4,60,26980
,4,61,208775
,4,62,15695
,4,63,26985
,4,64,208775
,4,65,206165
,4,66,26990
,4,67,208775
,4,68,208870
,4,69,197385
,4,70,209315
,4,71,195280
,4,72,230710
,4,73,26920
,4,75,208590
,4,76,200665
,4,77,230780
,4,78,195280
,4,79,230710
,4,80,26930
,4,82,208590
,4,83,197915
,4,84,230780
,4,85,195280
,4,86,230710
,4,87,26950
,4,89,208590
,4,90,200995
,4,91,230780
,4,92,195280
,4,93,230710
,4,94,26960
,4,96,208590
,4,97,29140
,4,98,230780
,4,99,232765
,4,100,208615
,4,101,232765
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,27025
,3,36247,27015
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228100
,3,36252,27010
,3,36244,230605
,4,1,208635
,4,2,27000
,4,4,208590
,4,5,232770
,4,6,208615
,4,7,232770
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26920
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,4220
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26635
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,4220
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,2,34299,205820
,3,36253,205825
,3,36254,26650
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,26660
,4,2,26670
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,1321,27040
,2,34458,26455
,2,35551,425
,2,34299,202450
,3,36254,26675
,3,36255,27120
,6,64,85
,3,36244,200980
,4,1,26680
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26690
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,4220
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26700
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,26710
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26720
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,26730
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26740
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,26750
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26760
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,26770
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26780
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,4220
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26790
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,26800
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26810
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,26820
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26830
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,26840
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26850
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,26860
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26870
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,4220
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26880
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,26890
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26900
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,4220
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26910
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,201000
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,26455
,4,3,27035
,4,4,27040
,4,5,27045
,4,6,27050
,4,7,27055
,4,8,27060
,4,9,27065
,4,10,27070
,4,11,27075
,4,12,27080
,4,13,27085
,4,14,27090
,4,15,27095
,4,16,27100
,4,17,27105
,4,18,27110
,4,19,27115
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26930
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,26935
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26950
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,4220
,0,1268,26455
,0,1320,27035
,0,1321,27040
,0,1270,27045
,0,1322,27050
,0,1323,27055
,0,1324,27060
,0,1325,27065
,0,1326,27070
,0,1327,27075
,0,1328,27080
,0,1329,27085
,0,1330,27090
,0,1331,27095
,0,1332,27100
,0,1333,27105
,0,1334,27110
,0,1335,27115
,2,35551,425
,3,36254,26960
,3,36255,27120
,6,64,85
,3,36244,12670
,4,1,4220
,3,36264,27145
,3,36245,27150
,3,36244,575
,4,3,27155
,3,36372,201065
,3,36373,199565
,3,36244,225610
,3,36245,27165
,3,36246,27170
,3,36247,27175
,3,36248,320
,3,36263,27140
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229775
,3,36252,220535
,3,36244,230605
,4,1,208635
,4,2,208290
,4,3,220545
,4,4,208690
,4,5,234130
,4,6,208615
,4,7,234130
,4,8,12580
,4,9,234135
,4,10,12580
,4,11,234140
,4,12,208660
,4,13,27205
,4,14,234125
,4,16,208740
,4,18,27205
,4,19,234145
,4,20,208660
,4,21,20525
,4,22,234150
,4,24,208740
,4,26,20525
,4,27,230780
,4,29,211505
,4,30,234155
,4,31,208660
,4,32,211505
,4,33,234115
,4,35,208740
,4,37,211505
,4,38,230780
,4,39,29140
,4,40,195985
,4,41,234160
,3,36244,4430
,4,5,28845
,3,36245,27185
,3,36246,4220
,3,36248,320
,3,36263,27140
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,27195
,3,36247,27200
,3,36248,320
,3,36263,27140
,3,36249,335
,3,36250,27205
,6,1,85
,3,36251,228125
,3,36252,27300
,3,36244,230605
,4,1,208635
,4,2,195280
,4,3,230735
,4,4,230755
,4,5,208665
,4,6,195280
,4,7,230735
,4,8,195280
,4,9,230735
,4,10,230750
,4,11,230835
,4,12,232790
,4,13,208615
,4,14,232790
,3,36244,4430
,4,5,27305
,3,36244,4410
,4,3,27215
,4,1,27220
,4,3,27225
,4,5,27230
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,19455
,4,11,24810
,4,12,24815
,4,13,27165
,4,14,27185
,3,36245,655
,3,36246,27245
,3,36247,27235
,3,36248,320
,3,36263,27140
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228105
,3,36252,27210
,3,36244,230605
,4,1,208745
,4,2,27160
,4,3,208925
,4,4,208705
,4,5,27180
,4,6,208925
,4,7,208705
,4,8,208635
,4,9,16905
,4,10,232090
,4,11,19455
,4,12,27220
,4,13,208775
,4,14,200670
,4,15,27225
,4,16,208775
,4,17,208870
,4,18,200945
,4,19,27230
,4,20,208775
,4,21,208870
,4,22,197385
,4,23,209315
,4,24,320
,4,25,230710
,4,26,195280
,4,27,230710
,4,28,5010
,4,29,209335
,4,30,27190
,4,31,208925
,4,32,6870
,4,33,209335
,4,34,232775
,4,35,208615
,4,36,232775
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,27265
,3,36247,27255
,3,36248,320
,3,36263,27140
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228110
,3,36252,27250
,3,36244,230605
,4,1,208635
,4,2,27240
,4,4,208590
,4,5,232780
,4,6,208615
,4,7,232780
,3,36244,7530
,4,1,27275
,4,2,27270
,4,2,27285
,3,36244,4410
,3,36244,4410
,3,36264,27315
,3,36245,27320
,3,36244,575
,4,3,27325
,3,36372,201130
,3,36373,199565
,3,36244,225610
,3,36245,27335
,3,36246,4220
,3,36248,320
,3,36263,27310
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,27345
,3,36246,4220
,3,36248,320
,3,36263,27310
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,27355
,3,36246,4220
,3,36248,320
,3,36263,27310
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,27365
,3,36246,4220
,3,36248,320
,3,36263,27310
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,27310
,3,36249,335
,3,36250,27375
,6,1,85
,3,36372,27355
,3,36373,201135
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,27310
,3,36249,335
,3,36250,27385
,6,1,85
,3,36372,27355
,3,36373,201140
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,27310
,3,36249,335
,3,36250,27395
,6,1,85
,3,36372,27355
,3,36373,201145
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,27310
,3,36249,335
,3,36250,27405
,6,1,85
,3,36372,27355
,3,36373,201150
,3,36244,4410
,4,3,27415
,4,1,27420
,4,3,27425
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,19455
,4,11,27165
,4,12,27335
,4,13,27345
,4,14,27355
,4,15,27365
,3,36245,655
,3,36246,27440
,3,36247,27430
,3,36248,320
,3,36263,27310
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228135
,3,36252,27410
,3,36244,230605
,4,1,208760
,4,2,27330
,4,3,208925
,4,4,208705
,4,5,27340
,4,6,208925
,4,7,208705
,4,8,27350
,4,9,208925
,4,10,208705
,4,11,27360
,4,12,208925
,4,13,208705
,4,14,208635
,4,15,16905
,4,16,232090
,4,17,201065
,4,18,27420
,4,19,208775
,4,20,208870
,4,21,19455
,4,22,27425
,4,23,208775
,4,24,197385
,4,25,209315
,4,26,195280
,4,27,230710
,4,28,27370
,4,30,208590
,4,31,7385
,4,32,230780
,4,33,195280
,4,34,230710
,4,35,27380
,4,37,208590
,4,38,201170
,4,39,230780
,4,40,195280
,4,41,230710
,4,42,27390
,4,44,208590
,4,45,200995
,4,46,230780
,4,47,195280
,4,48,230710
,4,49,27400
,4,51,208590
,4,52,200770
,4,53,230780
,4,54,232795
,4,55,208615
,4,56,232795
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,27460
,3,36247,27450
,3,36248,320
,3,36263,27310
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228140
,3,36252,27445
,3,36244,230605
,4,1,208635
,4,2,27435
,4,4,208590
,4,5,232800
,4,6,208615
,4,7,232800
,0,1341,27470
,0,1347,27475
,0,1348,27480
,0,1349,27485
,0,1350,27490
,2,35551,425
,3,36254,27370
,3,36255,27495
,6,64,85
,3,36244,12670
,4,1,4220
,0,1269,26465
,0,1270,27045
,0,1341,27470
,0,1342,205775
,2,34458,26465
,2,35551,425
,2,34299,201155
,3,36254,27160
,3,36255,205780
,6,64,85
,3,36315,205785
,3,36244,201055
,4,1,27170
,0,1341,27470
,0,1347,27475
,0,1348,27480
,0,1349,27485
,0,1350,27490
,2,35551,425
,3,36254,27330
,3,36255,27495
,6,64,85
,3,36244,12670
,4,1,4220
,0,1341,27470
,0,1347,27475
,0,1348,27480
,0,1349,27485
,0,1350,27490
,2,35551,425
,3,36254,27340
,3,36255,27495
,6,64,85
,3,36244,12670
,4,1,4220
,0,1341,27470
,0,1347,27475
,0,1348,27480
,0,1349,27485
,0,1350,27490
,2,34458,27470
,2,35551,425
,2,34299,201245
,3,36254,27350
,3,36255,27495
,6,64,85
,3,36315,205790
,3,36244,201055
,4,1,4220
,0,1341,27470
,0,1347,27475
,0,1348,27480
,0,1349,27485
,0,1350,27490
,2,35551,425
,3,36254,27360
,3,36255,27495
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,201175
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,27470
,4,3,27475
,4,4,27480
,4,5,27485
,4,6,27490
,0,1341,27470
,0,1347,27475
,0,1348,27480
,0,1349,27485
,0,1350,27490
,2,35551,425
,3,36254,27380
,3,36255,27495
,6,64,85
,3,36244,12670
,4,1,4220
,0,1341,27470
,0,1347,27475
,0,1348,27480
,0,1349,27485
,0,1350,27490
,2,35551,425
,3,36254,27390
,3,36255,27495
,6,64,85
,3,36244,12670
,4,1,4220
,0,1341,27470
,0,1347,27475
,0,1348,27480
,0,1349,27485
,0,1350,27490
,2,35551,425
,3,36254,27400
,3,36255,27495
,6,64,85
,3,36244,12670
,4,1,4220
,3,36264,27520
,3,36245,27525
,3,36244,575
,4,3,27530
,3,36372,201235
,3,36373,199565
,3,36244,225610
,3,36245,27540
,3,36246,4220
,3,36248,320
,3,36263,27515
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,27515
,3,36249,335
,3,36250,27550
,6,1,85
,3,36372,27540
,3,36373,201240
,3,36244,4410
,4,3,27560
,4,1,27565
,4,3,27570
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,19455
,4,11,27355
,4,12,27540
,3,36245,655
,3,36246,27585
,3,36247,27575
,3,36248,320
,3,36263,27515
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228150
,3,36252,27555
,3,36244,230605
,4,1,208595
,4,2,27535
,4,3,208925
,4,4,208705
,4,5,208635
,4,6,16905
,4,7,232090
,4,8,201130
,4,9,27565
,4,10,208775
,4,11,208870
,4,12,19455
,4,13,27570
,4,14,208775
,4,15,197385
,4,16,209315
,4,17,195280
,4,18,230710
,4,19,27545
,4,21,208590
,4,22,201170
,4,23,230780
,4,24,232805
,4,25,208615
,4,26,232805
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,27605
,3,36247,27595
,3,36248,320
,3,36263,27515
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228155
,3,36252,27590
,3,36244,230605
,4,1,208635
,4,2,27580
,4,4,208590
,4,5,232810
,4,6,208615
,4,7,232810
,0,1349,27485
,0,1356,27615
,2,35551,425
,3,36254,27545
,3,36255,27620
,6,64,85
,3,36244,12670
,4,1,4220
,0,1349,27485
,0,1356,27615
,2,34458,27485
,2,35551,425
,2,34299,205795
,3,36254,27535
,3,36255,27620
,6,64,85
,3,36315,205800
,3,36244,201055
,4,1,4220
,3,36256,201260
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,27485
,4,3,27615
,0,1287,26450
,2,35551,425
,3,36254,25940
,3,36255,27630
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,201295
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,26450
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23720
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,23725
,2,34594,24925
,2,1458,24960
,2,34595,24995
,2,34596,25030
,2,34597,25065
,2,34598,25100
,2,34599,25135
,2,34600,25170
,2,34601,25205
,2,34602,25240
,2,34603,25275
,2,1369,25310
,2,34604,25345
,2,34605,25380
,2,390,25415
,2,34606,25450
,2,34607,25485
,2,34608,25520
,2,34460,25555
,2,34609,25590
,2,34610,25625
,2,34611,25660
,2,34612,25695
,2,34613,25730
,2,34614,25765
,2,1165,25845
,2,35551,430
,3,36315,205840
,3,36244,200630
,2,34833,205845
,2,34912,205850
,2,35551,430
,3,36315,205855
,3,36244,198790
,2,34594,24925
,2,34318,27795
,2,34513,27800
,2,34640,27805
,2,34641,27815
,2,34642,27680
,2,1458,27860
,2,34643,27865
,2,34595,27870
,2,34644,27875
,2,34596,27880
,2,34645,27885
,2,34460,27895
,2,34646,27900
,2,34599,27905
,2,34647,27910
,2,953,27915
,2,34648,27920
,2,34600,27925
,2,34649,27930
,2,34601,27935
,2,34650,27940
,2,34597,27945
,2,34651,27950
,2,34598,27955
,2,34652,27960
,2,34602,27965
,2,34653,27970
,2,34603,27975
,2,34654,27980
,2,34605,27985
,2,34604,27990
,2,1369,27995
,2,34655,28000
,2,34656,28005
,2,34657,28010
,2,34607,28015
,2,34658,28020
,2,34606,28025
,2,34659,28030
,2,390,28035
,2,34660,28040
,2,34608,28045
,2,34661,28050
,2,34610,28055
,2,34662,28060
,2,34663,28065
,2,34664,28070
,2,34609,28075
,2,34665,28080
,2,34666,28085
,2,34667,28090
,2,34612,28095
,2,34668,28100
,2,34611,28105
,2,34669,28110
,2,34670,27695
,2,34613,28115
,2,34671,28120
,2,34614,28125
,2,34672,28130
,2,34673,28135
,2,34674,28145
,2,34675,28155
,2,34676,28165
,2,34677,28185
,2,34678,28205
,2,34679,28215
,2,1247,28220
,2,1248,28240
,2,34680,28250
,2,1168,27745
,2,34681,27745
,2,34682,28275
,2,1061,27750
,2,34683,27750
,2,1169,201645
,2,35551,430
,3,36244,202555
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23505
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23515
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23525
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23535
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,23545
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23555
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,23565
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23575
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,23585
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23595
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,23605
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36253,205860
,3,36254,23615
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23625
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23635
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23645
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,34458,26450
,2,35551,425
,2,34299,205865
,3,36254,23650
,3,36255,27755
,6,64,85
,3,36315,205870
,3,36244,201055
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,34458,26450
,2,35551,425
,2,34299,205875
,3,36254,23660
,3,36255,27755
,6,64,85
,3,36315,205880
,3,36244,201055
,4,1,4220
,2,35551,430
,3,36244,195565
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23670
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,2,842,204495
,2,132,100
,2,35664,110
,2,35911,110
,2,35551,1390
,3,36244,1400
,4,1,204490
,2,842,204460
,2,132,110
,2,35664,110
,2,35911,110
,2,35551,1390
,3,36244,1400
,4,1,204455
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23680
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,34458,26465
,2,35551,425
,2,34299,205885
,3,36253,205890
,3,36254,23690
,3,36255,27755
,6,64,85
,3,36315,205895
,3,36244,201055
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,34458,27045
,2,35551,425
,2,34299,205900
,3,36253,205905
,3,36254,23700
,3,36255,27755
,6,64,85
,3,36315,205910
,3,36244,201055
,4,1,4220
,3,36256,201305
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,20250
,4,3,22110
,4,4,27640
,4,5,27645
,4,6,27650
,4,7,26455
,4,8,26450
,4,9,26465
,4,10,27045
,4,22,27655
,4,23,27660
,4,24,27665
,4,25,27670
,4,26,27675
,4,27,27680
,4,28,27685
,4,29,27690
,4,30,27695
,4,31,27700
,4,32,27705
,4,33,27710
,4,34,27715
,4,35,27720
,4,36,27725
,4,37,27730
,4,38,27735
,4,40,27740
,4,41,27745
,4,42,27750
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23740
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,23745
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23760
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23770
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23780
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23790
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,23795
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23810
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23820
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23830
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23840
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36253,27810
,3,36254,23850
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36253,27820
,3,36254,23860
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,23865
,4,1,560
,4,3,27825
,2,1389,85
,2,1390,28795
,2,35551,430
,3,36244,202965
,3,36244,7530
,4,1,27835
,4,2,27830
,3,36244,4410
,4,3,27850
,4,1,27855
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23880
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23890
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,23895
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23910
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23920
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,23925
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23940
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36253,27890
,3,36254,23950
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,23955
,4,1,560
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23970
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23980
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,23990
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24000
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24010
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24020
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24030
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24040
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24050
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24060
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24070
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24080
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24090
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24100
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24110
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24120
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24130
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24140
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24150
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24160
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24170
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24180
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,24185
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24200
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,24205
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24220
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,24225
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24240
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24250
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24260
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24270
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24280
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24290
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24300
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24310
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24320
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24330
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24340
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24350
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24360
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24370
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24380
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24390
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24400
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24410
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24420
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24430
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24440
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24450
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24460
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24470
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36253,28140
,3,36254,24480
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36253,28150
,3,36254,24490
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36253,28160
,3,36254,24500
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36253,28170
,3,36254,24510
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24520
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24530
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36253,28190
,3,36254,24540
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24550
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24560
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36253,28210
,3,36254,24570
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24580
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36253,28225
,3,36254,24590
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,24600
,4,1,560
,4,2,28230
,4,3,28235
,2,35551,430
,3,36244,195565
,2,35551,430
,3,36244,195565
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36253,28245
,3,36254,24610
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24620
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24630
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24640
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24650
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24660
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24670
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24680
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24690
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24700
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24710
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,35551,425
,3,36254,24720
,3,36255,27755
,6,64,85
,3,36244,12670
,4,1,4220
,3,36244,4410
,3,36244,4410
,4,3,28320
,4,1,28325
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,28340
,4,1,28345
,3,36244,4410
,3,36244,4410
,4,3,28370
,4,1,28375
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36245,23245
,3,36246,28405
,3,36247,28410
,3,36248,320
,3,36263,23480
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228235
,3,36252,28495
,3,36244,230605
,4,1,208635
,4,2,12150
,4,3,232930
,4,4,232935
,4,5,21455
,4,6,230725
,4,7,208870
,4,8,232935
,4,9,208870
,4,10,232935
,4,11,208870
,4,12,655
,4,13,208870
,4,14,208720
,4,15,230750
,4,16,208310
,4,17,201505
,4,18,209135
,4,20,230835
,4,21,232955
,4,22,208615
,4,23,232955
,3,36244,4430
,4,5,11775
,3,36244,4410
,4,3,28420
,4,1,28425
,4,3,28430
,3,36244,4410
,4,1,28505
,4,2,28500
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,3,28530
,4,1,28535
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,3,28560
,4,1,28565
,4,3,28570
,3,36244,4410
,4,3,28585
,4,1,28590
,3,36244,4410
,4,3,28605
,4,1,28610
,3,36244,4410
,3,36244,7530
,4,1,28635
,4,2,28630
,3,36244,4410
,3,36244,4410
,4,2,28685
,3,36244,4410
,3,36244,4410
,3,36244,7530
,4,1,28720
,4,2,28715
,3,36244,4410
,4,3,28735
,4,1,28740
,3,36244,4410
,4,3,28750
,4,1,28755
,3,36244,4410
,4,3,28765
,4,1,28770
,4,1,28785
,4,3,28790
,4,4,28795
,4,1,28785
,4,3,28790
,4,4,28795
,3,36244,4410
,4,3,28820
,4,1,28825
,4,3,28830
,4,5,28835
,4,7,28840
,3,36244,4410
,4,3,28880
,4,1,28885
,3,36244,4410
,3,36244,7530
,4,1,28900
,4,2,28895
,3,36244,4410
,3,36244,4410
,4,3,28920
,4,1,28925
,4,3,28930
,4,5,28935
,3,36244,4410
,4,3,28955
,4,1,28960
,3,36244,4410
,4,3,28975
,4,1,28980
,4,3,28985
,3,36244,4410
,3,36244,4410
,4,3,29000
,4,1,29005
,4,3,29010
,4,5,29015
,4,7,29020
,4,9,29025
,4,11,29030
,3,36244,4410
,3,36244,4410
,4,3,29060
,4,1,29065
,4,2,29070
,3,36244,4410
,4,3,29085
,4,1,29090
,4,3,29095
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,3,29130
,4,1,29135
,3,36244,4410
,3,36244,7530
,4,1,29155
,4,2,29150
,3,36244,4410
,4,1,17655
,4,2,29175
,3,36245,16910
,3,36246,29190
,3,36247,29195
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228680
,3,36252,29420
,3,36244,230605
,4,1,208635
,4,2,16910
,4,3,209335
,4,4,233450
,4,5,208615
,4,6,233450
,3,36244,4430
,4,5,16625
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,29205
,6,1,85
,3,36372,16910
,3,36373,203025
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,29215
,6,1,85
,3,36372,203030
,3,36373,203035
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,22295
,3,36249,335
,3,36250,29225
,6,1,85
,3,36372,16910
,3,36373,203040
,3,36244,4410
,4,3,29235
,4,1,29240
,4,3,29245
,4,5,29250
,4,7,29255
,4,9,29260
,4,11,29265
,3,36264,29305
,3,36245,29310
,3,36244,575
,4,3,29315
,3,36244,225610
,3,36245,655
,3,36246,29330
,3,36247,29335
,3,36248,320
,3,36263,29300
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229515
,3,36371,195170
,3,36252,195000
,3,36244,230605
,4,1,208635
,4,2,215
,4,3,275
,4,4,208590
,4,5,208590
,4,6,208305
,4,7,208680
,4,8,208870
,4,9,7660
,4,10,233855
,4,11,7385
,4,12,233130
,4,13,233860
,4,14,208615
,4,15,233860
,3,36244,4430
,3,36245,655
,3,36246,29345
,3,36247,29350
,3,36248,320
,3,36263,29300
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229680
,3,36252,218010
,3,36244,230605
,4,1,208635
,4,2,203090
,4,3,233920
,4,4,208720
,4,5,207730
,4,6,230710
,4,7,213690
,4,8,8950
,4,9,209335
,4,10,233925
,4,11,208615
,4,12,233925
,3,36244,4430
,3,36244,4410
,4,3,29360
,4,1,29365
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,29375
,4,11,10495
,4,12,29380
,4,13,29385
,3,36245,655
,3,36246,29395
,3,36247,29370
,3,36248,320
,3,36263,29300
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228670
,3,36252,29355
,3,36244,230605
,4,1,208745
,4,2,208635
,4,3,29375
,4,4,29365
,4,5,208775
,4,6,208870
,4,7,208110
,4,8,208870
,4,9,29320
,4,10,208250
,4,11,208870
,4,12,208870
,4,13,29325
,4,15,208590
,4,16,203380
,4,17,209185
,4,18,29340
,4,19,208925
,4,20,203380
,4,21,209185
,4,22,233440
,4,23,208615
,4,24,233440
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,29415
,3,36247,29405
,3,36248,320
,3,36263,29300
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,228675
,3,36252,29400
,3,36244,230605
,4,1,208635
,4,2,29390
,4,4,208590
,4,5,233445
,4,6,208615
,4,7,233445
,3,36244,4410
,3,36244,4410
,4,3,29430
,4,1,29435
,4,3,29440
,3,36244,4410
,4,3,29450
,4,1,29455
,3,36244,4410
,4,3,29470
,4,1,29475
,4,3,29480
,4,5,29485
,4,7,29490
,3,36244,4410
,4,3,29510
,4,1,29515
,3,36244,4410
,3,36244,12610
,4,4,29550
,3,36244,12840
,4,1,29555
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,29545
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,29570
,3,36254,29560
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,29575
,2,828,29565
,2,35551,430
,3,36244,203075
,3,36259,29570
,3,36261,29565
,3,36244,234750
,3,36244,4410
,3,36264,29595
,3,36245,29600
,3,36244,575
,4,3,29605
,3,36244,225610
,3,36245,29615
,3,36246,29620
,3,36247,29625
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229200
,3,36371,195105
,3,36252,30745
,3,36244,230605
,4,1,208635
,4,2,1235
,4,3,233635
,4,4,10895
,4,5,233640
,4,6,203585
,4,7,233645
,4,8,203580
,4,9,233650
,4,10,208220
,4,12,233655
,4,13,208615
,4,14,233655
,4,15,230750
,4,16,208665
,4,17,233660
,4,18,30755
,4,19,208690
,4,20,23245
,4,21,233665
,4,22,30355
,4,23,233670
,4,24,230835
,4,25,30740
,4,26,233675
,4,27,203665
,4,28,230780
,4,29,30420
,4,30,233680
,4,31,30440
,4,32,233625
,4,33,208720
,4,34,30760
,4,35,208775
,3,36244,4430
,4,5,30735
,4,6,30740
,4,7,30610
,3,36245,29635
,3,36246,29640
,3,36247,29645
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229440
,3,36375,30835
,3,36252,30845
,3,36244,230605
,4,1,208555
,4,2,208635
,4,3,30740
,4,4,233775
,4,5,208870
,4,6,212995
,4,7,208805
,4,8,30855
,4,9,208775
,4,10,1235
,4,11,233635
,4,12,10895
,4,13,233640
,4,14,212650
,4,15,208805
,4,16,30860
,4,17,208775
,4,18,203585
,4,19,233780
,4,20,209035
,4,21,208575
,4,22,208830
,4,23,23245
,4,24,233785
,4,25,213885
,4,26,208805
,4,27,208230
,4,28,30865
,4,29,208775
,4,31,233790
,4,32,208615
,4,33,233790
,4,34,30400
,4,35,233795
,4,36,30375
,4,37,233800
,4,38,208740
,4,39,30870
,4,40,208775
,4,41,203590
,4,42,233805
,4,43,208660
,4,44,16930
,4,45,233810
,4,46,208300
,4,47,212075
,4,48,230705
,4,49,208310
,4,50,208590
,4,51,29640
,4,52,208720
,4,53,12615
,4,54,230705
,4,55,30840
,4,56,208925
,4,57,21400
,4,58,209135
,4,59,29640
,4,60,29640
,4,61,208300
,4,62,213375
,4,63,209265
,4,65,203590
,4,66,233815
,4,67,208300
,4,68,196700
,4,69,209265
,4,71,233790
,4,72,208615
,4,73,233790
,4,74,30375
,4,75,233800
,4,76,208660
,4,77,213655
,4,78,208370
,4,79,30875
,4,80,208775
,4,81,30440
,4,82,209135
,4,83,30880
,4,84,208775
,4,85,30145
,4,86,209265
,3,36244,4430
,4,5,30740
,4,6,10895
,4,7,30885
,4,8,30890
,4,9,16930
,4,10,28855
,4,11,30610
,3,36245,29655
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,29665
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,22780
,6,1,85
,3,36245,655
,3,36246,29680
,3,36247,29685
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,22780
,6,1,85
,3,36251,229450
,3,36371,195080
,3,36252,30895
,3,36244,230605
,4,1,208635
,4,2,233820
,4,3,208615
,4,4,233820
,3,36244,4430
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,29695
,6,1,85
,3,36372,16905
,3,36373,203095
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,29705
,6,1,85
,3,36372,16905
,3,36373,203100
,3,36245,655
,3,36246,29715
,3,36247,29720
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,29725
,6,1,85
,3,36251,229195
,3,36371,195100
,3,36252,30720
,3,36244,230605
,4,1,208635
,4,2,203580
,4,3,233620
,4,4,208360
,4,5,230750
,4,6,208665
,4,7,30440
,4,8,233625
,4,9,208720
,4,10,30730
,4,11,208650
,4,12,1235
,4,13,230705
,4,14,10895
,4,15,209265
,4,16,203585
,4,17,230780
,4,18,30420
,4,19,209305
,4,20,233630
,4,21,208615
,4,22,233630
,3,36244,4430
,4,5,30735
,4,6,30740
,4,7,30610
,3,36372,16905
,3,36373,203105
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,29735
,6,1,85
,3,36372,16905
,3,36373,203110
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,29745
,6,1,85
,3,36372,16905
,3,36373,203115
,3,36245,655
,3,36246,29755
,3,36247,29760
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,29765
,6,1,85
,3,36251,229160
,3,36252,30655
,3,36244,230605
,4,1,208745
,4,2,208945
,4,3,208945
,4,4,208620
,4,5,30640
,4,6,208925
,4,7,208635
,4,8,208460
,4,9,208870
,4,10,208360
,4,11,208540
,4,12,208870
,4,13,30665
,4,14,208690
,4,15,208870
,4,16,1050
,4,17,233530
,4,18,195280
,4,19,230735
,4,20,7440
,4,21,233535
,4,22,12580
,4,23,232915
,4,24,208870
,4,25,203590
,4,26,233540
,4,28,203595
,4,29,233545
,4,30,12615
,4,31,232430
,4,32,16930
,4,33,233550
,4,34,208995
,4,35,12615
,4,36,230705
,4,37,16930
,4,38,230705
,4,39,16930
,4,40,230780
,4,41,203365
,4,42,233555
,4,43,233560
,4,44,208615
,4,45,233560
,3,36244,4430
,4,5,28350
,4,6,30670
,4,7,4665
,4,8,29280
,4,9,30670
,4,10,28350
,4,11,30675
,4,12,29290
,3,36372,16905
,3,36373,203120
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,29775
,6,1,85
,3,36372,16905
,3,36373,203125
,3,36245,655
,3,36246,29785
,3,36247,29790
,3,36248,320
,3,36263,29590
,3,36249,1450
,3,36250,29795
,6,1,29800
,3,36251,229170
,3,36252,30680
,3,36244,230605
,4,1,208635
,4,2,203580
,4,3,233565
,4,4,203520
,4,5,233570
,4,6,203515
,4,7,233575
,4,9,203585
,4,10,233580
,4,12,203590
,4,13,233585
,4,15,203595
,4,16,233590
,4,17,233595
,4,18,208615
,4,19,233595
,3,36244,4430
,4,5,30685
,3,36259,203565
,3,36261,30530
,4,2,203605
,3,36262,203600
,3,36244,234750
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,29810
,6,1,85
,3,36372,29795
,3,36373,203130
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,29820
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,29830
,6,1,85
,3,36372,29795
,3,36373,203135
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,29840
,6,1,85
,3,36372,16905
,3,36373,203140
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,29850
,6,1,85
,3,36372,16905
,3,36373,203145
,3,36245,655
,3,36246,29860
,3,36247,29865
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,29870
,6,1,85
,3,36251,230490
,3,36252,221370
,3,36244,230605
,4,1,208635
,4,2,203580
,4,3,234665
,4,4,208300
,4,5,208515
,4,7,234670
,4,8,208615
,4,9,234670
,4,10,208440
,4,13,221380
,4,14,208775
,4,15,30400
,4,16,209135
,4,17,208310
,4,18,213290
,4,19,221385
,4,20,208775
,4,22,208800
,4,23,208870
,4,24,30355
,4,25,209135
,4,26,212170
,4,27,221390
,4,28,208775
,4,29,221395
,4,30,208690
,4,31,208870
,4,32,30195
,4,33,209265
,4,34,213590
,4,35,230780
,4,36,203665
,4,37,230780
,4,38,1235
,4,39,230705
,4,40,10895
,4,41,209265
,4,42,203585
,4,43,230780
,4,44,30440
,4,45,209135
,4,46,208310
,4,47,212425
,4,48,221400
,4,49,208775
,4,50,30420
,4,51,209305
,4,52,23245
,4,53,209305
,4,54,208370
,4,55,213590
,4,56,230780
,4,57,213565
,4,58,221405
,4,59,208775
,4,61,208370
,4,62,213090
,4,63,221410
,4,64,208775
,4,65,203520
,4,66,230705
,4,67,203585
,4,68,230705
,4,69,203580
,4,70,230705
,4,71,208370
,4,72,208515
,4,73,212595
,4,74,221415
,4,75,208775
,4,76,30420
,4,77,209305
,4,78,213590
,4,79,230705
,4,80,208245
,4,81,212745
,4,82,221420
,4,83,208775
,4,84,23245
,4,85,209305
,4,86,213590
,4,87,230780
,4,89,203520
,4,90,230705
,4,91,234670
,4,92,208615
,4,93,234670
,4,94,208645
,4,95,212265
,4,96,221425
,4,97,208775
,4,98,30420
,4,99,209305
,3,36244,4430
,4,5,30735
,4,6,30740
,4,7,10895
,4,8,213590
,4,9,212350
,4,10,211750
,3,36372,16905
,3,36373,203150
,3,36244,4410
,4,3,29880
,4,1,29885
,4,3,29890
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,16910
,4,11,16905
,4,12,29900
,4,13,29905
,4,14,15695
,4,15,29910
,4,16,22780
,4,17,29915
,4,18,29615
,4,19,29635
,4,20,29920
,4,21,29795
,4,22,29925
,4,23,29655
,4,24,29930
,4,25,29935
,4,26,29665
,3,36245,655
,3,36246,29945
,3,36247,29895
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229130
,3,36252,29875
,3,36244,230605
,4,1,208900
,4,2,208945
,4,3,208945
,4,4,29610
,4,5,208925
,4,6,208705
,4,7,29630
,4,8,208925
,4,9,208705
,4,10,29650
,4,11,208925
,4,12,208705
,4,13,29660
,4,14,208925
,4,15,208705
,4,16,208635
,4,17,12615
,4,18,230710
,4,19,212280
,4,20,24795
,4,21,209335
,4,22,29900
,4,23,230710
,4,24,208870
,4,25,206175
,4,26,29885
,4,27,208775
,4,28,208870
,4,29,15695
,4,30,29890
,4,31,208775
,4,32,19260
,4,33,230710
,4,34,208870
,4,35,208870
,4,36,12615
,4,37,230710
,4,38,196500
,4,39,230710
,4,40,212450
,4,41,230710
,4,42,208300
,4,43,229120
,4,44,229125
,4,45,208590
,4,46,208590
,4,47,12615
,4,48,230705
,4,49,196500
,4,50,230705
,4,51,212450
,4,52,230705
,4,53,12170
,4,54,209135
,4,55,208310
,4,56,29670
,4,57,208925
,4,58,208870
,4,59,29675
,4,60,208925
,4,61,208870
,4,63,208800
,4,64,208870
,4,65,29690
,4,67,208590
,4,68,29920
,4,69,230780
,4,70,208870
,4,71,29700
,4,73,208590
,4,74,203360
,4,75,230780
,4,76,29710
,4,78,208590
,4,79,203365
,4,80,230780
,4,81,29730
,4,83,208590
,4,84,203370
,4,85,230780
,4,86,29740
,4,88,208590
,4,89,203375
,4,90,230780
,4,91,29750
,4,93,208590
,4,94,203380
,4,95,230780
,4,96,29770
,4,98,208590
,4,99,203385
,4,100,230780
,4,101,29780
,4,102,208925
,4,103,208870
,4,104,195280
,4,105,230710
,4,106,29805
,4,108,208590
,4,109,30195
,4,110,230780
,4,111,195280
,4,112,230710
,4,113,29815
,4,115,208590
,4,116,30170
,4,117,230780
,4,118,195280
,4,119,230710
,4,120,29825
,4,122,208590
,4,123,30145
,4,124,230780
,4,126,208800
,4,127,208870
,4,128,30355
,4,129,209335
,4,130,29835
,4,132,208590
,4,133,203390
,4,134,230780
,4,135,29845
,4,137,208590
,4,138,203395
,4,139,230780
,4,140,29855
,4,142,208590
,4,143,203400
,4,144,230780
,4,145,233495
,4,146,208615
,4,147,233495
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,29965
,3,36247,29955
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229135
,3,36252,29950
,3,36244,230605
,4,1,208635
,4,2,29940
,4,4,208590
,4,5,233500
,4,6,208615
,4,7,233500
,3,36244,12610
,4,4,29975
,4,6,29980
,4,10,29985
,4,11,29900
,3,36244,12840
,4,1,29990
,3,36244,12720
,4,2,30010
,3,36244,12720
,4,3,29970
,3,36244,225610
,3,36244,12610
,4,4,30000
,3,36244,12840
,4,1,30005
,3,36244,225610
,1,1,30145
,1,2,29995
,1,4,30170
,1,5,30015
,1,7,30195
,1,8,30030
,1,10,23245
,1,11,30045
,1,13,25885
,1,14,30060
,1,16,30260
,1,17,30075
,1,19,30285
,1,20,30090
,1,22,30310
,1,23,30105
,1,25,85
,1,26,85
,1,27,85
,1,28,85
,1,29,85
,1,30,85
,1,31,85
,2,35551,70
,3,36314,203155
,3,36244,195515
,3,36244,12610
,4,4,30020
,3,36244,12840
,4,1,30025
,3,36244,225610
,3,36244,12610
,4,4,30035
,3,36244,12840
,4,1,30040
,3,36244,225610
,3,36244,12610
,4,4,30050
,3,36244,12840
,4,1,30055
,3,36244,225610
,3,36244,12610
,4,4,30065
,3,36244,12840
,4,1,30070
,3,36244,225610
,3,36244,12610
,4,4,30080
,3,36244,12840
,4,1,30085
,3,36244,225610
,3,36244,12610
,4,4,30095
,3,36244,12840
,4,1,30100
,3,36244,225610
,3,36244,12610
,4,4,30110
,3,36244,12840
,4,1,30115
,3,36244,225610
,3,36245,29900
,3,36246,12650
,3,36248,29900
,3,36249,12655
,3,36376,29970
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,30130
,3,36254,30120
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,30135
,2,1458,30150
,2,1459,30175
,2,1460,30200
,2,1138,30220
,2,1284,30240
,2,1461,30265
,2,1462,30290
,2,1463,30315
,2,828,30125
,2,35551,430
,3,36244,203240
,3,36259,30130
,3,36261,30125
,4,2,203675
,3,36262,203670
,3,36244,234750
,3,36245,30145
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,29995
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,30155
,3,36254,30140
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,30160
,2,828,30150
,2,35551,430
,3,36244,203160
,3,36259,30155
,3,36261,30150
,3,36244,234750
,3,36245,30170
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,30015
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,30180
,3,36254,30165
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,30185
,2,828,30175
,2,35551,430
,3,36244,203170
,3,36259,30180
,3,36261,30175
,3,36244,234750
,3,36245,30195
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,30030
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,30205
,3,36254,30190
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,30210
,2,828,30200
,2,35551,430
,3,36244,203180
,3,36259,30205
,3,36261,30200
,3,36244,234750
,3,36245,23245
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,30045
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,30225
,3,36254,30215
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,30230
,2,828,30220
,2,35551,430
,3,36244,203190
,3,36259,30225
,3,36261,30220
,3,36244,234750
,3,36245,25885
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,30060
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,30245
,3,36254,30235
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,30250
,2,828,30240
,2,35551,430
,3,36244,203200
,3,36259,30245
,3,36261,30240
,3,36244,234750
,3,36245,30260
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,30075
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,30270
,3,36254,30255
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,30275
,2,828,30265
,2,35551,430
,3,36244,203210
,3,36259,30270
,3,36261,30265
,3,36244,234750
,3,36245,30285
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,30090
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,30295
,3,36254,30280
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,30300
,2,828,30290
,2,35551,430
,3,36244,203220
,3,36259,30295
,3,36261,30290
,3,36244,234750
,3,36245,30310
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,30105
,3,36250,340
,6,1,85
,2,35551,425
,2,34299,30320
,3,36254,30305
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,30325
,2,828,30315
,2,35551,430
,3,36244,203230
,3,36259,30320
,3,36261,30315
,3,36244,234750
,3,36264,30335
,3,36245,30340
,3,36244,575
,4,3,30345
,3,36244,225610
,3,36245,30355
,3,36246,30360
,3,36247,30365
,3,36248,320
,3,36263,30330
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229150
,3,36252,30605
,3,36244,230605
,4,1,208635
,4,2,203515
,4,3,233515
,4,4,203520
,4,5,233520
,4,6,233525
,4,7,208615
,4,8,233525
,3,36244,4430
,4,5,30610
,3,36245,30375
,3,36246,30380
,3,36247,30385
,3,36248,320
,3,36263,30330
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229455
,3,36371,195005
,3,36252,194985
,3,36244,230605
,4,1,208635
,4,2,203520
,4,3,233825
,4,4,208890
,4,6,233830
,4,7,208615
,4,8,233830
,4,9,203520
,4,10,233825
,3,36244,4430
,4,5,30610
,3,36245,7400
,3,36246,4220
,3,36248,320
,3,36263,30330
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,30400
,3,36246,30405
,3,36247,30410
,3,36248,320
,3,36263,30330
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229230
,3,36371,195050
,3,36252,30785
,3,36244,230605
,4,1,208635
,4,2,203515
,4,3,233720
,4,4,208520
,4,5,203515
,4,6,233720
,4,7,203520
,4,8,233725
,4,9,203520
,4,10,230780
,4,11,203520
,4,12,233725
,4,13,208520
,4,14,203520
,4,15,233725
,4,16,203515
,4,17,233720
,4,18,203515
,4,19,230780
,4,21,203515
,4,22,233695
,4,24,203520
,4,25,233705
,4,26,233730
,4,27,208615
,4,28,233730
,3,36244,4430
,4,5,30735
,3,36245,30420
,3,36246,30425
,3,36247,30430
,3,36248,320
,3,36263,30330
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229225
,3,36371,195125
,3,36252,30770
,3,36244,230605
,4,1,208635
,4,2,30780
,4,3,208775
,4,4,203515
,4,5,233690
,4,6,203515
,4,7,233695
,4,8,203515
,4,9,233690
,4,10,203520
,4,11,233700
,4,12,203520
,4,13,233705
,4,14,203515
,4,15,233710
,4,16,233715
,4,17,208615
,4,18,233715
,3,36244,4430
,4,5,30610
,4,6,30735
,3,36245,30440
,3,36246,30445
,3,36247,30450
,3,36248,320
,3,36263,30330
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229255
,3,36371,195065
,3,36252,30790
,3,36244,230605
,4,1,208635
,4,2,203515
,4,3,233690
,4,4,208850
,4,7,233735
,4,8,208615
,4,9,233735
,3,36244,4430
,4,5,30610
,3,36244,4410
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,30355
,4,11,30375
,4,12,7400
,4,13,30420
,4,14,30440
,4,15,30400
,3,36245,655
,3,36246,30470
,3,36247,30460
,3,36248,320
,3,36263,30330
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229140
,3,36252,30455
,3,36244,230605
,4,1,208555
,4,2,30350
,4,3,208925
,4,4,30370
,4,5,208925
,4,6,30390
,4,7,208925
,4,8,30395
,4,9,208925
,4,10,208705
,4,11,30415
,4,12,208925
,4,13,30435
,4,14,208925
,4,15,208635
,4,16,30355
,4,17,230780
,4,18,30375
,4,19,230780
,4,20,7400
,4,21,230780
,4,22,30400
,4,23,230780
,4,24,30420
,4,25,230780
,4,26,30440
,4,27,230780
,4,28,233505
,4,29,208615
,4,30,233505
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36245,655
,3,36246,30490
,3,36247,30480
,3,36248,320
,3,36263,30330
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229145
,3,36252,30475
,3,36244,230605
,4,1,208635
,4,2,30465
,4,4,208590
,4,5,233510
,4,6,208615
,4,7,233510
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29690
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,4220
,2,1454,30495
,2,34706,30555
,2,34707,30560
,2,34708,30570
,2,34709,30575
,2,34710,30580
,2,34711,30585
,2,34712,30615
,2,34713,30625
,2,34714,30630
,2,35551,430
,3,36244,203560
,2,1465,203270
,2,1466,203275
,2,562,203280
,2,1467,195145
,2,1468,203285
,2,1469,203290
,2,35551,430
,3,36244,203345
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29675
,3,36255,30550
,6,64,203290
,3,36244,12670
,4,1,203720
,1,1,205965
,1,20000,204750
,2,35551,430
,3,36314,205970
,3,36244,205975
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29610
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,203715
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29630
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,29640
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,2,34299,203565
,3,36254,29780
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,29785
,4,2,29800
,2,34715,30535
,2,34716,30535
,2,35551,430
,3,36315,205980
,3,36244,203530
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29650
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29660
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,203350
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,16510
,4,3,30500
,4,4,30125
,4,5,30505
,4,6,11735
,4,8,30510
,4,9,30515
,4,10,30520
,4,11,30525
,4,12,30495
,4,13,30530
,4,14,30535
,4,15,30540
,4,18,30545
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29700
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29710
,3,36255,30550
,6,64,30510
,3,36244,12670
,4,1,30565
,3,36251,229620
,3,36371,195110
,3,36244,230605
,4,1,208635
,4,2,203655
,4,3,233660
,4,4,203345
,4,5,233870
,4,6,214370
,4,7,10895
,4,8,209265
,4,9,203585
,4,10,230780
,4,11,30420
,4,12,209305
,4,13,233875
,4,14,214370
,4,15,1270
,4,16,1260
,4,17,203655
,4,18,208980
,4,19,208980
,4,20,233660
,4,21,209000
,4,22,23245
,4,23,209305
,4,24,203345
,4,25,233880
,4,26,230835
,4,27,203685
,4,28,233885
,4,29,203240
,4,30,430
,4,31,510
,4,32,203695
,4,33,208585
,4,34,208975
,4,35,203665
,4,36,230780
,4,37,233660
,4,38,203345
,4,39,233890
,4,40,203345
,4,41,233895
,4,44,233900
,4,45,233905
,4,46,230625
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29730
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29740
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29750
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,29755
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29770
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29805
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29815
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29825
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,4220
,3,36244,4410
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36253,30620
,3,36254,29835
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36254,29845
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,30500
,0,1450,30125
,0,1451,30505
,0,820,11735
,0,1121,30510
,0,1453,30515
,0,1432,30520
,0,1433,30525
,0,1454,30495
,0,1443,30530
,0,1455,30535
,0,1434,30540
,0,1456,85
,0,1457,85
,0,1435,30545
,2,35551,425
,3,36253,30635
,3,36254,29855
,3,36255,30550
,6,64,85
,3,36244,12670
,4,1,29860
,4,1,560
,3,36245,29280
,3,36246,30645
,3,36247,30650
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229510
,3,36371,195155
,3,36252,194995
,3,36244,230605
,4,1,208635
,4,2,12595
,4,3,233485
,4,4,203595
,4,5,233845
,4,7,208740
,4,9,233850
,4,10,208615
,4,11,233850
,4,12,212605
,4,13,233810
,4,14,208300
,4,15,212605
,4,16,230705
,4,17,23245
,4,18,209305
,4,19,203580
,4,20,233650
,4,21,203365
,4,22,233555
,3,36244,4430
,3,36244,4410
,4,3,30660
,4,1,30665
,3,36244,4410
,3,36244,7530
,4,1,30695
,4,2,30690
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,3,30725
,4,1,30730
,3,36244,4410
,4,3,30750
,4,1,30755
,4,3,30760
,3,36244,4410
,3,36244,4410
,4,3,30775
,4,1,30780
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,3,30805
,4,1,30810
,4,3,30815
,4,5,30820
,4,7,30825
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,29590
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,30850
,4,1,30855
,4,3,30860
,4,5,30865
,4,7,30870
,4,9,30875
,4,11,30880
,3,36244,4410
,4,1,30905
,4,2,30910
,4,3,30915
,4,4,30920
,4,5,30925
,4,6,30930
,4,7,30935
,4,8,30940
,4,9,30945
,4,10,30950
,4,11,30955
,4,12,30960
,4,13,30965
,4,14,30970
,4,15,30975
,4,16,30980
,4,17,30985
,4,18,30990
,4,19,30995
,4,20,31000
,4,21,31005
,4,22,31010
,4,23,31015
,4,24,31020
,4,25,31025
,4,26,31030
,4,27,31035
,4,28,31040
,4,29,31045
,4,30,31050
,4,31,31055
,4,32,31060
,4,33,31065
,4,34,31070
,4,35,31075
,4,36,31080
,4,37,31085
,4,38,31090
,4,39,31095
,4,40,31100
,4,41,31105
,4,42,31110
,4,43,31115
,4,44,31120
,4,45,31125
,4,46,31130
,4,47,31135
,4,48,31140
,4,49,31145
,4,50,31150
,4,51,31155
,4,52,31160
,4,53,31165
,4,54,31170
,4,55,31175
,4,56,31180
,4,57,31185
,4,58,31190
,4,59,31195
,4,60,31200
,4,61,31205
,4,62,31210
,4,63,31215
,4,64,31220
,4,65,31225
,4,66,31230
,4,67,31235
,4,68,31240
,4,69,31245
,4,70,31250
,4,71,31255
,4,72,31260
,4,73,31265
,4,74,31270
,4,75,31275
,4,76,31280
,4,77,31285
,4,78,31290
,4,79,31295
,4,80,31300
,4,81,31305
,4,82,31310
,4,83,31315
,4,84,31320
,4,85,31325
,4,86,31330
,4,87,31335
,4,88,31340
,4,89,31345
,4,90,31350
,4,91,31355
,4,92,31360
,4,93,31365
,4,94,31370
,4,95,31375
,4,96,31380
,4,97,31385
,4,98,31390
,4,99,31395
,4,100,31400
,4,101,31405
,4,102,31410
,4,103,31415
,4,104,31420
,4,105,31425
,4,106,31430
,4,107,31435
,4,108,31440
,4,109,31445
,4,110,31450
,4,111,31455
,4,112,31460
,4,113,31465
,4,114,31470
,4,115,31475
,4,116,31480
,4,117,31485
,4,118,31490
,4,119,31495
,4,120,31500
,4,121,31505
,4,122,31510
,4,123,31515
,4,124,31520
,4,125,31525
,4,126,31530
,4,127,31535
,4,128,31540
,4,129,31545
,4,130,31550
,4,131,31555
,4,132,31560
,4,133,31565
,4,134,31570
,4,135,31575
,4,136,31580
,4,137,31585
,4,138,31590
,4,139,31595
,4,140,31600
,4,141,31605
,4,142,31610
,4,143,31615
,4,144,31620
,4,145,31625
,4,146,31630
,4,147,31635
,4,148,31640
,4,149,31645
,4,150,31650
,4,151,31655
,4,152,31660
,4,153,31665
,4,154,31670
,4,155,31675
,4,156,31680
,4,157,31685
,4,158,31690
,4,159,31695
,4,160,31700
,4,161,31705
,4,162,31710
,4,163,31715
,4,164,31720
,4,165,31725
,4,166,31730
,4,167,31735
,4,168,31740
,4,169,31745
,4,170,31750
,4,171,31755
,4,172,31760
,4,173,31765
,4,174,31770
,4,175,31775
,4,176,31780
,4,177,31785
,4,178,31790
,4,179,31795
,4,180,31800
,4,181,31805
,4,182,31810
,4,183,31815
,4,184,31820
,4,185,31825
,4,186,31830
,4,187,31835
,4,188,31840
,4,189,31845
,4,190,31850
,4,191,31855
,4,192,31860
,4,193,31865
,4,194,31870
,4,195,31875
,4,196,31880
,4,197,31885
,4,198,31890
,4,199,31895
,4,200,31900
,4,201,31905
,4,202,31910
,4,203,31915
,4,204,31920
,4,205,31925
,4,206,31930
,4,207,31935
,4,208,31940
,4,209,31945
,4,210,31950
,4,211,31955
,4,212,31960
,4,213,31965
,4,214,31970
,4,215,31975
,4,216,31980
,4,217,31985
,4,218,31990
,4,219,31995
,4,220,32000
,4,221,32005
,4,222,32010
,4,223,32015
,4,224,32020
,4,225,32025
,4,226,32030
,4,227,32035
,4,228,32040
,4,229,32045
,4,230,32050
,4,231,32055
,4,232,32060
,4,233,32065
,4,234,32070
,4,235,32075
,4,236,32080
,4,237,32085
,4,238,32090
,4,239,32095
,4,240,32100
,4,241,32105
,4,242,32110
,4,243,32115
,4,244,32120
,4,245,32125
,4,246,32130
,4,247,32135
,4,248,32140
,4,249,32145
,4,250,32150
,4,251,32155
,4,252,32160
,4,253,32165
,4,254,32170
,4,255,32175
,4,256,32180
,4,257,32185
,4,258,32190
,4,259,32195
,4,260,32200
,4,261,32205
,4,262,32210
,4,263,32215
,4,264,32220
,4,265,32225
,4,266,32230
,4,267,32235
,4,268,32240
,4,269,32245
,4,270,32250
,4,271,32255
,4,272,32260
,4,273,32265
,4,274,32270
,4,275,32275
,4,276,32280
,4,277,32285
,4,278,32290
,4,279,32295
,4,280,32300
,4,281,32305
,4,282,32310
,4,283,32315
,4,284,32320
,4,285,32325
,4,286,32330
,4,287,32335
,4,288,32340
,4,289,32345
,4,290,32350
,4,291,32355
,4,292,32360
,4,293,32365
,4,294,32370
,4,295,32375
,4,296,32380
,4,297,32385
,4,298,32390
,4,299,32395
,4,300,32400
,4,301,32405
,4,302,32410
,4,303,32415
,4,304,32420
,4,305,32425
,4,306,32430
,4,307,32435
,4,308,32440
,4,309,32445
,4,310,32450
,4,311,32455
,4,312,32460
,4,313,32465
,4,314,32470
,4,315,32475
,4,316,32480
,4,317,32485
,4,318,32490
,4,319,32495
,4,320,32500
,4,321,32505
,4,322,32510
,4,323,32515
,4,324,32520
,4,325,32525
,4,326,32530
,4,327,32535
,4,328,32540
,4,329,32545
,4,330,32550
,4,331,32555
,4,332,32560
,4,333,32565
,4,334,32570
,4,335,32575
,4,336,32580
,4,337,32585
,4,338,32590
,4,339,32595
,4,340,32600
,4,341,32605
,4,342,32610
,4,343,32615
,4,344,32620
,4,345,32625
,4,346,32630
,4,347,32635
,4,348,32640
,4,349,32645
,4,350,32650
,4,351,32655
,4,352,32660
,4,353,32665
,4,354,32670
,4,355,32675
,4,356,32680
,4,357,32685
,4,358,32690
,4,359,32695
,4,360,32700
,4,361,32705
,4,362,32710
,4,363,32715
,4,364,32720
,4,365,32725
,4,366,32730
,4,367,32735
,4,368,32740
,4,369,32745
,4,370,32750
,4,371,32755
,4,372,32760
,4,373,32765
,4,374,32770
,4,375,32775
,4,376,32780
,4,377,32785
,4,378,32790
,4,379,32795
,4,380,32800
,4,381,32805
,4,382,32810
,4,383,32815
,4,384,32820
,4,385,32825
,4,386,32830
,4,387,32835
,4,388,32840
,4,389,32845
,4,390,32850
,4,391,32855
,4,392,32860
,4,393,32865
,4,394,32870
,4,395,32875
,4,396,32880
,4,397,32885
,4,398,32890
,4,399,32895
,4,400,32900
,4,401,32905
,4,402,32910
,4,403,32915
,4,404,32920
,4,405,32925
,4,406,32930
,4,407,32935
,4,408,32940
,4,409,32945
,4,410,32950
,4,411,32955
,4,412,32960
,4,413,32965
,4,414,32970
,4,415,32975
,4,416,32980
,4,417,32985
,4,418,32990
,4,419,32995
,4,420,33000
,4,421,33005
,4,422,33010
,4,423,33015
,4,424,33020
,4,425,33025
,4,426,33030
,4,427,33035
,4,428,33040
,4,429,33045
,4,430,33050
,4,431,33055
,4,432,33060
,4,433,33065
,4,434,33070
,4,435,33075
,4,436,33080
,4,437,33085
,4,438,33090
,4,439,33095
,4,440,33100
,4,441,33105
,4,442,33110
,4,443,33115
,4,444,33120
,4,445,33125
,4,446,33130
,4,447,33135
,4,448,33140
,4,449,33145
,4,450,33150
,4,451,33155
,4,452,33160
,4,453,33165
,4,454,33170
,4,455,33175
,4,456,33180
,4,457,33185
,4,458,33190
,4,459,33195
,4,460,33200
,4,461,33205
,4,462,33210
,4,463,33215
,4,464,33220
,4,465,33225
,4,466,33230
,4,467,33235
,4,468,33240
,4,469,33245
,4,470,33250
,4,471,33255
,4,472,33260
,4,473,33265
,4,474,33270
,4,475,33275
,4,476,33280
,4,477,33285
,4,478,33290
,4,479,33295
,4,480,33300
,4,481,33305
,4,482,33310
,4,483,33315
,4,484,33320
,4,485,33325
,4,486,33330
,4,487,33335
,4,488,33340
,4,489,33345
,4,490,33350
,4,491,33355
,4,492,33360
,4,493,33365
,4,494,33370
,4,495,33375
,4,496,33380
,4,497,33385
,4,498,33390
,4,499,33395
,4,500,33400
,4,501,33405
,4,502,33410
,4,503,33415
,4,504,33420
,4,505,33425
,4,506,33430
,4,507,33435
,4,508,33440
,4,509,33445
,4,510,33450
,4,511,33455
,4,512,33460
,4,513,33465
,4,514,33470
,4,515,33475
,4,516,33480
,4,517,33485
,4,518,33490
,4,519,33495
,4,520,33500
,4,521,33505
,4,522,33510
,4,523,33515
,4,524,33520
,4,525,33525
,4,526,33530
,4,527,33535
,4,528,33540
,4,529,33545
,4,530,33550
,4,531,33555
,4,532,33560
,4,533,33565
,4,534,33570
,4,535,33575
,4,536,33580
,4,537,33585
,4,538,33590
,4,539,33595
,4,540,33600
,4,541,33605
,4,542,33610
,4,543,33615
,4,544,33620
,4,545,33625
,4,546,33630
,4,547,33635
,4,548,33640
,4,549,33645
,4,550,33650
,4,551,33655
,4,552,33660
,4,553,33665
,4,554,33670
,4,555,33675
,4,556,33680
,4,557,33685
,4,558,33690
,4,559,33695
,4,560,33700
,4,561,33705
,4,562,33710
,4,563,33715
,4,564,33720
,4,565,33725
,4,566,33730
,4,567,33735
,4,568,33740
,4,569,33745
,4,570,33750
,4,571,33755
,4,572,33760
,4,573,33765
,4,574,33770
,4,575,33775
,4,576,33780
,4,577,33785
,4,578,33790
,4,579,33795
,4,580,33800
,4,581,33805
,4,582,33810
,4,583,33815
,4,584,33820
,4,585,33825
,4,586,33830
,4,587,33835
,4,588,33840
,4,589,33845
,4,590,33850
,4,591,33855
,4,592,33860
,4,593,33865
,4,594,33870
,4,595,33875
,4,596,33880
,4,597,33885
,4,598,33890
,4,599,33895
,4,600,33900
,4,601,33905
,4,602,33910
,4,603,33915
,4,604,33920
,4,605,33925
,4,606,33930
,4,607,33935
,4,608,33940
,4,609,33945
,4,610,33950
,4,611,33955
,4,612,33960
,4,613,33965
,4,614,33970
,4,615,33975
,4,616,33980
,4,617,33985
,4,618,33990
,4,619,33995
,4,620,34000
,4,621,34005
,4,622,34010
,4,623,34015
,4,624,34020
,4,625,34025
,4,626,34030
,4,627,34035
,4,628,34040
,4,629,34045
,4,630,34050
,4,631,34055
,4,632,34060
,4,633,34065
,4,634,34070
,4,635,34075
,4,636,34080
,4,637,34085
,4,638,34090
,4,639,34095
,4,640,34100
,4,641,34105
,4,642,34110
,4,643,34115
,4,644,34120
,4,645,34125
,4,646,34130
,4,647,34135
,4,648,34140
,4,649,34145
,4,650,34150
,4,651,34155
,4,652,34160
,4,653,34165
,4,654,34170
,4,655,34175
,4,656,34180
,4,657,34185
,4,658,34190
,4,659,34195
,4,660,34200
,4,661,34205
,4,662,34210
,4,663,34215
,4,664,34220
,4,665,34225
,4,666,34230
,4,667,34235
,4,668,34240
,4,669,34245
,4,670,34250
,4,671,34255
,4,672,34260
,4,673,34265
,4,674,34270
,4,675,34275
,4,676,34280
,4,677,34285
,4,678,34290
,4,679,34295
,4,680,34300
,4,681,34305
,4,682,34310
,4,683,34315
,4,684,34320
,4,685,34325
,4,686,34330
,4,687,34335
,4,688,34340
,4,689,34345
,4,690,34350
,4,691,34355
,4,692,34360
,4,693,34365
,4,694,34370
,4,695,34375
,4,696,34380
,4,697,34385
,4,698,34390
,4,699,34395
,4,700,34400
,4,701,34405
,4,702,34410
,4,703,34415
,4,704,34420
,4,705,34425
,4,706,34430
,4,707,34435
,4,708,34440
,4,709,34445
,4,710,34450
,4,711,34455
,4,712,34460
,4,713,34465
,4,714,34470
,4,715,34475
,4,716,34480
,4,717,34485
,4,718,34490
,4,719,34495
,4,720,34500
,4,721,34505
,4,722,34510
,4,723,34515
,4,724,34520
,4,725,34525
,4,726,34530
,4,727,34535
,4,728,34540
,4,729,34545
,4,730,34550
,4,731,34555
,4,732,34560
,4,733,34565
,4,734,34570
,4,735,34575
,4,736,34580
,4,737,34585
,4,738,34590
,4,739,34595
,4,740,34600
,4,741,34605
,4,742,34610
,4,743,34615
,4,744,34620
,4,745,34625
,4,746,34630
,4,747,34635
,4,748,34640
,4,749,34645
,4,750,34650
,4,751,34655
,4,752,34660
,4,753,34665
,4,754,34670
,4,755,34675
,4,756,34680
,4,757,34685
,4,758,34690
,4,759,34695
,4,760,34700
,4,761,34705
,4,762,34710
,4,763,34715
,4,764,34720
,4,765,34725
,4,766,34730
,4,767,34735
,4,768,34740
,4,769,34745
,4,770,34750
,4,771,34755
,4,772,34760
,4,773,34765
,4,774,34770
,4,775,34775
,4,776,34780
,4,777,34785
,4,778,34790
,4,779,34795
,4,780,34800
,4,781,34805
,4,782,34810
,4,783,34815
,4,784,34820
,4,785,34825
,4,786,34830
,4,787,34835
,4,788,34840
,4,789,34845
,4,790,34850
,4,791,34855
,4,792,34860
,4,793,34865
,4,794,34870
,4,795,34875
,4,796,34880
,4,797,34885
,4,798,34890
,4,799,34895
,4,800,34900
,4,801,34905
,4,802,34910
,4,803,34915
,4,804,34920
,4,805,34925
,4,806,34930
,4,807,34935
,4,808,34940
,4,809,34945
,4,810,34950
,4,811,34955
,4,812,34960
,4,813,34965
,4,814,34970
,4,815,34975
,4,816,34980
,4,817,34985
,4,818,34990
,4,819,34995
,4,820,35000
,4,821,35005
,4,822,35010
,4,823,35015
,4,824,35020
,4,825,35025
,4,826,35030
,4,827,35035
,4,828,35040
,4,829,35045
,4,830,35050
,4,831,35055
,4,832,35060
,4,833,35065
,4,834,35070
,4,835,35075
,4,836,35080
,4,837,35085
,4,838,35090
,4,839,35095
,4,840,35100
,4,841,35105
,4,842,35110
,4,843,35115
,4,844,35120
,4,845,35125
,4,846,35130
,4,847,35135
,4,848,35140
,4,849,35145
,4,850,35150
,4,851,35155
,4,852,35160
,4,853,35165
,4,854,35170
,4,855,35175
,4,856,35180
,4,857,35185
,4,858,35190
,4,859,35195
,4,860,35200
,4,861,35205
,4,862,35210
,4,863,35215
,4,864,35220
,4,865,35225
,4,866,35230
,4,867,35235
,4,868,35240
,4,869,35245
,4,870,35250
,4,871,35255
,4,872,35260
,4,873,35265
,4,874,35270
,4,875,35275
,4,876,35280
,4,877,35285
,4,878,35290
,4,879,35295
,4,880,35300
,4,881,35305
,4,882,35310
,4,883,35315
,4,884,35320
,4,885,35325
,4,886,35330
,4,887,35335
,4,888,35340
,4,889,35345
,4,890,35350
,4,891,35355
,4,892,35360
,4,893,35365
,4,894,35370
,4,895,35375
,4,896,35380
,4,897,35385
,4,898,35390
,4,899,35395
,4,900,35400
,4,901,35405
,4,902,35410
,4,903,35415
,4,904,35420
,4,905,35425
,4,906,35430
,4,907,35435
,4,908,35440
,4,909,35445
,4,910,35450
,4,911,35455
,4,912,35460
,4,913,35465
,4,914,35470
,4,915,35475
,4,916,35480
,4,917,35485
,4,918,35490
,4,919,35495
,4,920,35500
,4,921,35505
,4,922,35510
,4,923,35515
,4,924,35520
,4,925,35525
,4,926,35530
,4,927,35535
,4,928,35540
,4,929,35545
,4,930,35550
,4,931,35555
,4,932,35560
,4,933,35565
,4,934,35570
,4,935,35575
,4,936,35580
,4,937,35585
,4,938,35590
,4,939,35595
,4,940,35600
,4,941,35605
,4,942,35610
,4,943,35615
,4,944,35620
,4,945,35625
,4,946,35630
,4,947,35635
,4,948,35640
,4,949,35645
,4,950,35650
,4,951,35655
,4,952,35660
,4,953,35665
,4,954,35670
,4,955,35675
,4,956,35680
,4,957,35685
,4,958,35690
,4,959,35695
,4,960,35700
,4,961,35705
,4,962,35710
,4,963,35715
,4,964,35720
,4,965,35725
,4,966,35730
,4,967,35735
,4,968,35740
,4,969,35745
,4,970,35750
,4,971,35755
,4,972,35760
,4,973,35765
,4,974,35770
,4,975,35775
,4,976,35780
,4,977,35785
,4,978,35790
,4,979,35795
,4,980,35800
,4,981,35805
,4,982,35810
,4,983,35815
,4,984,35820
,4,985,35825
,4,986,35830
,4,987,35835
,4,988,35840
,4,989,35845
,4,990,35850
,4,991,35855
,4,992,35860
,4,993,35865
,4,994,35870
,4,995,35875
,4,996,35880
,4,997,35885
,4,998,35890
,4,999,35895
,4,1000,35900
,4,1001,35905
,4,1002,35910
,4,1003,35915
,4,1004,35920
,4,1005,35925
,4,1006,35930
,4,1007,35935
,4,1008,35940
,4,1009,35945
,4,1010,35950
,4,1011,35955
,4,1012,35960
,4,1013,35965
,4,1014,35970
,4,1015,35975
,4,1016,35980
,4,1017,35985
,4,1018,35990
,4,1019,35995
,4,1020,36000
,4,1021,36005
,4,1022,36010
,4,1023,36015
,4,1024,36020
,4,1025,36025
,4,1026,36030
,4,1027,36035
,4,1028,36040
,4,1029,36045
,4,1030,36050
,4,1031,36055
,4,1032,36060
,4,1033,36065
,4,1034,36070
,4,1035,36075
,4,1036,36080
,4,1037,36085
,4,1038,36090
,4,1039,36095
,4,1040,36100
,4,1041,36105
,4,1042,36110
,4,1043,36115
,4,1044,36120
,4,1045,36125
,4,1046,36130
,4,1047,36135
,4,1048,36140
,4,1049,36145
,4,1050,36150
,4,1051,36155
,4,1052,36160
,4,1053,36165
,4,1054,36170
,4,1055,36175
,4,1056,36180
,4,1057,36185
,4,1058,36190
,4,1059,36195
,4,1060,36200
,4,1061,36205
,4,1062,36210
,4,1063,36215
,4,1064,36220
,4,1065,36225
,4,1066,36230
,4,1067,36235
,4,1068,36240
,4,1069,36245
,4,1070,36250
,4,1071,36255
,4,1072,36260
,4,1073,36265
,4,1074,36270
,4,1075,36275
,4,1076,36280
,4,1077,36285
,4,1078,36290
,4,1079,36295
,4,1080,36300
,4,1081,36305
,4,1082,36310
,4,1083,36315
,4,1084,36320
,4,1085,36325
,4,1086,36330
,4,1087,36335
,4,1088,36340
,4,1089,36345
,4,1090,36350
,4,1091,36355
,4,1092,36360
,4,1093,36365
,4,1094,36370
,4,1095,36375
,4,1096,36380
,4,1097,36385
,4,1098,36390
,4,1099,36395
,4,1100,36400
,4,1101,36405
,4,1102,36410
,4,1103,36415
,4,1104,36420
,4,1105,36425
,4,1106,36430
,4,1107,36435
,4,1108,36440
,4,1109,36445
,4,1110,36450
,4,1111,36455
,4,1112,36460
,4,1113,36465
,4,1114,36470
,4,1115,36475
,4,1116,36480
,4,1117,36485
,4,1118,36490
,4,1119,36495
,4,1120,36500
,4,1121,36505
,4,1122,36510
,4,1123,36515
,4,1124,36520
,4,1125,36525
,4,1126,36530
,4,1127,36535
,4,1128,36540
,4,1129,36545
,4,1130,36550
,4,1131,36555
,4,1132,36560
,4,1133,36565
,4,1134,36570
,4,1135,36575
,4,1136,36580
,4,1137,36585
,4,1138,36590
,4,1139,36595
,4,1140,36600
,4,1141,36605
,4,1142,36610
,4,1143,36615
,4,1144,36620
,4,1145,36625
,4,1146,36630
,4,1147,36635
,4,1148,36640
,4,1149,36645
,4,1150,36650
,4,1151,36655
,4,1152,36660
,4,1153,36665
,4,1154,36670
,4,1155,36675
,4,1156,36680
,4,1157,36685
,4,1158,36690
,4,1159,36695
,4,1160,36700
,4,1161,36705
,4,1162,36710
,4,1163,36715
,4,1164,36720
,4,1165,36725
,4,1166,36730
,4,1167,36735
,4,1168,36740
,4,1169,36745
,4,1170,36750
,4,1171,36755
,4,1172,36760
,4,1173,36765
,4,1174,36770
,4,1175,36775
,4,1176,36780
,4,1177,36785
,4,1178,36790
,4,1179,36795
,4,1180,36800
,4,1181,36805
,4,1182,36810
,4,1183,36815
,4,1184,36820
,4,1185,36825
,4,1186,36830
,4,1187,36835
,4,1188,36840
,4,1189,36845
,4,1190,36850
,4,1191,36855
,4,1192,36860
,4,1193,36865
,4,1194,36870
,4,1195,36875
,4,1196,36880
,4,1197,36885
,4,1198,36890
,4,1199,36895
,4,1200,36900
,4,1201,36905
,4,1202,36910
,4,1203,36915
,4,1204,36920
,4,1205,36925
,4,1206,36930
,4,1207,36935
,4,1208,36940
,4,1209,36945
,4,1210,36950
,4,1211,36955
,4,1212,36960
,4,1213,36965
,4,1214,36970
,4,1215,36975
,4,1216,36980
,4,1217,36985
,4,1218,36990
,4,1219,36995
,4,1220,37000
,4,1221,37005
,4,1222,37010
,4,1223,37015
,4,1224,37020
,4,1225,37025
,4,1226,37030
,4,1227,37035
,4,1228,37040
,4,1229,37045
,4,1230,37050
,4,1231,37055
,4,1232,37060
,4,1233,37065
,4,1234,37070
,4,1235,37075
,4,1236,37080
,4,1237,37085
,4,1238,37090
,4,1239,37095
,4,1240,37100
,4,1241,37105
,4,1242,37110
,4,1243,37115
,4,1244,37120
,4,1245,37125
,4,1246,37130
,4,1247,37135
,4,1248,37140
,4,1249,37145
,4,1250,37150
,4,1251,37155
,4,1252,37160
,4,1253,37165
,4,1254,37170
,4,1255,37175
,4,1256,37180
,4,1257,37185
,4,1258,37190
,4,1259,37195
,4,1260,37200
,4,1261,37205
,4,1262,37210
,4,1263,37215
,4,1264,37220
,4,1265,37225
,4,1266,37230
,4,1267,37235
,4,1268,37240
,4,1269,37245
,4,1270,37250
,4,1271,37255
,4,1272,37260
,4,1273,37265
,4,1274,37270
,4,1275,37275
,4,1276,37280
,4,1277,37285
,4,1278,37290
,4,1279,37295
,4,1280,37300
,4,1281,37305
,4,1282,37310
,4,1283,37315
,4,1284,37320
,4,1285,37325
,4,1286,37330
,4,1287,37335
,4,1288,37340
,4,1289,37345
,4,1290,37350
,4,1291,37355
,4,1292,37360
,4,1293,37365
,4,1294,37370
,4,1295,37375
,4,1296,37380
,4,1297,37385
,4,1298,37390
,4,1299,37395
,4,1300,37400
,4,1301,37405
,4,1302,37410
,4,1303,37415
,4,1304,37420
,4,1305,37425
,4,1306,37430
,4,1307,37435
,4,1308,37440
,4,1309,37445
,4,1310,37450
,4,1311,37455
,4,1312,37460
,4,1313,37465
,4,1314,37470
,4,1315,37475
,4,1316,37480
,4,1317,37485
,4,1318,37490
,4,1319,37495
,4,1320,37500
,4,1321,37505
,4,1322,37510
,4,1323,37515
,4,1324,37520
,4,1325,37525
,4,1326,37530
,4,1327,37535
,4,1328,37540
,4,1329,37545
,4,1330,37550
,4,1331,37555
,4,1332,37560
,4,1333,37565
,4,1334,37570
,4,1335,37575
,4,1336,37580
,4,1337,37585
,4,1338,37590
,4,1339,37595
,4,1340,37600
,4,1341,37605
,4,1342,37610
,4,1343,37615
,4,1344,37620
,4,1345,37625
,4,1346,37630
,4,1347,37635
,4,1348,37640
,4,1349,37645
,4,1350,37650
,4,1351,37655
,4,1352,37660
,4,1353,37665
,4,1354,37670
,4,1355,37675
,4,1356,37680
,4,1357,37685
,4,1358,37690
,4,1359,37695
,4,1360,37700
,4,1361,37705
,4,1362,37710
,4,1363,37715
,4,1364,37720
,4,1365,37725
,4,1366,37730
,4,1367,37735
,4,1368,37740
,4,1369,37745
,4,1370,37750
,4,1371,37755
,4,1372,37760
,4,1373,37765
,4,1374,37770
,4,1375,37775
,4,1376,37780
,4,1377,37785
,4,1378,37790
,4,1379,37795
,4,1380,37800
,4,1381,37805
,4,1382,37810
,4,1383,37815
,4,1384,37820
,4,1385,37825
,4,1386,37830
,4,1387,37835
,4,1388,37840
,4,1389,37845
,4,1390,37850
,4,1391,37855
,4,1392,37860
,4,1393,37865
,4,1394,37870
,4,1395,37875
,4,1396,37880
,4,1397,37885
,4,1398,37890
,4,1399,37895
,4,1400,37900
,4,1401,37905
,4,1402,37910
,4,1403,37915
,4,1404,37920
,4,1405,37925
,4,1406,37930
,4,1407,37935
,4,1408,37940
,4,1409,37945
,4,1410,37950
,4,1411,37955
,4,1412,37960
,4,1413,37965
,4,1414,37970
,4,1415,37975
,4,1416,37980
,4,1417,37985
,4,1418,37990
,4,1419,37995
,4,1420,38000
,4,1421,38005
,4,1422,38010
,4,1423,38015
,4,1424,38020
,4,1425,38025
,4,1426,38030
,4,1427,38035
,4,1428,38040
,4,1429,38045
,4,1430,38050
,4,1431,38055
,4,1432,38060
,4,1433,38065
,4,1434,38070
,4,1435,38075
,4,1436,38080
,4,1437,38085
,4,1438,38090
,4,1439,38095
,4,1440,38100
,4,1441,38105
,4,1442,38110
,4,1443,38115
,4,1444,38120
,4,1445,38125
,4,1446,38130
,4,1447,38135
,4,1448,38140
,4,1449,38145
,4,1450,38150
,4,1451,38155
,4,1452,38160
,4,1453,38165
,4,1454,38170
,4,1455,38175
,4,1456,38180
,4,1457,38185
,4,1458,38190
,4,1459,38195
,4,1460,38200
,4,1461,38205
,4,1462,38210
,4,1463,38215
,4,1464,38220
,4,1465,38225
,4,1466,38230
,4,1467,38235
,4,1468,38240
,4,1469,38245
,4,1470,38250
,4,1471,38255
,4,1472,38260
,4,1473,38265
,4,1474,38270
,4,1475,38275
,4,1476,38280
,4,1477,38285
,4,1478,38290
,4,1479,38295
,4,1480,38300
,4,1481,38305
,4,1482,38310
,4,1483,38315
,4,1484,38320
,4,1485,38325
,4,1486,38330
,4,1487,38335
,4,1488,38340
,4,1489,38345
,4,1490,38350
,4,1491,38355
,4,1492,38360
,4,1493,38365
,4,1494,38370
,4,1495,38375
,4,1496,38380
,4,1497,38385
,4,1498,38390
,4,1499,38395
,4,1500,38400
,4,1501,38405
,4,1502,38410
,4,1503,38415
,4,1504,38420
,4,1505,38425
,4,1506,38430
,4,1507,38435
,4,1508,38440
,4,1509,38445
,4,1510,38450
,4,1511,38455
,4,1512,38460
,4,1513,38465
,4,1514,38470
,4,1515,38475
,4,1516,38480
,4,1517,38485
,4,1518,38490
,4,1519,38495
,4,1520,38500
,4,1521,38505
,4,1522,38510
,4,1523,38515
,4,1524,38520
,4,1525,38525
,4,1526,38530
,4,1527,38535
,4,1528,38540
,4,1529,38545
,4,1530,38550
,4,1531,38555
,4,1532,38560
,4,1533,38565
,4,1534,38570
,4,1535,38575
,4,1536,38580
,4,1537,38585
,4,1538,38590
,4,1539,38595
,4,1540,38600
,4,1541,38605
,4,1542,38610
,4,1543,38615
,4,1544,38620
,4,1545,38625
,4,1546,38630
,4,1547,38635
,4,1548,38640
,4,1549,38645
,4,1550,38650
,4,1551,38655
,4,1552,38660
,4,1553,38665
,4,1554,38670
,4,1555,38675
,4,1556,38680
,4,1557,38685
,4,1558,38690
,4,1559,38695
,4,1560,38700
,4,1561,38705
,4,1562,38710
,4,1563,38715
,4,1564,38720
,4,1565,38725
,4,1566,38730
,4,1567,38735
,4,1568,38740
,4,1569,38745
,4,1570,38750
,4,1571,38755
,4,1572,38760
,4,1573,38765
,4,1574,38770
,4,1575,38775
,4,1576,38780
,4,1577,38785
,4,1578,38790
,4,1579,38795
,4,1580,38800
,4,1581,38805
,4,1582,38810
,4,1583,38815
,4,1584,38820
,4,1585,38825
,4,1586,38830
,4,1587,38835
,4,1588,38840
,4,1589,38845
,4,1590,38850
,4,1591,38855
,4,1592,38860
,4,1593,38865
,4,1594,38870
,4,1595,38875
,4,1596,38880
,4,1597,38885
,4,1598,38890
,4,1599,38895
,4,1600,38900
,4,1601,38905
,4,1602,38910
,4,1603,38915
,4,1604,38920
,4,1605,38925
,4,1606,38930
,4,1607,38935
,4,1608,38940
,4,1609,38945
,4,1610,38950
,4,1611,38955
,4,1612,38960
,4,1613,38965
,4,1614,38970
,4,1615,38975
,4,1616,38980
,4,1617,38985
,4,1618,38990
,4,1619,38995
,4,1620,39000
,4,1621,39005
,4,1622,39010
,4,1623,39015
,4,1624,39020
,4,1625,39025
,4,1626,39030
,4,1627,39035
,4,1628,39040
,4,1629,39045
,4,1630,39050
,4,1631,39055
,4,1632,39060
,4,1633,39065
,4,1634,39070
,4,1635,39075
,4,1636,39080
,4,1637,39085
,4,1638,39090
,4,1639,39095
,4,1640,39100
,4,1641,39105
,4,1642,39110
,4,1643,39115
,4,1644,39120
,4,1645,39125
,4,1646,39130
,4,1647,39135
,4,1648,39140
,4,1649,39145
,4,1650,39150
,4,1651,39155
,4,1652,39160
,4,1653,39165
,4,1654,39170
,4,1655,39175
,4,1656,39180
,4,1657,39185
,4,1658,39190
,4,1659,39195
,4,1660,39200
,4,1661,39205
,4,1662,39210
,4,1663,39215
,4,1664,39220
,4,1665,39225
,4,1666,39230
,4,1667,39235
,4,1668,39240
,4,1669,39245
,4,1670,39250
,4,1671,39255
,4,1672,39260
,4,1673,39265
,4,1674,39270
,4,1675,39275
,4,1676,39280
,4,1677,39285
,4,1678,39290
,4,1679,39295
,4,1680,39300
,4,1681,39305
,4,1682,39310
,4,1683,39315
,4,1684,39320
,4,1685,39325
,4,1686,39330
,4,1687,39335
,4,1688,39340
,4,1689,39345
,4,1690,39350
,4,1691,39355
,4,1692,39360
,4,1693,39365
,4,1694,39370
,4,1695,39375
,4,1696,39380
,4,1697,39385
,4,1698,39390
,4,1699,39395
,4,1700,39400
,4,1701,39405
,4,1702,39410
,4,1703,39415
,4,1704,39420
,4,1705,39425
,4,1706,39430
,4,1707,39435
,4,1708,39440
,4,1709,39445
,4,1710,39450
,4,1711,39455
,4,1712,39460
,4,1713,39465
,4,1714,39470
,4,1715,39475
,4,1716,39480
,4,1717,39485
,4,1718,39490
,4,1719,39495
,4,1720,39500
,4,1721,39505
,4,1722,39510
,4,1723,39515
,4,1724,39520
,4,1725,39525
,4,1726,39530
,4,1727,39535
,4,1728,39540
,4,1729,39545
,4,1730,39550
,4,1731,39555
,4,1732,39560
,4,1733,39565
,4,1734,39570
,4,1735,39575
,4,1736,39580
,4,1737,39585
,4,1738,39590
,4,1739,39595
,4,1740,39600
,4,1741,39605
,4,1742,39610
,4,1743,39615
,4,1744,39620
,4,1745,39625
,4,1746,39630
,4,1747,39635
,4,1748,39640
,4,1749,39645
,4,1750,39650
,4,1751,39655
,4,1752,39660
,4,1753,39665
,4,1754,39670
,4,1755,39675
,4,1756,39680
,4,1757,39685
,4,1758,39690
,4,1759,39695
,4,1760,39700
,4,1761,39705
,4,1762,39710
,4,1763,39715
,4,1764,39720
,4,1765,39725
,4,1766,39730
,4,1767,39735
,4,1768,39740
,4,1769,39745
,4,1770,39750
,4,1771,39755
,4,1772,39760
,4,1773,39765
,4,1774,39770
,4,1775,39775
,4,1776,39780
,4,1777,39785
,4,1778,39790
,4,1779,39795
,4,1780,39800
,4,1781,39805
,4,1782,39810
,4,1783,39815
,4,1784,39820
,4,1785,39825
,4,1786,39830
,4,1787,39835
,4,1788,39840
,4,1789,39845
,4,1790,39850
,4,1791,39855
,4,1792,39860
,4,1793,39865
,4,1794,39870
,4,1795,39875
,4,1796,39880
,4,1797,39885
,4,1798,39890
,4,1799,39895
,4,1800,39900
,4,1801,39905
,4,1802,39910
,4,1803,39915
,4,1804,39920
,4,1805,39925
,4,1806,39930
,4,1807,39935
,4,1808,39940
,4,1809,39945
,4,1810,39950
,4,1811,39955
,4,1812,39960
,4,1813,39965
,4,1814,39970
,4,1815,39975
,4,1816,39980
,4,1817,39985
,4,1818,39990
,4,1819,39995
,4,1820,40000
,4,1821,40005
,4,1822,40010
,4,1823,40015
,4,1824,40020
,4,1825,40025
,4,1826,40030
,4,1827,40035
,4,1828,40040
,4,1829,40045
,4,1830,40050
,4,1831,40055
,4,1832,40060
,4,1833,40065
,4,1834,40070
,4,1835,40075
,4,1836,40080
,4,1837,40085
,4,1838,40090
,4,1839,40095
,4,1840,40100
,4,1841,40105
,4,1842,40110
,4,1843,40115
,4,1844,40120
,4,1845,40125
,4,1846,40130
,4,1847,40135
,4,1848,40140
,4,1849,40145
,4,1850,40150
,4,1851,40155
,4,1852,40160
,4,1853,40165
,4,1854,40170
,4,1855,40175
,4,1856,40180
,4,1857,40185
,4,1858,40190
,4,1859,40195
,4,1860,40200
,4,1861,40205
,4,1862,40210
,4,1863,40215
,4,1864,40220
,4,1865,40225
,4,1866,40230
,4,1867,40235
,4,1868,40240
,4,1869,40245
,4,1870,40250
,4,1871,40255
,4,1872,40260
,4,1873,40265
,4,1874,40270
,4,1875,40275
,4,1876,40280
,4,1877,40285
,4,1878,40290
,4,1879,40295
,4,1880,40300
,4,1881,40305
,4,1882,40310
,4,1883,40315
,4,1884,40320
,4,1885,40325
,4,1886,40330
,4,1887,40335
,4,1888,40340
,4,1889,40345
,4,1890,40350
,4,1891,40355
,4,1892,40360
,4,1893,40365
,4,1894,40370
,4,1895,40375
,4,1896,40380
,4,1897,40385
,4,1898,40390
,4,1899,40395
,4,1900,40400
,4,1901,40405
,4,1902,40410
,4,1903,40415
,4,1904,40420
,4,1905,40425
,4,1906,40430
,4,1907,40435
,4,1908,40440
,4,1909,40445
,4,1910,40450
,4,1911,40455
,4,1912,40460
,4,1913,40465
,4,1914,40470
,4,1915,40475
,4,1916,40480
,4,1917,40485
,4,1918,40490
,4,1919,40495
,4,1920,40500
,4,1921,40505
,4,1922,40510
,4,1923,40515
,4,1924,40520
,4,1925,40525
,4,1926,40530
,4,1927,40535
,4,1928,40540
,4,1929,40545
,4,1930,40550
,4,1931,40555
,4,1932,40560
,4,1933,40565
,4,1934,40570
,4,1935,40575
,4,1936,40580
,4,1937,40585
,4,1938,40590
,4,1939,40595
,4,1940,40600
,4,1941,40605
,4,1942,40610
,4,1943,40615
,4,1944,40620
,4,1945,40625
,4,1946,40630
,4,1947,40635
,4,1948,40640
,4,1949,40645
,4,1950,40650
,4,1951,40655
,4,1952,40660
,4,1953,40665
,4,1954,40670
,4,1955,40675
,4,1956,40680
,4,1957,40685
,4,1958,40690
,4,1959,40695
,4,1960,40700
,4,1961,40705
,4,1962,40710
,4,1963,40715
,4,1964,40720
,4,1965,40725
,4,1966,40730
,4,1967,40735
,4,1968,40740
,4,1969,40745
,4,1970,40750
,4,1971,40755
,4,1972,40760
,4,1973,40765
,4,1974,40770
,4,1975,40775
,4,1976,40780
,4,1977,40785
,4,1978,40790
,4,1979,40795
,4,1980,40800
,4,1981,40805
,4,1982,40810
,4,1983,40815
,4,1984,40820
,4,1985,40825
,4,1986,40830
,4,1987,40835
,4,1988,40840
,4,1989,40845
,4,1990,40850
,4,1991,40855
,4,1992,40860
,4,1993,40865
,4,1994,40870
,4,1995,40875
,4,1996,40880
,4,1997,40885
,4,1998,40890
,4,1999,40895
,4,2000,40900
,4,2001,40905
,4,2002,40910
,4,2003,40915
,4,2004,40920
,4,2005,40925
,4,2006,40930
,4,2007,40935
,4,2008,40940
,4,2009,40945
,4,2010,40950
,4,2011,40955
,4,2012,40960
,4,2013,40965
,4,2014,40970
,4,2015,40975
,4,2016,40980
,4,2017,40985
,4,2018,40990
,4,2019,40995
,4,2020,41000
,4,2021,41005
,4,2022,41010
,4,2023,41015
,4,2024,41020
,4,2025,41025
,4,2026,41030
,4,2027,41035
,4,2028,41040
,4,2029,41045
,4,2030,41050
,4,2031,41055
,4,2032,41060
,4,2033,41065
,4,2034,41070
,4,2035,41075
,4,2036,41080
,4,2037,41085
,4,2038,41090
,4,2039,41095
,4,2040,41100
,4,2041,41105
,4,2042,41110
,4,2043,41115
,4,2044,41120
,4,2045,41125
,4,2046,41130
,4,2047,41135
,4,2048,41140
,4,2049,41145
,4,2050,41150
,4,2051,41155
,4,2052,41160
,4,2053,41165
,4,2054,41170
,4,2055,41175
,4,2056,41180
,4,2057,41185
,4,2058,41190
,4,2059,41195
,4,2060,41200
,4,2061,41205
,4,2062,41210
,4,2063,41215
,4,2064,41220
,4,2065,41225
,4,2066,41230
,4,2067,41235
,4,2068,41240
,4,2069,41245
,4,2070,41250
,4,2071,41255
,4,2072,41260
,4,2073,41265
,4,2074,41270
,4,2075,41275
,4,2076,41280
,4,2077,41285
,4,2078,41290
,4,2079,41295
,4,2080,41300
,4,2081,41305
,4,2082,41310
,4,2083,41315
,4,2084,41320
,4,2085,41325
,4,2086,41330
,4,2087,41335
,4,2088,41340
,4,2089,41345
,4,2090,41350
,4,2091,41355
,4,2092,41360
,4,2093,41365
,4,2094,41370
,4,2095,41375
,4,2096,41380
,4,2097,41385
,4,2098,41390
,4,2099,41395
,4,2100,41400
,4,2101,41405
,4,2102,41410
,4,2103,41415
,4,2104,41420
,4,2105,41425
,4,2106,41430
,4,2107,41435
,4,2108,41440
,4,2109,41445
,4,2110,41450
,4,2111,41455
,4,2112,41460
,4,2113,41465
,4,2114,41470
,4,2115,41475
,4,2116,41480
,4,2117,41485
,4,2118,41490
,4,2119,41495
,4,2120,41500
,4,2121,41505
,4,2122,41510
,4,2123,41515
,4,2124,41520
,4,2125,41525
,4,2126,41530
,4,2127,41535
,4,2128,41540
,4,2129,41545
,4,2130,41550
,4,2131,41555
,4,2132,41560
,4,2133,41565
,4,2134,41570
,4,2135,41575
,4,2136,41580
,4,2137,41585
,4,2138,41590
,4,2139,41595
,4,2140,41600
,4,2141,41605
,4,2142,41610
,4,2143,41615
,4,2144,41620
,4,2145,41625
,4,2146,41630
,4,2147,41635
,4,2148,41640
,4,2149,41645
,4,2150,41650
,4,2151,41655
,4,2152,41660
,4,2153,41665
,4,2154,41670
,4,2155,41675
,4,2156,41680
,4,2157,41685
,4,2158,41690
,4,2159,41695
,4,2160,41700
,4,2161,41705
,4,2162,41710
,4,2163,41715
,4,2164,41720
,4,2165,41725
,4,2166,41730
,4,2167,41735
,4,2168,41740
,4,2169,41745
,4,2170,41750
,4,2171,41755
,4,2172,41760
,4,2173,41765
,4,2174,41770
,4,2175,41775
,4,2176,41780
,4,2177,41785
,4,2178,41790
,4,2179,41795
,4,2180,41800
,4,2181,41805
,4,2182,41810
,4,2183,41815
,4,2184,41820
,4,2185,41825
,4,2186,41830
,4,2187,41835
,4,2188,41840
,4,2189,41845
,4,2190,41850
,4,2191,41855
,4,2192,41860
,4,2193,41865
,4,2194,41870
,4,2195,41875
,4,2196,41880
,4,2197,41885
,4,2198,41890
,4,2199,41895
,4,2200,41900
,4,2201,41905
,4,2202,41910
,4,2203,41915
,4,2204,41920
,4,2205,41925
,4,2206,41930
,4,2207,41935
,4,2208,41940
,4,2209,41945
,4,2210,41950
,4,2211,41955
,4,2212,41960
,4,2213,41965
,4,2214,41970
,4,2215,41975
,4,2216,41980
,4,2217,41985
,4,2218,41990
,4,2219,41995
,4,2220,42000
,4,2221,42005
,4,2222,42010
,4,2223,42015
,4,2224,42020
,4,2225,42025
,4,2226,42030
,4,2227,42035
,4,2228,42040
,4,2229,42045
,4,2230,42050
,4,2231,42055
,4,2232,42060
,4,2233,42065
,4,2234,42070
,4,2235,42075
,4,2236,42080
,4,2237,42085
,4,2238,42090
,4,2239,42095
,4,2240,42100
,4,2241,42105
,4,2242,42110
,4,2243,42115
,4,2244,42120
,4,2245,42125
,4,2246,42130
,4,2247,42135
,4,2248,42140
,4,2249,42145
,4,2250,42150
,4,2251,42155
,4,2252,42160
,4,2253,42165
,4,2254,42170
,4,2255,42175
,4,2256,42180
,4,2257,42185
,4,2258,42190
,4,2259,42195
,4,2260,42200
,4,2261,42205
,4,2262,42210
,4,2263,42215
,4,2264,42220
,4,2265,42225
,4,2266,42230
,4,2267,42235
,4,2268,42240
,4,2269,42245
,4,2270,42250
,4,2271,42255
,4,2272,42260
,4,2273,42265
,4,2274,42270
,4,2275,42275
,4,2276,42280
,4,2277,42285
,4,2278,42290
,4,2279,42295
,4,2280,42300
,4,2281,42305
,4,2282,42310
,4,2283,42315
,4,2284,42320
,4,2285,42325
,4,2286,42330
,4,2287,42335
,4,2288,42340
,4,2289,42345
,4,2290,42350
,4,2291,42355
,4,2292,42360
,4,2293,42365
,4,2294,42370
,4,2295,42375
,4,2296,42380
,4,2297,42385
,4,2298,42390
,4,2299,42395
,4,2300,42400
,4,2301,42405
,4,2302,42410
,4,2303,42415
,4,2304,42420
,4,2305,42425
,4,2306,42430
,4,2307,42435
,4,2308,42440
,4,2309,42445
,4,2310,42450
,4,2311,42455
,4,2312,42460
,4,2313,42465
,4,2314,42470
,4,2315,42475
,4,2316,42480
,4,2317,42485
,4,2318,42490
,4,2319,42495
,4,2320,42500
,4,2321,42505
,4,2322,42510
,4,2323,42515
,4,2324,42520
,4,2325,42525
,4,2326,42530
,4,2327,42535
,4,2328,42540
,4,2329,42545
,4,2330,42550
,4,2331,42555
,4,2332,42560
,4,2333,42565
,4,2334,42570
,4,2335,42575
,4,2336,42580
,4,2337,42585
,4,2338,42590
,4,2339,42595
,4,2340,42600
,4,2341,42605
,4,2342,42610
,4,2343,42615
,4,2344,42620
,4,2345,42625
,4,2346,42630
,4,2347,42635
,4,2348,42640
,4,2349,42645
,4,2350,42650
,4,2351,42655
,4,2352,42660
,4,2353,42665
,4,2354,42670
,4,2355,42675
,4,2356,42680
,4,2357,42685
,4,2358,42690
,4,2359,42695
,4,2360,42700
,4,2361,42705
,4,2362,42710
,4,2363,42715
,4,2364,42720
,4,2365,42725
,4,2366,42730
,4,2367,42735
,4,2368,42740
,4,2369,42745
,4,2370,42750
,4,2371,42755
,4,2372,42760
,4,2373,42765
,4,2374,42770
,4,2375,42775
,4,2376,42780
,4,2377,42785
,4,2378,42790
,4,2379,42795
,4,2380,42800
,4,2381,42805
,4,2382,42810
,4,2383,42815
,4,2384,42820
,4,2385,42825
,4,2386,42830
,4,2387,42835
,4,2388,42840
,4,2389,42845
,4,2390,42850
,4,2391,42855
,4,2392,42860
,4,2393,42865
,4,2394,42870
,4,2395,42875
,4,2396,42880
,4,2397,42885
,4,2398,42890
,4,2399,42895
,4,2400,42900
,4,2401,42905
,4,2402,42910
,4,2403,42915
,4,2404,42920
,4,2405,42925
,4,2406,42930
,4,2407,42935
,4,2408,42940
,4,2409,42945
,4,2410,42950
,4,2411,42955
,4,2412,42960
,4,2413,42965
,4,2414,42970
,4,2415,42975
,4,2416,42980
,4,2417,42985
,4,2418,42990
,4,2419,42995
,4,2420,43000
,4,2421,43005
,4,2422,43010
,4,2423,43015
,4,2424,43020
,4,2425,43025
,4,2426,43030
,4,2427,43035
,4,2428,43040
,4,2429,43045
,4,2430,43050
,4,2431,43055
,4,2432,43060
,4,2433,43065
,4,2434,43070
,4,2435,43075
,4,2436,43080
,4,2437,43085
,4,2438,43090
,4,2439,43095
,4,2440,43100
,4,2441,43105
,4,2442,43110
,4,2443,43115
,4,2444,43120
,4,2445,43125
,4,2446,43130
,4,2447,43135
,4,2448,43140
,4,2449,43145
,4,2450,43150
,4,2451,43155
,4,2452,43160
,4,2453,43165
,4,2454,43170
,4,2455,43175
,4,2456,43180
,4,2457,43185
,4,2458,43190
,4,2459,43195
,4,2460,43200
,4,2461,43205
,4,2462,43210
,4,2463,43215
,4,2464,43220
,4,2465,43225
,4,2466,43230
,4,2467,43235
,4,2468,43240
,4,2469,43245
,4,2470,43250
,4,2471,43255
,4,2472,43260
,4,2473,43265
,4,2474,43270
,4,2475,43275
,4,2476,43280
,4,2477,43285
,4,2478,43290
,4,2479,43295
,4,2480,43300
,4,2481,43305
,4,2482,43310
,4,2483,43315
,4,2484,43320
,4,2485,43325
,4,2486,43330
,4,2487,43335
,4,2488,43340
,4,2489,43345
,4,2490,43350
,4,2491,43355
,4,2492,43360
,4,2493,43365
,4,2494,43370
,4,2495,43375
,4,2496,43380
,4,2497,43385
,4,2498,43390
,4,2499,43395
,4,2500,43400
,4,2501,43405
,4,2502,43410
,4,2503,43415
,4,2504,43420
,4,2505,43425
,4,2506,43430
,4,2507,43435
,4,2508,43440
,4,2509,43445
,4,2510,43450
,4,2511,43455
,4,2512,43460
,4,2513,43465
,4,2514,43470
,4,2515,43475
,4,2516,43480
,4,2517,43485
,4,2518,43490
,4,2519,43495
,4,2520,43500
,4,2521,43505
,4,2522,43510
,4,2523,43515
,4,2524,43520
,4,2525,43525
,4,2526,43530
,4,2527,43535
,4,2528,43540
,4,2529,43545
,4,2530,43550
,4,2531,43555
,4,2532,43560
,4,2533,43565
,4,2534,43570
,4,2535,43575
,4,2536,43580
,4,2537,43585
,4,2538,43590
,4,2539,43595
,4,2540,43600
,4,2541,43605
,4,2542,43610
,4,2543,43615
,4,2544,43620
,4,2545,43625
,4,2546,43630
,4,2547,43635
,4,2548,43640
,4,2549,43645
,4,2550,43650
,4,2551,43655
,4,2552,43660
,4,2553,43665
,4,2554,43670
,4,2555,43675
,4,2556,43680
,4,2557,43685
,4,2558,43690
,4,2559,43695
,4,2560,43700
,4,2561,43705
,4,2562,43710
,4,2563,43715
,4,2564,43720
,4,2565,43725
,4,2566,43730
,4,2567,43735
,4,2568,43740
,4,2569,43745
,4,2570,43750
,4,2571,43755
,4,2572,43760
,4,2573,43765
,4,2574,43770
,4,2575,43775
,4,2576,43780
,4,2577,43785
,4,2578,43790
,4,2579,43795
,4,2580,43800
,4,2581,43805
,4,2582,43810
,4,2583,43815
,4,2584,43820
,4,2585,43825
,4,2586,43830
,4,2587,43835
,4,2588,43840
,4,2589,43845
,4,2590,43850
,4,2591,43855
,4,2592,43860
,4,2593,43865
,4,2594,43870
,4,2595,43875
,4,2596,43880
,4,2597,43885
,4,2598,43890
,4,2599,43895
,4,2600,43900
,4,2601,43905
,4,2602,43910
,4,2603,43915
,4,2604,43920
,4,2605,43925
,4,2606,43930
,4,2607,43935
,4,2608,43940
,4,2609,43945
,4,2610,43950
,4,2611,43955
,4,2612,43960
,4,2613,43965
,4,2614,43970
,4,2615,43975
,4,2616,43980
,4,2617,43985
,4,2618,43990
,4,2619,43995
,4,2620,44000
,4,2621,44005
,4,2622,44010
,4,2623,44015
,4,2624,44020
,4,2625,44025
,4,2626,44030
,4,2627,44035
,4,2628,44040
,4,2629,44045
,4,2630,44050
,4,2631,44055
,4,2632,44060
,4,2633,44065
,4,2634,44070
,4,2635,44075
,4,2636,44080
,4,2637,44085
,4,2638,44090
,4,2639,44095
,4,2640,44100
,4,2641,44105
,4,2642,44110
,4,2643,44115
,4,2644,44120
,4,2645,44125
,4,2646,44130
,4,2647,44135
,4,2648,44140
,4,2649,44145
,4,2650,44150
,4,2651,44155
,4,2652,44160
,4,2653,44165
,4,2654,44170
,4,2655,44175
,4,2656,44180
,4,2657,44185
,4,2658,44190
,4,2659,44195
,4,2660,44200
,4,2661,44205
,4,2662,44210
,4,2663,44215
,4,2664,44220
,4,2665,44225
,4,2666,44230
,4,2667,44235
,4,2668,44240
,4,2669,44245
,4,2670,44250
,4,2671,44255
,4,2672,44260
,4,2673,44265
,4,2674,44270
,4,2675,44275
,4,2676,44280
,4,2677,44285
,4,2678,44290
,4,2679,44295
,4,2680,44300
,4,2681,44305
,4,2682,44310
,4,2683,44315
,4,2684,44320
,4,2685,44325
,4,2686,44330
,4,2687,44335
,4,2688,44340
,4,2689,44345
,4,2690,44350
,4,2691,44355
,4,2692,44360
,4,2693,44365
,4,2694,44370
,4,2695,44375
,4,2696,44380
,4,2697,44385
,4,2698,44390
,4,2699,44395
,4,2700,44400
,4,2701,44405
,4,2702,44410
,4,2703,44415
,4,2704,44420
,4,2705,44425
,4,2706,44430
,4,2707,44435
,4,2708,44440
,4,2709,44445
,4,2710,44450
,4,2711,44455
,4,2712,44460
,4,2713,44465
,4,2714,44470
,4,2715,44475
,4,2716,44480
,4,2717,44485
,4,2718,44490
,4,2719,44495
,4,2720,44500
,4,2721,44505
,4,2722,44510
,4,2723,44515
,4,2724,44520
,4,2725,44525
,4,2726,44530
,4,2727,44535
,4,2728,44540
,4,2729,44545
,4,2730,44550
,4,2731,44555
,4,2732,44560
,4,2733,44565
,4,2734,44570
,4,2735,44575
,4,2736,44580
,4,2737,44585
,4,2738,44590
,4,2739,44595
,4,2740,44600
,4,2741,44605
,4,2742,44610
,4,2743,44615
,4,2744,44620
,4,2745,44625
,4,2746,44630
,4,2747,44635
,4,2748,44640
,4,2749,44645
,4,2750,44650
,4,2751,44655
,4,2752,44660
,4,2753,44665
,4,2754,44670
,4,2755,44675
,4,2756,44680
,4,2757,44685
,4,2758,44690
,4,2759,44695
,4,2760,44700
,4,2761,44705
,4,2762,44710
,4,2763,44715
,4,2764,44720
,4,2765,44725
,4,2766,44730
,4,2767,44735
,4,2768,44740
,4,2769,44745
,4,2770,44750
,4,2771,44755
,4,2772,44760
,4,2773,44765
,4,2774,44770
,4,2775,44775
,4,2776,44780
,4,2777,44785
,4,2778,44790
,4,2779,44795
,4,2780,44800
,4,2781,44805
,4,2782,44810
,4,2783,44815
,4,2784,44820
,4,2785,44825
,4,2786,44830
,4,2787,44835
,4,2788,44840
,4,2789,44845
,4,2790,44850
,4,2791,44855
,4,2792,44860
,4,2793,44865
,4,2794,44870
,4,2795,44875
,4,2796,44880
,4,2797,44885
,4,2798,44890
,4,2799,44895
,4,2800,44900
,4,2801,44905
,4,2802,44910
,4,2803,44915
,4,2804,44920
,4,2805,44925
,4,2806,44930
,4,2807,44935
,4,2808,44940
,4,2809,44945
,4,2810,44950
,4,2811,44955
,4,2812,44960
,4,2813,44965
,4,2814,44970
,4,2815,44975
,4,2816,44980
,4,2817,44985
,4,2818,44990
,4,2819,44995
,4,2820,45000
,4,2821,45005
,4,2822,45010
,4,2823,45015
,4,2824,45020
,4,2825,45025
,4,2826,45030
,4,2827,45035
,4,2828,45040
,4,2829,45045
,4,2830,45050
,4,2831,45055
,4,2832,45060
,4,2833,45065
,4,2834,45070
,4,2835,45075
,4,2836,45080
,4,2837,45085
,4,2838,45090
,4,2839,45095
,4,2840,45100
,4,2841,45105
,4,2842,45110
,4,2843,45115
,4,2844,45120
,4,2845,45125
,4,2846,45130
,4,2847,45135
,4,2848,45140
,4,2849,45145
,4,2850,45150
,4,2851,45155
,4,2852,45160
,4,2853,45165
,4,2854,45170
,4,2855,45175
,4,2856,45180
,4,2857,45185
,4,2858,45190
,4,2859,45195
,4,2860,45200
,4,2861,45205
,4,2862,45210
,4,2863,45215
,4,2864,45220
,4,2865,45225
,4,2866,45230
,4,2867,45235
,4,2868,45240
,4,2869,45245
,4,2870,45250
,4,2871,45255
,4,2872,45260
,4,2873,45265
,4,2874,45270
,4,2875,45275
,4,2876,45280
,4,2877,45285
,4,2878,45290
,4,2879,45295
,4,2880,45300
,4,2881,45305
,4,2882,45310
,4,2883,45315
,4,2884,45320
,4,2885,45325
,4,2886,45330
,4,2887,45335
,4,2888,45340
,4,2889,45345
,4,2890,45350
,4,2891,45355
,4,2892,45360
,4,2893,45365
,4,2894,45370
,4,2895,45375
,4,2896,45380
,4,2897,45385
,4,2898,45390
,4,2899,45395
,4,2900,45400
,4,2901,45405
,4,2902,45410
,4,2903,45415
,4,2904,45420
,4,2905,45425
,4,2906,45430
,4,2907,45435
,4,2908,45440
,4,2909,45445
,4,2910,45450
,4,2911,45455
,4,2912,45460
,4,2913,45465
,4,2914,45470
,4,2915,45475
,4,2916,45480
,4,2917,45485
,4,2918,45490
,4,2919,45495
,4,2920,45500
,4,2921,45505
,4,2922,45510
,4,2923,45515
,4,2924,45520
,4,2925,45525
,4,2926,45530
,4,2927,45535
,4,2928,45540
,4,2929,45545
,4,2930,45550
,4,2931,45555
,4,2932,45560
,4,2933,45565
,4,2934,45570
,4,2935,45575
,4,2936,45580
,4,2937,45585
,4,2938,45590
,4,2939,45595
,4,2940,45600
,4,2941,45605
,4,2942,45610
,4,2943,45615
,4,2944,45620
,4,2945,45625
,4,2946,45630
,4,2947,45635
,4,2948,45640
,4,2949,45645
,4,2950,45650
,4,2951,45655
,4,2952,45660
,4,2953,45665
,4,2954,45670
,4,2955,45675
,4,2956,45680
,4,2957,45685
,4,2958,45690
,4,2959,45695
,4,2960,45700
,4,2961,45705
,4,2962,45710
,4,2963,45715
,4,2964,45720
,4,2965,45725
,4,2966,45730
,4,2967,45735
,4,2968,45740
,4,2969,45745
,4,2970,45750
,4,2971,45755
,4,2972,45760
,4,2973,45765
,4,2974,45770
,4,2975,45775
,4,2976,45780
,4,2977,45785
,4,2978,45790
,4,2979,45795
,4,2980,45800
,4,2981,45805
,4,2982,45810
,4,2983,45815
,4,2984,45820
,4,2985,45825
,4,2986,45830
,4,2987,45835
,4,2988,45840
,4,2989,45845
,4,2990,45850
,4,2991,45855
,4,2992,45860
,4,2993,45865
,4,2994,45870
,4,2995,45875
,4,2996,45880
,4,2997,45885
,4,2998,45890
,4,2999,45895
,4,3000,45900
,4,3001,45905
,4,3002,45910
,4,3003,45915
,4,3004,45920
,4,3005,45925
,4,3006,45930
,4,3007,45935
,4,3008,45940
,4,3009,45945
,4,3010,45950
,4,3011,45955
,4,3012,45960
,4,3013,45965
,4,3014,45970
,4,3015,45975
,4,3016,45980
,4,3017,45985
,4,3018,45990
,4,3019,45995
,4,3020,46000
,4,3021,46005
,4,3022,46010
,4,3023,46015
,4,3024,46020
,4,3025,46025
,4,3026,46030
,4,3027,46035
,4,3028,46040
,4,3029,46045
,4,3030,46050
,4,3031,46055
,4,3032,46060
,4,3033,46065
,4,3034,46070
,4,3035,46075
,4,3036,46080
,4,3037,46085
,4,3038,46090
,4,3039,46095
,4,3040,46100
,4,3041,46105
,4,3042,46110
,4,3043,46115
,4,3044,46120
,4,3045,46125
,4,3046,46130
,4,3047,46135
,4,3048,46140
,4,3049,46145
,4,3050,46150
,4,3051,46155
,4,3052,46160
,4,3053,46165
,4,3054,46170
,4,3055,46175
,4,3056,46180
,4,3057,46185
,4,3058,46190
,4,3059,46195
,4,3060,46200
,4,3061,46205
,4,3062,46210
,4,3063,46215
,4,3064,46220
,4,3065,46225
,4,3066,46230
,4,3067,46235
,4,3068,46240
,4,3069,46245
,4,3070,46250
,4,3071,46255
,4,3072,46260
,4,3073,46265
,4,3074,46270
,4,3075,46275
,4,3076,46280
,4,3077,46285
,4,3078,46290
,4,3079,46295
,4,3080,46300
,4,3081,46305
,4,3082,46310
,4,3083,46315
,4,3084,46320
,4,3085,46325
,4,3086,46330
,4,3087,46335
,4,3088,46340
,4,3089,46345
,4,3090,46350
,4,3091,46355
,4,3092,46360
,4,3093,46365
,4,3094,46370
,4,3095,46375
,4,3096,46380
,4,3097,46385
,4,3098,46390
,4,3099,46395
,4,3100,46400
,4,3101,46405
,4,3102,46410
,4,3103,46415
,4,3104,46420
,4,3105,46425
,4,3106,46430
,4,3107,46435
,4,3108,46440
,4,3109,46445
,4,3110,46450
,4,3111,46455
,4,3112,46460
,4,3113,46465
,4,3114,46470
,4,3115,46475
,4,3116,46480
,4,3117,46485
,4,3118,46490
,4,3119,46495
,4,3120,46500
,4,3121,46505
,4,3122,46510
,4,3123,46515
,4,3124,46520
,4,3125,46525
,4,3126,46530
,4,3127,46535
,4,3128,46540
,4,3129,46545
,4,3130,46550
,4,3131,46555
,4,3132,46560
,4,3133,46565
,4,3134,46570
,4,3135,46575
,4,3136,46580
,4,3137,46585
,4,3138,46590
,4,3139,46595
,4,3140,46600
,4,3141,46605
,4,3142,46610
,4,3143,46615
,4,3144,46620
,4,3145,46625
,4,3146,46630
,4,3147,46635
,4,3148,46640
,4,3149,46645
,4,3150,46650
,4,3151,46655
,4,3152,46660
,4,3153,46665
,4,3154,46670
,4,3155,46675
,4,3156,46680
,4,3157,46685
,4,3158,46690
,4,3159,46695
,4,3160,46700
,4,3161,46705
,4,3162,46710
,4,3163,46715
,4,3164,46720
,4,3165,46725
,4,3166,46730
,4,3167,46735
,4,3168,46740
,4,3169,46745
,4,3170,46750
,4,3171,46755
,4,3172,46760
,4,3173,46765
,4,3174,46770
,4,3175,46775
,4,3176,46780
,4,3177,46785
,4,3178,46790
,4,3179,46795
,4,3180,46800
,4,3181,46805
,4,3182,46810
,4,3183,46815
,4,3184,46820
,4,3185,46825
,4,3186,46830
,4,3187,46835
,4,3188,46840
,4,3189,46845
,4,3190,46850
,4,3191,46855
,4,3192,46860
,4,3193,46865
,4,3194,46870
,4,3195,46875
,4,3196,46880
,4,3197,46885
,4,3198,46890
,4,3199,46895
,4,3200,46900
,4,3201,46905
,4,3202,46910
,4,3203,46915
,4,3204,46920
,4,3205,46925
,4,3206,46930
,4,3207,46935
,4,3208,46940
,4,3209,46945
,4,3210,46950
,4,3211,46955
,4,3212,46960
,4,3213,46965
,4,3214,46970
,4,3215,46975
,4,3216,46980
,4,3217,46985
,4,3218,46990
,4,3219,46995
,4,3220,47000
,4,3221,47005
,4,3222,47010
,4,3223,47015
,4,3224,47020
,4,3225,47025
,4,3226,47030
,4,3227,47035
,4,3228,47040
,4,3229,47045
,4,3230,47050
,4,3231,47055
,4,3232,47060
,4,3233,47065
,4,3234,47070
,4,3235,47075
,4,3236,47080
,4,3237,47085
,4,3238,47090
,4,3239,47095
,4,3240,47100
,4,3241,47105
,4,3242,47110
,4,3243,47115
,4,3244,47120
,4,3245,47125
,4,3246,47130
,4,3247,47135
,4,3248,47140
,4,3249,47145
,4,3250,47150
,4,3251,47155
,4,3252,47160
,4,3253,47165
,4,3254,47170
,4,3255,47175
,4,3256,47180
,4,3257,47185
,4,3258,47190
,4,3259,47195
,4,3260,47200
,4,3261,47205
,4,3262,47210
,4,3263,47215
,4,3264,47220
,4,3265,47225
,4,3266,47230
,4,3267,47235
,4,3268,47240
,4,3269,47245
,4,3270,47250
,4,3271,47255
,4,3272,47260
,4,3273,47265
,4,3274,47270
,4,3275,47275
,4,3276,47280
,4,3277,47285
,4,3278,47290
,4,3279,47295
,4,3280,47300
,4,3281,47305
,4,3282,47310
,4,3283,47315
,4,3284,47320
,4,3285,47325
,4,3286,47330
,4,3287,47335
,4,3288,47340
,4,3289,47345
,4,3290,47350
,4,3291,47355
,4,3292,47360
,4,3293,47365
,4,3294,47370
,4,3295,47375
,4,3296,47380
,4,3297,47385
,4,3298,47390
,4,3299,47395
,4,3300,47400
,4,3301,47405
,4,3302,47410
,4,3303,47415
,4,3304,47420
,4,3305,47425
,4,3306,47430
,4,3307,47435
,4,3308,47440
,4,3309,47445
,4,3310,47450
,4,3311,47455
,4,3312,47460
,4,3313,47465
,4,3314,47470
,4,3315,47475
,4,3316,47480
,4,3317,47485
,4,3318,47490
,4,3319,47495
,4,3320,47500
,4,3321,47505
,4,3322,47510
,4,3323,47515
,4,3324,47520
,4,3325,47525
,4,3326,47530
,4,3327,47535
,4,3328,47540
,4,3329,47545
,4,3330,47550
,4,3331,47555
,4,3332,47560
,4,3333,47565
,4,3334,47570
,4,3335,47575
,4,3336,47580
,4,3337,47585
,4,3338,47590
,4,3339,47595
,4,3340,47600
,4,3341,47605
,4,3342,47610
,4,3343,47615
,4,3344,47620
,4,3345,47625
,4,3346,47630
,4,3347,47635
,4,3348,47640
,4,3349,47645
,4,3350,47650
,4,3351,47655
,4,3352,47660
,4,3353,47665
,4,3354,47670
,4,3355,47675
,4,3356,47680
,4,3357,47685
,4,3358,47690
,4,3359,47695
,4,3360,47700
,4,3361,47705
,4,3362,47710
,4,3363,47715
,4,3364,47720
,4,3365,47725
,4,3366,47730
,4,3367,47735
,4,3368,47740
,4,3369,47745
,4,3370,47750
,4,3371,47755
,4,3372,47760
,4,3373,47765
,4,3374,47770
,4,3375,47775
,4,3376,47780
,4,3377,47785
,4,3378,47790
,4,3379,47795
,4,3380,47800
,4,3381,47805
,4,3382,47810
,4,3383,47815
,4,3384,47820
,4,3385,47825
,4,3386,47830
,4,3387,47835
,4,3388,47840
,4,3389,47845
,4,3390,47850
,4,3391,47855
,4,3392,47860
,4,3393,47865
,4,3394,47870
,4,3395,47875
,4,3396,47880
,4,3397,47885
,4,3398,47890
,4,3399,47895
,4,3400,47900
,4,3401,47905
,4,3402,47910
,4,3403,47915
,4,3404,47920
,4,3405,47925
,4,3406,47930
,4,3407,47935
,4,3408,47940
,4,3409,47945
,4,3410,47950
,4,3411,47955
,4,3412,47960
,4,3413,47965
,4,3414,47970
,4,3415,47975
,4,3416,47980
,4,3417,47985
,4,3418,47990
,4,3419,47995
,4,3420,48000
,4,3421,48005
,4,3422,48010
,4,3423,48015
,4,3424,48020
,4,3425,48025
,4,3426,48030
,4,3427,48035
,4,3428,48040
,4,3429,48045
,4,3430,48050
,4,3431,48055
,4,3432,48060
,4,3433,48065
,4,3434,48070
,4,3435,48075
,4,3436,48080
,4,3437,48085
,4,3438,48090
,4,3439,48095
,4,3440,48100
,4,3441,48105
,4,3442,48110
,4,3443,48115
,4,3444,48120
,4,3445,48125
,4,3446,48130
,4,3447,48135
,4,3448,48140
,4,3449,48145
,4,3450,48150
,4,3451,48155
,4,3452,48160
,4,3453,48165
,4,3454,48170
,4,3455,48175
,4,3456,48180
,4,3457,48185
,4,3458,48190
,4,3459,48195
,4,3460,48200
,4,3461,48205
,4,3462,48210
,4,3463,48215
,4,3464,48220
,4,3465,48225
,4,3466,48230
,4,3467,48235
,4,3468,48240
,4,3469,48245
,4,3470,48250
,4,3471,48255
,4,3472,48260
,4,3473,48265
,4,3474,48270
,4,3475,48275
,4,3476,48280
,4,3477,48285
,4,3478,48290
,4,3479,48295
,4,3480,48300
,4,3481,48305
,4,3482,48310
,4,3483,48315
,4,3484,48320
,4,3485,48325
,4,3486,48330
,4,3487,48335
,4,3488,48340
,4,3489,48345
,4,3490,48350
,4,3491,48355
,4,3492,48360
,4,3493,48365
,4,3494,48370
,4,3495,48375
,4,3496,48380
,4,3497,48385
,4,3498,48390
,4,3499,48395
,4,3500,48400
,4,3501,48405
,4,3502,48410
,4,3503,48415
,4,3504,48420
,4,3505,48425
,4,3506,48430
,4,3507,48435
,4,3508,48440
,4,3509,48445
,4,3510,48450
,4,3511,48455
,4,3512,48460
,4,3513,48465
,4,3514,48470
,4,3515,48475
,4,3516,48480
,4,3517,48485
,4,3518,48490
,4,3519,48495
,4,3520,48500
,4,3521,48505
,4,3522,48510
,4,3523,48515
,4,3524,48520
,4,3525,48525
,4,3526,48530
,4,3527,48535
,4,3528,48540
,4,3529,48545
,4,3530,48550
,4,3531,48555
,4,3532,48560
,4,3533,48565
,4,3534,48570
,4,3535,48575
,4,3536,48580
,4,3537,48585
,4,3538,48590
,4,3539,48595
,4,3540,48600
,4,3541,48605
,4,3542,48610
,4,3543,48615
,4,3544,48620
,4,3545,48625
,4,3546,48630
,4,3547,48635
,4,3548,48640
,4,3549,48645
,4,3550,48650
,4,3551,48655
,4,3552,48660
,4,3553,48665
,4,3554,48670
,4,3555,48675
,4,3556,48680
,4,3557,48685
,4,3558,48690
,4,3559,48695
,4,3560,48700
,4,3561,48705
,4,3562,48710
,4,3563,48715
,4,3564,48720
,4,3565,48725
,4,3566,48730
,4,3567,48735
,4,3568,48740
,4,3569,48745
,4,3570,48750
,4,3571,48755
,4,3572,48760
,4,3573,48765
,4,3574,48770
,4,3575,48775
,4,3576,48780
,4,3577,48785
,4,3578,48790
,4,3579,48795
,4,3580,48800
,4,3581,48805
,4,3582,48810
,4,3583,48815
,4,3584,48820
,4,3585,48825
,4,3586,48830
,4,3587,48835
,4,3588,48840
,4,3589,48845
,4,3590,48850
,4,3591,48855
,4,3592,48860
,4,3593,48865
,4,3594,48870
,4,3595,48875
,4,3596,48880
,4,3597,48885
,4,3598,48890
,4,3599,48895
,4,3600,48900
,4,3601,48905
,4,3602,48910
,4,3603,48915
,4,3604,48920
,4,3605,48925
,4,3606,48930
,4,3607,48935
,4,3608,48940
,4,3609,48945
,4,3610,48950
,4,3611,48955
,4,3612,48960
,4,3613,48965
,4,3614,48970
,4,3615,48975
,4,3616,48980
,4,3617,48985
,4,3618,48990
,4,3619,48995
,4,3620,49000
,4,3621,49005
,4,3622,49010
,4,3623,49015
,4,3624,49020
,4,3625,49025
,4,3626,49030
,4,3627,49035
,4,3628,49040
,4,3629,49045
,4,3630,49050
,4,3631,49055
,4,3632,49060
,4,3633,49065
,4,3634,49070
,4,3635,49075
,4,3636,49080
,4,3637,49085
,4,3638,49090
,4,3639,49095
,4,3640,49100
,4,3641,49105
,4,3642,49110
,4,3643,49115
,4,3644,49120
,4,3645,49125
,4,3646,49130
,4,3647,49135
,4,3648,49140
,4,3649,49145
,4,3650,49150
,4,3651,49155
,4,3652,49160
,4,3653,49165
,4,3654,49170
,4,3655,49175
,4,3656,49180
,4,3657,49185
,4,3658,49190
,4,3659,49195
,4,3660,49200
,4,3661,49205
,4,3662,49210
,4,3663,49215
,4,3664,49220
,4,3665,49225
,4,3666,49230
,4,3667,49235
,4,3668,49240
,4,3669,49245
,4,3670,49250
,4,3671,49255
,4,3672,49260
,4,3673,49265
,4,3674,49270
,4,3675,49275
,4,3676,49280
,4,3677,49285
,4,3678,49290
,4,3679,49295
,4,3680,49300
,4,3681,49305
,4,3682,49310
,4,3683,49315
,4,3684,49320
,4,3685,49325
,4,3686,49330
,4,3687,49335
,4,3688,49340
,4,3689,49345
,4,3690,49350
,4,3691,49355
,4,3692,49360
,4,3693,49365
,4,3694,49370
,4,3695,49375
,4,3696,49380
,4,3697,49385
,4,3698,49390
,4,3699,49395
,4,3700,49400
,4,3701,49405
,4,3702,49410
,4,3703,49415
,4,3704,49420
,4,3705,49425
,4,3706,49430
,4,3707,49435
,4,3708,49440
,4,3709,49445
,4,3710,49450
,4,3711,49455
,4,3712,49460
,4,3713,49465
,4,3714,49470
,4,3715,49475
,4,3716,49480
,4,3717,49485
,4,3718,49490
,4,3719,49495
,4,3720,49500
,4,3721,49505
,4,3722,49510
,4,3723,49515
,4,3724,49520
,4,3725,49525
,4,3726,49530
,4,3727,49535
,4,3728,49540
,4,3729,49545
,4,3730,49550
,4,3731,49555
,4,3732,49560
,4,3733,49565
,4,3734,49570
,4,3735,49575
,4,3736,49580
,4,3737,49585
,4,3738,49590
,4,3739,49595
,4,3740,49600
,4,3741,49605
,4,3742,49610
,4,3743,49615
,4,3744,49620
,4,3745,49625
,4,3746,49630
,4,3747,49635
,4,3748,49640
,4,3749,49645
,4,3750,49650
,4,3751,49655
,4,3752,49660
,4,3753,49665
,4,3754,49670
,4,3755,49675
,4,3756,49680
,4,3757,49685
,4,3758,49690
,4,3759,49695
,4,3760,49700
,4,3761,49705
,4,3762,49710
,4,3763,49715
,4,3764,49720
,4,3765,49725
,4,3766,49730
,4,3767,49735
,4,3768,49740
,4,3769,49745
,4,3770,49750
,4,3771,49755
,4,3772,49760
,4,3773,49765
,4,3774,49770
,4,3775,49775
,4,3776,49780
,4,3777,49785
,4,3778,49790
,4,3779,49795
,4,3780,49800
,4,3781,49805
,4,3782,49810
,4,3783,49815
,4,3784,49820
,4,3785,49825
,4,3786,49830
,4,3787,49835
,4,3788,49840
,4,3789,49845
,4,3790,49850
,4,3791,49855
,4,3792,49860
,4,3793,49865
,4,3794,49870
,4,3795,49875
,4,3796,49880
,4,3797,49885
,4,3798,49890
,4,3799,49895
,4,3800,49900
,4,3801,49905
,4,3802,49910
,4,3803,49915
,4,3804,49920
,4,3805,49925
,4,3806,49930
,4,3807,49935
,4,3808,49940
,4,3809,49945
,4,3810,49950
,4,3811,49955
,4,3812,49960
,4,3813,49965
,4,3814,49970
,4,3815,49975
,4,3816,49980
,4,3817,49985
,4,3818,49990
,4,3819,49995
,4,3820,50000
,4,3821,50005
,4,3822,50010
,4,3823,50015
,4,3824,50020
,4,3825,50025
,4,3826,50030
,4,3827,50035
,4,3828,50040
,4,3829,50045
,4,3830,50050
,4,3831,50055
,4,3832,50060
,4,3833,50065
,4,3834,50070
,4,3835,50075
,4,3836,50080
,4,3837,50085
,4,3838,50090
,4,3839,50095
,4,3840,50100
,4,3841,50105
,4,3842,50110
,4,3843,50115
,4,3844,50120
,4,3845,50125
,4,3846,50130
,4,3847,50135
,4,3848,50140
,4,3849,50145
,4,3850,50150
,4,3851,50155
,4,3852,50160
,4,3853,50165
,4,3854,50170
,4,3855,50175
,4,3856,50180
,4,3857,50185
,4,3858,50190
,4,3859,50195
,4,3860,50200
,4,3861,50205
,4,3862,50210
,4,3863,50215
,4,3864,50220
,4,3865,50225
,4,3866,50230
,4,3867,50235
,4,3868,50240
,4,3869,50245
,4,3870,50250
,4,3871,50255
,4,3872,50260
,4,3873,50265
,4,3874,50270
,4,3875,50275
,4,3876,50280
,4,3877,50285
,4,3878,50290
,4,3879,50295
,4,3880,50300
,4,3881,50305
,4,3882,50310
,4,3883,50315
,4,3884,50320
,4,3885,50325
,4,3886,50330
,4,3887,50335
,4,3888,50340
,4,3889,50345
,4,3890,50350
,4,3891,50355
,4,3892,50360
,4,3893,50365
,4,3894,50370
,4,3895,50375
,4,3896,50380
,4,3897,50385
,4,3898,50390
,4,3899,50395
,4,3900,50400
,4,3901,50405
,4,3902,50410
,4,3903,50415
,4,3904,50420
,4,3905,50425
,4,3906,50430
,4,3907,50435
,4,3908,50440
,4,3909,50445
,4,3910,50450
,4,3911,50455
,4,3912,50460
,4,3913,50465
,4,3914,50470
,4,3915,50475
,4,3916,50480
,4,3917,50485
,4,3918,50490
,4,3919,50495
,4,3920,50500
,4,3921,50505
,4,3922,50510
,4,3923,50515
,4,3924,50520
,4,3925,50525
,4,3926,50530
,4,3927,50535
,4,3928,50540
,4,3929,50545
,4,3930,50550
,4,3931,50555
,4,3932,50560
,4,3933,50565
,4,3934,50570
,4,3935,50575
,4,3936,50580
,4,3937,50585
,4,3938,50590
,4,3939,50595
,4,3940,50600
,4,3941,50605
,4,3942,50610
,4,3943,50615
,4,3944,50620
,4,3945,50625
,4,3946,50630
,4,3947,50635
,4,3948,50640
,4,3949,50645
,4,3950,50650
,4,3951,50655
,4,3952,50660
,4,3953,50665
,4,3954,50670
,4,3955,50675
,4,3956,50680
,4,3957,50685
,4,3958,50690
,4,3959,50695
,4,3960,50700
,4,3961,50705
,4,3962,50710
,4,3963,50715
,4,3964,50720
,4,3965,50725
,4,3966,50730
,4,3967,50735
,4,3968,50740
,4,3969,50745
,4,3970,50750
,4,3971,50755
,4,3972,50760
,4,3973,50765
,4,3974,50770
,4,3975,50775
,4,3976,50780
,4,3977,50785
,4,3978,50790
,4,3979,50795
,4,3980,50800
,4,3981,50805
,4,3982,50810
,4,3983,50815
,4,3984,50820
,4,3985,50825
,4,3986,50830
,4,3987,50835
,4,3988,50840
,4,3989,50845
,4,3990,50850
,4,3991,50855
,4,3992,50860
,4,3993,50865
,4,3994,50870
,4,3995,50875
,4,3996,50880
,4,3997,50885
,4,3998,50890
,4,3999,50895
,4,4000,50900
,4,4001,50905
,4,4002,50910
,4,4003,50915
,4,4004,50920
,4,4005,50925
,4,4006,50930
,4,4007,50935
,4,4008,50940
,4,4009,50945
,4,4010,50950
,4,4011,50955
,4,4012,50960
,4,4013,50965
,4,4014,50970
,4,4015,50975
,4,4016,50980
,4,4017,50985
,4,4018,50990
,4,4019,50995
,4,4020,51000
,4,4021,51005
,4,4022,51010
,4,4023,51015
,4,4024,51020
,4,4025,51025
,4,4026,51030
,4,4027,51035
,4,4028,51040
,4,4029,51045
,4,4030,51050
,4,4031,51055
,4,4032,51060
,4,4033,51065
,4,4034,51070
,4,4035,51075
,4,4036,51080
,4,4037,51085
,4,4038,51090
,4,4039,51095
,4,4040,51100
,4,4041,51105
,4,4042,51110
,4,4043,51115
,4,4044,51120
,4,4045,51125
,4,4046,51130
,4,4047,51135
,4,4048,51140
,4,4049,51145
,4,4050,51150
,4,4051,51155
,4,4052,51160
,4,4053,51165
,4,4054,51170
,4,4055,51175
,4,4056,51180
,4,4057,51185
,4,4058,51190
,4,4059,51195
,4,4060,51200
,4,4061,51205
,4,4062,51210
,4,4063,51215
,4,4064,51220
,4,4065,51225
,4,4066,51230
,4,4067,51235
,4,4068,51240
,4,4069,51245
,4,4070,51250
,4,4071,51255
,4,4072,51260
,4,4073,51265
,4,4074,51270
,4,4075,51275
,4,4076,51280
,4,4077,51285
,4,4078,51290
,4,4079,51295
,4,4080,51300
,4,4081,51305
,4,4082,51310
,4,4083,51315
,4,4084,51320
,4,4085,51325
,4,4086,51330
,4,4087,51335
,4,4088,51340
,4,4089,51345
,4,4090,51350
,4,4091,51355
,4,4092,51360
,4,4093,51365
,4,4094,51370
,4,4095,51375
,4,4096,51380
,4,4097,51385
,4,4098,51390
,4,4099,51395
,4,4100,51400
,4,4101,51405
,4,4102,51410
,4,4103,51415
,4,4104,51420
,4,4105,51425
,4,4106,51430
,4,4107,51435
,4,4108,51440
,4,4109,51445
,4,4110,51450
,4,4111,51455
,4,4112,51460
,4,4113,51465
,4,4114,51470
,4,4115,51475
,4,4116,51480
,4,4117,51485
,4,4118,51490
,4,4119,51495
,4,4120,51500
,4,4121,51505
,4,4122,51510
,4,4123,51515
,4,4124,51520
,4,4125,51525
,4,4126,51530
,4,4127,51535
,4,4128,51540
,4,4129,51545
,4,4130,51550
,4,4131,51555
,4,4132,51560
,4,4133,51565
,4,4134,51570
,4,4135,51575
,4,4136,51580
,4,4137,51585
,4,4138,51590
,4,4139,51595
,4,4140,51600
,4,4141,51605
,4,4142,51610
,4,4143,51615
,4,4144,51620
,4,4145,51625
,4,4146,51630
,4,4147,51635
,4,4148,51640
,4,4149,51645
,4,4150,51650
,4,4151,51655
,4,4152,51660
,4,4153,51665
,4,4154,51670
,4,4155,51675
,4,4156,51680
,4,4157,51685
,4,4158,51690
,4,4159,51695
,4,4160,51700
,4,4161,51705
,4,4162,51710
,4,4163,51715
,4,4164,51720
,4,4165,51725
,4,4166,51730
,4,4167,51735
,4,4168,51740
,4,4169,51745
,4,4170,51750
,4,4171,51755
,4,4172,51760
,4,4173,51765
,4,4174,51770
,4,4175,51775
,4,4176,51780
,4,4177,51785
,4,4178,51790
,4,4179,51795
,4,4180,51800
,4,4181,51805
,4,4182,51810
,4,4183,51815
,4,4184,51820
,4,4185,51825
,4,4186,51830
,4,4187,51835
,4,4188,51840
,4,4189,51845
,4,4190,51850
,4,4191,51855
,4,4192,51860
,4,4193,51865
,4,4194,51870
,4,4195,51875
,4,4196,51880
,4,4197,51885
,4,4198,51890
,4,4199,51895
,4,4200,51900
,4,4201,51905
,4,4202,51910
,4,4203,51915
,4,4204,51920
,4,4205,51925
,4,4206,51930
,4,4207,51935
,4,4208,51940
,4,4209,51945
,4,4210,51950
,4,4211,51955
,4,4212,51960
,4,4213,51965
,4,4214,51970
,4,4215,51975
,4,4216,51980
,4,4217,51985
,4,4218,51990
,4,4219,51995
,4,4220,52000
,4,4221,52005
,4,4222,52010
,4,4223,52015
,4,4224,52020
,4,4225,52025
,4,4226,52030
,4,4227,52035
,4,4228,52040
,4,4229,52045
,4,4230,52050
,4,4231,52055
,4,4232,52060
,4,4233,52065
,4,4234,52070
,4,4235,52075
,4,4236,52080
,4,4237,52085
,4,4238,52090
,4,4239,52095
,4,4240,52100
,4,4241,52105
,4,4242,52110
,4,4243,52115
,4,4244,52120
,4,4245,52125
,4,4246,52130
,4,4247,52135
,4,4248,52140
,4,4249,52145
,4,4250,52150
,4,4251,52155
,4,4252,52160
,4,4253,52165
,4,4254,52170
,4,4255,52175
,4,4256,52180
,4,4257,52185
,4,4258,52190
,4,4259,52195
,4,4260,52200
,4,4261,52205
,4,4262,52210
,4,4263,52215
,4,4264,52220
,4,4265,52225
,4,4266,52230
,4,4267,52235
,4,4268,52240
,4,4269,52245
,4,4270,52250
,4,4271,52255
,4,4272,52260
,4,4273,52265
,4,4274,52270
,4,4275,52275
,4,4276,52280
,4,4277,52285
,4,4278,52290
,4,4279,52295
,4,4280,52300
,4,4281,52305
,4,4282,52310
,4,4283,52315
,4,4284,52320
,4,4285,52325
,4,4286,52330
,4,4287,52335
,4,4288,52340
,4,4289,52345
,4,4290,52350
,4,4291,52355
,4,4292,52360
,4,4293,52365
,4,4294,52370
,4,4295,52375
,4,4296,52380
,4,4297,52385
,4,4298,52390
,4,4299,52395
,4,4300,52400
,4,4301,52405
,4,4302,52410
,4,4303,52415
,4,4304,52420
,4,4305,52425
,4,4306,52430
,4,4307,52435
,4,4308,52440
,4,4309,52445
,4,4310,52450
,4,4311,52455
,4,4312,52460
,4,4313,52465
,4,4314,52470
,4,4315,52475
,4,4316,52480
,4,4317,52485
,4,4318,52490
,4,4319,52495
,4,4320,52500
,4,4321,52505
,4,4322,52510
,4,4323,52515
,4,4324,52520
,4,4325,52525
,4,4326,52530
,4,4327,52535
,4,4328,52540
,4,4329,52545
,4,4330,52550
,4,4331,52555
,4,4332,52560
,4,4333,52565
,4,4334,52570
,4,4335,52575
,4,4336,52580
,4,4337,52585
,4,4338,52590
,4,4339,52595
,4,4340,52600
,4,4341,52605
,4,4342,52610
,4,4343,52615
,4,4344,52620
,4,4345,52625
,4,4346,52630
,4,4347,52635
,4,4348,52640
,4,4349,52645
,4,4350,52650
,4,4351,52655
,4,4352,52660
,4,4353,52665
,4,4354,52670
,4,4355,52675
,4,4356,52680
,4,4357,52685
,4,4358,52690
,4,4359,52695
,4,4360,52700
,4,4361,52705
,4,4362,52710
,4,4363,52715
,4,4364,52720
,4,4365,52725
,4,4366,52730
,4,4367,52735
,4,4368,52740
,4,4369,52745
,4,4370,52750
,4,4371,52755
,4,4372,52760
,4,4373,52765
,4,4374,52770
,4,4375,52775
,4,4376,52780
,4,4377,52785
,4,4378,52790
,4,4379,52795
,4,4380,52800
,4,4381,52805
,4,4382,52810
,4,4383,52815
,4,4384,52820
,4,4385,52825
,4,4386,52830
,4,4387,52835
,4,4388,52840
,4,4389,52845
,4,4390,52850
,4,4391,52855
,4,4392,52860
,4,4393,52865
,4,4394,52870
,4,4395,52875
,4,4396,52880
,4,4397,52885
,4,4398,52890
,4,4399,52895
,4,4400,52900
,4,4401,52905
,4,4402,52910
,4,4403,52915
,4,4404,52920
,4,4405,52925
,4,4406,52930
,4,4407,52935
,4,4408,52940
,4,4409,52945
,4,4410,52950
,4,4411,52955
,4,4412,52960
,4,4413,52965
,4,4414,52970
,4,4415,52975
,4,4416,52980
,4,4417,52985
,4,4418,52990
,4,4419,52995
,4,4420,53000
,4,4421,53005
,4,4422,53010
,4,4423,53015
,4,4424,53020
,4,4425,53025
,4,4426,53030
,4,4427,53035
,4,4428,53040
,4,4429,53045
,4,4430,53050
,4,4431,53055
,4,4432,53060
,4,4433,53065
,4,4434,53070
,4,4435,53075
,4,4436,53080
,4,4437,53085
,4,4438,53090
,4,4439,53095
,4,4440,53100
,4,4441,53105
,4,4442,53110
,4,4443,53115
,4,4444,53120
,4,4445,53125
,4,4446,53130
,4,4447,53135
,4,4448,53140
,4,4449,53145
,4,4450,53150
,4,4451,53155
,4,4452,53160
,4,4453,53165
,4,4454,53170
,4,4455,53175
,4,4456,53180
,4,4457,53185
,4,4458,53190
,4,4459,53195
,4,4460,53200
,4,4461,53205
,4,4462,53210
,4,4463,53215
,4,4464,53220
,4,4465,53225
,4,4466,53230
,4,4467,53235
,4,4468,53240
,4,4469,53245
,4,4470,53250
,4,4471,53255
,4,4472,53260
,4,4473,53265
,4,4474,53270
,4,4475,53275
,4,4476,53280
,4,4477,53285
,4,4478,53290
,4,4479,53295
,4,4480,53300
,4,4481,53305
,4,4482,53310
,4,4483,53315
,4,4484,53320
,4,4485,53325
,4,4486,53330
,4,4487,53335
,4,4488,53340
,4,4489,53345
,4,4490,53350
,4,4491,53355
,4,4492,53360
,4,4493,53365
,4,4494,53370
,4,4495,53375
,4,4496,53380
,4,4497,53385
,4,4498,53390
,4,4499,53395
,4,4500,53400
,4,4501,53405
,4,4502,53410
,4,4503,53415
,4,4504,53420
,4,4505,53425
,4,4506,53430
,4,4507,53435
,4,4508,53440
,4,4509,53445
,4,4510,53450
,4,4511,53455
,4,4512,53460
,4,4513,53465
,4,4514,53470
,4,4515,53475
,4,4516,53480
,4,4517,53485
,4,4518,53490
,4,4519,53495
,4,4520,53500
,4,4521,53505
,4,4522,53510
,4,4523,53515
,4,4524,53520
,4,4525,53525
,4,4526,53530
,4,4527,53535
,4,4528,53540
,4,4529,53545
,4,4530,53550
,4,4531,53555
,4,4532,53560
,4,4533,53565
,4,4534,53570
,4,4535,53575
,4,4536,53580
,4,4537,53585
,4,4538,53590
,4,4539,53595
,4,4540,53600
,4,4541,53605
,4,4542,53610
,4,4543,53615
,4,4544,53620
,4,4545,53625
,4,4546,53630
,4,4547,53635
,4,4548,53640
,4,4549,53645
,4,4550,53650
,4,4551,53655
,4,4552,53660
,4,4553,53665
,4,4554,53670
,4,4555,53675
,4,4556,53680
,4,4557,53685
,4,4558,53690
,4,4559,53695
,4,4560,53700
,4,4561,53705
,4,4562,53710
,4,4563,53715
,4,4564,53720
,4,4565,53725
,4,4566,53730
,4,4567,53735
,4,4568,53740
,4,4569,53745
,4,4570,53750
,4,4571,53755
,4,4572,53760
,4,4573,53765
,4,4574,53770
,4,4575,53775
,4,4576,53780
,4,4577,53785
,4,4578,53790
,4,4579,53795
,4,4580,53800
,4,4581,53805
,4,4582,53810
,4,4583,53815
,4,4584,53820
,4,4585,53825
,4,4586,53830
,4,4587,53835
,4,4588,53840
,4,4589,53845
,4,4590,53850
,4,4591,53855
,4,4592,53860
,4,4593,53865
,4,4594,53870
,4,4595,53875
,4,4596,53880
,4,4597,53885
,4,4598,53890
,4,4599,53895
,4,4600,53900
,4,4601,53905
,4,4602,53910
,4,4603,53915
,4,4604,53920
,4,4605,53925
,4,4606,53930
,4,4607,53935
,4,4608,53940
,4,4609,53945
,4,4610,53950
,4,4611,53955
,4,4612,53960
,4,4613,53965
,4,4614,53970
,4,4615,53975
,4,4616,53980
,4,4617,53985
,4,4618,53990
,4,4619,53995
,4,4620,54000
,4,4621,54005
,4,4622,54010
,4,4623,54015
,4,4624,54020
,4,4625,54025
,4,4626,54030
,4,4627,54035
,4,4628,54040
,4,4629,54045
,4,4630,54050
,4,4631,54055
,4,4632,54060
,4,4633,54065
,4,4634,54070
,4,4635,54075
,4,4636,54080
,4,4637,54085
,4,4638,54090
,4,4639,54095
,4,4640,54100
,4,4641,54105
,4,4642,54110
,4,4643,54115
,4,4644,54120
,4,4645,54125
,4,4646,54130
,4,4647,54135
,4,4648,54140
,4,4649,54145
,4,4650,54150
,4,4651,54155
,4,4652,54160
,4,4653,54165
,4,4654,54170
,4,4655,54175
,4,4656,54180
,4,4657,54185
,4,4658,54190
,4,4659,54195
,4,4660,54200
,4,4661,54205
,4,4662,54210
,4,4663,54215
,4,4664,54220
,4,4665,54225
,4,4666,54230
,4,4667,54235
,4,4668,54240
,4,4669,54245
,4,4670,54250
,4,4671,54255
,4,4672,54260
,4,4673,54265
,4,4674,54270
,4,4675,54275
,4,4676,54280
,4,4677,54285
,4,4678,54290
,4,4679,54295
,4,4680,54300
,4,4681,54305
,4,4682,54310
,4,4683,54315
,4,4684,54320
,4,4685,54325
,4,4686,54330
,4,4687,54335
,4,4688,54340
,4,4689,54345
,4,4690,54350
,4,4691,54355
,4,4692,54360
,4,4693,54365
,4,4694,54370
,4,4695,54375
,4,4696,54380
,4,4697,54385
,4,4698,54390
,4,4699,54395
,4,4700,54400
,4,4701,54405
,4,4702,54410
,4,4703,54415
,4,4704,54420
,4,4705,54425
,4,4706,54430
,4,4707,54435
,4,4708,54440
,4,4709,54445
,4,4710,54450
,4,4711,54455
,4,4712,54460
,4,4713,54465
,4,4714,54470
,4,4715,54475
,4,4716,54480
,4,4717,54485
,4,4718,54490
,4,4719,54495
,4,4720,54500
,4,4721,54505
,4,4722,54510
,4,4723,54515
,4,4724,54520
,4,4725,54525
,4,4726,54530
,4,4727,54535
,4,4728,54540
,4,4729,54545
,4,4730,54550
,4,4731,54555
,4,4732,54560
,4,4733,54565
,4,4734,54570
,4,4735,54575
,4,4736,54580
,4,4737,54585
,4,4738,54590
,4,4739,54595
,4,4740,54600
,4,4741,54605
,4,4742,54610
,4,4743,54615
,4,4744,54620
,4,4745,54625
,4,4746,54630
,4,4747,54635
,4,4748,54640
,4,4749,54645
,4,4750,54650
,4,4751,54655
,4,4752,54660
,4,4753,54665
,4,4754,54670
,4,4755,54675
,4,4756,54680
,4,4757,54685
,4,4758,54690
,4,4759,54695
,4,4760,54700
,4,4761,54705
,4,4762,54710
,4,4763,54715
,4,4764,54720
,4,4765,54725
,4,4766,54730
,4,4767,54735
,4,4768,54740
,4,4769,54745
,4,4770,54750
,4,4771,54755
,4,4772,54760
,4,4773,54765
,4,4774,54770
,4,4775,54775
,4,4776,54780
,4,4777,54785
,4,4778,54790
,4,4779,54795
,4,4780,54800
,4,4781,54805
,4,4782,54810
,4,4783,54815
,4,4784,54820
,4,4785,54825
,4,4786,54830
,4,4787,54835
,4,4788,54840
,4,4789,54845
,4,4790,54850
,4,4791,54855
,4,4792,54860
,4,4793,54865
,4,4794,54870
,4,4795,54875
,4,4796,54880
,4,4797,54885
,4,4798,54890
,4,4799,54895
,4,4800,54900
,4,4801,54905
,4,4802,54910
,4,4803,54915
,4,4804,54920
,4,4805,54925
,4,4806,54930
,4,4807,54935
,4,4808,54940
,4,4809,54945
,4,4810,54950
,4,4811,54955
,4,4812,54960
,4,4813,54965
,4,4814,54970
,4,4815,54975
,4,4816,54980
,4,4817,54985
,4,4818,54990
,4,4819,54995
,4,4820,55000
,4,4821,55005
,4,4822,55010
,4,4823,55015
,4,4824,55020
,4,4825,55025
,4,4826,55030
,4,4827,55035
,4,4828,55040
,4,4829,55045
,4,4830,55050
,4,4831,55055
,4,4832,55060
,4,4833,55065
,4,4834,55070
,4,4835,55075
,4,4836,55080
,4,4837,55085
,4,4838,55090
,4,4839,55095
,4,4840,55100
,4,4841,55105
,4,4842,55110
,4,4843,55115
,4,4844,55120
,4,4845,55125
,4,4846,55130
,4,4847,55135
,4,4848,55140
,4,4849,55145
,4,4850,55150
,4,4851,55155
,4,4852,55160
,4,4853,55165
,4,4854,55170
,4,4855,55175
,4,4856,55180
,4,4857,55185
,4,4858,55190
,4,4859,55195
,4,4860,55200
,4,4861,55205
,4,4862,55210
,4,4863,55215
,4,4864,55220
,4,4865,55225
,4,4866,55230
,4,4867,55235
,4,4868,55240
,4,4869,55245
,4,4870,55250
,4,4871,55255
,4,4872,55260
,4,4873,55265
,4,4874,55270
,4,4875,55275
,4,4876,55280
,4,4877,55285
,4,4878,55290
,4,4879,55295
,4,4880,55300
,4,4881,55305
,4,4882,55310
,4,4883,55315
,4,4884,55320
,4,4885,55325
,4,4886,55330
,4,4887,55335
,4,4888,55340
,4,4889,55345
,4,4890,55350
,4,4891,55355
,4,4892,55360
,4,4893,55365
,4,4894,55370
,4,4895,55375
,4,4896,55380
,4,4897,55385
,4,4898,55390
,4,4899,55395
,4,4900,55400
,4,4901,55405
,4,4902,55410
,4,4903,55415
,4,4904,55420
,4,4905,55425
,4,4906,55430
,4,4907,55435
,4,4908,55440
,4,4909,55445
,4,4910,55450
,4,4911,55455
,4,4912,55460
,4,4913,55465
,4,4914,55470
,4,4915,55475
,4,4916,55480
,4,4917,55485
,4,4918,55490
,4,4919,55495
,4,4920,55500
,4,4921,55505
,4,4922,55510
,4,4923,55515
,4,4924,55520
,4,4925,55525
,4,4926,55530
,4,4927,55535
,4,4928,55540
,4,4929,55545
,4,4930,55550
,4,4931,55555
,4,4932,55560
,4,4933,55565
,4,4934,55570
,4,4935,55575
,4,4936,55580
,4,4937,55585
,4,4938,55590
,4,4939,55595
,4,4940,55600
,4,4941,55605
,4,4942,55610
,4,4943,55615
,4,4944,55620
,4,4945,55625
,4,4946,55630
,4,4947,55635
,4,4948,55640
,4,4949,55645
,4,4950,55650
,4,4951,55655
,4,4952,55660
,4,4953,55665
,4,4954,55670
,4,4955,55675
,4,4956,55680
,4,4957,55685
,4,4958,55690
,4,4959,55695
,4,4960,55700
,4,4961,55705
,4,4962,55710
,4,4963,55715
,4,4964,55720
,4,4965,55725
,4,4966,55730
,4,4967,55735
,4,4968,55740
,4,4969,55745
,4,4970,55750
,4,4971,55755
,4,4972,55760
,4,4973,55765
,4,4974,55770
,4,4975,55775
,4,4976,55780
,4,4977,55785
,4,4978,55790
,4,4979,55795
,4,4980,55800
,4,4981,55805
,4,4982,55810
,4,4983,55815
,4,4984,55820
,4,4985,55825
,4,4986,55830
,4,4987,55835
,4,4988,55840
,4,4989,55845
,4,4990,55850
,4,4991,55855
,4,4992,55860
,4,4993,55865
,4,4994,55870
,4,4995,55875
,4,4996,55880
,4,4997,55885
,4,4998,55890
,4,4999,55895
,4,5000,55900
,4,5001,55905
,4,5002,55910
,4,5003,55915
,4,5004,55920
,4,5005,55925
,4,5006,55930
,4,5007,55935
,4,5008,55940
,4,5009,55945
,4,5010,55950
,4,5011,55955
,4,5012,55960
,4,5013,55965
,4,5014,55970
,4,5015,55975
,4,5016,55980
,4,5017,55985
,4,5018,55990
,4,5019,55995
,4,5020,56000
,4,5021,56005
,4,5022,56010
,4,5023,56015
,4,5024,56020
,4,5025,56025
,4,5026,56030
,4,5027,56035
,4,5028,56040
,4,5029,56045
,4,5030,56050
,4,5031,56055
,4,5032,56060
,4,5033,56065
,4,5034,56070
,4,5035,56075
,4,5036,56080
,4,5037,56085
,4,5038,56090
,4,5039,56095
,4,5040,56100
,4,5041,56105
,4,5042,56110
,4,5043,56115
,4,5044,56120
,4,5045,56125
,4,5046,56130
,4,5047,56135
,4,5048,56140
,4,5049,56145
,4,5050,56150
,4,5051,56155
,4,5052,56160
,4,5053,56165
,4,5054,56170
,4,5055,56175
,4,5056,56180
,4,5057,56185
,4,5058,56190
,4,5059,56195
,4,5060,56200
,4,5061,56205
,4,5062,56210
,4,5063,56215
,4,5064,56220
,4,5065,56225
,4,5066,56230
,4,5067,56235
,4,5068,56240
,4,5069,56245
,4,5070,56250
,4,5071,56255
,4,5072,56260
,4,5073,56265
,4,5074,56270
,4,5075,56275
,4,5076,56280
,4,5077,56285
,4,5078,56290
,4,5079,56295
,4,5080,56300
,4,5081,56305
,4,5082,56310
,4,5083,56315
,4,5084,56320
,4,5085,56325
,4,5086,56330
,4,5087,56335
,4,5088,56340
,4,5089,56345
,4,5090,56350
,4,5091,56355
,4,5092,56360
,4,5093,56365
,4,5094,56370
,4,5095,56375
,4,5096,56380
,4,5097,56385
,4,5098,56390
,4,5099,56395
,4,5100,56400
,4,5101,56405
,4,5102,56410
,4,5103,56415
,4,5104,56420
,4,5105,56425
,4,5106,56430
,4,5107,56435
,4,5108,56440
,4,5109,56445
,4,5110,56450
,4,5111,56455
,4,5112,56460
,4,5113,56465
,4,5114,56470
,4,5115,56475
,4,5116,56480
,4,5117,56485
,4,5118,56490
,4,5119,56495
,4,5120,56500
,4,5121,56505
,4,5122,56510
,4,5123,56515
,4,5124,56520
,4,5125,56525
,4,5126,56530
,4,5127,56535
,4,5128,56540
,4,5129,56545
,4,5130,56550
,4,5131,56555
,4,5132,56560
,4,5133,56565
,4,5134,56570
,4,5135,56575
,4,5136,56580
,4,5137,56585
,4,5138,56590
,4,5139,56595
,4,5140,56600
,4,5141,56605
,4,5142,56610
,4,5143,56615
,4,5144,56620
,4,5145,56625
,4,5146,56630
,4,5147,56635
,4,5148,56640
,4,5149,56645
,4,5150,56650
,4,5151,56655
,4,5152,56660
,4,5153,56665
,4,5154,56670
,4,5155,56675
,4,5156,56680
,4,5157,56685
,4,5158,56690
,4,5159,56695
,4,5160,56700
,4,5161,56705
,4,5162,56710
,4,5163,56715
,4,5164,56720
,4,5165,56725
,4,5166,56730
,4,5167,56735
,4,5168,56740
,4,5169,56745
,4,5170,56750
,4,5171,56755
,4,5172,56760
,4,5173,56765
,4,5174,56770
,4,5175,56775
,4,5176,56780
,4,5177,56785
,4,5178,56790
,4,5179,56795
,4,5180,56800
,4,5181,56805
,4,5182,56810
,4,5183,56815
,4,5184,56820
,4,5185,56825
,4,5186,56830
,4,5187,56835
,4,5188,56840
,4,5189,56845
,4,5190,56850
,4,5191,56855
,4,5192,56860
,4,5193,56865
,4,5194,56870
,4,5195,56875
,4,5196,56880
,4,5197,56885
,4,5198,56890
,4,5199,56895
,4,5200,56900
,4,5201,56905
,4,5202,56910
,4,5203,56915
,4,5204,56920
,4,5205,56925
,4,5206,56930
,4,5207,56935
,4,5208,56940
,4,5209,56945
,4,5210,56950
,4,5211,56955
,4,5212,56960
,4,5213,56965
,4,5214,56970
,4,5215,56975
,4,5216,56980
,4,5217,56985
,4,5218,56990
,4,5219,56995
,4,5220,57000
,4,5221,57005
,4,5222,57010
,4,5223,57015
,4,5224,57020
,4,5225,57025
,4,5226,57030
,4,5227,57035
,4,5228,57040
,4,5229,57045
,4,5230,57050
,4,5231,57055
,4,5232,57060
,4,5233,57065
,4,5234,57070
,4,5235,57075
,4,5236,57080
,4,5237,57085
,4,5238,57090
,4,5239,57095
,4,5240,57100
,4,5241,57105
,4,5242,57110
,4,5243,57115
,4,5244,57120
,4,5245,57125
,4,5246,57130
,4,5247,57135
,4,5248,57140
,4,5249,57145
,4,5250,57150
,4,5251,57155
,4,5252,57160
,4,5253,57165
,4,5254,57170
,4,5255,57175
,4,5256,57180
,4,5257,57185
,4,5258,57190
,4,5259,57195
,4,5260,57200
,4,5261,57205
,4,5262,57210
,4,5263,57215
,4,5264,57220
,4,5265,57225
,4,5266,57230
,4,5267,57235
,4,5268,57240
,4,5269,57245
,4,5270,57250
,4,5271,57255
,4,5272,57260
,4,5273,57265
,4,5274,57270
,4,5275,57275
,4,5276,57280
,4,5277,57285
,4,5278,57290
,4,5279,57295
,4,5280,57300
,4,5281,57305
,4,5282,57310
,4,5283,57315
,4,5284,57320
,4,5285,57325
,4,5286,57330
,4,5287,57335
,4,5288,57340
,4,5289,57345
,4,5290,57350
,4,5291,57355
,4,5292,57360
,4,5293,57365
,4,5294,57370
,4,5295,57375
,4,5296,57380
,4,5297,57385
,4,5298,57390
,4,5299,57395
,4,5300,57400
,4,5301,57405
,4,5302,57410
,4,5303,57415
,4,5304,57420
,4,5305,57425
,4,5306,57430
,4,5307,57435
,4,5308,57440
,4,5309,57445
,4,5310,57450
,4,5311,57455
,4,5312,57460
,4,5313,57465
,4,5314,57470
,4,5315,57475
,4,5316,57480
,4,5317,57485
,4,5318,57490
,4,5319,57495
,4,5320,57500
,4,5321,57505
,4,5322,57510
,4,5323,57515
,4,5324,57520
,4,5325,57525
,4,5326,57530
,4,5327,57535
,4,5328,57540
,4,5329,57545
,4,5330,57550
,4,5331,57555
,4,5332,57560
,4,5333,57565
,4,5334,57570
,4,5335,57575
,4,5336,57580
,4,5337,57585
,4,5338,57590
,4,5339,57595
,4,5340,57600
,4,5341,57605
,4,5342,57610
,4,5343,57615
,4,5344,57620
,4,5345,57625
,4,5346,57630
,4,5347,57635
,4,5348,57640
,4,5349,57645
,4,5350,57650
,4,5351,57655
,4,5352,57660
,4,5353,57665
,4,5354,57670
,4,5355,57675
,4,5356,57680
,4,5357,57685
,4,5358,57690
,4,5359,57695
,4,5360,57700
,4,5361,57705
,4,5362,57710
,4,5363,57715
,4,5364,57720
,4,5365,57725
,4,5366,57730
,4,5367,57735
,4,5368,57740
,4,5369,57745
,4,5370,57750
,4,5371,57755
,4,5372,57760
,4,5373,57765
,4,5374,57770
,4,5375,57775
,4,5376,57780
,4,5377,57785
,4,5378,57790
,4,5379,57795
,4,5380,57800
,4,5381,57805
,4,5382,57810
,4,5383,57815
,4,5384,57820
,4,5385,57825
,4,5386,57830
,4,5387,57835
,4,5388,57840
,4,5389,57845
,4,5390,57850
,4,5391,57855
,4,5392,57860
,4,5393,57865
,4,5394,57870
,4,5395,57875
,4,5396,57880
,4,5397,57885
,4,5398,57890
,4,5399,57895
,4,5400,57900
,4,5401,57905
,4,5402,57910
,4,5403,57915
,4,5404,57920
,4,5405,57925
,4,5406,57930
,4,5407,57935
,4,5408,57940
,4,5409,57945
,4,5410,57950
,4,5411,57955
,4,5412,57960
,4,5413,57965
,4,5414,57970
,4,5415,57975
,4,5416,57980
,4,5417,57985
,4,5418,57990
,4,5419,57995
,4,5420,58000
,4,5421,58005
,4,5422,58010
,4,5423,58015
,4,5424,58020
,4,5425,58025
,4,5426,58030
,4,5427,58035
,4,5428,58040
,4,5429,58045
,4,5430,58050
,4,5431,58055
,4,5432,58060
,4,5433,58065
,4,5434,58070
,4,5435,58075
,4,5436,58080
,4,5437,58085
,4,5438,58090
,4,5439,58095
,4,5440,58100
,4,5441,58105
,4,5442,58110
,4,5443,58115
,4,5444,58120
,4,5445,58125
,4,5446,58130
,4,5447,58135
,4,5448,58140
,4,5449,58145
,4,5450,58150
,4,5451,58155
,4,5452,58160
,4,5453,58165
,4,5454,58170
,4,5455,58175
,4,5456,58180
,4,5457,58185
,4,5458,58190
,4,5459,58195
,4,5460,58200
,4,5461,58205
,4,5462,58210
,4,5463,58215
,4,5464,58220
,4,5465,58225
,4,5466,58230
,4,5467,58235
,4,5468,58240
,4,5469,58245
,4,5470,58250
,4,5471,58255
,4,5472,58260
,4,5473,58265
,4,5474,58270
,4,5475,58275
,4,5476,58280
,4,5477,58285
,4,5478,58290
,4,5479,58295
,4,5480,58300
,4,5481,58305
,4,5482,58310
,4,5483,58315
,4,5484,58320
,4,5485,58325
,4,5486,58330
,4,5487,58335
,4,5488,58340
,4,5489,58345
,4,5490,58350
,4,5491,58355
,4,5492,58360
,4,5493,58365
,4,5494,58370
,4,5495,58375
,4,5496,58380
,4,5497,58385
,4,5498,58390
,4,5499,58395
,4,5500,58400
,4,5501,58405
,4,5502,58410
,4,5503,58415
,4,5504,58420
,4,5505,58425
,4,5506,58430
,4,5507,58435
,4,5508,58440
,4,5509,58445
,4,5510,58450
,4,5511,58455
,4,5512,58460
,4,5513,58465
,4,5514,58470
,4,5515,58475
,4,5516,58480
,4,5517,58485
,4,5518,58490
,4,5519,58495
,4,5520,58500
,4,5521,58505
,4,5522,58510
,4,5523,58515
,4,5524,58520
,4,5525,58525
,4,5526,58530
,4,5527,58535
,4,5528,58540
,4,5529,58545
,4,5530,58550
,4,5531,58555
,4,5532,58560
,4,5533,58565
,4,5534,58570
,4,5535,58575
,4,5536,58580
,4,5537,58585
,4,5538,58590
,4,5539,58595
,4,5540,58600
,4,5541,58605
,4,5542,58610
,4,5543,58615
,4,5544,58620
,4,5545,58625
,4,5546,58630
,4,5547,58635
,4,5548,58640
,4,5549,58645
,4,5550,58650
,4,5551,58655
,4,5552,58660
,4,5553,58665
,4,5554,58670
,4,5555,58675
,4,5556,58680
,4,5557,58685
,4,5558,58690
,4,5559,58695
,4,5560,58700
,4,5561,58705
,4,5562,58710
,4,5563,58715
,4,5564,58720
,4,5565,58725
,4,5566,58730
,4,5567,58735
,4,5568,58740
,4,5569,58745
,4,5570,58750
,4,5571,58755
,4,5572,58760
,4,5573,58765
,4,5574,58770
,4,5575,58775
,4,5576,58780
,4,5577,58785
,4,5578,58790
,4,5579,58795
,4,5580,58800
,4,5581,58805
,4,5582,58810
,4,5583,58815
,4,5584,58820
,4,5585,58825
,4,5586,58830
,4,5587,58835
,4,5588,58840
,4,5589,58845
,4,5590,58850
,4,5591,58855
,4,5592,58860
,4,5593,58865
,4,5594,58870
,4,5595,58875
,4,5596,58880
,4,5597,58885
,4,5598,58890
,4,5599,58895
,4,5600,58900
,4,5601,58905
,4,5602,58910
,4,5603,58915
,4,5604,58920
,4,5605,58925
,4,5606,58930
,4,5607,58935
,4,5608,58940
,4,5609,58945
,4,5610,58950
,4,5611,58955
,4,5612,58960
,4,5613,58965
,4,5614,58970
,4,5615,58975
,4,5616,58980
,4,5617,58985
,4,5618,58990
,4,5619,58995
,4,5620,59000
,4,5621,59005
,4,5622,59010
,4,5623,59015
,4,5624,59020
,4,5625,59025
,4,5626,59030
,4,5627,59035
,4,5628,59040
,4,5629,59045
,4,5630,59050
,4,5631,59055
,4,5632,59060
,4,5633,59065
,4,5634,59070
,4,5635,59075
,4,5636,59080
,4,5637,59085
,4,5638,59090
,4,5639,59095
,4,5640,59100
,4,5641,59105
,4,5642,59110
,4,5643,59115
,4,5644,59120
,4,5645,59125
,4,5646,59130
,4,5647,59135
,4,5648,59140
,4,5649,59145
,4,5650,59150
,4,5651,59155
,4,5652,59160
,4,5653,59165
,4,5654,59170
,4,5655,59175
,4,5656,59180
,4,5657,59185
,4,5658,59190
,4,5659,59195
,4,5660,59200
,4,5661,59205
,4,5662,59210
,4,5663,59215
,4,5664,59220
,4,5665,59225
,4,5666,59230
,4,5667,59235
,4,5668,59240
,4,5669,59245
,4,5670,59250
,4,5671,59255
,4,5672,59260
,4,5673,59265
,4,5674,59270
,4,5675,59275
,4,5676,59280
,4,5677,59285
,4,5678,59290
,4,5679,59295
,4,5680,59300
,4,5681,59305
,4,5682,59310
,4,5683,59315
,4,5684,59320
,4,5685,59325
,4,5686,59330
,4,5687,59335
,4,5688,59340
,4,5689,59345
,4,5690,59350
,4,5691,59355
,4,5692,59360
,4,5693,59365
,4,5694,59370
,4,5695,59375
,4,5696,59380
,4,5697,59385
,4,5698,59390
,4,5699,59395
,4,5700,59400
,4,5701,59405
,4,5702,59410
,4,5703,59415
,4,5704,59420
,4,5705,59425
,4,5706,59430
,4,5707,59435
,4,5708,59440
,4,5709,59445
,4,5710,59450
,4,5711,59455
,4,5712,59460
,4,5713,59465
,4,5714,59470
,4,5715,59475
,4,5716,59480
,4,5717,59485
,4,5718,59490
,4,5719,59495
,4,5720,59500
,4,5721,59505
,4,5722,59510
,4,5723,59515
,4,5724,59520
,4,5725,59525
,4,5726,59530
,4,5727,59535
,4,5728,59540
,4,5729,59545
,4,5730,59550
,4,5731,59555
,4,5732,59560
,4,5733,59565
,4,5734,59570
,4,5735,59575
,4,5736,59580
,4,5737,59585
,4,5738,59590
,4,5739,59595
,4,5740,59600
,4,5741,59605
,4,5742,59610
,4,5743,59615
,4,5744,59620
,4,5745,59625
,4,5746,59630
,4,5747,59635
,4,5748,59640
,4,5749,59645
,4,5750,59650
,4,5751,59655
,4,5752,59660
,4,5753,59665
,4,5754,59670
,4,5755,59675
,4,5756,59680
,4,5757,59685
,4,5758,59690
,4,5759,59695
,4,5760,59700
,4,5761,59705
,4,5762,59710
,4,5763,59715
,4,5764,59720
,4,5765,59725
,4,5766,59730
,4,5767,59735
,4,5768,59740
,4,5769,59745
,4,5770,59750
,4,5771,59755
,4,5772,59760
,4,5773,59765
,4,5774,59770
,4,5775,59775
,4,5776,59780
,4,5777,59785
,4,5778,59790
,4,5779,59795
,4,5780,59800
,4,5781,59805
,4,5782,59810
,4,5783,59815
,4,5784,59820
,4,5785,59825
,4,5786,59830
,4,5787,59835
,4,5788,59840
,4,5789,59845
,4,5790,59850
,4,5791,59855
,4,5792,59860
,4,5793,59865
,4,5794,59870
,4,5795,59875
,4,5796,59880
,4,5797,59885
,4,5798,59890
,4,5799,59895
,4,5800,59900
,4,5801,59905
,4,5802,59910
,4,5803,59915
,4,5804,59920
,4,5805,59925
,4,5806,59930
,4,5807,59935
,4,5808,59940
,4,5809,59945
,4,5810,59950
,4,5811,59955
,4,5812,59960
,4,5813,59965
,4,5814,59970
,4,5815,59975
,4,5816,59980
,4,5817,59985
,4,5818,59990
,4,5819,59995
,4,5820,60000
,4,5821,60005
,4,5822,60010
,4,5823,60015
,4,5824,60020
,4,5825,60025
,4,5826,60030
,4,5827,60035
,4,5828,60040
,4,5829,60045
,4,5830,60050
,4,5831,60055
,4,5832,60060
,4,5833,60065
,4,5834,60070
,4,5835,60075
,4,5836,60080
,4,5837,60085
,4,5838,60090
,4,5839,60095
,4,5840,60100
,4,5841,60105
,4,5842,60110
,4,5843,60115
,4,5844,60120
,4,5845,60125
,4,5846,60130
,4,5847,60135
,4,5848,60140
,4,5849,60145
,4,5850,60150
,4,5851,60155
,4,5852,60160
,4,5853,60165
,4,5854,60170
,4,5855,60175
,4,5856,60180
,4,5857,60185
,4,5858,60190
,4,5859,60195
,4,5860,60200
,4,5861,60205
,4,5862,60210
,4,5863,60215
,4,5864,60220
,4,5865,60225
,4,5866,60230
,4,5867,60235
,4,5868,60240
,4,5869,60245
,4,5870,60250
,4,5871,60255
,4,5872,60260
,4,5873,60265
,4,5874,60270
,4,5875,60275
,4,5876,60280
,4,5877,60285
,4,5878,60290
,4,5879,60295
,4,5880,60300
,4,5881,60305
,4,5882,60310
,4,5883,60315
,4,5884,60320
,4,5885,60325
,4,5886,60330
,4,5887,60335
,4,5888,60340
,4,5889,60345
,4,5890,60350
,4,5891,60355
,4,5892,60360
,4,5893,60365
,4,5894,60370
,4,5895,60375
,4,5896,60380
,4,5897,60385
,4,5898,60390
,4,5899,60395
,4,5900,60400
,4,5901,60405
,4,5902,60410
,4,5903,60415
,4,5904,60420
,4,5905,60425
,4,5906,60430
,4,5907,60435
,4,5908,60440
,4,5909,60445
,4,5910,60450
,4,5911,60455
,4,5912,60460
,4,5913,60465
,4,5914,60470
,4,5915,60475
,4,5916,60480
,4,5917,60485
,4,5918,60490
,4,5919,60495
,4,5920,60500
,4,5921,60505
,4,5922,60510
,4,5923,60515
,4,5924,60520
,4,5925,60525
,4,5926,60530
,4,5927,60535
,4,5928,60540
,4,5929,60545
,4,5930,60550
,4,5931,60555
,4,5932,60560
,4,5933,60565
,4,5934,60570
,4,5935,60575
,4,5936,60580
,4,5937,60585
,4,5938,60590
,4,5939,60595
,4,5940,60600
,4,5941,60605
,4,5942,60610
,4,5943,60615
,4,5944,60620
,4,5945,60625
,4,5946,60630
,4,5947,60635
,4,5948,60640
,4,5949,60645
,4,5950,60650
,4,5951,60655
,4,5952,60660
,4,5953,60665
,4,5954,60670
,4,5955,60675
,4,5956,60680
,4,5957,60685
,4,5958,60690
,4,5959,60695
,4,5960,60700
,4,5961,60705
,4,5962,60710
,4,5963,60715
,4,5964,60720
,4,5965,60725
,4,5966,60730
,4,5967,60735
,4,5968,60740
,4,5969,60745
,4,5970,60750
,4,5971,60755
,4,5972,60760
,4,5973,60765
,4,5974,60770
,4,5975,60775
,4,5976,60780
,4,5977,60785
,4,5978,60790
,4,5979,60795
,4,5980,60800
,4,5981,60805
,4,5982,60810
,4,5983,60815
,4,5984,60820
,4,5985,60825
,4,5986,60830
,4,5987,60835
,4,5988,60840
,4,5989,60845
,4,5990,60850
,4,5991,60855
,4,5992,60860
,4,5993,60865
,4,5994,60870
,4,5995,60875
,4,5996,60880
,4,5997,60885
,4,5998,60890
,4,5999,60895
,4,6000,60900
,4,6001,60905
,4,6002,60910
,4,6003,60915
,4,6004,60920
,4,6005,60925
,4,6006,60930
,4,6007,60935
,4,6008,60940
,4,6009,60945
,4,6010,60950
,4,6011,60955
,4,6012,60960
,4,6013,60965
,4,6014,60970
,4,6015,60975
,4,6016,60980
,4,6017,60985
,4,6018,60990
,4,6019,60995
,4,6020,61000
,4,6021,61005
,4,6022,61010
,4,6023,61015
,4,6024,61020
,4,6025,61025
,4,6026,61030
,4,6027,61035
,4,6028,61040
,4,6029,61045
,4,6030,61050
,4,6031,61055
,4,6032,61060
,4,6033,61065
,4,6034,61070
,4,6035,61075
,4,6036,61080
,4,6037,61085
,4,6038,61090
,4,6039,61095
,4,6040,61100
,4,6041,61105
,4,6042,61110
,4,6043,61115
,4,6044,61120
,4,6045,61125
,4,6046,61130
,4,6047,61135
,4,6048,61140
,4,6049,61145
,4,6050,61150
,4,6051,61155
,4,6052,61160
,4,6053,61165
,4,6054,61170
,4,6055,61175
,4,6056,61180
,4,6057,61185
,4,6058,61190
,4,6059,61195
,4,6060,61200
,4,6061,61205
,4,6062,61210
,4,6063,61215
,4,6064,61220
,4,6065,61225
,4,6066,61230
,4,6067,61235
,4,6068,61240
,4,6069,61245
,4,6070,61250
,4,6071,61255
,4,6072,61260
,4,6073,61265
,4,6074,61270
,4,6075,61275
,4,6076,61280
,4,6077,61285
,4,6078,61290
,4,6079,61295
,4,6080,61300
,4,6081,61305
,4,6082,61310
,4,6083,61315
,4,6084,61320
,4,6085,61325
,4,6086,61330
,4,6087,61335
,4,6088,61340
,4,6089,61345
,4,6090,61350
,4,6091,61355
,4,6092,61360
,4,6093,61365
,4,6094,61370
,4,6095,61375
,4,6096,61380
,4,6097,61385
,4,6098,61390
,4,6099,61395
,4,6100,61400
,4,6101,61405
,4,6102,61410
,4,6103,61415
,4,6104,61420
,4,6105,61425
,4,6106,61430
,4,6107,61435
,4,6108,61440
,4,6109,61445
,4,6110,61450
,4,6111,61455
,4,6112,61460
,4,6113,61465
,4,6114,61470
,4,6115,61475
,4,6116,61480
,4,6117,61485
,4,6118,61490
,4,6119,61495
,4,6120,61500
,4,6121,61505
,4,6122,61510
,4,6123,61515
,4,6124,61520
,4,6125,61525
,4,6126,61530
,4,6127,61535
,4,6128,61540
,4,6129,61545
,4,6130,61550
,4,6131,61555
,4,6132,61560
,4,6133,61565
,4,6134,61570
,4,6135,61575
,4,6136,61580
,4,6137,61585
,4,6138,61590
,4,6139,61595
,4,6140,61600
,4,6141,61605
,4,6142,61610
,4,6143,61615
,4,6144,61620
,4,6145,61625
,4,6146,61630
,4,6147,61635
,4,6148,61640
,4,6149,61645
,4,6150,61650
,4,6151,61655
,4,6152,61660
,4,6153,61665
,4,6154,61670
,4,6155,61675
,4,6156,61680
,4,6157,61685
,4,6158,61690
,4,6159,61695
,4,6160,61700
,4,6161,61705
,4,6162,61710
,4,6163,61715
,4,6164,61720
,4,6165,61725
,4,6166,61730
,4,6167,61735
,4,6168,61740
,4,6169,61745
,4,6170,61750
,4,6171,61755
,4,6172,61760
,4,6173,61765
,4,6174,61770
,4,6175,61775
,4,6176,61780
,4,6177,61785
,4,6178,61790
,4,6179,61795
,4,6180,61800
,4,6181,61805
,4,6182,61810
,4,6183,61815
,4,6184,61820
,4,6185,61825
,4,6186,61830
,4,6187,61835
,4,6188,61840
,4,6189,61845
,4,6190,61850
,4,6191,61855
,4,6192,61860
,4,6193,61865
,4,6194,61870
,4,6195,61875
,4,6196,61880
,4,6197,61885
,4,6198,61890
,4,6199,61895
,4,6200,61900
,4,6201,61905
,4,6202,61910
,4,6203,61915
,4,6204,61920
,4,6205,61925
,4,6206,61930
,4,6207,61935
,4,6208,61940
,4,6209,61945
,4,6210,61950
,4,6211,61955
,4,6212,61960
,4,6213,61965
,4,6214,61970
,4,6215,61975
,4,6216,61980
,4,6217,61985
,4,6218,61990
,4,6219,61995
,4,6220,62000
,4,6221,62005
,4,6222,62010
,4,6223,62015
,4,6224,62020
,4,6225,62025
,4,6226,62030
,4,6227,62035
,4,6228,62040
,4,6229,62045
,4,6230,62050
,4,6231,62055
,4,6232,62060
,4,6233,62065
,4,6234,62070
,4,6235,62075
,4,6236,62080
,4,6237,62085
,4,6238,62090
,4,6239,62095
,4,6240,62100
,4,6241,62105
,4,6242,62110
,4,6243,62115
,4,6244,62120
,4,6245,62125
,4,6246,62130
,4,6247,62135
,4,6248,62140
,4,6249,62145
,4,6250,62150
,4,6251,62155
,4,6252,62160
,4,6253,62165
,4,6254,62170
,4,6255,62175
,4,6256,62180
,4,6257,62185
,4,6258,62190
,4,6259,62195
,4,6260,62200
,4,6261,62205
,4,6262,62210
,4,6263,62215
,4,6264,62220
,4,6265,62225
,4,6266,62230
,4,6267,62235
,4,6268,62240
,4,6269,62245
,4,6270,62250
,4,6271,62255
,4,6272,62260
,4,6273,62265
,4,6274,62270
,4,6275,62275
,4,6276,62280
,4,6277,62285
,4,6278,62290
,4,6279,62295
,4,6280,62300
,4,6281,62305
,4,6282,62310
,4,6283,62315
,4,6284,62320
,4,6285,62325
,4,6286,62330
,4,6287,62335
,4,6288,62340
,4,6289,62345
,4,6290,62350
,4,6291,62355
,4,6292,62360
,4,6293,62365
,4,6294,62370
,4,6295,62375
,4,6296,62380
,4,6297,62385
,4,6298,62390
,4,6299,62395
,4,6300,62400
,4,6301,62405
,4,6302,62410
,4,6303,62415
,4,6304,62420
,4,6305,62425
,4,6306,62430
,4,6307,62435
,4,6308,62440
,4,6309,62445
,4,6310,62450
,4,6311,62455
,4,6312,62460
,4,6313,62465
,4,6314,62470
,4,6315,62475
,4,6316,62480
,4,6317,62485
,4,6318,62490
,4,6319,62495
,4,6320,62500
,4,6321,62505
,4,6322,62510
,4,6323,62515
,4,6324,62520
,4,6325,62525
,4,6326,62530
,4,6327,62535
,4,6328,62540
,4,6329,62545
,4,6330,62550
,4,6331,62555
,4,6332,62560
,4,6333,62565
,4,6334,62570
,4,6335,62575
,4,6336,62580
,4,6337,62585
,4,6338,62590
,4,6339,62595
,4,6340,62600
,4,6341,62605
,4,6342,62610
,4,6343,62615
,4,6344,62620
,4,6345,62625
,4,6346,62630
,4,6347,62635
,4,6348,62640
,4,6349,62645
,4,6350,62650
,4,6351,62655
,4,6352,62660
,4,6353,62665
,4,6354,62670
,4,6355,62675
,4,6356,62680
,4,6357,62685
,4,6358,62690
,4,6359,62695
,4,6360,62700
,4,6361,62705
,4,6362,62710
,4,6363,62715
,4,6364,62720
,4,6365,62725
,4,6366,62730
,4,6367,62735
,4,6368,62740
,4,6369,62745
,4,6370,62750
,4,6371,62755
,4,6372,62760
,4,6373,62765
,4,6374,62770
,4,6375,62775
,4,6376,62780
,4,6377,62785
,4,6378,62790
,4,6379,62795
,4,6380,62800
,4,6381,62805
,4,6382,62810
,4,6383,62815
,4,6384,62820
,4,6385,62825
,4,6386,62830
,4,6387,62835
,4,6388,62840
,4,6389,62845
,4,6390,62850
,4,6391,62855
,4,6392,62860
,4,6393,62865
,4,6394,62870
,4,6395,62875
,4,6396,62880
,4,6397,62885
,4,6398,62890
,4,6399,62895
,4,6400,62900
,4,6401,62905
,4,6402,62910
,4,6403,62915
,4,6404,62920
,4,6405,62925
,4,6406,62930
,4,6407,62935
,4,6408,62940
,4,6409,62945
,4,6410,62950
,4,6411,62955
,4,6412,62960
,4,6413,62965
,4,6414,62970
,4,6415,62975
,4,6416,62980
,4,6417,62985
,4,6418,62990
,4,6419,62995
,4,6420,63000
,4,6421,63005
,4,6422,63010
,4,6423,63015
,4,6424,63020
,4,6425,63025
,4,6426,63030
,4,6427,63035
,4,6428,63040
,4,6429,63045
,4,6430,63050
,4,6431,63055
,4,6432,63060
,4,6433,63065
,4,6434,63070
,4,6435,63075
,4,6436,63080
,4,6437,63085
,4,6438,63090
,4,6439,63095
,4,6440,63100
,4,6441,63105
,4,6442,63110
,4,6443,63115
,4,6444,63120
,4,6445,63125
,4,6446,63130
,4,6447,63135
,4,6448,63140
,4,6449,63145
,4,6450,63150
,4,6451,63155
,4,6452,63160
,4,6453,63165
,4,6454,63170
,4,6455,63175
,4,6456,63180
,4,6457,63185
,4,6458,63190
,4,6459,63195
,4,6460,63200
,4,6461,63205
,4,6462,63210
,4,6463,63215
,4,6464,63220
,4,6465,63225
,4,6466,63230
,4,6467,63235
,4,6468,63240
,4,6469,63245
,4,6470,63250
,4,6471,63255
,4,6472,63260
,4,6473,63265
,4,6474,63270
,4,6475,63275
,4,6476,63280
,4,6477,63285
,4,6478,63290
,4,6479,63295
,4,6480,63300
,4,6481,63305
,4,6482,63310
,4,6483,63315
,4,6484,63320
,4,6485,63325
,4,6486,63330
,4,6487,63335
,4,6488,63340
,4,6489,63345
,4,6490,63350
,4,6491,63355
,4,6492,63360
,4,6493,63365
,4,6494,63370
,4,6495,63375
,4,6496,63380
,4,6497,63385
,4,6498,63390
,4,6499,63395
,4,6500,63400
,4,6501,63405
,4,6502,63410
,4,6503,63415
,4,6504,63420
,4,6505,63425
,4,6506,63430
,4,6507,63435
,4,6508,63440
,4,6509,63445
,4,6510,63450
,4,6511,63455
,4,6512,63460
,4,6513,63465
,4,6514,63470
,4,6515,63475
,4,6516,63480
,4,6517,63485
,4,6518,63490
,4,6519,63495
,4,6520,63500
,4,6521,63505
,4,6522,63510
,4,6523,63515
,4,6524,63520
,4,6525,63525
,4,6526,63530
,4,6527,63535
,4,6528,63540
,4,6529,63545
,4,6530,63550
,4,6531,63555
,4,6532,63560
,4,6533,63565
,4,6534,63570
,4,6535,63575
,4,6536,63580
,4,6537,63585
,4,6538,63590
,4,6539,63595
,4,6540,63600
,4,6541,63605
,4,6542,63610
,4,6543,63615
,4,6544,63620
,4,6545,63625
,4,6546,63630
,4,6547,63635
,4,6548,63640
,4,6549,63645
,4,6550,63650
,4,6551,63655
,4,6552,63660
,4,6553,63665
,4,6554,63670
,4,6555,63675
,4,6556,63680
,4,6557,63685
,4,6558,63690
,4,6559,63695
,4,6560,63700
,4,6561,63705
,4,6562,63710
,4,6563,63715
,4,6564,63720
,4,6565,63725
,4,6566,63730
,4,6567,63735
,4,6568,63740
,4,6569,63745
,4,6570,63750
,4,6571,63755
,4,6572,63760
,4,6573,63765
,4,6574,63770
,4,6575,63775
,4,6576,63780
,4,6577,63785
,4,6578,63790
,4,6579,63795
,4,6580,63800
,4,6581,63805
,4,6582,63810
,4,6583,63815
,4,6584,63820
,4,6585,63825
,4,6586,63830
,4,6587,63835
,4,6588,63840
,4,6589,63845
,4,6590,63850
,4,6591,63855
,4,6592,63860
,4,6593,63865
,4,6594,63870
,4,6595,63875
,4,6596,63880
,4,6597,63885
,4,6598,63890
,4,6599,63895
,4,6600,63900
,4,6601,63905
,4,6602,63910
,4,6603,63915
,4,6604,63920
,4,6605,63925
,4,6606,63930
,4,6607,63935
,4,6608,63940
,4,6609,63945
,4,6610,63950
,4,6611,63955
,4,6612,63960
,4,6613,63965
,4,6614,63970
,4,6615,63975
,4,6616,63980
,4,6617,63985
,4,6618,63990
,4,6619,63995
,4,6620,64000
,4,6621,64005
,4,6622,64010
,4,6623,64015
,4,6624,64020
,4,6625,64025
,4,6626,64030
,4,6627,64035
,4,6628,64040
,4,6629,64045
,4,6630,64050
,4,6631,64055
,4,6632,64060
,4,6633,64065
,4,6634,64070
,4,6635,64075
,4,6636,64080
,4,6637,64085
,4,6638,64090
,4,6639,64095
,4,6640,64100
,4,6641,64105
,4,6642,64110
,4,6643,64115
,4,6644,64120
,4,6645,64125
,4,6646,64130
,4,6647,64135
,4,6648,64140
,4,6649,64145
,4,6650,64150
,4,6651,64155
,4,6652,64160
,4,6653,64165
,4,6654,64170
,4,6655,64175
,4,6656,64180
,4,6657,64185
,4,6658,64190
,4,6659,64195
,4,6660,64200
,4,6661,64205
,4,6662,64210
,4,6663,64215
,4,6664,64220
,4,6665,64225
,4,6666,64230
,4,6667,64235
,4,6668,64240
,4,6669,64245
,4,6670,64250
,4,6671,64255
,4,6672,64260
,4,6673,64265
,4,6674,64270
,4,6675,64275
,4,6676,64280
,4,6677,64285
,4,6678,64290
,4,6679,64295
,4,6680,64300
,4,6681,64305
,4,6682,64310
,4,6683,64315
,4,6684,64320
,4,6685,64325
,4,6686,64330
,4,6687,64335
,4,6688,64340
,4,6689,64345
,4,6690,64350
,4,6691,64355
,4,6692,64360
,4,6693,64365
,4,6694,64370
,4,6695,64375
,4,6696,64380
,4,6697,64385
,4,6698,64390
,4,6699,64395
,4,6700,64400
,4,6701,64405
,4,6702,64410
,4,6703,64415
,4,6704,64420
,4,6705,64425
,4,6706,64430
,4,6707,64435
,4,6708,64440
,4,6709,64445
,4,6710,64450
,4,6711,64455
,4,6712,64460
,4,6713,64465
,4,6714,64470
,4,6715,64475
,4,6716,64480
,4,6717,64485
,4,6718,64490
,4,6719,64495
,4,6720,64500
,4,6721,64505
,4,6722,64510
,4,6723,64515
,4,6724,64520
,4,6725,64525
,4,6726,64530
,4,6727,64535
,4,6728,64540
,4,6729,64545
,4,6730,64550
,4,6731,64555
,4,6732,64560
,4,6733,64565
,4,6734,64570
,4,6735,64575
,4,6736,64580
,4,6737,64585
,4,6738,64590
,4,6739,64595
,4,6740,64600
,4,6741,64605
,4,6742,64610
,4,6743,64615
,4,6744,64620
,4,6745,64625
,4,6746,64630
,4,6747,64635
,4,6748,64640
,4,6749,64645
,4,6750,64650
,4,6751,64655
,4,6752,64660
,4,6753,64665
,4,6754,64670
,4,6755,64675
,4,6756,64680
,4,6757,64685
,4,6758,64690
,4,6759,64695
,4,6760,64700
,4,6761,64705
,4,6762,64710
,4,6763,64715
,4,6764,64720
,4,6765,64725
,4,6766,64730
,4,6767,64735
,4,6768,64740
,4,6769,64745
,4,6770,64750
,4,6771,64755
,4,6772,64760
,4,6773,64765
,4,6774,64770
,4,6775,64775
,4,6776,64780
,4,6777,64785
,4,6778,64790
,4,6779,64795
,4,6780,64800
,4,6781,64805
,4,6782,64810
,4,6783,64815
,4,6784,64820
,4,6785,64825
,4,6786,64830
,4,6787,64835
,4,6788,64840
,4,6789,64845
,4,6790,64850
,4,6791,64855
,4,6792,64860
,4,6793,64865
,4,6794,64870
,4,6795,64875
,4,6796,64880
,4,6797,64885
,4,6798,64890
,4,6799,64895
,4,6800,64900
,4,6801,64905
,4,6802,64910
,4,6803,64915
,4,6804,64920
,4,6805,64925
,4,6806,64930
,4,6807,64935
,4,6808,64940
,4,6809,64945
,4,6810,64950
,4,6811,64955
,4,6812,64960
,4,6813,64965
,4,6814,64970
,4,6815,64975
,4,6816,64980
,4,6817,64985
,4,6818,64990
,4,6819,64995
,4,6820,65000
,4,6821,65005
,4,6822,65010
,4,6823,65015
,4,6824,65020
,4,6825,65025
,4,6826,65030
,4,6827,65035
,4,6828,65040
,4,6829,65045
,4,6830,65050
,4,6831,65055
,4,6832,65060
,4,6833,65065
,4,6834,65070
,4,6835,65075
,4,6836,65080
,4,6837,65085
,4,6838,65090
,4,6839,65095
,4,6840,65100
,4,6841,65105
,4,6842,65110
,4,6843,65115
,4,6844,65120
,4,6845,65125
,4,6846,65130
,4,6847,65135
,4,6848,65140
,4,6849,65145
,4,6850,65150
,4,6851,65155
,4,6852,65160
,4,6853,65165
,4,6854,65170
,4,6855,65175
,4,6856,65180
,4,6857,65185
,4,6858,65190
,4,6859,65195
,4,6860,65200
,4,6861,65205
,4,6862,65210
,4,6863,65215
,4,6864,65220
,4,6865,65225
,4,6866,65230
,4,6867,65235
,4,6868,65240
,4,6869,65245
,4,6870,65250
,4,6871,65255
,4,6872,65260
,4,6873,65265
,4,6874,65270
,4,6875,65275
,4,6876,65280
,4,6877,65285
,4,6878,65290
,4,6879,65295
,4,6880,65300
,4,6881,65305
,4,6882,65310
,4,6883,65315
,4,6884,65320
,4,6885,65325
,4,6886,65330
,4,6887,65335
,4,6888,65340
,4,6889,65345
,4,6890,65350
,4,6891,65355
,4,6892,65360
,4,6893,65365
,4,6894,65370
,4,6895,65375
,4,6896,65380
,4,6897,65385
,4,6898,65390
,4,6899,65395
,4,6900,65400
,4,6901,65405
,4,6902,65410
,4,6903,65415
,4,6904,65420
,4,6905,65425
,4,6906,65430
,4,6907,65435
,4,6908,65440
,4,6909,65445
,4,6910,65450
,4,6911,65455
,4,6912,65460
,4,6913,65465
,4,6914,65470
,4,6915,65475
,4,6916,65480
,4,6917,65485
,4,6918,65490
,4,6919,65495
,4,6920,65500
,4,6921,65505
,4,6922,65510
,4,6923,65515
,4,6924,65520
,4,6925,65525
,4,6926,65530
,4,6927,65535
,4,6928,65540
,4,6929,65545
,4,6930,65550
,4,6931,65555
,4,6932,65560
,4,6933,65565
,4,6934,65570
,4,6935,65575
,4,6936,65580
,4,6937,65585
,4,6938,65590
,4,6939,65595
,4,6940,65600
,4,6941,65605
,4,6942,65610
,4,6943,65615
,4,6944,65620
,4,6945,65625
,4,6946,65630
,4,6947,65635
,4,6948,65640
,4,6949,65645
,4,6950,65650
,4,6951,65655
,4,6952,65660
,4,6953,65665
,4,6954,65670
,4,6955,65675
,4,6956,65680
,4,6957,65685
,4,6958,65690
,4,6959,65695
,4,6960,65700
,4,6961,65705
,4,6962,65710
,4,6963,65715
,4,6964,65720
,4,6965,65725
,4,6966,65730
,4,6967,65735
,4,6968,65740
,4,6969,65745
,4,6970,65750
,4,6971,65755
,4,6972,65760
,4,6973,65765
,4,6974,65770
,4,6975,65775
,4,6976,65780
,4,6977,65785
,4,6978,65790
,4,6979,65795
,4,6980,65800
,4,6981,65805
,4,6982,65810
,4,6983,65815
,4,6984,65820
,4,6985,65825
,4,6986,65830
,4,6987,65835
,4,6988,65840
,4,6989,65845
,4,6990,65850
,4,6991,65855
,4,6992,65860
,4,6993,65865
,4,6994,65870
,4,6995,65875
,4,6996,65880
,4,6997,65885
,4,6998,65890
,4,6999,65895
,4,7000,65900
,4,7001,65905
,4,7002,65910
,4,7003,65915
,4,7004,65920
,4,7005,65925
,4,7006,65930
,4,7007,65935
,4,7008,65940
,4,7009,65945
,4,7010,65950
,4,7011,65955
,4,7012,65960
,4,7013,65965
,4,7014,65970
,4,7015,65975
,4,7016,65980
,4,7017,65985
,4,7018,65990
,4,7019,65995
,4,7020,66000
,4,7021,66005
,4,7022,66010
,4,7023,66015
,4,7024,66020
,4,7025,66025
,4,7026,66030
,4,7027,66035
,4,7028,66040
,4,7029,66045
,4,7030,66050
,4,7031,66055
,4,7032,66060
,4,7033,66065
,4,7034,66070
,4,7035,66075
,4,7036,66080
,4,7037,66085
,4,7038,66090
,4,7039,66095
,4,7040,66100
,4,7041,66105
,4,7042,66110
,4,7043,66115
,4,7044,66120
,4,7045,66125
,4,7046,66130
,4,7047,66135
,4,7048,66140
,4,7049,66145
,4,7050,66150
,4,7051,66155
,4,7052,66160
,4,7053,66165
,4,7054,66170
,4,7055,66175
,4,7056,66180
,4,7057,66185
,4,7058,66190
,4,7059,66195
,4,7060,66200
,4,7061,66205
,4,7062,66210
,4,7063,66215
,4,7064,66220
,4,7065,66225
,4,7066,66230
,4,7067,66235
,4,7068,66240
,4,7069,66245
,4,7070,66250
,4,7071,66255
,4,7072,66260
,4,7073,66265
,4,7074,66270
,4,7075,66275
,4,7076,66280
,4,7077,66285
,4,7078,66290
,4,7079,66295
,4,7080,66300
,4,7081,66305
,4,7082,66310
,4,7083,66315
,4,7084,66320
,4,7085,66325
,4,7086,66330
,4,7087,66335
,4,7088,66340
,4,7089,66345
,4,7090,66350
,4,7091,66355
,4,7092,66360
,4,7093,66365
,4,7094,66370
,4,7095,66375
,4,7096,66380
,4,7097,66385
,4,7098,66390
,4,7099,66395
,4,7100,66400
,4,7101,66405
,4,7102,66410
,4,7103,66415
,4,7104,66420
,4,7105,66425
,4,7106,66430
,4,7107,66435
,4,7108,66440
,4,7109,66445
,4,7110,66450
,4,7111,66455
,4,7112,66460
,4,7113,66465
,4,7114,66470
,4,7115,66475
,4,7116,66480
,4,7117,66485
,4,7118,66490
,4,7119,66495
,4,7120,66500
,4,7121,66505
,4,7122,66510
,4,7123,66515
,4,7124,66520
,4,7125,66525
,4,7126,66530
,4,7127,66535
,4,7128,66540
,4,7129,66545
,4,7130,66550
,4,7131,66555
,4,7132,66560
,4,7133,66565
,4,7134,66570
,4,7135,66575
,4,7136,66580
,4,7137,66585
,4,7138,66590
,4,7139,66595
,4,7140,66600
,4,7141,66605
,4,7142,66610
,4,7143,66615
,4,7144,66620
,4,7145,66625
,4,7146,66630
,4,7147,66635
,4,7148,66640
,4,7149,66645
,4,7150,66650
,4,7151,66655
,4,7152,66660
,4,7153,66665
,4,7154,66670
,4,7155,66675
,4,7156,66680
,4,7157,66685
,4,7158,66690
,4,7159,66695
,4,7160,66700
,4,7161,66705
,4,7162,66710
,4,7163,66715
,4,7164,66720
,4,7165,66725
,4,7166,66730
,4,7167,66735
,4,7168,66740
,4,7169,66745
,4,7170,66750
,4,7171,66755
,4,7172,66760
,4,7173,66765
,4,7174,66770
,4,7175,66775
,4,7176,66780
,4,7177,66785
,4,7178,66790
,4,7179,66795
,4,7180,66800
,4,7181,66805
,4,7182,66810
,4,7183,66815
,4,7184,66820
,4,7185,66825
,4,7186,66830
,4,7187,66835
,4,7188,66840
,4,7189,66845
,4,7190,66850
,4,7191,66855
,4,7192,66860
,4,7193,66865
,4,7194,66870
,4,7195,66875
,4,7196,66880
,4,7197,66885
,4,7198,66890
,4,7199,66895
,4,7200,66900
,4,7201,66905
,4,7202,66910
,4,7203,66915
,4,7204,66920
,4,7205,66925
,4,7206,66930
,4,7207,66935
,4,7208,66940
,4,7209,66945
,4,7210,66950
,4,7211,66955
,4,7212,66960
,4,7213,66965
,4,7214,66970
,4,7215,66975
,4,7216,66980
,4,7217,66985
,4,7218,66990
,4,7219,66995
,4,7220,67000
,4,7221,67005
,4,7222,67010
,4,7223,67015
,4,7224,67020
,4,7225,67025
,4,7226,67030
,4,7227,67035
,4,7228,67040
,4,7229,67045
,4,7230,67050
,4,7231,67055
,4,7232,67060
,4,7233,67065
,4,7234,67070
,4,7235,67075
,4,7236,67080
,4,7237,67085
,4,7238,67090
,4,7239,67095
,4,7240,67100
,4,7241,67105
,4,7242,67110
,4,7243,67115
,4,7244,67120
,4,7245,67125
,4,7246,67130
,4,7247,67135
,4,7248,67140
,4,7249,67145
,4,7250,67150
,4,7251,67155
,4,7252,67160
,4,7253,67165
,4,7254,67170
,4,7255,67175
,4,7256,67180
,4,7257,67185
,4,7258,67190
,4,7259,67195
,4,7260,67200
,4,7261,67205
,4,7262,67210
,4,7263,67215
,4,7264,67220
,4,7265,67225
,4,7266,67230
,4,7267,67235
,4,7268,67240
,4,7269,67245
,4,7270,67250
,4,7271,67255
,4,7272,67260
,4,7273,67265
,4,7274,67270
,4,7275,67275
,4,7276,67280
,4,7277,67285
,4,7278,67290
,4,7279,67295
,4,7280,67300
,4,7281,67305
,4,7282,67310
,4,7283,67315
,4,7284,67320
,4,7285,67325
,4,7286,67330
,4,7287,67335
,4,7288,67340
,4,7289,67345
,4,7290,67350
,4,7291,67355
,4,7292,67360
,4,7293,67365
,4,7294,67370
,4,7295,67375
,4,7296,67380
,4,7297,67385
,4,7298,67390
,4,7299,67395
,4,7300,67400
,4,7301,67405
,4,7302,67410
,4,7303,67415
,4,7304,67420
,4,7305,67425
,4,7306,67430
,4,7307,67435
,4,7308,67440
,4,7309,67445
,4,7310,67450
,4,7311,67455
,4,7312,67460
,4,7313,67465
,4,7314,67470
,4,7315,67475
,4,7316,67480
,4,7317,67485
,4,7318,67490
,4,7319,67495
,4,7320,67500
,4,7321,67505
,4,7322,67510
,4,7323,67515
,4,7324,67520
,4,7325,67525
,4,7326,67530
,4,7327,67535
,4,7328,67540
,4,7329,67545
,4,7330,67550
,4,7331,67555
,4,7332,67560
,4,7333,67565
,4,7334,67570
,4,7335,67575
,4,7336,67580
,4,7337,67585
,4,7338,67590
,4,7339,67595
,4,7340,67600
,4,7341,67605
,4,7342,67610
,4,7343,67615
,4,7344,67620
,4,7345,67625
,4,7346,67630
,4,7347,67635
,4,7348,67640
,4,7349,67645
,4,7350,67650
,4,7351,67655
,4,7352,67660
,4,7353,67665
,4,7354,67670
,4,7355,67675
,4,7356,67680
,4,7357,67685
,4,7358,67690
,4,7359,67695
,4,7360,67700
,4,7361,67705
,4,7362,67710
,4,7363,67715
,4,7364,67720
,4,7365,67725
,4,7366,67730
,4,7367,67735
,4,7368,67740
,4,7369,67745
,4,7370,67750
,4,7371,67755
,4,7372,67760
,4,7373,67765
,4,7374,67770
,4,7375,67775
,4,7376,67780
,4,7377,67785
,4,7378,67790
,4,7379,67795
,4,7380,67800
,4,7381,67805
,4,7382,67810
,4,7383,67815
,4,7384,67820
,4,7385,67825
,4,7386,67830
,4,7387,67835
,4,7388,67840
,4,7389,67845
,4,7390,67850
,4,7391,67855
,4,7392,67860
,4,7393,67865
,4,7394,67870
,4,7395,67875
,4,7396,67880
,4,7397,67885
,4,7398,67890
,4,7399,67895
,4,7400,67900
,4,7401,67905
,4,7402,67910
,4,7403,67915
,4,7404,67920
,4,7405,67925
,4,7406,67930
,4,7407,67935
,4,7408,67940
,4,7409,67945
,4,7410,67950
,4,7411,67955
,4,7412,67960
,4,7413,67965
,4,7414,67970
,4,7415,67975
,4,7416,67980
,4,7417,67985
,4,7418,67990
,4,7419,67995
,4,7420,68000
,4,7421,68005
,4,7422,68010
,4,7423,68015
,4,7424,68020
,4,7425,68025
,4,7426,68030
,4,7427,68035
,4,7428,68040
,4,7429,68045
,4,7430,68050
,4,7431,68055
,4,7432,68060
,4,7433,68065
,4,7434,68070
,4,7435,68075
,4,7436,68080
,4,7437,68085
,4,7438,68090
,4,7439,68095
,4,7440,68100
,4,7441,68105
,4,7442,68110
,4,7443,68115
,4,7444,68120
,4,7445,68125
,4,7446,68130
,4,7447,68135
,4,7448,68140
,4,7449,68145
,4,7450,68150
,4,7451,68155
,4,7452,68160
,4,7453,68165
,4,7454,68170
,4,7455,68175
,4,7456,68180
,4,7457,68185
,4,7458,68190
,4,7459,68195
,4,7460,68200
,4,7461,68205
,4,7462,68210
,4,7463,68215
,4,7464,68220
,4,7465,68225
,4,7466,68230
,4,7467,68235
,4,7468,68240
,4,7469,68245
,4,7470,68250
,4,7471,68255
,4,7472,68260
,4,7473,68265
,4,7474,68270
,4,7475,68275
,4,7476,68280
,4,7477,68285
,4,7478,68290
,4,7479,68295
,4,7480,68300
,4,7481,68305
,4,7482,68310
,4,7483,68315
,4,7484,68320
,4,7485,68325
,4,7486,68330
,4,7487,68335
,4,7488,68340
,4,7489,68345
,4,7490,68350
,4,7491,68355
,4,7492,68360
,4,7493,68365
,4,7494,68370
,4,7495,68375
,4,7496,68380
,4,7497,68385
,4,7498,68390
,4,7499,68395
,4,7500,68400
,4,7501,68405
,4,7502,68410
,4,7503,68415
,4,7504,68420
,4,7505,68425
,4,7506,68430
,4,7507,68435
,4,7508,68440
,4,7509,68445
,4,7510,68450
,4,7511,68455
,4,7512,68460
,4,7513,68465
,4,7514,68470
,4,7515,68475
,4,7516,68480
,4,7517,68485
,4,7518,68490
,4,7519,68495
,4,7520,68500
,4,7521,68505
,4,7522,68510
,4,7523,68515
,4,7524,68520
,4,7525,68525
,4,7526,68530
,4,7527,68535
,4,7528,68540
,4,7529,68545
,4,7530,68550
,4,7531,68555
,4,7532,68560
,4,7533,68565
,4,7534,68570
,4,7535,68575
,4,7536,68580
,4,7537,68585
,4,7538,68590
,4,7539,68595
,4,7540,68600
,4,7541,68605
,4,7542,68610
,4,7543,68615
,4,7544,68620
,4,7545,68625
,4,7546,68630
,4,7547,68635
,4,7548,68640
,4,7549,68645
,4,7550,68650
,4,7551,68655
,4,7552,68660
,4,7553,68665
,4,7554,68670
,4,7555,68675
,4,7556,68680
,4,7557,68685
,4,7558,68690
,4,7559,68695
,4,7560,68700
,4,7561,68705
,4,7562,68710
,4,7563,68715
,4,7564,68720
,4,7565,68725
,4,7566,68730
,4,7567,68735
,4,7568,68740
,4,7569,68745
,4,7570,68750
,4,7571,68755
,4,7572,68760
,4,7573,68765
,4,7574,68770
,4,7575,68775
,4,7576,68780
,4,7577,68785
,4,7578,68790
,4,7579,68795
,4,7580,68800
,4,7581,68805
,4,7582,68810
,4,7583,68815
,4,7584,68820
,4,7585,68825
,4,7586,68830
,4,7587,68835
,4,7588,68840
,4,7589,68845
,4,7590,68850
,4,7591,68855
,4,7592,68860
,4,7593,68865
,4,7594,68870
,4,7595,68875
,4,7596,68880
,4,7597,68885
,4,7598,68890
,4,7599,68895
,4,7600,68900
,4,7601,68905
,4,7602,68910
,4,7603,68915
,4,7604,68920
,4,7605,68925
,4,7606,68930
,4,7607,68935
,4,7608,68940
,4,7609,68945
,4,7610,68950
,4,7611,68955
,4,7612,68960
,4,7613,68965
,4,7614,68970
,4,7615,68975
,4,7616,68980
,4,7617,68985
,4,7618,68990
,4,7619,68995
,4,7620,69000
,4,7621,69005
,4,7622,69010
,4,7623,69015
,4,7624,69020
,4,7625,69025
,4,7626,69030
,4,7627,69035
,4,7628,69040
,4,7629,69045
,4,7630,69050
,4,7631,69055
,4,7632,69060
,4,7633,69065
,4,7634,69070
,4,7635,69075
,4,7636,69080
,4,7637,69085
,4,7638,69090
,4,7639,69095
,4,7640,69100
,4,7641,69105
,4,7642,69110
,4,7643,69115
,4,7644,69120
,4,7645,69125
,4,7646,69130
,4,7647,69135
,4,7648,69140
,4,7649,69145
,4,7650,69150
,4,7651,69155
,4,7652,69160
,4,7653,69165
,4,7654,69170
,4,7655,69175
,4,7656,69180
,4,7657,69185
,4,7658,69190
,4,7659,69195
,4,7660,69200
,4,7661,69205
,4,7662,69210
,4,7663,69215
,4,7664,69220
,4,7665,69225
,4,7666,69230
,4,7667,69235
,4,7668,69240
,4,7669,69245
,4,7670,69250
,4,7671,69255
,4,7672,69260
,4,7673,69265
,4,7674,69270
,4,7675,69275
,4,7676,69280
,4,7677,69285
,4,7678,69290
,4,7679,69295
,4,7680,69300
,4,7681,69305
,4,7682,69310
,4,7683,69315
,4,7684,69320
,4,7685,69325
,4,7686,69330
,4,7687,69335
,4,7688,69340
,4,7689,69345
,4,7690,69350
,4,7691,69355
,4,7692,69360
,4,7693,69365
,4,7694,69370
,4,7695,69375
,4,7696,69380
,4,7697,69385
,4,7698,69390
,4,7699,69395
,4,7700,69400
,4,7701,69405
,4,7702,69410
,4,7703,69415
,4,7704,69420
,4,7705,69425
,4,7706,69430
,4,7707,69435
,4,7708,69440
,4,7709,69445
,4,7710,69450
,4,7711,69455
,4,7712,69460
,4,7713,69465
,4,7714,69470
,4,7715,69475
,4,7716,69480
,4,7717,69485
,4,7718,69490
,4,7719,69495
,4,7720,69500
,4,7721,69505
,4,7722,69510
,4,7723,69515
,4,7724,69520
,4,7725,69525
,4,7726,69530
,4,7727,69535
,4,7728,69540
,4,7729,69545
,4,7730,69550
,4,7731,69555
,4,7732,69560
,4,7733,69565
,4,7734,69570
,4,7735,69575
,4,7736,69580
,4,7737,69585
,4,7738,69590
,4,7739,69595
,4,7740,69600
,4,7741,69605
,4,7742,69610
,4,7743,69615
,4,7744,69620
,4,7745,69625
,4,7746,69630
,4,7747,69635
,4,7748,69640
,4,7749,69645
,4,7750,69650
,4,7751,69655
,4,7752,69660
,4,7753,69665
,4,7754,69670
,4,7755,69675
,4,7756,69680
,4,7757,69685
,4,7758,69690
,4,7759,69695
,4,7760,69700
,4,7761,69705
,4,7762,69710
,4,7763,69715
,4,7764,69720
,4,7765,69725
,4,7766,69730
,4,7767,69735
,4,7768,69740
,4,7769,69745
,4,7770,69750
,4,7771,69755
,4,7772,69760
,4,7773,69765
,4,7774,69770
,4,7775,69775
,4,7776,69780
,4,7777,69785
,4,7778,69790
,4,7779,69795
,4,7780,69800
,4,7781,69805
,4,7782,69810
,4,7783,69815
,4,7784,69820
,4,7785,69825
,4,7786,69830
,4,7787,69835
,4,7788,69840
,4,7789,69845
,4,7790,69850
,4,7791,69855
,4,7792,69860
,4,7793,69865
,4,7794,69870
,4,7795,69875
,4,7796,69880
,4,7797,69885
,4,7798,69890
,4,7799,69895
,4,7800,69900
,4,7801,69905
,4,7802,69910
,4,7803,69915
,4,7804,69920
,4,7805,69925
,4,7806,69930
,4,7807,69935
,4,7808,69940
,4,7809,69945
,4,7810,69950
,4,7811,69955
,4,7812,69960
,4,7813,69965
,4,7814,69970
,4,7815,69975
,4,7816,69980
,4,7817,69985
,4,7818,69990
,4,7819,69995
,4,7820,70000
,4,7821,70005
,4,7822,70010
,4,7823,70015
,4,7824,70020
,4,7825,70025
,4,7826,70030
,4,7827,70035
,4,7828,70040
,4,7829,70045
,4,7830,70050
,4,7831,70055
,4,7832,70060
,4,7833,70065
,4,7834,70070
,4,7835,70075
,4,7836,70080
,4,7837,70085
,4,7838,70090
,4,7839,70095
,4,7840,70100
,4,7841,70105
,4,7842,70110
,4,7843,70115
,4,7844,70120
,4,7845,70125
,4,7846,70130
,4,7847,70135
,4,7848,70140
,4,7849,70145
,4,7850,70150
,4,7851,70155
,4,7852,70160
,4,7853,70165
,4,7854,70170
,4,7855,70175
,4,7856,70180
,4,7857,70185
,4,7858,70190
,4,7859,70195
,4,7860,70200
,4,7861,70205
,4,7862,70210
,4,7863,70215
,4,7864,70220
,4,7865,70225
,4,7866,70230
,4,7867,70235
,4,7868,70240
,4,7869,70245
,4,7870,70250
,4,7871,70255
,4,7872,70260
,4,7873,70265
,4,7874,70270
,4,7875,70275
,4,7876,70280
,4,7877,70285
,4,7878,70290
,4,7879,70295
,4,7880,70300
,4,7881,70305
,4,7882,70310
,4,7883,70315
,4,7884,70320
,4,7885,70325
,4,7886,70330
,4,7887,70335
,4,7888,70340
,4,7889,70345
,4,7890,70350
,4,7891,70355
,4,7892,70360
,4,7893,70365
,4,7894,70370
,4,7895,70375
,4,7896,70380
,4,7897,70385
,4,7898,70390
,4,7899,70395
,4,7900,70400
,4,7901,70405
,4,7902,70410
,4,7903,70415
,4,7904,70420
,4,7905,70425
,4,7906,70430
,4,7907,70435
,4,7908,70440
,4,7909,70445
,4,7910,70450
,4,7911,70455
,4,7912,70460
,4,7913,70465
,4,7914,70470
,4,7915,70475
,4,7916,70480
,4,7917,70485
,4,7918,70490
,4,7919,70495
,4,7920,70500
,4,7921,70505
,4,7922,70510
,4,7923,70515
,4,7924,70520
,4,7925,70525
,4,7926,70530
,4,7927,70535
,4,7928,70540
,4,7929,70545
,4,7930,70550
,4,7931,70555
,4,7932,70560
,4,7933,70565
,4,7934,70570
,4,7935,70575
,4,7936,70580
,4,7937,70585
,4,7938,70590
,4,7939,70595
,4,7940,70600
,4,7941,70605
,4,7942,70610
,4,7943,70615
,4,7944,70620
,4,7945,70625
,4,7946,70630
,4,7947,70635
,4,7948,70640
,4,7949,70645
,4,7950,70650
,4,7951,70655
,4,7952,70660
,4,7953,70665
,4,7954,70670
,4,7955,70675
,4,7956,70680
,4,7957,70685
,4,7958,70690
,4,7959,70695
,4,7960,70700
,4,7961,70705
,4,7962,70710
,4,7963,70715
,4,7964,70720
,4,7965,70725
,4,7966,70730
,4,7967,70735
,4,7968,70740
,4,7969,70745
,4,7970,70750
,4,7971,70755
,4,7972,70760
,4,7973,70765
,4,7974,70770
,4,7975,70775
,4,7976,70780
,4,7977,70785
,4,7978,70790
,4,7979,70795
,4,7980,70800
,4,7981,70805
,4,7982,70810
,4,7983,70815
,4,7984,70820
,4,7985,70825
,4,7986,70830
,4,7987,70835
,4,7988,70840
,4,7989,70845
,4,7990,70850
,4,7991,70855
,4,7992,70860
,4,7993,70865
,4,7994,70870
,4,7995,70875
,4,7996,70880
,4,7997,70885
,4,7998,70890
,4,7999,70895
,4,8000,70900
,4,8001,70905
,4,8002,70910
,4,8003,70915
,4,8004,70920
,4,8005,70925
,4,8006,70930
,4,8007,70935
,4,8008,70940
,4,8009,70945
,4,8010,70950
,4,8011,70955
,4,8012,70960
,4,8013,70965
,4,8014,70970
,4,8015,70975
,4,8016,70980
,4,8017,70985
,4,8018,70990
,4,8019,70995
,4,8020,71000
,4,8021,71005
,4,8022,71010
,4,8023,71015
,4,8024,71020
,4,8025,71025
,4,8026,71030
,4,8027,71035
,4,8028,71040
,4,8029,71045
,4,8030,71050
,4,8031,71055
,4,8032,71060
,4,8033,71065
,4,8034,71070
,4,8035,71075
,4,8036,71080
,4,8037,71085
,4,8038,71090
,4,8039,71095
,4,8040,71100
,4,8041,71105
,4,8042,71110
,4,8043,71115
,4,8044,71120
,4,8045,71125
,4,8046,71130
,4,8047,71135
,4,8048,71140
,4,8049,71145
,4,8050,71150
,4,8051,71155
,4,8052,71160
,4,8053,71165
,4,8054,71170
,4,8055,71175
,4,8056,71180
,4,8057,71185
,4,8058,71190
,4,8059,71195
,4,8060,71200
,4,8061,71205
,4,8062,71210
,4,8063,71215
,4,8064,71220
,4,8065,71225
,4,8066,71230
,4,8067,71235
,4,8068,71240
,4,8069,71245
,4,8070,71250
,4,8071,71255
,4,8072,71260
,4,8073,71265
,4,8074,71270
,4,8075,71275
,4,8076,71280
,4,8077,71285
,4,8078,71290
,4,8079,71295
,4,8080,71300
,4,8081,71305
,4,8082,71310
,4,8083,71315
,4,8084,71320
,4,8085,71325
,4,8086,71330
,4,8087,71335
,4,8088,71340
,4,8089,71345
,4,8090,71350
,4,8091,71355
,4,8092,71360
,4,8093,71365
,4,8094,71370
,4,8095,71375
,4,8096,71380
,4,8097,71385
,4,8098,71390
,4,8099,71395
,4,8100,71400
,4,8101,71405
,4,8102,71410
,4,8103,71415
,4,8104,71420
,4,8105,71425
,4,8106,71430
,4,8107,71435
,4,8108,71440
,4,8109,71445
,4,8110,71450
,4,8111,71455
,4,8112,71460
,4,8113,71465
,4,8114,71470
,4,8115,71475
,4,8116,71480
,4,8117,71485
,4,8118,71490
,4,8119,71495
,4,8120,71500
,4,8121,71505
,4,8122,71510
,4,8123,71515
,4,8124,71520
,4,8125,71525
,4,8126,71530
,4,8127,71535
,4,8128,71540
,4,8129,71545
,4,8130,71550
,4,8131,71555
,4,8132,71560
,4,8133,71565
,4,8134,71570
,4,8135,71575
,4,8136,71580
,4,8137,71585
,4,8138,71590
,4,8139,71595
,4,8140,71600
,4,8141,71605
,4,8142,71610
,4,8143,71615
,4,8144,71620
,4,8145,71625
,4,8146,71630
,4,8147,71635
,4,8148,71640
,4,8149,71645
,4,8150,71650
,4,8151,71655
,4,8152,71660
,4,8153,71665
,4,8154,71670
,4,8155,71675
,4,8156,71680
,4,8157,71685
,4,8158,71690
,4,8159,71695
,4,8160,71700
,4,8161,71705
,4,8162,71710
,4,8163,71715
,4,8164,71720
,4,8165,71725
,4,8166,71730
,4,8167,71735
,4,8168,71740
,4,8169,71745
,4,8170,71750
,4,8171,71755
,4,8172,71760
,4,8173,71765
,4,8174,71770
,4,8175,71775
,4,8176,71780
,4,8177,71785
,4,8178,71790
,4,8179,71795
,4,8180,71800
,4,8181,71805
,4,8182,71810
,4,8183,71815
,4,8184,71820
,4,8185,71825
,4,8186,71830
,4,8187,71835
,4,8188,71840
,4,8189,71845
,4,8190,71850
,4,8191,71855
,4,8192,71860
,4,8193,71865
,4,8194,71870
,4,8195,71875
,4,8196,71880
,4,8197,71885
,4,8198,71890
,4,8199,71895
,4,8200,71900
,4,8201,71905
,4,8202,71910
,4,8203,71915
,4,8204,71920
,4,8205,71925
,4,8206,71930
,4,8207,71935
,4,8208,71940
,4,8209,71945
,4,8210,71950
,4,8211,71955
,4,8212,71960
,4,8213,71965
,4,8214,71970
,4,8215,71975
,4,8216,71980
,4,8217,71985
,4,8218,71990
,4,8219,71995
,4,8220,72000
,4,8221,72005
,4,8222,72010
,4,8223,72015
,4,8224,72020
,4,8225,72025
,4,8226,72030
,4,8227,72035
,4,8228,72040
,4,8229,72045
,4,8230,72050
,4,8231,72055
,4,8232,72060
,4,8233,72065
,4,8234,72070
,4,8235,72075
,4,8236,72080
,4,8237,72085
,4,8238,72090
,4,8239,72095
,4,8240,72100
,4,8241,72105
,4,8242,72110
,4,8243,72115
,4,8244,72120
,4,8245,72125
,4,8246,72130
,4,8247,72135
,4,8248,72140
,4,8249,72145
,4,8250,72150
,4,8251,72155
,4,8252,72160
,4,8253,72165
,4,8254,72170
,4,8255,72175
,4,8256,72180
,4,8257,72185
,4,8258,72190
,4,8259,72195
,4,8260,72200
,4,8261,72205
,4,8262,72210
,4,8263,72215
,4,8264,72220
,4,8265,72225
,4,8266,72230
,4,8267,72235
,4,8268,72240
,4,8269,72245
,4,8270,72250
,4,8271,72255
,4,8272,72260
,4,8273,72265
,4,8274,72270
,4,8275,72275
,4,8276,72280
,4,8277,72285
,4,8278,72290
,4,8279,72295
,4,8280,72300
,4,8281,72305
,4,8282,72310
,4,8283,72315
,4,8284,72320
,4,8285,72325
,4,8286,72330
,4,8287,72335
,4,8288,72340
,4,8289,72345
,4,8290,72350
,4,8291,72355
,4,8292,72360
,4,8293,72365
,4,8294,72370
,4,8295,72375
,4,8296,72380
,4,8297,72385
,4,8298,72390
,4,8299,72395
,4,8300,72400
,4,8301,72405
,4,8302,72410
,4,8303,72415
,4,8304,72420
,4,8305,72425
,4,8306,72430
,4,8307,72435
,4,8308,72440
,4,8309,72445
,4,8310,72450
,4,8311,72455
,4,8312,72460
,4,8313,72465
,4,8314,72470
,4,8315,72475
,4,8316,72480
,4,8317,72485
,4,8318,72490
,4,8319,72495
,4,8320,72500
,4,8321,72505
,4,8322,72510
,4,8323,72515
,4,8324,72520
,4,8325,72525
,4,8326,72530
,4,8327,72535
,4,8328,72540
,4,8329,72545
,4,8330,72550
,4,8331,72555
,4,8332,72560
,4,8333,72565
,4,8334,72570
,4,8335,72575
,4,8336,72580
,4,8337,72585
,4,8338,72590
,4,8339,72595
,4,8340,72600
,4,8341,72605
,4,8342,72610
,4,8343,72615
,4,8344,72620
,4,8345,72625
,4,8346,72630
,4,8347,72635
,4,8348,72640
,4,8349,72645
,4,8350,72650
,4,8351,72655
,4,8352,72660
,4,8353,72665
,4,8354,72670
,4,8355,72675
,4,8356,72680
,4,8357,72685
,4,8358,72690
,4,8359,72695
,4,8360,72700
,4,8361,72705
,4,8362,72710
,4,8363,72715
,4,8364,72720
,4,8365,72725
,4,8366,72730
,4,8367,72735
,4,8368,72740
,4,8369,72745
,4,8370,72750
,4,8371,72755
,4,8372,72760
,4,8373,72765
,4,8374,72770
,4,8375,72775
,4,8376,72780
,4,8377,72785
,4,8378,72790
,4,8379,72795
,4,8380,72800
,4,8381,72805
,4,8382,72810
,4,8383,72815
,4,8384,72820
,4,8385,72825
,4,8386,72830
,4,8387,72835
,4,8388,72840
,4,8389,72845
,4,8390,72850
,4,8391,72855
,4,8392,72860
,4,8393,72865
,4,8394,72870
,4,8395,72875
,4,8396,72880
,4,8397,72885
,4,8398,72890
,4,8399,72895
,4,8400,72900
,4,8401,72905
,4,8402,72910
,4,8403,72915
,4,8404,72920
,4,8405,72925
,4,8406,72930
,4,8407,72935
,4,8408,72940
,4,8409,72945
,4,8410,72950
,4,8411,72955
,4,8412,72960
,4,8413,72965
,4,8414,72970
,4,8415,72975
,4,8416,72980
,4,8417,72985
,4,8418,72990
,4,8419,72995
,4,8420,73000
,4,8421,73005
,4,8422,73010
,4,8423,73015
,4,8424,73020
,4,8425,73025
,4,8426,73030
,4,8427,73035
,4,8428,73040
,4,8429,73045
,4,8430,73050
,4,8431,73055
,4,8432,73060
,4,8433,73065
,4,8434,73070
,4,8435,73075
,4,8436,73080
,4,8437,73085
,4,8438,73090
,4,8439,73095
,4,8440,73100
,4,8441,73105
,4,8442,73110
,4,8443,73115
,4,8444,73120
,4,8445,73125
,4,8446,73130
,4,8447,73135
,4,8448,73140
,4,8449,73145
,4,8450,73150
,4,8451,73155
,4,8452,73160
,4,8453,73165
,4,8454,73170
,4,8455,73175
,4,8456,73180
,4,8457,73185
,4,8458,73190
,4,8459,73195
,4,8460,73200
,4,8461,73205
,4,8462,73210
,4,8463,73215
,4,8464,73220
,4,8465,73225
,4,8466,73230
,4,8467,73235
,4,8468,73240
,4,8469,73245
,4,8470,73250
,4,8471,73255
,4,8472,73260
,4,8473,73265
,4,8474,73270
,4,8475,73275
,4,8476,73280
,4,8477,73285
,4,8478,73290
,4,8479,73295
,4,8480,73300
,4,8481,73305
,4,8482,73310
,4,8483,73315
,4,8484,73320
,4,8485,73325
,4,8486,73330
,4,8487,73335
,4,8488,73340
,4,8489,73345
,4,8490,73350
,4,8491,73355
,4,8492,73360
,4,8493,73365
,4,8494,73370
,4,8495,73375
,4,8496,73380
,4,8497,73385
,4,8498,73390
,4,8499,73395
,4,8500,73400
,4,8501,73405
,4,8502,73410
,4,8503,73415
,4,8504,73420
,4,8505,73425
,4,8506,73430
,4,8507,73435
,4,8508,73440
,4,8509,73445
,4,8510,73450
,4,8511,73455
,4,8512,73460
,4,8513,73465
,4,8514,73470
,4,8515,73475
,4,8516,73480
,4,8517,73485
,4,8518,73490
,4,8519,73495
,4,8520,73500
,4,8521,73505
,4,8522,73510
,4,8523,73515
,4,8524,73520
,4,8525,73525
,4,8526,73530
,4,8527,73535
,4,8528,73540
,4,8529,73545
,4,8530,73550
,4,8531,73555
,4,8532,73560
,4,8533,73565
,4,8534,73570
,4,8535,73575
,4,8536,73580
,4,8537,73585
,4,8538,73590
,4,8539,73595
,4,8540,73600
,4,8541,73605
,4,8542,73610
,4,8543,73615
,4,8544,73620
,4,8545,73625
,4,8546,73630
,4,8547,73635
,4,8548,73640
,4,8549,73645
,4,8550,73650
,4,8551,73655
,4,8552,73660
,4,8553,73665
,4,8554,73670
,4,8555,73675
,4,8556,73680
,4,8557,73685
,4,8558,73690
,4,8559,73695
,4,8560,73700
,4,8561,73705
,4,8562,73710
,4,8563,73715
,4,8564,73720
,4,8565,73725
,4,8566,73730
,4,8567,73735
,4,8568,73740
,4,8569,73745
,4,8570,73750
,4,8571,73755
,4,8572,73760
,4,8573,73765
,4,8574,73770
,4,8575,73775
,4,8576,73780
,4,8577,73785
,4,8578,73790
,4,8579,73795
,4,8580,73800
,4,8581,73805
,4,8582,73810
,4,8583,73815
,4,8584,73820
,4,8585,73825
,4,8586,73830
,4,8587,73835
,4,8588,73840
,4,8589,73845
,4,8590,73850
,4,8591,73855
,4,8592,73860
,4,8593,73865
,4,8594,73870
,4,8595,73875
,4,8596,73880
,4,8597,73885
,4,8598,73890
,4,8599,73895
,4,8600,73900
,4,8601,73905
,4,8602,73910
,4,8603,73915
,4,8604,73920
,4,8605,73925
,4,8606,73930
,4,8607,73935
,4,8608,73940
,4,8609,73945
,4,8610,73950
,4,8611,73955
,4,8612,73960
,4,8613,73965
,4,8614,73970
,4,8615,73975
,4,8616,73980
,4,8617,73985
,4,8618,73990
,4,8619,73995
,4,8620,74000
,4,8621,74005
,4,8622,74010
,4,8623,74015
,4,8624,74020
,4,8625,74025
,4,8626,74030
,4,8627,74035
,4,8628,74040
,4,8629,74045
,4,8630,74050
,4,8631,74055
,4,8632,74060
,4,8633,74065
,4,8634,74070
,4,8635,74075
,4,8636,74080
,4,8637,74085
,4,8638,74090
,4,8639,74095
,4,8640,74100
,4,8641,74105
,4,8642,74110
,4,8643,74115
,4,8644,74120
,4,8645,74125
,4,8646,74130
,4,8647,74135
,4,8648,74140
,4,8649,74145
,4,8650,74150
,4,8651,74155
,4,8652,74160
,4,8653,74165
,4,8654,74170
,4,8655,74175
,4,8656,74180
,4,8657,74185
,4,8658,74190
,4,8659,74195
,4,8660,74200
,4,8661,74205
,4,8662,74210
,4,8663,74215
,4,8664,74220
,4,8665,74225
,4,8666,74230
,4,8667,74235
,4,8668,74240
,4,8669,74245
,4,8670,74250
,4,8671,74255
,4,8672,74260
,4,8673,74265
,4,8674,74270
,4,8675,74275
,4,8676,74280
,4,8677,74285
,4,8678,74290
,4,8679,74295
,4,8680,74300
,4,8681,74305
,4,8682,74310
,4,8683,74315
,4,8684,74320
,4,8685,74325
,4,8686,74330
,4,8687,74335
,4,8688,74340
,4,8689,74345
,4,8690,74350
,4,8691,74355
,4,8692,74360
,4,8693,74365
,4,8694,74370
,4,8695,74375
,4,8696,74380
,4,8697,74385
,4,8698,74390
,4,8699,74395
,4,8700,74400
,4,8701,74405
,4,8702,74410
,4,8703,74415
,4,8704,74420
,4,8705,74425
,4,8706,74430
,4,8707,74435
,4,8708,74440
,4,8709,74445
,4,8710,74450
,4,8711,74455
,4,8712,74460
,4,8713,74465
,4,8714,74470
,4,8715,74475
,4,8716,74480
,4,8717,74485
,4,8718,74490
,4,8719,74495
,4,8720,74500
,4,8721,74505
,4,8722,74510
,4,8723,74515
,4,8724,74520
,4,8725,74525
,4,8726,74530
,4,8727,74535
,4,8728,74540
,4,8729,74545
,4,8730,74550
,4,8731,74555
,4,8732,74560
,4,8733,74565
,4,8734,74570
,4,8735,74575
,4,8736,74580
,4,8737,74585
,4,8738,74590
,4,8739,74595
,4,8740,74600
,4,8741,74605
,4,8742,74610
,4,8743,74615
,4,8744,74620
,4,8745,74625
,4,8746,74630
,4,8747,74635
,4,8748,74640
,4,8749,74645
,4,8750,74650
,4,8751,74655
,4,8752,74660
,4,8753,74665
,4,8754,74670
,4,8755,74675
,4,8756,74680
,4,8757,74685
,4,8758,74690
,4,8759,74695
,4,8760,74700
,4,8761,74705
,4,8762,74710
,4,8763,74715
,4,8764,74720
,4,8765,74725
,4,8766,74730
,4,8767,74735
,4,8768,74740
,4,8769,74745
,4,8770,74750
,4,8771,74755
,4,8772,74760
,4,8773,74765
,4,8774,74770
,4,8775,74775
,4,8776,74780
,4,8777,74785
,4,8778,74790
,4,8779,74795
,4,8780,74800
,4,8781,74805
,4,8782,74810
,4,8783,74815
,4,8784,74820
,4,8785,74825
,4,8786,74830
,4,8787,74835
,4,8788,74840
,4,8789,74845
,4,8790,74850
,4,8791,74855
,4,8792,74860
,4,8793,74865
,4,8794,74870
,4,8795,74875
,4,8796,74880
,4,8797,74885
,4,8798,74890
,4,8799,74895
,4,8800,74900
,4,8801,74905
,4,8802,74910
,4,8803,74915
,4,8804,74920
,4,8805,74925
,4,8806,74930
,4,8807,74935
,4,8808,74940
,4,8809,74945
,4,8810,74950
,4,8811,74955
,4,8812,74960
,4,8813,74965
,4,8814,74970
,4,8815,74975
,4,8816,74980
,4,8817,74985
,4,8818,74990
,4,8819,74995
,4,8820,75000
,4,8821,75005
,4,8822,75010
,4,8823,75015
,4,8824,75020
,4,8825,75025
,4,8826,75030
,4,8827,75035
,4,8828,75040
,4,8829,75045
,4,8830,75050
,4,8831,75055
,4,8832,75060
,4,8833,75065
,4,8834,75070
,4,8835,75075
,4,8836,75080
,4,8837,75085
,4,8838,75090
,4,8839,75095
,4,8840,75100
,4,8841,75105
,4,8842,75110
,4,8843,75115
,4,8844,75120
,4,8845,75125
,4,8846,75130
,4,8847,75135
,4,8848,75140
,4,8849,75145
,4,8850,75150
,4,8851,75155
,4,8852,75160
,4,8853,75165
,4,8854,75170
,4,8855,75175
,4,8856,75180
,4,8857,75185
,4,8858,75190
,4,8859,75195
,4,8860,75200
,4,8861,75205
,4,8862,75210
,4,8863,75215
,4,8864,75220
,4,8865,75225
,4,8866,75230
,4,8867,75235
,4,8868,75240
,4,8869,75245
,4,8870,75250
,4,8871,75255
,4,8872,75260
,4,8873,75265
,4,8874,75270
,4,8875,75275
,4,8876,75280
,4,8877,75285
,4,8878,75290
,4,8879,75295
,4,8880,75300
,4,8881,75305
,4,8882,75310
,4,8883,75315
,4,8884,75320
,4,8885,75325
,4,8886,75330
,4,8887,75335
,4,8888,75340
,4,8889,75345
,4,8890,75350
,4,8891,75355
,4,8892,75360
,4,8893,75365
,4,8894,75370
,4,8895,75375
,4,8896,75380
,4,8897,75385
,4,8898,75390
,4,8899,75395
,4,8900,75400
,4,8901,75405
,4,8902,75410
,4,8903,75415
,4,8904,75420
,4,8905,75425
,4,8906,75430
,4,8907,75435
,4,8908,75440
,4,8909,75445
,4,8910,75450
,4,8911,75455
,4,8912,75460
,4,8913,75465
,4,8914,75470
,4,8915,75475
,4,8916,75480
,4,8917,75485
,4,8918,75490
,4,8919,75495
,4,8920,75500
,4,8921,75505
,4,8922,75510
,4,8923,75515
,4,8924,75520
,4,8925,75525
,4,8926,75530
,4,8927,75535
,4,8928,75540
,4,8929,75545
,4,8930,75550
,4,8931,75555
,4,8932,75560
,4,8933,75565
,4,8934,75570
,4,8935,75575
,4,8936,75580
,4,8937,75585
,4,8938,75590
,4,8939,75595
,4,8940,75600
,4,8941,75605
,4,8942,75610
,4,8943,75615
,4,8944,75620
,4,8945,75625
,4,8946,75630
,4,8947,75635
,4,8948,75640
,4,8949,75645
,4,8950,75650
,4,8951,75655
,4,8952,75660
,4,8953,75665
,4,8954,75670
,4,8955,75675
,4,8956,75680
,4,8957,75685
,4,8958,75690
,4,8959,75695
,4,8960,75700
,4,8961,75705
,4,8962,75710
,4,8963,75715
,4,8964,75720
,4,8965,75725
,4,8966,75730
,4,8967,75735
,4,8968,75740
,4,8969,75745
,4,8970,75750
,4,8971,75755
,4,8972,75760
,4,8973,75765
,4,8974,75770
,4,8975,75775
,4,8976,75780
,4,8977,75785
,4,8978,75790
,4,8979,75795
,4,8980,75800
,4,8981,75805
,4,8982,75810
,4,8983,75815
,4,8984,75820
,4,8985,75825
,4,8986,75830
,4,8987,75835
,4,8988,75840
,4,8989,75845
,4,8990,75850
,4,8991,75855
,4,8992,75860
,4,8993,75865
,4,8994,75870
,4,8995,75875
,4,8996,75880
,4,8997,75885
,4,8998,75890
,4,8999,75895
,4,9000,75900
,4,9001,75905
,4,9002,75910
,4,9003,75915
,4,9004,75920
,4,9005,75925
,4,9006,75930
,4,9007,75935
,4,9008,75940
,4,9009,75945
,4,9010,75950
,4,9011,75955
,4,9012,75960
,4,9013,75965
,4,9014,75970
,4,9015,75975
,4,9016,75980
,4,9017,75985
,4,9018,75990
,4,9019,75995
,4,9020,76000
,4,9021,76005
,4,9022,76010
,4,9023,76015
,4,9024,76020
,4,9025,76025
,4,9026,76030
,4,9027,76035
,4,9028,76040
,4,9029,76045
,4,9030,76050
,4,9031,76055
,4,9032,76060
,4,9033,76065
,4,9034,76070
,4,9035,76075
,4,9036,76080
,4,9037,76085
,4,9038,76090
,4,9039,76095
,4,9040,76100
,4,9041,76105
,4,9042,76110
,4,9043,76115
,4,9044,76120
,4,9045,76125
,4,9046,76130
,4,9047,76135
,4,9048,76140
,4,9049,76145
,4,9050,76150
,4,9051,76155
,4,9052,76160
,4,9053,76165
,4,9054,76170
,4,9055,76175
,4,9056,76180
,4,9057,76185
,4,9058,76190
,4,9059,76195
,4,9060,76200
,4,9061,76205
,4,9062,76210
,4,9063,76215
,4,9064,76220
,4,9065,76225
,4,9066,76230
,4,9067,76235
,4,9068,76240
,4,9069,76245
,4,9070,76250
,4,9071,76255
,4,9072,76260
,4,9073,76265
,4,9074,76270
,4,9075,76275
,4,9076,76280
,4,9077,76285
,4,9078,76290
,4,9079,76295
,4,9080,76300
,4,9081,76305
,4,9082,76310
,4,9083,76315
,4,9084,76320
,4,9085,76325
,4,9086,76330
,4,9087,76335
,4,9088,76340
,4,9089,76345
,4,9090,76350
,4,9091,76355
,4,9092,76360
,4,9093,76365
,4,9094,76370
,4,9095,76375
,4,9096,76380
,4,9097,76385
,4,9098,76390
,4,9099,76395
,4,9100,76400
,4,9101,76405
,4,9102,76410
,4,9103,76415
,4,9104,76420
,4,9105,76425
,4,9106,76430
,4,9107,76435
,4,9108,76440
,4,9109,76445
,4,9110,76450
,4,9111,76455
,4,9112,76460
,4,9113,76465
,4,9114,76470
,4,9115,76475
,4,9116,76480
,4,9117,76485
,4,9118,76490
,4,9119,76495
,4,9120,76500
,4,9121,76505
,4,9122,76510
,4,9123,76515
,4,9124,76520
,4,9125,76525
,4,9126,76530
,4,9127,76535
,4,9128,76540
,4,9129,76545
,4,9130,76550
,4,9131,76555
,4,9132,76560
,4,9133,76565
,4,9134,76570
,4,9135,76575
,4,9136,76580
,4,9137,76585
,4,9138,76590
,4,9139,76595
,4,9140,76600
,4,9141,76605
,4,9142,76610
,4,9143,76615
,4,9144,76620
,4,9145,76625
,4,9146,76630
,4,9147,76635
,4,9148,76640
,4,9149,76645
,4,9150,76650
,4,9151,76655
,4,9152,76660
,4,9153,76665
,4,9154,76670
,4,9155,76675
,4,9156,76680
,4,9157,76685
,4,9158,76690
,4,9159,76695
,4,9160,76700
,4,9161,76705
,4,9162,76710
,4,9163,76715
,4,9164,76720
,4,9165,76725
,4,9166,76730
,4,9167,76735
,4,9168,76740
,4,9169,76745
,4,9170,76750
,4,9171,76755
,4,9172,76760
,4,9173,76765
,4,9174,76770
,4,9175,76775
,4,9176,76780
,4,9177,76785
,4,9178,76790
,4,9179,76795
,4,9180,76800
,4,9181,76805
,4,9182,76810
,4,9183,76815
,4,9184,76820
,4,9185,76825
,4,9186,76830
,4,9187,76835
,4,9188,76840
,4,9189,76845
,4,9190,76850
,4,9191,76855
,4,9192,76860
,4,9193,76865
,4,9194,76870
,4,9195,76875
,4,9196,76880
,4,9197,76885
,4,9198,76890
,4,9199,76895
,4,9200,76900
,4,9201,76905
,4,9202,76910
,4,9203,76915
,4,9204,76920
,4,9205,76925
,4,9206,76930
,4,9207,76935
,4,9208,76940
,4,9209,76945
,4,9210,76950
,4,9211,76955
,4,9212,76960
,4,9213,76965
,4,9214,76970
,4,9215,76975
,4,9216,76980
,4,9217,76985
,4,9218,76990
,4,9219,76995
,4,9220,77000
,4,9221,77005
,4,9222,77010
,4,9223,77015
,4,9224,77020
,4,9225,77025
,4,9226,77030
,4,9227,77035
,4,9228,77040
,4,9229,77045
,4,9230,77050
,4,9231,77055
,4,9232,77060
,4,9233,77065
,4,9234,77070
,4,9235,77075
,4,9236,77080
,4,9237,77085
,4,9238,77090
,4,9239,77095
,4,9240,77100
,4,9241,77105
,4,9242,77110
,4,9243,77115
,4,9244,77120
,4,9245,77125
,4,9246,77130
,4,9247,77135
,4,9248,77140
,4,9249,77145
,4,9250,77150
,4,9251,77155
,4,9252,77160
,4,9253,77165
,4,9254,77170
,4,9255,77175
,4,9256,77180
,4,9257,77185
,4,9258,77190
,4,9259,77195
,4,9260,77200
,4,9261,77205
,4,9262,77210
,4,9263,77215
,4,9264,77220
,4,9265,77225
,4,9266,77230
,4,9267,77235
,4,9268,77240
,4,9269,77245
,4,9270,77250
,4,9271,77255
,4,9272,77260
,4,9273,77265
,4,9274,77270
,4,9275,77275
,4,9276,77280
,4,9277,77285
,4,9278,77290
,4,9279,77295
,4,9280,77300
,4,9281,77305
,4,9282,77310
,4,9283,77315
,4,9284,77320
,4,9285,77325
,4,9286,77330
,4,9287,77335
,4,9288,77340
,4,9289,77345
,4,9290,77350
,4,9291,77355
,4,9292,77360
,4,9293,77365
,4,9294,77370
,4,9295,77375
,4,9296,77380
,4,9297,77385
,4,9298,77390
,4,9299,77395
,4,9300,77400
,4,9301,77405
,4,9302,77410
,4,9303,77415
,4,9304,77420
,4,9305,77425
,4,9306,77430
,4,9307,77435
,4,9308,77440
,4,9309,77445
,4,9310,77450
,4,9311,77455
,4,9312,77460
,4,9313,77465
,4,9314,77470
,4,9315,77475
,4,9316,77480
,4,9317,77485
,4,9318,77490
,4,9319,77495
,4,9320,77500
,4,9321,77505
,4,9322,77510
,4,9323,77515
,4,9324,77520
,4,9325,77525
,4,9326,77530
,4,9327,77535
,4,9328,77540
,4,9329,77545
,4,9330,77550
,4,9331,77555
,4,9332,77560
,4,9333,77565
,4,9334,77570
,4,9335,77575
,4,9336,77580
,4,9337,77585
,4,9338,77590
,4,9339,77595
,4,9340,77600
,4,9341,77605
,4,9342,77610
,4,9343,77615
,4,9344,77620
,4,9345,77625
,4,9346,77630
,4,9347,77635
,4,9348,77640
,4,9349,77645
,4,9350,77650
,4,9351,77655
,4,9352,77660
,4,9353,77665
,4,9354,77670
,4,9355,77675
,4,9356,77680
,4,9357,77685
,4,9358,77690
,4,9359,77695
,4,9360,77700
,4,9361,77705
,4,9362,77710
,4,9363,77715
,4,9364,77720
,4,9365,77725
,4,9366,77730
,4,9367,77735
,4,9368,77740
,4,9369,77745
,4,9370,77750
,4,9371,77755
,4,9372,77760
,4,9373,77765
,4,9374,77770
,4,9375,77775
,4,9376,77780
,4,9377,77785
,4,9378,77790
,4,9379,77795
,4,9380,77800
,4,9381,77805
,4,9382,77810
,4,9383,77815
,4,9384,77820
,4,9385,77825
,4,9386,77830
,4,9387,77835
,4,9388,77840
,4,9389,77845
,4,9390,77850
,4,9391,77855
,4,9392,77860
,4,9393,77865
,4,9394,77870
,4,9395,77875
,4,9396,77880
,4,9397,77885
,4,9398,77890
,4,9399,77895
,4,9400,77900
,4,9401,77905
,4,9402,77910
,4,9403,77915
,4,9404,77920
,4,9405,77925
,4,9406,77930
,4,9407,77935
,4,9408,77940
,4,9409,77945
,4,9410,77950
,4,9411,77955
,4,9412,77960
,4,9413,77965
,4,9414,77970
,4,9415,77975
,4,9416,77980
,4,9417,77985
,4,9418,77990
,4,9419,77995
,4,9420,78000
,4,9421,78005
,4,9422,78010
,4,9423,78015
,4,9424,78020
,4,9425,78025
,4,9426,78030
,4,9427,78035
,4,9428,78040
,4,9429,78045
,4,9430,78050
,4,9431,78055
,4,9432,78060
,4,9433,78065
,4,9434,78070
,4,9435,78075
,4,9436,78080
,4,9437,78085
,4,9438,78090
,4,9439,78095
,4,9440,78100
,4,9441,78105
,4,9442,78110
,4,9443,78115
,4,9444,78120
,4,9445,78125
,4,9446,78130
,4,9447,78135
,4,9448,78140
,4,9449,78145
,4,9450,78150
,4,9451,78155
,4,9452,78160
,4,9453,78165
,4,9454,78170
,4,9455,78175
,4,9456,78180
,4,9457,78185
,4,9458,78190
,4,9459,78195
,4,9460,78200
,4,9461,78205
,4,9462,78210
,4,9463,78215
,4,9464,78220
,4,9465,78225
,4,9466,78230
,4,9467,78235
,4,9468,78240
,4,9469,78245
,4,9470,78250
,4,9471,78255
,4,9472,78260
,4,9473,78265
,4,9474,78270
,4,9475,78275
,4,9476,78280
,4,9477,78285
,4,9478,78290
,4,9479,78295
,4,9480,78300
,4,9481,78305
,4,9482,78310
,4,9483,78315
,4,9484,78320
,4,9485,78325
,4,9486,78330
,4,9487,78335
,4,9488,78340
,4,9489,78345
,4,9490,78350
,4,9491,78355
,4,9492,78360
,4,9493,78365
,4,9494,78370
,4,9495,78375
,4,9496,78380
,4,9497,78385
,4,9498,78390
,4,9499,78395
,4,9500,78400
,4,9501,78405
,4,9502,78410
,4,9503,78415
,4,9504,78420
,4,9505,78425
,4,9506,78430
,4,9507,78435
,4,9508,78440
,4,9509,78445
,4,9510,78450
,4,9511,78455
,4,9512,78460
,4,9513,78465
,4,9514,78470
,4,9515,78475
,4,9516,78480
,4,9517,78485
,4,9518,78490
,4,9519,78495
,4,9520,78500
,4,9521,78505
,4,9522,78510
,4,9523,78515
,4,9524,78520
,4,9525,78525
,4,9526,78530
,4,9527,78535
,4,9528,78540
,4,9529,78545
,4,9530,78550
,4,9531,78555
,4,9532,78560
,4,9533,78565
,4,9534,78570
,4,9535,78575
,4,9536,78580
,4,9537,78585
,4,9538,78590
,4,9539,78595
,4,9540,78600
,4,9541,78605
,4,9542,78610
,4,9543,78615
,4,9544,78620
,4,9545,78625
,4,9546,78630
,4,9547,78635
,4,9548,78640
,4,9549,78645
,4,9550,78650
,4,9551,78655
,4,9552,78660
,4,9553,78665
,4,9554,78670
,4,9555,78675
,4,9556,78680
,4,9557,78685
,4,9558,78690
,4,9559,78695
,4,9560,78700
,4,9561,78705
,4,9562,78710
,4,9563,78715
,4,9564,78720
,4,9565,78725
,4,9566,78730
,4,9567,78735
,4,9568,78740
,4,9569,78745
,4,9570,78750
,4,9571,78755
,4,9572,78760
,4,9573,78765
,4,9574,78770
,4,9575,78775
,4,9576,78780
,4,9577,78785
,4,9578,78790
,4,9579,78795
,4,9580,78800
,4,9581,78805
,4,9582,78810
,4,9583,78815
,4,9584,78820
,4,9585,78825
,4,9586,78830
,4,9587,78835
,4,9588,78840
,4,9589,78845
,4,9590,78850
,4,9591,78855
,4,9592,78860
,4,9593,78865
,4,9594,78870
,4,9595,78875
,4,9596,78880
,4,9597,78885
,4,9598,78890
,4,9599,78895
,4,9600,78900
,4,9601,78905
,4,9602,78910
,4,9603,78915
,4,9604,78920
,4,9605,78925
,4,9606,78930
,4,9607,78935
,4,9608,78940
,4,9609,78945
,4,9610,78950
,4,9611,78955
,4,9612,78960
,4,9613,78965
,4,9614,78970
,4,9615,78975
,4,9616,78980
,4,9617,78985
,4,9618,78990
,4,9619,78995
,4,9620,79000
,4,9621,79005
,4,9622,79010
,4,9623,79015
,4,9624,79020
,4,9625,79025
,4,9626,79030
,4,9627,79035
,4,9628,79040
,4,9629,79045
,4,9630,79050
,4,9631,79055
,4,9632,79060
,4,9633,79065
,4,9634,79070
,4,9635,79075
,4,9636,79080
,4,9637,79085
,4,9638,79090
,4,9639,79095
,4,9640,79100
,4,9641,79105
,4,9642,79110
,4,9643,79115
,4,9644,79120
,4,9645,79125
,4,9646,79130
,4,9647,79135
,4,9648,79140
,4,9649,79145
,4,9650,79150
,4,9651,79155
,4,9652,79160
,4,9653,79165
,4,9654,79170
,4,9655,79175
,4,9656,79180
,4,9657,79185
,4,9658,79190
,4,9659,79195
,4,9660,79200
,4,9661,79205
,4,9662,79210
,4,9663,79215
,4,9664,79220
,4,9665,79225
,4,9666,79230
,4,9667,79235
,4,9668,79240
,4,9669,79245
,4,9670,79250
,4,9671,79255
,4,9672,79260
,4,9673,79265
,4,9674,79270
,4,9675,79275
,4,9676,79280
,4,9677,79285
,4,9678,79290
,4,9679,79295
,4,9680,79300
,4,9681,79305
,4,9682,79310
,4,9683,79315
,4,9684,79320
,4,9685,79325
,4,9686,79330
,4,9687,79335
,4,9688,79340
,4,9689,79345
,4,9690,79350
,4,9691,79355
,4,9692,79360
,4,9693,79365
,4,9694,79370
,4,9695,79375
,4,9696,79380
,4,9697,79385
,4,9698,79390
,4,9699,79395
,4,9700,79400
,4,9701,79405
,4,9702,79410
,4,9703,79415
,4,9704,79420
,4,9705,79425
,4,9706,79430
,4,9707,79435
,4,9708,79440
,4,9709,79445
,4,9710,79450
,4,9711,79455
,4,9712,79460
,4,9713,79465
,4,9714,79470
,4,9715,79475
,4,9716,79480
,4,9717,79485
,4,9718,79490
,4,9719,79495
,4,9720,79500
,4,9721,79505
,4,9722,79510
,4,9723,79515
,4,9724,79520
,4,9725,79525
,4,9726,79530
,4,9727,79535
,4,9728,79540
,4,9729,79545
,4,9730,79550
,4,9731,79555
,4,9732,79560
,4,9733,79565
,4,9734,79570
,4,9735,79575
,4,9736,79580
,4,9737,79585
,4,9738,79590
,4,9739,79595
,4,9740,79600
,4,9741,79605
,4,9742,79610
,4,9743,79615
,4,9744,79620
,4,9745,79625
,4,9746,79630
,4,9747,79635
,4,9748,79640
,4,9749,79645
,4,9750,79650
,4,9751,79655
,4,9752,79660
,4,9753,79665
,4,9754,79670
,4,9755,79675
,4,9756,79680
,4,9757,79685
,4,9758,79690
,4,9759,79695
,4,9760,79700
,4,9761,79705
,4,9762,79710
,4,9763,79715
,4,9764,79720
,4,9765,79725
,4,9766,79730
,4,9767,79735
,4,9768,79740
,4,9769,79745
,4,9770,79750
,4,9771,79755
,4,9772,79760
,4,9773,79765
,4,9774,79770
,4,9775,79775
,4,9776,79780
,4,9777,79785
,4,9778,79790
,4,9779,79795
,4,9780,79800
,4,9781,79805
,4,9782,79810
,4,9783,79815
,4,9784,79820
,4,9785,79825
,4,9786,79830
,4,9787,79835
,4,9788,79840
,4,9789,79845
,4,9790,79850
,4,9791,79855
,4,9792,79860
,4,9793,79865
,4,9794,79870
,4,9795,79875
,4,9796,79880
,4,9797,79885
,4,9798,79890
,4,9799,79895
,4,9800,79900
,4,9801,79905
,4,9802,79910
,4,9803,79915
,4,9804,79920
,4,9805,79925
,4,9806,79930
,4,9807,79935
,4,9808,79940
,4,9809,79945
,4,9810,79950
,4,9811,79955
,4,9812,79960
,4,9813,79965
,4,9814,79970
,4,9815,79975
,4,9816,79980
,4,9817,79985
,4,9818,79990
,4,9819,79995
,4,9820,80000
,4,9821,80005
,4,9822,80010
,4,9823,80015
,4,9824,80020
,4,9825,80025
,4,9826,80030
,4,9827,80035
,4,9828,80040
,4,9829,80045
,4,9830,80050
,4,9831,80055
,4,9832,80060
,4,9833,80065
,4,9834,80070
,4,9835,80075
,4,9836,80080
,4,9837,80085
,4,9838,80090
,4,9839,80095
,4,9840,80100
,4,9841,80105
,4,9842,80110
,4,9843,80115
,4,9844,80120
,4,9845,80125
,4,9846,80130
,4,9847,80135
,4,9848,80140
,4,9849,80145
,4,9850,80150
,4,9851,80155
,4,9852,80160
,4,9853,80165
,4,9854,80170
,4,9855,80175
,4,9856,80180
,4,9857,80185
,4,9858,80190
,4,9859,80195
,4,9860,80200
,4,9861,80205
,4,9862,80210
,4,9863,80215
,4,9864,80220
,4,9865,80225
,4,9866,80230
,4,9867,80235
,4,9868,80240
,4,9869,80245
,4,9870,80250
,4,9871,80255
,4,9872,80260
,4,9873,80265
,4,9874,80270
,4,9875,80275
,4,9876,80280
,4,9877,80285
,4,9878,80290
,4,9879,80295
,4,9880,80300
,4,9881,80305
,4,9882,80310
,4,9883,80315
,4,9884,80320
,4,9885,80325
,4,9886,80330
,4,9887,80335
,4,9888,80340
,4,9889,80345
,4,9890,80350
,4,9891,80355
,4,9892,80360
,4,9893,80365
,4,9894,80370
,4,9895,80375
,4,9896,80380
,4,9897,80385
,4,9898,80390
,4,9899,80395
,4,9900,80400
,4,9901,80405
,4,9902,80410
,4,9903,80415
,4,9904,80420
,4,9905,80425
,4,9906,80430
,4,9907,80435
,4,9908,80440
,4,9909,80445
,4,9910,80450
,4,9911,80455
,4,9912,80460
,4,9913,80465
,4,9914,80470
,4,9915,80475
,4,9916,80480
,4,9917,80485
,4,9918,80490
,4,9919,80495
,4,9920,80500
,4,9921,80505
,4,9922,80510
,4,9923,80515
,4,9924,80520
,4,9925,80525
,4,9926,80530
,4,9927,80535
,4,9928,80540
,4,9929,80545
,4,9930,80550
,4,9931,80555
,4,9932,80560
,4,9933,80565
,4,9934,80570
,4,9935,80575
,4,9936,80580
,4,9937,80585
,4,9938,80590
,4,9939,80595
,4,9940,80600
,4,9941,80605
,4,9942,80610
,4,9943,80615
,4,9944,80620
,4,9945,80625
,4,9946,80630
,4,9947,80635
,4,9948,80640
,4,9949,80645
,4,9950,80650
,4,9951,80655
,4,9952,80660
,4,9953,80665
,4,9954,80670
,4,9955,80675
,4,9956,80680
,4,9957,80685
,4,9958,80690
,4,9959,80695
,4,9960,80700
,4,9961,80705
,4,9962,80710
,4,9963,80715
,4,9964,80720
,4,9965,80725
,4,9966,80730
,4,9967,80735
,4,9968,80740
,4,9969,80745
,4,9970,80750
,4,9971,80755
,4,9972,80760
,4,9973,80765
,4,9974,80770
,4,9975,80775
,4,9976,80780
,4,9977,80785
,4,9978,80790
,4,9979,80795
,4,9980,80800
,4,9981,80805
,4,9982,80810
,4,9983,80815
,4,9984,80820
,4,9985,80825
,4,9986,80830
,4,9987,80835
,4,9988,80840
,4,9989,80845
,4,9990,80850
,4,9991,80855
,4,9992,80860
,4,9993,80865
,4,9994,80870
,4,9995,80875
,4,9996,80880
,4,9997,80885
,4,9998,80890
,4,9999,80895
,4,10000,80900
,4,10001,80905
,4,10002,80910
,4,10003,80915
,4,10004,80920
,4,10005,80925
,4,10006,80930
,4,10007,80935
,4,10008,80940
,4,10009,80945
,4,10010,80950
,4,10011,80955
,4,10012,80960
,4,10013,80965
,4,10014,80970
,4,10015,80975
,4,10016,80980
,4,10017,80985
,4,10018,80990
,4,10019,80995
,4,10020,81000
,4,10021,81005
,4,10022,81010
,4,10023,81015
,4,10024,81020
,4,10025,81025
,4,10026,81030
,4,10027,81035
,4,10028,81040
,4,10029,81045
,4,10030,81050
,4,10031,81055
,4,10032,81060
,4,10033,81065
,4,10034,81070
,4,10035,81075
,4,10036,81080
,4,10037,81085
,4,10038,81090
,4,10039,81095
,4,10040,81100
,4,10041,81105
,4,10042,81110
,4,10043,81115
,4,10044,81120
,4,10045,81125
,4,10046,81130
,4,10047,81135
,4,10048,81140
,4,10049,81145
,4,10050,81150
,4,10051,81155
,4,10052,81160
,4,10053,81165
,4,10054,81170
,4,10055,81175
,4,10056,81180
,4,10057,81185
,4,10058,81190
,4,10059,81195
,4,10060,81200
,4,10061,81205
,4,10062,81210
,4,10063,81215
,4,10064,81220
,4,10065,81225
,4,10066,81230
,4,10067,81235
,4,10068,81240
,4,10069,81245
,4,10070,81250
,4,10071,81255
,4,10072,81260
,4,10073,81265
,4,10074,81270
,4,10075,81275
,4,10076,81280
,4,10077,81285
,4,10078,81290
,4,10079,81295
,4,10080,81300
,4,10081,81305
,4,10082,81310
,4,10083,81315
,4,10084,81320
,4,10085,81325
,4,10086,81330
,4,10087,81335
,4,10088,81340
,4,10089,81345
,4,10090,81350
,4,10091,81355
,4,10092,81360
,4,10093,81365
,4,10094,81370
,4,10095,81375
,4,10096,81380
,4,10097,81385
,4,10098,81390
,4,10099,81395
,4,10100,81400
,4,10101,81405
,4,10102,81410
,4,10103,81415
,4,10104,81420
,4,10105,81425
,4,10106,81430
,4,10107,81435
,4,10108,81440
,4,10109,81445
,4,10110,81450
,4,10111,81455
,4,10112,81460
,4,10113,81465
,4,10114,81470
,4,10115,81475
,4,10116,81480
,4,10117,81485
,4,10118,81490
,4,10119,81495
,4,10120,81500
,4,10121,81505
,4,10122,81510
,4,10123,81515
,4,10124,81520
,4,10125,81525
,4,10126,81530
,4,10127,81535
,4,10128,81540
,4,10129,81545
,4,10130,81550
,4,10131,81555
,4,10132,81560
,4,10133,81565
,4,10134,81570
,4,10135,81575
,4,10136,81580
,4,10137,81585
,4,10138,81590
,4,10139,81595
,4,10140,81600
,4,10141,81605
,4,10142,81610
,4,10143,81615
,4,10144,81620
,4,10145,81625
,4,10146,81630
,4,10147,81635
,4,10148,81640
,4,10149,81645
,4,10150,81650
,4,10151,81655
,4,10152,81660
,4,10153,81665
,4,10154,81670
,4,10155,81675
,4,10156,81680
,4,10157,81685
,4,10158,81690
,4,10159,81695
,4,10160,81700
,4,10161,81705
,4,10162,81710
,4,10163,81715
,4,10164,81720
,4,10165,81725
,4,10166,81730
,4,10167,81735
,4,10168,81740
,4,10169,81745
,4,10170,81750
,4,10171,81755
,4,10172,81760
,4,10173,81765
,4,10174,81770
,4,10175,81775
,4,10176,81780
,4,10177,81785
,4,10178,81790
,4,10179,81795
,4,10180,81800
,4,10181,81805
,4,10182,81810
,4,10183,81815
,4,10184,81820
,4,10185,81825
,4,10186,81830
,4,10187,81835
,4,10188,81840
,4,10189,81845
,4,10190,81850
,4,10191,81855
,4,10192,81860
,4,10193,81865
,4,10194,81870
,4,10195,81875
,4,10196,81880
,4,10197,81885
,4,10198,81890
,4,10199,81895
,4,10200,81900
,4,10201,81905
,4,10202,81910
,4,10203,81915
,4,10204,81920
,4,10205,81925
,4,10206,81930
,4,10207,81935
,4,10208,81940
,4,10209,81945
,4,10210,81950
,4,10211,81955
,4,10212,81960
,4,10213,81965
,4,10214,81970
,4,10215,81975
,4,10216,81980
,4,10217,81985
,4,10218,81990
,4,10219,81995
,4,10220,82000
,4,10221,82005
,4,10222,82010
,4,10223,82015
,4,10224,82020
,4,10225,82025
,4,10226,82030
,4,10227,82035
,4,10228,82040
,4,10229,82045
,4,10230,82050
,4,10231,82055
,4,10232,82060
,4,10233,82065
,4,10234,82070
,4,10235,82075
,4,10236,82080
,4,10237,82085
,4,10238,82090
,4,10239,82095
,4,10240,82100
,4,10241,82105
,4,10242,82110
,4,10243,82115
,4,10244,82120
,4,10245,82125
,4,10246,82130
,4,10247,82135
,4,10248,82140
,4,10249,82145
,4,10250,82150
,4,10251,82155
,4,10252,82160
,4,10253,82165
,4,10254,82170
,4,10255,82175
,4,10256,82180
,4,10257,82185
,4,10258,82190
,4,10259,82195
,4,10260,82200
,4,10261,82205
,4,10262,82210
,4,10263,82215
,4,10264,82220
,4,10265,82225
,4,10266,82230
,4,10267,82235
,4,10268,82240
,4,10269,82245
,4,10270,82250
,4,10271,82255
,4,10272,82260
,4,10273,82265
,4,10274,82270
,4,10275,82275
,4,10276,82280
,4,10277,82285
,4,10278,82290
,4,10279,82295
,4,10280,82300
,4,10281,82305
,4,10282,82310
,4,10283,82315
,4,10284,82320
,4,10285,82325
,4,10286,82330
,4,10287,82335
,4,10288,82340
,4,10289,82345
,4,10290,82350
,4,10291,82355
,4,10292,82360
,4,10293,82365
,4,10294,82370
,4,10295,82375
,4,10296,82380
,4,10297,82385
,4,10298,82390
,4,10299,82395
,4,10300,82400
,4,10301,82405
,4,10302,82410
,4,10303,82415
,4,10304,82420
,4,10305,82425
,4,10306,82430
,4,10307,82435
,4,10308,82440
,4,10309,82445
,4,10310,82450
,4,10311,82455
,4,10312,82460
,4,10313,82465
,4,10314,82470
,4,10315,82475
,4,10316,82480
,4,10317,82485
,4,10318,82490
,4,10319,82495
,4,10320,82500
,4,10321,82505
,4,10322,82510
,4,10323,82515
,4,10324,82520
,4,10325,82525
,4,10326,82530
,4,10327,82535
,4,10328,82540
,4,10329,82545
,4,10330,82550
,4,10331,82555
,4,10332,82560
,4,10333,82565
,4,10334,82570
,4,10335,82575
,4,10336,82580
,4,10337,82585
,4,10338,82590
,4,10339,82595
,4,10340,82600
,4,10341,82605
,4,10342,82610
,4,10343,82615
,4,10344,82620
,4,10345,82625
,4,10346,82630
,4,10347,82635
,4,10348,82640
,4,10349,82645
,4,10350,82650
,4,10351,82655
,4,10352,82660
,4,10353,82665
,4,10354,82670
,4,10355,82675
,4,10356,82680
,4,10357,82685
,4,10358,82690
,4,10359,82695
,4,10360,82700
,4,10361,82705
,4,10362,82710
,4,10363,82715
,4,10364,82720
,4,10365,82725
,4,10366,82730
,4,10367,82735
,4,10368,82740
,4,10369,82745
,4,10370,82750
,4,10371,82755
,4,10372,82760
,4,10373,82765
,4,10374,82770
,4,10375,82775
,4,10376,82780
,4,10377,82785
,4,10378,82790
,4,10379,82795
,4,10380,82800
,4,10381,82805
,4,10382,82810
,4,10383,82815
,4,10384,82820
,4,10385,82825
,4,10386,82830
,4,10387,82835
,4,10388,82840
,4,10389,82845
,4,10390,82850
,4,10391,82855
,4,10392,82860
,4,10393,82865
,4,10394,82870
,4,10395,82875
,4,10396,82880
,4,10397,82885
,4,10398,82890
,4,10399,82895
,4,10400,82900
,4,10401,82905
,4,10402,82910
,4,10403,82915
,4,10404,82920
,4,10405,82925
,4,10406,82930
,4,10407,82935
,4,10408,82940
,4,10409,82945
,4,10410,82950
,4,10411,82955
,4,10412,82960
,4,10413,82965
,4,10414,82970
,4,10415,82975
,4,10416,82980
,4,10417,82985
,4,10418,82990
,4,10419,82995
,4,10420,83000
,4,10421,83005
,4,10422,83010
,4,10423,83015
,4,10424,83020
,4,10425,83025
,4,10426,83030
,4,10427,83035
,4,10428,83040
,4,10429,83045
,4,10430,83050
,4,10431,83055
,4,10432,83060
,4,10433,83065
,4,10434,83070
,4,10435,83075
,4,10436,83080
,4,10437,83085
,4,10438,83090
,4,10439,83095
,4,10440,83100
,4,10441,83105
,4,10442,83110
,4,10443,83115
,4,10444,83120
,4,10445,83125
,4,10446,83130
,4,10447,83135
,4,10448,83140
,4,10449,83145
,4,10450,83150
,4,10451,83155
,4,10452,83160
,4,10453,83165
,4,10454,83170
,4,10455,83175
,4,10456,83180
,4,10457,83185
,4,10458,83190
,4,10459,83195
,4,10460,83200
,4,10461,83205
,4,10462,83210
,4,10463,83215
,4,10464,83220
,4,10465,83225
,4,10466,83230
,4,10467,83235
,4,10468,83240
,4,10469,83245
,4,10470,83250
,4,10471,83255
,4,10472,83260
,4,10473,83265
,4,10474,83270
,4,10475,83275
,4,10476,83280
,4,10477,83285
,4,10478,83290
,4,10479,83295
,4,10480,83300
,4,10481,83305
,4,10482,83310
,4,10483,83315
,4,10484,83320
,4,10485,83325
,4,10486,83330
,4,10487,83335
,4,10488,83340
,4,10489,83345
,4,10490,83350
,4,10491,83355
,4,10492,83360
,4,10493,83365
,4,10494,83370
,4,10495,83375
,4,10496,83380
,4,10497,83385
,4,10498,83390
,4,10499,83395
,4,10500,83400
,4,10501,83405
,4,10502,83410
,4,10503,83415
,4,10504,83420
,4,10505,83425
,4,10506,83430
,4,10507,83435
,4,10508,83440
,4,10509,83445
,4,10510,83450
,4,10511,83455
,4,10512,83460
,4,10513,83465
,4,10514,83470
,4,10515,83475
,4,10516,83480
,4,10517,83485
,4,10518,83490
,4,10519,83495
,4,10520,83500
,4,10521,83505
,4,10522,83510
,4,10523,83515
,4,10524,83520
,4,10525,83525
,4,10526,83530
,4,10527,83535
,4,10528,83540
,4,10529,83545
,4,10530,83550
,4,10531,83555
,4,10532,83560
,4,10533,83565
,4,10534,83570
,4,10535,83575
,4,10536,83580
,4,10537,83585
,4,10538,83590
,4,10539,83595
,4,10540,83600
,4,10541,83605
,4,10542,83610
,4,10543,83615
,4,10544,83620
,4,10545,83625
,4,10546,83630
,4,10547,83635
,4,10548,83640
,4,10549,83645
,4,10550,83650
,4,10551,83655
,4,10552,83660
,4,10553,83665
,4,10554,83670
,4,10555,83675
,4,10556,83680
,4,10557,83685
,4,10558,83690
,4,10559,83695
,4,10560,83700
,4,10561,83705
,4,10562,83710
,4,10563,83715
,4,10564,83720
,4,10565,83725
,4,10566,83730
,4,10567,83735
,4,10568,83740
,4,10569,83745
,4,10570,83750
,4,10571,83755
,4,10572,83760
,4,10573,83765
,4,10574,83770
,4,10575,83775
,4,10576,83780
,4,10577,83785
,4,10578,83790
,4,10579,83795
,4,10580,83800
,4,10581,83805
,4,10582,83810
,4,10583,83815
,4,10584,83820
,4,10585,83825
,4,10586,83830
,4,10587,83835
,4,10588,83840
,4,10589,83845
,4,10590,83850
,4,10591,83855
,4,10592,83860
,4,10593,83865
,4,10594,83870
,4,10595,83875
,4,10596,83880
,4,10597,83885
,4,10598,83890
,4,10599,83895
,4,10600,83900
,4,10601,83905
,4,10602,83910
,4,10603,83915
,4,10604,83920
,4,10605,83925
,4,10606,83930
,4,10607,83935
,4,10608,83940
,4,10609,83945
,4,10610,83950
,4,10611,83955
,4,10612,83960
,4,10613,83965
,4,10614,83970
,4,10615,83975
,4,10616,83980
,4,10617,83985
,4,10618,83990
,4,10619,83995
,4,10620,84000
,4,10621,84005
,4,10622,84010
,4,10623,84015
,4,10624,84020
,4,10625,84025
,4,10626,84030
,4,10627,84035
,4,10628,84040
,4,10629,84045
,4,10630,84050
,4,10631,84055
,4,10632,84060
,4,10633,84065
,4,10634,84070
,4,10635,84075
,4,10636,84080
,4,10637,84085
,4,10638,84090
,4,10639,84095
,4,10640,84100
,4,10641,84105
,4,10642,84110
,4,10643,84115
,4,10644,84120
,4,10645,84125
,4,10646,84130
,4,10647,84135
,4,10648,84140
,4,10649,84145
,4,10650,84150
,4,10651,84155
,4,10652,84160
,4,10653,84165
,4,10654,84170
,4,10655,84175
,4,10656,84180
,4,10657,84185
,4,10658,84190
,4,10659,84195
,4,10660,84200
,4,10661,84205
,4,10662,84210
,4,10663,84215
,4,10664,84220
,4,10665,84225
,4,10666,84230
,4,10667,84235
,4,10668,84240
,4,10669,84245
,4,10670,84250
,4,10671,84255
,4,10672,84260
,4,10673,84265
,4,10674,84270
,4,10675,84275
,4,10676,84280
,4,10677,84285
,4,10678,84290
,4,10679,84295
,4,10680,84300
,4,10681,84305
,4,10682,84310
,4,10683,84315
,4,10684,84320
,4,10685,84325
,4,10686,84330
,4,10687,84335
,4,10688,84340
,4,10689,84345
,4,10690,84350
,4,10691,84355
,4,10692,84360
,4,10693,84365
,4,10694,84370
,4,10695,84375
,4,10696,84380
,4,10697,84385
,4,10698,84390
,4,10699,84395
,4,10700,84400
,4,10701,84405
,4,10702,84410
,4,10703,84415
,4,10704,84420
,4,10705,84425
,4,10706,84430
,4,10707,84435
,4,10708,84440
,4,10709,84445
,4,10710,84450
,4,10711,84455
,4,10712,84460
,4,10713,84465
,4,10714,84470
,4,10715,84475
,4,10716,84480
,4,10717,84485
,4,10718,84490
,4,10719,84495
,4,10720,84500
,4,10721,84505
,4,10722,84510
,4,10723,84515
,4,10724,84520
,4,10725,84525
,4,10726,84530
,4,10727,84535
,4,10728,84540
,4,10729,84545
,4,10730,84550
,4,10731,84555
,4,10732,84560
,4,10733,84565
,4,10734,84570
,4,10735,84575
,4,10736,84580
,4,10737,84585
,4,10738,84590
,4,10739,84595
,4,10740,84600
,4,10741,84605
,4,10742,84610
,4,10743,84615
,4,10744,84620
,4,10745,84625
,4,10746,84630
,4,10747,84635
,4,10748,84640
,4,10749,84645
,4,10750,84650
,4,10751,84655
,4,10752,84660
,4,10753,84665
,4,10754,84670
,4,10755,84675
,4,10756,84680
,4,10757,84685
,4,10758,84690
,4,10759,84695
,4,10760,84700
,4,10761,84705
,4,10762,84710
,4,10763,84715
,4,10764,84720
,4,10765,84725
,4,10766,84730
,4,10767,84735
,4,10768,84740
,4,10769,84745
,4,10770,84750
,4,10771,84755
,4,10772,84760
,4,10773,84765
,4,10774,84770
,4,10775,84775
,4,10776,84780
,4,10777,84785
,4,10778,84790
,4,10779,84795
,4,10780,84800
,4,10781,84805
,4,10782,84810
,4,10783,84815
,4,10784,84820
,4,10785,84825
,4,10786,84830
,4,10787,84835
,4,10788,84840
,4,10789,84845
,4,10790,84850
,4,10791,84855
,4,10792,84860
,4,10793,84865
,4,10794,84870
,4,10795,84875
,4,10796,84880
,4,10797,84885
,4,10798,84890
,4,10799,84895
,4,10800,84900
,4,10801,84905
,4,10802,84910
,4,10803,84915
,4,10804,84920
,4,10805,84925
,4,10806,84930
,4,10807,84935
,4,10808,84940
,4,10809,84945
,4,10810,84950
,4,10811,84955
,4,10812,84960
,4,10813,84965
,4,10814,84970
,4,10815,84975
,4,10816,84980
,4,10817,84985
,4,10818,84990
,4,10819,84995
,4,10820,85000
,4,10821,85005
,4,10822,85010
,4,10823,85015
,4,10824,85020
,4,10825,85025
,4,10826,85030
,4,10827,85035
,4,10828,85040
,4,10829,85045
,4,10830,85050
,4,10831,85055
,4,10832,85060
,4,10833,85065
,4,10834,85070
,4,10835,85075
,4,10836,85080
,4,10837,85085
,4,10838,85090
,4,10839,85095
,4,10840,85100
,4,10841,85105
,4,10842,85110
,4,10843,85115
,4,10844,85120
,4,10845,85125
,4,10846,85130
,4,10847,85135
,4,10848,85140
,4,10849,85145
,4,10850,85150
,4,10851,85155
,4,10852,85160
,4,10853,85165
,4,10854,85170
,4,10855,85175
,4,10856,85180
,4,10857,85185
,4,10858,85190
,4,10859,85195
,4,10860,85200
,4,10861,85205
,4,10862,85210
,4,10863,85215
,4,10864,85220
,4,10865,85225
,4,10866,85230
,4,10867,85235
,4,10868,85240
,4,10869,85245
,4,10870,85250
,4,10871,85255
,4,10872,85260
,4,10873,85265
,4,10874,85270
,4,10875,85275
,4,10876,85280
,4,10877,85285
,4,10878,85290
,4,10879,85295
,4,10880,85300
,4,10881,85305
,4,10882,85310
,4,10883,85315
,4,10884,85320
,4,10885,85325
,4,10886,85330
,4,10887,85335
,4,10888,85340
,4,10889,85345
,4,10890,85350
,4,10891,85355
,4,10892,85360
,4,10893,85365
,4,10894,85370
,4,10895,85375
,4,10896,85380
,4,10897,85385
,4,10898,85390
,4,10899,85395
,4,10900,85400
,4,10901,85405
,4,10902,85410
,4,10903,85415
,4,10904,85420
,4,10905,85425
,4,10906,85430
,4,10907,85435
,4,10908,85440
,4,10909,85445
,4,10910,85450
,4,10911,85455
,4,10912,85460
,4,10913,85465
,4,10914,85470
,4,10915,85475
,4,10916,85480
,4,10917,85485
,4,10918,85490
,4,10919,85495
,4,10920,85500
,4,10921,85505
,4,10922,85510
,4,10923,85515
,4,10924,85520
,4,10925,85525
,4,10926,85530
,4,10927,85535
,4,10928,85540
,4,10929,85545
,4,10930,85550
,4,10931,85555
,4,10932,85560
,4,10933,85565
,4,10934,85570
,4,10935,85575
,4,10936,85580
,4,10937,85585
,4,10938,85590
,4,10939,85595
,4,10940,85600
,4,10941,85605
,4,10942,85610
,4,10943,85615
,4,10944,85620
,4,10945,85625
,4,10946,85630
,4,10947,85635
,4,10948,85640
,4,10949,85645
,4,10950,85650
,4,10951,85655
,4,10952,85660
,4,10953,85665
,4,10954,85670
,4,10955,85675
,4,10956,85680
,4,10957,85685
,4,10958,85690
,4,10959,85695
,4,10960,85700
,4,10961,85705
,4,10962,85710
,4,10963,85715
,4,10964,85720
,4,10965,85725
,4,10966,85730
,4,10967,85735
,4,10968,85740
,4,10969,85745
,4,10970,85750
,4,10971,85755
,4,10972,85760
,4,10973,85765
,4,10974,85770
,4,10975,85775
,4,10976,85780
,4,10977,85785
,4,10978,85790
,4,10979,85795
,4,10980,85800
,4,10981,85805
,4,10982,85810
,4,10983,85815
,4,10984,85820
,4,10985,85825
,4,10986,85830
,4,10987,85835
,4,10988,85840
,4,10989,85845
,4,10990,85850
,4,10991,85855
,4,10992,85860
,4,10993,85865
,4,10994,85870
,4,10995,85875
,4,10996,85880
,4,10997,85885
,4,10998,85890
,4,10999,85895
,4,11000,85900
,4,11001,85905
,4,11002,85910
,4,11003,85915
,4,11004,85920
,4,11005,85925
,4,11006,85930
,4,11007,85935
,4,11008,85940
,4,11009,85945
,4,11010,85950
,4,11011,85955
,4,11012,85960
,4,11013,85965
,4,11014,85970
,4,11015,85975
,4,11016,85980
,4,11017,85985
,4,11018,85990
,4,11019,85995
,4,11020,86000
,4,11021,86005
,4,11022,86010
,4,11023,86015
,4,11024,86020
,4,11025,86025
,4,11026,86030
,4,11027,86035
,4,11028,86040
,4,11029,86045
,4,11030,86050
,4,11031,86055
,4,11032,86060
,4,11033,86065
,4,11034,86070
,4,11035,86075
,4,11036,86080
,4,11037,86085
,4,11038,86090
,4,11039,86095
,4,11040,86100
,4,11041,86105
,4,11042,86110
,4,11043,86115
,4,11044,86120
,4,11045,86125
,4,11046,86130
,4,11047,86135
,4,11048,86140
,4,11049,86145
,4,11050,86150
,4,11051,86155
,4,11052,86160
,4,11053,86165
,4,11054,86170
,4,11055,86175
,4,11056,86180
,4,11057,86185
,4,11058,86190
,4,11059,86195
,4,11060,86200
,4,11061,86205
,4,11062,86210
,4,11063,86215
,4,11064,86220
,4,11065,86225
,4,11066,86230
,4,11067,86235
,4,11068,86240
,4,11069,86245
,4,11070,86250
,4,11071,86255
,4,11072,86260
,4,11073,86265
,4,11074,86270
,4,11075,86275
,4,11076,86280
,4,11077,86285
,4,11078,86290
,4,11079,86295
,4,11080,86300
,4,11081,86305
,4,11082,86310
,4,11083,86315
,4,11084,86320
,4,11085,86325
,4,11086,86330
,4,11087,86335
,4,11088,86340
,4,11089,86345
,4,11090,86350
,4,11091,86355
,4,11092,86360
,4,11093,86365
,4,11094,86370
,4,11095,86375
,4,11096,86380
,4,11097,86385
,4,11098,86390
,4,11099,86395
,4,11100,86400
,4,11101,86405
,4,11102,86410
,4,11103,86415
,4,11104,86420
,4,11105,86425
,4,11106,86430
,4,11107,86435
,4,11108,86440
,4,11109,86445
,4,11110,86450
,4,11111,86455
,4,11112,86460
,4,11113,86465
,4,11114,86470
,4,11115,86475
,4,11116,86480
,4,11117,86485
,4,11118,86490
,4,11119,86495
,4,11120,86500
,4,11121,86505
,4,11122,86510
,4,11123,86515
,4,11124,86520
,4,11125,86525
,4,11126,86530
,4,11127,86535
,4,11128,86540
,4,11129,86545
,4,11130,86550
,4,11131,86555
,4,11132,86560
,4,11133,86565
,4,11134,86570
,4,11135,86575
,4,11136,86580
,4,11137,86585
,4,11138,86590
,4,11139,86595
,4,11140,86600
,4,11141,86605
,4,11142,86610
,4,11143,86615
,4,11144,86620
,4,11145,86625
,4,11146,86630
,4,11147,86635
,4,11148,86640
,4,11149,86645
,4,11150,86650
,4,11151,86655
,4,11152,86660
,4,11153,86665
,4,11154,86670
,4,11155,86675
,4,11156,86680
,4,11157,86685
,4,11158,86690
,4,11159,86695
,4,11160,86700
,4,11161,86705
,4,11162,86710
,4,11163,86715
,4,11164,86720
,4,11165,86725
,4,11166,86730
,4,11167,86735
,4,11168,86740
,4,11169,86745
,4,11170,86750
,4,11171,86755
,4,11172,86760
,4,11173,86765
,4,11174,86770
,4,11175,86775
,4,11176,86780
,4,11177,86785
,4,11178,86790
,4,11179,86795
,4,11180,86800
,4,11181,86805
,4,11182,86810
,4,11183,86815
,4,11184,86820
,4,11185,86825
,4,11186,86830
,4,11187,86835
,4,11188,86840
,4,11189,86845
,4,11190,86850
,4,11191,86855
,4,11192,86860
,4,11193,86865
,4,11194,86870
,4,11195,86875
,4,11196,86880
,4,11197,86885
,4,11198,86890
,4,11199,86895
,4,11200,86900
,4,11201,86905
,4,11202,86910
,4,11203,86915
,4,11204,86920
,4,11205,86925
,4,11206,86930
,4,11207,86935
,4,11208,86940
,4,11209,86945
,4,11210,86950
,4,11211,86955
,4,11212,86960
,4,11213,86965
,4,11214,86970
,4,11215,86975
,4,11216,86980
,4,11217,86985
,4,11218,86990
,4,11219,86995
,4,11220,87000
,4,11221,87005
,4,11222,87010
,4,11223,87015
,4,11224,87020
,4,11225,87025
,4,11226,87030
,4,11227,87035
,4,11228,87040
,4,11229,87045
,4,11230,87050
,4,11231,87055
,4,11232,87060
,4,11233,87065
,4,11234,87070
,4,11235,87075
,4,11236,87080
,4,11237,87085
,4,11238,87090
,4,11239,87095
,4,11240,87100
,4,11241,87105
,4,11242,87110
,4,11243,87115
,4,11244,87120
,4,11245,87125
,4,11246,87130
,4,11247,87135
,4,11248,87140
,4,11249,87145
,4,11250,87150
,4,11251,87155
,4,11252,87160
,4,11253,87165
,4,11254,87170
,4,11255,87175
,4,11256,87180
,4,11257,87185
,4,11258,87190
,4,11259,87195
,4,11260,87200
,4,11261,87205
,4,11262,87210
,4,11263,87215
,4,11264,87220
,4,11265,87225
,4,11266,87230
,4,11267,87235
,4,11268,87240
,4,11269,87245
,4,11270,87250
,4,11271,87255
,4,11272,87260
,4,11273,87265
,4,11274,87270
,4,11275,87275
,4,11276,87280
,4,11277,87285
,4,11278,87290
,4,11279,87295
,4,11280,87300
,4,11281,87305
,4,11282,87310
,4,11283,87315
,4,11284,87320
,4,11285,87325
,4,11286,87330
,4,11287,87335
,4,11288,87340
,4,11289,87345
,4,11290,87350
,4,11291,87355
,4,11292,87360
,4,11293,87365
,4,11294,87370
,4,11295,87375
,4,11296,87380
,4,11297,87385
,4,11298,87390
,4,11299,87395
,4,11300,87400
,4,11301,87405
,4,11302,87410
,4,11303,87415
,4,11304,87420
,4,11305,87425
,4,11306,87430
,4,11307,87435
,4,11308,87440
,4,11309,87445
,4,11310,87450
,4,11311,87455
,4,11312,87460
,4,11313,87465
,4,11314,87470
,4,11315,87475
,4,11316,87480
,4,11317,87485
,4,11318,87490
,4,11319,87495
,4,11320,87500
,4,11321,87505
,4,11322,87510
,4,11323,87515
,4,11324,87520
,4,11325,87525
,4,11326,87530
,4,11327,87535
,4,11328,87540
,4,11329,87545
,4,11330,87550
,4,11331,87555
,4,11332,87560
,4,11333,87565
,4,11334,87570
,4,11335,87575
,4,11336,87580
,4,11337,87585
,4,11338,87590
,4,11339,87595
,4,11340,87600
,4,11341,87605
,4,11342,87610
,4,11343,87615
,4,11344,87620
,4,11345,87625
,4,11346,87630
,4,11347,87635
,4,11348,87640
,4,11349,87645
,4,11350,87650
,4,11351,87655
,4,11352,87660
,4,11353,87665
,4,11354,87670
,4,11355,87675
,4,11356,87680
,4,11357,87685
,4,11358,87690
,4,11359,87695
,4,11360,87700
,4,11361,87705
,4,11362,87710
,4,11363,87715
,4,11364,87720
,4,11365,87725
,4,11366,87730
,4,11367,87735
,4,11368,87740
,4,11369,87745
,4,11370,87750
,4,11371,87755
,4,11372,87760
,4,11373,87765
,4,11374,87770
,4,11375,87775
,4,11376,87780
,4,11377,87785
,4,11378,87790
,4,11379,87795
,4,11380,87800
,4,11381,87805
,4,11382,87810
,4,11383,87815
,4,11384,87820
,4,11385,87825
,4,11386,87830
,4,11387,87835
,4,11388,87840
,4,11389,87845
,4,11390,87850
,4,11391,87855
,4,11392,87860
,4,11393,87865
,4,11394,87870
,4,11395,87875
,4,11396,87880
,4,11397,87885
,4,11398,87890
,4,11399,87895
,4,11400,87900
,4,11401,87905
,4,11402,87910
,4,11403,87915
,4,11404,87920
,4,11405,87925
,4,11406,87930
,4,11407,87935
,4,11408,87940
,4,11409,87945
,4,11410,87950
,4,11411,87955
,4,11412,87960
,4,11413,87965
,4,11414,87970
,4,11415,87975
,4,11416,87980
,4,11417,87985
,4,11418,87990
,4,11419,87995
,4,11420,88000
,4,11421,88005
,4,11422,88010
,4,11423,88015
,4,11424,88020
,4,11425,88025
,4,11426,88030
,4,11427,88035
,4,11428,88040
,4,11429,88045
,4,11430,88050
,4,11431,88055
,4,11432,88060
,4,11433,88065
,4,11434,88070
,4,11435,88075
,4,11436,88080
,4,11437,88085
,4,11438,88090
,4,11439,88095
,4,11440,88100
,4,11441,88105
,4,11442,88110
,4,11443,88115
,4,11444,88120
,4,11445,88125
,4,11446,88130
,4,11447,88135
,4,11448,88140
,4,11449,88145
,4,11450,88150
,4,11451,88155
,4,11452,88160
,4,11453,88165
,4,11454,88170
,4,11455,88175
,4,11456,88180
,4,11457,88185
,4,11458,88190
,4,11459,88195
,4,11460,88200
,4,11461,88205
,4,11462,88210
,4,11463,88215
,4,11464,88220
,4,11465,88225
,4,11466,88230
,4,11467,88235
,4,11468,88240
,4,11469,88245
,4,11470,88250
,4,11471,88255
,4,11472,88260
,4,11473,88265
,4,11474,88270
,4,11475,88275
,4,11476,88280
,4,11477,88285
,4,11478,88290
,4,11479,88295
,4,11480,88300
,4,11481,88305
,4,11482,88310
,4,11483,88315
,4,11484,88320
,4,11485,88325
,4,11486,88330
,4,11487,88335
,4,11488,88340
,4,11489,88345
,4,11490,88350
,4,11491,88355
,4,11492,88360
,4,11493,88365
,4,11494,88370
,4,11495,88375
,4,11496,88380
,4,11497,88385
,4,11498,88390
,4,11499,88395
,4,11500,88400
,4,11501,88405
,4,11502,88410
,4,11503,88415
,4,11504,88420
,4,11505,88425
,4,11506,88430
,4,11507,88435
,4,11508,88440
,4,11509,88445
,4,11510,88450
,4,11511,88455
,4,11512,88460
,4,11513,88465
,4,11514,88470
,4,11515,88475
,4,11516,88480
,4,11517,88485
,4,11518,88490
,4,11519,88495
,4,11520,88500
,4,11521,88505
,4,11522,88510
,4,11523,88515
,4,11524,88520
,4,11525,88525
,4,11526,88530
,4,11527,88535
,4,11528,88540
,4,11529,88545
,4,11530,88550
,4,11531,88555
,4,11532,88560
,4,11533,88565
,4,11534,88570
,4,11535,88575
,4,11536,88580
,4,11537,88585
,4,11538,88590
,4,11539,88595
,4,11540,88600
,4,11541,88605
,4,11542,88610
,4,11543,88615
,4,11544,88620
,4,11545,88625
,4,11546,88630
,4,11547,88635
,4,11548,88640
,4,11549,88645
,4,11550,88650
,4,11551,88655
,4,11552,88660
,4,11553,88665
,4,11554,88670
,4,11555,88675
,4,11556,88680
,4,11557,88685
,4,11558,88690
,4,11559,88695
,4,11560,88700
,4,11561,88705
,4,11562,88710
,4,11563,88715
,4,11564,88720
,4,11565,88725
,4,11566,88730
,4,11567,88735
,4,11568,88740
,4,11569,88745
,4,11570,88750
,4,11571,88755
,4,11572,88760
,4,11573,88765
,4,11574,88770
,4,11575,88775
,4,11576,88780
,4,11577,88785
,4,11578,88790
,4,11579,88795
,4,11580,88800
,4,11581,88805
,4,11582,88810
,4,11583,88815
,4,11584,88820
,4,11585,88825
,4,11586,88830
,4,11587,88835
,4,11588,88840
,4,11589,88845
,4,11590,88850
,4,11591,88855
,4,11592,88860
,4,11593,88865
,4,11594,88870
,4,11595,88875
,4,11596,88880
,4,11597,88885
,4,11598,88890
,4,11599,88895
,4,11600,88900
,4,11601,88905
,4,11602,88910
,4,11603,88915
,4,11604,88920
,4,11605,88925
,4,11606,88930
,4,11607,88935
,4,11608,88940
,4,11609,88945
,4,11610,88950
,4,11611,88955
,4,11612,88960
,4,11613,88965
,4,11614,88970
,4,11615,88975
,4,11616,88980
,4,11617,88985
,4,11618,88990
,4,11619,88995
,4,11620,89000
,4,11621,89005
,4,11622,89010
,4,11623,89015
,4,11624,89020
,4,11625,89025
,4,11626,89030
,4,11627,89035
,4,11628,89040
,4,11629,89045
,4,11630,89050
,4,11631,89055
,4,11632,89060
,4,11633,89065
,4,11634,89070
,4,11635,89075
,4,11636,89080
,4,11637,89085
,4,11638,89090
,4,11639,89095
,4,11640,89100
,4,11641,89105
,4,11642,89110
,4,11643,89115
,4,11644,89120
,4,11645,89125
,4,11646,89130
,4,11647,89135
,4,11648,89140
,4,11649,89145
,4,11650,89150
,4,11651,89155
,4,11652,89160
,4,11653,89165
,4,11654,89170
,4,11655,89175
,4,11656,89180
,4,11657,89185
,4,11658,89190
,4,11659,89195
,4,11660,89200
,4,11661,89205
,4,11662,89210
,4,11663,89215
,4,11664,89220
,4,11665,89225
,4,11666,89230
,4,11667,89235
,4,11668,89240
,4,11669,89245
,4,11670,89250
,4,11671,89255
,4,11672,89260
,4,11673,89265
,4,11674,89270
,4,11675,89275
,4,11676,89280
,4,11677,89285
,4,11678,89290
,4,11679,89295
,4,11680,89300
,4,11681,89305
,4,11682,89310
,4,11683,89315
,4,11684,89320
,4,11685,89325
,4,11686,89330
,4,11687,89335
,4,11688,89340
,4,11689,89345
,4,11690,89350
,4,11691,89355
,4,11692,89360
,4,11693,89365
,4,11694,89370
,4,11695,89375
,4,11696,89380
,4,11697,89385
,4,11698,89390
,4,11699,89395
,4,11700,89400
,4,11701,89405
,4,11702,89410
,4,11703,89415
,4,11704,89420
,4,11705,89425
,4,11706,89430
,4,11707,89435
,4,11708,89440
,4,11709,89445
,4,11710,89450
,4,11711,89455
,4,11712,89460
,4,11713,89465
,4,11714,89470
,4,11715,89475
,4,11716,89480
,4,11717,89485
,4,11718,89490
,4,11719,89495
,4,11720,89500
,4,11721,89505
,4,11722,89510
,4,11723,89515
,4,11724,89520
,4,11725,89525
,4,11726,89530
,4,11727,89535
,4,11728,89540
,4,11729,89545
,4,11730,89550
,4,11731,89555
,4,11732,89560
,4,11733,89565
,4,11734,89570
,4,11735,89575
,4,11736,89580
,4,11737,89585
,4,11738,89590
,4,11739,89595
,4,11740,89600
,4,11741,89605
,4,11742,89610
,4,11743,89615
,4,11744,89620
,4,11745,89625
,4,11746,89630
,4,11747,89635
,4,11748,89640
,4,11749,89645
,4,11750,89650
,4,11751,89655
,4,11752,89660
,4,11753,89665
,4,11754,89670
,4,11755,89675
,4,11756,89680
,4,11757,89685
,4,11758,89690
,4,11759,89695
,4,11760,89700
,4,11761,89705
,4,11762,89710
,4,11763,89715
,4,11764,89720
,4,11765,89725
,4,11766,89730
,4,11767,89735
,4,11768,89740
,4,11769,89745
,4,11770,89750
,4,11771,89755
,4,11772,89760
,4,11773,89765
,4,11774,89770
,4,11775,89775
,4,11776,89780
,4,11777,89785
,4,11778,89790
,4,11779,89795
,4,11780,89800
,4,11781,89805
,4,11782,89810
,4,11783,89815
,4,11784,89820
,4,11785,89825
,4,11786,89830
,4,11787,89835
,4,11788,89840
,4,11789,89845
,4,11790,89850
,4,11791,89855
,4,11792,89860
,4,11793,89865
,4,11794,89870
,4,11795,89875
,4,11796,89880
,4,11797,89885
,4,11798,89890
,4,11799,89895
,4,11800,89900
,4,11801,89905
,4,11802,89910
,4,11803,89915
,4,11804,89920
,4,11805,89925
,4,11806,89930
,4,11807,89935
,4,11808,89940
,4,11809,89945
,4,11810,89950
,4,11811,89955
,4,11812,89960
,4,11813,89965
,4,11814,89970
,4,11815,89975
,4,11816,89980
,4,11817,89985
,4,11818,89990
,4,11819,89995
,4,11820,90000
,4,11821,90005
,4,11822,90010
,4,11823,90015
,4,11824,90020
,4,11825,90025
,4,11826,90030
,4,11827,90035
,4,11828,90040
,4,11829,90045
,4,11830,90050
,4,11831,90055
,4,11832,90060
,4,11833,90065
,4,11834,90070
,4,11835,90075
,4,11836,90080
,4,11837,90085
,4,11838,90090
,4,11839,90095
,4,11840,90100
,4,11841,90105
,4,11842,90110
,4,11843,90115
,4,11844,90120
,4,11845,90125
,4,11846,90130
,4,11847,90135
,4,11848,90140
,4,11849,90145
,4,11850,90150
,4,11851,90155
,4,11852,90160
,4,11853,90165
,4,11854,90170
,4,11855,90175
,4,11856,90180
,4,11857,90185
,4,11858,90190
,4,11859,90195
,4,11860,90200
,4,11861,90205
,4,11862,90210
,4,11863,90215
,4,11864,90220
,4,11865,90225
,4,11866,90230
,4,11867,90235
,4,11868,90240
,4,11869,90245
,4,11870,90250
,4,11871,90255
,4,11872,90260
,4,11873,90265
,4,11874,90270
,4,11875,90275
,4,11876,90280
,4,11877,90285
,4,11878,90290
,4,11879,90295
,4,11880,90300
,4,11881,90305
,4,11882,90310
,4,11883,90315
,4,11884,90320
,4,11885,90325
,4,11886,90330
,4,11887,90335
,4,11888,90340
,4,11889,90345
,4,11890,90350
,4,11891,90355
,4,11892,90360
,4,11893,90365
,4,11894,90370
,4,11895,90375
,4,11896,90380
,4,11897,90385
,4,11898,90390
,4,11899,90395
,4,11900,90400
,4,11901,90405
,4,11902,90410
,4,11903,90415
,4,11904,90420
,4,11905,90425
,4,11906,90430
,4,11907,90435
,4,11908,90440
,4,11909,90445
,4,11910,90450
,4,11911,90455
,4,11912,90460
,4,11913,90465
,4,11914,90470
,4,11915,90475
,4,11916,90480
,4,11917,90485
,4,11918,90490
,4,11919,90495
,4,11920,90500
,4,11921,90505
,4,11922,90510
,4,11923,90515
,4,11924,90520
,4,11925,90525
,4,11926,90530
,4,11927,90535
,4,11928,90540
,4,11929,90545
,4,11930,90550
,4,11931,90555
,4,11932,90560
,4,11933,90565
,4,11934,90570
,4,11935,90575
,4,11936,90580
,4,11937,90585
,4,11938,90590
,4,11939,90595
,4,11940,90600
,4,11941,90605
,4,11942,90610
,4,11943,90615
,4,11944,90620
,4,11945,90625
,4,11946,90630
,4,11947,90635
,4,11948,90640
,4,11949,90645
,4,11950,90650
,4,11951,90655
,4,11952,90660
,4,11953,90665
,4,11954,90670
,4,11955,90675
,4,11956,90680
,4,11957,90685
,4,11958,90690
,4,11959,90695
,4,11960,90700
,4,11961,90705
,4,11962,90710
,4,11963,90715
,4,11964,90720
,4,11965,90725
,4,11966,90730
,4,11967,90735
,4,11968,90740
,4,11969,90745
,4,11970,90750
,4,11971,90755
,4,11972,90760
,4,11973,90765
,4,11974,90770
,4,11975,90775
,4,11976,90780
,4,11977,90785
,4,11978,90790
,4,11979,90795
,4,11980,90800
,4,11981,90805
,4,11982,90810
,4,11983,90815
,4,11984,90820
,4,11985,90825
,4,11986,90830
,4,11987,90835
,4,11988,90840
,4,11989,90845
,4,11990,90850
,4,11991,90855
,4,11992,90860
,4,11993,90865
,4,11994,90870
,4,11995,90875
,4,11996,90880
,4,11997,90885
,4,11998,90890
,4,11999,90895
,4,12000,90900
,4,12001,90905
,4,12002,90910
,4,12003,90915
,4,12004,90920
,4,12005,90925
,4,12006,90930
,4,12007,90935
,4,12008,90940
,4,12009,90945
,4,12010,90950
,4,12011,90955
,4,12012,90960
,4,12013,90965
,4,12014,90970
,4,12015,90975
,4,12016,90980
,4,12017,90985
,4,12018,90990
,4,12019,90995
,4,12020,91000
,4,12021,91005
,4,12022,91010
,4,12023,91015
,4,12024,91020
,4,12025,91025
,4,12026,91030
,4,12027,91035
,4,12028,91040
,4,12029,91045
,4,12030,91050
,4,12031,91055
,4,12032,91060
,4,12033,91065
,4,12034,91070
,4,12035,91075
,4,12036,91080
,4,12037,91085
,4,12038,91090
,4,12039,91095
,4,12040,91100
,4,12041,91105
,4,12042,91110
,4,12043,91115
,4,12044,91120
,4,12045,91125
,4,12046,91130
,4,12047,91135
,4,12048,91140
,4,12049,91145
,4,12050,91150
,4,12051,91155
,4,12052,91160
,4,12053,91165
,4,12054,91170
,4,12055,91175
,4,12056,91180
,4,12057,91185
,4,12058,91190
,4,12059,91195
,4,12060,91200
,4,12061,91205
,4,12062,91210
,4,12063,91215
,4,12064,91220
,4,12065,91225
,4,12066,91230
,4,12067,91235
,4,12068,91240
,4,12069,91245
,4,12070,91250
,4,12071,91255
,4,12072,91260
,4,12073,91265
,4,12074,91270
,4,12075,91275
,4,12076,91280
,4,12077,91285
,4,12078,91290
,4,12079,91295
,4,12080,91300
,4,12081,91305
,4,12082,91310
,4,12083,91315
,4,12084,91320
,4,12085,91325
,4,12086,91330
,4,12087,91335
,4,12088,91340
,4,12089,91345
,4,12090,91350
,4,12091,91355
,4,12092,91360
,4,12093,91365
,4,12094,91370
,4,12095,91375
,4,12096,91380
,4,12097,91385
,4,12098,91390
,4,12099,91395
,4,12100,91400
,4,12101,91405
,4,12102,91410
,4,12103,91415
,4,12104,91420
,4,12105,91425
,4,12106,91430
,4,12107,91435
,4,12108,91440
,4,12109,91445
,4,12110,91450
,4,12111,91455
,4,12112,91460
,4,12113,91465
,4,12114,91470
,4,12115,91475
,4,12116,91480
,4,12117,91485
,4,12118,91490
,4,12119,91495
,4,12120,91500
,4,12121,91505
,4,12122,91510
,4,12123,91515
,4,12124,91520
,4,12125,91525
,4,12126,91530
,4,12127,91535
,4,12128,91540
,4,12129,91545
,4,12130,91550
,4,12131,91555
,4,12132,91560
,4,12133,91565
,4,12134,91570
,4,12135,91575
,4,12136,91580
,4,12137,91585
,4,12138,91590
,4,12139,91595
,4,12140,91600
,4,12141,91605
,4,12142,91610
,4,12143,91615
,4,12144,91620
,4,12145,91625
,4,12146,91630
,4,12147,91635
,4,12148,91640
,4,12149,91645
,4,12150,91650
,4,12151,91655
,4,12152,91660
,4,12153,91665
,4,12154,91670
,4,12155,91675
,4,12156,91680
,4,12157,91685
,4,12158,91690
,4,12159,91695
,4,12160,91700
,4,12161,91705
,4,12162,91710
,4,12163,91715
,4,12164,91720
,4,12165,91725
,4,12166,91730
,4,12167,91735
,4,12168,91740
,4,12169,91745
,4,12170,91750
,4,12171,91755
,4,12172,91760
,4,12173,91765
,4,12174,91770
,4,12175,91775
,4,12176,91780
,4,12177,91785
,4,12178,91790
,4,12179,91795
,4,12180,91800
,4,12181,91805
,4,12182,91810
,4,12183,91815
,4,12184,91820
,4,12185,91825
,4,12186,91830
,4,12187,91835
,4,12188,91840
,4,12189,91845
,4,12190,91850
,4,12191,91855
,4,12192,91860
,4,12193,91865
,4,12194,91870
,4,12195,91875
,4,12196,91880
,4,12197,91885
,4,12198,91890
,4,12199,91895
,4,12200,91900
,4,12201,91905
,4,12202,91910
,4,12203,91915
,4,12204,91920
,4,12205,91925
,4,12206,91930
,4,12207,91935
,4,12208,91940
,4,12209,91945
,4,12210,91950
,4,12211,91955
,4,12212,91960
,4,12213,91965
,4,12214,91970
,4,12215,91975
,4,12216,91980
,4,12217,91985
,4,12218,91990
,4,12219,91995
,4,12220,92000
,4,12221,92005
,4,12222,92010
,4,12223,92015
,4,12224,92020
,4,12225,92025
,4,12226,92030
,4,12227,92035
,4,12228,92040
,4,12229,92045
,4,12230,92050
,4,12231,92055
,4,12232,92060
,4,12233,92065
,4,12234,92070
,4,12235,92075
,4,12236,92080
,4,12237,92085
,4,12238,92090
,4,12239,92095
,4,12240,92100
,4,12241,92105
,4,12242,92110
,4,12243,92115
,4,12244,92120
,4,12245,92125
,4,12246,92130
,4,12247,92135
,4,12248,92140
,4,12249,92145
,4,12250,92150
,4,12251,92155
,4,12252,92160
,4,12253,92165
,4,12254,92170
,4,12255,92175
,4,12256,92180
,4,12257,92185
,4,12258,92190
,4,12259,92195
,4,12260,92200
,4,12261,92205
,4,12262,92210
,4,12263,92215
,4,12264,92220
,4,12265,92225
,4,12266,92230
,4,12267,92235
,4,12268,92240
,4,12269,92245
,4,12270,92250
,4,12271,92255
,4,12272,92260
,4,12273,92265
,4,12274,92270
,4,12275,92275
,4,12276,92280
,4,12277,92285
,4,12278,92290
,4,12279,92295
,4,12280,92300
,4,12281,92305
,4,12282,92310
,4,12283,92315
,4,12284,92320
,4,12285,92325
,4,12286,92330
,4,12287,92335
,4,12288,92340
,4,12289,92345
,4,12290,92350
,4,12291,92355
,4,12292,92360
,4,12293,92365
,4,12294,92370
,4,12295,92375
,4,12296,92380
,4,12297,92385
,4,12298,92390
,4,12299,92395
,4,12300,92400
,4,12301,92405
,4,12302,92410
,4,12303,92415
,4,12304,92420
,4,12305,92425
,4,12306,92430
,4,12307,92435
,4,12308,92440
,4,12309,92445
,4,12310,92450
,4,12311,92455
,4,12312,92460
,4,12313,92465
,4,12314,92470
,4,12315,92475
,4,12316,92480
,4,12317,92485
,4,12318,92490
,4,12319,92495
,4,12320,92500
,4,12321,92505
,4,12322,92510
,4,12323,92515
,4,12324,92520
,4,12325,92525
,4,12326,92530
,4,12327,92535
,4,12328,92540
,4,12329,92545
,4,12330,92550
,4,12331,92555
,4,12332,92560
,4,12333,92565
,4,12334,92570
,4,12335,92575
,4,12336,92580
,4,12337,92585
,4,12338,92590
,4,12339,92595
,4,12340,92600
,4,12341,92605
,4,12342,92610
,4,12343,92615
,4,12344,92620
,4,12345,92625
,4,12346,92630
,4,12347,92635
,4,12348,92640
,4,12349,92645
,4,12350,92650
,4,12351,92655
,4,12352,92660
,4,12353,92665
,4,12354,92670
,4,12355,92675
,4,12356,92680
,4,12357,92685
,4,12358,92690
,4,12359,92695
,4,12360,92700
,4,12361,92705
,4,12362,92710
,4,12363,92715
,4,12364,92720
,4,12365,92725
,4,12366,92730
,4,12367,92735
,4,12368,92740
,4,12369,92745
,4,12370,92750
,4,12371,92755
,4,12372,92760
,4,12373,92765
,4,12374,92770
,4,12375,92775
,4,12376,92780
,4,12377,92785
,4,12378,92790
,4,12379,92795
,4,12380,92800
,4,12381,92805
,4,12382,92810
,4,12383,92815
,4,12384,92820
,4,12385,92825
,4,12386,92830
,4,12387,92835
,4,12388,92840
,4,12389,92845
,4,12390,92850
,4,12391,92855
,4,12392,92860
,4,12393,92865
,4,12394,92870
,4,12395,92875
,4,12396,92880
,4,12397,92885
,4,12398,92890
,4,12399,92895
,4,12400,92900
,4,12401,92905
,4,12402,92910
,4,12403,92915
,4,12404,92920
,4,12405,92925
,4,12406,92930
,4,12407,92935
,4,12408,92940
,4,12409,92945
,4,12410,92950
,4,12411,92955
,4,12412,92960
,4,12413,92965
,4,12414,92970
,4,12415,92975
,4,12416,92980
,4,12417,92985
,4,12418,92990
,4,12419,92995
,4,12420,93000
,4,12421,93005
,4,12422,93010
,4,12423,93015
,4,12424,93020
,4,12425,93025
,4,12426,93030
,4,12427,93035
,4,12428,93040
,4,12429,93045
,4,12430,93050
,4,12431,93055
,4,12432,93060
,4,12433,93065
,4,12434,93070
,4,12435,93075
,4,12436,93080
,4,12437,93085
,4,12438,93090
,4,12439,93095
,4,12440,93100
,4,12441,93105
,4,12442,93110
,4,12443,93115
,4,12444,93120
,4,12445,93125
,4,12446,93130
,4,12447,93135
,4,12448,93140
,4,12449,93145
,4,12450,93150
,4,12451,93155
,4,12452,93160
,4,12453,93165
,4,12454,93170
,4,12455,93175
,4,12456,93180
,4,12457,93185
,4,12458,93190
,4,12459,93195
,4,12460,93200
,4,12461,93205
,4,12462,93210
,4,12463,93215
,4,12464,93220
,4,12465,93225
,4,12466,93230
,4,12467,93235
,4,12468,93240
,4,12469,93245
,4,12470,93250
,4,12471,93255
,4,12472,93260
,4,12473,93265
,4,12474,93270
,4,12475,93275
,4,12476,93280
,4,12477,93285
,4,12478,93290
,4,12479,93295
,4,12480,93300
,4,12481,93305
,4,12482,93310
,4,12483,93315
,4,12484,93320
,4,12485,93325
,4,12486,93330
,4,12487,93335
,4,12488,93340
,4,12489,93345
,4,12490,93350
,4,12491,93355
,4,12492,93360
,4,12493,93365
,4,12494,93370
,4,12495,93375
,4,12496,93380
,4,12497,93385
,4,12498,93390
,4,12499,93395
,4,12500,93400
,4,12501,93405
,4,12502,93410
,4,12503,93415
,4,12504,93420
,4,12505,93425
,4,12506,93430
,4,12507,93435
,4,12508,93440
,4,12509,93445
,4,12510,93450
,4,12511,93455
,4,12512,93460
,4,12513,93465
,4,12514,93470
,4,12515,93475
,4,12516,93480
,4,12517,93485
,4,12518,93490
,4,12519,93495
,4,12520,93500
,4,12521,93505
,4,12522,93510
,4,12523,93515
,4,12524,93520
,4,12525,93525
,4,12526,93530
,4,12527,93535
,4,12528,93540
,4,12529,93545
,4,12530,93550
,4,12531,93555
,4,12532,93560
,4,12533,93565
,4,12534,93570
,4,12535,93575
,4,12536,93580
,4,12537,93585
,4,12538,93590
,4,12539,93595
,4,12540,93600
,4,12541,93605
,4,12542,93610
,4,12543,93615
,4,12544,93620
,4,12545,93625
,4,12546,93630
,4,12547,93635
,4,12548,93640
,4,12549,93645
,4,12550,93650
,4,12551,93655
,4,12552,93660
,4,12553,93665
,4,12554,93670
,4,12555,93675
,4,12556,93680
,4,12557,93685
,4,12558,93690
,4,12559,93695
,4,12560,93700
,4,12561,93705
,4,12562,93710
,4,12563,93715
,4,12564,93720
,4,12565,93725
,4,12566,93730
,4,12567,93735
,4,12568,93740
,4,12569,93745
,4,12570,93750
,4,12571,93755
,4,12572,93760
,4,12573,93765
,4,12574,93770
,4,12575,93775
,4,12576,93780
,4,12577,93785
,4,12578,93790
,4,12579,93795
,4,12580,93800
,4,12581,93805
,4,12582,93810
,4,12583,93815
,4,12584,93820
,4,12585,93825
,4,12586,93830
,4,12587,93835
,4,12588,93840
,4,12589,93845
,4,12590,93850
,4,12591,93855
,4,12592,93860
,4,12593,93865
,4,12594,93870
,4,12595,93875
,4,12596,93880
,4,12597,93885
,4,12598,93890
,4,12599,93895
,4,12600,93900
,4,12601,93905
,4,12602,93910
,4,12603,93915
,4,12604,93920
,4,12605,93925
,4,12606,93930
,4,12607,93935
,4,12608,93940
,4,12609,93945
,4,12610,93950
,4,12611,93955
,4,12612,93960
,4,12613,93965
,4,12614,93970
,4,12615,93975
,4,12616,93980
,4,12617,93985
,4,12618,93990
,4,12619,93995
,4,12620,94000
,4,12621,94005
,4,12622,94010
,4,12623,94015
,4,12624,94020
,4,12625,94025
,4,12626,94030
,4,12627,94035
,4,12628,94040
,4,12629,94045
,4,12630,94050
,4,12631,94055
,4,12632,94060
,4,12633,94065
,4,12634,94070
,4,12635,94075
,4,12636,94080
,4,12637,94085
,4,12638,94090
,4,12639,94095
,4,12640,94100
,4,12641,94105
,4,12642,94110
,4,12643,94115
,4,12644,94120
,4,12645,94125
,4,12646,94130
,4,12647,94135
,4,12648,94140
,4,12649,94145
,4,12650,94150
,4,12651,94155
,4,12652,94160
,4,12653,94165
,4,12654,94170
,4,12655,94175
,4,12656,94180
,4,12657,94185
,4,12658,94190
,4,12659,94195
,4,12660,94200
,4,12661,94205
,4,12662,94210
,4,12663,94215
,4,12664,94220
,4,12665,94225
,4,12666,94230
,4,12667,94235
,4,12668,94240
,4,12669,94245
,4,12670,94250
,4,12671,94255
,4,12672,94260
,4,12673,94265
,4,12674,94270
,4,12675,94275
,4,12676,94280
,4,12677,94285
,4,12678,94290
,4,12679,94295
,4,12680,94300
,4,12681,94305
,4,12682,94310
,4,12683,94315
,4,12684,94320
,4,12685,94325
,4,12686,94330
,4,12687,94335
,4,12688,94340
,4,12689,94345
,4,12690,94350
,4,12691,94355
,4,12692,94360
,4,12693,94365
,4,12694,94370
,4,12695,94375
,4,12696,94380
,4,12697,94385
,4,12698,94390
,4,12699,94395
,4,12700,94400
,4,12701,94405
,4,12702,94410
,4,12703,94415
,4,12704,94420
,4,12705,94425
,4,12706,94430
,4,12707,94435
,4,12708,94440
,4,12709,94445
,4,12710,94450
,4,12711,94455
,4,12712,94460
,4,12713,94465
,4,12714,94470
,4,12715,94475
,4,12716,94480
,4,12717,94485
,4,12718,94490
,4,12719,94495
,4,12720,94500
,4,12721,94505
,4,12722,94510
,4,12723,94515
,4,12724,94520
,4,12725,94525
,4,12726,94530
,4,12727,94535
,4,12728,94540
,4,12729,94545
,4,12730,94550
,4,12731,94555
,4,12732,94560
,4,12733,94565
,4,12734,94570
,4,12735,94575
,4,12736,94580
,4,12737,94585
,4,12738,94590
,4,12739,94595
,4,12740,94600
,4,12741,94605
,4,12742,94610
,4,12743,94615
,4,12744,94620
,4,12745,94625
,4,12746,94630
,4,12747,94635
,4,12748,94640
,4,12749,94645
,4,12750,94650
,4,12751,94655
,4,12752,94660
,4,12753,94665
,4,12754,94670
,4,12755,94675
,4,12756,94680
,4,12757,94685
,4,12758,94690
,4,12759,94695
,4,12760,94700
,4,12761,94705
,4,12762,94710
,4,12763,94715
,4,12764,94720
,4,12765,94725
,4,12766,94730
,4,12767,94735
,4,12768,94740
,4,12769,94745
,4,12770,94750
,4,12771,94755
,4,12772,94760
,4,12773,94765
,4,12774,94770
,4,12775,94775
,4,12776,94780
,4,12777,94785
,4,12778,94790
,4,12779,94795
,4,12780,94800
,4,12781,94805
,4,12782,94810
,4,12783,94815
,4,12784,94820
,4,12785,94825
,4,12786,94830
,4,12787,94835
,4,12788,94840
,4,12789,94845
,4,12790,94850
,4,12791,94855
,4,12792,94860
,4,12793,94865
,4,12794,94870
,4,12795,94875
,4,12796,94880
,4,12797,94885
,4,12798,94890
,4,12799,94895
,4,12800,94900
,4,12801,94905
,4,12802,94910
,4,12803,94915
,4,12804,94920
,4,12805,94925
,4,12806,94930
,4,12807,94935
,4,12808,94940
,4,12809,94945
,4,12810,94950
,4,12811,94955
,4,12812,94960
,4,12813,94965
,4,12814,94970
,4,12815,94975
,4,12816,94980
,4,12817,94985
,4,12818,94990
,4,12819,94995
,4,12820,95000
,4,12821,95005
,4,12822,95010
,4,12823,95015
,4,12824,95020
,4,12825,95025
,4,12826,95030
,4,12827,95035
,4,12828,95040
,4,12829,95045
,4,12830,95050
,4,12831,95055
,4,12832,95060
,4,12833,95065
,4,12834,95070
,4,12835,95075
,4,12836,95080
,4,12837,95085
,4,12838,95090
,4,12839,95095
,4,12840,95100
,4,12841,95105
,4,12842,95110
,4,12843,95115
,4,12844,95120
,4,12845,95125
,4,12846,95130
,4,12847,95135
,4,12848,95140
,4,12849,95145
,4,12850,95150
,4,12851,95155
,4,12852,95160
,4,12853,95165
,4,12854,95170
,4,12855,95175
,4,12856,95180
,4,12857,95185
,4,12858,95190
,4,12859,95195
,4,12860,95200
,4,12861,95205
,4,12862,95210
,4,12863,95215
,4,12864,95220
,4,12865,95225
,4,12866,95230
,4,12867,95235
,4,12868,95240
,4,12869,95245
,4,12870,95250
,4,12871,95255
,4,12872,95260
,4,12873,95265
,4,12874,95270
,4,12875,95275
,4,12876,95280
,4,12877,95285
,4,12878,95290
,4,12879,95295
,4,12880,95300
,4,12881,95305
,4,12882,95310
,4,12883,95315
,4,12884,95320
,4,12885,95325
,4,12886,95330
,4,12887,95335
,4,12888,95340
,4,12889,95345
,4,12890,95350
,4,12891,95355
,4,12892,95360
,4,12893,95365
,4,12894,95370
,4,12895,95375
,4,12896,95380
,4,12897,95385
,4,12898,95390
,4,12899,95395
,4,12900,95400
,4,12901,95405
,4,12902,95410
,4,12903,95415
,4,12904,95420
,4,12905,95425
,4,12906,95430
,4,12907,95435
,4,12908,95440
,4,12909,95445
,4,12910,95450
,4,12911,95455
,4,12912,95460
,4,12913,95465
,4,12914,95470
,4,12915,95475
,4,12916,95480
,4,12917,95485
,4,12918,95490
,4,12919,95495
,4,12920,95500
,4,12921,95505
,4,12922,95510
,4,12923,95515
,4,12924,95520
,4,12925,95525
,4,12926,95530
,4,12927,95535
,4,12928,95540
,4,12929,95545
,4,12930,95550
,4,12931,95555
,4,12932,95560
,4,12933,95565
,4,12934,95570
,4,12935,95575
,4,12936,95580
,4,12937,95585
,4,12938,95590
,4,12939,95595
,4,12940,95600
,4,12941,95605
,4,12942,95610
,4,12943,95615
,4,12944,95620
,4,12945,95625
,4,12946,95630
,4,12947,95635
,4,12948,95640
,4,12949,95645
,4,12950,95650
,4,12951,95655
,4,12952,95660
,4,12953,95665
,4,12954,95670
,4,12955,95675
,4,12956,95680
,4,12957,95685
,4,12958,95690
,4,12959,95695
,4,12960,95700
,4,12961,95705
,4,12962,95710
,4,12963,95715
,4,12964,95720
,4,12965,95725
,4,12966,95730
,4,12967,95735
,4,12968,95740
,4,12969,95745
,4,12970,95750
,4,12971,95755
,4,12972,95760
,4,12973,95765
,4,12974,95770
,4,12975,95775
,4,12976,95780
,4,12977,95785
,4,12978,95790
,4,12979,95795
,4,12980,95800
,4,12981,95805
,4,12982,95810
,4,12983,95815
,4,12984,95820
,4,12985,95825
,4,12986,95830
,4,12987,95835
,4,12988,95840
,4,12989,95845
,4,12990,95850
,4,12991,95855
,4,12992,95860
,4,12993,95865
,4,12994,95870
,4,12995,95875
,4,12996,95880
,4,12997,95885
,4,12998,95890
,4,12999,95895
,4,13000,95900
,4,13001,95905
,4,13002,95910
,4,13003,95915
,4,13004,95920
,4,13005,95925
,4,13006,95930
,4,13007,95935
,4,13008,95940
,4,13009,95945
,4,13010,95950
,4,13011,95955
,4,13012,95960
,4,13013,95965
,4,13014,95970
,4,13015,95975
,4,13016,95980
,4,13017,95985
,4,13018,95990
,4,13019,95995
,4,13020,96000
,4,13021,96005
,4,13022,96010
,4,13023,96015
,4,13024,96020
,4,13025,96025
,4,13026,96030
,4,13027,96035
,4,13028,96040
,4,13029,96045
,4,13030,96050
,4,13031,96055
,4,13032,96060
,4,13033,96065
,4,13034,96070
,4,13035,96075
,4,13036,96080
,4,13037,96085
,4,13038,96090
,4,13039,96095
,4,13040,96100
,4,13041,96105
,4,13042,96110
,4,13043,96115
,4,13044,96120
,4,13045,96125
,4,13046,96130
,4,13047,96135
,4,13048,96140
,4,13049,96145
,4,13050,96150
,4,13051,96155
,4,13052,96160
,4,13053,96165
,4,13054,96170
,4,13055,96175
,4,13056,96180
,4,13057,96185
,4,13058,96190
,4,13059,96195
,4,13060,96200
,4,13061,96205
,4,13062,96210
,4,13063,96215
,4,13064,96220
,4,13065,96225
,4,13066,96230
,4,13067,96235
,4,13068,96240
,4,13069,96245
,4,13070,96250
,4,13071,96255
,4,13072,96260
,4,13073,96265
,4,13074,96270
,4,13075,96275
,4,13076,96280
,4,13077,96285
,4,13078,96290
,4,13079,96295
,4,13080,96300
,4,13081,96305
,4,13082,96310
,4,13083,96315
,4,13084,96320
,4,13085,96325
,4,13086,96330
,4,13087,96335
,4,13088,96340
,4,13089,96345
,4,13090,96350
,4,13091,96355
,4,13092,96360
,4,13093,96365
,4,13094,96370
,4,13095,96375
,4,13096,96380
,4,13097,96385
,4,13098,96390
,4,13099,96395
,4,13100,96400
,4,13101,96405
,4,13102,96410
,4,13103,96415
,4,13104,96420
,4,13105,96425
,4,13106,96430
,4,13107,96435
,4,13108,96440
,4,13109,96445
,4,13110,96450
,4,13111,96455
,4,13112,96460
,4,13113,96465
,4,13114,96470
,4,13115,96475
,4,13116,96480
,4,13117,96485
,4,13118,96490
,4,13119,96495
,4,13120,96500
,4,13121,96505
,4,13122,96510
,4,13123,96515
,4,13124,96520
,4,13125,96525
,4,13126,96530
,4,13127,96535
,4,13128,96540
,4,13129,96545
,4,13130,96550
,4,13131,96555
,4,13132,96560
,4,13133,96565
,4,13134,96570
,4,13135,96575
,4,13136,96580
,4,13137,96585
,4,13138,96590
,4,13139,96595
,4,13140,96600
,4,13141,96605
,4,13142,96610
,4,13143,96615
,4,13144,96620
,4,13145,96625
,4,13146,96630
,4,13147,96635
,4,13148,96640
,4,13149,96645
,4,13150,96650
,4,13151,96655
,4,13152,96660
,4,13153,96665
,4,13154,96670
,4,13155,96675
,4,13156,96680
,4,13157,96685
,4,13158,96690
,4,13159,96695
,4,13160,96700
,4,13161,96705
,4,13162,96710
,4,13163,96715
,4,13164,96720
,4,13165,96725
,4,13166,96730
,4,13167,96735
,4,13168,96740
,4,13169,96745
,4,13170,96750
,4,13171,96755
,4,13172,96760
,4,13173,96765
,4,13174,96770
,4,13175,96775
,4,13176,96780
,4,13177,96785
,4,13178,96790
,4,13179,96795
,4,13180,96800
,4,13181,96805
,4,13182,96810
,4,13183,96815
,4,13184,96820
,4,13185,96825
,4,13186,96830
,4,13187,96835
,4,13188,96840
,4,13189,96845
,4,13190,96850
,4,13191,96855
,4,13192,96860
,4,13193,96865
,4,13194,96870
,4,13195,96875
,4,13196,96880
,4,13197,96885
,4,13198,96890
,4,13199,96895
,4,13200,96900
,4,13201,96905
,4,13202,96910
,4,13203,96915
,4,13204,96920
,4,13205,96925
,4,13206,96930
,4,13207,96935
,4,13208,96940
,4,13209,96945
,4,13210,96950
,4,13211,96955
,4,13212,96960
,4,13213,96965
,4,13214,96970
,4,13215,96975
,4,13216,96980
,4,13217,96985
,4,13218,96990
,4,13219,96995
,4,13220,97000
,4,13221,97005
,4,13222,97010
,4,13223,97015
,4,13224,97020
,4,13225,97025
,4,13226,97030
,4,13227,97035
,4,13228,97040
,4,13229,97045
,4,13230,97050
,4,13231,97055
,4,13232,97060
,4,13233,97065
,4,13234,97070
,4,13235,97075
,4,13236,97080
,4,13237,97085
,4,13238,97090
,4,13239,97095
,4,13240,97100
,4,13241,97105
,4,13242,97110
,4,13243,97115
,4,13244,97120
,4,13245,97125
,4,13246,97130
,4,13247,97135
,4,13248,97140
,4,13249,97145
,4,13250,97150
,4,13251,97155
,4,13252,97160
,4,13253,97165
,4,13254,97170
,4,13255,97175
,4,13256,97180
,4,13257,97185
,4,13258,97190
,4,13259,97195
,4,13260,97200
,4,13261,97205
,4,13262,97210
,4,13263,97215
,4,13264,97220
,4,13265,97225
,4,13266,97230
,4,13267,97235
,4,13268,97240
,4,13269,97245
,4,13270,97250
,4,13271,97255
,4,13272,97260
,4,13273,97265
,4,13274,97270
,4,13275,97275
,4,13276,97280
,4,13277,97285
,4,13278,97290
,4,13279,97295
,4,13280,97300
,4,13281,97305
,4,13282,97310
,4,13283,97315
,4,13284,97320
,4,13285,97325
,4,13286,97330
,4,13287,97335
,4,13288,97340
,4,13289,97345
,4,13290,97350
,4,13291,97355
,4,13292,97360
,4,13293,97365
,4,13294,97370
,4,13295,97375
,4,13296,97380
,4,13297,97385
,4,13298,97390
,4,13299,97395
,4,13300,97400
,4,13301,97405
,4,13302,97410
,4,13303,97415
,4,13304,97420
,4,13305,97425
,4,13306,97430
,4,13307,97435
,4,13308,97440
,4,13309,97445
,4,13310,97450
,4,13311,97455
,4,13312,97460
,4,13313,97465
,4,13314,97470
,4,13315,97475
,4,13316,97480
,4,13317,97485
,4,13318,97490
,4,13319,97495
,4,13320,97500
,4,13321,97505
,4,13322,97510
,4,13323,97515
,4,13324,97520
,4,13325,97525
,4,13326,97530
,4,13327,97535
,4,13328,97540
,4,13329,97545
,4,13330,97550
,4,13331,97555
,4,13332,97560
,4,13333,97565
,4,13334,97570
,4,13335,97575
,4,13336,97580
,4,13337,97585
,4,13338,97590
,4,13339,97595
,4,13340,97600
,4,13341,97605
,4,13342,97610
,4,13343,97615
,4,13344,97620
,4,13345,97625
,4,13346,97630
,4,13347,97635
,4,13348,97640
,4,13349,97645
,4,13350,97650
,4,13351,97655
,4,13352,97660
,4,13353,97665
,4,13354,97670
,4,13355,97675
,4,13356,97680
,4,13357,97685
,4,13358,97690
,4,13359,97695
,4,13360,97700
,4,13361,97705
,4,13362,97710
,4,13363,97715
,4,13364,97720
,4,13365,97725
,4,13366,97730
,4,13367,97735
,4,13368,97740
,4,13369,97745
,4,13370,97750
,4,13371,97755
,4,13372,97760
,4,13373,97765
,4,13374,97770
,4,13375,97775
,4,13376,97780
,4,13377,97785
,4,13378,97790
,4,13379,97795
,4,13380,97800
,4,13381,97805
,4,13382,97810
,4,13383,97815
,4,13384,97820
,4,13385,97825
,4,13386,97830
,4,13387,97835
,4,13388,97840
,4,13389,97845
,4,13390,97850
,4,13391,97855
,4,13392,97860
,4,13393,97865
,4,13394,97870
,4,13395,97875
,4,13396,97880
,4,13397,97885
,4,13398,97890
,4,13399,97895
,4,13400,97900
,4,13401,97905
,4,13402,97910
,4,13403,97915
,4,13404,97920
,4,13405,97925
,4,13406,97930
,4,13407,97935
,4,13408,97940
,4,13409,97945
,4,13410,97950
,4,13411,97955
,4,13412,97960
,4,13413,97965
,4,13414,97970
,4,13415,97975
,4,13416,97980
,4,13417,97985
,4,13418,97990
,4,13419,97995
,4,13420,98000
,4,13421,98005
,4,13422,98010
,4,13423,98015
,4,13424,98020
,4,13425,98025
,4,13426,98030
,4,13427,98035
,4,13428,98040
,4,13429,98045
,4,13430,98050
,4,13431,98055
,4,13432,98060
,4,13433,98065
,4,13434,98070
,4,13435,98075
,4,13436,98080
,4,13437,98085
,4,13438,98090
,4,13439,98095
,4,13440,98100
,4,13441,98105
,4,13442,98110
,4,13443,98115
,4,13444,98120
,4,13445,98125
,4,13446,98130
,4,13447,98135
,4,13448,98140
,4,13449,98145
,4,13450,98150
,4,13451,98155
,4,13452,98160
,4,13453,98165
,4,13454,98170
,4,13455,98175
,4,13456,98180
,4,13457,98185
,4,13458,98190
,4,13459,98195
,4,13460,98200
,4,13461,98205
,4,13462,98210
,4,13463,98215
,4,13464,98220
,4,13465,98225
,4,13466,98230
,4,13467,98235
,4,13468,98240
,4,13469,98245
,4,13470,98250
,4,13471,98255
,4,13472,98260
,4,13473,98265
,4,13474,98270
,4,13475,98275
,4,13476,98280
,4,13477,98285
,4,13478,98290
,4,13479,98295
,4,13480,98300
,4,13481,98305
,4,13482,98310
,4,13483,98315
,4,13484,98320
,4,13485,98325
,4,13486,98330
,4,13487,98335
,4,13488,98340
,4,13489,98345
,4,13490,98350
,4,13491,98355
,4,13492,98360
,4,13493,98365
,4,13494,98370
,4,13495,98375
,4,13496,98380
,4,13497,98385
,4,13498,98390
,4,13499,98395
,4,13500,98400
,4,13501,98405
,4,13502,98410
,4,13503,98415
,4,13504,98420
,4,13505,98425
,4,13506,98430
,4,13507,98435
,4,13508,98440
,4,13509,98445
,4,13510,98450
,4,13511,98455
,4,13512,98460
,4,13513,98465
,4,13514,98470
,4,13515,98475
,4,13516,98480
,4,13517,98485
,4,13518,98490
,4,13519,98495
,4,13520,98500
,4,13521,98505
,4,13522,98510
,4,13523,98515
,4,13524,98520
,4,13525,98525
,4,13526,98530
,4,13527,98535
,4,13528,98540
,4,13529,98545
,4,13530,98550
,4,13531,98555
,4,13532,98560
,4,13533,98565
,4,13534,98570
,4,13535,98575
,4,13536,98580
,4,13537,98585
,4,13538,98590
,4,13539,98595
,4,13540,98600
,4,13541,98605
,4,13542,98610
,4,13543,98615
,4,13544,98620
,4,13545,98625
,4,13546,98630
,4,13547,98635
,4,13548,98640
,4,13549,98645
,4,13550,98650
,4,13551,98655
,4,13552,98660
,4,13553,98665
,4,13554,98670
,4,13555,98675
,4,13556,98680
,4,13557,98685
,4,13558,98690
,4,13559,98695
,4,13560,98700
,4,13561,98705
,4,13562,98710
,4,13563,98715
,4,13564,98720
,4,13565,98725
,4,13566,98730
,4,13567,98735
,4,13568,98740
,4,13569,98745
,4,13570,98750
,4,13571,98755
,4,13572,98760
,4,13573,98765
,4,13574,98770
,4,13575,98775
,4,13576,98780
,4,13577,98785
,4,13578,98790
,4,13579,98795
,4,13580,98800
,4,13581,98805
,4,13582,98810
,4,13583,98815
,4,13584,98820
,4,13585,98825
,4,13586,98830
,4,13587,98835
,4,13588,98840
,4,13589,98845
,4,13590,98850
,4,13591,98855
,4,13592,98860
,4,13593,98865
,4,13594,98870
,4,13595,98875
,4,13596,98880
,4,13597,98885
,4,13598,98890
,4,13599,98895
,4,13600,98900
,4,13601,98905
,4,13602,98910
,4,13603,98915
,4,13604,98920
,4,13605,98925
,4,13606,98930
,4,13607,98935
,4,13608,98940
,4,13609,98945
,4,13610,98950
,4,13611,98955
,4,13612,98960
,4,13613,98965
,4,13614,98970
,4,13615,98975
,4,13616,98980
,4,13617,98985
,4,13618,98990
,4,13619,98995
,4,13620,99000
,4,13621,99005
,4,13622,99010
,4,13623,99015
,4,13624,99020
,4,13625,99025
,4,13626,99030
,4,13627,99035
,4,13628,99040
,4,13629,99045
,4,13630,99050
,4,13631,99055
,4,13632,99060
,4,13633,99065
,4,13634,99070
,4,13635,99075
,4,13636,99080
,4,13637,99085
,4,13638,99090
,4,13639,99095
,4,13640,99100
,4,13641,99105
,4,13642,99110
,4,13643,99115
,4,13644,99120
,4,13645,99125
,4,13646,99130
,4,13647,99135
,4,13648,99140
,4,13649,99145
,4,13650,99150
,4,13651,99155
,4,13652,99160
,4,13653,99165
,4,13654,99170
,4,13655,99175
,4,13656,99180
,4,13657,99185
,4,13658,99190
,4,13659,99195
,4,13660,99200
,4,13661,99205
,4,13662,99210
,4,13663,99215
,4,13664,99220
,4,13665,99225
,4,13666,99230
,4,13667,99235
,4,13668,99240
,4,13669,99245
,4,13670,99250
,4,13671,99255
,4,13672,99260
,4,13673,99265
,4,13674,99270
,4,13675,99275
,4,13676,99280
,4,13677,99285
,4,13678,99290
,4,13679,99295
,4,13680,99300
,4,13681,99305
,4,13682,99310
,4,13683,99315
,4,13684,99320
,4,13685,99325
,4,13686,99330
,4,13687,99335
,4,13688,99340
,4,13689,99345
,4,13690,99350
,4,13691,99355
,4,13692,99360
,4,13693,99365
,4,13694,99370
,4,13695,99375
,4,13696,99380
,4,13697,99385
,4,13698,99390
,4,13699,99395
,4,13700,99400
,4,13701,99405
,4,13702,99410
,4,13703,99415
,4,13704,99420
,4,13705,99425
,4,13706,99430
,4,13707,99435
,4,13708,99440
,4,13709,99445
,4,13710,99450
,4,13711,99455
,4,13712,99460
,4,13713,99465
,4,13714,99470
,4,13715,99475
,4,13716,99480
,4,13717,99485
,4,13718,99490
,4,13719,99495
,4,13720,99500
,4,13721,99505
,4,13722,99510
,4,13723,99515
,4,13724,99520
,4,13725,99525
,4,13726,99530
,4,13727,99535
,4,13728,99540
,4,13729,99545
,4,13730,99550
,4,13731,99555
,4,13732,99560
,4,13733,99565
,4,13734,99570
,4,13735,99575
,4,13736,99580
,4,13737,99585
,4,13738,99590
,4,13739,99595
,4,13740,99600
,4,13741,99605
,4,13742,99610
,4,13743,99615
,4,13744,99620
,4,13745,99625
,4,13746,99630
,4,13747,99635
,4,13748,99640
,4,13749,99645
,4,13750,99650
,4,13751,99655
,4,13752,99660
,4,13753,99665
,4,13754,99670
,4,13755,99675
,4,13756,99680
,4,13757,99685
,4,13758,99690
,4,13759,99695
,4,13760,99700
,4,13761,99705
,4,13762,99710
,4,13763,99715
,4,13764,99720
,4,13765,99725
,4,13766,99730
,4,13767,99735
,4,13768,99740
,4,13769,99745
,4,13770,99750
,4,13771,99755
,4,13772,99760
,4,13773,99765
,4,13774,99770
,4,13775,99775
,4,13776,99780
,4,13777,99785
,4,13778,99790
,4,13779,99795
,4,13780,99800
,4,13781,99805
,4,13782,99810
,4,13783,99815
,4,13784,99820
,4,13785,99825
,4,13786,99830
,4,13787,99835
,4,13788,99840
,4,13789,99845
,4,13790,99850
,4,13791,99855
,4,13792,99860
,4,13793,99865
,4,13794,99870
,4,13795,99875
,4,13796,99880
,4,13797,99885
,4,13798,99890
,4,13799,99895
,4,13800,99900
,4,13801,99905
,4,13802,99910
,4,13803,99915
,4,13804,99920
,4,13805,99925
,4,13806,99930
,4,13807,99935
,4,13808,99940
,4,13809,99945
,4,13810,99950
,4,13811,99955
,4,13812,99960
,4,13813,99965
,4,13814,99970
,4,13815,99975
,4,13816,99980
,4,13817,99985
,4,13818,99990
,4,13819,99995
,4,13820,100000
,4,13821,100005
,4,13822,100010
,4,13823,100015
,4,13824,100020
,4,13825,100025
,4,13826,100030
,4,13827,100035
,4,13828,100040
,4,13829,100045
,4,13830,100050
,4,13831,100055
,4,13832,100060
,4,13833,100065
,4,13834,100070
,4,13835,100075
,4,13836,100080
,4,13837,100085
,4,13838,100090
,4,13839,100095
,4,13840,100100
,4,13841,100105
,4,13842,100110
,4,13843,100115
,4,13844,100120
,4,13845,100125
,4,13846,100130
,4,13847,100135
,4,13848,100140
,4,13849,100145
,4,13850,100150
,4,13851,100155
,4,13852,100160
,4,13853,100165
,4,13854,100170
,4,13855,100175
,4,13856,100180
,4,13857,100185
,4,13858,100190
,4,13859,100195
,4,13860,100200
,4,13861,100205
,4,13862,100210
,4,13863,100215
,4,13864,100220
,4,13865,100225
,4,13866,100230
,4,13867,100235
,4,13868,100240
,4,13869,100245
,4,13870,100250
,4,13871,100255
,4,13872,100260
,4,13873,100265
,4,13874,100270
,4,13875,100275
,4,13876,100280
,4,13877,100285
,4,13878,100290
,4,13879,100295
,4,13880,100300
,4,13881,100305
,4,13882,100310
,4,13883,100315
,4,13884,100320
,4,13885,100325
,4,13886,100330
,4,13887,100335
,4,13888,100340
,4,13889,100345
,4,13890,100350
,4,13891,100355
,4,13892,100360
,4,13893,100365
,4,13894,100370
,4,13895,100375
,4,13896,100380
,4,13897,100385
,4,13898,100390
,4,13899,100395
,4,13900,100400
,4,13901,100405
,4,13902,100410
,4,13903,100415
,4,13904,100420
,4,13905,100425
,4,13906,100430
,4,13907,100435
,4,13908,100440
,4,13909,100445
,4,13910,100450
,4,13911,100455
,4,13912,100460
,4,13913,100465
,4,13914,100470
,4,13915,100475
,4,13916,100480
,4,13917,100485
,4,13918,100490
,4,13919,100495
,4,13920,100500
,4,13921,100505
,4,13922,100510
,4,13923,100515
,4,13924,100520
,4,13925,100525
,4,13926,100530
,4,13927,100535
,4,13928,100540
,4,13929,100545
,4,13930,100550
,4,13931,100555
,4,13932,100560
,4,13933,100565
,4,13934,100570
,4,13935,100575
,4,13936,100580
,4,13937,100585
,4,13938,100590
,4,13939,100595
,4,13940,100600
,4,13941,100605
,4,13942,100610
,4,13943,100615
,4,13944,100620
,4,13945,100625
,4,13946,100630
,4,13947,100635
,4,13948,100640
,4,13949,100645
,4,13950,100650
,4,13951,100655
,4,13952,100660
,4,13953,100665
,4,13954,100670
,4,13955,100675
,4,13956,100680
,4,13957,100685
,4,13958,100690
,4,13959,100695
,4,13960,100700
,4,13961,100705
,4,13962,100710
,4,13963,100715
,4,13964,100720
,4,13965,100725
,4,13966,100730
,4,13967,100735
,4,13968,100740
,4,13969,100745
,4,13970,100750
,4,13971,100755
,4,13972,100760
,4,13973,100765
,4,13974,100770
,4,13975,100775
,4,13976,100780
,4,13977,100785
,4,13978,100790
,4,13979,100795
,4,13980,100800
,4,13981,100805
,4,13982,100810
,4,13983,100815
,4,13984,100820
,4,13985,100825
,4,13986,100830
,4,13987,100835
,4,13988,100840
,4,13989,100845
,4,13990,100850
,4,13991,100855
,4,13992,100860
,4,13993,100865
,4,13994,100870
,4,13995,100875
,4,13996,100880
,4,13997,100885
,4,13998,100890
,4,13999,100895
,4,14000,100900
,4,14001,100905
,4,14002,100910
,4,14003,100915
,4,14004,100920
,4,14005,100925
,4,14006,100930
,4,14007,100935
,4,14008,100940
,4,14009,100945
,4,14010,100950
,4,14011,100955
,4,14012,100960
,4,14013,100965
,4,14014,100970
,4,14015,100975
,4,14016,100980
,4,14017,100985
,4,14018,100990
,4,14019,100995
,4,14020,101000
,4,14021,101005
,4,14022,101010
,4,14023,101015
,4,14024,101020
,4,14025,101025
,4,14026,101030
,4,14027,101035
,4,14028,101040
,4,14029,101045
,4,14030,101050
,4,14031,101055
,4,14032,101060
,4,14033,101065
,4,14034,101070
,4,14035,101075
,4,14036,101080
,4,14037,101085
,4,14038,101090
,4,14039,101095
,4,14040,101100
,4,14041,101105
,4,14042,101110
,4,14043,101115
,4,14044,101120
,4,14045,101125
,4,14046,101130
,4,14047,101135
,4,14048,101140
,4,14049,101145
,4,14050,101150
,4,14051,101155
,4,14052,101160
,4,14053,101165
,4,14054,101170
,4,14055,101175
,4,14056,101180
,4,14057,101185
,4,14058,101190
,4,14059,101195
,4,14060,101200
,4,14061,101205
,4,14062,101210
,4,14063,101215
,4,14064,101220
,4,14065,101225
,4,14066,101230
,4,14067,101235
,4,14068,101240
,4,14069,101245
,4,14070,101250
,4,14071,101255
,4,14072,101260
,4,14073,101265
,4,14074,101270
,4,14075,101275
,4,14076,101280
,4,14077,101285
,4,14078,101290
,4,14079,101295
,4,14080,101300
,4,14081,101305
,4,14082,101310
,4,14083,101315
,4,14084,101320
,4,14085,101325
,4,14086,101330
,4,14087,101335
,4,14088,101340
,4,14089,101345
,4,14090,101350
,4,14091,101355
,4,14092,101360
,4,14093,101365
,4,14094,101370
,4,14095,101375
,4,14096,101380
,4,14097,101385
,4,14098,101390
,4,14099,101395
,4,14100,101400
,4,14101,101405
,4,14102,101410
,4,14103,101415
,4,14104,101420
,4,14105,101425
,4,14106,101430
,4,14107,101435
,4,14108,101440
,4,14109,101445
,4,14110,101450
,4,14111,101455
,4,14112,101460
,4,14113,101465
,4,14114,101470
,4,14115,101475
,4,14116,101480
,4,14117,101485
,4,14118,101490
,4,14119,101495
,4,14120,101500
,4,14121,101505
,4,14122,101510
,4,14123,101515
,4,14124,101520
,4,14125,101525
,4,14126,101530
,4,14127,101535
,4,14128,101540
,4,14129,101545
,4,14130,101550
,4,14131,101555
,4,14132,101560
,4,14133,101565
,4,14134,101570
,4,14135,101575
,4,14136,101580
,4,14137,101585
,4,14138,101590
,4,14139,101595
,4,14140,101600
,4,14141,101605
,4,14142,101610
,4,14143,101615
,4,14144,101620
,4,14145,101625
,4,14146,101630
,4,14147,101635
,4,14148,101640
,4,14149,101645
,4,14150,101650
,4,14151,101655
,4,14152,101660
,4,14153,101665
,4,14154,101670
,4,14155,101675
,4,14156,101680
,4,14157,101685
,4,14158,101690
,4,14159,101695
,4,14160,101700
,4,14161,101705
,4,14162,101710
,4,14163,101715
,4,14164,101720
,4,14165,101725
,4,14166,101730
,4,14167,101735
,4,14168,101740
,4,14169,101745
,4,14170,101750
,4,14171,101755
,4,14172,101760
,4,14173,101765
,4,14174,101770
,4,14175,101775
,4,14176,101780
,4,14177,101785
,4,14178,101790
,4,14179,101795
,4,14180,101800
,4,14181,101805
,4,14182,101810
,4,14183,101815
,4,14184,101820
,4,14185,101825
,4,14186,101830
,4,14187,101835
,4,14188,101840
,4,14189,101845
,4,14190,101850
,4,14191,101855
,4,14192,101860
,4,14193,101865
,4,14194,101870
,4,14195,101875
,4,14196,101880
,4,14197,101885
,4,14198,101890
,4,14199,101895
,4,14200,101900
,4,14201,101905
,4,14202,101910
,4,14203,101915
,4,14204,101920
,4,14205,101925
,4,14206,101930
,4,14207,101935
,4,14208,101940
,4,14209,101945
,4,14210,101950
,4,14211,101955
,4,14212,101960
,4,14213,101965
,4,14214,101970
,4,14215,101975
,4,14216,101980
,4,14217,101985
,4,14218,101990
,4,14219,101995
,4,14220,102000
,4,14221,102005
,4,14222,102010
,4,14223,102015
,4,14224,102020
,4,14225,102025
,4,14226,102030
,4,14227,102035
,4,14228,102040
,4,14229,102045
,4,14230,102050
,4,14231,102055
,4,14232,102060
,4,14233,102065
,4,14234,102070
,4,14235,102075
,4,14236,102080
,4,14237,102085
,4,14238,102090
,4,14239,102095
,4,14240,102100
,4,14241,102105
,4,14242,102110
,4,14243,102115
,4,14244,102120
,4,14245,102125
,4,14246,102130
,4,14247,102135
,4,14248,102140
,4,14249,102145
,4,14250,102150
,4,14251,102155
,4,14252,102160
,4,14253,102165
,4,14254,102170
,4,14255,102175
,4,14256,102180
,4,14257,102185
,4,14258,102190
,4,14259,102195
,4,14260,102200
,4,14261,102205
,4,14262,102210
,4,14263,102215
,4,14264,102220
,4,14265,102225
,4,14266,102230
,4,14267,102235
,4,14268,102240
,4,14269,102245
,4,14270,102250
,4,14271,102255
,4,14272,102260
,4,14273,102265
,4,14274,102270
,4,14275,102275
,4,14276,102280
,4,14277,102285
,4,14278,102290
,4,14279,102295
,4,14280,102300
,4,14281,102305
,4,14282,102310
,4,14283,102315
,4,14284,102320
,4,14285,102325
,4,14286,102330
,4,14287,102335
,4,14288,102340
,4,14289,102345
,4,14290,102350
,4,14291,102355
,4,14292,102360
,4,14293,102365
,4,14294,102370
,4,14295,102375
,4,14296,102380
,4,14297,102385
,4,14298,102390
,4,14299,102395
,4,14300,102400
,4,14301,102405
,4,14302,102410
,4,14303,102415
,4,14304,102420
,4,14305,102425
,4,14306,102430
,4,14307,102435
,4,14308,102440
,4,14309,102445
,4,14310,102450
,4,14311,102455
,4,14312,102460
,4,14313,102465
,4,14314,102470
,4,14315,102475
,4,14316,102480
,4,14317,102485
,4,14318,102490
,4,14319,102495
,4,14320,102500
,4,14321,102505
,4,14322,102510
,4,14323,102515
,4,14324,102520
,4,14325,102525
,4,14326,102530
,4,14327,102535
,4,14328,102540
,4,14329,102545
,4,14330,102550
,4,14331,102555
,4,14332,102560
,4,14333,102565
,4,14334,102570
,4,14335,102575
,4,14336,102580
,4,14337,102585
,4,14338,102590
,4,14339,102595
,4,14340,102600
,4,14341,102605
,4,14342,102610
,4,14343,102615
,4,14344,102620
,4,14345,102625
,4,14346,102630
,4,14347,102635
,4,14348,102640
,4,14349,102645
,4,14350,102650
,4,14351,102655
,4,14352,102660
,4,14353,102665
,4,14354,102670
,4,14355,102675
,4,14356,102680
,4,14357,102685
,4,14358,102690
,4,14359,102695
,4,14360,102700
,4,14361,102705
,4,14362,102710
,4,14363,102715
,4,14364,102720
,4,14365,102725
,4,14366,102730
,4,14367,102735
,4,14368,102740
,4,14369,102745
,4,14370,102750
,4,14371,102755
,4,14372,102760
,4,14373,102765
,4,14374,102770
,4,14375,102775
,4,14376,102780
,4,14377,102785
,4,14378,102790
,4,14379,102795
,4,14380,102800
,4,14381,102805
,4,14382,102810
,4,14383,102815
,4,14384,102820
,4,14385,102825
,4,14386,102830
,4,14387,102835
,4,14388,102840
,4,14389,102845
,4,14390,102850
,4,14391,102855
,4,14392,102860
,4,14393,102865
,4,14394,102870
,4,14395,102875
,4,14396,102880
,4,14397,102885
,4,14398,102890
,4,14399,102895
,4,14400,102900
,4,14401,102905
,4,14402,102910
,4,14403,102915
,4,14404,102920
,4,14405,102925
,4,14406,102930
,4,14407,102935
,4,14408,102940
,4,14409,102945
,4,14410,102950
,4,14411,102955
,4,14412,102960
,4,14413,102965
,4,14414,102970
,4,14415,102975
,4,14416,102980
,4,14417,102985
,4,14418,102990
,4,14419,102995
,4,14420,103000
,4,14421,103005
,4,14422,103010
,4,14423,103015
,4,14424,103020
,4,14425,103025
,4,14426,103030
,4,14427,103035
,4,14428,103040
,4,14429,103045
,4,14430,103050
,4,14431,103055
,4,14432,103060
,4,14433,103065
,4,14434,103070
,4,14435,103075
,4,14436,103080
,4,14437,103085
,4,14438,103090
,4,14439,103095
,4,14440,103100
,4,14441,103105
,4,14442,103110
,4,14443,103115
,4,14444,103120
,4,14445,103125
,4,14446,103130
,4,14447,103135
,4,14448,103140
,4,14449,103145
,4,14450,103150
,4,14451,103155
,4,14452,103160
,4,14453,103165
,4,14454,103170
,4,14455,103175
,4,14456,103180
,4,14457,103185
,4,14458,103190
,4,14459,103195
,4,14460,103200
,4,14461,103205
,4,14462,103210
,4,14463,103215
,4,14464,103220
,4,14465,103225
,4,14466,103230
,4,14467,103235
,4,14468,103240
,4,14469,103245
,4,14470,103250
,4,14471,103255
,4,14472,103260
,4,14473,103265
,4,14474,103270
,4,14475,103275
,4,14476,103280
,4,14477,103285
,4,14478,103290
,4,14479,103295
,4,14480,103300
,4,14481,103305
,4,14482,103310
,4,14483,103315
,4,14484,103320
,4,14485,103325
,4,14486,103330
,4,14487,103335
,4,14488,103340
,4,14489,103345
,4,14490,103350
,4,14491,103355
,4,14492,103360
,4,14493,103365
,4,14494,103370
,4,14495,103375
,4,14496,103380
,4,14497,103385
,4,14498,103390
,4,14499,103395
,4,14500,103400
,4,14501,103405
,4,14502,103410
,4,14503,103415
,4,14504,103420
,4,14505,103425
,4,14506,103430
,4,14507,103435
,4,14508,103440
,4,14509,103445
,4,14510,103450
,4,14511,103455
,4,14512,103460
,4,14513,103465
,4,14514,103470
,4,14515,103475
,4,14516,103480
,4,14517,103485
,4,14518,103490
,4,14519,103495
,4,14520,103500
,4,14521,103505
,4,14522,103510
,4,14523,103515
,4,14524,103520
,4,14525,103525
,4,14526,103530
,4,14527,103535
,4,14528,103540
,4,14529,103545
,4,14530,103550
,4,14531,103555
,4,14532,103560
,4,14533,103565
,4,14534,103570
,4,14535,103575
,4,14536,103580
,4,14537,103585
,4,14538,103590
,4,14539,103595
,4,14540,103600
,4,14541,103605
,4,14542,103610
,4,14543,103615
,4,14544,103620
,4,14545,103625
,4,14546,103630
,4,14547,103635
,4,14548,103640
,4,14549,103645
,4,14550,103650
,4,14551,103655
,4,14552,103660
,4,14553,103665
,4,14554,103670
,4,14555,103675
,4,14556,103680
,4,14557,103685
,4,14558,103690
,4,14559,103695
,4,14560,103700
,4,14561,103705
,4,14562,103710
,4,14563,103715
,4,14564,103720
,4,14565,103725
,4,14566,103730
,4,14567,103735
,4,14568,103740
,4,14569,103745
,4,14570,103750
,4,14571,103755
,4,14572,103760
,4,14573,103765
,4,14574,103770
,4,14575,103775
,4,14576,103780
,4,14577,103785
,4,14578,103790
,4,14579,103795
,4,14580,103800
,4,14581,103805
,4,14582,103810
,4,14583,103815
,4,14584,103820
,4,14585,103825
,4,14586,103830
,4,14587,103835
,4,14588,103840
,4,14589,103845
,4,14590,103850
,4,14591,103855
,4,14592,103860
,4,14593,103865
,4,14594,103870
,4,14595,103875
,4,14596,103880
,4,14597,103885
,4,14598,103890
,4,14599,103895
,4,14600,103900
,4,14601,103905
,4,14602,103910
,4,14603,103915
,4,14604,103920
,4,14605,103925
,4,14606,103930
,4,14607,103935
,4,14608,103940
,4,14609,103945
,4,14610,103950
,4,14611,103955
,4,14612,103960
,4,14613,103965
,4,14614,103970
,4,14615,103975
,4,14616,103980
,4,14617,103985
,4,14618,103990
,4,14619,103995
,4,14620,104000
,4,14621,104005
,4,14622,104010
,4,14623,104015
,4,14624,104020
,4,14625,104025
,4,14626,104030
,4,14627,104035
,4,14628,104040
,4,14629,104045
,4,14630,104050
,4,14631,104055
,4,14632,104060
,4,14633,104065
,4,14634,104070
,4,14635,104075
,4,14636,104080
,4,14637,104085
,4,14638,104090
,4,14639,104095
,4,14640,104100
,4,14641,104105
,4,14642,104110
,4,14643,104115
,4,14644,104120
,4,14645,104125
,4,14646,104130
,4,14647,104135
,4,14648,104140
,4,14649,104145
,4,14650,104150
,4,14651,104155
,4,14652,104160
,4,14653,104165
,4,14654,104170
,4,14655,104175
,4,14656,104180
,4,14657,104185
,4,14658,104190
,4,14659,104195
,4,14660,104200
,4,14661,104205
,4,14662,104210
,4,14663,104215
,4,14664,104220
,4,14665,104225
,4,14666,104230
,4,14667,104235
,4,14668,104240
,4,14669,104245
,4,14670,104250
,4,14671,104255
,4,14672,104260
,4,14673,104265
,4,14674,104270
,4,14675,104275
,4,14676,104280
,4,14677,104285
,4,14678,104290
,4,14679,104295
,4,14680,104300
,4,14681,104305
,4,14682,104310
,4,14683,104315
,4,14684,104320
,4,14685,104325
,4,14686,104330
,4,14687,104335
,4,14688,104340
,4,14689,104345
,4,14690,104350
,4,14691,104355
,4,14692,104360
,4,14693,104365
,4,14694,104370
,4,14695,104375
,4,14696,104380
,4,14697,104385
,4,14698,104390
,4,14699,104395
,4,14700,104400
,4,14701,104405
,4,14702,104410
,4,14703,104415
,4,14704,104420
,4,14705,104425
,4,14706,104430
,4,14707,104435
,4,14708,104440
,4,14709,104445
,4,14710,104450
,4,14711,104455
,4,14712,104460
,4,14713,104465
,4,14714,104470
,4,14715,104475
,4,14716,104480
,4,14717,104485
,4,14718,104490
,4,14719,104495
,4,14720,104500
,4,14721,104505
,4,14722,104510
,4,14723,104515
,4,14724,104520
,4,14725,104525
,4,14726,104530
,4,14727,104535
,4,14728,104540
,4,14729,104545
,4,14730,104550
,4,14731,104555
,4,14732,104560
,4,14733,104565
,4,14734,104570
,4,14735,104575
,4,14736,104580
,4,14737,104585
,4,14738,104590
,4,14739,104595
,4,14740,104600
,4,14741,104605
,4,14742,104610
,4,14743,104615
,4,14744,104620
,4,14745,104625
,4,14746,104630
,4,14747,104635
,4,14748,104640
,4,14749,104645
,4,14750,104650
,4,14751,104655
,4,14752,104660
,4,14753,104665
,4,14754,104670
,4,14755,104675
,4,14756,104680
,4,14757,104685
,4,14758,104690
,4,14759,104695
,4,14760,104700
,4,14761,104705
,4,14762,104710
,4,14763,104715
,4,14764,104720
,4,14765,104725
,4,14766,104730
,4,14767,104735
,4,14768,104740
,4,14769,104745
,4,14770,104750
,4,14771,104755
,4,14772,104760
,4,14773,104765
,4,14774,104770
,4,14775,104775
,4,14776,104780
,4,14777,104785
,4,14778,104790
,4,14779,104795
,4,14780,104800
,4,14781,104805
,4,14782,104810
,4,14783,104815
,4,14784,104820
,4,14785,104825
,4,14786,104830
,4,14787,104835
,4,14788,104840
,4,14789,104845
,4,14790,104850
,4,14791,104855
,4,14792,104860
,4,14793,104865
,4,14794,104870
,4,14795,104875
,4,14796,104880
,4,14797,104885
,4,14798,104890
,4,14799,104895
,4,14800,104900
,4,14801,104905
,4,14802,104910
,4,14803,104915
,4,14804,104920
,4,14805,104925
,4,14806,104930
,4,14807,104935
,4,14808,104940
,4,14809,104945
,4,14810,104950
,4,14811,104955
,4,14812,104960
,4,14813,104965
,4,14814,104970
,4,14815,104975
,4,14816,104980
,4,14817,104985
,4,14818,104990
,4,14819,104995
,4,14820,105000
,4,14821,105005
,4,14822,105010
,4,14823,105015
,4,14824,105020
,4,14825,105025
,4,14826,105030
,4,14827,105035
,4,14828,105040
,4,14829,105045
,4,14830,105050
,4,14831,105055
,4,14832,105060
,4,14833,105065
,4,14834,105070
,4,14835,105075
,4,14836,105080
,4,14837,105085
,4,14838,105090
,4,14839,105095
,4,14840,105100
,4,14841,105105
,4,14842,105110
,4,14843,105115
,4,14844,105120
,4,14845,105125
,4,14846,105130
,4,14847,105135
,4,14848,105140
,4,14849,105145
,4,14850,105150
,4,14851,105155
,4,14852,105160
,4,14853,105165
,4,14854,105170
,4,14855,105175
,4,14856,105180
,4,14857,105185
,4,14858,105190
,4,14859,105195
,4,14860,105200
,4,14861,105205
,4,14862,105210
,4,14863,105215
,4,14864,105220
,4,14865,105225
,4,14866,105230
,4,14867,105235
,4,14868,105240
,4,14869,105245
,4,14870,105250
,4,14871,105255
,4,14872,105260
,4,14873,105265
,4,14874,105270
,4,14875,105275
,4,14876,105280
,4,14877,105285
,4,14878,105290
,4,14879,105295
,4,14880,105300
,4,14881,105305
,4,14882,105310
,4,14883,105315
,4,14884,105320
,4,14885,105325
,4,14886,105330
,4,14887,105335
,4,14888,105340
,4,14889,105345
,4,14890,105350
,4,14891,105355
,4,14892,105360
,4,14893,105365
,4,14894,105370
,4,14895,105375
,4,14896,105380
,4,14897,105385
,4,14898,105390
,4,14899,105395
,4,14900,105400
,4,14901,105405
,4,14902,105410
,4,14903,105415
,4,14904,105420
,4,14905,105425
,4,14906,105430
,4,14907,105435
,4,14908,105440
,4,14909,105445
,4,14910,105450
,4,14911,105455
,4,14912,105460
,4,14913,105465
,4,14914,105470
,4,14915,105475
,4,14916,105480
,4,14917,105485
,4,14918,105490
,4,14919,105495
,4,14920,105500
,4,14921,105505
,4,14922,105510
,4,14923,105515
,4,14924,105520
,4,14925,105525
,4,14926,105530
,4,14927,105535
,4,14928,105540
,4,14929,105545
,4,14930,105550
,4,14931,105555
,4,14932,105560
,4,14933,105565
,4,14934,105570
,4,14935,105575
,4,14936,105580
,4,14937,105585
,4,14938,105590
,4,14939,105595
,4,14940,105600
,4,14941,105605
,4,14942,105610
,4,14943,105615
,4,14944,105620
,4,14945,105625
,4,14946,105630
,4,14947,105635
,4,14948,105640
,4,14949,105645
,4,14950,105650
,4,14951,105655
,4,14952,105660
,4,14953,105665
,4,14954,105670
,4,14955,105675
,4,14956,105680
,4,14957,105685
,4,14958,105690
,4,14959,105695
,4,14960,105700
,4,14961,105705
,4,14962,105710
,4,14963,105715
,4,14964,105720
,4,14965,105725
,4,14966,105730
,4,14967,105735
,4,14968,105740
,4,14969,105745
,4,14970,105750
,4,14971,105755
,4,14972,105760
,4,14973,105765
,4,14974,105770
,4,14975,105775
,4,14976,105780
,4,14977,105785
,4,14978,105790
,4,14979,105795
,4,14980,105800
,4,14981,105805
,4,14982,105810
,4,14983,105815
,4,14984,105820
,4,14985,105825
,4,14986,105830
,4,14987,105835
,4,14988,105840
,4,14989,105845
,4,14990,105850
,4,14991,105855
,4,14992,105860
,4,14993,105865
,4,14994,105870
,4,14995,105875
,4,14996,105880
,4,14997,105885
,4,14998,105890
,4,14999,105895
,4,15000,105900
,4,15001,105905
,4,15002,105910
,4,15003,105915
,4,15004,105920
,4,15005,105925
,4,15006,105930
,4,15007,105935
,4,15008,105940
,4,15009,105945
,4,15010,105950
,4,15011,105955
,4,15012,105960
,4,15013,105965
,4,15014,105970
,4,15015,105975
,4,15016,105980
,4,15017,105985
,4,15018,105990
,4,15019,105995
,4,15020,106000
,4,15021,106005
,4,15022,106010
,4,15023,106015
,4,15024,106020
,4,15025,106025
,4,15026,106030
,4,15027,106035
,4,15028,106040
,4,15029,106045
,4,15030,106050
,4,15031,106055
,4,15032,106060
,4,15033,106065
,4,15034,106070
,4,15035,106075
,4,15036,106080
,4,15037,106085
,4,15038,106090
,4,15039,106095
,4,15040,106100
,4,15041,106105
,4,15042,106110
,4,15043,106115
,4,15044,106120
,4,15045,106125
,4,15046,106130
,4,15047,106135
,4,15048,106140
,4,15049,106145
,4,15050,106150
,4,15051,106155
,4,15052,106160
,4,15053,106165
,4,15054,106170
,4,15055,106175
,4,15056,106180
,4,15057,106185
,4,15058,106190
,4,15059,106195
,4,15060,106200
,4,15061,106205
,4,15062,106210
,4,15063,106215
,4,15064,106220
,4,15065,106225
,4,15066,106230
,4,15067,106235
,4,15068,106240
,4,15069,106245
,4,15070,106250
,4,15071,106255
,4,15072,106260
,4,15073,106265
,4,15074,106270
,4,15075,106275
,4,15076,106280
,4,15077,106285
,4,15078,106290
,4,15079,106295
,4,15080,106300
,4,15081,106305
,4,15082,106310
,4,15083,106315
,4,15084,106320
,4,15085,106325
,4,15086,106330
,4,15087,106335
,4,15088,106340
,4,15089,106345
,4,15090,106350
,4,15091,106355
,4,15092,106360
,4,15093,106365
,4,15094,106370
,4,15095,106375
,4,15096,106380
,4,15097,106385
,4,15098,106390
,4,15099,106395
,4,15100,106400
,4,15101,106405
,4,15102,106410
,4,15103,106415
,4,15104,106420
,4,15105,106425
,4,15106,106430
,4,15107,106435
,4,15108,106440
,4,15109,106445
,4,15110,106450
,4,15111,106455
,4,15112,106460
,4,15113,106465
,4,15114,106470
,4,15115,106475
,4,15116,106480
,4,15117,106485
,4,15118,106490
,4,15119,106495
,4,15120,106500
,4,15121,106505
,4,15122,106510
,4,15123,106515
,4,15124,106520
,4,15125,106525
,4,15126,106530
,4,15127,106535
,4,15128,106540
,4,15129,106545
,4,15130,106550
,4,15131,106555
,4,15132,106560
,4,15133,106565
,4,15134,106570
,4,15135,106575
,4,15136,106580
,4,15137,106585
,4,15138,106590
,4,15139,106595
,4,15140,106600
,4,15141,106605
,4,15142,106610
,4,15143,106615
,4,15144,106620
,4,15145,106625
,4,15146,106630
,4,15147,106635
,4,15148,106640
,4,15149,106645
,4,15150,106650
,4,15151,106655
,4,15152,106660
,4,15153,106665
,4,15154,106670
,4,15155,106675
,4,15156,106680
,4,15157,106685
,4,15158,106690
,4,15159,106695
,4,15160,106700
,4,15161,106705
,4,15162,106710
,4,15163,106715
,4,15164,106720
,4,15165,106725
,4,15166,106730
,4,15167,106735
,4,15168,106740
,4,15169,106745
,4,15170,106750
,4,15171,106755
,4,15172,106760
,4,15173,106765
,4,15174,106770
,4,15175,106775
,4,15176,106780
,4,15177,106785
,4,15178,106790
,4,15179,106795
,4,15180,106800
,4,15181,106805
,4,15182,106810
,4,15183,106815
,4,15184,106820
,4,15185,106825
,4,15186,106830
,4,15187,106835
,4,15188,106840
,4,15189,106845
,4,15190,106850
,4,15191,106855
,4,15192,106860
,4,15193,106865
,4,15194,106870
,4,15195,106875
,4,15196,106880
,4,15197,106885
,4,15198,106890
,4,15199,106895
,4,15200,106900
,4,15201,106905
,4,15202,106910
,4,15203,106915
,4,15204,106920
,4,15205,106925
,4,15206,106930
,4,15207,106935
,4,15208,106940
,4,15209,106945
,4,15210,106950
,4,15211,106955
,4,15212,106960
,4,15213,106965
,4,15214,106970
,4,15215,106975
,4,15216,106980
,4,15217,106985
,4,15218,106990
,4,15219,106995
,4,15220,107000
,4,15221,107005
,4,15222,107010
,4,15223,107015
,4,15224,107020
,4,15225,107025
,4,15226,107030
,4,15227,107035
,4,15228,107040
,4,15229,107045
,4,15230,107050
,4,15231,107055
,4,15232,107060
,4,15233,107065
,4,15234,107070
,4,15235,107075
,4,15236,107080
,4,15237,107085
,4,15238,107090
,4,15239,107095
,4,15240,107100
,4,15241,107105
,4,15242,107110
,4,15243,107115
,4,15244,107120
,4,15245,107125
,4,15246,107130
,4,15247,107135
,4,15248,107140
,4,15249,107145
,4,15250,107150
,4,15251,107155
,4,15252,107160
,4,15253,107165
,4,15254,107170
,4,15255,107175
,4,15256,107180
,4,15257,107185
,4,15258,107190
,4,15259,107195
,4,15260,107200
,4,15261,107205
,4,15262,107210
,4,15263,107215
,4,15264,107220
,4,15265,107225
,4,15266,107230
,4,15267,107235
,4,15268,107240
,4,15269,107245
,4,15270,107250
,4,15271,107255
,4,15272,107260
,4,15273,107265
,4,15274,107270
,4,15275,107275
,4,15276,107280
,4,15277,107285
,4,15278,107290
,4,15279,107295
,4,15280,107300
,4,15281,107305
,4,15282,107310
,4,15283,107315
,4,15284,107320
,4,15285,107325
,4,15286,107330
,4,15287,107335
,4,15288,107340
,4,15289,107345
,4,15290,107350
,4,15291,107355
,4,15292,107360
,4,15293,107365
,4,15294,107370
,4,15295,107375
,4,15296,107380
,4,15297,107385
,4,15298,107390
,4,15299,107395
,4,15300,107400
,4,15301,107405
,4,15302,107410
,4,15303,107415
,4,15304,107420
,4,15305,107425
,4,15306,107430
,4,15307,107435
,4,15308,107440
,4,15309,107445
,4,15310,107450
,4,15311,107455
,4,15312,107460
,4,15313,107465
,4,15314,107470
,4,15315,107475
,4,15316,107480
,4,15317,107485
,4,15318,107490
,4,15319,107495
,4,15320,107500
,4,15321,107505
,4,15322,107510
,4,15323,107515
,4,15324,107520
,4,15325,107525
,4,15326,107530
,4,15327,107535
,4,15328,107540
,4,15329,107545
,4,15330,107550
,4,15331,107555
,4,15332,107560
,4,15333,107565
,4,15334,107570
,4,15335,107575
,4,15336,107580
,4,15337,107585
,4,15338,107590
,4,15339,107595
,4,15340,107600
,4,15341,107605
,4,15342,107610
,4,15343,107615
,4,15344,107620
,4,15345,107625
,4,15346,107630
,4,15347,107635
,4,15348,107640
,4,15349,107645
,4,15350,107650
,4,15351,107655
,4,15352,107660
,4,15353,107665
,4,15354,107670
,4,15355,107675
,4,15356,107680
,4,15357,107685
,4,15358,107690
,4,15359,107695
,4,15360,107700
,4,15361,107705
,4,15362,107710
,4,15363,107715
,4,15364,107720
,4,15365,107725
,4,15366,107730
,4,15367,107735
,4,15368,107740
,4,15369,107745
,4,15370,107750
,4,15371,107755
,4,15372,107760
,4,15373,107765
,4,15374,107770
,4,15375,107775
,4,15376,107780
,4,15377,107785
,4,15378,107790
,4,15379,107795
,4,15380,107800
,4,15381,107805
,4,15382,107810
,4,15383,107815
,4,15384,107820
,4,15385,107825
,4,15386,107830
,4,15387,107835
,4,15388,107840
,4,15389,107845
,4,15390,107850
,4,15391,107855
,4,15392,107860
,4,15393,107865
,4,15394,107870
,4,15395,107875
,4,15396,107880
,4,15397,107885
,4,15398,107890
,4,15399,107895
,4,15400,107900
,4,15401,107905
,4,15402,107910
,4,15403,107915
,4,15404,107920
,4,15405,107925
,4,15406,107930
,4,15407,107935
,4,15408,107940
,4,15409,107945
,4,15410,107950
,4,15411,107955
,4,15412,107960
,4,15413,107965
,4,15414,107970
,4,15415,107975
,4,15416,107980
,4,15417,107985
,4,15418,107990
,4,15419,107995
,4,15420,108000
,4,15421,108005
,4,15422,108010
,4,15423,108015
,4,15424,108020
,4,15425,108025
,4,15426,108030
,4,15427,108035
,4,15428,108040
,4,15429,108045
,4,15430,108050
,4,15431,108055
,4,15432,108060
,4,15433,108065
,4,15434,108070
,4,15435,108075
,4,15436,108080
,4,15437,108085
,4,15438,108090
,4,15439,108095
,4,15440,108100
,4,15441,108105
,4,15442,108110
,4,15443,108115
,4,15444,108120
,4,15445,108125
,4,15446,108130
,4,15447,108135
,4,15448,108140
,4,15449,108145
,4,15450,108150
,4,15451,108155
,4,15452,108160
,4,15453,108165
,4,15454,108170
,4,15455,108175
,4,15456,108180
,4,15457,108185
,4,15458,108190
,4,15459,108195
,4,15460,108200
,4,15461,108205
,4,15462,108210
,4,15463,108215
,4,15464,108220
,4,15465,108225
,4,15466,108230
,4,15467,108235
,4,15468,108240
,4,15469,108245
,4,15470,108250
,4,15471,108255
,4,15472,108260
,4,15473,108265
,4,15474,108270
,4,15475,108275
,4,15476,108280
,4,15477,108285
,4,15478,108290
,4,15479,108295
,4,15480,108300
,4,15481,108305
,4,15482,108310
,4,15483,108315
,4,15484,108320
,4,15485,108325
,4,15486,108330
,4,15487,108335
,4,15488,108340
,4,15489,108345
,4,15490,108350
,4,15491,108355
,4,15492,108360
,4,15493,108365
,4,15494,108370
,4,15495,108375
,4,15496,108380
,4,15497,108385
,4,15498,108390
,4,15499,108395
,4,15500,108400
,4,15501,108405
,4,15502,108410
,4,15503,108415
,4,15504,108420
,4,15505,108425
,4,15506,108430
,4,15507,108435
,4,15508,108440
,4,15509,108445
,4,15510,108450
,4,15511,108455
,4,15512,108460
,4,15513,108465
,4,15514,108470
,4,15515,108475
,4,15516,108480
,4,15517,108485
,4,15518,108490
,4,15519,108495
,4,15520,108500
,4,15521,108505
,4,15522,108510
,4,15523,108515
,4,15524,108520
,4,15525,108525
,4,15526,108530
,4,15527,108535
,4,15528,108540
,4,15529,108545
,4,15530,108550
,4,15531,108555
,4,15532,108560
,4,15533,108565
,4,15534,108570
,4,15535,108575
,4,15536,108580
,4,15537,108585
,4,15538,108590
,4,15539,108595
,4,15540,108600
,4,15541,108605
,4,15542,108610
,4,15543,108615
,4,15544,108620
,4,15545,108625
,4,15546,108630
,4,15547,108635
,4,15548,108640
,4,15549,108645
,4,15550,108650
,4,15551,108655
,4,15552,108660
,4,15553,108665
,4,15554,108670
,4,15555,108675
,4,15556,108680
,4,15557,108685
,4,15558,108690
,4,15559,108695
,4,15560,108700
,4,15561,108705
,4,15562,108710
,4,15563,108715
,4,15564,108720
,4,15565,108725
,4,15566,108730
,4,15567,108735
,4,15568,108740
,4,15569,108745
,4,15570,108750
,4,15571,108755
,4,15572,108760
,4,15573,108765
,4,15574,108770
,4,15575,108775
,4,15576,108780
,4,15577,108785
,4,15578,108790
,4,15579,108795
,4,15580,108800
,4,15581,108805
,4,15582,108810
,4,15583,108815
,4,15584,108820
,4,15585,108825
,4,15586,108830
,4,15587,108835
,4,15588,108840
,4,15589,108845
,4,15590,108850
,4,15591,108855
,4,15592,108860
,4,15593,108865
,4,15594,108870
,4,15595,108875
,4,15596,108880
,4,15597,108885
,4,15598,108890
,4,15599,108895
,4,15600,108900
,4,15601,108905
,4,15602,108910
,4,15603,108915
,4,15604,108920
,4,15605,108925
,4,15606,108930
,4,15607,108935
,4,15608,108940
,4,15609,108945
,4,15610,108950
,4,15611,108955
,4,15612,108960
,4,15613,108965
,4,15614,108970
,4,15615,108975
,4,15616,108980
,4,15617,108985
,4,15618,108990
,4,15619,108995
,4,15620,109000
,4,15621,109005
,4,15622,109010
,4,15623,109015
,4,15624,109020
,4,15625,109025
,4,15626,109030
,4,15627,109035
,4,15628,109040
,4,15629,109045
,4,15630,109050
,4,15631,109055
,4,15632,109060
,4,15633,109065
,4,15634,109070
,4,15635,109075
,4,15636,109080
,4,15637,109085
,4,15638,109090
,4,15639,109095
,4,15640,109100
,4,15641,109105
,4,15642,109110
,4,15643,109115
,4,15644,109120
,4,15645,109125
,4,15646,109130
,4,15647,109135
,4,15648,109140
,4,15649,109145
,4,15650,109150
,4,15651,109155
,4,15652,109160
,4,15653,109165
,4,15654,109170
,4,15655,109175
,4,15656,109180
,4,15657,109185
,4,15658,109190
,4,15659,109195
,4,15660,109200
,4,15661,109205
,4,15662,109210
,4,15663,109215
,4,15664,109220
,4,15665,109225
,4,15666,109230
,4,15667,109235
,4,15668,109240
,4,15669,109245
,4,15670,109250
,4,15671,109255
,4,15672,109260
,4,15673,109265
,4,15674,109270
,4,15675,109275
,4,15676,109280
,4,15677,109285
,4,15678,109290
,4,15679,109295
,4,15680,109300
,4,15681,109305
,4,15682,109310
,4,15683,109315
,4,15684,109320
,4,15685,109325
,4,15686,109330
,4,15687,109335
,4,15688,109340
,4,15689,109345
,4,15690,109350
,4,15691,109355
,4,15692,109360
,4,15693,109365
,4,15694,109370
,4,15695,109375
,4,15696,109380
,4,15697,109385
,4,15698,109390
,4,15699,109395
,4,15700,109400
,4,15701,109405
,4,15702,109410
,4,15703,109415
,4,15704,109420
,4,15705,109425
,4,15706,109430
,4,15707,109435
,4,15708,109440
,4,15709,109445
,4,15710,109450
,4,15711,109455
,4,15712,109460
,4,15713,109465
,4,15714,109470
,4,15715,109475
,4,15716,109480
,4,15717,109485
,4,15718,109490
,4,15719,109495
,4,15720,109500
,4,15721,109505
,4,15722,109510
,4,15723,109515
,4,15724,109520
,4,15725,109525
,4,15726,109530
,4,15727,109535
,4,15728,109540
,4,15729,109545
,4,15730,109550
,4,15731,109555
,4,15732,109560
,4,15733,109565
,4,15734,109570
,4,15735,109575
,4,15736,109580
,4,15737,109585
,4,15738,109590
,4,15739,109595
,4,15740,109600
,4,15741,109605
,4,15742,109610
,4,15743,109615
,4,15744,109620
,4,15745,109625
,4,15746,109630
,4,15747,109635
,4,15748,109640
,4,15749,109645
,4,15750,109650
,4,15751,109655
,4,15752,109660
,4,15753,109665
,4,15754,109670
,4,15755,109675
,4,15756,109680
,4,15757,109685
,4,15758,109690
,4,15759,109695
,4,15760,109700
,4,15761,109705
,4,15762,109710
,4,15763,109715
,4,15764,109720
,4,15765,109725
,4,15766,109730
,4,15767,109735
,4,15768,109740
,4,15769,109745
,4,15770,109750
,4,15771,109755
,4,15772,109760
,4,15773,109765
,4,15774,109770
,4,15775,109775
,4,15776,109780
,4,15777,109785
,4,15778,109790
,4,15779,109795
,4,15780,109800
,4,15781,109805
,4,15782,109810
,4,15783,109815
,4,15784,109820
,4,15785,109825
,4,15786,109830
,4,15787,109835
,4,15788,109840
,4,15789,109845
,4,15790,109850
,4,15791,109855
,4,15792,109860
,4,15793,109865
,4,15794,109870
,4,15795,109875
,4,15796,109880
,4,15797,109885
,4,15798,109890
,4,15799,109895
,4,15800,109900
,4,15801,109905
,4,15802,109910
,4,15803,109915
,4,15804,109920
,4,15805,109925
,4,15806,109930
,4,15807,109935
,4,15808,109940
,4,15809,109945
,4,15810,109950
,4,15811,109955
,4,15812,109960
,4,15813,109965
,4,15814,109970
,4,15815,109975
,4,15816,109980
,4,15817,109985
,4,15818,109990
,4,15819,109995
,4,15820,110000
,4,15821,110005
,4,15822,110010
,4,15823,110015
,4,15824,110020
,4,15825,110025
,4,15826,110030
,4,15827,110035
,4,15828,110040
,4,15829,110045
,4,15830,110050
,4,15831,110055
,4,15832,110060
,4,15833,110065
,4,15834,110070
,4,15835,110075
,4,15836,110080
,4,15837,110085
,4,15838,110090
,4,15839,110095
,4,15840,110100
,4,15841,110105
,4,15842,110110
,4,15843,110115
,4,15844,110120
,4,15845,110125
,4,15846,110130
,4,15847,110135
,4,15848,110140
,4,15849,110145
,4,15850,110150
,4,15851,110155
,4,15852,110160
,4,15853,110165
,4,15854,110170
,4,15855,110175
,4,15856,110180
,4,15857,110185
,4,15858,110190
,4,15859,110195
,4,15860,110200
,4,15861,110205
,4,15862,110210
,4,15863,110215
,4,15864,110220
,4,15865,110225
,4,15866,110230
,4,15867,110235
,4,15868,110240
,4,15869,110245
,4,15870,110250
,4,15871,110255
,4,15872,110260
,4,15873,110265
,4,15874,110270
,4,15875,110275
,4,15876,110280
,4,15877,110285
,4,15878,110290
,4,15879,110295
,4,15880,110300
,4,15881,110305
,4,15882,110310
,4,15883,110315
,4,15884,110320
,4,15885,110325
,4,15886,110330
,4,15887,110335
,4,15888,110340
,4,15889,110345
,4,15890,110350
,4,15891,110355
,4,15892,110360
,4,15893,110365
,4,15894,110370
,4,15895,110375
,4,15896,110380
,4,15897,110385
,4,15898,110390
,4,15899,110395
,4,15900,110400
,4,15901,110405
,4,15902,110410
,4,15903,110415
,4,15904,110420
,4,15905,110425
,4,15906,110430
,4,15907,110435
,4,15908,110440
,4,15909,110445
,4,15910,110450
,4,15911,110455
,4,15912,110460
,4,15913,110465
,4,15914,110470
,4,15915,110475
,4,15916,110480
,4,15917,110485
,4,15918,110490
,4,15919,110495
,4,15920,110500
,4,15921,110505
,4,15922,110510
,4,15923,110515
,4,15924,110520
,4,15925,110525
,4,15926,110530
,4,15927,110535
,4,15928,110540
,4,15929,110545
,4,15930,110550
,4,15931,110555
,4,15932,110560
,4,15933,110565
,4,15934,110570
,4,15935,110575
,4,15936,110580
,4,15937,110585
,4,15938,110590
,4,15939,110595
,4,15940,110600
,4,15941,110605
,4,15942,110610
,4,15943,110615
,4,15944,110620
,4,15945,110625
,4,15946,110630
,4,15947,110635
,4,15948,110640
,4,15949,110645
,4,15950,110650
,4,15951,110655
,4,15952,110660
,4,15953,110665
,4,15954,110670
,4,15955,110675
,4,15956,110680
,4,15957,110685
,4,15958,110690
,4,15959,110695
,4,15960,110700
,4,15961,110705
,4,15962,110710
,4,15963,110715
,4,15964,110720
,4,15965,110725
,4,15966,110730
,4,15967,110735
,4,15968,110740
,4,15969,110745
,4,15970,110750
,4,15971,110755
,4,15972,110760
,4,15973,110765
,4,15974,110770
,4,15975,110775
,4,15976,110780
,4,15977,110785
,4,15978,110790
,4,15979,110795
,4,15980,110800
,4,15981,110805
,4,15982,110810
,4,15983,110815
,4,15984,110820
,4,15985,110825
,4,15986,110830
,4,15987,110835
,4,15988,110840
,4,15989,110845
,4,15990,110850
,4,15991,110855
,4,15992,110860
,4,15993,110865
,4,15994,110870
,4,15995,110875
,4,15996,110880
,4,15997,110885
,4,15998,110890
,4,15999,110895
,4,16000,110900
,4,16001,110905
,4,16002,110910
,4,16003,110915
,4,16004,110920
,4,16005,110925
,4,16006,110930
,4,16007,110935
,4,16008,110940
,4,16009,110945
,4,16010,110950
,4,16011,110955
,4,16012,110960
,4,16013,110965
,4,16014,110970
,4,16015,110975
,4,16016,110980
,4,16017,110985
,4,16018,110990
,4,16019,110995
,4,16020,111000
,4,16021,111005
,4,16022,111010
,4,16023,111015
,4,16024,111020
,4,16025,111025
,4,16026,111030
,4,16027,111035
,4,16028,111040
,4,16029,111045
,4,16030,111050
,4,16031,111055
,4,16032,111060
,4,16033,111065
,4,16034,111070
,4,16035,111075
,4,16036,111080
,4,16037,111085
,4,16038,111090
,4,16039,111095
,4,16040,111100
,4,16041,111105
,4,16042,111110
,4,16043,111115
,4,16044,111120
,4,16045,111125
,4,16046,111130
,4,16047,111135
,4,16048,111140
,4,16049,111145
,4,16050,111150
,4,16051,111155
,4,16052,111160
,4,16053,111165
,4,16054,111170
,4,16055,111175
,4,16056,111180
,4,16057,111185
,4,16058,111190
,4,16059,111195
,4,16060,111200
,4,16061,111205
,4,16062,111210
,4,16063,111215
,4,16064,111220
,4,16065,111225
,4,16066,111230
,4,16067,111235
,4,16068,111240
,4,16069,111245
,4,16070,111250
,4,16071,111255
,4,16072,111260
,4,16073,111265
,4,16074,111270
,4,16075,111275
,4,16076,111280
,4,16077,111285
,4,16078,111290
,4,16079,111295
,4,16080,111300
,4,16081,111305
,4,16082,111310
,4,16083,111315
,4,16084,111320
,4,16085,111325
,4,16086,111330
,4,16087,111335
,4,16088,111340
,4,16089,111345
,4,16090,111350
,4,16091,111355
,4,16092,111360
,4,16093,111365
,4,16094,111370
,4,16095,111375
,4,16096,111380
,4,16097,111385
,4,16098,111390
,4,16099,111395
,4,16100,111400
,4,16101,111405
,4,16102,111410
,4,16103,111415
,4,16104,111420
,4,16105,111425
,4,16106,111430
,4,16107,111435
,4,16108,111440
,4,16109,111445
,4,16110,111450
,4,16111,111455
,4,16112,111460
,4,16113,111465
,4,16114,111470
,4,16115,111475
,4,16116,111480
,4,16117,111485
,4,16118,111490
,4,16119,111495
,4,16120,111500
,4,16121,111505
,4,16122,111510
,4,16123,111515
,4,16124,111520
,4,16125,111525
,4,16126,111530
,4,16127,111535
,4,16128,111540
,4,16129,111545
,4,16130,111550
,4,16131,111555
,4,16132,111560
,4,16133,111565
,4,16134,111570
,4,16135,111575
,4,16136,111580
,4,16137,111585
,4,16138,111590
,4,16139,111595
,4,16140,111600
,4,16141,111605
,4,16142,111610
,4,16143,111615
,4,16144,111620
,4,16145,111625
,4,16146,111630
,4,16147,111635
,4,16148,111640
,4,16149,111645
,4,16150,111650
,4,16151,111655
,4,16152,111660
,4,16153,111665
,4,16154,111670
,4,16155,111675
,4,16156,111680
,4,16157,111685
,4,16158,111690
,4,16159,111695
,4,16160,111700
,4,16161,111705
,4,16162,111710
,4,16163,111715
,4,16164,111720
,4,16165,111725
,4,16166,111730
,4,16167,111735
,4,16168,111740
,4,16169,111745
,4,16170,111750
,4,16171,111755
,4,16172,111760
,4,16173,111765
,4,16174,111770
,4,16175,111775
,4,16176,111780
,4,16177,111785
,4,16178,111790
,4,16179,111795
,4,16180,111800
,4,16181,111805
,4,16182,111810
,4,16183,111815
,4,16184,111820
,4,16185,111825
,4,16186,111830
,4,16187,111835
,4,16188,111840
,4,16189,111845
,4,16190,111850
,4,16191,111855
,4,16192,111860
,4,16193,111865
,4,16194,111870
,4,16195,111875
,4,16196,111880
,4,16197,111885
,4,16198,111890
,4,16199,111895
,4,16200,111900
,4,16201,111905
,4,16202,111910
,4,16203,111915
,4,16204,111920
,4,16205,111925
,4,16206,111930
,4,16207,111935
,4,16208,111940
,4,16209,111945
,4,16210,111950
,4,16211,111955
,4,16212,111960
,4,16213,111965
,4,16214,111970
,4,16215,111975
,4,16216,111980
,4,16217,111985
,4,16218,111990
,4,16219,111995
,4,16220,112000
,4,16221,112005
,4,16222,112010
,4,16223,112015
,4,16224,112020
,4,16225,112025
,4,16226,112030
,4,16227,112035
,4,16228,112040
,4,16229,112045
,4,16230,112050
,4,16231,112055
,4,16232,112060
,4,16233,112065
,4,16234,112070
,4,16235,112075
,4,16236,112080
,4,16237,112085
,4,16238,112090
,4,16239,112095
,4,16240,112100
,4,16241,112105
,4,16242,112110
,4,16243,112115
,4,16244,112120
,4,16245,112125
,4,16246,112130
,4,16247,112135
,4,16248,112140
,4,16249,112145
,4,16250,112150
,4,16251,112155
,4,16252,112160
,4,16253,112165
,4,16254,112170
,4,16255,112175
,4,16256,112180
,4,16257,112185
,4,16258,112190
,4,16259,112195
,4,16260,112200
,4,16261,112205
,4,16262,112210
,4,16263,112215
,4,16264,112220
,4,16265,112225
,4,16266,112230
,4,16267,112235
,4,16268,112240
,4,16269,112245
,4,16270,112250
,4,16271,112255
,4,16272,112260
,4,16273,112265
,4,16274,112270
,4,16275,112275
,4,16276,112280
,4,16277,112285
,4,16278,112290
,4,16279,112295
,4,16280,112300
,4,16281,112305
,4,16282,112310
,4,16283,112315
,4,16284,112320
,4,16285,112325
,4,16286,112330
,4,16287,112335
,4,16288,112340
,4,16289,112345
,4,16290,112350
,4,16291,112355
,4,16292,112360
,4,16293,112365
,4,16294,112370
,4,16295,112375
,4,16296,112380
,4,16297,112385
,4,16298,112390
,4,16299,112395
,4,16300,112400
,4,16301,112405
,4,16302,112410
,4,16303,112415
,4,16304,112420
,4,16305,112425
,4,16306,112430
,4,16307,112435
,4,16308,112440
,4,16309,112445
,4,16310,112450
,4,16311,112455
,4,16312,112460
,4,16313,112465
,4,16314,112470
,4,16315,112475
,4,16316,112480
,4,16317,112485
,4,16318,112490
,4,16319,112495
,4,16320,112500
,4,16321,112505
,4,16322,112510
,4,16323,112515
,4,16324,112520
,4,16325,112525
,4,16326,112530
,4,16327,112535
,4,16328,112540
,4,16329,112545
,4,16330,112550
,4,16331,112555
,4,16332,112560
,4,16333,112565
,4,16334,112570
,4,16335,112575
,4,16336,112580
,4,16337,112585
,4,16338,112590
,4,16339,112595
,4,16340,112600
,4,16341,112605
,4,16342,112610
,4,16343,112615
,4,16344,112620
,4,16345,112625
,4,16346,112630
,4,16347,112635
,4,16348,112640
,4,16349,112645
,4,16350,112650
,4,16351,112655
,4,16352,112660
,4,16353,112665
,4,16354,112670
,4,16355,112675
,4,16356,112680
,4,16357,112685
,4,16358,112690
,4,16359,112695
,4,16360,112700
,4,16361,112705
,4,16362,112710
,4,16363,112715
,4,16364,112720
,4,16365,112725
,4,16366,112730
,4,16367,112735
,4,16368,112740
,4,16369,112745
,4,16370,112750
,4,16371,112755
,4,16372,112760
,4,16373,112765
,4,16374,112770
,4,16375,112775
,4,16376,112780
,4,16377,112785
,4,16378,112790
,4,16379,112795
,4,16380,112800
,4,16381,112805
,4,16382,112810
,4,16383,112815
,4,16384,112820
,4,16385,112825
,4,16386,112830
,4,16387,112835
,4,16388,112840
,4,16389,112845
,4,16390,112850
,4,16391,112855
,4,16392,112860
,4,16393,112865
,4,16394,112870
,4,16395,112875
,4,16396,112880
,4,16397,112885
,4,16398,112890
,4,16399,112895
,4,16400,112900
,4,16401,112905
,4,16402,112910
,4,16403,112915
,4,16404,112920
,4,16405,112925
,4,16406,112930
,4,16407,112935
,4,16408,112940
,4,16409,112945
,4,16410,112950
,4,16411,112955
,4,16412,112960
,4,16413,112965
,4,16414,112970
,4,16415,112975
,4,16416,112980
,4,16417,112985
,4,16418,112990
,4,16419,112995
,4,16420,113000
,4,16421,113005
,4,16422,113010
,4,16423,113015
,4,16424,113020
,4,16425,113025
,4,16426,113030
,4,16427,113035
,4,16428,113040
,4,16429,113045
,4,16430,113050
,4,16431,113055
,4,16432,113060
,4,16433,113065
,4,16434,113070
,4,16435,113075
,4,16436,113080
,4,16437,113085
,4,16438,113090
,4,16439,113095
,4,16440,113100
,4,16441,113105
,4,16442,113110
,4,16443,113115
,4,16444,113120
,4,16445,113125
,4,16446,113130
,4,16447,113135
,4,16448,113140
,4,16449,113145
,4,16450,113150
,4,16451,113155
,4,16452,113160
,4,16453,113165
,4,16454,113170
,4,16455,113175
,4,16456,113180
,4,16457,113185
,4,16458,113190
,4,16459,113195
,4,16460,113200
,4,16461,113205
,4,16462,113210
,4,16463,113215
,4,16464,113220
,4,16465,113225
,4,16466,113230
,4,16467,113235
,4,16468,113240
,4,16469,113245
,4,16470,113250
,4,16471,113255
,4,16472,113260
,4,16473,113265
,4,16474,113270
,4,16475,113275
,4,16476,113280
,4,16477,113285
,4,16478,113290
,4,16479,113295
,4,16480,113300
,4,16481,113305
,4,16482,113310
,4,16483,113315
,4,16484,113320
,4,16485,113325
,4,16486,113330
,4,16487,113335
,4,16488,113340
,4,16489,113345
,4,16490,113350
,4,16491,113355
,4,16492,113360
,4,16493,113365
,4,16494,113370
,4,16495,113375
,4,16496,113380
,4,16497,113385
,4,16498,113390
,4,16499,113395
,4,16500,113400
,4,16501,113405
,4,16502,113410
,4,16503,113415
,4,16504,113420
,4,16505,113425
,4,16506,113430
,4,16507,113435
,4,16508,113440
,4,16509,113445
,4,16510,113450
,4,16511,113455
,4,16512,113460
,4,16513,113465
,4,16514,113470
,4,16515,113475
,4,16516,113480
,4,16517,113485
,4,16518,113490
,4,16519,113495
,4,16520,113500
,4,16521,113505
,4,16522,113510
,4,16523,113515
,4,16524,113520
,4,16525,113525
,4,16526,113530
,4,16527,113535
,4,16528,113540
,4,16529,113545
,4,16530,113550
,4,16531,113555
,4,16532,113560
,4,16533,113565
,4,16534,113570
,4,16535,113575
,4,16536,113580
,4,16537,113585
,4,16538,113590
,4,16539,113595
,4,16540,113600
,4,16541,113605
,4,16542,113610
,4,16543,113615
,4,16544,113620
,4,16545,113625
,4,16546,113630
,4,16547,113635
,4,16548,113640
,4,16549,113645
,4,16550,113650
,4,16551,113655
,4,16552,113660
,4,16553,113665
,4,16554,113670
,4,16555,113675
,4,16556,113680
,4,16557,113685
,4,16558,113690
,4,16559,113695
,4,16560,113700
,4,16561,113705
,4,16562,113710
,4,16563,113715
,4,16564,113720
,4,16565,113725
,4,16566,113730
,4,16567,113735
,4,16568,113740
,4,16569,113745
,4,16570,113750
,4,16571,113755
,4,16572,113760
,4,16573,113765
,4,16574,113770
,4,16575,113775
,4,16576,113780
,4,16577,113785
,4,16578,113790
,4,16579,113795
,4,16580,113800
,4,16581,113805
,4,16582,113810
,4,16583,113815
,4,16584,113820
,4,16585,113825
,4,16586,113830
,4,16587,113835
,4,16588,113840
,4,16589,113845
,4,16590,113850
,4,16591,113855
,4,16592,113860
,4,16593,113865
,4,16594,113870
,4,16595,113875
,4,16596,113880
,4,16597,113885
,4,16598,113890
,4,16599,113895
,4,16600,113900
,4,16601,113905
,4,16602,113910
,4,16603,113915
,4,16604,113920
,4,16605,113925
,4,16606,113930
,4,16607,113935
,4,16608,113940
,4,16609,113945
,4,16610,113950
,4,16611,113955
,4,16612,113960
,4,16613,113965
,4,16614,113970
,4,16615,113975
,4,16616,113980
,4,16617,113985
,4,16618,113990
,4,16619,113995
,4,16620,114000
,4,16621,114005
,4,16622,114010
,4,16623,114015
,4,16624,114020
,4,16625,114025
,4,16626,114030
,4,16627,114035
,4,16628,114040
,4,16629,114045
,4,16630,114050
,4,16631,114055
,4,16632,114060
,4,16633,114065
,4,16634,114070
,4,16635,114075
,4,16636,114080
,4,16637,114085
,4,16638,114090
,4,16639,114095
,4,16640,114100
,4,16641,114105
,4,16642,114110
,4,16643,114115
,4,16644,114120
,4,16645,114125
,4,16646,114130
,4,16647,114135
,4,16648,114140
,4,16649,114145
,4,16650,114150
,4,16651,114155
,4,16652,114160
,4,16653,114165
,4,16654,114170
,4,16655,114175
,4,16656,114180
,4,16657,114185
,4,16658,114190
,4,16659,114195
,4,16660,114200
,4,16661,114205
,4,16662,114210
,4,16663,114215
,4,16664,114220
,4,16665,114225
,4,16666,114230
,4,16667,114235
,4,16668,114240
,4,16669,114245
,4,16670,114250
,4,16671,114255
,4,16672,114260
,4,16673,114265
,4,16674,114270
,4,16675,114275
,4,16676,114280
,4,16677,114285
,4,16678,114290
,4,16679,114295
,4,16680,114300
,4,16681,114305
,4,16682,114310
,4,16683,114315
,4,16684,114320
,4,16685,114325
,4,16686,114330
,4,16687,114335
,4,16688,114340
,4,16689,114345
,4,16690,114350
,4,16691,114355
,4,16692,114360
,4,16693,114365
,4,16694,114370
,4,16695,114375
,4,16696,114380
,4,16697,114385
,4,16698,114390
,4,16699,114395
,4,16700,114400
,4,16701,114405
,4,16702,114410
,4,16703,114415
,4,16704,114420
,4,16705,114425
,4,16706,114430
,4,16707,114435
,4,16708,114440
,4,16709,114445
,4,16710,114450
,4,16711,114455
,4,16712,114460
,4,16713,114465
,4,16714,114470
,4,16715,114475
,4,16716,114480
,4,16717,114485
,4,16718,114490
,4,16719,114495
,4,16720,114500
,4,16721,114505
,4,16722,114510
,4,16723,114515
,4,16724,114520
,4,16725,114525
,4,16726,114530
,4,16727,114535
,4,16728,114540
,4,16729,114545
,4,16730,114550
,4,16731,114555
,4,16732,114560
,4,16733,114565
,4,16734,114570
,4,16735,114575
,4,16736,114580
,4,16737,114585
,4,16738,114590
,4,16739,114595
,4,16740,114600
,4,16741,114605
,4,16742,114610
,4,16743,114615
,4,16744,114620
,4,16745,114625
,4,16746,114630
,4,16747,114635
,4,16748,114640
,4,16749,114645
,4,16750,114650
,4,16751,114655
,4,16752,114660
,4,16753,114665
,4,16754,114670
,4,16755,114675
,4,16756,114680
,4,16757,114685
,4,16758,114690
,4,16759,114695
,4,16760,114700
,4,16761,114705
,4,16762,114710
,4,16763,114715
,4,16764,114720
,4,16765,114725
,4,16766,114730
,4,16767,114735
,4,16768,114740
,4,16769,114745
,4,16770,114750
,4,16771,114755
,4,16772,114760
,4,16773,114765
,4,16774,114770
,4,16775,114775
,4,16776,114780
,4,16777,114785
,4,16778,114790
,4,16779,114795
,4,16780,114800
,4,16781,114805
,4,16782,114810
,4,16783,114815
,4,16784,114820
,4,16785,114825
,4,16786,114830
,4,16787,114835
,4,16788,114840
,4,16789,114845
,4,16790,114850
,4,16791,114855
,4,16792,114860
,4,16793,114865
,4,16794,114870
,4,16795,114875
,4,16796,114880
,4,16797,114885
,4,16798,114890
,4,16799,114895
,4,16800,114900
,4,16801,114905
,4,16802,114910
,4,16803,114915
,4,16804,114920
,4,16805,114925
,4,16806,114930
,4,16807,114935
,4,16808,114940
,4,16809,114945
,4,16810,114950
,4,16811,114955
,4,16812,114960
,4,16813,114965
,4,16814,114970
,4,16815,114975
,4,16816,114980
,4,16817,114985
,4,16818,114990
,4,16819,114995
,4,16820,115000
,4,16821,115005
,4,16822,115010
,4,16823,115015
,4,16824,115020
,4,16825,115025
,4,16826,115030
,4,16827,115035
,4,16828,115040
,4,16829,115045
,4,16830,115050
,4,16831,115055
,4,16832,115060
,4,16833,115065
,4,16834,115070
,4,16835,115075
,4,16836,115080
,4,16837,115085
,4,16838,115090
,4,16839,115095
,4,16840,115100
,4,16841,115105
,4,16842,115110
,4,16843,115115
,4,16844,115120
,4,16845,115125
,4,16846,115130
,4,16847,115135
,4,16848,115140
,4,16849,115145
,4,16850,115150
,4,16851,115155
,4,16852,115160
,4,16853,115165
,4,16854,115170
,4,16855,115175
,4,16856,115180
,4,16857,115185
,4,16858,115190
,4,16859,115195
,4,16860,115200
,4,16861,115205
,4,16862,115210
,4,16863,115215
,4,16864,115220
,4,16865,115225
,4,16866,115230
,4,16867,115235
,4,16868,115240
,4,16869,115245
,4,16870,115250
,4,16871,115255
,4,16872,115260
,4,16873,115265
,4,16874,115270
,4,16875,115275
,4,16876,115280
,4,16877,115285
,4,16878,115290
,4,16879,115295
,4,16880,115300
,4,16881,115305
,4,16882,115310
,4,16883,115315
,4,16884,115320
,4,16885,115325
,4,16886,115330
,4,16887,115335
,4,16888,115340
,4,16889,115345
,4,16890,115350
,4,16891,115355
,4,16892,115360
,4,16893,115365
,4,16894,115370
,4,16895,115375
,4,16896,115380
,4,16897,115385
,4,16898,115390
,4,16899,115395
,4,16900,115400
,4,16901,115405
,4,16902,115410
,4,16903,115415
,4,16904,115420
,4,16905,115425
,4,16906,115430
,4,16907,115435
,4,16908,115440
,4,16909,115445
,4,16910,115450
,4,16911,115455
,4,16912,115460
,4,16913,115465
,4,16914,115470
,4,16915,115475
,4,16916,115480
,4,16917,115485
,4,16918,115490
,4,16919,115495
,4,16920,115500
,4,16921,115505
,4,16922,115510
,4,16923,115515
,4,16924,115520
,4,16925,115525
,4,16926,115530
,4,16927,115535
,4,16928,115540
,4,16929,115545
,4,16930,115550
,4,16931,115555
,4,16932,115560
,4,16933,115565
,4,16934,115570
,4,16935,115575
,4,16936,115580
,4,16937,115585
,4,16938,115590
,4,16939,115595
,4,16940,115600
,4,16941,115605
,4,16942,115610
,4,16943,115615
,4,16944,115620
,4,16945,115625
,4,16946,115630
,4,16947,115635
,4,16948,115640
,4,16949,115645
,4,16950,115650
,4,16951,115655
,4,16952,115660
,4,16953,115665
,4,16954,115670
,4,16955,115675
,4,16956,115680
,4,16957,115685
,4,16958,115690
,4,16959,115695
,4,16960,115700
,4,16961,115705
,4,16962,115710
,4,16963,115715
,4,16964,115720
,4,16965,115725
,4,16966,115730
,4,16967,115735
,4,16968,115740
,4,16969,115745
,4,16970,115750
,4,16971,115755
,4,16972,115760
,4,16973,115765
,4,16974,115770
,4,16975,115775
,4,16976,115780
,4,16977,115785
,4,16978,115790
,4,16979,115795
,4,16980,115800
,4,16981,115805
,4,16982,115810
,4,16983,115815
,4,16984,115820
,4,16985,115825
,4,16986,115830
,4,16987,115835
,4,16988,115840
,4,16989,115845
,4,16990,115850
,4,16991,115855
,4,16992,115860
,4,16993,115865
,4,16994,115870
,4,16995,115875
,4,16996,115880
,4,16997,115885
,4,16998,115890
,4,16999,115895
,4,17000,115900
,4,17001,115905
,4,17002,115910
,4,17003,115915
,4,17004,115920
,4,17005,115925
,4,17006,115930
,4,17007,115935
,4,17008,115940
,4,17009,115945
,4,17010,115950
,4,17011,115955
,4,17012,115960
,4,17013,115965
,4,17014,115970
,4,17015,115975
,4,17016,115980
,4,17017,115985
,4,17018,115990
,4,17019,115995
,4,17020,116000
,4,17021,116005
,4,17022,116010
,4,17023,116015
,4,17024,116020
,4,17025,116025
,4,17026,116030
,4,17027,116035
,4,17028,116040
,4,17029,116045
,4,17030,116050
,4,17031,116055
,4,17032,116060
,4,17033,116065
,4,17034,116070
,4,17035,116075
,4,17036,116080
,4,17037,116085
,4,17038,116090
,4,17039,116095
,4,17040,116100
,4,17041,116105
,4,17042,116110
,4,17043,116115
,4,17044,116120
,4,17045,116125
,4,17046,116130
,4,17047,116135
,4,17048,116140
,4,17049,116145
,4,17050,116150
,4,17051,116155
,4,17052,116160
,4,17053,116165
,4,17054,116170
,4,17055,116175
,4,17056,116180
,4,17057,116185
,4,17058,116190
,4,17059,116195
,4,17060,116200
,4,17061,116205
,4,17062,116210
,4,17063,116215
,4,17064,116220
,4,17065,116225
,4,17066,116230
,4,17067,116235
,4,17068,116240
,4,17069,116245
,4,17070,116250
,4,17071,116255
,4,17072,116260
,4,17073,116265
,4,17074,116270
,4,17075,116275
,4,17076,116280
,4,17077,116285
,4,17078,116290
,4,17079,116295
,4,17080,116300
,4,17081,116305
,4,17082,116310
,4,17083,116315
,4,17084,116320
,4,17085,116325
,4,17086,116330
,4,17087,116335
,4,17088,116340
,4,17089,116345
,4,17090,116350
,4,17091,116355
,4,17092,116360
,4,17093,116365
,4,17094,116370
,4,17095,116375
,4,17096,116380
,4,17097,116385
,4,17098,116390
,4,17099,116395
,4,17100,116400
,4,17101,116405
,4,17102,116410
,4,17103,116415
,4,17104,116420
,4,17105,116425
,4,17106,116430
,4,17107,116435
,4,17108,116440
,4,17109,116445
,4,17110,116450
,4,17111,116455
,4,17112,116460
,4,17113,116465
,4,17114,116470
,4,17115,116475
,4,17116,116480
,4,17117,116485
,4,17118,116490
,4,17119,116495
,4,17120,116500
,4,17121,116505
,4,17122,116510
,4,17123,116515
,4,17124,116520
,4,17125,116525
,4,17126,116530
,4,17127,116535
,4,17128,116540
,4,17129,116545
,4,17130,116550
,4,17131,116555
,4,17132,116560
,4,17133,116565
,4,17134,116570
,4,17135,116575
,4,17136,116580
,4,17137,116585
,4,17138,116590
,4,17139,116595
,4,17140,116600
,4,17141,116605
,4,17142,116610
,4,17143,116615
,4,17144,116620
,4,17145,116625
,4,17146,116630
,4,17147,116635
,4,17148,116640
,4,17149,116645
,4,17150,116650
,4,17151,116655
,4,17152,116660
,4,17153,116665
,4,17154,116670
,4,17155,116675
,4,17156,116680
,4,17157,116685
,4,17158,116690
,4,17159,116695
,4,17160,116700
,4,17161,116705
,4,17162,116710
,4,17163,116715
,4,17164,116720
,4,17165,116725
,4,17166,116730
,4,17167,116735
,4,17168,116740
,4,17169,116745
,4,17170,116750
,4,17171,116755
,4,17172,116760
,4,17173,116765
,4,17174,116770
,4,17175,116775
,4,17176,116780
,4,17177,116785
,4,17178,116790
,4,17179,116795
,4,17180,116800
,4,17181,116805
,4,17182,116810
,4,17183,116815
,4,17184,116820
,4,17185,116825
,4,17186,116830
,4,17187,116835
,4,17188,116840
,4,17189,116845
,4,17190,116850
,4,17191,116855
,4,17192,116860
,4,17193,116865
,4,17194,116870
,4,17195,116875
,4,17196,116880
,4,17197,116885
,4,17198,116890
,4,17199,116895
,4,17200,116900
,4,17201,116905
,4,17202,116910
,4,17203,116915
,4,17204,116920
,4,17205,116925
,4,17206,116930
,4,17207,116935
,4,17208,116940
,4,17209,116945
,4,17210,116950
,4,17211,116955
,4,17212,116960
,4,17213,116965
,4,17214,116970
,4,17215,116975
,4,17216,116980
,4,17217,116985
,4,17218,116990
,4,17219,116995
,4,17220,117000
,4,17221,117005
,4,17222,117010
,4,17223,117015
,4,17224,117020
,4,17225,117025
,4,17226,117030
,4,17227,117035
,4,17228,117040
,4,17229,117045
,4,17230,117050
,4,17231,117055
,4,17232,117060
,4,17233,117065
,4,17234,117070
,4,17235,117075
,4,17236,117080
,4,17237,117085
,4,17238,117090
,4,17239,117095
,4,17240,117100
,4,17241,117105
,4,17242,117110
,4,17243,117115
,4,17244,117120
,4,17245,117125
,4,17246,117130
,4,17247,117135
,4,17248,117140
,4,17249,117145
,4,17250,117150
,4,17251,117155
,4,17252,117160
,4,17253,117165
,4,17254,117170
,4,17255,117175
,4,17256,117180
,4,17257,117185
,4,17258,117190
,4,17259,117195
,4,17260,117200
,4,17261,117205
,4,17262,117210
,4,17263,117215
,4,17264,117220
,4,17265,117225
,4,17266,117230
,4,17267,117235
,4,17268,117240
,4,17269,117245
,4,17270,117250
,4,17271,117255
,4,17272,117260
,4,17273,117265
,4,17274,117270
,4,17275,117275
,4,17276,117280
,4,17277,117285
,4,17278,117290
,4,17279,117295
,4,17280,117300
,4,17281,117305
,4,17282,117310
,4,17283,117315
,4,17284,117320
,4,17285,117325
,4,17286,117330
,4,17287,117335
,4,17288,117340
,4,17289,117345
,4,17290,117350
,4,17291,117355
,4,17292,117360
,4,17293,117365
,4,17294,117370
,4,17295,117375
,4,17296,117380
,4,17297,117385
,4,17298,117390
,4,17299,117395
,4,17300,117400
,4,17301,117405
,4,17302,117410
,4,17303,117415
,4,17304,117420
,4,17305,117425
,4,17306,117430
,4,17307,117435
,4,17308,117440
,4,17309,117445
,4,17310,117450
,4,17311,117455
,4,17312,117460
,4,17313,117465
,4,17314,117470
,4,17315,117475
,4,17316,117480
,4,17317,117485
,4,17318,117490
,4,17319,117495
,4,17320,117500
,4,17321,117505
,4,17322,117510
,4,17323,117515
,4,17324,117520
,4,17325,117525
,4,17326,117530
,4,17327,117535
,4,17328,117540
,4,17329,117545
,4,17330,117550
,4,17331,117555
,4,17332,117560
,4,17333,117565
,4,17334,117570
,4,17335,117575
,4,17336,117580
,4,17337,117585
,4,17338,117590
,4,17339,117595
,4,17340,117600
,4,17341,117605
,4,17342,117610
,4,17343,117615
,4,17344,117620
,4,17345,117625
,4,17346,117630
,4,17347,117635
,4,17348,117640
,4,17349,117645
,4,17350,117650
,4,17351,117655
,4,17352,117660
,4,17353,117665
,4,17354,117670
,4,17355,117675
,4,17356,117680
,4,17357,117685
,4,17358,117690
,4,17359,117695
,4,17360,117700
,4,17361,117705
,4,17362,117710
,4,17363,117715
,4,17364,117720
,4,17365,117725
,4,17366,117730
,4,17367,117735
,4,17368,117740
,4,17369,117745
,4,17370,117750
,4,17371,117755
,4,17372,117760
,4,17373,117765
,4,17374,117770
,4,17375,117775
,4,17376,117780
,4,17377,117785
,4,17378,117790
,4,17379,117795
,4,17380,117800
,4,17381,117805
,4,17382,117810
,4,17383,117815
,4,17384,117820
,4,17385,117825
,4,17386,117830
,4,17387,117835
,4,17388,117840
,4,17389,117845
,4,17390,117850
,4,17391,117855
,4,17392,117860
,4,17393,117865
,4,17394,117870
,4,17395,117875
,4,17396,117880
,4,17397,117885
,4,17398,117890
,4,17399,117895
,4,17400,117900
,4,17401,117905
,4,17402,117910
,4,17403,117915
,4,17404,117920
,4,17405,117925
,4,17406,117930
,4,17407,117935
,4,17408,117940
,4,17409,117945
,4,17410,117950
,4,17411,117955
,4,17412,117960
,4,17413,117965
,4,17414,117970
,4,17415,117975
,4,17416,117980
,4,17417,117985
,4,17418,117990
,4,17419,117995
,4,17420,118000
,4,17421,118005
,4,17422,118010
,4,17423,118015
,4,17424,118020
,4,17425,118025
,4,17426,118030
,4,17427,118035
,4,17428,118040
,4,17429,118045
,4,17430,118050
,4,17431,118055
,4,17432,118060
,4,17433,118065
,4,17434,118070
,4,17435,118075
,4,17436,118080
,4,17437,118085
,4,17438,118090
,4,17439,118095
,4,17440,118100
,4,17441,118105
,4,17442,118110
,4,17443,118115
,4,17444,118120
,4,17445,118125
,4,17446,118130
,4,17447,118135
,4,17448,118140
,4,17449,118145
,4,17450,118150
,4,17451,118155
,4,17452,118160
,4,17453,118165
,4,17454,118170
,4,17455,118175
,4,17456,118180
,4,17457,118185
,4,17458,118190
,4,17459,118195
,4,17460,118200
,4,17461,118205
,4,17462,118210
,4,17463,118215
,4,17464,118220
,4,17465,118225
,4,17466,118230
,4,17467,118235
,4,17468,118240
,4,17469,118245
,4,17470,118250
,4,17471,118255
,4,17472,118260
,4,17473,118265
,4,17474,118270
,4,17475,118275
,4,17476,118280
,4,17477,118285
,4,17478,118290
,4,17479,118295
,4,17480,118300
,4,17481,118305
,4,17482,118310
,4,17483,118315
,4,17484,118320
,4,17485,118325
,4,17486,118330
,4,17487,118335
,4,17488,118340
,4,17489,118345
,4,17490,118350
,4,17491,118355
,4,17492,118360
,4,17493,118365
,4,17494,118370
,4,17495,118375
,4,17496,118380
,4,17497,118385
,4,17498,118390
,4,17499,118395
,4,17500,118400
,4,17501,118405
,4,17502,118410
,4,17503,118415
,4,17504,118420
,4,17505,118425
,4,17506,118430
,4,17507,118435
,4,17508,118440
,4,17509,118445
,4,17510,118450
,4,17511,118455
,4,17512,118460
,4,17513,118465
,4,17514,118470
,4,17515,118475
,4,17516,118480
,4,17517,118485
,4,17518,118490
,4,17519,118495
,4,17520,118500
,4,17521,118505
,4,17522,118510
,4,17523,118515
,4,17524,118520
,4,17525,118525
,4,17526,118530
,4,17527,118535
,4,17528,118540
,4,17529,118545
,4,17530,118550
,4,17531,118555
,4,17532,118560
,4,17533,118565
,4,17534,118570
,4,17535,118575
,4,17536,118580
,4,17537,118585
,4,17538,118590
,4,17539,118595
,4,17540,118600
,4,17541,118605
,4,17542,118610
,4,17543,118615
,4,17544,118620
,4,17545,118625
,4,17546,118630
,4,17547,118635
,4,17548,118640
,4,17549,118645
,4,17550,118650
,4,17551,118655
,4,17552,118660
,4,17553,118665
,4,17554,118670
,4,17555,118675
,4,17556,118680
,4,17557,118685
,4,17558,118690
,4,17559,118695
,4,17560,118700
,4,17561,118705
,4,17562,118710
,4,17563,118715
,4,17564,118720
,4,17565,118725
,4,17566,118730
,4,17567,118735
,4,17568,118740
,4,17569,118745
,4,17570,118750
,4,17571,118755
,4,17572,118760
,4,17573,118765
,4,17574,118770
,4,17575,118775
,4,17576,118780
,4,17577,118785
,4,17578,118790
,4,17579,118795
,4,17580,118800
,4,17581,118805
,4,17582,118810
,4,17583,118815
,4,17584,118820
,4,17585,118825
,4,17586,118830
,4,17587,118835
,4,17588,118840
,4,17589,118845
,4,17590,118850
,4,17591,118855
,4,17592,118860
,4,17593,118865
,4,17594,118870
,4,17595,118875
,4,17596,118880
,4,17597,118885
,4,17598,118890
,4,17599,118895
,4,17600,118900
,4,17601,118905
,4,17602,118910
,4,17603,118915
,4,17604,118920
,4,17605,118925
,4,17606,118930
,4,17607,118935
,4,17608,118940
,4,17609,118945
,4,17610,118950
,4,17611,118955
,4,17612,118960
,4,17613,118965
,4,17614,118970
,4,17615,118975
,4,17616,118980
,4,17617,118985
,4,17618,118990
,4,17619,118995
,4,17620,119000
,4,17621,119005
,4,17622,119010
,4,17623,119015
,4,17624,119020
,4,17625,119025
,4,17626,119030
,4,17627,119035
,4,17628,119040
,4,17629,119045
,4,17630,119050
,4,17631,119055
,4,17632,119060
,4,17633,119065
,4,17634,119070
,4,17635,119075
,4,17636,119080
,4,17637,119085
,4,17638,119090
,4,17639,119095
,4,17640,119100
,4,17641,119105
,4,17642,119110
,4,17643,119115
,4,17644,119120
,4,17645,119125
,4,17646,119130
,4,17647,119135
,4,17648,119140
,4,17649,119145
,4,17650,119150
,4,17651,119155
,4,17652,119160
,4,17653,119165
,4,17654,119170
,4,17655,119175
,4,17656,119180
,4,17657,119185
,4,17658,119190
,4,17659,119195
,4,17660,119200
,4,17661,119205
,4,17662,119210
,4,17663,119215
,4,17664,119220
,4,17665,119225
,4,17666,119230
,4,17667,119235
,4,17668,119240
,4,17669,119245
,4,17670,119250
,4,17671,119255
,4,17672,119260
,4,17673,119265
,4,17674,119270
,4,17675,119275
,4,17676,119280
,4,17677,119285
,4,17678,119290
,4,17679,119295
,4,17680,119300
,4,17681,119305
,4,17682,119310
,4,17683,119315
,4,17684,119320
,4,17685,119325
,4,17686,119330
,4,17687,119335
,4,17688,119340
,4,17689,119345
,4,17690,119350
,4,17691,119355
,4,17692,119360
,4,17693,119365
,4,17694,119370
,4,17695,119375
,4,17696,119380
,4,17697,119385
,4,17698,119390
,4,17699,119395
,4,17700,119400
,4,17701,119405
,4,17702,119410
,4,17703,119415
,4,17704,119420
,4,17705,119425
,4,17706,119430
,4,17707,119435
,4,17708,119440
,4,17709,119445
,4,17710,119450
,4,17711,119455
,4,17712,119460
,4,17713,119465
,4,17714,119470
,4,17715,119475
,4,17716,119480
,4,17717,119485
,4,17718,119490
,4,17719,119495
,4,17720,119500
,4,17721,119505
,4,17722,119510
,4,17723,119515
,4,17724,119520
,4,17725,119525
,4,17726,119530
,4,17727,119535
,4,17728,119540
,4,17729,119545
,4,17730,119550
,4,17731,119555
,4,17732,119560
,4,17733,119565
,4,17734,119570
,4,17735,119575
,4,17736,119580
,4,17737,119585
,4,17738,119590
,4,17739,119595
,4,17740,119600
,4,17741,119605
,4,17742,119610
,4,17743,119615
,4,17744,119620
,4,17745,119625
,4,17746,119630
,4,17747,119635
,4,17748,119640
,4,17749,119645
,4,17750,119650
,4,17751,119655
,4,17752,119660
,4,17753,119665
,4,17754,119670
,4,17755,119675
,4,17756,119680
,4,17757,119685
,4,17758,119690
,4,17759,119695
,4,17760,119700
,4,17761,119705
,4,17762,119710
,4,17763,119715
,4,17764,119720
,4,17765,119725
,4,17766,119730
,4,17767,119735
,4,17768,119740
,4,17769,119745
,4,17770,119750
,4,17771,119755
,4,17772,119760
,4,17773,119765
,4,17774,119770
,4,17775,119775
,4,17776,119780
,4,17777,119785
,4,17778,119790
,4,17779,119795
,4,17780,119800
,4,17781,119805
,4,17782,119810
,4,17783,119815
,4,17784,119820
,4,17785,119825
,4,17786,119830
,4,17787,119835
,4,17788,119840
,4,17789,119845
,4,17790,119850
,4,17791,119855
,4,17792,119860
,4,17793,119865
,4,17794,119870
,4,17795,119875
,4,17796,119880
,4,17797,119885
,4,17798,119890
,4,17799,119895
,4,17800,119900
,4,17801,119905
,4,17802,119910
,4,17803,119915
,4,17804,119920
,4,17805,119925
,4,17806,119930
,4,17807,119935
,4,17808,119940
,4,17809,119945
,4,17810,119950
,4,17811,119955
,4,17812,119960
,4,17813,119965
,4,17814,119970
,4,17815,119975
,4,17816,119980
,4,17817,119985
,4,17818,119990
,4,17819,119995
,4,17820,120000
,4,17821,120005
,4,17822,120010
,4,17823,120015
,4,17824,120020
,4,17825,120025
,4,17826,120030
,4,17827,120035
,4,17828,120040
,4,17829,120045
,4,17830,120050
,4,17831,120055
,4,17832,120060
,4,17833,120065
,4,17834,120070
,4,17835,120075
,4,17836,120080
,4,17837,120085
,4,17838,120090
,4,17839,120095
,4,17840,120100
,4,17841,120105
,4,17842,120110
,4,17843,120115
,4,17844,120120
,4,17845,120125
,4,17846,120130
,4,17847,120135
,4,17848,120140
,4,17849,120145
,4,17850,120150
,4,17851,120155
,4,17852,120160
,4,17853,120165
,4,17854,120170
,4,17855,120175
,4,17856,120180
,4,17857,120185
,4,17858,120190
,4,17859,120195
,4,17860,120200
,4,17861,120205
,4,17862,120210
,4,17863,120215
,4,17864,120220
,4,17865,120225
,4,17866,120230
,4,17867,120235
,4,17868,120240
,4,17869,120245
,4,17870,120250
,4,17871,120255
,4,17872,120260
,4,17873,120265
,4,17874,120270
,4,17875,120275
,4,17876,120280
,4,17877,120285
,4,17878,120290
,4,17879,120295
,4,17880,120300
,4,17881,120305
,4,17882,120310
,4,17883,120315
,4,17884,120320
,4,17885,120325
,4,17886,120330
,4,17887,120335
,4,17888,120340
,4,17889,120345
,4,17890,120350
,4,17891,120355
,4,17892,120360
,4,17893,120365
,4,17894,120370
,4,17895,120375
,4,17896,120380
,4,17897,120385
,4,17898,120390
,4,17899,120395
,4,17900,120400
,4,17901,120405
,4,17902,120410
,4,17903,120415
,4,17904,120420
,4,17905,120425
,4,17906,120430
,4,17907,120435
,4,17908,120440
,4,17909,120445
,4,17910,120450
,4,17911,120455
,4,17912,120460
,4,17913,120465
,4,17914,120470
,4,17915,120475
,4,17916,120480
,4,17917,120485
,4,17918,120490
,4,17919,120495
,4,17920,120500
,4,17921,120505
,4,17922,120510
,4,17923,120515
,4,17924,120520
,4,17925,120525
,4,17926,120530
,4,17927,120535
,4,17928,120540
,4,17929,120545
,4,17930,120550
,4,17931,120555
,4,17932,120560
,4,17933,120565
,4,17934,120570
,4,17935,120575
,4,17936,120580
,4,17937,120585
,4,17938,120590
,4,17939,120595
,4,17940,120600
,4,17941,120605
,4,17942,120610
,4,17943,120615
,4,17944,120620
,4,17945,120625
,4,17946,120630
,4,17947,120635
,4,17948,120640
,4,17949,120645
,4,17950,120650
,4,17951,120655
,4,17952,120660
,4,17953,120665
,4,17954,120670
,4,17955,120675
,4,17956,120680
,4,17957,120685
,4,17958,120690
,4,17959,120695
,4,17960,120700
,4,17961,120705
,4,17962,120710
,4,17963,120715
,4,17964,120720
,4,17965,120725
,4,17966,120730
,4,17967,120735
,4,17968,120740
,4,17969,120745
,4,17970,120750
,4,17971,120755
,4,17972,120760
,4,17973,120765
,4,17974,120770
,4,17975,120775
,4,17976,120780
,4,17977,120785
,4,17978,120790
,4,17979,120795
,4,17980,120800
,4,17981,120805
,4,17982,120810
,4,17983,120815
,4,17984,120820
,4,17985,120825
,4,17986,120830
,4,17987,120835
,4,17988,120840
,4,17989,120845
,4,17990,120850
,4,17991,120855
,4,17992,120860
,4,17993,120865
,4,17994,120870
,4,17995,120875
,4,17996,120880
,4,17997,120885
,4,17998,120890
,4,17999,120895
,4,18000,120900
,4,18001,120905
,4,18002,120910
,4,18003,120915
,4,18004,120920
,4,18005,120925
,4,18006,120930
,4,18007,120935
,4,18008,120940
,4,18009,120945
,4,18010,120950
,4,18011,120955
,4,18012,120960
,4,18013,120965
,4,18014,120970
,4,18015,120975
,4,18016,120980
,4,18017,120985
,4,18018,120990
,4,18019,120995
,4,18020,121000
,4,18021,121005
,4,18022,121010
,4,18023,121015
,4,18024,121020
,4,18025,121025
,4,18026,121030
,4,18027,121035
,4,18028,121040
,4,18029,121045
,4,18030,121050
,4,18031,121055
,4,18032,121060
,4,18033,121065
,4,18034,121070
,4,18035,121075
,4,18036,121080
,4,18037,121085
,4,18038,121090
,4,18039,121095
,4,18040,121100
,4,18041,121105
,4,18042,121110
,4,18043,121115
,4,18044,121120
,4,18045,121125
,4,18046,121130
,4,18047,121135
,4,18048,121140
,4,18049,121145
,4,18050,121150
,4,18051,121155
,4,18052,121160
,4,18053,121165
,4,18054,121170
,4,18055,121175
,4,18056,121180
,4,18057,121185
,4,18058,121190
,4,18059,121195
,4,18060,121200
,4,18061,121205
,4,18062,121210
,4,18063,121215
,4,18064,121220
,4,18065,121225
,4,18066,121230
,4,18067,121235
,4,18068,121240
,4,18069,121245
,4,18070,121250
,4,18071,121255
,4,18072,121260
,4,18073,121265
,4,18074,121270
,4,18075,121275
,4,18076,121280
,4,18077,121285
,4,18078,121290
,4,18079,121295
,4,18080,121300
,4,18081,121305
,4,18082,121310
,4,18083,121315
,4,18084,121320
,4,18085,121325
,4,18086,121330
,4,18087,121335
,4,18088,121340
,4,18089,121345
,4,18090,121350
,4,18091,121355
,4,18092,121360
,4,18093,121365
,4,18094,121370
,4,18095,121375
,4,18096,121380
,4,18097,121385
,4,18098,121390
,4,18099,121395
,4,18100,121400
,4,18101,121405
,4,18102,121410
,4,18103,121415
,4,18104,121420
,4,18105,121425
,4,18106,121430
,4,18107,121435
,4,18108,121440
,4,18109,121445
,4,18110,121450
,4,18111,121455
,4,18112,121460
,4,18113,121465
,4,18114,121470
,4,18115,121475
,4,18116,121480
,4,18117,121485
,4,18118,121490
,4,18119,121495
,4,18120,121500
,4,18121,121505
,4,18122,121510
,4,18123,121515
,4,18124,121520
,4,18125,121525
,4,18126,121530
,4,18127,121535
,4,18128,121540
,4,18129,121545
,4,18130,121550
,4,18131,121555
,4,18132,121560
,4,18133,121565
,4,18134,121570
,4,18135,121575
,4,18136,121580
,4,18137,121585
,4,18138,121590
,4,18139,121595
,4,18140,121600
,4,18141,121605
,4,18142,121610
,4,18143,121615
,4,18144,121620
,4,18145,121625
,4,18146,121630
,4,18147,121635
,4,18148,121640
,4,18149,121645
,4,18150,121650
,4,18151,121655
,4,18152,121660
,4,18153,121665
,4,18154,121670
,4,18155,121675
,4,18156,121680
,4,18157,121685
,4,18158,121690
,4,18159,121695
,4,18160,121700
,4,18161,121705
,4,18162,121710
,4,18163,121715
,4,18164,121720
,4,18165,121725
,4,18166,121730
,4,18167,121735
,4,18168,121740
,4,18169,121745
,4,18170,121750
,4,18171,121755
,4,18172,121760
,4,18173,121765
,4,18174,121770
,4,18175,121775
,4,18176,121780
,4,18177,121785
,4,18178,121790
,4,18179,121795
,4,18180,121800
,4,18181,121805
,4,18182,121810
,4,18183,121815
,4,18184,121820
,4,18185,121825
,4,18186,121830
,4,18187,121835
,4,18188,121840
,4,18189,121845
,4,18190,121850
,4,18191,121855
,4,18192,121860
,4,18193,121865
,4,18194,121870
,4,18195,121875
,4,18196,121880
,4,18197,121885
,4,18198,121890
,4,18199,121895
,4,18200,121900
,4,18201,121905
,4,18202,121910
,4,18203,121915
,4,18204,121920
,4,18205,121925
,4,18206,121930
,4,18207,121935
,4,18208,121940
,4,18209,121945
,4,18210,121950
,4,18211,121955
,4,18212,121960
,4,18213,121965
,4,18214,121970
,4,18215,121975
,4,18216,121980
,4,18217,121985
,4,18218,121990
,4,18219,121995
,4,18220,122000
,4,18221,122005
,4,18222,122010
,4,18223,122015
,4,18224,122020
,4,18225,122025
,4,18226,122030
,4,18227,122035
,4,18228,122040
,4,18229,122045
,4,18230,122050
,4,18231,122055
,4,18232,122060
,4,18233,122065
,4,18234,122070
,4,18235,122075
,4,18236,122080
,4,18237,122085
,4,18238,122090
,4,18239,122095
,4,18240,122100
,4,18241,122105
,4,18242,122110
,4,18243,122115
,4,18244,122120
,4,18245,122125
,4,18246,122130
,4,18247,122135
,4,18248,122140
,4,18249,122145
,4,18250,122150
,4,18251,122155
,4,18252,122160
,4,18253,122165
,4,18254,122170
,4,18255,122175
,4,18256,122180
,4,18257,122185
,4,18258,122190
,4,18259,122195
,4,18260,122200
,4,18261,122205
,4,18262,122210
,4,18263,122215
,4,18264,122220
,4,18265,122225
,4,18266,122230
,4,18267,122235
,4,18268,122240
,4,18269,122245
,4,18270,122250
,4,18271,122255
,4,18272,122260
,4,18273,122265
,4,18274,122270
,4,18275,122275
,4,18276,122280
,4,18277,122285
,4,18278,122290
,4,18279,122295
,4,18280,122300
,4,18281,122305
,4,18282,122310
,4,18283,122315
,4,18284,122320
,4,18285,122325
,4,18286,122330
,4,18287,122335
,4,18288,122340
,4,18289,122345
,4,18290,122350
,4,18291,122355
,4,18292,122360
,4,18293,122365
,4,18294,122370
,4,18295,122375
,4,18296,122380
,4,18297,122385
,4,18298,122390
,4,18299,122395
,4,18300,122400
,4,18301,122405
,4,18302,122410
,4,18303,122415
,4,18304,122420
,4,18305,122425
,4,18306,122430
,4,18307,122435
,4,18308,122440
,4,18309,122445
,4,18310,122450
,4,18311,122455
,4,18312,122460
,4,18313,122465
,4,18314,122470
,4,18315,122475
,4,18316,122480
,4,18317,122485
,4,18318,122490
,4,18319,122495
,4,18320,122500
,4,18321,122505
,4,18322,122510
,4,18323,122515
,4,18324,122520
,4,18325,122525
,4,18326,122530
,4,18327,122535
,4,18328,122540
,4,18329,122545
,4,18330,122550
,4,18331,122555
,4,18332,122560
,4,18333,122565
,4,18334,122570
,4,18335,122575
,4,18336,122580
,4,18337,122585
,4,18338,122590
,4,18339,122595
,4,18340,122600
,4,18341,122605
,4,18342,122610
,4,18343,122615
,4,18344,122620
,4,18345,122625
,4,18346,122630
,4,18347,122635
,4,18348,122640
,4,18349,122645
,4,18350,122650
,4,18351,122655
,4,18352,122660
,4,18353,122665
,4,18354,122670
,4,18355,122675
,4,18356,122680
,4,18357,122685
,4,18358,122690
,4,18359,122695
,4,18360,122700
,4,18361,122705
,4,18362,122710
,4,18363,122715
,4,18364,122720
,4,18365,122725
,4,18366,122730
,4,18367,122735
,4,18368,122740
,4,18369,122745
,4,18370,122750
,4,18371,122755
,4,18372,122760
,4,18373,122765
,4,18374,122770
,4,18375,122775
,4,18376,122780
,4,18377,122785
,4,18378,122790
,4,18379,122795
,4,18380,122800
,4,18381,122805
,4,18382,122810
,4,18383,122815
,4,18384,122820
,4,18385,122825
,4,18386,122830
,4,18387,122835
,4,18388,122840
,4,18389,122845
,4,18390,122850
,4,18391,122855
,4,18392,122860
,4,18393,122865
,4,18394,122870
,4,18395,122875
,4,18396,122880
,4,18397,122885
,4,18398,122890
,4,18399,122895
,4,18400,122900
,4,18401,122905
,4,18402,122910
,4,18403,122915
,4,18404,122920
,4,18405,122925
,4,18406,122930
,4,18407,122935
,4,18408,122940
,4,18409,122945
,4,18410,122950
,4,18411,122955
,4,18412,122960
,4,18413,122965
,4,18414,122970
,4,18415,122975
,4,18416,122980
,4,18417,122985
,4,18418,122990
,4,18419,122995
,4,18420,123000
,4,18421,123005
,4,18422,123010
,4,18423,123015
,4,18424,123020
,4,18425,123025
,4,18426,123030
,4,18427,123035
,4,18428,123040
,4,18429,123045
,4,18430,123050
,4,18431,123055
,4,18432,123060
,4,18433,123065
,4,18434,123070
,4,18435,123075
,4,18436,123080
,4,18437,123085
,4,18438,123090
,4,18439,123095
,4,18440,123100
,4,18441,123105
,4,18442,123110
,4,18443,123115
,4,18444,123120
,4,18445,123125
,4,18446,123130
,4,18447,123135
,4,18448,123140
,4,18449,123145
,4,18450,123150
,4,18451,123155
,4,18452,123160
,4,18453,123165
,4,18454,123170
,4,18455,123175
,4,18456,123180
,4,18457,123185
,4,18458,123190
,4,18459,123195
,4,18460,123200
,4,18461,123205
,4,18462,123210
,4,18463,123215
,4,18464,123220
,4,18465,123225
,4,18466,123230
,4,18467,123235
,4,18468,123240
,4,18469,123245
,4,18470,123250
,4,18471,123255
,4,18472,123260
,4,18473,123265
,4,18474,123270
,4,18475,123275
,4,18476,123280
,4,18477,123285
,4,18478,123290
,4,18479,123295
,4,18480,123300
,4,18481,123305
,4,18482,123310
,4,18483,123315
,4,18484,123320
,4,18485,123325
,4,18486,123330
,4,18487,123335
,4,18488,123340
,4,18489,123345
,4,18490,123350
,4,18491,123355
,4,18492,123360
,4,18493,123365
,4,18494,123370
,4,18495,123375
,4,18496,123380
,4,18497,123385
,4,18498,123390
,4,18499,123395
,4,18500,123400
,4,18501,123405
,4,18502,123410
,4,18503,123415
,4,18504,123420
,4,18505,123425
,4,18506,123430
,4,18507,123435
,4,18508,123440
,4,18509,123445
,4,18510,123450
,4,18511,123455
,4,18512,123460
,4,18513,123465
,4,18514,123470
,4,18515,123475
,4,18516,123480
,4,18517,123485
,4,18518,123490
,4,18519,123495
,4,18520,123500
,4,18521,123505
,4,18522,123510
,4,18523,123515
,4,18524,123520
,4,18525,123525
,4,18526,123530
,4,18527,123535
,4,18528,123540
,4,18529,123545
,4,18530,123550
,4,18531,123555
,4,18532,123560
,4,18533,123565
,4,18534,123570
,4,18535,123575
,4,18536,123580
,4,18537,123585
,4,18538,123590
,4,18539,123595
,4,18540,123600
,4,18541,123605
,4,18542,123610
,4,18543,123615
,4,18544,123620
,4,18545,123625
,4,18546,123630
,4,18547,123635
,4,18548,123640
,4,18549,123645
,4,18550,123650
,4,18551,123655
,4,18552,123660
,4,18553,123665
,4,18554,123670
,4,18555,123675
,4,18556,123680
,4,18557,123685
,4,18558,123690
,4,18559,123695
,4,18560,123700
,4,18561,123705
,4,18562,123710
,4,18563,123715
,4,18564,123720
,4,18565,123725
,4,18566,123730
,4,18567,123735
,4,18568,123740
,4,18569,123745
,4,18570,123750
,4,18571,123755
,4,18572,123760
,4,18573,123765
,4,18574,123770
,4,18575,123775
,4,18576,123780
,4,18577,123785
,4,18578,123790
,4,18579,123795
,4,18580,123800
,4,18581,123805
,4,18582,123810
,4,18583,123815
,4,18584,123820
,4,18585,123825
,4,18586,123830
,4,18587,123835
,4,18588,123840
,4,18589,123845
,4,18590,123850
,4,18591,123855
,4,18592,123860
,4,18593,123865
,4,18594,123870
,4,18595,123875
,4,18596,123880
,4,18597,123885
,4,18598,123890
,4,18599,123895
,4,18600,123900
,4,18601,123905
,4,18602,123910
,4,18603,123915
,4,18604,123920
,4,18605,123925
,4,18606,123930
,4,18607,123935
,4,18608,123940
,4,18609,123945
,4,18610,123950
,4,18611,123955
,4,18612,123960
,4,18613,123965
,4,18614,123970
,4,18615,123975
,4,18616,123980
,4,18617,123985
,4,18618,123990
,4,18619,123995
,4,18620,124000
,4,18621,124005
,4,18622,124010
,4,18623,124015
,4,18624,124020
,4,18625,124025
,4,18626,124030
,4,18627,124035
,4,18628,124040
,4,18629,124045
,4,18630,124050
,4,18631,124055
,4,18632,124060
,4,18633,124065
,4,18634,124070
,4,18635,124075
,4,18636,124080
,4,18637,124085
,4,18638,124090
,4,18639,124095
,4,18640,124100
,4,18641,124105
,4,18642,124110
,4,18643,124115
,4,18644,124120
,4,18645,124125
,4,18646,124130
,4,18647,124135
,4,18648,124140
,4,18649,124145
,4,18650,124150
,4,18651,124155
,4,18652,124160
,4,18653,124165
,4,18654,124170
,4,18655,124175
,4,18656,124180
,4,18657,124185
,4,18658,124190
,4,18659,124195
,4,18660,124200
,4,18661,124205
,4,18662,124210
,4,18663,124215
,4,18664,124220
,4,18665,124225
,4,18666,124230
,4,18667,124235
,4,18668,124240
,4,18669,124245
,4,18670,124250
,4,18671,124255
,4,18672,124260
,4,18673,124265
,4,18674,124270
,4,18675,124275
,4,18676,124280
,4,18677,124285
,4,18678,124290
,4,18679,124295
,4,18680,124300
,4,18681,124305
,4,18682,124310
,4,18683,124315
,4,18684,124320
,4,18685,124325
,4,18686,124330
,4,18687,124335
,4,18688,124340
,4,18689,124345
,4,18690,124350
,4,18691,124355
,4,18692,124360
,4,18693,124365
,4,18694,124370
,4,18695,124375
,4,18696,124380
,4,18697,124385
,4,18698,124390
,4,18699,124395
,4,18700,124400
,4,18701,124405
,4,18702,124410
,4,18703,124415
,4,18704,124420
,4,18705,124425
,4,18706,124430
,4,18707,124435
,4,18708,124440
,4,18709,124445
,4,18710,124450
,4,18711,124455
,4,18712,124460
,4,18713,124465
,4,18714,124470
,4,18715,124475
,4,18716,124480
,4,18717,124485
,4,18718,124490
,4,18719,124495
,4,18720,124500
,4,18721,124505
,4,18722,124510
,4,18723,124515
,4,18724,124520
,4,18725,124525
,4,18726,124530
,4,18727,124535
,4,18728,124540
,4,18729,124545
,4,18730,124550
,4,18731,124555
,4,18732,124560
,4,18733,124565
,4,18734,124570
,4,18735,124575
,4,18736,124580
,4,18737,124585
,4,18738,124590
,4,18739,124595
,4,18740,124600
,4,18741,124605
,4,18742,124610
,4,18743,124615
,4,18744,124620
,4,18745,124625
,4,18746,124630
,4,18747,124635
,4,18748,124640
,4,18749,124645
,4,18750,124650
,4,18751,124655
,4,18752,124660
,4,18753,124665
,4,18754,124670
,4,18755,124675
,4,18756,124680
,4,18757,124685
,4,18758,124690
,4,18759,124695
,4,18760,124700
,4,18761,124705
,4,18762,124710
,4,18763,124715
,4,18764,124720
,4,18765,124725
,4,18766,124730
,4,18767,124735
,4,18768,124740
,4,18769,124745
,4,18770,124750
,4,18771,124755
,4,18772,124760
,4,18773,124765
,4,18774,124770
,4,18775,124775
,4,18776,124780
,4,18777,124785
,4,18778,124790
,4,18779,124795
,4,18780,124800
,4,18781,124805
,4,18782,124810
,4,18783,124815
,4,18784,124820
,4,18785,124825
,4,18786,124830
,4,18787,124835
,4,18788,124840
,4,18789,124845
,4,18790,124850
,4,18791,124855
,4,18792,124860
,4,18793,124865
,4,18794,124870
,4,18795,124875
,4,18796,124880
,4,18797,124885
,4,18798,124890
,4,18799,124895
,4,18800,124900
,4,18801,124905
,4,18802,124910
,4,18803,124915
,4,18804,124920
,4,18805,124925
,4,18806,124930
,4,18807,124935
,4,18808,124940
,4,18809,124945
,4,18810,124950
,4,18811,124955
,4,18812,124960
,4,18813,124965
,4,18814,124970
,4,18815,124975
,4,18816,124980
,4,18817,124985
,4,18818,124990
,4,18819,124995
,4,18820,125000
,4,18821,125005
,4,18822,125010
,4,18823,125015
,4,18824,125020
,4,18825,125025
,4,18826,125030
,4,18827,125035
,4,18828,125040
,4,18829,125045
,4,18830,125050
,4,18831,125055
,4,18832,125060
,4,18833,125065
,4,18834,125070
,4,18835,125075
,4,18836,125080
,4,18837,125085
,4,18838,125090
,4,18839,125095
,4,18840,125100
,4,18841,125105
,4,18842,125110
,4,18843,125115
,4,18844,125120
,4,18845,125125
,4,18846,125130
,4,18847,125135
,4,18848,125140
,4,18849,125145
,4,18850,125150
,4,18851,125155
,4,18852,125160
,4,18853,125165
,4,18854,125170
,4,18855,125175
,4,18856,125180
,4,18857,125185
,4,18858,125190
,4,18859,125195
,4,18860,125200
,4,18861,125205
,4,18862,125210
,4,18863,125215
,4,18864,125220
,4,18865,125225
,4,18866,125230
,4,18867,125235
,4,18868,125240
,4,18869,125245
,4,18870,125250
,4,18871,125255
,4,18872,125260
,4,18873,125265
,4,18874,125270
,4,18875,125275
,4,18876,125280
,4,18877,125285
,4,18878,125290
,4,18879,125295
,4,18880,125300
,4,18881,125305
,4,18882,125310
,4,18883,125315
,4,18884,125320
,4,18885,125325
,4,18886,125330
,4,18887,125335
,4,18888,125340
,4,18889,125345
,4,18890,125350
,4,18891,125355
,4,18892,125360
,4,18893,125365
,4,18894,125370
,4,18895,125375
,4,18896,125380
,4,18897,125385
,4,18898,125390
,4,18899,125395
,4,18900,125400
,4,18901,125405
,4,18902,125410
,4,18903,125415
,4,18904,125420
,4,18905,125425
,4,18906,125430
,4,18907,125435
,4,18908,125440
,4,18909,125445
,4,18910,125450
,4,18911,125455
,4,18912,125460
,4,18913,125465
,4,18914,125470
,4,18915,125475
,4,18916,125480
,4,18917,125485
,4,18918,125490
,4,18919,125495
,4,18920,125500
,4,18921,125505
,4,18922,125510
,4,18923,125515
,4,18924,125520
,4,18925,125525
,4,18926,125530
,4,18927,125535
,4,18928,125540
,4,18929,125545
,4,18930,125550
,4,18931,125555
,4,18932,125560
,4,18933,125565
,4,18934,125570
,4,18935,125575
,4,18936,125580
,4,18937,125585
,4,18938,125590
,4,18939,125595
,4,18940,125600
,4,18941,125605
,4,18942,125610
,4,18943,125615
,4,18944,125620
,4,18945,125625
,4,18946,125630
,4,18947,125635
,4,18948,125640
,4,18949,125645
,4,18950,125650
,4,18951,125655
,4,18952,125660
,4,18953,125665
,4,18954,125670
,4,18955,125675
,4,18956,125680
,4,18957,125685
,4,18958,125690
,4,18959,125695
,4,18960,125700
,4,18961,125705
,4,18962,125710
,4,18963,125715
,4,18964,125720
,4,18965,125725
,4,18966,125730
,4,18967,125735
,4,18968,125740
,4,18969,125745
,4,18970,125750
,4,18971,125755
,4,18972,125760
,4,18973,125765
,4,18974,125770
,4,18975,125775
,4,18976,125780
,4,18977,125785
,4,18978,125790
,4,18979,125795
,4,18980,125800
,4,18981,125805
,4,18982,125810
,4,18983,125815
,4,18984,125820
,4,18985,125825
,4,18986,125830
,4,18987,125835
,4,18988,125840
,4,18989,125845
,4,18990,125850
,4,18991,125855
,4,18992,125860
,4,18993,125865
,4,18994,125870
,4,18995,125875
,4,18996,125880
,4,18997,125885
,4,18998,125890
,4,18999,125895
,4,19000,125900
,4,19001,125905
,4,19002,125910
,4,19003,125915
,4,19004,125920
,4,19005,125925
,4,19006,125930
,4,19007,125935
,4,19008,125940
,4,19009,125945
,4,19010,125950
,4,19011,125955
,4,19012,125960
,4,19013,125965
,4,19014,125970
,4,19015,125975
,4,19016,125980
,4,19017,125985
,4,19018,125990
,4,19019,125995
,4,19020,126000
,4,19021,126005
,4,19022,126010
,4,19023,126015
,4,19024,126020
,4,19025,126025
,4,19026,126030
,4,19027,126035
,4,19028,126040
,4,19029,126045
,4,19030,126050
,4,19031,126055
,4,19032,126060
,4,19033,126065
,4,19034,126070
,4,19035,126075
,4,19036,126080
,4,19037,126085
,4,19038,126090
,4,19039,126095
,4,19040,126100
,4,19041,126105
,4,19042,126110
,4,19043,126115
,4,19044,126120
,4,19045,126125
,4,19046,126130
,4,19047,126135
,4,19048,126140
,4,19049,126145
,4,19050,126150
,4,19051,126155
,4,19052,126160
,4,19053,126165
,4,19054,126170
,4,19055,126175
,4,19056,126180
,4,19057,126185
,4,19058,126190
,4,19059,126195
,4,19060,126200
,4,19061,126205
,4,19062,126210
,4,19063,126215
,4,19064,126220
,4,19065,126225
,4,19066,126230
,4,19067,126235
,4,19068,126240
,4,19069,126245
,4,19070,126250
,4,19071,126255
,4,19072,126260
,4,19073,126265
,4,19074,126270
,4,19075,126275
,4,19076,126280
,4,19077,126285
,4,19078,126290
,4,19079,126295
,4,19080,126300
,4,19081,126305
,4,19082,126310
,4,19083,126315
,4,19084,126320
,4,19085,126325
,4,19086,126330
,4,19087,126335
,4,19088,126340
,4,19089,126345
,4,19090,126350
,4,19091,126355
,4,19092,126360
,4,19093,126365
,4,19094,126370
,4,19095,126375
,4,19096,126380
,4,19097,126385
,4,19098,126390
,4,19099,126395
,4,19100,126400
,4,19101,126405
,4,19102,126410
,4,19103,126415
,4,19104,126420
,4,19105,126425
,4,19106,126430
,4,19107,126435
,4,19108,126440
,4,19109,126445
,4,19110,126450
,4,19111,126455
,4,19112,126460
,4,19113,126465
,4,19114,126470
,4,19115,126475
,4,19116,126480
,4,19117,126485
,4,19118,126490
,4,19119,126495
,4,19120,126500
,4,19121,126505
,4,19122,126510
,4,19123,126515
,4,19124,126520
,4,19125,126525
,4,19126,126530
,4,19127,126535
,4,19128,126540
,4,19129,126545
,4,19130,126550
,4,19131,126555
,4,19132,126560
,4,19133,126565
,4,19134,126570
,4,19135,126575
,4,19136,126580
,4,19137,126585
,4,19138,126590
,4,19139,126595
,4,19140,126600
,4,19141,126605
,4,19142,126610
,4,19143,126615
,4,19144,126620
,4,19145,126625
,4,19146,126630
,4,19147,126635
,4,19148,126640
,4,19149,126645
,4,19150,126650
,4,19151,126655
,4,19152,126660
,4,19153,126665
,4,19154,126670
,4,19155,126675
,4,19156,126680
,4,19157,126685
,4,19158,126690
,4,19159,126695
,4,19160,126700
,4,19161,126705
,4,19162,126710
,4,19163,126715
,4,19164,126720
,4,19165,126725
,4,19166,126730
,4,19167,126735
,4,19168,126740
,4,19169,126745
,4,19170,126750
,4,19171,126755
,4,19172,126760
,4,19173,126765
,4,19174,126770
,4,19175,126775
,4,19176,126780
,4,19177,126785
,4,19178,126790
,4,19179,126795
,4,19180,126800
,4,19181,126805
,4,19182,126810
,4,19183,126815
,4,19184,126820
,4,19185,126825
,4,19186,126830
,4,19187,126835
,4,19188,126840
,4,19189,126845
,4,19190,126850
,4,19191,126855
,4,19192,126860
,4,19193,126865
,4,19194,126870
,4,19195,126875
,4,19196,126880
,4,19197,126885
,4,19198,126890
,4,19199,126895
,4,19200,126900
,4,19201,126905
,4,19202,126910
,4,19203,126915
,4,19204,126920
,4,19205,126925
,4,19206,126930
,4,19207,126935
,4,19208,126940
,4,19209,126945
,4,19210,126950
,4,19211,126955
,4,19212,126960
,4,19213,126965
,4,19214,126970
,4,19215,126975
,4,19216,126980
,4,19217,126985
,4,19218,126990
,4,19219,126995
,4,19220,127000
,4,19221,127005
,4,19222,127010
,4,19223,127015
,4,19224,127020
,4,19225,127025
,4,19226,127030
,4,19227,127035
,4,19228,127040
,4,19229,127045
,4,19230,127050
,4,19231,127055
,4,19232,127060
,4,19233,127065
,4,19234,127070
,4,19235,127075
,4,19236,127080
,4,19237,127085
,4,19238,127090
,4,19239,127095
,4,19240,127100
,4,19241,127105
,4,19242,127110
,4,19243,127115
,4,19244,127120
,4,19245,127125
,4,19246,127130
,4,19247,127135
,4,19248,127140
,4,19249,127145
,4,19250,127150
,4,19251,127155
,4,19252,127160
,4,19253,127165
,4,19254,127170
,4,19255,127175
,4,19256,127180
,4,19257,127185
,4,19258,127190
,4,19259,127195
,4,19260,127200
,4,19261,127205
,4,19262,127210
,4,19263,127215
,4,19264,127220
,4,19265,127225
,4,19266,127230
,4,19267,127235
,4,19268,127240
,4,19269,127245
,4,19270,127250
,4,19271,127255
,4,19272,127260
,4,19273,127265
,4,19274,127270
,4,19275,127275
,4,19276,127280
,4,19277,127285
,4,19278,127290
,4,19279,127295
,4,19280,127300
,4,19281,127305
,4,19282,127310
,4,19283,127315
,4,19284,127320
,4,19285,127325
,4,19286,127330
,4,19287,127335
,4,19288,127340
,4,19289,127345
,4,19290,127350
,4,19291,127355
,4,19292,127360
,4,19293,127365
,4,19294,127370
,4,19295,127375
,4,19296,127380
,4,19297,127385
,4,19298,127390
,4,19299,127395
,4,19300,127400
,4,19301,127405
,4,19302,127410
,4,19303,127415
,4,19304,127420
,4,19305,127425
,4,19306,127430
,4,19307,127435
,4,19308,127440
,4,19309,127445
,4,19310,127450
,4,19311,127455
,4,19312,127460
,4,19313,127465
,4,19314,127470
,4,19315,127475
,4,19316,127480
,4,19317,127485
,4,19318,127490
,4,19319,127495
,4,19320,127500
,4,19321,127505
,4,19322,127510
,4,19323,127515
,4,19324,127520
,4,19325,127525
,4,19326,127530
,4,19327,127535
,4,19328,127540
,4,19329,127545
,4,19330,127550
,4,19331,127555
,4,19332,127560
,4,19333,127565
,4,19334,127570
,4,19335,127575
,4,19336,127580
,4,19337,127585
,4,19338,127590
,4,19339,127595
,4,19340,127600
,4,19341,127605
,4,19342,127610
,4,19343,127615
,4,19344,127620
,4,19345,127625
,4,19346,127630
,4,19347,127635
,4,19348,127640
,4,19349,127645
,4,19350,127650
,4,19351,127655
,4,19352,127660
,4,19353,127665
,4,19354,127670
,4,19355,127675
,4,19356,127680
,4,19357,127685
,4,19358,127690
,4,19359,127695
,4,19360,127700
,4,19361,127705
,4,19362,127710
,4,19363,127715
,4,19364,127720
,4,19365,127725
,4,19366,127730
,4,19367,127735
,4,19368,127740
,4,19369,127745
,4,19370,127750
,4,19371,127755
,4,19372,127760
,4,19373,127765
,4,19374,127770
,4,19375,127775
,4,19376,127780
,4,19377,127785
,4,19378,127790
,4,19379,127795
,4,19380,127800
,4,19381,127805
,4,19382,127810
,4,19383,127815
,4,19384,127820
,4,19385,127825
,4,19386,127830
,4,19387,127835
,4,19388,127840
,4,19389,127845
,4,19390,127850
,4,19391,127855
,4,19392,127860
,4,19393,127865
,4,19394,127870
,4,19395,127875
,4,19396,127880
,4,19397,127885
,4,19398,127890
,4,19399,127895
,4,19400,127900
,4,19401,127905
,4,19402,127910
,4,19403,127915
,4,19404,127920
,4,19405,127925
,4,19406,127930
,4,19407,127935
,4,19408,127940
,4,19409,127945
,4,19410,127950
,4,19411,127955
,4,19412,127960
,4,19413,127965
,4,19414,127970
,4,19415,127975
,4,19416,127980
,4,19417,127985
,4,19418,127990
,4,19419,127995
,4,19420,128000
,4,19421,128005
,4,19422,128010
,4,19423,128015
,4,19424,128020
,4,19425,128025
,4,19426,128030
,4,19427,128035
,4,19428,128040
,4,19429,128045
,4,19430,128050
,4,19431,128055
,4,19432,128060
,4,19433,128065
,4,19434,128070
,4,19435,128075
,4,19436,128080
,4,19437,128085
,4,19438,128090
,4,19439,128095
,4,19440,128100
,4,19441,128105
,4,19442,128110
,4,19443,128115
,4,19444,128120
,4,19445,128125
,4,19446,128130
,4,19447,128135
,4,19448,128140
,4,19449,128145
,4,19450,128150
,4,19451,128155
,4,19452,128160
,4,19453,128165
,4,19454,128170
,4,19455,128175
,4,19456,128180
,4,19457,128185
,4,19458,128190
,4,19459,128195
,4,19460,128200
,4,19461,128205
,4,19462,128210
,4,19463,128215
,4,19464,128220
,4,19465,128225
,4,19466,128230
,4,19467,128235
,4,19468,128240
,4,19469,128245
,4,19470,128250
,4,19471,128255
,4,19472,128260
,4,19473,128265
,4,19474,128270
,4,19475,128275
,4,19476,128280
,4,19477,128285
,4,19478,128290
,4,19479,128295
,4,19480,128300
,4,19481,128305
,4,19482,128310
,4,19483,128315
,4,19484,128320
,4,19485,128325
,4,19486,128330
,4,19487,128335
,4,19488,128340
,4,19489,128345
,4,19490,128350
,4,19491,128355
,4,19492,128360
,4,19493,128365
,4,19494,128370
,4,19495,128375
,4,19496,128380
,4,19497,128385
,4,19498,128390
,4,19499,128395
,4,19500,128400
,4,19501,128405
,4,19502,128410
,4,19503,128415
,4,19504,128420
,4,19505,128425
,4,19506,128430
,4,19507,128435
,4,19508,128440
,4,19509,128445
,4,19510,128450
,4,19511,128455
,4,19512,128460
,4,19513,128465
,4,19514,128470
,4,19515,128475
,4,19516,128480
,4,19517,128485
,4,19518,128490
,4,19519,128495
,4,19520,128500
,4,19521,128505
,4,19522,128510
,4,19523,128515
,4,19524,128520
,4,19525,128525
,4,19526,128530
,4,19527,128535
,4,19528,128540
,4,19529,128545
,4,19530,128550
,4,19531,128555
,4,19532,128560
,4,19533,128565
,4,19534,128570
,4,19535,128575
,4,19536,128580
,4,19537,128585
,4,19538,128590
,4,19539,128595
,4,19540,128600
,4,19541,128605
,4,19542,128610
,4,19543,128615
,4,19544,128620
,4,19545,128625
,4,19546,128630
,4,19547,128635
,4,19548,128640
,4,19549,128645
,4,19550,128650
,4,19551,128655
,4,19552,128660
,4,19553,128665
,4,19554,128670
,4,19555,128675
,4,19556,128680
,4,19557,128685
,4,19558,128690
,4,19559,128695
,4,19560,128700
,4,19561,128705
,4,19562,128710
,4,19563,128715
,4,19564,128720
,4,19565,128725
,4,19566,128730
,4,19567,128735
,4,19568,128740
,4,19569,128745
,4,19570,128750
,4,19571,128755
,4,19572,128760
,4,19573,128765
,4,19574,128770
,4,19575,128775
,4,19576,128780
,4,19577,128785
,4,19578,128790
,4,19579,128795
,4,19580,128800
,4,19581,128805
,4,19582,128810
,4,19583,128815
,4,19584,128820
,4,19585,128825
,4,19586,128830
,4,19587,128835
,4,19588,128840
,4,19589,128845
,4,19590,128850
,4,19591,128855
,4,19592,128860
,4,19593,128865
,4,19594,128870
,4,19595,128875
,4,19596,128880
,4,19597,128885
,4,19598,128890
,4,19599,128895
,4,19600,128900
,4,19601,128905
,4,19602,128910
,4,19603,128915
,4,19604,128920
,4,19605,128925
,4,19606,128930
,4,19607,128935
,4,19608,128940
,4,19609,128945
,4,19610,128950
,4,19611,128955
,4,19612,128960
,4,19613,128965
,4,19614,128970
,4,19615,128975
,4,19616,128980
,4,19617,128985
,4,19618,128990
,4,19619,128995
,4,19620,129000
,4,19621,129005
,4,19622,129010
,4,19623,129015
,4,19624,129020
,4,19625,129025
,4,19626,129030
,4,19627,129035
,4,19628,129040
,4,19629,129045
,4,19630,129050
,4,19631,129055
,4,19632,129060
,4,19633,129065
,4,19634,129070
,4,19635,129075
,4,19636,129080
,4,19637,129085
,4,19638,129090
,4,19639,129095
,4,19640,129100
,4,19641,129105
,4,19642,129110
,4,19643,129115
,4,19644,129120
,4,19645,129125
,4,19646,129130
,4,19647,129135
,4,19648,129140
,4,19649,129145
,4,19650,129150
,4,19651,129155
,4,19652,129160
,4,19653,129165
,4,19654,129170
,4,19655,129175
,4,19656,129180
,4,19657,129185
,4,19658,129190
,4,19659,129195
,4,19660,129200
,4,19661,129205
,4,19662,129210
,4,19663,129215
,4,19664,129220
,4,19665,129225
,4,19666,129230
,4,19667,129235
,4,19668,129240
,4,19669,129245
,4,19670,129250
,4,19671,129255
,4,19672,129260
,4,19673,129265
,4,19674,129270
,4,19675,129275
,4,19676,129280
,4,19677,129285
,4,19678,129290
,4,19679,129295
,4,19680,129300
,4,19681,129305
,4,19682,129310
,4,19683,129315
,4,19684,129320
,4,19685,129325
,4,19686,129330
,4,19687,129335
,4,19688,129340
,4,19689,129345
,4,19690,129350
,4,19691,129355
,4,19692,129360
,4,19693,129365
,4,19694,129370
,4,19695,129375
,4,19696,129380
,4,19697,129385
,4,19698,129390
,4,19699,129395
,4,19700,129400
,4,19701,129405
,4,19702,129410
,4,19703,129415
,4,19704,129420
,4,19705,129425
,4,19706,129430
,4,19707,129435
,4,19708,129440
,4,19709,129445
,4,19710,129450
,4,19711,129455
,4,19712,129460
,4,19713,129465
,4,19714,129470
,4,19715,129475
,4,19716,129480
,4,19717,129485
,4,19718,129490
,4,19719,129495
,4,19720,129500
,4,19721,129505
,4,19722,129510
,4,19723,129515
,4,19724,129520
,4,19725,129525
,4,19726,129530
,4,19727,129535
,4,19728,129540
,4,19729,129545
,4,19730,129550
,4,19731,129555
,4,19732,129560
,4,19733,129565
,4,19734,129570
,4,19735,129575
,4,19736,129580
,4,19737,129585
,4,19738,129590
,4,19739,129595
,4,19740,129600
,4,19741,129605
,4,19742,129610
,4,19743,129615
,4,19744,129620
,4,19745,129625
,4,19746,129630
,4,19747,129635
,4,19748,129640
,4,19749,129645
,4,19750,129650
,4,19751,129655
,4,19752,129660
,4,19753,129665
,4,19754,129670
,4,19755,129675
,4,19756,129680
,4,19757,129685
,4,19758,129690
,4,19759,129695
,4,19760,129700
,4,19761,129705
,4,19762,129710
,4,19763,129715
,4,19764,129720
,4,19765,129725
,4,19766,129730
,4,19767,129735
,4,19768,129740
,4,19769,129745
,4,19770,129750
,4,19771,129755
,4,19772,129760
,4,19773,129765
,4,19774,129770
,4,19775,129775
,4,19776,129780
,4,19777,129785
,4,19778,129790
,4,19779,129795
,4,19780,129800
,4,19781,129805
,4,19782,129810
,4,19783,129815
,4,19784,129820
,4,19785,129825
,4,19786,129830
,4,19787,129835
,4,19788,129840
,4,19789,129845
,4,19790,129850
,4,19791,129855
,4,19792,129860
,4,19793,129865
,4,19794,129870
,4,19795,129875
,4,19796,129880
,4,19797,129885
,4,19798,129890
,4,19799,129895
,4,19800,129900
,4,19801,129905
,4,19802,129910
,4,19803,129915
,4,19804,129920
,4,19805,129925
,4,19806,129930
,4,19807,129935
,4,19808,129940
,4,19809,129945
,4,19810,129950
,4,19811,129955
,4,19812,129960
,4,19813,129965
,4,19814,129970
,4,19815,129975
,4,19816,129980
,4,19817,129985
,4,19818,129990
,4,19819,129995
,4,19820,130000
,4,19821,130005
,4,19822,130010
,4,19823,130015
,4,19824,130020
,4,19825,130025
,4,19826,130030
,4,19827,130035
,4,19828,130040
,4,19829,130045
,4,19830,130050
,4,19831,130055
,4,19832,130060
,4,19833,130065
,4,19834,130070
,4,19835,130075
,4,19836,130080
,4,19837,130085
,4,19838,130090
,4,19839,130095
,4,19840,130100
,4,19841,130105
,4,19842,130110
,4,19843,130115
,4,19844,130120
,4,19845,130125
,4,19846,130130
,4,19847,130135
,4,19848,130140
,4,19849,130145
,4,19850,130150
,4,19851,130155
,4,19852,130160
,4,19853,130165
,4,19854,130170
,4,19855,130175
,4,19856,130180
,4,19857,130185
,4,19858,130190
,4,19859,130195
,4,19860,130200
,4,19861,130205
,4,19862,130210
,4,19863,130215
,4,19864,130220
,4,19865,130225
,4,19866,130230
,4,19867,130235
,4,19868,130240
,4,19869,130245
,4,19870,130250
,4,19871,130255
,4,19872,130260
,4,19873,130265
,4,19874,130270
,4,19875,130275
,4,19876,130280
,4,19877,130285
,4,19878,130290
,4,19879,130295
,4,19880,130300
,4,19881,130305
,4,19882,130310
,4,19883,130315
,4,19884,130320
,4,19885,130325
,4,19886,130330
,4,19887,130335
,4,19888,130340
,4,19889,130345
,4,19890,130350
,4,19891,130355
,4,19892,130360
,4,19893,130365
,4,19894,130370
,4,19895,130375
,4,19896,130380
,4,19897,130385
,4,19898,130390
,4,19899,130395
,4,19900,130400
,4,19901,130405
,4,19902,130410
,4,19903,130415
,4,19904,130420
,4,19905,130425
,4,19906,130430
,4,19907,130435
,4,19908,130440
,4,19909,130445
,4,19910,130450
,4,19911,130455
,4,19912,130460
,4,19913,130465
,4,19914,130470
,4,19915,130475
,4,19916,130480
,4,19917,130485
,4,19918,130490
,4,19919,130495
,4,19920,130500
,4,19921,130505
,4,19922,130510
,4,19923,130515
,4,19924,130520
,4,19925,130525
,4,19926,130530
,4,19927,130535
,4,19928,130540
,4,19929,130545
,4,19930,130550
,4,19931,130555
,4,19932,130560
,4,19933,130565
,4,19934,130570
,4,19935,130575
,4,19936,130580
,4,19937,130585
,4,19938,130590
,4,19939,130595
,4,19940,130600
,4,19941,130605
,4,19942,130610
,4,19943,130615
,4,19944,130620
,4,19945,130625
,4,19946,130630
,4,19947,130635
,4,19948,130640
,4,19949,130645
,4,19950,130650
,4,19951,130655
,4,19952,130660
,4,19953,130665
,4,19954,130670
,4,19955,130675
,4,19956,130680
,4,19957,130685
,4,19958,130690
,4,19959,130695
,4,19960,130700
,4,19961,130705
,4,19962,130710
,4,19963,130715
,4,19964,130720
,4,19965,130725
,4,19966,130730
,4,19967,130735
,4,19968,130740
,4,19969,130745
,4,19970,130750
,4,19971,130755
,4,19972,130760
,4,19973,130765
,4,19974,130770
,4,19975,130775
,4,19976,130780
,4,19977,130785
,4,19978,130790
,4,19979,130795
,4,19980,130800
,4,19981,130805
,4,19982,130810
,4,19983,130815
,4,19984,130820
,4,19985,130825
,4,19986,130830
,4,19987,130835
,4,19988,130840
,4,19989,130845
,4,19990,130850
,4,19991,130855
,4,19992,130860
,4,19993,130865
,4,19994,130870
,4,19995,130875
,4,19996,130880
,4,19997,130885
,4,19998,130890
,4,19999,130895
,4,20000,130900
,4,20001,130905
,4,20002,130910
,4,20003,130915
,4,20004,130920
,4,20005,130925
,4,20006,130930
,4,20007,130935
,4,20008,130940
,4,20009,130945
,4,20010,130950
,4,20011,130955
,4,20012,130960
,4,20013,130965
,4,20014,130970
,4,20015,130975
,4,20016,130980
,4,20017,130985
,4,20018,130990
,4,20019,130995
,4,20020,131000
,4,20021,131005
,4,20022,131010
,4,20023,131015
,4,20024,131020
,4,20025,131025
,4,20026,131030
,4,20027,131035
,4,20028,131040
,4,20029,131045
,4,20030,131050
,4,20031,131055
,4,20032,131060
,4,20033,131065
,4,20034,131070
,4,20035,131075
,4,20036,131080
,4,20037,131085
,4,20038,131090
,4,20039,131095
,4,20040,131100
,4,20041,131105
,4,20042,131110
,4,20043,131115
,4,20044,131120
,4,20045,131125
,4,20046,131130
,4,20047,131135
,4,20048,131140
,4,20049,131145
,4,20050,131150
,4,20051,131155
,4,20052,131160
,4,20053,131165
,4,20054,131170
,4,20055,131175
,4,20056,131180
,4,20057,131185
,4,20058,131190
,4,20059,131195
,4,20060,131200
,4,20061,131205
,4,20062,131210
,4,20063,131215
,4,20064,131220
,4,20065,131225
,4,20066,131230
,4,20067,131235
,4,20068,131240
,4,20069,131245
,4,20070,131250
,4,20071,131255
,4,20072,131260
,4,20073,131265
,4,20074,131270
,4,20075,131275
,4,20076,131280
,4,20077,131285
,4,20078,131290
,4,20079,131295
,4,20080,131300
,4,20081,131305
,4,20082,131310
,4,20083,131315
,4,20084,131320
,4,20085,131325
,4,20086,131330
,4,20087,131335
,4,20088,131340
,4,20089,131345
,4,20090,131350
,4,20091,131355
,4,20092,131360
,4,20093,131365
,4,20094,131370
,4,20095,131375
,4,20096,131380
,4,20097,131385
,4,20098,131390
,4,20099,131395
,4,20100,131400
,4,20101,131405
,4,20102,131410
,4,20103,131415
,4,20104,131420
,4,20105,131425
,4,20106,131430
,4,20107,131435
,4,20108,131440
,4,20109,131445
,4,20110,131450
,4,20111,131455
,4,20112,131460
,4,20113,131465
,4,20114,131470
,4,20115,131475
,4,20116,131480
,4,20117,131485
,4,20118,131490
,4,20119,131495
,4,20120,131500
,4,20121,131505
,4,20122,131510
,4,20123,131515
,4,20124,131520
,4,20125,131525
,4,20126,131530
,4,20127,131535
,4,20128,131540
,4,20129,131545
,4,20130,131550
,4,20131,131555
,4,20132,131560
,4,20133,131565
,4,20134,131570
,4,20135,131575
,4,20136,131580
,4,20137,131585
,4,20138,131590
,4,20139,131595
,4,20140,131600
,4,20141,131605
,4,20142,131610
,4,20143,131615
,4,20144,131620
,4,20145,131625
,4,20146,131630
,4,20147,131635
,4,20148,131640
,4,20149,131645
,4,20150,131650
,4,20151,131655
,4,20152,131660
,4,20153,131665
,4,20154,131670
,4,20155,131675
,4,20156,131680
,4,20157,131685
,4,20158,131690
,4,20159,131695
,4,20160,131700
,4,20161,131705
,4,20162,131710
,4,20163,131715
,4,20164,131720
,4,20165,131725
,4,20166,131730
,4,20167,131735
,4,20168,131740
,4,20169,131745
,4,20170,131750
,4,20171,131755
,4,20172,131760
,4,20173,131765
,4,20174,131770
,4,20175,131775
,4,20176,131780
,4,20177,131785
,4,20178,131790
,4,20179,131795
,4,20180,131800
,4,20181,131805
,4,20182,131810
,4,20183,131815
,4,20184,131820
,4,20185,131825
,4,20186,131830
,4,20187,131835
,4,20188,131840
,4,20189,131845
,4,20190,131850
,4,20191,131855
,4,20192,131860
,4,20193,131865
,4,20194,131870
,4,20195,131875
,4,20196,131880
,4,20197,131885
,4,20198,131890
,4,20199,131895
,4,20200,131900
,4,20201,131905
,4,20202,131910
,4,20203,131915
,4,20204,131920
,4,20205,131925
,4,20206,131930
,4,20207,131935
,4,20208,131940
,4,20209,131945
,4,20210,131950
,4,20211,131955
,4,20212,131960
,4,20213,131965
,4,20214,131970
,4,20215,131975
,4,20216,131980
,4,20217,131985
,4,20218,131990
,4,20219,131995
,4,20220,132000
,4,20221,132005
,4,20222,132010
,4,20223,132015
,4,20224,132020
,4,20225,132025
,4,20226,132030
,4,20227,132035
,4,20228,132040
,4,20229,132045
,4,20230,132050
,4,20231,132055
,4,20232,132060
,4,20233,132065
,4,20234,132070
,4,20235,132075
,4,20236,132080
,4,20237,132085
,4,20238,132090
,4,20239,132095
,4,20240,132100
,4,20241,132105
,4,20242,132110
,4,20243,132115
,4,20244,132120
,4,20245,132125
,4,20246,132130
,4,20247,132135
,4,20248,132140
,4,20249,132145
,4,20250,132150
,4,20251,132155
,4,20252,132160
,4,20253,132165
,4,20254,132170
,4,20255,132175
,4,20256,132180
,4,20257,132185
,4,20258,132190
,4,20259,132195
,4,20260,132200
,4,20261,132205
,4,20262,132210
,4,20263,132215
,4,20264,132220
,4,20265,132225
,4,20266,132230
,4,20267,132235
,4,20268,132240
,4,20269,132245
,4,20270,132250
,4,20271,132255
,4,20272,132260
,4,20273,132265
,4,20274,132270
,4,20275,132275
,4,20276,132280
,4,20277,132285
,4,20278,132290
,4,20279,132295
,4,20280,132300
,4,20281,132305
,4,20282,132310
,4,20283,132315
,4,20284,132320
,4,20285,132325
,4,20286,132330
,4,20287,132335
,4,20288,132340
,4,20289,132345
,4,20290,132350
,4,20291,132355
,4,20292,132360
,4,20293,132365
,4,20294,132370
,4,20295,132375
,4,20296,132380
,4,20297,132385
,4,20298,132390
,4,20299,132395
,4,20300,132400
,4,20301,132405
,4,20302,132410
,4,20303,132415
,4,20304,132420
,4,20305,132425
,4,20306,132430
,4,20307,132435
,4,20308,132440
,4,20309,132445
,4,20310,132450
,4,20311,132455
,4,20312,132460
,4,20313,132465
,4,20314,132470
,4,20315,132475
,4,20316,132480
,4,20317,132485
,4,20318,132490
,4,20319,132495
,4,20320,132500
,4,20321,132505
,4,20322,132510
,4,20323,132515
,4,20324,132520
,4,20325,132525
,4,20326,132530
,4,20327,132535
,4,20328,132540
,4,20329,132545
,4,20330,132550
,4,20331,132555
,4,20332,132560
,4,20333,132565
,4,20334,132570
,4,20335,132575
,4,20336,132580
,4,20337,132585
,4,20338,132590
,4,20339,132595
,4,20340,132600
,4,20341,132605
,4,20342,132610
,4,20343,132615
,4,20344,132620
,4,20345,132625
,4,20346,132630
,4,20347,132635
,4,20348,132640
,4,20349,132645
,4,20350,132650
,4,20351,132655
,4,20352,132660
,4,20353,132665
,4,20354,132670
,4,20355,132675
,4,20356,132680
,4,20357,132685
,4,20358,132690
,4,20359,132695
,4,20360,132700
,4,20361,132705
,4,20362,132710
,4,20363,132715
,4,20364,132720
,4,20365,132725
,4,20366,132730
,4,20367,132735
,4,20368,132740
,4,20369,132745
,4,20370,132750
,4,20371,132755
,4,20372,132760
,4,20373,132765
,4,20374,132770
,4,20375,132775
,4,20376,132780
,4,20377,132785
,4,20378,132790
,4,20379,132795
,4,20380,132800
,4,20381,132805
,4,20382,132810
,4,20383,132815
,4,20384,132820
,4,20385,132825
,4,20386,132830
,4,20387,132835
,4,20388,132840
,4,20389,132845
,4,20390,132850
,4,20391,132855
,4,20392,132860
,4,20393,132865
,4,20394,132870
,4,20395,132875
,4,20396,132880
,4,20397,132885
,4,20398,132890
,4,20399,132895
,4,20400,132900
,4,20401,132905
,4,20402,132910
,4,20403,132915
,4,20404,132920
,4,20405,132925
,4,20406,132930
,4,20407,132935
,4,20408,132940
,4,20409,132945
,4,20410,132950
,4,20411,132955
,4,20412,132960
,4,20413,132965
,4,20414,132970
,4,20415,132975
,4,20416,132980
,4,20417,132985
,4,20418,132990
,4,20419,132995
,4,20420,133000
,4,20421,133005
,4,20422,133010
,4,20423,133015
,4,20424,133020
,4,20425,133025
,4,20426,133030
,4,20427,133035
,4,20428,133040
,4,20429,133045
,4,20430,133050
,4,20431,133055
,4,20432,133060
,4,20433,133065
,4,20434,133070
,4,20435,133075
,4,20436,133080
,4,20437,133085
,4,20438,133090
,4,20439,133095
,4,20440,133100
,4,20441,133105
,4,20442,133110
,4,20443,133115
,4,20444,133120
,4,20445,133125
,4,20446,133130
,4,20447,133135
,4,20448,133140
,4,20449,133145
,4,20450,133150
,4,20451,133155
,4,20452,133160
,4,20453,133165
,4,20454,133170
,4,20455,133175
,4,20456,133180
,4,20457,133185
,4,20458,133190
,4,20459,133195
,4,20460,133200
,4,20461,133205
,4,20462,133210
,4,20463,133215
,4,20464,133220
,4,20465,133225
,4,20466,133230
,4,20467,133235
,4,20468,133240
,4,20469,133245
,4,20470,133250
,4,20471,133255
,4,20472,133260
,4,20473,133265
,4,20474,133270
,4,20475,133275
,4,20476,133280
,4,20477,133285
,4,20478,133290
,4,20479,133295
,4,20480,133300
,4,20481,133305
,4,20482,133310
,4,20483,133315
,4,20484,133320
,4,20485,133325
,4,20486,133330
,4,20487,133335
,4,20488,133340
,4,20489,133345
,4,20490,133350
,4,20491,133355
,4,20492,133360
,4,20493,133365
,4,20494,133370
,4,20495,133375
,4,20496,133380
,4,20497,133385
,4,20498,133390
,4,20499,133395
,4,20500,133400
,4,20501,133405
,4,20502,133410
,4,20503,133415
,4,20504,133420
,4,20505,133425
,4,20506,133430
,4,20507,133435
,4,20508,133440
,4,20509,133445
,4,20510,133450
,4,20511,133455
,4,20512,133460
,4,20513,133465
,4,20514,133470
,4,20515,133475
,4,20516,133480
,4,20517,133485
,4,20518,133490
,4,20519,133495
,4,20520,133500
,4,20521,133505
,4,20522,133510
,4,20523,133515
,4,20524,133520
,4,20525,133525
,4,20526,133530
,4,20527,133535
,4,20528,133540
,4,20529,133545
,4,20530,133550
,4,20531,133555
,4,20532,133560
,4,20533,133565
,4,20534,133570
,4,20535,133575
,4,20536,133580
,4,20537,133585
,4,20538,133590
,4,20539,133595
,4,20540,133600
,4,20541,133605
,4,20542,133610
,4,20543,133615
,4,20544,133620
,4,20545,133625
,4,20546,133630
,4,20547,133635
,4,20548,133640
,4,20549,133645
,4,20550,133650
,4,20551,133655
,4,20552,133660
,4,20553,133665
,4,20554,133670
,4,20555,133675
,4,20556,133680
,4,20557,133685
,4,20558,133690
,4,20559,133695
,4,20560,133700
,4,20561,133705
,4,20562,133710
,4,20563,133715
,4,20564,133720
,4,20565,133725
,4,20566,133730
,4,20567,133735
,4,20568,133740
,4,20569,133745
,4,20570,133750
,4,20571,133755
,4,20572,133760
,4,20573,133765
,4,20574,133770
,4,20575,133775
,4,20576,133780
,4,20577,133785
,4,20578,133790
,4,20579,133795
,4,20580,133800
,4,20581,133805
,4,20582,133810
,4,20583,133815
,4,20584,133820
,4,20585,133825
,4,20586,133830
,4,20587,133835
,4,20588,133840
,4,20589,133845
,4,20590,133850
,4,20591,133855
,4,20592,133860
,4,20593,133865
,4,20594,133870
,4,20595,133875
,4,20596,133880
,4,20597,133885
,4,20598,133890
,4,20599,133895
,4,20600,133900
,4,20601,133905
,4,20602,133910
,4,20603,133915
,4,20604,133920
,4,20605,133925
,4,20606,133930
,4,20607,133935
,4,20608,133940
,4,20609,133945
,4,20610,133950
,4,20611,133955
,4,20612,133960
,4,20613,133965
,4,20614,133970
,4,20615,133975
,4,20616,133980
,4,20617,133985
,4,20618,133990
,4,20619,133995
,4,20620,134000
,4,20621,134005
,4,20622,134010
,4,20623,134015
,4,20624,134020
,4,20625,134025
,4,20626,134030
,4,20627,134035
,4,20628,134040
,4,20629,134045
,4,20630,134050
,4,20631,134055
,4,20632,134060
,4,20633,134065
,4,20634,134070
,4,20635,134075
,4,20636,134080
,4,20637,134085
,4,20638,134090
,4,20639,134095
,4,20640,134100
,4,20641,134105
,4,20642,134110
,4,20643,134115
,4,20644,134120
,4,20645,134125
,4,20646,134130
,4,20647,134135
,4,20648,134140
,4,20649,134145
,4,20650,134150
,4,20651,134155
,4,20652,134160
,4,20653,134165
,4,20654,134170
,4,20655,134175
,4,20656,134180
,4,20657,134185
,4,20658,134190
,4,20659,134195
,4,20660,134200
,4,20661,134205
,4,20662,134210
,4,20663,134215
,4,20664,134220
,4,20665,134225
,4,20666,134230
,4,20667,134235
,4,20668,134240
,4,20669,134245
,4,20670,134250
,4,20671,134255
,4,20672,134260
,4,20673,134265
,4,20674,134270
,4,20675,134275
,4,20676,134280
,4,20677,134285
,4,20678,134290
,4,20679,134295
,4,20680,134300
,4,20681,134305
,4,20682,134310
,4,20683,134315
,4,20684,134320
,4,20685,134325
,4,20686,134330
,4,20687,134335
,4,20688,134340
,4,20689,134345
,4,20690,134350
,4,20691,134355
,4,20692,134360
,4,20693,134365
,4,20694,134370
,4,20695,134375
,4,20696,134380
,4,20697,134385
,4,20698,134390
,4,20699,134395
,4,20700,134400
,4,20701,134405
,4,20702,134410
,4,20703,134415
,4,20704,134420
,4,20705,134425
,4,20706,134430
,4,20707,134435
,4,20708,134440
,4,20709,134445
,4,20710,134450
,4,20711,134455
,4,20712,134460
,4,20713,134465
,4,20714,134470
,4,20715,134475
,4,20716,134480
,4,20717,134485
,4,20718,134490
,4,20719,134495
,4,20720,134500
,4,20721,134505
,4,20722,134510
,4,20723,134515
,4,20724,134520
,4,20725,134525
,4,20726,134530
,4,20727,134535
,4,20728,134540
,4,20729,134545
,4,20730,134550
,4,20731,134555
,4,20732,134560
,4,20733,134565
,4,20734,134570
,4,20735,134575
,4,20736,134580
,4,20737,134585
,4,20738,134590
,4,20739,134595
,4,20740,134600
,4,20741,134605
,4,20742,134610
,4,20743,134615
,4,20744,134620
,4,20745,134625
,4,20746,134630
,4,20747,134635
,4,20748,134640
,4,20749,134645
,4,20750,134650
,4,20751,134655
,4,20752,134660
,4,20753,134665
,4,20754,134670
,4,20755,134675
,4,20756,134680
,4,20757,134685
,4,20758,134690
,4,20759,134695
,4,20760,134700
,4,20761,134705
,4,20762,134710
,4,20763,134715
,4,20764,134720
,4,20765,134725
,4,20766,134730
,4,20767,134735
,4,20768,134740
,4,20769,134745
,4,20770,134750
,4,20771,134755
,4,20772,134760
,4,20773,134765
,4,20774,134770
,4,20775,134775
,4,20776,134780
,4,20777,134785
,4,20778,134790
,4,20779,134795
,4,20780,134800
,4,20781,134805
,4,20782,134810
,4,20783,134815
,4,20784,134820
,4,20785,134825
,4,20786,134830
,4,20787,134835
,4,20788,134840
,4,20789,134845
,4,20790,134850
,4,20791,134855
,4,20792,134860
,4,20793,134865
,4,20794,134870
,4,20795,134875
,4,20796,134880
,4,20797,134885
,4,20798,134890
,4,20799,134895
,4,20800,134900
,4,20801,134905
,4,20802,134910
,4,20803,134915
,4,20804,134920
,4,20805,134925
,4,20806,134930
,4,20807,134935
,4,20808,134940
,4,20809,134945
,4,20810,134950
,4,20811,134955
,4,20812,134960
,4,20813,134965
,4,20814,134970
,4,20815,134975
,4,20816,134980
,4,20817,134985
,4,20818,134990
,4,20819,134995
,4,20820,135000
,4,20821,135005
,4,20822,135010
,4,20823,135015
,4,20824,135020
,4,20825,135025
,4,20826,135030
,4,20827,135035
,4,20828,135040
,4,20829,135045
,4,20830,135050
,4,20831,135055
,4,20832,135060
,4,20833,135065
,4,20834,135070
,4,20835,135075
,4,20836,135080
,4,20837,135085
,4,20838,135090
,4,20839,135095
,4,20840,135100
,4,20841,135105
,4,20842,135110
,4,20843,135115
,4,20844,135120
,4,20845,135125
,4,20846,135130
,4,20847,135135
,4,20848,135140
,4,20849,135145
,4,20850,135150
,4,20851,135155
,4,20852,135160
,4,20853,135165
,4,20854,135170
,4,20855,135175
,4,20856,135180
,4,20857,135185
,4,20858,135190
,4,20859,135195
,4,20860,135200
,4,20861,135205
,4,20862,135210
,4,20863,135215
,4,20864,135220
,4,20865,135225
,4,20866,135230
,4,20867,135235
,4,20868,135240
,4,20869,135245
,4,20870,135250
,4,20871,135255
,4,20872,135260
,4,20873,135265
,4,20874,135270
,4,20875,135275
,4,20876,135280
,4,20877,135285
,4,20878,135290
,4,20879,135295
,4,20880,135300
,4,20881,135305
,4,20882,135310
,4,20883,135315
,4,20884,135320
,4,20885,135325
,4,20886,135330
,4,20887,135335
,4,20888,135340
,4,20889,135345
,4,20890,135350
,4,20891,135355
,4,20892,135360
,4,20893,135365
,4,20894,135370
,4,20895,135375
,4,20896,135380
,4,20897,135385
,4,20898,135390
,4,20899,135395
,4,20900,135400
,4,20901,135405
,4,20902,135410
,4,20903,135415
,4,20904,135420
,4,20905,135425
,4,20906,135430
,4,20907,135435
,4,20908,135440
,4,20909,135445
,4,20910,135450
,4,20911,135455
,4,20912,135460
,4,20913,135465
,4,20914,135470
,4,20915,135475
,4,20916,135480
,4,20917,135485
,4,20918,135490
,4,20919,135495
,4,20920,135500
,4,20921,135505
,4,20922,135510
,4,20923,135515
,4,20924,135520
,4,20925,135525
,4,20926,135530
,4,20927,135535
,4,20928,135540
,4,20929,135545
,4,20930,135550
,4,20931,135555
,4,20932,135560
,4,20933,135565
,4,20934,135570
,4,20935,135575
,4,20936,135580
,4,20937,135585
,4,20938,135590
,4,20939,135595
,4,20940,135600
,4,20941,135605
,4,20942,135610
,4,20943,135615
,4,20944,135620
,4,20945,135625
,4,20946,135630
,4,20947,135635
,4,20948,135640
,4,20949,135645
,4,20950,135650
,4,20951,135655
,4,20952,135660
,4,20953,135665
,4,20954,135670
,4,20955,135675
,4,20956,135680
,4,20957,135685
,4,20958,135690
,4,20959,135695
,4,20960,135700
,4,20961,135705
,4,20962,135710
,4,20963,135715
,4,20964,135720
,4,20965,135725
,4,20966,135730
,4,20967,135735
,4,20968,135740
,4,20969,135745
,4,20970,135750
,4,20971,135755
,4,20972,135760
,4,20973,135765
,4,20974,135770
,4,20975,135775
,4,20976,135780
,4,20977,135785
,4,20978,135790
,4,20979,135795
,4,20980,135800
,4,20981,135805
,4,20982,135810
,4,20983,135815
,4,20984,135820
,4,20985,135825
,4,20986,135830
,4,20987,135835
,4,20988,135840
,4,20989,135845
,4,20990,135850
,4,20991,135855
,4,20992,135860
,4,20993,135865
,4,20994,135870
,4,20995,135875
,4,20996,135880
,4,20997,135885
,4,20998,135890
,4,20999,135895
,4,21000,135900
,4,21001,135905
,4,21002,135910
,4,21003,135915
,4,21004,135920
,4,21005,135925
,4,21006,135930
,4,21007,135935
,4,21008,135940
,4,21009,135945
,4,21010,135950
,4,21011,135955
,4,21012,135960
,4,21013,135965
,4,21014,135970
,4,21015,135975
,4,21016,135980
,4,21017,135985
,4,21018,135990
,4,21019,135995
,4,21020,136000
,4,21021,136005
,4,21022,136010
,4,21023,136015
,4,21024,136020
,4,21025,136025
,4,21026,136030
,4,21027,136035
,4,21028,136040
,4,21029,136045
,4,21030,136050
,4,21031,136055
,4,21032,136060
,4,21033,136065
,4,21034,136070
,4,21035,136075
,4,21036,136080
,4,21037,136085
,4,21038,136090
,4,21039,136095
,4,21040,136100
,4,21041,136105
,4,21042,136110
,4,21043,136115
,4,21044,136120
,4,21045,136125
,4,21046,136130
,4,21047,136135
,4,21048,136140
,4,21049,136145
,4,21050,136150
,4,21051,136155
,4,21052,136160
,4,21053,136165
,4,21054,136170
,4,21055,136175
,4,21056,136180
,4,21057,136185
,4,21058,136190
,4,21059,136195
,4,21060,136200
,4,21061,136205
,4,21062,136210
,4,21063,136215
,4,21064,136220
,4,21065,136225
,4,21066,136230
,4,21067,136235
,4,21068,136240
,4,21069,136245
,4,21070,136250
,4,21071,136255
,4,21072,136260
,4,21073,136265
,4,21074,136270
,4,21075,136275
,4,21076,136280
,4,21077,136285
,4,21078,136290
,4,21079,136295
,4,21080,136300
,4,21081,136305
,4,21082,136310
,4,21083,136315
,4,21084,136320
,4,21085,136325
,4,21086,136330
,4,21087,136335
,4,21088,136340
,4,21089,136345
,4,21090,136350
,4,21091,136355
,4,21092,136360
,4,21093,136365
,4,21094,136370
,4,21095,136375
,4,21096,136380
,4,21097,136385
,4,21098,136390
,4,21099,136395
,4,21100,136400
,4,21101,136405
,4,21102,136410
,4,21103,136415
,4,21104,136420
,4,21105,136425
,4,21106,136430
,4,21107,136435
,4,21108,136440
,4,21109,136445
,4,21110,136450
,4,21111,136455
,4,21112,136460
,4,21113,136465
,4,21114,136470
,4,21115,136475
,4,21116,136480
,4,21117,136485
,4,21118,136490
,4,21119,136495
,4,21120,136500
,4,21121,136505
,4,21122,136510
,4,21123,136515
,4,21124,136520
,4,21125,136525
,4,21126,136530
,4,21127,136535
,4,21128,136540
,4,21129,136545
,4,21130,136550
,4,21131,136555
,4,21132,136560
,4,21133,136565
,4,21134,136570
,4,21135,136575
,4,21136,136580
,4,21137,136585
,4,21138,136590
,4,21139,136595
,4,21140,136600
,4,21141,136605
,4,21142,136610
,4,21143,136615
,4,21144,136620
,4,21145,136625
,4,21146,136630
,4,21147,136635
,4,21148,136640
,4,21149,136645
,4,21150,136650
,4,21151,136655
,4,21152,136660
,4,21153,136665
,4,21154,136670
,4,21155,136675
,4,21156,136680
,4,21157,136685
,4,21158,136690
,4,21159,136695
,4,21160,136700
,4,21161,136705
,4,21162,136710
,4,21163,136715
,4,21164,136720
,4,21165,136725
,4,21166,136730
,4,21167,136735
,4,21168,136740
,4,21169,136745
,4,21170,136750
,4,21171,136755
,4,21172,136760
,4,21173,136765
,4,21174,136770
,4,21175,136775
,4,21176,136780
,4,21177,136785
,4,21178,136790
,4,21179,136795
,4,21180,136800
,4,21181,136805
,4,21182,136810
,4,21183,136815
,4,21184,136820
,4,21185,136825
,4,21186,136830
,4,21187,136835
,4,21188,136840
,4,21189,136845
,4,21190,136850
,4,21191,136855
,4,21192,136860
,4,21193,136865
,4,21194,136870
,4,21195,136875
,4,21196,136880
,4,21197,136885
,4,21198,136890
,4,21199,136895
,4,21200,136900
,4,21201,136905
,4,21202,136910
,4,21203,136915
,4,21204,136920
,4,21205,136925
,4,21206,136930
,4,21207,136935
,4,21208,136940
,4,21209,136945
,4,21210,136950
,4,21211,136955
,4,21212,136960
,4,21213,136965
,4,21214,136970
,4,21215,136975
,4,21216,136980
,4,21217,136985
,4,21218,136990
,4,21219,136995
,4,21220,137000
,4,21221,137005
,4,21222,137010
,4,21223,137015
,4,21224,137020
,4,21225,137025
,4,21226,137030
,4,21227,137035
,4,21228,137040
,4,21229,137045
,4,21230,137050
,4,21231,137055
,4,21232,137060
,4,21233,137065
,4,21234,137070
,4,21235,137075
,4,21236,137080
,4,21237,137085
,4,21238,137090
,4,21239,137095
,4,21240,137100
,4,21241,137105
,4,21242,137110
,4,21243,137115
,4,21244,137120
,4,21245,137125
,4,21246,137130
,4,21247,137135
,4,21248,137140
,4,21249,137145
,4,21250,137150
,4,21251,137155
,4,21252,137160
,4,21253,137165
,4,21254,137170
,4,21255,137175
,4,21256,137180
,4,21257,137185
,4,21258,137190
,4,21259,137195
,4,21260,137200
,4,21261,137205
,4,21262,137210
,4,21263,137215
,4,21264,137220
,4,21265,137225
,4,21266,137230
,4,21267,137235
,4,21268,137240
,4,21269,137245
,4,21270,137250
,4,21271,137255
,4,21272,137260
,4,21273,137265
,4,21274,137270
,4,21275,137275
,4,21276,137280
,4,21277,137285
,4,21278,137290
,4,21279,137295
,4,21280,137300
,4,21281,137305
,4,21282,137310
,4,21283,137315
,4,21284,137320
,4,21285,137325
,4,21286,137330
,4,21287,137335
,4,21288,137340
,4,21289,137345
,4,21290,137350
,4,21291,137355
,4,21292,137360
,4,21293,137365
,4,21294,137370
,4,21295,137375
,4,21296,137380
,4,21297,137385
,4,21298,137390
,4,21299,137395
,4,21300,137400
,4,21301,137405
,4,21302,137410
,4,21303,137415
,4,21304,137420
,4,21305,137425
,4,21306,137430
,4,21307,137435
,4,21308,137440
,4,21309,137445
,4,21310,137450
,4,21311,137455
,4,21312,137460
,4,21313,137465
,4,21314,137470
,4,21315,137475
,4,21316,137480
,4,21317,137485
,4,21318,137490
,4,21319,137495
,4,21320,137500
,4,21321,137505
,4,21322,137510
,4,21323,137515
,4,21324,137520
,4,21325,137525
,4,21326,137530
,4,21327,137535
,4,21328,137540
,4,21329,137545
,4,21330,137550
,4,21331,137555
,4,21332,137560
,4,21333,137565
,4,21334,137570
,4,21335,137575
,4,21336,137580
,4,21337,137585
,4,21338,137590
,4,21339,137595
,4,21340,137600
,4,21341,137605
,4,21342,137610
,4,21343,137615
,4,21344,137620
,4,21345,137625
,4,21346,137630
,4,21347,137635
,4,21348,137640
,4,21349,137645
,4,21350,137650
,4,21351,137655
,4,21352,137660
,4,21353,137665
,4,21354,137670
,4,21355,137675
,4,21356,137680
,4,21357,137685
,4,21358,137690
,4,21359,137695
,4,21360,137700
,4,21361,137705
,4,21362,137710
,4,21363,137715
,4,21364,137720
,4,21365,137725
,4,21366,137730
,4,21367,137735
,4,21368,137740
,4,21369,137745
,4,21370,137750
,4,21371,137755
,4,21372,137760
,4,21373,137765
,4,21374,137770
,4,21375,137775
,4,21376,137780
,4,21377,137785
,4,21378,137790
,4,21379,137795
,4,21380,137800
,4,21381,137805
,4,21382,137810
,4,21383,137815
,4,21384,137820
,4,21385,137825
,4,21386,137830
,4,21387,137835
,4,21388,137840
,4,21389,137845
,4,21390,137850
,4,21391,137855
,4,21392,137860
,4,21393,137865
,4,21394,137870
,4,21395,137875
,4,21396,137880
,4,21397,137885
,4,21398,137890
,4,21399,137895
,4,21400,137900
,4,21401,137905
,4,21402,137910
,4,21403,137915
,4,21404,137920
,4,21405,137925
,4,21406,137930
,4,21407,137935
,4,21408,137940
,4,21409,137945
,4,21410,137950
,4,21411,137955
,4,21412,137960
,4,21413,137965
,4,21414,137970
,4,21415,137975
,4,21416,137980
,4,21417,137985
,4,21418,137990
,4,21419,137995
,4,21420,138000
,4,21421,138005
,4,21422,138010
,4,21423,138015
,4,21424,138020
,4,21425,138025
,4,21426,138030
,4,21427,138035
,4,21428,138040
,4,21429,138045
,4,21430,138050
,4,21431,138055
,4,21432,138060
,4,21433,138065
,4,21434,138070
,4,21435,138075
,4,21436,138080
,4,21437,138085
,4,21438,138090
,4,21439,138095
,4,21440,138100
,4,21441,138105
,4,21442,138110
,4,21443,138115
,4,21444,138120
,4,21445,138125
,4,21446,138130
,4,21447,138135
,4,21448,138140
,4,21449,138145
,4,21450,138150
,4,21451,138155
,4,21452,138160
,4,21453,138165
,4,21454,138170
,4,21455,138175
,4,21456,138180
,4,21457,138185
,4,21458,138190
,4,21459,138195
,4,21460,138200
,4,21461,138205
,4,21462,138210
,4,21463,138215
,4,21464,138220
,4,21465,138225
,4,21466,138230
,4,21467,138235
,4,21468,138240
,4,21469,138245
,4,21470,138250
,4,21471,138255
,4,21472,138260
,4,21473,138265
,4,21474,138270
,4,21475,138275
,4,21476,138280
,4,21477,138285
,4,21478,138290
,4,21479,138295
,4,21480,138300
,4,21481,138305
,4,21482,138310
,4,21483,138315
,4,21484,138320
,4,21485,138325
,4,21486,138330
,4,21487,138335
,4,21488,138340
,4,21489,138345
,4,21490,138350
,4,21491,138355
,4,21492,138360
,4,21493,138365
,4,21494,138370
,4,21495,138375
,4,21496,138380
,4,21497,138385
,4,21498,138390
,4,21499,138395
,4,21500,138400
,4,21501,138405
,4,21502,138410
,4,21503,138415
,4,21504,138420
,4,21505,138425
,4,21506,138430
,4,21507,138435
,4,21508,138440
,4,21509,138445
,4,21510,138450
,4,21511,138455
,4,21512,138460
,4,21513,138465
,4,21514,138470
,4,21515,138475
,4,21516,138480
,4,21517,138485
,4,21518,138490
,4,21519,138495
,4,21520,138500
,4,21521,138505
,4,21522,138510
,4,21523,138515
,4,21524,138520
,4,21525,138525
,4,21526,138530
,4,21527,138535
,4,21528,138540
,4,21529,138545
,4,21530,138550
,4,21531,138555
,4,21532,138560
,4,21533,138565
,4,21534,138570
,4,21535,138575
,4,21536,138580
,4,21537,138585
,4,21538,138590
,4,21539,138595
,4,21540,138600
,4,21541,138605
,4,21542,138610
,4,21543,138615
,4,21544,138620
,4,21545,138625
,4,21546,138630
,4,21547,138635
,4,21548,138640
,4,21549,138645
,4,21550,138650
,4,21551,138655
,4,21552,138660
,4,21553,138665
,4,21554,138670
,4,21555,138675
,4,21556,138680
,4,21557,138685
,4,21558,138690
,4,21559,138695
,4,21560,138700
,4,21561,138705
,4,21562,138710
,4,21563,138715
,4,21564,138720
,4,21565,138725
,4,21566,138730
,4,21567,138735
,4,21568,138740
,4,21569,138745
,4,21570,138750
,4,21571,138755
,4,21572,138760
,4,21573,138765
,4,21574,138770
,4,21575,138775
,4,21576,138780
,4,21577,138785
,4,21578,138790
,4,21579,138795
,4,21580,138800
,4,21581,138805
,4,21582,138810
,4,21583,138815
,4,21584,138820
,4,21585,138825
,4,21586,138830
,4,21587,138835
,4,21588,138840
,4,21589,138845
,4,21590,138850
,4,21591,138855
,4,21592,138860
,4,21593,138865
,4,21594,138870
,4,21595,138875
,4,21596,138880
,4,21597,138885
,4,21598,138890
,4,21599,138895
,4,21600,138900
,4,21601,138905
,4,21602,138910
,4,21603,138915
,4,21604,138920
,4,21605,138925
,4,21606,138930
,4,21607,138935
,4,21608,138940
,4,21609,138945
,4,21610,138950
,4,21611,138955
,4,21612,138960
,4,21613,138965
,4,21614,138970
,4,21615,138975
,4,21616,138980
,4,21617,138985
,4,21618,138990
,4,21619,138995
,4,21620,139000
,4,21621,139005
,4,21622,139010
,4,21623,139015
,4,21624,139020
,4,21625,139025
,4,21626,139030
,4,21627,139035
,4,21628,139040
,4,21629,139045
,4,21630,139050
,4,21631,139055
,4,21632,139060
,4,21633,139065
,4,21634,139070
,4,21635,139075
,4,21636,139080
,4,21637,139085
,4,21638,139090
,4,21639,139095
,4,21640,139100
,4,21641,139105
,4,21642,139110
,4,21643,139115
,4,21644,139120
,4,21645,139125
,4,21646,139130
,4,21647,139135
,4,21648,139140
,4,21649,139145
,4,21650,139150
,4,21651,139155
,4,21652,139160
,4,21653,139165
,4,21654,139170
,4,21655,139175
,4,21656,139180
,4,21657,139185
,4,21658,139190
,4,21659,139195
,4,21660,139200
,4,21661,139205
,4,21662,139210
,4,21663,139215
,4,21664,139220
,4,21665,139225
,4,21666,139230
,4,21667,139235
,4,21668,139240
,4,21669,139245
,4,21670,139250
,4,21671,139255
,4,21672,139260
,4,21673,139265
,4,21674,139270
,4,21675,139275
,4,21676,139280
,4,21677,139285
,4,21678,139290
,4,21679,139295
,4,21680,139300
,4,21681,139305
,4,21682,139310
,4,21683,139315
,4,21684,139320
,4,21685,139325
,4,21686,139330
,4,21687,139335
,4,21688,139340
,4,21689,139345
,4,21690,139350
,4,21691,139355
,4,21692,139360
,4,21693,139365
,4,21694,139370
,4,21695,139375
,4,21696,139380
,4,21697,139385
,4,21698,139390
,4,21699,139395
,4,21700,139400
,4,21701,139405
,4,21702,139410
,4,21703,139415
,4,21704,139420
,4,21705,139425
,4,21706,139430
,4,21707,139435
,4,21708,139440
,4,21709,139445
,4,21710,139450
,4,21711,139455
,4,21712,139460
,4,21713,139465
,4,21714,139470
,4,21715,139475
,4,21716,139480
,4,21717,139485
,4,21718,139490
,4,21719,139495
,4,21720,139500
,4,21721,139505
,4,21722,139510
,4,21723,139515
,4,21724,139520
,4,21725,139525
,4,21726,139530
,4,21727,139535
,4,21728,139540
,4,21729,139545
,4,21730,139550
,4,21731,139555
,4,21732,139560
,4,21733,139565
,4,21734,139570
,4,21735,139575
,4,21736,139580
,4,21737,139585
,4,21738,139590
,4,21739,139595
,4,21740,139600
,4,21741,139605
,4,21742,139610
,4,21743,139615
,4,21744,139620
,4,21745,139625
,4,21746,139630
,4,21747,139635
,4,21748,139640
,4,21749,139645
,4,21750,139650
,4,21751,139655
,4,21752,139660
,4,21753,139665
,4,21754,139670
,4,21755,139675
,4,21756,139680
,4,21757,139685
,4,21758,139690
,4,21759,139695
,4,21760,139700
,4,21761,139705
,4,21762,139710
,4,21763,139715
,4,21764,139720
,4,21765,139725
,4,21766,139730
,4,21767,139735
,4,21768,139740
,4,21769,139745
,4,21770,139750
,4,21771,139755
,4,21772,139760
,4,21773,139765
,4,21774,139770
,4,21775,139775
,4,21776,139780
,4,21777,139785
,4,21778,139790
,4,21779,139795
,4,21780,139800
,4,21781,139805
,4,21782,139810
,4,21783,139815
,4,21784,139820
,4,21785,139825
,4,21786,139830
,4,21787,139835
,4,21788,139840
,4,21789,139845
,4,21790,139850
,4,21791,139855
,4,21792,139860
,4,21793,139865
,4,21794,139870
,4,21795,139875
,4,21796,139880
,4,21797,139885
,4,21798,139890
,4,21799,139895
,4,21800,139900
,4,21801,139905
,4,21802,139910
,4,21803,139915
,4,21804,139920
,4,21805,139925
,4,21806,139930
,4,21807,139935
,4,21808,139940
,4,21809,139945
,4,21810,139950
,4,21811,139955
,4,21812,139960
,4,21813,139965
,4,21814,139970
,4,21815,139975
,4,21816,139980
,4,21817,139985
,4,21818,139990
,4,21819,139995
,4,21820,140000
,4,21821,140005
,4,21822,140010
,4,21823,140015
,4,21824,140020
,4,21825,140025
,4,21826,140030
,4,21827,140035
,4,21828,140040
,4,21829,140045
,4,21830,140050
,4,21831,140055
,4,21832,140060
,4,21833,140065
,4,21834,140070
,4,21835,140075
,4,21836,140080
,4,21837,140085
,4,21838,140090
,4,21839,140095
,4,21840,140100
,4,21841,140105
,4,21842,140110
,4,21843,140115
,4,21844,140120
,4,21845,140125
,4,21846,140130
,4,21847,140135
,4,21848,140140
,4,21849,140145
,4,21850,140150
,4,21851,140155
,4,21852,140160
,4,21853,140165
,4,21854,140170
,4,21855,140175
,4,21856,140180
,4,21857,140185
,4,21858,140190
,4,21859,140195
,4,21860,140200
,4,21861,140205
,4,21862,140210
,4,21863,140215
,4,21864,140220
,4,21865,140225
,4,21866,140230
,4,21867,140235
,4,21868,140240
,4,21869,140245
,4,21870,140250
,4,21871,140255
,4,21872,140260
,4,21873,140265
,4,21874,140270
,4,21875,140275
,4,21876,140280
,4,21877,140285
,4,21878,140290
,4,21879,140295
,4,21880,140300
,4,21881,140305
,4,21882,140310
,4,21883,140315
,4,21884,140320
,4,21885,140325
,4,21886,140330
,4,21887,140335
,4,21888,140340
,4,21889,140345
,4,21890,140350
,4,21891,140355
,4,21892,140360
,4,21893,140365
,4,21894,140370
,4,21895,140375
,4,21896,140380
,4,21897,140385
,4,21898,140390
,4,21899,140395
,4,21900,140400
,4,21901,140405
,4,21902,140410
,4,21903,140415
,4,21904,140420
,4,21905,140425
,4,21906,140430
,4,21907,140435
,4,21908,140440
,4,21909,140445
,4,21910,140450
,4,21911,140455
,4,21912,140460
,4,21913,140465
,4,21914,140470
,4,21915,140475
,4,21916,140480
,4,21917,140485
,4,21918,140490
,4,21919,140495
,4,21920,140500
,4,21921,140505
,4,21922,140510
,4,21923,140515
,4,21924,140520
,4,21925,140525
,4,21926,140530
,4,21927,140535
,4,21928,140540
,4,21929,140545
,4,21930,140550
,4,21931,140555
,4,21932,140560
,4,21933,140565
,4,21934,140570
,4,21935,140575
,4,21936,140580
,4,21937,140585
,4,21938,140590
,4,21939,140595
,4,21940,140600
,4,21941,140605
,4,21942,140610
,4,21943,140615
,4,21944,140620
,4,21945,140625
,4,21946,140630
,4,21947,140635
,4,21948,140640
,4,21949,140645
,4,21950,140650
,4,21951,140655
,4,21952,140660
,4,21953,140665
,4,21954,140670
,4,21955,140675
,4,21956,140680
,4,21957,140685
,4,21958,140690
,4,21959,140695
,4,21960,140700
,4,21961,140705
,4,21962,140710
,4,21963,140715
,4,21964,140720
,4,21965,140725
,4,21966,140730
,4,21967,140735
,4,21968,140740
,4,21969,140745
,4,21970,140750
,4,21971,140755
,4,21972,140760
,4,21973,140765
,4,21974,140770
,4,21975,140775
,4,21976,140780
,4,21977,140785
,4,21978,140790
,4,21979,140795
,4,21980,140800
,4,21981,140805
,4,21982,140810
,4,21983,140815
,4,21984,140820
,4,21985,140825
,4,21986,140830
,4,21987,140835
,4,21988,140840
,4,21989,140845
,4,21990,140850
,4,21991,140855
,4,21992,140860
,4,21993,140865
,4,21994,140870
,4,21995,140875
,4,21996,140880
,4,21997,140885
,4,21998,140890
,4,21999,140895
,4,22000,140900
,4,22001,140905
,4,22002,140910
,4,22003,140915
,4,22004,140920
,4,22005,140925
,4,22006,140930
,4,22007,140935
,4,22008,140940
,4,22009,140945
,4,22010,140950
,4,22011,140955
,4,22012,140960
,4,22013,140965
,4,22014,140970
,4,22015,140975
,4,22016,140980
,4,22017,140985
,4,22018,140990
,4,22019,140995
,4,22020,141000
,4,22021,141005
,4,22022,141010
,4,22023,141015
,4,22024,141020
,4,22025,141025
,4,22026,141030
,4,22027,141035
,4,22028,141040
,4,22029,141045
,4,22030,141050
,4,22031,141055
,4,22032,141060
,4,22033,141065
,4,22034,141070
,4,22035,141075
,4,22036,141080
,4,22037,141085
,4,22038,141090
,4,22039,141095
,4,22040,141100
,4,22041,141105
,4,22042,141110
,4,22043,141115
,4,22044,141120
,4,22045,141125
,4,22046,141130
,4,22047,141135
,4,22048,141140
,4,22049,141145
,4,22050,141150
,4,22051,141155
,4,22052,141160
,4,22053,141165
,4,22054,141170
,4,22055,141175
,4,22056,141180
,4,22057,141185
,4,22058,141190
,4,22059,141195
,4,22060,141200
,4,22061,141205
,4,22062,141210
,4,22063,141215
,4,22064,141220
,4,22065,141225
,4,22066,141230
,4,22067,141235
,4,22068,141240
,4,22069,141245
,4,22070,141250
,4,22071,141255
,4,22072,141260
,4,22073,141265
,4,22074,141270
,4,22075,141275
,4,22076,141280
,4,22077,141285
,4,22078,141290
,4,22079,141295
,4,22080,141300
,4,22081,141305
,4,22082,141310
,4,22083,141315
,4,22084,141320
,4,22085,141325
,4,22086,141330
,4,22087,141335
,4,22088,141340
,4,22089,141345
,4,22090,141350
,4,22091,141355
,4,22092,141360
,4,22093,141365
,4,22094,141370
,4,22095,141375
,4,22096,141380
,4,22097,141385
,4,22098,141390
,4,22099,141395
,4,22100,141400
,4,22101,141405
,4,22102,141410
,4,22103,141415
,4,22104,141420
,4,22105,141425
,4,22106,141430
,4,22107,141435
,4,22108,141440
,4,22109,141445
,4,22110,141450
,4,22111,141455
,4,22112,141460
,4,22113,141465
,4,22114,141470
,4,22115,141475
,4,22116,141480
,4,22117,141485
,4,22118,141490
,4,22119,141495
,4,22120,141500
,4,22121,141505
,4,22122,141510
,4,22123,141515
,4,22124,141520
,4,22125,141525
,4,22126,141530
,4,22127,141535
,4,22128,141540
,4,22129,141545
,4,22130,141550
,4,22131,141555
,4,22132,141560
,4,22133,141565
,4,22134,141570
,4,22135,141575
,4,22136,141580
,4,22137,141585
,4,22138,141590
,4,22139,141595
,4,22140,141600
,4,22141,141605
,4,22142,141610
,4,22143,141615
,4,22144,141620
,4,22145,141625
,4,22146,141630
,4,22147,141635
,4,22148,141640
,4,22149,141645
,4,22150,141650
,4,22151,141655
,4,22152,141660
,4,22153,141665
,4,22154,141670
,4,22155,141675
,4,22156,141680
,4,22157,141685
,4,22158,141690
,4,22159,141695
,4,22160,141700
,4,22161,141705
,4,22162,141710
,4,22163,141715
,4,22164,141720
,4,22165,141725
,4,22166,141730
,4,22167,141735
,4,22168,141740
,4,22169,141745
,4,22170,141750
,4,22171,141755
,4,22172,141760
,4,22173,141765
,4,22174,141770
,4,22175,141775
,4,22176,141780
,4,22177,141785
,4,22178,141790
,4,22179,141795
,4,22180,141800
,4,22181,141805
,4,22182,141810
,4,22183,141815
,4,22184,141820
,4,22185,141825
,4,22186,141830
,4,22187,141835
,4,22188,141840
,4,22189,141845
,4,22190,141850
,4,22191,141855
,4,22192,141860
,4,22193,141865
,4,22194,141870
,4,22195,141875
,4,22196,141880
,4,22197,141885
,4,22198,141890
,4,22199,141895
,4,22200,141900
,4,22201,141905
,4,22202,141910
,4,22203,141915
,4,22204,141920
,4,22205,141925
,4,22206,141930
,4,22207,141935
,4,22208,141940
,4,22209,141945
,4,22210,141950
,4,22211,141955
,4,22212,141960
,4,22213,141965
,4,22214,141970
,4,22215,141975
,4,22216,141980
,4,22217,141985
,4,22218,141990
,4,22219,141995
,4,22220,142000
,4,22221,142005
,4,22222,142010
,4,22223,142015
,4,22224,142020
,4,22225,142025
,4,22226,142030
,4,22227,142035
,4,22228,142040
,4,22229,142045
,4,22230,142050
,4,22231,142055
,4,22232,142060
,4,22233,142065
,4,22234,142070
,4,22235,142075
,4,22236,142080
,4,22237,142085
,4,22238,142090
,4,22239,142095
,4,22240,142100
,4,22241,142105
,4,22242,142110
,4,22243,142115
,4,22244,142120
,4,22245,142125
,4,22246,142130
,4,22247,142135
,4,22248,142140
,4,22249,142145
,4,22250,142150
,4,22251,142155
,4,22252,142160
,4,22253,142165
,4,22254,142170
,4,22255,142175
,4,22256,142180
,4,22257,142185
,4,22258,142190
,4,22259,142195
,4,22260,142200
,4,22261,142205
,4,22262,142210
,4,22263,142215
,4,22264,142220
,4,22265,142225
,4,22266,142230
,4,22267,142235
,4,22268,142240
,4,22269,142245
,4,22270,142250
,4,22271,142255
,4,22272,142260
,4,22273,142265
,4,22274,142270
,4,22275,142275
,4,22276,142280
,4,22277,142285
,4,22278,142290
,4,22279,142295
,4,22280,142300
,4,22281,142305
,4,22282,142310
,4,22283,142315
,4,22284,142320
,4,22285,142325
,4,22286,142330
,4,22287,142335
,4,22288,142340
,4,22289,142345
,4,22290,142350
,4,22291,142355
,4,22292,142360
,4,22293,142365
,4,22294,142370
,4,22295,142375
,4,22296,142380
,4,22297,142385
,4,22298,142390
,4,22299,142395
,4,22300,142400
,4,22301,142405
,4,22302,142410
,4,22303,142415
,4,22304,142420
,4,22305,142425
,4,22306,142430
,4,22307,142435
,4,22308,142440
,4,22309,142445
,4,22310,142450
,4,22311,142455
,4,22312,142460
,4,22313,142465
,4,22314,142470
,4,22315,142475
,4,22316,142480
,4,22317,142485
,4,22318,142490
,4,22319,142495
,4,22320,142500
,4,22321,142505
,4,22322,142510
,4,22323,142515
,4,22324,142520
,4,22325,142525
,4,22326,142530
,4,22327,142535
,4,22328,142540
,4,22329,142545
,4,22330,142550
,4,22331,142555
,4,22332,142560
,4,22333,142565
,4,22334,142570
,4,22335,142575
,4,22336,142580
,4,22337,142585
,4,22338,142590
,4,22339,142595
,4,22340,142600
,4,22341,142605
,4,22342,142610
,4,22343,142615
,4,22344,142620
,4,22345,142625
,4,22346,142630
,4,22347,142635
,4,22348,142640
,4,22349,142645
,4,22350,142650
,4,22351,142655
,4,22352,142660
,4,22353,142665
,4,22354,142670
,4,22355,142675
,4,22356,142680
,4,22357,142685
,4,22358,142690
,4,22359,142695
,4,22360,142700
,4,22361,142705
,4,22362,142710
,4,22363,142715
,4,22364,142720
,4,22365,142725
,4,22366,142730
,4,22367,142735
,4,22368,142740
,4,22369,142745
,4,22370,142750
,4,22371,142755
,4,22372,142760
,4,22373,142765
,4,22374,142770
,4,22375,142775
,4,22376,142780
,4,22377,142785
,4,22378,142790
,4,22379,142795
,4,22380,142800
,4,22381,142805
,4,22382,142810
,4,22383,142815
,4,22384,142820
,4,22385,142825
,4,22386,142830
,4,22387,142835
,4,22388,142840
,4,22389,142845
,4,22390,142850
,4,22391,142855
,4,22392,142860
,4,22393,142865
,4,22394,142870
,4,22395,142875
,4,22396,142880
,4,22397,142885
,4,22398,142890
,4,22399,142895
,4,22400,142900
,4,22401,142905
,4,22402,142910
,4,22403,142915
,4,22404,142920
,4,22405,142925
,4,22406,142930
,4,22407,142935
,4,22408,142940
,4,22409,142945
,4,22410,142950
,4,22411,142955
,4,22412,142960
,4,22413,142965
,4,22414,142970
,4,22415,142975
,4,22416,142980
,4,22417,142985
,4,22418,142990
,4,22419,142995
,4,22420,143000
,4,22421,143005
,4,22422,143010
,4,22423,143015
,4,22424,143020
,4,22425,143025
,4,22426,143030
,4,22427,143035
,4,22428,143040
,4,22429,143045
,4,22430,143050
,4,22431,143055
,4,22432,143060
,4,22433,143065
,4,22434,143070
,4,22435,143075
,4,22436,143080
,4,22437,143085
,4,22438,143090
,4,22439,143095
,4,22440,143100
,4,22441,143105
,4,22442,143110
,4,22443,143115
,4,22444,143120
,4,22445,143125
,4,22446,143130
,4,22447,143135
,4,22448,143140
,4,22449,143145
,4,22450,143150
,4,22451,143155
,4,22452,143160
,4,22453,143165
,4,22454,143170
,4,22455,143175
,4,22456,143180
,4,22457,143185
,4,22458,143190
,4,22459,143195
,4,22460,143200
,4,22461,143205
,4,22462,143210
,4,22463,143215
,4,22464,143220
,4,22465,143225
,4,22466,143230
,4,22467,143235
,4,22468,143240
,4,22469,143245
,4,22470,143250
,4,22471,143255
,4,22472,143260
,4,22473,143265
,4,22474,143270
,4,22475,143275
,4,22476,143280
,4,22477,143285
,4,22478,143290
,4,22479,143295
,4,22480,143300
,4,22481,143305
,4,22482,143310
,4,22483,143315
,4,22484,143320
,4,22485,143325
,4,22486,143330
,4,22487,143335
,4,22488,143340
,4,22489,143345
,4,22490,143350
,4,22491,143355
,4,22492,143360
,4,22493,143365
,4,22494,143370
,4,22495,143375
,4,22496,143380
,4,22497,143385
,4,22498,143390
,4,22499,143395
,4,22500,143400
,4,22501,143405
,4,22502,143410
,4,22503,143415
,4,22504,143420
,4,22505,143425
,4,22506,143430
,4,22507,143435
,4,22508,143440
,4,22509,143445
,4,22510,143450
,4,22511,143455
,4,22512,143460
,4,22513,143465
,4,22514,143470
,4,22515,143475
,4,22516,143480
,4,22517,143485
,4,22518,143490
,4,22519,143495
,4,22520,143500
,4,22521,143505
,4,22522,143510
,4,22523,143515
,4,22524,143520
,4,22525,143525
,4,22526,143530
,4,22527,143535
,4,22528,143540
,4,22529,143545
,4,22530,143550
,4,22531,143555
,4,22532,143560
,4,22533,143565
,4,22534,143570
,4,22535,143575
,4,22536,143580
,4,22537,143585
,4,22538,143590
,4,22539,143595
,4,22540,143600
,4,22541,143605
,4,22542,143610
,4,22543,143615
,4,22544,143620
,4,22545,143625
,4,22546,143630
,4,22547,143635
,4,22548,143640
,4,22549,143645
,4,22550,143650
,4,22551,143655
,4,22552,143660
,4,22553,143665
,4,22554,143670
,4,22555,143675
,4,22556,143680
,4,22557,143685
,4,22558,143690
,4,22559,143695
,4,22560,143700
,4,22561,143705
,4,22562,143710
,4,22563,143715
,4,22564,143720
,4,22565,143725
,4,22566,143730
,4,22567,143735
,4,22568,143740
,4,22569,143745
,4,22570,143750
,4,22571,143755
,4,22572,143760
,4,22573,143765
,4,22574,143770
,4,22575,143775
,4,22576,143780
,4,22577,143785
,4,22578,143790
,4,22579,143795
,4,22580,143800
,4,22581,143805
,4,22582,143810
,4,22583,143815
,4,22584,143820
,4,22585,143825
,4,22586,143830
,4,22587,143835
,4,22588,143840
,4,22589,143845
,4,22590,143850
,4,22591,143855
,4,22592,143860
,4,22593,143865
,4,22594,143870
,4,22595,143875
,4,22596,143880
,4,22597,143885
,4,22598,143890
,4,22599,143895
,4,22600,143900
,4,22601,143905
,4,22602,143910
,4,22603,143915
,4,22604,143920
,4,22605,143925
,4,22606,143930
,4,22607,143935
,4,22608,143940
,4,22609,143945
,4,22610,143950
,4,22611,143955
,4,22612,143960
,4,22613,143965
,4,22614,143970
,4,22615,143975
,4,22616,143980
,4,22617,143985
,4,22618,143990
,4,22619,143995
,4,22620,144000
,4,22621,144005
,4,22622,144010
,4,22623,144015
,4,22624,144020
,4,22625,144025
,4,22626,144030
,4,22627,144035
,4,22628,144040
,4,22629,144045
,4,22630,144050
,4,22631,144055
,4,22632,144060
,4,22633,144065
,4,22634,144070
,4,22635,144075
,4,22636,144080
,4,22637,144085
,4,22638,144090
,4,22639,144095
,4,22640,144100
,4,22641,144105
,4,22642,144110
,4,22643,144115
,4,22644,144120
,4,22645,144125
,4,22646,144130
,4,22647,144135
,4,22648,144140
,4,22649,144145
,4,22650,144150
,4,22651,144155
,4,22652,144160
,4,22653,144165
,4,22654,144170
,4,22655,144175
,4,22656,144180
,4,22657,144185
,4,22658,144190
,4,22659,144195
,4,22660,144200
,4,22661,144205
,4,22662,144210
,4,22663,144215
,4,22664,144220
,4,22665,144225
,4,22666,144230
,4,22667,144235
,4,22668,144240
,4,22669,144245
,4,22670,144250
,4,22671,144255
,4,22672,144260
,4,22673,144265
,4,22674,144270
,4,22675,144275
,4,22676,144280
,4,22677,144285
,4,22678,144290
,4,22679,144295
,4,22680,144300
,4,22681,144305
,4,22682,144310
,4,22683,144315
,4,22684,144320
,4,22685,144325
,4,22686,144330
,4,22687,144335
,4,22688,144340
,4,22689,144345
,4,22690,144350
,4,22691,144355
,4,22692,144360
,4,22693,144365
,4,22694,144370
,4,22695,144375
,4,22696,144380
,4,22697,144385
,4,22698,144390
,4,22699,144395
,4,22700,144400
,4,22701,144405
,4,22702,144410
,4,22703,144415
,4,22704,144420
,4,22705,144425
,4,22706,144430
,4,22707,144435
,4,22708,144440
,4,22709,144445
,4,22710,144450
,4,22711,144455
,4,22712,144460
,4,22713,144465
,4,22714,144470
,4,22715,144475
,4,22716,144480
,4,22717,144485
,4,22718,144490
,4,22719,144495
,4,22720,144500
,4,22721,144505
,4,22722,144510
,4,22723,144515
,4,22724,144520
,4,22725,144525
,4,22726,144530
,4,22727,144535
,4,22728,144540
,4,22729,144545
,4,22730,144550
,4,22731,144555
,4,22732,144560
,4,22733,144565
,4,22734,144570
,4,22735,144575
,4,22736,144580
,4,22737,144585
,4,22738,144590
,4,22739,144595
,4,22740,144600
,4,22741,144605
,4,22742,144610
,4,22743,144615
,4,22744,144620
,4,22745,144625
,4,22746,144630
,4,22747,144635
,4,22748,144640
,4,22749,144645
,4,22750,144650
,4,22751,144655
,4,22752,144660
,4,22753,144665
,4,22754,144670
,4,22755,144675
,4,22756,144680
,4,22757,144685
,4,22758,144690
,4,22759,144695
,4,22760,144700
,4,22761,144705
,4,22762,144710
,4,22763,144715
,4,22764,144720
,4,22765,144725
,4,22766,144730
,4,22767,144735
,4,22768,144740
,4,22769,144745
,4,22770,144750
,4,22771,144755
,4,22772,144760
,4,22773,144765
,4,22774,144770
,4,22775,144775
,4,22776,144780
,4,22777,144785
,4,22778,144790
,4,22779,144795
,4,22780,144800
,4,22781,144805
,4,22782,144810
,4,22783,144815
,4,22784,144820
,4,22785,144825
,4,22786,144830
,4,22787,144835
,4,22788,144840
,4,22789,144845
,4,22790,144850
,4,22791,144855
,4,22792,144860
,4,22793,144865
,4,22794,144870
,4,22795,144875
,4,22796,144880
,4,22797,144885
,4,22798,144890
,4,22799,144895
,4,22800,144900
,4,22801,144905
,4,22802,144910
,4,22803,144915
,4,22804,144920
,4,22805,144925
,4,22806,144930
,4,22807,144935
,4,22808,144940
,4,22809,144945
,4,22810,144950
,4,22811,144955
,4,22812,144960
,4,22813,144965
,4,22814,144970
,4,22815,144975
,4,22816,144980
,4,22817,144985
,4,22818,144990
,4,22819,144995
,4,22820,145000
,4,22821,145005
,4,22822,145010
,4,22823,145015
,4,22824,145020
,4,22825,145025
,4,22826,145030
,4,22827,145035
,4,22828,145040
,4,22829,145045
,4,22830,145050
,4,22831,145055
,4,22832,145060
,4,22833,145065
,4,22834,145070
,4,22835,145075
,4,22836,145080
,4,22837,145085
,4,22838,145090
,4,22839,145095
,4,22840,145100
,4,22841,145105
,4,22842,145110
,4,22843,145115
,4,22844,145120
,4,22845,145125
,4,22846,145130
,4,22847,145135
,4,22848,145140
,4,22849,145145
,4,22850,145150
,4,22851,145155
,4,22852,145160
,4,22853,145165
,4,22854,145170
,4,22855,145175
,4,22856,145180
,4,22857,145185
,4,22858,145190
,4,22859,145195
,4,22860,145200
,4,22861,145205
,4,22862,145210
,4,22863,145215
,4,22864,145220
,4,22865,145225
,4,22866,145230
,4,22867,145235
,4,22868,145240
,4,22869,145245
,4,22870,145250
,4,22871,145255
,4,22872,145260
,4,22873,145265
,4,22874,145270
,4,22875,145275
,4,22876,145280
,4,22877,145285
,4,22878,145290
,4,22879,145295
,4,22880,145300
,4,22881,145305
,4,22882,145310
,4,22883,145315
,4,22884,145320
,4,22885,145325
,4,22886,145330
,4,22887,145335
,4,22888,145340
,4,22889,145345
,4,22890,145350
,4,22891,145355
,4,22892,145360
,4,22893,145365
,4,22894,145370
,4,22895,145375
,4,22896,145380
,4,22897,145385
,4,22898,145390
,4,22899,145395
,4,22900,145400
,4,22901,145405
,4,22902,145410
,4,22903,145415
,4,22904,145420
,4,22905,145425
,4,22906,145430
,4,22907,145435
,4,22908,145440
,4,22909,145445
,4,22910,145450
,4,22911,145455
,4,22912,145460
,4,22913,145465
,4,22914,145470
,4,22915,145475
,4,22916,145480
,4,22917,145485
,4,22918,145490
,4,22919,145495
,4,22920,145500
,4,22921,145505
,4,22922,145510
,4,22923,145515
,4,22924,145520
,4,22925,145525
,4,22926,145530
,4,22927,145535
,4,22928,145540
,4,22929,145545
,4,22930,145550
,4,22931,145555
,4,22932,145560
,4,22933,145565
,4,22934,145570
,4,22935,145575
,4,22936,145580
,4,22937,145585
,4,22938,145590
,4,22939,145595
,4,22940,145600
,4,22941,145605
,4,22942,145610
,4,22943,145615
,4,22944,145620
,4,22945,145625
,4,22946,145630
,4,22947,145635
,4,22948,145640
,4,22949,145645
,4,22950,145650
,4,22951,145655
,4,22952,145660
,4,22953,145665
,4,22954,145670
,4,22955,145675
,4,22956,145680
,4,22957,145685
,4,22958,145690
,4,22959,145695
,4,22960,145700
,4,22961,145705
,4,22962,145710
,4,22963,145715
,4,22964,145720
,4,22965,145725
,4,22966,145730
,4,22967,145735
,4,22968,145740
,4,22969,145745
,4,22970,145750
,4,22971,145755
,4,22972,145760
,4,22973,145765
,4,22974,145770
,4,22975,145775
,4,22976,145780
,4,22977,145785
,4,22978,145790
,4,22979,145795
,4,22980,145800
,4,22981,145805
,4,22982,145810
,4,22983,145815
,4,22984,145820
,4,22985,145825
,4,22986,145830
,4,22987,145835
,4,22988,145840
,4,22989,145845
,4,22990,145850
,4,22991,145855
,4,22992,145860
,4,22993,145865
,4,22994,145870
,4,22995,145875
,4,22996,145880
,4,22997,145885
,4,22998,145890
,4,22999,145895
,4,23000,145900
,4,23001,145905
,4,23002,145910
,4,23003,145915
,4,23004,145920
,4,23005,145925
,4,23006,145930
,4,23007,145935
,4,23008,145940
,4,23009,145945
,4,23010,145950
,4,23011,145955
,4,23012,145960
,4,23013,145965
,4,23014,145970
,4,23015,145975
,4,23016,145980
,4,23017,145985
,4,23018,145990
,4,23019,145995
,4,23020,146000
,4,23021,146005
,4,23022,146010
,4,23023,146015
,4,23024,146020
,4,23025,146025
,4,23026,146030
,4,23027,146035
,4,23028,146040
,4,23029,146045
,4,23030,146050
,4,23031,146055
,4,23032,146060
,4,23033,146065
,4,23034,146070
,4,23035,146075
,4,23036,146080
,4,23037,146085
,4,23038,146090
,4,23039,146095
,4,23040,146100
,4,23041,146105
,4,23042,146110
,4,23043,146115
,4,23044,146120
,4,23045,146125
,4,23046,146130
,4,23047,146135
,4,23048,146140
,4,23049,146145
,4,23050,146150
,4,23051,146155
,4,23052,146160
,4,23053,146165
,4,23054,146170
,4,23055,146175
,4,23056,146180
,4,23057,146185
,4,23058,146190
,4,23059,146195
,4,23060,146200
,4,23061,146205
,4,23062,146210
,4,23063,146215
,4,23064,146220
,4,23065,146225
,4,23066,146230
,4,23067,146235
,4,23068,146240
,4,23069,146245
,4,23070,146250
,4,23071,146255
,4,23072,146260
,4,23073,146265
,4,23074,146270
,4,23075,146275
,4,23076,146280
,4,23077,146285
,4,23078,146290
,4,23079,146295
,4,23080,146300
,4,23081,146305
,4,23082,146310
,4,23083,146315
,4,23084,146320
,4,23085,146325
,4,23086,146330
,4,23087,146335
,4,23088,146340
,4,23089,146345
,4,23090,146350
,4,23091,146355
,4,23092,146360
,4,23093,146365
,4,23094,146370
,4,23095,146375
,4,23096,146380
,4,23097,146385
,4,23098,146390
,4,23099,146395
,4,23100,146400
,4,23101,146405
,4,23102,146410
,4,23103,146415
,4,23104,146420
,4,23105,146425
,4,23106,146430
,4,23107,146435
,4,23108,146440
,4,23109,146445
,4,23110,146450
,4,23111,146455
,4,23112,146460
,4,23113,146465
,4,23114,146470
,4,23115,146475
,4,23116,146480
,4,23117,146485
,4,23118,146490
,4,23119,146495
,4,23120,146500
,4,23121,146505
,4,23122,146510
,4,23123,146515
,4,23124,146520
,4,23125,146525
,4,23126,146530
,4,23127,146535
,4,23128,146540
,4,23129,146545
,4,23130,146550
,4,23131,146555
,4,23132,146560
,4,23133,146565
,4,23134,146570
,4,23135,146575
,4,23136,146580
,4,23137,146585
,4,23138,146590
,4,23139,146595
,4,23140,146600
,4,23141,146605
,4,23142,146610
,4,23143,146615
,4,23144,146620
,4,23145,146625
,4,23146,146630
,4,23147,146635
,4,23148,146640
,4,23149,146645
,4,23150,146650
,4,23151,146655
,4,23152,146660
,4,23153,146665
,4,23154,146670
,4,23155,146675
,4,23156,146680
,4,23157,146685
,4,23158,146690
,4,23159,146695
,4,23160,146700
,4,23161,146705
,4,23162,146710
,4,23163,146715
,4,23164,146720
,4,23165,146725
,4,23166,146730
,4,23167,146735
,4,23168,146740
,4,23169,146745
,4,23170,146750
,4,23171,146755
,4,23172,146760
,4,23173,146765
,4,23174,146770
,4,23175,146775
,4,23176,146780
,4,23177,146785
,4,23178,146790
,4,23179,146795
,4,23180,146800
,4,23181,146805
,4,23182,146810
,4,23183,146815
,4,23184,146820
,4,23185,146825
,4,23186,146830
,4,23187,146835
,4,23188,146840
,4,23189,146845
,4,23190,146850
,4,23191,146855
,4,23192,146860
,4,23193,146865
,4,23194,146870
,4,23195,146875
,4,23196,146880
,4,23197,146885
,4,23198,146890
,4,23199,146895
,4,23200,146900
,4,23201,146905
,4,23202,146910
,4,23203,146915
,4,23204,146920
,4,23205,146925
,4,23206,146930
,4,23207,146935
,4,23208,146940
,4,23209,146945
,4,23210,146950
,4,23211,146955
,4,23212,146960
,4,23213,146965
,4,23214,146970
,4,23215,146975
,4,23216,146980
,4,23217,146985
,4,23218,146990
,4,23219,146995
,4,23220,147000
,4,23221,147005
,4,23222,147010
,4,23223,147015
,4,23224,147020
,4,23225,147025
,4,23226,147030
,4,23227,147035
,4,23228,147040
,4,23229,147045
,4,23230,147050
,4,23231,147055
,4,23232,147060
,4,23233,147065
,4,23234,147070
,4,23235,147075
,4,23236,147080
,4,23237,147085
,4,23238,147090
,4,23239,147095
,4,23240,147100
,4,23241,147105
,4,23242,147110
,4,23243,147115
,4,23244,147120
,4,23245,147125
,4,23246,147130
,4,23247,147135
,4,23248,147140
,4,23249,147145
,4,23250,147150
,4,23251,147155
,4,23252,147160
,4,23253,147165
,4,23254,147170
,4,23255,147175
,4,23256,147180
,4,23257,147185
,4,23258,147190
,4,23259,147195
,4,23260,147200
,4,23261,147205
,4,23262,147210
,4,23263,147215
,4,23264,147220
,4,23265,147225
,4,23266,147230
,4,23267,147235
,4,23268,147240
,4,23269,147245
,4,23270,147250
,4,23271,147255
,4,23272,147260
,4,23273,147265
,4,23274,147270
,4,23275,147275
,4,23276,147280
,4,23277,147285
,4,23278,147290
,4,23279,147295
,4,23280,147300
,4,23281,147305
,4,23282,147310
,4,23283,147315
,4,23284,147320
,4,23285,147325
,4,23286,147330
,4,23287,147335
,4,23288,147340
,4,23289,147345
,4,23290,147350
,4,23291,147355
,4,23292,147360
,4,23293,147365
,4,23294,147370
,4,23295,147375
,4,23296,147380
,4,23297,147385
,4,23298,147390
,4,23299,147395
,4,23300,147400
,4,23301,147405
,4,23302,147410
,4,23303,147415
,4,23304,147420
,4,23305,147425
,4,23306,147430
,4,23307,147435
,4,23308,147440
,4,23309,147445
,4,23310,147450
,4,23311,147455
,4,23312,147460
,4,23313,147465
,4,23314,147470
,4,23315,147475
,4,23316,147480
,4,23317,147485
,4,23318,147490
,4,23319,147495
,4,23320,147500
,4,23321,147505
,4,23322,147510
,4,23323,147515
,4,23324,147520
,4,23325,147525
,4,23326,147530
,4,23327,147535
,4,23328,147540
,4,23329,147545
,4,23330,147550
,4,23331,147555
,4,23332,147560
,4,23333,147565
,4,23334,147570
,4,23335,147575
,4,23336,147580
,4,23337,147585
,4,23338,147590
,4,23339,147595
,4,23340,147600
,4,23341,147605
,4,23342,147610
,4,23343,147615
,4,23344,147620
,4,23345,147625
,4,23346,147630
,4,23347,147635
,4,23348,147640
,4,23349,147645
,4,23350,147650
,4,23351,147655
,4,23352,147660
,4,23353,147665
,4,23354,147670
,4,23355,147675
,4,23356,147680
,4,23357,147685
,4,23358,147690
,4,23359,147695
,4,23360,147700
,4,23361,147705
,4,23362,147710
,4,23363,147715
,4,23364,147720
,4,23365,147725
,4,23366,147730
,4,23367,147735
,4,23368,147740
,4,23369,147745
,4,23370,147750
,4,23371,147755
,4,23372,147760
,4,23373,147765
,4,23374,147770
,4,23375,147775
,4,23376,147780
,4,23377,147785
,4,23378,147790
,4,23379,147795
,4,23380,147800
,4,23381,147805
,4,23382,147810
,4,23383,147815
,4,23384,147820
,4,23385,147825
,4,23386,147830
,4,23387,147835
,4,23388,147840
,4,23389,147845
,4,23390,147850
,4,23391,147855
,4,23392,147860
,4,23393,147865
,4,23394,147870
,4,23395,147875
,4,23396,147880
,4,23397,147885
,4,23398,147890
,4,23399,147895
,4,23400,147900
,4,23401,147905
,4,23402,147910
,4,23403,147915
,4,23404,147920
,4,23405,147925
,4,23406,147930
,4,23407,147935
,4,23408,147940
,4,23409,147945
,4,23410,147950
,4,23411,147955
,4,23412,147960
,4,23413,147965
,4,23414,147970
,4,23415,147975
,4,23416,147980
,4,23417,147985
,4,23418,147990
,4,23419,147995
,4,23420,148000
,4,23421,148005
,4,23422,148010
,4,23423,148015
,4,23424,148020
,4,23425,148025
,4,23426,148030
,4,23427,148035
,4,23428,148040
,4,23429,148045
,4,23430,148050
,4,23431,148055
,4,23432,148060
,4,23433,148065
,4,23434,148070
,4,23435,148075
,4,23436,148080
,4,23437,148085
,4,23438,148090
,4,23439,148095
,4,23440,148100
,4,23441,148105
,4,23442,148110
,4,23443,148115
,4,23444,148120
,4,23445,148125
,4,23446,148130
,4,23447,148135
,4,23448,148140
,4,23449,148145
,4,23450,148150
,4,23451,148155
,4,23452,148160
,4,23453,148165
,4,23454,148170
,4,23455,148175
,4,23456,148180
,4,23457,148185
,4,23458,148190
,4,23459,148195
,4,23460,148200
,4,23461,148205
,4,23462,148210
,4,23463,148215
,4,23464,148220
,4,23465,148225
,4,23466,148230
,4,23467,148235
,4,23468,148240
,4,23469,148245
,4,23470,148250
,4,23471,148255
,4,23472,148260
,4,23473,148265
,4,23474,148270
,4,23475,148275
,4,23476,148280
,4,23477,148285
,4,23478,148290
,4,23479,148295
,4,23480,148300
,4,23481,148305
,4,23482,148310
,4,23483,148315
,4,23484,148320
,4,23485,148325
,4,23486,148330
,4,23487,148335
,4,23488,148340
,4,23489,148345
,4,23490,148350
,4,23491,148355
,4,23492,148360
,4,23493,148365
,4,23494,148370
,4,23495,148375
,4,23496,148380
,4,23497,148385
,4,23498,148390
,4,23499,148395
,4,23500,148400
,4,23501,148405
,4,23502,148410
,4,23503,148415
,4,23504,148420
,4,23505,148425
,4,23506,148430
,4,23507,148435
,4,23508,148440
,4,23509,148445
,4,23510,148450
,4,23511,148455
,4,23512,148460
,4,23513,148465
,4,23514,148470
,4,23515,148475
,4,23516,148480
,4,23517,148485
,4,23518,148490
,4,23519,148495
,4,23520,148500
,4,23521,148505
,4,23522,148510
,4,23523,148515
,4,23524,148520
,4,23525,148525
,4,23526,148530
,4,23527,148535
,4,23528,148540
,4,23529,148545
,4,23530,148550
,4,23531,148555
,4,23532,148560
,4,23533,148565
,4,23534,148570
,4,23535,148575
,4,23536,148580
,4,23537,148585
,4,23538,148590
,4,23539,148595
,4,23540,148600
,4,23541,148605
,4,23542,148610
,4,23543,148615
,4,23544,148620
,4,23545,148625
,4,23546,148630
,4,23547,148635
,4,23548,148640
,4,23549,148645
,4,23550,148650
,4,23551,148655
,4,23552,148660
,4,23553,148665
,4,23554,148670
,4,23555,148675
,4,23556,148680
,4,23557,148685
,4,23558,148690
,4,23559,148695
,4,23560,148700
,4,23561,148705
,4,23562,148710
,4,23563,148715
,4,23564,148720
,4,23565,148725
,4,23566,148730
,4,23567,148735
,4,23568,148740
,4,23569,148745
,4,23570,148750
,4,23571,148755
,4,23572,148760
,4,23573,148765
,4,23574,148770
,4,23575,148775
,4,23576,148780
,4,23577,148785
,4,23578,148790
,4,23579,148795
,4,23580,148800
,4,23581,148805
,4,23582,148810
,4,23583,148815
,4,23584,148820
,4,23585,148825
,4,23586,148830
,4,23587,148835
,4,23588,148840
,4,23589,148845
,4,23590,148850
,4,23591,148855
,4,23592,148860
,4,23593,148865
,4,23594,148870
,4,23595,148875
,4,23596,148880
,4,23597,148885
,4,23598,148890
,4,23599,148895
,4,23600,148900
,4,23601,148905
,4,23602,148910
,4,23603,148915
,4,23604,148920
,4,23605,148925
,4,23606,148930
,4,23607,148935
,4,23608,148940
,4,23609,148945
,4,23610,148950
,4,23611,148955
,4,23612,148960
,4,23613,148965
,4,23614,148970
,4,23615,148975
,4,23616,148980
,4,23617,148985
,4,23618,148990
,4,23619,148995
,4,23620,149000
,4,23621,149005
,4,23622,149010
,4,23623,149015
,4,23624,149020
,4,23625,149025
,4,23626,149030
,4,23627,149035
,4,23628,149040
,4,23629,149045
,4,23630,149050
,4,23631,149055
,4,23632,149060
,4,23633,149065
,4,23634,149070
,4,23635,149075
,4,23636,149080
,4,23637,149085
,4,23638,149090
,4,23639,149095
,4,23640,149100
,4,23641,149105
,4,23642,149110
,4,23643,149115
,4,23644,149120
,4,23645,149125
,4,23646,149130
,4,23647,149135
,4,23648,149140
,4,23649,149145
,4,23650,149150
,4,23651,149155
,4,23652,149160
,4,23653,149165
,4,23654,149170
,4,23655,149175
,4,23656,149180
,4,23657,149185
,4,23658,149190
,4,23659,149195
,4,23660,149200
,4,23661,149205
,4,23662,149210
,4,23663,149215
,4,23664,149220
,4,23665,149225
,4,23666,149230
,4,23667,149235
,4,23668,149240
,4,23669,149245
,4,23670,149250
,4,23671,149255
,4,23672,149260
,4,23673,149265
,4,23674,149270
,4,23675,149275
,4,23676,149280
,4,23677,149285
,4,23678,149290
,4,23679,149295
,4,23680,149300
,4,23681,149305
,4,23682,149310
,4,23683,149315
,4,23684,149320
,4,23685,149325
,4,23686,149330
,4,23687,149335
,4,23688,149340
,4,23689,149345
,4,23690,149350
,4,23691,149355
,4,23692,149360
,4,23693,149365
,4,23694,149370
,4,23695,149375
,4,23696,149380
,4,23697,149385
,4,23698,149390
,4,23699,149395
,4,23700,149400
,4,23701,149405
,4,23702,149410
,4,23703,149415
,4,23704,149420
,4,23705,149425
,4,23706,149430
,4,23707,149435
,4,23708,149440
,4,23709,149445
,4,23710,149450
,4,23711,149455
,4,23712,149460
,4,23713,149465
,4,23714,149470
,4,23715,149475
,4,23716,149480
,4,23717,149485
,4,23718,149490
,4,23719,149495
,4,23720,149500
,4,23721,149505
,4,23722,149510
,4,23723,149515
,4,23724,149520
,4,23725,149525
,4,23726,149530
,4,23727,149535
,4,23728,149540
,4,23729,149545
,4,23730,149550
,4,23731,149555
,4,23732,149560
,4,23733,149565
,4,23734,149570
,4,23735,149575
,4,23736,149580
,4,23737,149585
,4,23738,149590
,4,23739,149595
,4,23740,149600
,4,23741,149605
,4,23742,149610
,4,23743,149615
,4,23744,149620
,4,23745,149625
,4,23746,149630
,4,23747,149635
,4,23748,149640
,4,23749,149645
,4,23750,149650
,4,23751,149655
,4,23752,149660
,4,23753,149665
,4,23754,149670
,4,23755,149675
,4,23756,149680
,4,23757,149685
,4,23758,149690
,4,23759,149695
,4,23760,149700
,4,23761,149705
,4,23762,149710
,4,23763,149715
,4,23764,149720
,4,23765,149725
,4,23766,149730
,4,23767,149735
,4,23768,149740
,4,23769,149745
,4,23770,149750
,4,23771,149755
,4,23772,149760
,4,23773,149765
,4,23774,149770
,4,23775,149775
,4,23776,149780
,4,23777,149785
,4,23778,149790
,4,23779,149795
,4,23780,149800
,4,23781,149805
,4,23782,149810
,4,23783,149815
,4,23784,149820
,4,23785,149825
,4,23786,149830
,4,23787,149835
,4,23788,149840
,4,23789,149845
,4,23790,149850
,4,23791,149855
,4,23792,149860
,4,23793,149865
,4,23794,149870
,4,23795,149875
,4,23796,149880
,4,23797,149885
,4,23798,149890
,4,23799,149895
,4,23800,149900
,4,23801,149905
,4,23802,149910
,4,23803,149915
,4,23804,149920
,4,23805,149925
,4,23806,149930
,4,23807,149935
,4,23808,149940
,4,23809,149945
,4,23810,149950
,4,23811,149955
,4,23812,149960
,4,23813,149965
,4,23814,149970
,4,23815,149975
,4,23816,149980
,4,23817,149985
,4,23818,149990
,4,23819,149995
,4,23820,150000
,4,23821,150005
,4,23822,150010
,4,23823,150015
,4,23824,150020
,4,23825,150025
,4,23826,150030
,4,23827,150035
,4,23828,150040
,4,23829,150045
,4,23830,150050
,4,23831,150055
,4,23832,150060
,4,23833,150065
,4,23834,150070
,4,23835,150075
,4,23836,150080
,4,23837,150085
,4,23838,150090
,4,23839,150095
,4,23840,150100
,4,23841,150105
,4,23842,150110
,4,23843,150115
,4,23844,150120
,4,23845,150125
,4,23846,150130
,4,23847,150135
,4,23848,150140
,4,23849,150145
,4,23850,150150
,4,23851,150155
,4,23852,150160
,4,23853,150165
,4,23854,150170
,4,23855,150175
,4,23856,150180
,4,23857,150185
,4,23858,150190
,4,23859,150195
,4,23860,150200
,4,23861,150205
,4,23862,150210
,4,23863,150215
,4,23864,150220
,4,23865,150225
,4,23866,150230
,4,23867,150235
,4,23868,150240
,4,23869,150245
,4,23870,150250
,4,23871,150255
,4,23872,150260
,4,23873,150265
,4,23874,150270
,4,23875,150275
,4,23876,150280
,4,23877,150285
,4,23878,150290
,4,23879,150295
,4,23880,150300
,4,23881,150305
,4,23882,150310
,4,23883,150315
,4,23884,150320
,4,23885,150325
,4,23886,150330
,4,23887,150335
,4,23888,150340
,4,23889,150345
,4,23890,150350
,4,23891,150355
,4,23892,150360
,4,23893,150365
,4,23894,150370
,4,23895,150375
,4,23896,150380
,4,23897,150385
,4,23898,150390
,4,23899,150395
,4,23900,150400
,4,23901,150405
,4,23902,150410
,4,23903,150415
,4,23904,150420
,4,23905,150425
,4,23906,150430
,4,23907,150435
,4,23908,150440
,4,23909,150445
,4,23910,150450
,4,23911,150455
,4,23912,150460
,4,23913,150465
,4,23914,150470
,4,23915,150475
,4,23916,150480
,4,23917,150485
,4,23918,150490
,4,23919,150495
,4,23920,150500
,4,23921,150505
,4,23922,150510
,4,23923,150515
,4,23924,150520
,4,23925,150525
,4,23926,150530
,4,23927,150535
,4,23928,150540
,4,23929,150545
,4,23930,150550
,4,23931,150555
,4,23932,150560
,4,23933,150565
,4,23934,150570
,4,23935,150575
,4,23936,150580
,4,23937,150585
,4,23938,150590
,4,23939,150595
,4,23940,150600
,4,23941,150605
,4,23942,150610
,4,23943,150615
,4,23944,150620
,4,23945,150625
,4,23946,150630
,4,23947,150635
,4,23948,150640
,4,23949,150645
,4,23950,150650
,4,23951,150655
,4,23952,150660
,4,23953,150665
,4,23954,150670
,4,23955,150675
,4,23956,150680
,4,23957,150685
,4,23958,150690
,4,23959,150695
,4,23960,150700
,4,23961,150705
,4,23962,150710
,4,23963,150715
,4,23964,150720
,4,23965,150725
,4,23966,150730
,4,23967,150735
,4,23968,150740
,4,23969,150745
,4,23970,150750
,4,23971,150755
,4,23972,150760
,4,23973,150765
,4,23974,150770
,4,23975,150775
,4,23976,150780
,4,23977,150785
,4,23978,150790
,4,23979,150795
,4,23980,150800
,4,23981,150805
,4,23982,150810
,4,23983,150815
,4,23984,150820
,4,23985,150825
,4,23986,150830
,4,23987,150835
,4,23988,150840
,4,23989,150845
,4,23990,150850
,4,23991,150855
,4,23992,150860
,4,23993,150865
,4,23994,150870
,4,23995,150875
,4,23996,150880
,4,23997,150885
,4,23998,150890
,4,23999,150895
,4,24000,150900
,4,24001,150905
,4,24002,150910
,4,24003,150915
,4,24004,150920
,4,24005,150925
,4,24006,150930
,4,24007,150935
,4,24008,150940
,4,24009,150945
,4,24010,150950
,4,24011,150955
,4,24012,150960
,4,24013,150965
,4,24014,150970
,4,24015,150975
,4,24016,150980
,4,24017,150985
,4,24018,150990
,4,24019,150995
,4,24020,151000
,4,24021,151005
,4,24022,151010
,4,24023,151015
,4,24024,151020
,4,24025,151025
,4,24026,151030
,4,24027,151035
,4,24028,151040
,4,24029,151045
,4,24030,151050
,4,24031,151055
,4,24032,151060
,4,24033,151065
,4,24034,151070
,4,24035,151075
,4,24036,151080
,4,24037,151085
,4,24038,151090
,4,24039,151095
,4,24040,151100
,4,24041,151105
,4,24042,151110
,4,24043,151115
,4,24044,151120
,4,24045,151125
,4,24046,151130
,4,24047,151135
,4,24048,151140
,4,24049,151145
,4,24050,151150
,4,24051,151155
,4,24052,151160
,4,24053,151165
,4,24054,151170
,4,24055,151175
,4,24056,151180
,4,24057,151185
,4,24058,151190
,4,24059,151195
,4,24060,151200
,4,24061,151205
,4,24062,151210
,4,24063,151215
,4,24064,151220
,4,24065,151225
,4,24066,151230
,4,24067,151235
,4,24068,151240
,4,24069,151245
,4,24070,151250
,4,24071,151255
,4,24072,151260
,4,24073,151265
,4,24074,151270
,4,24075,151275
,4,24076,151280
,4,24077,151285
,4,24078,151290
,4,24079,151295
,4,24080,151300
,4,24081,151305
,4,24082,151310
,4,24083,151315
,4,24084,151320
,4,24085,151325
,4,24086,151330
,4,24087,151335
,4,24088,151340
,4,24089,151345
,4,24090,151350
,4,24091,151355
,4,24092,151360
,4,24093,151365
,4,24094,151370
,4,24095,151375
,4,24096,151380
,4,24097,151385
,4,24098,151390
,4,24099,151395
,4,24100,151400
,4,24101,151405
,4,24102,151410
,4,24103,151415
,4,24104,151420
,4,24105,151425
,4,24106,151430
,4,24107,151435
,4,24108,151440
,4,24109,151445
,4,24110,151450
,4,24111,151455
,4,24112,151460
,4,24113,151465
,4,24114,151470
,4,24115,151475
,4,24116,151480
,4,24117,151485
,4,24118,151490
,4,24119,151495
,4,24120,151500
,4,24121,151505
,4,24122,151510
,4,24123,151515
,4,24124,151520
,4,24125,151525
,4,24126,151530
,4,24127,151535
,4,24128,151540
,4,24129,151545
,4,24130,151550
,4,24131,151555
,4,24132,151560
,4,24133,151565
,4,24134,151570
,4,24135,151575
,4,24136,151580
,4,24137,151585
,4,24138,151590
,4,24139,151595
,4,24140,151600
,4,24141,151605
,4,24142,151610
,4,24143,151615
,4,24144,151620
,4,24145,151625
,4,24146,151630
,4,24147,151635
,4,24148,151640
,4,24149,151645
,4,24150,151650
,4,24151,151655
,4,24152,151660
,4,24153,151665
,4,24154,151670
,4,24155,151675
,4,24156,151680
,4,24157,151685
,4,24158,151690
,4,24159,151695
,4,24160,151700
,4,24161,151705
,4,24162,151710
,4,24163,151715
,4,24164,151720
,4,24165,151725
,4,24166,151730
,4,24167,151735
,4,24168,151740
,4,24169,151745
,4,24170,151750
,4,24171,151755
,4,24172,151760
,4,24173,151765
,4,24174,151770
,4,24175,151775
,4,24176,151780
,4,24177,151785
,4,24178,151790
,4,24179,151795
,4,24180,151800
,4,24181,151805
,4,24182,151810
,4,24183,151815
,4,24184,151820
,4,24185,151825
,4,24186,151830
,4,24187,151835
,4,24188,151840
,4,24189,151845
,4,24190,151850
,4,24191,151855
,4,24192,151860
,4,24193,151865
,4,24194,151870
,4,24195,151875
,4,24196,151880
,4,24197,151885
,4,24198,151890
,4,24199,151895
,4,24200,151900
,4,24201,151905
,4,24202,151910
,4,24203,151915
,4,24204,151920
,4,24205,151925
,4,24206,151930
,4,24207,151935
,4,24208,151940
,4,24209,151945
,4,24210,151950
,4,24211,151955
,4,24212,151960
,4,24213,151965
,4,24214,151970
,4,24215,151975
,4,24216,151980
,4,24217,151985
,4,24218,151990
,4,24219,151995
,4,24220,152000
,4,24221,152005
,4,24222,152010
,4,24223,152015
,4,24224,152020
,4,24225,152025
,4,24226,152030
,4,24227,152035
,4,24228,152040
,4,24229,152045
,4,24230,152050
,4,24231,152055
,4,24232,152060
,4,24233,152065
,4,24234,152070
,4,24235,152075
,4,24236,152080
,4,24237,152085
,4,24238,152090
,4,24239,152095
,4,24240,152100
,4,24241,152105
,4,24242,152110
,4,24243,152115
,4,24244,152120
,4,24245,152125
,4,24246,152130
,4,24247,152135
,4,24248,152140
,4,24249,152145
,4,24250,152150
,4,24251,152155
,4,24252,152160
,4,24253,152165
,4,24254,152170
,4,24255,152175
,4,24256,152180
,4,24257,152185
,4,24258,152190
,4,24259,152195
,4,24260,152200
,4,24261,152205
,4,24262,152210
,4,24263,152215
,4,24264,152220
,4,24265,152225
,4,24266,152230
,4,24267,152235
,4,24268,152240
,4,24269,152245
,4,24270,152250
,4,24271,152255
,4,24272,152260
,4,24273,152265
,4,24274,152270
,4,24275,152275
,4,24276,152280
,4,24277,152285
,4,24278,152290
,4,24279,152295
,4,24280,152300
,4,24281,152305
,4,24282,152310
,4,24283,152315
,4,24284,152320
,4,24285,152325
,4,24286,152330
,4,24287,152335
,4,24288,152340
,4,24289,152345
,4,24290,152350
,4,24291,152355
,4,24292,152360
,4,24293,152365
,4,24294,152370
,4,24295,152375
,4,24296,152380
,4,24297,152385
,4,24298,152390
,4,24299,152395
,4,24300,152400
,4,24301,152405
,4,24302,152410
,4,24303,152415
,4,24304,152420
,4,24305,152425
,4,24306,152430
,4,24307,152435
,4,24308,152440
,4,24309,152445
,4,24310,152450
,4,24311,152455
,4,24312,152460
,4,24313,152465
,4,24314,152470
,4,24315,152475
,4,24316,152480
,4,24317,152485
,4,24318,152490
,4,24319,152495
,4,24320,152500
,4,24321,152505
,4,24322,152510
,4,24323,152515
,4,24324,152520
,4,24325,152525
,4,24326,152530
,4,24327,152535
,4,24328,152540
,4,24329,152545
,4,24330,152550
,4,24331,152555
,4,24332,152560
,4,24333,152565
,4,24334,152570
,4,24335,152575
,4,24336,152580
,4,24337,152585
,4,24338,152590
,4,24339,152595
,4,24340,152600
,4,24341,152605
,4,24342,152610
,4,24343,152615
,4,24344,152620
,4,24345,152625
,4,24346,152630
,4,24347,152635
,4,24348,152640
,4,24349,152645
,4,24350,152650
,4,24351,152655
,4,24352,152660
,4,24353,152665
,4,24354,152670
,4,24355,152675
,4,24356,152680
,4,24357,152685
,4,24358,152690
,4,24359,152695
,4,24360,152700
,4,24361,152705
,4,24362,152710
,4,24363,152715
,4,24364,152720
,4,24365,152725
,4,24366,152730
,4,24367,152735
,4,24368,152740
,4,24369,152745
,4,24370,152750
,4,24371,152755
,4,24372,152760
,4,24373,152765
,4,24374,152770
,4,24375,152775
,4,24376,152780
,4,24377,152785
,4,24378,152790
,4,24379,152795
,4,24380,152800
,4,24381,152805
,4,24382,152810
,4,24383,152815
,4,24384,152820
,4,24385,152825
,4,24386,152830
,4,24387,152835
,4,24388,152840
,4,24389,152845
,4,24390,152850
,4,24391,152855
,4,24392,152860
,4,24393,152865
,4,24394,152870
,4,24395,152875
,4,24396,152880
,4,24397,152885
,4,24398,152890
,4,24399,152895
,4,24400,152900
,4,24401,152905
,4,24402,152910
,4,24403,152915
,4,24404,152920
,4,24405,152925
,4,24406,152930
,4,24407,152935
,4,24408,152940
,4,24409,152945
,4,24410,152950
,4,24411,152955
,4,24412,152960
,4,24413,152965
,4,24414,152970
,4,24415,152975
,4,24416,152980
,4,24417,152985
,4,24418,152990
,4,24419,152995
,4,24420,153000
,4,24421,153005
,4,24422,153010
,4,24423,153015
,4,24424,153020
,4,24425,153025
,4,24426,153030
,4,24427,153035
,4,24428,153040
,4,24429,153045
,4,24430,153050
,4,24431,153055
,4,24432,153060
,4,24433,153065
,4,24434,153070
,4,24435,153075
,4,24436,153080
,4,24437,153085
,4,24438,153090
,4,24439,153095
,4,24440,153100
,4,24441,153105
,4,24442,153110
,4,24443,153115
,4,24444,153120
,4,24445,153125
,4,24446,153130
,4,24447,153135
,4,24448,153140
,4,24449,153145
,4,24450,153150
,4,24451,153155
,4,24452,153160
,4,24453,153165
,4,24454,153170
,4,24455,153175
,4,24456,153180
,4,24457,153185
,4,24458,153190
,4,24459,153195
,4,24460,153200
,4,24461,153205
,4,24462,153210
,4,24463,153215
,4,24464,153220
,4,24465,153225
,4,24466,153230
,4,24467,153235
,4,24468,153240
,4,24469,153245
,4,24470,153250
,4,24471,153255
,4,24472,153260
,4,24473,153265
,4,24474,153270
,4,24475,153275
,4,24476,153280
,4,24477,153285
,4,24478,153290
,4,24479,153295
,4,24480,153300
,4,24481,153305
,4,24482,153310
,4,24483,153315
,4,24484,153320
,4,24485,153325
,4,24486,153330
,4,24487,153335
,4,24488,153340
,4,24489,153345
,4,24490,153350
,4,24491,153355
,4,24492,153360
,4,24493,153365
,4,24494,153370
,4,24495,153375
,4,24496,153380
,4,24497,153385
,4,24498,153390
,4,24499,153395
,4,24500,153400
,4,24501,153405
,4,24502,153410
,4,24503,153415
,4,24504,153420
,4,24505,153425
,4,24506,153430
,4,24507,153435
,4,24508,153440
,4,24509,153445
,4,24510,153450
,4,24511,153455
,4,24512,153460
,4,24513,153465
,4,24514,153470
,4,24515,153475
,4,24516,153480
,4,24517,153485
,4,24518,153490
,4,24519,153495
,4,24520,153500
,4,24521,153505
,4,24522,153510
,4,24523,153515
,4,24524,153520
,4,24525,153525
,4,24526,153530
,4,24527,153535
,4,24528,153540
,4,24529,153545
,4,24530,153550
,4,24531,153555
,4,24532,153560
,4,24533,153565
,4,24534,153570
,4,24535,153575
,4,24536,153580
,4,24537,153585
,4,24538,153590
,4,24539,153595
,4,24540,153600
,4,24541,153605
,4,24542,153610
,4,24543,153615
,4,24544,153620
,4,24545,153625
,4,24546,153630
,4,24547,153635
,4,24548,153640
,4,24549,153645
,4,24550,153650
,4,24551,153655
,4,24552,153660
,4,24553,153665
,4,24554,153670
,4,24555,153675
,4,24556,153680
,4,24557,153685
,4,24558,153690
,4,24559,153695
,4,24560,153700
,4,24561,153705
,4,24562,153710
,4,24563,153715
,4,24564,153720
,4,24565,153725
,4,24566,153730
,4,24567,153735
,4,24568,153740
,4,24569,153745
,4,24570,153750
,4,24571,153755
,4,24572,153760
,4,24573,153765
,4,24574,153770
,4,24575,153775
,4,24576,153780
,4,24577,153785
,4,24578,153790
,4,24579,153795
,4,24580,153800
,4,24581,153805
,4,24582,153810
,4,24583,153815
,4,24584,153820
,4,24585,153825
,4,24586,153830
,4,24587,153835
,4,24588,153840
,4,24589,153845
,4,24590,153850
,4,24591,153855
,4,24592,153860
,4,24593,153865
,4,24594,153870
,4,24595,153875
,4,24596,153880
,4,24597,153885
,4,24598,153890
,4,24599,153895
,4,24600,153900
,4,24601,153905
,4,24602,153910
,4,24603,153915
,4,24604,153920
,4,24605,153925
,4,24606,153930
,4,24607,153935
,4,24608,153940
,4,24609,153945
,4,24610,153950
,4,24611,153955
,4,24612,153960
,4,24613,153965
,4,24614,153970
,4,24615,153975
,4,24616,153980
,4,24617,153985
,4,24618,153990
,4,24619,153995
,4,24620,154000
,4,24621,154005
,4,24622,154010
,4,24623,154015
,4,24624,154020
,4,24625,154025
,4,24626,154030
,4,24627,154035
,4,24628,154040
,4,24629,154045
,4,24630,154050
,4,24631,154055
,4,24632,154060
,4,24633,154065
,4,24634,154070
,4,24635,154075
,4,24636,154080
,4,24637,154085
,4,24638,154090
,4,24639,154095
,4,24640,154100
,4,24641,154105
,4,24642,154110
,4,24643,154115
,4,24644,154120
,4,24645,154125
,4,24646,154130
,4,24647,154135
,4,24648,154140
,4,24649,154145
,4,24650,154150
,4,24651,154155
,4,24652,154160
,4,24653,154165
,4,24654,154170
,4,24655,154175
,4,24656,154180
,4,24657,154185
,4,24658,154190
,4,24659,154195
,4,24660,154200
,4,24661,154205
,4,24662,154210
,4,24663,154215
,4,24664,154220
,4,24665,154225
,4,24666,154230
,4,24667,154235
,4,24668,154240
,4,24669,154245
,4,24670,154250
,4,24671,154255
,4,24672,154260
,4,24673,154265
,4,24674,154270
,4,24675,154275
,4,24676,154280
,4,24677,154285
,4,24678,154290
,4,24679,154295
,4,24680,154300
,4,24681,154305
,4,24682,154310
,4,24683,154315
,4,24684,154320
,4,24685,154325
,4,24686,154330
,4,24687,154335
,4,24688,154340
,4,24689,154345
,4,24690,154350
,4,24691,154355
,4,24692,154360
,4,24693,154365
,4,24694,154370
,4,24695,154375
,4,24696,154380
,4,24697,154385
,4,24698,154390
,4,24699,154395
,4,24700,154400
,4,24701,154405
,4,24702,154410
,4,24703,154415
,4,24704,154420
,4,24705,154425
,4,24706,154430
,4,24707,154435
,4,24708,154440
,4,24709,154445
,4,24710,154450
,4,24711,154455
,4,24712,154460
,4,24713,154465
,4,24714,154470
,4,24715,154475
,4,24716,154480
,4,24717,154485
,4,24718,154490
,4,24719,154495
,4,24720,154500
,4,24721,154505
,4,24722,154510
,4,24723,154515
,4,24724,154520
,4,24725,154525
,4,24726,154530
,4,24727,154535
,4,24728,154540
,4,24729,154545
,4,24730,154550
,4,24731,154555
,4,24732,154560
,4,24733,154565
,4,24734,154570
,4,24735,154575
,4,24736,154580
,4,24737,154585
,4,24738,154590
,4,24739,154595
,4,24740,154600
,4,24741,154605
,4,24742,154610
,4,24743,154615
,4,24744,154620
,4,24745,154625
,4,24746,154630
,4,24747,154635
,4,24748,154640
,4,24749,154645
,4,24750,154650
,4,24751,154655
,4,24752,154660
,4,24753,154665
,4,24754,154670
,4,24755,154675
,4,24756,154680
,4,24757,154685
,4,24758,154690
,4,24759,154695
,4,24760,154700
,4,24761,154705
,4,24762,154710
,4,24763,154715
,4,24764,154720
,4,24765,154725
,4,24766,154730
,4,24767,154735
,4,24768,154740
,4,24769,154745
,4,24770,154750
,4,24771,154755
,4,24772,154760
,4,24773,154765
,4,24774,154770
,4,24775,154775
,4,24776,154780
,4,24777,154785
,4,24778,154790
,4,24779,154795
,4,24780,154800
,4,24781,154805
,4,24782,154810
,4,24783,154815
,4,24784,154820
,4,24785,154825
,4,24786,154830
,4,24787,154835
,4,24788,154840
,4,24789,154845
,4,24790,154850
,4,24791,154855
,4,24792,154860
,4,24793,154865
,4,24794,154870
,4,24795,154875
,4,24796,154880
,4,24797,154885
,4,24798,154890
,4,24799,154895
,4,24800,154900
,4,24801,154905
,4,24802,154910
,4,24803,154915
,4,24804,154920
,4,24805,154925
,4,24806,154930
,4,24807,154935
,4,24808,154940
,4,24809,154945
,4,24810,154950
,4,24811,154955
,4,24812,154960
,4,24813,154965
,4,24814,154970
,4,24815,154975
,4,24816,154980
,4,24817,154985
,4,24818,154990
,4,24819,154995
,4,24820,155000
,4,24821,155005
,4,24822,155010
,4,24823,155015
,4,24824,155020
,4,24825,155025
,4,24826,155030
,4,24827,155035
,4,24828,155040
,4,24829,155045
,4,24830,155050
,4,24831,155055
,4,24832,155060
,4,24833,155065
,4,24834,155070
,4,24835,155075
,4,24836,155080
,4,24837,155085
,4,24838,155090
,4,24839,155095
,4,24840,155100
,4,24841,155105
,4,24842,155110
,4,24843,155115
,4,24844,155120
,4,24845,155125
,4,24846,155130
,4,24847,155135
,4,24848,155140
,4,24849,155145
,4,24850,155150
,4,24851,155155
,4,24852,155160
,4,24853,155165
,4,24854,155170
,4,24855,155175
,4,24856,155180
,4,24857,155185
,4,24858,155190
,4,24859,155195
,4,24860,155200
,4,24861,155205
,4,24862,155210
,4,24863,155215
,4,24864,155220
,4,24865,155225
,4,24866,155230
,4,24867,155235
,4,24868,155240
,4,24869,155245
,4,24870,155250
,4,24871,155255
,4,24872,155260
,4,24873,155265
,4,24874,155270
,4,24875,155275
,4,24876,155280
,4,24877,155285
,4,24878,155290
,4,24879,155295
,4,24880,155300
,4,24881,155305
,4,24882,155310
,4,24883,155315
,4,24884,155320
,4,24885,155325
,4,24886,155330
,4,24887,155335
,4,24888,155340
,4,24889,155345
,4,24890,155350
,4,24891,155355
,4,24892,155360
,4,24893,155365
,4,24894,155370
,4,24895,155375
,4,24896,155380
,4,24897,155385
,4,24898,155390
,4,24899,155395
,4,24900,155400
,4,24901,155405
,4,24902,155410
,4,24903,155415
,4,24904,155420
,4,24905,155425
,4,24906,155430
,4,24907,155435
,4,24908,155440
,4,24909,155445
,4,24910,155450
,4,24911,155455
,4,24912,155460
,4,24913,155465
,4,24914,155470
,4,24915,155475
,4,24916,155480
,4,24917,155485
,4,24918,155490
,4,24919,155495
,4,24920,155500
,4,24921,155505
,4,24922,155510
,4,24923,155515
,4,24924,155520
,4,24925,155525
,4,24926,155530
,4,24927,155535
,4,24928,155540
,4,24929,155545
,4,24930,155550
,4,24931,155555
,4,24932,155560
,4,24933,155565
,4,24934,155570
,4,24935,155575
,4,24936,155580
,4,24937,155585
,4,24938,155590
,4,24939,155595
,4,24940,155600
,4,24941,155605
,4,24942,155610
,4,24943,155615
,4,24944,155620
,4,24945,155625
,4,24946,155630
,4,24947,155635
,4,24948,155640
,4,24949,155645
,4,24950,155650
,4,24951,155655
,4,24952,155660
,4,24953,155665
,4,24954,155670
,4,24955,155675
,4,24956,155680
,4,24957,155685
,4,24958,155690
,4,24959,155695
,4,24960,155700
,4,24961,155705
,4,24962,155710
,4,24963,155715
,4,24964,155720
,4,24965,155725
,4,24966,155730
,4,24967,155735
,4,24968,155740
,4,24969,155745
,4,24970,155750
,4,24971,155755
,4,24972,155760
,4,24973,155765
,4,24974,155770
,4,24975,155775
,4,24976,155780
,4,24977,155785
,4,24978,155790
,4,24979,155795
,4,24980,155800
,4,24981,155805
,4,24982,155810
,4,24983,155815
,4,24984,155820
,4,24985,155825
,4,24986,155830
,4,24987,155835
,4,24988,155840
,4,24989,155845
,4,24990,155850
,4,24991,155855
,4,24992,155860
,4,24993,155865
,4,24994,155870
,4,24995,155875
,4,24996,155880
,4,24997,155885
,4,24998,155890
,4,24999,155895
,4,25000,155900
,4,25001,155905
,4,25002,155910
,4,25003,155915
,4,25004,155920
,4,25005,155925
,4,25006,155930
,4,25007,155935
,4,25008,155940
,4,25009,155945
,4,25010,155950
,4,25011,155955
,4,25012,155960
,4,25013,155965
,4,25014,155970
,4,25015,155975
,4,25016,155980
,4,25017,155985
,4,25018,155990
,4,25019,155995
,4,25020,156000
,4,25021,156005
,4,25022,156010
,4,25023,156015
,4,25024,156020
,4,25025,156025
,4,25026,156030
,4,25027,156035
,4,25028,156040
,4,25029,156045
,4,25030,156050
,4,25031,156055
,4,25032,156060
,4,25033,156065
,4,25034,156070
,4,25035,156075
,4,25036,156080
,4,25037,156085
,4,25038,156090
,4,25039,156095
,4,25040,156100
,4,25041,156105
,4,25042,156110
,4,25043,156115
,4,25044,156120
,4,25045,156125
,4,25046,156130
,4,25047,156135
,4,25048,156140
,4,25049,156145
,4,25050,156150
,4,25051,156155
,4,25052,156160
,4,25053,156165
,4,25054,156170
,4,25055,156175
,4,25056,156180
,4,25057,156185
,4,25058,156190
,4,25059,156195
,4,25060,156200
,4,25061,156205
,4,25062,156210
,4,25063,156215
,4,25064,156220
,4,25065,156225
,4,25066,156230
,4,25067,156235
,4,25068,156240
,4,25069,156245
,4,25070,156250
,4,25071,156255
,4,25072,156260
,4,25073,156265
,4,25074,156270
,4,25075,156275
,4,25076,156280
,4,25077,156285
,4,25078,156290
,4,25079,156295
,4,25080,156300
,4,25081,156305
,4,25082,156310
,4,25083,156315
,4,25084,156320
,4,25085,156325
,4,25086,156330
,4,25087,156335
,4,25088,156340
,4,25089,156345
,4,25090,156350
,4,25091,156355
,4,25092,156360
,4,25093,156365
,4,25094,156370
,4,25095,156375
,4,25096,156380
,4,25097,156385
,4,25098,156390
,4,25099,156395
,4,25100,156400
,4,25101,156405
,4,25102,156410
,4,25103,156415
,4,25104,156420
,4,25105,156425
,4,25106,156430
,4,25107,156435
,4,25108,156440
,4,25109,156445
,4,25110,156450
,4,25111,156455
,4,25112,156460
,4,25113,156465
,4,25114,156470
,4,25115,156475
,4,25116,156480
,4,25117,156485
,4,25118,156490
,4,25119,156495
,4,25120,156500
,4,25121,156505
,4,25122,156510
,4,25123,156515
,4,25124,156520
,4,25125,156525
,4,25126,156530
,4,25127,156535
,4,25128,156540
,4,25129,156545
,4,25130,156550
,4,25131,156555
,4,25132,156560
,4,25133,156565
,4,25134,156570
,4,25135,156575
,4,25136,156580
,4,25137,156585
,4,25138,156590
,4,25139,156595
,4,25140,156600
,4,25141,156605
,4,25142,156610
,4,25143,156615
,4,25144,156620
,4,25145,156625
,4,25146,156630
,4,25147,156635
,4,25148,156640
,4,25149,156645
,4,25150,156650
,4,25151,156655
,4,25152,156660
,4,25153,156665
,4,25154,156670
,4,25155,156675
,4,25156,156680
,4,25157,156685
,4,25158,156690
,4,25159,156695
,4,25160,156700
,4,25161,156705
,4,25162,156710
,4,25163,156715
,4,25164,156720
,4,25165,156725
,4,25166,156730
,4,25167,156735
,4,25168,156740
,4,25169,156745
,4,25170,156750
,4,25171,156755
,4,25172,156760
,4,25173,156765
,4,25174,156770
,4,25175,156775
,4,25176,156780
,4,25177,156785
,4,25178,156790
,4,25179,156795
,4,25180,156800
,4,25181,156805
,4,25182,156810
,4,25183,156815
,4,25184,156820
,4,25185,156825
,4,25186,156830
,4,25187,156835
,4,25188,156840
,4,25189,156845
,4,25190,156850
,4,25191,156855
,4,25192,156860
,4,25193,156865
,4,25194,156870
,4,25195,156875
,4,25196,156880
,4,25197,156885
,4,25198,156890
,4,25199,156895
,4,25200,156900
,4,25201,156905
,4,25202,156910
,4,25203,156915
,4,25204,156920
,4,25205,156925
,4,25206,156930
,4,25207,156935
,4,25208,156940
,4,25209,156945
,4,25210,156950
,4,25211,156955
,4,25212,156960
,4,25213,156965
,4,25214,156970
,4,25215,156975
,4,25216,156980
,4,25217,156985
,4,25218,156990
,4,25219,156995
,4,25220,157000
,4,25221,157005
,4,25222,157010
,4,25223,157015
,4,25224,157020
,4,25225,157025
,4,25226,157030
,4,25227,157035
,4,25228,157040
,4,25229,157045
,4,25230,157050
,4,25231,157055
,4,25232,157060
,4,25233,157065
,4,25234,157070
,4,25235,157075
,4,25236,157080
,4,25237,157085
,4,25238,157090
,4,25239,157095
,4,25240,157100
,4,25241,157105
,4,25242,157110
,4,25243,157115
,4,25244,157120
,4,25245,157125
,4,25246,157130
,4,25247,157135
,4,25248,157140
,4,25249,157145
,4,25250,157150
,4,25251,157155
,4,25252,157160
,4,25253,157165
,4,25254,157170
,4,25255,157175
,4,25256,157180
,4,25257,157185
,4,25258,157190
,4,25259,157195
,4,25260,157200
,4,25261,157205
,4,25262,157210
,4,25263,157215
,4,25264,157220
,4,25265,157225
,4,25266,157230
,4,25267,157235
,4,25268,157240
,4,25269,157245
,4,25270,157250
,4,25271,157255
,4,25272,157260
,4,25273,157265
,4,25274,157270
,4,25275,157275
,4,25276,157280
,4,25277,157285
,4,25278,157290
,4,25279,157295
,4,25280,157300
,4,25281,157305
,4,25282,157310
,4,25283,157315
,4,25284,157320
,4,25285,157325
,4,25286,157330
,4,25287,157335
,4,25288,157340
,4,25289,157345
,4,25290,157350
,4,25291,157355
,4,25292,157360
,4,25293,157365
,4,25294,157370
,4,25295,157375
,4,25296,157380
,4,25297,157385
,4,25298,157390
,4,25299,157395
,4,25300,157400
,4,25301,157405
,4,25302,157410
,4,25303,157415
,4,25304,157420
,4,25305,157425
,4,25306,157430
,4,25307,157435
,4,25308,157440
,4,25309,157445
,4,25310,157450
,4,25311,157455
,4,25312,157460
,4,25313,157465
,4,25314,157470
,4,25315,157475
,4,25316,157480
,4,25317,157485
,4,25318,157490
,4,25319,157495
,4,25320,157500
,4,25321,157505
,4,25322,157510
,4,25323,157515
,4,25324,157520
,4,25325,157525
,4,25326,157530
,4,25327,157535
,4,25328,157540
,4,25329,157545
,4,25330,157550
,4,25331,157555
,4,25332,157560
,4,25333,157565
,4,25334,157570
,4,25335,157575
,4,25336,157580
,4,25337,157585
,4,25338,157590
,4,25339,157595
,4,25340,157600
,4,25341,157605
,4,25342,157610
,4,25343,157615
,4,25344,157620
,4,25345,157625
,4,25346,157630
,4,25347,157635
,4,25348,157640
,4,25349,157645
,4,25350,157650
,4,25351,157655
,4,25352,157660
,4,25353,157665
,4,25354,157670
,4,25355,157675
,4,25356,157680
,4,25357,157685
,4,25358,157690
,4,25359,157695
,4,25360,157700
,4,25361,157705
,4,25362,157710
,4,25363,157715
,4,25364,157720
,4,25365,157725
,4,25366,157730
,4,25367,157735
,4,25368,157740
,4,25369,157745
,4,25370,157750
,4,25371,157755
,4,25372,157760
,4,25373,157765
,4,25374,157770
,4,25375,157775
,4,25376,157780
,4,25377,157785
,4,25378,157790
,4,25379,157795
,4,25380,157800
,4,25381,157805
,4,25382,157810
,4,25383,157815
,4,25384,157820
,4,25385,157825
,4,25386,157830
,4,25387,157835
,4,25388,157840
,4,25389,157845
,4,25390,157850
,4,25391,157855
,4,25392,157860
,4,25393,157865
,4,25394,157870
,4,25395,157875
,4,25396,157880
,4,25397,157885
,4,25398,157890
,4,25399,157895
,4,25400,157900
,4,25401,157905
,4,25402,157910
,4,25403,157915
,4,25404,157920
,4,25405,157925
,4,25406,157930
,4,25407,157935
,4,25408,157940
,4,25409,157945
,4,25410,157950
,4,25411,157955
,4,25412,157960
,4,25413,157965
,4,25414,157970
,4,25415,157975
,4,25416,157980
,4,25417,157985
,4,25418,157990
,4,25419,157995
,4,25420,158000
,4,25421,158005
,4,25422,158010
,4,25423,158015
,4,25424,158020
,4,25425,158025
,4,25426,158030
,4,25427,158035
,4,25428,158040
,4,25429,158045
,4,25430,158050
,4,25431,158055
,4,25432,158060
,4,25433,158065
,4,25434,158070
,4,25435,158075
,4,25436,158080
,4,25437,158085
,4,25438,158090
,4,25439,158095
,4,25440,158100
,4,25441,158105
,4,25442,158110
,4,25443,158115
,4,25444,158120
,4,25445,158125
,4,25446,158130
,4,25447,158135
,4,25448,158140
,4,25449,158145
,4,25450,158150
,4,25451,158155
,4,25452,158160
,4,25453,158165
,4,25454,158170
,4,25455,158175
,4,25456,158180
,4,25457,158185
,4,25458,158190
,4,25459,158195
,4,25460,158200
,4,25461,158205
,4,25462,158210
,4,25463,158215
,4,25464,158220
,4,25465,158225
,4,25466,158230
,4,25467,158235
,4,25468,158240
,4,25469,158245
,4,25470,158250
,4,25471,158255
,4,25472,158260
,4,25473,158265
,4,25474,158270
,4,25475,158275
,4,25476,158280
,4,25477,158285
,4,25478,158290
,4,25479,158295
,4,25480,158300
,4,25481,158305
,4,25482,158310
,4,25483,158315
,4,25484,158320
,4,25485,158325
,4,25486,158330
,4,25487,158335
,4,25488,158340
,4,25489,158345
,4,25490,158350
,4,25491,158355
,4,25492,158360
,4,25493,158365
,4,25494,158370
,4,25495,158375
,4,25496,158380
,4,25497,158385
,4,25498,158390
,4,25499,158395
,4,25500,158400
,4,25501,158405
,4,25502,158410
,4,25503,158415
,4,25504,158420
,4,25505,158425
,4,25506,158430
,4,25507,158435
,4,25508,158440
,4,25509,158445
,4,25510,158450
,4,25511,158455
,4,25512,158460
,4,25513,158465
,4,25514,158470
,4,25515,158475
,4,25516,158480
,4,25517,158485
,4,25518,158490
,4,25519,158495
,4,25520,158500
,4,25521,158505
,4,25522,158510
,4,25523,158515
,4,25524,158520
,4,25525,158525
,4,25526,158530
,4,25527,158535
,4,25528,158540
,4,25529,158545
,4,25530,158550
,4,25531,158555
,4,25532,158560
,4,25533,158565
,4,25534,158570
,4,25535,158575
,4,25536,158580
,4,25537,158585
,4,25538,158590
,4,25539,158595
,4,25540,158600
,4,25541,158605
,4,25542,158610
,4,25543,158615
,4,25544,158620
,4,25545,158625
,4,25546,158630
,4,25547,158635
,4,25548,158640
,4,25549,158645
,4,25550,158650
,4,25551,158655
,4,25552,158660
,4,25553,158665
,4,25554,158670
,4,25555,158675
,4,25556,158680
,4,25557,158685
,4,25558,158690
,4,25559,158695
,4,25560,158700
,4,25561,158705
,4,25562,158710
,4,25563,158715
,4,25564,158720
,4,25565,158725
,4,25566,158730
,4,25567,158735
,4,25568,158740
,4,25569,158745
,4,25570,158750
,4,25571,158755
,4,25572,158760
,4,25573,158765
,4,25574,158770
,4,25575,158775
,4,25576,158780
,4,25577,158785
,4,25578,158790
,4,25579,158795
,4,25580,158800
,4,25581,158805
,4,25582,158810
,4,25583,158815
,4,25584,158820
,4,25585,158825
,4,25586,158830
,4,25587,158835
,4,25588,158840
,4,25589,158845
,4,25590,158850
,4,25591,158855
,4,25592,158860
,4,25593,158865
,4,25594,158870
,4,25595,158875
,4,25596,158880
,4,25597,158885
,4,25598,158890
,4,25599,158895
,4,25600,158900
,4,25601,158905
,4,25602,158910
,4,25603,158915
,4,25604,158920
,4,25605,158925
,4,25606,158930
,4,25607,158935
,4,25608,158940
,4,25609,158945
,4,25610,158950
,4,25611,158955
,4,25612,158960
,4,25613,158965
,4,25614,158970
,4,25615,158975
,4,25616,158980
,4,25617,158985
,4,25618,158990
,4,25619,158995
,4,25620,159000
,4,25621,159005
,4,25622,159010
,4,25623,159015
,4,25624,159020
,4,25625,159025
,4,25626,159030
,4,25627,159035
,4,25628,159040
,4,25629,159045
,4,25630,159050
,4,25631,159055
,4,25632,159060
,4,25633,159065
,4,25634,159070
,4,25635,159075
,4,25636,159080
,4,25637,159085
,4,25638,159090
,4,25639,159095
,4,25640,159100
,4,25641,159105
,4,25642,159110
,4,25643,159115
,4,25644,159120
,4,25645,159125
,4,25646,159130
,4,25647,159135
,4,25648,159140
,4,25649,159145
,4,25650,159150
,4,25651,159155
,4,25652,159160
,4,25653,159165
,4,25654,159170
,4,25655,159175
,4,25656,159180
,4,25657,159185
,4,25658,159190
,4,25659,159195
,4,25660,159200
,4,25661,159205
,4,25662,159210
,4,25663,159215
,4,25664,159220
,4,25665,159225
,4,25666,159230
,4,25667,159235
,4,25668,159240
,4,25669,159245
,4,25670,159250
,4,25671,159255
,4,25672,159260
,4,25673,159265
,4,25674,159270
,4,25675,159275
,4,25676,159280
,4,25677,159285
,4,25678,159290
,4,25679,159295
,4,25680,159300
,4,25681,159305
,4,25682,159310
,4,25683,159315
,4,25684,159320
,4,25685,159325
,4,25686,159330
,4,25687,159335
,4,25688,159340
,4,25689,159345
,4,25690,159350
,4,25691,159355
,4,25692,159360
,4,25693,159365
,4,25694,159370
,4,25695,159375
,4,25696,159380
,4,25697,159385
,4,25698,159390
,4,25699,159395
,4,25700,159400
,4,25701,159405
,4,25702,159410
,4,25703,159415
,4,25704,159420
,4,25705,159425
,4,25706,159430
,4,25707,159435
,4,25708,159440
,4,25709,159445
,4,25710,159450
,4,25711,159455
,4,25712,159460
,4,25713,159465
,4,25714,159470
,4,25715,159475
,4,25716,159480
,4,25717,159485
,4,25718,159490
,4,25719,159495
,4,25720,159500
,4,25721,159505
,4,25722,159510
,4,25723,159515
,4,25724,159520
,4,25725,159525
,4,25726,159530
,4,25727,159535
,4,25728,159540
,4,25729,159545
,4,25730,159550
,4,25731,159555
,4,25732,159560
,4,25733,159565
,4,25734,159570
,4,25735,159575
,4,25736,159580
,4,25737,159585
,4,25738,159590
,4,25739,159595
,4,25740,159600
,4,25741,159605
,4,25742,159610
,4,25743,159615
,4,25744,159620
,4,25745,159625
,4,25746,159630
,4,25747,159635
,4,25748,159640
,4,25749,159645
,4,25750,159650
,4,25751,159655
,4,25752,159660
,4,25753,159665
,4,25754,159670
,4,25755,159675
,4,25756,159680
,4,25757,159685
,4,25758,159690
,4,25759,159695
,4,25760,159700
,4,25761,159705
,4,25762,159710
,4,25763,159715
,4,25764,159720
,4,25765,159725
,4,25766,159730
,4,25767,159735
,4,25768,159740
,4,25769,159745
,4,25770,159750
,4,25771,159755
,4,25772,159760
,4,25773,159765
,4,25774,159770
,4,25775,159775
,4,25776,159780
,4,25777,159785
,4,25778,159790
,4,25779,159795
,4,25780,159800
,4,25781,159805
,4,25782,159810
,4,25783,159815
,4,25784,159820
,4,25785,159825
,4,25786,159830
,4,25787,159835
,4,25788,159840
,4,25789,159845
,4,25790,159850
,4,25791,159855
,4,25792,159860
,4,25793,159865
,4,25794,159870
,4,25795,159875
,4,25796,159880
,4,25797,159885
,4,25798,159890
,4,25799,159895
,4,25800,159900
,4,25801,159905
,4,25802,159910
,4,25803,159915
,4,25804,159920
,4,25805,159925
,4,25806,159930
,4,25807,159935
,4,25808,159940
,4,25809,159945
,4,25810,159950
,4,25811,159955
,4,25812,159960
,4,25813,159965
,4,25814,159970
,4,25815,159975
,4,25816,159980
,4,25817,159985
,4,25818,159990
,4,25819,159995
,4,25820,160000
,4,25821,160005
,4,25822,160010
,4,25823,160015
,4,25824,160020
,4,25825,160025
,4,25826,160030
,4,25827,160035
,4,25828,160040
,4,25829,160045
,4,25830,160050
,4,25831,160055
,4,25832,160060
,4,25833,160065
,4,25834,160070
,4,25835,160075
,4,25836,160080
,4,25837,160085
,4,25838,160090
,4,25839,160095
,4,25840,160100
,4,25841,160105
,4,25842,160110
,4,25843,160115
,4,25844,160120
,4,25845,160125
,4,25846,160130
,4,25847,160135
,4,25848,160140
,4,25849,160145
,4,25850,160150
,4,25851,160155
,4,25852,160160
,4,25853,160165
,4,25854,160170
,4,25855,160175
,4,25856,160180
,4,25857,160185
,4,25858,160190
,4,25859,160195
,4,25860,160200
,4,25861,160205
,4,25862,160210
,4,25863,160215
,4,25864,160220
,4,25865,160225
,4,25866,160230
,4,25867,160235
,4,25868,160240
,4,25869,160245
,4,25870,160250
,4,25871,160255
,4,25872,160260
,4,25873,160265
,4,25874,160270
,4,25875,160275
,4,25876,160280
,4,25877,160285
,4,25878,160290
,4,25879,160295
,4,25880,160300
,4,25881,160305
,4,25882,160310
,4,25883,160315
,4,25884,160320
,4,25885,160325
,4,25886,160330
,4,25887,160335
,4,25888,160340
,4,25889,160345
,4,25890,160350
,4,25891,160355
,4,25892,160360
,4,25893,160365
,4,25894,160370
,4,25895,160375
,4,25896,160380
,4,25897,160385
,4,25898,160390
,4,25899,160395
,4,25900,160400
,4,25901,160405
,4,25902,160410
,4,25903,160415
,4,25904,160420
,4,25905,160425
,4,25906,160430
,4,25907,160435
,4,25908,160440
,4,25909,160445
,4,25910,160450
,4,25911,160455
,4,25912,160460
,4,25913,160465
,4,25914,160470
,4,25915,160475
,4,25916,160480
,4,25917,160485
,4,25918,160490
,4,25919,160495
,4,25920,160500
,4,25921,160505
,4,25922,160510
,4,25923,160515
,4,25924,160520
,4,25925,160525
,4,25926,160530
,4,25927,160535
,4,25928,160540
,4,25929,160545
,4,25930,160550
,4,25931,160555
,4,25932,160560
,4,25933,160565
,4,25934,160570
,4,25935,160575
,4,25936,160580
,4,25937,160585
,4,25938,160590
,4,25939,160595
,4,25940,160600
,4,25941,160605
,4,25942,160610
,4,25943,160615
,4,25944,160620
,4,25945,160625
,4,25946,160630
,4,25947,160635
,4,25948,160640
,4,25949,160645
,4,25950,160650
,4,25951,160655
,4,25952,160660
,4,25953,160665
,4,25954,160670
,4,25955,160675
,4,25956,160680
,4,25957,160685
,4,25958,160690
,4,25959,160695
,4,25960,160700
,4,25961,160705
,4,25962,160710
,4,25963,160715
,4,25964,160720
,4,25965,160725
,4,25966,160730
,4,25967,160735
,4,25968,160740
,4,25969,160745
,4,25970,160750
,4,25971,160755
,4,25972,160760
,4,25973,160765
,4,25974,160770
,4,25975,160775
,4,25976,160780
,4,25977,160785
,4,25978,160790
,4,25979,160795
,4,25980,160800
,4,25981,160805
,4,25982,160810
,4,25983,160815
,4,25984,160820
,4,25985,160825
,4,25986,160830
,4,25987,160835
,4,25988,160840
,4,25989,160845
,4,25990,160850
,4,25991,160855
,4,25992,160860
,4,25993,160865
,4,25994,160870
,4,25995,160875
,4,25996,160880
,4,25997,160885
,4,25998,160890
,4,25999,160895
,4,26000,160900
,4,26001,160905
,4,26002,160910
,4,26003,160915
,4,26004,160920
,4,26005,160925
,4,26006,160930
,4,26007,160935
,4,26008,160940
,4,26009,160945
,4,26010,160950
,4,26011,160955
,4,26012,160960
,4,26013,160965
,4,26014,160970
,4,26015,160975
,4,26016,160980
,4,26017,160985
,4,26018,160990
,4,26019,160995
,4,26020,161000
,4,26021,161005
,4,26022,161010
,4,26023,161015
,4,26024,161020
,4,26025,161025
,4,26026,161030
,4,26027,161035
,4,26028,161040
,4,26029,161045
,4,26030,161050
,4,26031,161055
,4,26032,161060
,4,26033,161065
,4,26034,161070
,4,26035,161075
,4,26036,161080
,4,26037,161085
,4,26038,161090
,4,26039,161095
,4,26040,161100
,4,26041,161105
,4,26042,161110
,4,26043,161115
,4,26044,161120
,4,26045,161125
,4,26046,161130
,4,26047,161135
,4,26048,161140
,4,26049,161145
,4,26050,161150
,4,26051,161155
,4,26052,161160
,4,26053,161165
,4,26054,161170
,4,26055,161175
,4,26056,161180
,4,26057,161185
,4,26058,161190
,4,26059,161195
,4,26060,161200
,4,26061,161205
,4,26062,161210
,4,26063,161215
,4,26064,161220
,4,26065,161225
,4,26066,161230
,4,26067,161235
,4,26068,161240
,4,26069,161245
,4,26070,161250
,4,26071,161255
,4,26072,161260
,4,26073,161265
,4,26074,161270
,4,26075,161275
,4,26076,161280
,4,26077,161285
,4,26078,161290
,4,26079,161295
,4,26080,161300
,4,26081,161305
,4,26082,161310
,4,26083,161315
,4,26084,161320
,4,26085,161325
,4,26086,161330
,4,26087,161335
,4,26088,161340
,4,26089,161345
,4,26090,161350
,4,26091,161355
,4,26092,161360
,4,26093,161365
,4,26094,161370
,4,26095,161375
,4,26096,161380
,4,26097,161385
,4,26098,161390
,4,26099,161395
,4,26100,161400
,4,26101,161405
,4,26102,161410
,4,26103,161415
,4,26104,161420
,4,26105,161425
,4,26106,161430
,4,26107,161435
,4,26108,161440
,4,26109,161445
,4,26110,161450
,4,26111,161455
,4,26112,161460
,4,26113,161465
,4,26114,161470
,4,26115,161475
,4,26116,161480
,4,26117,161485
,4,26118,161490
,4,26119,161495
,4,26120,161500
,4,26121,161505
,4,26122,161510
,4,26123,161515
,4,26124,161520
,4,26125,161525
,4,26126,161530
,4,26127,161535
,4,26128,161540
,4,26129,161545
,4,26130,161550
,4,26131,161555
,4,26132,161560
,4,26133,161565
,4,26134,161570
,4,26135,161575
,4,26136,161580
,4,26137,161585
,4,26138,161590
,4,26139,161595
,4,26140,161600
,4,26141,161605
,4,26142,161610
,4,26143,161615
,4,26144,161620
,4,26145,161625
,4,26146,161630
,4,26147,161635
,4,26148,161640
,4,26149,161645
,4,26150,161650
,4,26151,161655
,4,26152,161660
,4,26153,161665
,4,26154,161670
,4,26155,161675
,4,26156,161680
,4,26157,161685
,4,26158,161690
,4,26159,161695
,4,26160,161700
,4,26161,161705
,4,26162,161710
,4,26163,161715
,4,26164,161720
,4,26165,161725
,4,26166,161730
,4,26167,161735
,4,26168,161740
,4,26169,161745
,4,26170,161750
,4,26171,161755
,4,26172,161760
,4,26173,161765
,4,26174,161770
,4,26175,161775
,4,26176,161780
,4,26177,161785
,4,26178,161790
,4,26179,161795
,4,26180,161800
,4,26181,161805
,4,26182,161810
,4,26183,161815
,4,26184,161820
,4,26185,161825
,4,26186,161830
,4,26187,161835
,4,26188,161840
,4,26189,161845
,4,26190,161850
,4,26191,161855
,4,26192,161860
,4,26193,161865
,4,26194,161870
,4,26195,161875
,4,26196,161880
,4,26197,161885
,4,26198,161890
,4,26199,161895
,4,26200,161900
,4,26201,161905
,4,26202,161910
,4,26203,161915
,4,26204,161920
,4,26205,161925
,4,26206,161930
,4,26207,161935
,4,26208,161940
,4,26209,161945
,4,26210,161950
,4,26211,161955
,4,26212,161960
,4,26213,161965
,4,26214,161970
,4,26215,161975
,4,26216,161980
,4,26217,161985
,4,26218,161990
,4,26219,161995
,4,26220,162000
,4,26221,162005
,4,26222,162010
,4,26223,162015
,4,26224,162020
,4,26225,162025
,4,26226,162030
,4,26227,162035
,4,26228,162040
,4,26229,162045
,4,26230,162050
,4,26231,162055
,4,26232,162060
,4,26233,162065
,4,26234,162070
,4,26235,162075
,4,26236,162080
,4,26237,162085
,4,26238,162090
,4,26239,162095
,4,26240,162100
,4,26241,162105
,4,26242,162110
,4,26243,162115
,4,26244,162120
,4,26245,162125
,4,26246,162130
,4,26247,162135
,4,26248,162140
,4,26249,162145
,4,26250,162150
,4,26251,162155
,4,26252,162160
,4,26253,162165
,4,26254,162170
,4,26255,162175
,4,26256,162180
,4,26257,162185
,4,26258,162190
,4,26259,162195
,4,26260,162200
,4,26261,162205
,4,26262,162210
,4,26263,162215
,4,26264,162220
,4,26265,162225
,4,26266,162230
,4,26267,162235
,4,26268,162240
,4,26269,162245
,4,26270,162250
,4,26271,162255
,4,26272,162260
,4,26273,162265
,4,26274,162270
,4,26275,162275
,4,26276,162280
,4,26277,162285
,4,26278,162290
,4,26279,162295
,4,26280,162300
,4,26281,162305
,4,26282,162310
,4,26283,162315
,4,26284,162320
,4,26285,162325
,4,26286,162330
,4,26287,162335
,4,26288,162340
,4,26289,162345
,4,26290,162350
,4,26291,162355
,4,26292,162360
,4,26293,162365
,4,26294,162370
,4,26295,162375
,4,26296,162380
,4,26297,162385
,4,26298,162390
,4,26299,162395
,4,26300,162400
,4,26301,162405
,4,26302,162410
,4,26303,162415
,4,26304,162420
,4,26305,162425
,4,26306,162430
,4,26307,162435
,4,26308,162440
,4,26309,162445
,4,26310,162450
,4,26311,162455
,4,26312,162460
,4,26313,162465
,4,26314,162470
,4,26315,162475
,4,26316,162480
,4,26317,162485
,4,26318,162490
,4,26319,162495
,4,26320,162500
,4,26321,162505
,4,26322,162510
,4,26323,162515
,4,26324,162520
,4,26325,162525
,4,26326,162530
,4,26327,162535
,4,26328,162540
,4,26329,162545
,4,26330,162550
,4,26331,162555
,4,26332,162560
,4,26333,162565
,4,26334,162570
,4,26335,162575
,4,26336,162580
,4,26337,162585
,4,26338,162590
,4,26339,162595
,4,26340,162600
,4,26341,162605
,4,26342,162610
,4,26343,162615
,4,26344,162620
,4,26345,162625
,4,26346,162630
,4,26347,162635
,4,26348,162640
,4,26349,162645
,4,26350,162650
,4,26351,162655
,4,26352,162660
,4,26353,162665
,4,26354,162670
,4,26355,162675
,4,26356,162680
,4,26357,162685
,4,26358,162690
,4,26359,162695
,4,26360,162700
,4,26361,162705
,4,26362,162710
,4,26363,162715
,4,26364,162720
,4,26365,162725
,4,26366,162730
,4,26367,162735
,4,26368,162740
,4,26369,162745
,4,26370,162750
,4,26371,162755
,4,26372,162760
,4,26373,162765
,4,26374,162770
,4,26375,162775
,4,26376,162780
,4,26377,162785
,4,26378,162790
,4,26379,162795
,4,26380,162800
,4,26381,162805
,4,26382,162810
,4,26383,162815
,4,26384,162820
,4,26385,162825
,4,26386,162830
,4,26387,162835
,4,26388,162840
,4,26389,162845
,4,26390,162850
,4,26391,162855
,4,26392,162860
,4,26393,162865
,4,26394,162870
,4,26395,162875
,4,26396,162880
,4,26397,162885
,4,26398,162890
,4,26399,162895
,4,26400,162900
,4,26401,162905
,4,26402,162910
,4,26403,162915
,4,26404,162920
,4,26405,162925
,4,26406,162930
,4,26407,162935
,4,26408,162940
,4,26409,162945
,4,26410,162950
,4,26411,162955
,4,26412,162960
,4,26413,162965
,4,26414,162970
,4,26415,162975
,4,26416,162980
,4,26417,162985
,4,26418,162990
,4,26419,162995
,4,26420,163000
,4,26421,163005
,4,26422,163010
,4,26423,163015
,4,26424,163020
,4,26425,163025
,4,26426,163030
,4,26427,163035
,4,26428,163040
,4,26429,163045
,4,26430,163050
,4,26431,163055
,4,26432,163060
,4,26433,163065
,4,26434,163070
,4,26435,163075
,4,26436,163080
,4,26437,163085
,4,26438,163090
,4,26439,163095
,4,26440,163100
,4,26441,163105
,4,26442,163110
,4,26443,163115
,4,26444,163120
,4,26445,163125
,4,26446,163130
,4,26447,163135
,4,26448,163140
,4,26449,163145
,4,26450,163150
,4,26451,163155
,4,26452,163160
,4,26453,163165
,4,26454,163170
,4,26455,163175
,4,26456,163180
,4,26457,163185
,4,26458,163190
,4,26459,163195
,4,26460,163200
,4,26461,163205
,4,26462,163210
,4,26463,163215
,4,26464,163220
,4,26465,163225
,4,26466,163230
,4,26467,163235
,4,26468,163240
,4,26469,163245
,4,26470,163250
,4,26471,163255
,4,26472,163260
,4,26473,163265
,4,26474,163270
,4,26475,163275
,4,26476,163280
,4,26477,163285
,4,26478,163290
,4,26479,163295
,4,26480,163300
,4,26481,163305
,4,26482,163310
,4,26483,163315
,4,26484,163320
,4,26485,163325
,4,26486,163330
,4,26487,163335
,4,26488,163340
,4,26489,163345
,4,26490,163350
,4,26491,163355
,4,26492,163360
,4,26493,163365
,4,26494,163370
,4,26495,163375
,4,26496,163380
,4,26497,163385
,4,26498,163390
,4,26499,163395
,4,26500,163400
,4,26501,163405
,4,26502,163410
,4,26503,163415
,4,26504,163420
,4,26505,163425
,4,26506,163430
,4,26507,163435
,4,26508,163440
,4,26509,163445
,4,26510,163450
,4,26511,163455
,4,26512,163460
,4,26513,163465
,4,26514,163470
,4,26515,163475
,4,26516,163480
,4,26517,163485
,4,26518,163490
,4,26519,163495
,4,26520,163500
,4,26521,163505
,4,26522,163510
,4,26523,163515
,4,26524,163520
,4,26525,163525
,4,26526,163530
,4,26527,163535
,4,26528,163540
,4,26529,163545
,4,26530,163550
,4,26531,163555
,4,26532,163560
,4,26533,163565
,4,26534,163570
,4,26535,163575
,4,26536,163580
,4,26537,163585
,4,26538,163590
,4,26539,163595
,4,26540,163600
,4,26541,163605
,4,26542,163610
,4,26543,163615
,4,26544,163620
,4,26545,163625
,4,26546,163630
,4,26547,163635
,4,26548,163640
,4,26549,163645
,4,26550,163650
,4,26551,163655
,4,26552,163660
,4,26553,163665
,4,26554,163670
,4,26555,163675
,4,26556,163680
,4,26557,163685
,4,26558,163690
,4,26559,163695
,4,26560,163700
,4,26561,163705
,4,26562,163710
,4,26563,163715
,4,26564,163720
,4,26565,163725
,4,26566,163730
,4,26567,163735
,4,26568,163740
,4,26569,163745
,4,26570,163750
,4,26571,163755
,4,26572,163760
,4,26573,163765
,4,26574,163770
,4,26575,163775
,4,26576,163780
,4,26577,163785
,4,26578,163790
,4,26579,163795
,4,26580,163800
,4,26581,163805
,4,26582,163810
,4,26583,163815
,4,26584,163820
,4,26585,163825
,4,26586,163830
,4,26587,163835
,4,26588,163840
,4,26589,163845
,4,26590,163850
,4,26591,163855
,4,26592,163860
,4,26593,163865
,4,26594,163870
,4,26595,163875
,4,26596,163880
,4,26597,163885
,4,26598,163890
,4,26599,163895
,4,26600,163900
,4,26601,163905
,4,26602,163910
,4,26603,163915
,4,26604,163920
,4,26605,163925
,4,26606,163930
,4,26607,163935
,4,26608,163940
,4,26609,163945
,4,26610,163950
,4,26611,163955
,4,26612,163960
,4,26613,163965
,4,26614,163970
,4,26615,163975
,4,26616,163980
,4,26617,163985
,4,26618,163990
,4,26619,163995
,4,26620,164000
,4,26621,164005
,4,26622,164010
,4,26623,164015
,4,26624,164020
,4,26625,164025
,4,26626,164030
,4,26627,164035
,4,26628,164040
,4,26629,164045
,4,26630,164050
,4,26631,164055
,4,26632,164060
,4,26633,164065
,4,26634,164070
,4,26635,164075
,4,26636,164080
,4,26637,164085
,4,26638,164090
,4,26639,164095
,4,26640,164100
,4,26641,164105
,4,26642,164110
,4,26643,164115
,4,26644,164120
,4,26645,164125
,4,26646,164130
,4,26647,164135
,4,26648,164140
,4,26649,164145
,4,26650,164150
,4,26651,164155
,4,26652,164160
,4,26653,164165
,4,26654,164170
,4,26655,164175
,4,26656,164180
,4,26657,164185
,4,26658,164190
,4,26659,164195
,4,26660,164200
,4,26661,164205
,4,26662,164210
,4,26663,164215
,4,26664,164220
,4,26665,164225
,4,26666,164230
,4,26667,164235
,4,26668,164240
,4,26669,164245
,4,26670,164250
,4,26671,164255
,4,26672,164260
,4,26673,164265
,4,26674,164270
,4,26675,164275
,4,26676,164280
,4,26677,164285
,4,26678,164290
,4,26679,164295
,4,26680,164300
,4,26681,164305
,4,26682,164310
,4,26683,164315
,4,26684,164320
,4,26685,164325
,4,26686,164330
,4,26687,164335
,4,26688,164340
,4,26689,164345
,4,26690,164350
,4,26691,164355
,4,26692,164360
,4,26693,164365
,4,26694,164370
,4,26695,164375
,4,26696,164380
,4,26697,164385
,4,26698,164390
,4,26699,164395
,4,26700,164400
,4,26701,164405
,4,26702,164410
,4,26703,164415
,4,26704,164420
,4,26705,164425
,4,26706,164430
,4,26707,164435
,4,26708,164440
,4,26709,164445
,4,26710,164450
,4,26711,164455
,4,26712,164460
,4,26713,164465
,4,26714,164470
,4,26715,164475
,4,26716,164480
,4,26717,164485
,4,26718,164490
,4,26719,164495
,4,26720,164500
,4,26721,164505
,4,26722,164510
,4,26723,164515
,4,26724,164520
,4,26725,164525
,4,26726,164530
,4,26727,164535
,4,26728,164540
,4,26729,164545
,4,26730,164550
,4,26731,164555
,4,26732,164560
,4,26733,164565
,4,26734,164570
,4,26735,164575
,4,26736,164580
,4,26737,164585
,4,26738,164590
,4,26739,164595
,4,26740,164600
,4,26741,164605
,4,26742,164610
,4,26743,164615
,4,26744,164620
,4,26745,164625
,4,26746,164630
,4,26747,164635
,4,26748,164640
,4,26749,164645
,4,26750,164650
,4,26751,164655
,4,26752,164660
,4,26753,164665
,4,26754,164670
,4,26755,164675
,4,26756,164680
,4,26757,164685
,4,26758,164690
,4,26759,164695
,4,26760,164700
,4,26761,164705
,4,26762,164710
,4,26763,164715
,4,26764,164720
,4,26765,164725
,4,26766,164730
,4,26767,164735
,4,26768,164740
,4,26769,164745
,4,26770,164750
,4,26771,164755
,4,26772,164760
,4,26773,164765
,4,26774,164770
,4,26775,164775
,4,26776,164780
,4,26777,164785
,4,26778,164790
,4,26779,164795
,4,26780,164800
,4,26781,164805
,4,26782,164810
,4,26783,164815
,4,26784,164820
,4,26785,164825
,4,26786,164830
,4,26787,164835
,4,26788,164840
,4,26789,164845
,4,26790,164850
,4,26791,164855
,4,26792,164860
,4,26793,164865
,4,26794,164870
,4,26795,164875
,4,26796,164880
,4,26797,164885
,4,26798,164890
,4,26799,164895
,4,26800,164900
,4,26801,164905
,4,26802,164910
,4,26803,164915
,4,26804,164920
,4,26805,164925
,4,26806,164930
,4,26807,164935
,4,26808,164940
,4,26809,164945
,4,26810,164950
,4,26811,164955
,4,26812,164960
,4,26813,164965
,4,26814,164970
,4,26815,164975
,4,26816,164980
,4,26817,164985
,4,26818,164990
,4,26819,164995
,4,26820,165000
,4,26821,165005
,4,26822,165010
,4,26823,165015
,4,26824,165020
,4,26825,165025
,4,26826,165030
,4,26827,165035
,4,26828,165040
,4,26829,165045
,4,26830,165050
,4,26831,165055
,4,26832,165060
,4,26833,165065
,4,26834,165070
,4,26835,165075
,4,26836,165080
,4,26837,165085
,4,26838,165090
,4,26839,165095
,4,26840,165100
,4,26841,165105
,4,26842,165110
,4,26843,165115
,4,26844,165120
,4,26845,165125
,4,26846,165130
,4,26847,165135
,4,26848,165140
,4,26849,165145
,4,26850,165150
,4,26851,165155
,4,26852,165160
,4,26853,165165
,4,26854,165170
,4,26855,165175
,4,26856,165180
,4,26857,165185
,4,26858,165190
,4,26859,165195
,4,26860,165200
,4,26861,165205
,4,26862,165210
,4,26863,165215
,4,26864,165220
,4,26865,165225
,4,26866,165230
,4,26867,165235
,4,26868,165240
,4,26869,165245
,4,26870,165250
,4,26871,165255
,4,26872,165260
,4,26873,165265
,4,26874,165270
,4,26875,165275
,4,26876,165280
,4,26877,165285
,4,26878,165290
,4,26879,165295
,4,26880,165300
,4,26881,165305
,4,26882,165310
,4,26883,165315
,4,26884,165320
,4,26885,165325
,4,26886,165330
,4,26887,165335
,4,26888,165340
,4,26889,165345
,4,26890,165350
,4,26891,165355
,4,26892,165360
,4,26893,165365
,4,26894,165370
,4,26895,165375
,4,26896,165380
,4,26897,165385
,4,26898,165390
,4,26899,165395
,4,26900,165400
,4,26901,165405
,4,26902,165410
,4,26903,165415
,4,26904,165420
,4,26905,165425
,4,26906,165430
,4,26907,165435
,4,26908,165440
,4,26909,165445
,4,26910,165450
,4,26911,165455
,4,26912,165460
,4,26913,165465
,4,26914,165470
,4,26915,165475
,4,26916,165480
,4,26917,165485
,4,26918,165490
,4,26919,165495
,4,26920,165500
,4,26921,165505
,4,26922,165510
,4,26923,165515
,4,26924,165520
,4,26925,165525
,4,26926,165530
,4,26927,165535
,4,26928,165540
,4,26929,165545
,4,26930,165550
,4,26931,165555
,4,26932,165560
,4,26933,165565
,4,26934,165570
,4,26935,165575
,4,26936,165580
,4,26937,165585
,4,26938,165590
,4,26939,165595
,4,26940,165600
,4,26941,165605
,4,26942,165610
,4,26943,165615
,4,26944,165620
,4,26945,165625
,4,26946,165630
,4,26947,165635
,4,26948,165640
,4,26949,165645
,4,26950,165650
,4,26951,165655
,4,26952,165660
,4,26953,165665
,4,26954,165670
,4,26955,165675
,4,26956,165680
,4,26957,165685
,4,26958,165690
,4,26959,165695
,4,26960,165700
,4,26961,165705
,4,26962,165710
,4,26963,165715
,4,26964,165720
,4,26965,165725
,4,26966,165730
,4,26967,165735
,4,26968,165740
,4,26969,165745
,4,26970,165750
,4,26971,165755
,4,26972,165760
,4,26973,165765
,4,26974,165770
,4,26975,165775
,4,26976,165780
,4,26977,165785
,4,26978,165790
,4,26979,165795
,4,26980,165800
,4,26981,165805
,4,26982,165810
,4,26983,165815
,4,26984,165820
,4,26985,165825
,4,26986,165830
,4,26987,165835
,4,26988,165840
,4,26989,165845
,4,26990,165850
,4,26991,165855
,4,26992,165860
,4,26993,165865
,4,26994,165870
,4,26995,165875
,4,26996,165880
,4,26997,165885
,4,26998,165890
,4,26999,165895
,4,27000,165900
,4,27001,165905
,4,27002,165910
,4,27003,165915
,4,27004,165920
,4,27005,165925
,4,27006,165930
,4,27007,165935
,4,27008,165940
,4,27009,165945
,4,27010,165950
,4,27011,165955
,4,27012,165960
,4,27013,165965
,4,27014,165970
,4,27015,165975
,4,27016,165980
,4,27017,165985
,4,27018,165990
,4,27019,165995
,4,27020,166000
,4,27021,166005
,4,27022,166010
,4,27023,166015
,4,27024,166020
,4,27025,166025
,4,27026,166030
,4,27027,166035
,4,27028,166040
,4,27029,166045
,4,27030,166050
,4,27031,166055
,4,27032,166060
,4,27033,166065
,4,27034,166070
,4,27035,166075
,4,27036,166080
,4,27037,166085
,4,27038,166090
,4,27039,166095
,4,27040,166100
,4,27041,166105
,4,27042,166110
,4,27043,166115
,4,27044,166120
,4,27045,166125
,4,27046,166130
,4,27047,166135
,4,27048,166140
,4,27049,166145
,4,27050,166150
,4,27051,166155
,4,27052,166160
,4,27053,166165
,4,27054,166170
,4,27055,166175
,4,27056,166180
,4,27057,166185
,4,27058,166190
,4,27059,166195
,4,27060,166200
,4,27061,166205
,4,27062,166210
,4,27063,166215
,4,27064,166220
,4,27065,166225
,4,27066,166230
,4,27067,166235
,4,27068,166240
,4,27069,166245
,4,27070,166250
,4,27071,166255
,4,27072,166260
,4,27073,166265
,4,27074,166270
,4,27075,166275
,4,27076,166280
,4,27077,166285
,4,27078,166290
,4,27079,166295
,4,27080,166300
,4,27081,166305
,4,27082,166310
,4,27083,166315
,4,27084,166320
,4,27085,166325
,4,27086,166330
,4,27087,166335
,4,27088,166340
,4,27089,166345
,4,27090,166350
,4,27091,166355
,4,27092,166360
,4,27093,166365
,4,27094,166370
,4,27095,166375
,4,27096,166380
,4,27097,166385
,4,27098,166390
,4,27099,166395
,4,27100,166400
,4,27101,166405
,4,27102,166410
,4,27103,166415
,4,27104,166420
,4,27105,166425
,4,27106,166430
,4,27107,166435
,4,27108,166440
,4,27109,166445
,4,27110,166450
,4,27111,166455
,4,27112,166460
,4,27113,166465
,4,27114,166470
,4,27115,166475
,4,27116,166480
,4,27117,166485
,4,27118,166490
,4,27119,166495
,4,27120,166500
,4,27121,166505
,4,27122,166510
,4,27123,166515
,4,27124,166520
,4,27125,166525
,4,27126,166530
,4,27127,166535
,4,27128,166540
,4,27129,166545
,4,27130,166550
,4,27131,166555
,4,27132,166560
,4,27133,166565
,4,27134,166570
,4,27135,166575
,4,27136,166580
,4,27137,166585
,4,27138,166590
,4,27139,166595
,4,27140,166600
,4,27141,166605
,4,27142,166610
,4,27143,166615
,4,27144,166620
,4,27145,166625
,4,27146,166630
,4,27147,166635
,4,27148,166640
,4,27149,166645
,4,27150,166650
,4,27151,166655
,4,27152,166660
,4,27153,166665
,4,27154,166670
,4,27155,166675
,4,27156,166680
,4,27157,166685
,4,27158,166690
,4,27159,166695
,4,27160,166700
,4,27161,166705
,4,27162,166710
,4,27163,166715
,4,27164,166720
,4,27165,166725
,4,27166,166730
,4,27167,166735
,4,27168,166740
,4,27169,166745
,4,27170,166750
,4,27171,166755
,4,27172,166760
,4,27173,166765
,4,27174,166770
,4,27175,166775
,4,27176,166780
,4,27177,166785
,4,27178,166790
,4,27179,166795
,4,27180,166800
,4,27181,166805
,4,27182,166810
,4,27183,166815
,4,27184,166820
,4,27185,166825
,4,27186,166830
,4,27187,166835
,4,27188,166840
,4,27189,166845
,4,27190,166850
,4,27191,166855
,4,27192,166860
,4,27193,166865
,4,27194,166870
,4,27195,166875
,4,27196,166880
,4,27197,166885
,4,27198,166890
,4,27199,166895
,4,27200,166900
,4,27201,166905
,4,27202,166910
,4,27203,166915
,4,27204,166920
,4,27205,166925
,4,27206,166930
,4,27207,166935
,4,27208,166940
,4,27209,166945
,4,27210,166950
,4,27211,166955
,4,27212,166960
,4,27213,166965
,4,27214,166970
,4,27215,166975
,4,27216,166980
,4,27217,166985
,4,27218,166990
,4,27219,166995
,4,27220,167000
,4,27221,167005
,4,27222,167010
,4,27223,167015
,4,27224,167020
,4,27225,167025
,4,27226,167030
,4,27227,167035
,4,27228,167040
,4,27229,167045
,4,27230,167050
,4,27231,167055
,4,27232,167060
,4,27233,167065
,4,27234,167070
,4,27235,167075
,4,27236,167080
,4,27237,167085
,4,27238,167090
,4,27239,167095
,4,27240,167100
,4,27241,167105
,4,27242,167110
,4,27243,167115
,4,27244,167120
,4,27245,167125
,4,27246,167130
,4,27247,167135
,4,27248,167140
,4,27249,167145
,4,27250,167150
,4,27251,167155
,4,27252,167160
,4,27253,167165
,4,27254,167170
,4,27255,167175
,4,27256,167180
,4,27257,167185
,4,27258,167190
,4,27259,167195
,4,27260,167200
,4,27261,167205
,4,27262,167210
,4,27263,167215
,4,27264,167220
,4,27265,167225
,4,27266,167230
,4,27267,167235
,4,27268,167240
,4,27269,167245
,4,27270,167250
,4,27271,167255
,4,27272,167260
,4,27273,167265
,4,27274,167270
,4,27275,167275
,4,27276,167280
,4,27277,167285
,4,27278,167290
,4,27279,167295
,4,27280,167300
,4,27281,167305
,4,27282,167310
,4,27283,167315
,4,27284,167320
,4,27285,167325
,4,27286,167330
,4,27287,167335
,4,27288,167340
,4,27289,167345
,4,27290,167350
,4,27291,167355
,4,27292,167360
,4,27293,167365
,4,27294,167370
,4,27295,167375
,4,27296,167380
,4,27297,167385
,4,27298,167390
,4,27299,167395
,4,27300,167400
,4,27301,167405
,4,27302,167410
,4,27303,167415
,4,27304,167420
,4,27305,167425
,4,27306,167430
,4,27307,167435
,4,27308,167440
,4,27309,167445
,4,27310,167450
,4,27311,167455
,4,27312,167460
,4,27313,167465
,4,27314,167470
,4,27315,167475
,4,27316,167480
,4,27317,167485
,4,27318,167490
,4,27319,167495
,4,27320,167500
,4,27321,167505
,4,27322,167510
,4,27323,167515
,4,27324,167520
,4,27325,167525
,4,27326,167530
,4,27327,167535
,4,27328,167540
,4,27329,167545
,4,27330,167550
,4,27331,167555
,4,27332,167560
,4,27333,167565
,4,27334,167570
,4,27335,167575
,4,27336,167580
,4,27337,167585
,4,27338,167590
,4,27339,167595
,4,27340,167600
,4,27341,167605
,4,27342,167610
,4,27343,167615
,4,27344,167620
,4,27345,167625
,4,27346,167630
,4,27347,167635
,4,27348,167640
,4,27349,167645
,4,27350,167650
,4,27351,167655
,4,27352,167660
,4,27353,167665
,4,27354,167670
,4,27355,167675
,4,27356,167680
,4,27357,167685
,4,27358,167690
,4,27359,167695
,4,27360,167700
,4,27361,167705
,4,27362,167710
,4,27363,167715
,4,27364,167720
,4,27365,167725
,4,27366,167730
,4,27367,167735
,4,27368,167740
,4,27369,167745
,4,27370,167750
,4,27371,167755
,4,27372,167760
,4,27373,167765
,4,27374,167770
,4,27375,167775
,4,27376,167780
,4,27377,167785
,4,27378,167790
,4,27379,167795
,4,27380,167800
,4,27381,167805
,4,27382,167810
,4,27383,167815
,4,27384,167820
,4,27385,167825
,4,27386,167830
,4,27387,167835
,4,27388,167840
,4,27389,167845
,4,27390,167850
,4,27391,167855
,4,27392,167860
,4,27393,167865
,4,27394,167870
,4,27395,167875
,4,27396,167880
,4,27397,167885
,4,27398,167890
,4,27399,167895
,4,27400,167900
,4,27401,167905
,4,27402,167910
,4,27403,167915
,4,27404,167920
,4,27405,167925
,4,27406,167930
,4,27407,167935
,4,27408,167940
,4,27409,167945
,4,27410,167950
,4,27411,167955
,4,27412,167960
,4,27413,167965
,4,27414,167970
,4,27415,167975
,4,27416,167980
,4,27417,167985
,4,27418,167990
,4,27419,167995
,4,27420,168000
,4,27421,168005
,4,27422,168010
,4,27423,168015
,4,27424,168020
,4,27425,168025
,4,27426,168030
,4,27427,168035
,4,27428,168040
,4,27429,168045
,4,27430,168050
,4,27431,168055
,4,27432,168060
,4,27433,168065
,4,27434,168070
,4,27435,168075
,4,27436,168080
,4,27437,168085
,4,27438,168090
,4,27439,168095
,4,27440,168100
,4,27441,168105
,4,27442,168110
,4,27443,168115
,4,27444,168120
,4,27445,168125
,4,27446,168130
,4,27447,168135
,4,27448,168140
,4,27449,168145
,4,27450,168150
,4,27451,168155
,4,27452,168160
,4,27453,168165
,4,27454,168170
,4,27455,168175
,4,27456,168180
,4,27457,168185
,4,27458,168190
,4,27459,168195
,4,27460,168200
,4,27461,168205
,4,27462,168210
,4,27463,168215
,4,27464,168220
,4,27465,168225
,4,27466,168230
,4,27467,168235
,4,27468,168240
,4,27469,168245
,4,27470,168250
,4,27471,168255
,4,27472,168260
,4,27473,168265
,4,27474,168270
,4,27475,168275
,4,27476,168280
,4,27477,168285
,4,27478,168290
,4,27479,168295
,4,27480,168300
,4,27481,168305
,4,27482,168310
,4,27483,168315
,4,27484,168320
,4,27485,168325
,4,27486,168330
,4,27487,168335
,4,27488,168340
,4,27489,168345
,4,27490,168350
,4,27491,168355
,4,27492,168360
,4,27493,168365
,4,27494,168370
,4,27495,168375
,4,27496,168380
,4,27497,168385
,4,27498,168390
,4,27499,168395
,4,27500,168400
,4,27501,168405
,4,27502,168410
,4,27503,168415
,4,27504,168420
,4,27505,168425
,4,27506,168430
,4,27507,168435
,4,27508,168440
,4,27509,168445
,4,27510,168450
,4,27511,168455
,4,27512,168460
,4,27513,168465
,4,27514,168470
,4,27515,168475
,4,27516,168480
,4,27517,168485
,4,27518,168490
,4,27519,168495
,4,27520,168500
,4,27521,168505
,4,27522,168510
,4,27523,168515
,4,27524,168520
,4,27525,168525
,4,27526,168530
,4,27527,168535
,4,27528,168540
,4,27529,168545
,4,27530,168550
,4,27531,168555
,4,27532,168560
,4,27533,168565
,4,27534,168570
,4,27535,168575
,4,27536,168580
,4,27537,168585
,4,27538,168590
,4,27539,168595
,4,27540,168600
,4,27541,168605
,4,27542,168610
,4,27543,168615
,4,27544,168620
,4,27545,168625
,4,27546,168630
,4,27547,168635
,4,27548,168640
,4,27549,168645
,4,27550,168650
,4,27551,168655
,4,27552,168660
,4,27553,168665
,4,27554,168670
,4,27555,168675
,4,27556,168680
,4,27557,168685
,4,27558,168690
,4,27559,168695
,4,27560,168700
,4,27561,168705
,4,27562,168710
,4,27563,168715
,4,27564,168720
,4,27565,168725
,4,27566,168730
,4,27567,168735
,4,27568,168740
,4,27569,168745
,4,27570,168750
,4,27571,168755
,4,27572,168760
,4,27573,168765
,4,27574,168770
,4,27575,168775
,4,27576,168780
,4,27577,168785
,4,27578,168790
,4,27579,168795
,4,27580,168800
,4,27581,168805
,4,27582,168810
,4,27583,168815
,4,27584,168820
,4,27585,168825
,4,27586,168830
,4,27587,168835
,4,27588,168840
,4,27589,168845
,4,27590,168850
,4,27591,168855
,4,27592,168860
,4,27593,168865
,4,27594,168870
,4,27595,168875
,4,27596,168880
,4,27597,168885
,4,27598,168890
,4,27599,168895
,4,27600,168900
,4,27601,168905
,4,27602,168910
,4,27603,168915
,4,27604,168920
,4,27605,168925
,4,27606,168930
,4,27607,168935
,4,27608,168940
,4,27609,168945
,4,27610,168950
,4,27611,168955
,4,27612,168960
,4,27613,168965
,4,27614,168970
,4,27615,168975
,4,27616,168980
,4,27617,168985
,4,27618,168990
,4,27619,168995
,4,27620,169000
,4,27621,169005
,4,27622,169010
,4,27623,169015
,4,27624,169020
,4,27625,169025
,4,27626,169030
,4,27627,169035
,4,27628,169040
,4,27629,169045
,4,27630,169050
,4,27631,169055
,4,27632,169060
,4,27633,169065
,4,27634,169070
,4,27635,169075
,4,27636,169080
,4,27637,169085
,4,27638,169090
,4,27639,169095
,4,27640,169100
,4,27641,169105
,4,27642,169110
,4,27643,169115
,4,27644,169120
,4,27645,169125
,4,27646,169130
,4,27647,169135
,4,27648,169140
,4,27649,169145
,4,27650,169150
,4,27651,169155
,4,27652,169160
,4,27653,169165
,4,27654,169170
,4,27655,169175
,4,27656,169180
,4,27657,169185
,4,27658,169190
,4,27659,169195
,4,27660,169200
,4,27661,169205
,4,27662,169210
,4,27663,169215
,4,27664,169220
,4,27665,169225
,4,27666,169230
,4,27667,169235
,4,27668,169240
,4,27669,169245
,4,27670,169250
,4,27671,169255
,4,27672,169260
,4,27673,169265
,4,27674,169270
,4,27675,169275
,4,27676,169280
,4,27677,169285
,4,27678,169290
,4,27679,169295
,4,27680,169300
,4,27681,169305
,4,27682,169310
,4,27683,169315
,4,27684,169320
,4,27685,169325
,4,27686,169330
,4,27687,169335
,4,27688,169340
,4,27689,169345
,4,27690,169350
,4,27691,169355
,4,27692,169360
,4,27693,169365
,4,27694,169370
,4,27695,169375
,4,27696,169380
,4,27697,169385
,4,27698,169390
,4,27699,169395
,4,27700,169400
,4,27701,169405
,4,27702,169410
,4,27703,169415
,4,27704,169420
,4,27705,169425
,4,27706,169430
,4,27707,169435
,4,27708,169440
,4,27709,169445
,4,27710,169450
,4,27711,169455
,4,27712,169460
,4,27713,169465
,4,27714,169470
,4,27715,169475
,4,27716,169480
,4,27717,169485
,4,27718,169490
,4,27719,169495
,4,27720,169500
,4,27721,169505
,4,27722,169510
,4,27723,169515
,4,27724,169520
,4,27725,169525
,4,27726,169530
,4,27727,169535
,4,27728,169540
,4,27729,169545
,4,27730,169550
,4,27731,169555
,4,27732,169560
,4,27733,169565
,4,27734,169570
,4,27735,169575
,4,27736,169580
,4,27737,169585
,4,27738,169590
,4,27739,169595
,4,27740,169600
,4,27741,169605
,4,27742,169610
,4,27743,169615
,4,27744,169620
,4,27745,169625
,4,27746,169630
,4,27747,169635
,4,27748,169640
,4,27749,169645
,4,27750,169650
,4,27751,169655
,4,27752,169660
,4,27753,169665
,4,27754,169670
,4,27755,169675
,4,27756,169680
,4,27757,169685
,4,27758,169690
,4,27759,169695
,4,27760,169700
,4,27761,169705
,4,27762,169710
,4,27763,169715
,4,27764,169720
,4,27765,169725
,4,27766,169730
,4,27767,169735
,4,27768,169740
,4,27769,169745
,4,27770,169750
,4,27771,169755
,4,27772,169760
,4,27773,169765
,4,27774,169770
,4,27775,169775
,4,27776,169780
,4,27777,169785
,4,27778,169790
,4,27779,169795
,4,27780,169800
,4,27781,169805
,4,27782,169810
,4,27783,169815
,4,27784,169820
,4,27785,169825
,4,27786,169830
,4,27787,169835
,4,27788,169840
,4,27789,169845
,4,27790,169850
,4,27791,169855
,4,27792,169860
,4,27793,169865
,4,27794,169870
,4,27795,169875
,4,27796,169880
,4,27797,169885
,4,27798,169890
,4,27799,169895
,4,27800,169900
,4,27801,169905
,4,27802,169910
,4,27803,169915
,4,27804,169920
,4,27805,169925
,4,27806,169930
,4,27807,169935
,4,27808,169940
,4,27809,169945
,4,27810,169950
,4,27811,169955
,4,27812,169960
,4,27813,169965
,4,27814,169970
,4,27815,169975
,4,27816,169980
,4,27817,169985
,4,27818,169990
,4,27819,169995
,4,27820,170000
,4,27821,170005
,4,27822,170010
,4,27823,170015
,4,27824,170020
,4,27825,170025
,4,27826,170030
,4,27827,170035
,4,27828,170040
,4,27829,170045
,4,27830,170050
,4,27831,170055
,4,27832,170060
,4,27833,170065
,4,27834,170070
,4,27835,170075
,4,27836,170080
,4,27837,170085
,4,27838,170090
,4,27839,170095
,4,27840,170100
,4,27841,170105
,4,27842,170110
,4,27843,170115
,4,27844,170120
,4,27845,170125
,4,27846,170130
,4,27847,170135
,4,27848,170140
,4,27849,170145
,4,27850,170150
,4,27851,170155
,4,27852,170160
,4,27853,170165
,4,27854,170170
,4,27855,170175
,4,27856,170180
,4,27857,170185
,4,27858,170190
,4,27859,170195
,4,27860,170200
,4,27861,170205
,4,27862,170210
,4,27863,170215
,4,27864,170220
,4,27865,170225
,4,27866,170230
,4,27867,170235
,4,27868,170240
,4,27869,170245
,4,27870,170250
,4,27871,170255
,4,27872,170260
,4,27873,170265
,4,27874,170270
,4,27875,170275
,4,27876,170280
,4,27877,170285
,4,27878,170290
,4,27879,170295
,4,27880,170300
,4,27881,170305
,4,27882,170310
,4,27883,170315
,4,27884,170320
,4,27885,170325
,4,27886,170330
,4,27887,170335
,4,27888,170340
,4,27889,170345
,4,27890,170350
,4,27891,170355
,4,27892,170360
,4,27893,170365
,4,27894,170370
,4,27895,170375
,4,27896,170380
,4,27897,170385
,4,27898,170390
,4,27899,170395
,4,27900,170400
,4,27901,170405
,4,27902,170410
,4,27903,170415
,4,27904,170420
,4,27905,170425
,4,27906,170430
,4,27907,170435
,4,27908,170440
,4,27909,170445
,4,27910,170450
,4,27911,170455
,4,27912,170460
,4,27913,170465
,4,27914,170470
,4,27915,170475
,4,27916,170480
,4,27917,170485
,4,27918,170490
,4,27919,170495
,4,27920,170500
,4,27921,170505
,4,27922,170510
,4,27923,170515
,4,27924,170520
,4,27925,170525
,4,27926,170530
,4,27927,170535
,4,27928,170540
,4,27929,170545
,4,27930,170550
,4,27931,170555
,4,27932,170560
,4,27933,170565
,4,27934,170570
,4,27935,170575
,4,27936,170580
,4,27937,170585
,4,27938,170590
,4,27939,170595
,4,27940,170600
,4,27941,170605
,4,27942,170610
,4,27943,170615
,4,27944,170620
,4,27945,170625
,4,27946,170630
,4,27947,170635
,4,27948,170640
,4,27949,170645
,4,27950,170650
,4,27951,170655
,4,27952,170660
,4,27953,170665
,4,27954,170670
,4,27955,170675
,4,27956,170680
,4,27957,170685
,4,27958,170690
,4,27959,170695
,4,27960,170700
,4,27961,170705
,4,27962,170710
,4,27963,170715
,4,27964,170720
,4,27965,170725
,4,27966,170730
,4,27967,170735
,4,27968,170740
,4,27969,170745
,4,27970,170750
,4,27971,170755
,4,27972,170760
,4,27973,170765
,4,27974,170770
,4,27975,170775
,4,27976,170780
,4,27977,170785
,4,27978,170790
,4,27979,170795
,4,27980,170800
,4,27981,170805
,4,27982,170810
,4,27983,170815
,4,27984,170820
,4,27985,170825
,4,27986,170830
,4,27987,170835
,4,27988,170840
,4,27989,170845
,4,27990,170850
,4,27991,170855
,4,27992,170860
,4,27993,170865
,4,27994,170870
,4,27995,170875
,4,27996,170880
,4,27997,170885
,4,27998,170890
,4,27999,170895
,4,28000,170900
,4,28001,170905
,4,28002,170910
,4,28003,170915
,4,28004,170920
,4,28005,170925
,4,28006,170930
,4,28007,170935
,4,28008,170940
,4,28009,170945
,4,28010,170950
,4,28011,170955
,4,28012,170960
,4,28013,170965
,4,28014,170970
,4,28015,170975
,4,28016,170980
,4,28017,170985
,4,28018,170990
,4,28019,170995
,4,28020,171000
,4,28021,171005
,4,28022,171010
,4,28023,171015
,4,28024,171020
,4,28025,171025
,4,28026,171030
,4,28027,171035
,4,28028,171040
,4,28029,171045
,4,28030,171050
,4,28031,171055
,4,28032,171060
,4,28033,171065
,4,28034,171070
,4,28035,171075
,4,28036,171080
,4,28037,171085
,4,28038,171090
,4,28039,171095
,4,28040,171100
,4,28041,171105
,4,28042,171110
,4,28043,171115
,4,28044,171120
,4,28045,171125
,4,28046,171130
,4,28047,171135
,4,28048,171140
,4,28049,171145
,4,28050,171150
,4,28051,171155
,4,28052,171160
,4,28053,171165
,4,28054,171170
,4,28055,171175
,4,28056,171180
,4,28057,171185
,4,28058,171190
,4,28059,171195
,4,28060,171200
,4,28061,171205
,4,28062,171210
,4,28063,171215
,4,28064,171220
,4,28065,171225
,4,28066,171230
,4,28067,171235
,4,28068,171240
,4,28069,171245
,4,28070,171250
,4,28071,171255
,4,28072,171260
,4,28073,171265
,4,28074,171270
,4,28075,171275
,4,28076,171280
,4,28077,171285
,4,28078,171290
,4,28079,171295
,4,28080,171300
,4,28081,171305
,4,28082,171310
,4,28083,171315
,4,28084,171320
,4,28085,171325
,4,28086,171330
,4,28087,171335
,4,28088,171340
,4,28089,171345
,4,28090,171350
,4,28091,171355
,4,28092,171360
,4,28093,171365
,4,28094,171370
,4,28095,171375
,4,28096,171380
,4,28097,171385
,4,28098,171390
,4,28099,171395
,4,28100,171400
,4,28101,171405
,4,28102,171410
,4,28103,171415
,4,28104,171420
,4,28105,171425
,4,28106,171430
,4,28107,171435
,4,28108,171440
,4,28109,171445
,4,28110,171450
,4,28111,171455
,4,28112,171460
,4,28113,171465
,4,28114,171470
,4,28115,171475
,4,28116,171480
,4,28117,171485
,4,28118,171490
,4,28119,171495
,4,28120,171500
,4,28121,171505
,4,28122,171510
,4,28123,171515
,4,28124,171520
,4,28125,171525
,4,28126,171530
,4,28127,171535
,4,28128,171540
,4,28129,171545
,4,28130,171550
,4,28131,171555
,4,28132,171560
,4,28133,171565
,4,28134,171570
,4,28135,171575
,4,28136,171580
,4,28137,171585
,4,28138,171590
,4,28139,171595
,4,28140,171600
,4,28141,171605
,4,28142,171610
,4,28143,171615
,4,28144,171620
,4,28145,171625
,4,28146,171630
,4,28147,171635
,4,28148,171640
,4,28149,171645
,4,28150,171650
,4,28151,171655
,4,28152,171660
,4,28153,171665
,4,28154,171670
,4,28155,171675
,4,28156,171680
,4,28157,171685
,4,28158,171690
,4,28159,171695
,4,28160,171700
,4,28161,171705
,4,28162,171710
,4,28163,171715
,4,28164,171720
,4,28165,171725
,4,28166,171730
,4,28167,171735
,4,28168,171740
,4,28169,171745
,4,28170,171750
,4,28171,171755
,4,28172,171760
,4,28173,171765
,4,28174,171770
,4,28175,171775
,4,28176,171780
,4,28177,171785
,4,28178,171790
,4,28179,171795
,4,28180,171800
,4,28181,171805
,4,28182,171810
,4,28183,171815
,4,28184,171820
,4,28185,171825
,4,28186,171830
,4,28187,171835
,4,28188,171840
,4,28189,171845
,4,28190,171850
,4,28191,171855
,4,28192,171860
,4,28193,171865
,4,28194,171870
,4,28195,171875
,4,28196,171880
,4,28197,171885
,4,28198,171890
,4,28199,171895
,4,28200,171900
,4,28201,171905
,4,28202,171910
,4,28203,171915
,4,28204,171920
,4,28205,171925
,4,28206,171930
,4,28207,171935
,4,28208,171940
,4,28209,171945
,4,28210,171950
,4,28211,171955
,4,28212,171960
,4,28213,171965
,4,28214,171970
,4,28215,171975
,4,28216,171980
,4,28217,171985
,4,28218,171990
,4,28219,171995
,4,28220,172000
,4,28221,172005
,4,28222,172010
,4,28223,172015
,4,28224,172020
,4,28225,172025
,4,28226,172030
,4,28227,172035
,4,28228,172040
,4,28229,172045
,4,28230,172050
,4,28231,172055
,4,28232,172060
,4,28233,172065
,4,28234,172070
,4,28235,172075
,4,28236,172080
,4,28237,172085
,4,28238,172090
,4,28239,172095
,4,28240,172100
,4,28241,172105
,4,28242,172110
,4,28243,172115
,4,28244,172120
,4,28245,172125
,4,28246,172130
,4,28247,172135
,4,28248,172140
,4,28249,172145
,4,28250,172150
,4,28251,172155
,4,28252,172160
,4,28253,172165
,4,28254,172170
,4,28255,172175
,4,28256,172180
,4,28257,172185
,4,28258,172190
,4,28259,172195
,4,28260,172200
,4,28261,172205
,4,28262,172210
,4,28263,172215
,4,28264,172220
,4,28265,172225
,4,28266,172230
,4,28267,172235
,4,28268,172240
,4,28269,172245
,4,28270,172250
,4,28271,172255
,4,28272,172260
,4,28273,172265
,4,28274,172270
,4,28275,172275
,4,28276,172280
,4,28277,172285
,4,28278,172290
,4,28279,172295
,4,28280,172300
,4,28281,172305
,4,28282,172310
,4,28283,172315
,4,28284,172320
,4,28285,172325
,4,28286,172330
,4,28287,172335
,4,28288,172340
,4,28289,172345
,4,28290,172350
,4,28291,172355
,4,28292,172360
,4,28293,172365
,4,28294,172370
,4,28295,172375
,4,28296,172380
,4,28297,172385
,4,28298,172390
,4,28299,172395
,4,28300,172400
,4,28301,172405
,4,28302,172410
,4,28303,172415
,4,28304,172420
,4,28305,172425
,4,28306,172430
,4,28307,172435
,4,28308,172440
,4,28309,172445
,4,28310,172450
,4,28311,172455
,4,28312,172460
,4,28313,172465
,4,28314,172470
,4,28315,172475
,4,28316,172480
,4,28317,172485
,4,28318,172490
,4,28319,172495
,4,28320,172500
,4,28321,172505
,4,28322,172510
,4,28323,172515
,4,28324,172520
,4,28325,172525
,4,28326,172530
,4,28327,172535
,4,28328,172540
,4,28329,172545
,4,28330,172550
,4,28331,172555
,4,28332,172560
,4,28333,172565
,4,28334,172570
,4,28335,172575
,4,28336,172580
,4,28337,172585
,4,28338,172590
,4,28339,172595
,4,28340,172600
,4,28341,172605
,4,28342,172610
,4,28343,172615
,4,28344,172620
,4,28345,172625
,4,28346,172630
,4,28347,172635
,4,28348,172640
,4,28349,172645
,4,28350,172650
,4,28351,172655
,4,28352,172660
,4,28353,172665
,4,28354,172670
,4,28355,172675
,4,28356,172680
,4,28357,172685
,4,28358,172690
,4,28359,172695
,4,28360,172700
,4,28361,172705
,4,28362,172710
,4,28363,172715
,4,28364,172720
,4,28365,172725
,4,28366,172730
,4,28367,172735
,4,28368,172740
,4,28369,172745
,4,28370,172750
,4,28371,172755
,4,28372,172760
,4,28373,172765
,4,28374,172770
,4,28375,172775
,4,28376,172780
,4,28377,172785
,4,28378,172790
,4,28379,172795
,4,28380,172800
,4,28381,172805
,4,28382,172810
,4,28383,172815
,4,28384,172820
,4,28385,172825
,4,28386,172830
,4,28387,172835
,4,28388,172840
,4,28389,172845
,4,28390,172850
,4,28391,172855
,4,28392,172860
,4,28393,172865
,4,28394,172870
,4,28395,172875
,4,28396,172880
,4,28397,172885
,4,28398,172890
,4,28399,172895
,4,28400,172900
,4,28401,172905
,4,28402,172910
,4,28403,172915
,4,28404,172920
,4,28405,172925
,4,28406,172930
,4,28407,172935
,4,28408,172940
,4,28409,172945
,4,28410,172950
,4,28411,172955
,4,28412,172960
,4,28413,172965
,4,28414,172970
,4,28415,172975
,4,28416,172980
,4,28417,172985
,4,28418,172990
,4,28419,172995
,4,28420,173000
,4,28421,173005
,4,28422,173010
,4,28423,173015
,4,28424,173020
,4,28425,173025
,4,28426,173030
,4,28427,173035
,4,28428,173040
,4,28429,173045
,4,28430,173050
,4,28431,173055
,4,28432,173060
,4,28433,173065
,4,28434,173070
,4,28435,173075
,4,28436,173080
,4,28437,173085
,4,28438,173090
,4,28439,173095
,4,28440,173100
,4,28441,173105
,4,28442,173110
,4,28443,173115
,4,28444,173120
,4,28445,173125
,4,28446,173130
,4,28447,173135
,4,28448,173140
,4,28449,173145
,4,28450,173150
,4,28451,173155
,4,28452,173160
,4,28453,173165
,4,28454,173170
,4,28455,173175
,4,28456,173180
,4,28457,173185
,4,28458,173190
,4,28459,173195
,4,28460,173200
,4,28461,173205
,4,28462,173210
,4,28463,173215
,4,28464,173220
,4,28465,173225
,4,28466,173230
,4,28467,173235
,4,28468,173240
,4,28469,173245
,4,28470,173250
,4,28471,173255
,4,28472,173260
,4,28473,173265
,4,28474,173270
,4,28475,173275
,4,28476,173280
,4,28477,173285
,4,28478,173290
,4,28479,173295
,4,28480,173300
,4,28481,173305
,4,28482,173310
,4,28483,173315
,4,28484,173320
,4,28485,173325
,4,28486,173330
,4,28487,173335
,4,28488,173340
,4,28489,173345
,4,28490,173350
,4,28491,173355
,4,28492,173360
,4,28493,173365
,4,28494,173370
,4,28495,173375
,4,28496,173380
,4,28497,173385
,4,28498,173390
,4,28499,173395
,4,28500,173400
,4,28501,173405
,4,28502,173410
,4,28503,173415
,4,28504,173420
,4,28505,173425
,4,28506,173430
,4,28507,173435
,4,28508,173440
,4,28509,173445
,4,28510,173450
,4,28511,173455
,4,28512,173460
,4,28513,173465
,4,28514,173470
,4,28515,173475
,4,28516,173480
,4,28517,173485
,4,28518,173490
,4,28519,173495
,4,28520,173500
,4,28521,173505
,4,28522,173510
,4,28523,173515
,4,28524,173520
,4,28525,173525
,4,28526,173530
,4,28527,173535
,4,28528,173540
,4,28529,173545
,4,28530,173550
,4,28531,173555
,4,28532,173560
,4,28533,173565
,4,28534,173570
,4,28535,173575
,4,28536,173580
,4,28537,173585
,4,28538,173590
,4,28539,173595
,4,28540,173600
,4,28541,173605
,4,28542,173610
,4,28543,173615
,4,28544,173620
,4,28545,173625
,4,28546,173630
,4,28547,173635
,4,28548,173640
,4,28549,173645
,4,28550,173650
,4,28551,173655
,4,28552,173660
,4,28553,173665
,4,28554,173670
,4,28555,173675
,4,28556,173680
,4,28557,173685
,4,28558,173690
,4,28559,173695
,4,28560,173700
,4,28561,173705
,4,28562,173710
,4,28563,173715
,4,28564,173720
,4,28565,173725
,4,28566,173730
,4,28567,173735
,4,28568,173740
,4,28569,173745
,4,28570,173750
,4,28571,173755
,4,28572,173760
,4,28573,173765
,4,28574,173770
,4,28575,173775
,4,28576,173780
,4,28577,173785
,4,28578,173790
,4,28579,173795
,4,28580,173800
,4,28581,173805
,4,28582,173810
,4,28583,173815
,4,28584,173820
,4,28585,173825
,4,28586,173830
,4,28587,173835
,4,28588,173840
,4,28589,173845
,4,28590,173850
,4,28591,173855
,4,28592,173860
,4,28593,173865
,4,28594,173870
,4,28595,173875
,4,28596,173880
,4,28597,173885
,4,28598,173890
,4,28599,173895
,4,28600,173900
,4,28601,173905
,4,28602,173910
,4,28603,173915
,4,28604,173920
,4,28605,173925
,4,28606,173930
,4,28607,173935
,4,28608,173940
,4,28609,173945
,4,28610,173950
,4,28611,173955
,4,28612,173960
,4,28613,173965
,4,28614,173970
,4,28615,173975
,4,28616,173980
,4,28617,173985
,4,28618,173990
,4,28619,173995
,4,28620,174000
,4,28621,174005
,4,28622,174010
,4,28623,174015
,4,28624,174020
,4,28625,174025
,4,28626,174030
,4,28627,174035
,4,28628,174040
,4,28629,174045
,4,28630,174050
,4,28631,174055
,4,28632,174060
,4,28633,174065
,4,28634,174070
,4,28635,174075
,4,28636,174080
,4,28637,174085
,4,28638,174090
,4,28639,174095
,4,28640,174100
,4,28641,174105
,4,28642,174110
,4,28643,174115
,4,28644,174120
,4,28645,174125
,4,28646,174130
,4,28647,174135
,4,28648,174140
,4,28649,174145
,4,28650,174150
,4,28651,174155
,4,28652,174160
,4,28653,174165
,4,28654,174170
,4,28655,174175
,4,28656,174180
,4,28657,174185
,4,28658,174190
,4,28659,174195
,4,28660,174200
,4,28661,174205
,4,28662,174210
,4,28663,174215
,4,28664,174220
,4,28665,174225
,4,28666,174230
,4,28667,174235
,4,28668,174240
,4,28669,174245
,4,28670,174250
,4,28671,174255
,4,28672,174260
,4,28673,174265
,4,28674,174270
,4,28675,174275
,4,28676,174280
,4,28677,174285
,4,28678,174290
,4,28679,174295
,4,28680,174300
,4,28681,174305
,4,28682,174310
,4,28683,174315
,4,28684,174320
,4,28685,174325
,4,28686,174330
,4,28687,174335
,4,28688,174340
,4,28689,174345
,4,28690,174350
,4,28691,174355
,4,28692,174360
,4,28693,174365
,4,28694,174370
,4,28695,174375
,4,28696,174380
,4,28697,174385
,4,28698,174390
,4,28699,174395
,4,28700,174400
,4,28701,174405
,4,28702,174410
,4,28703,174415
,4,28704,174420
,4,28705,174425
,4,28706,174430
,4,28707,174435
,4,28708,174440
,4,28709,174445
,4,28710,174450
,4,28711,174455
,4,28712,174460
,4,28713,174465
,4,28714,174470
,4,28715,174475
,4,28716,174480
,4,28717,174485
,4,28718,174490
,4,28719,174495
,4,28720,174500
,4,28721,174505
,4,28722,174510
,4,28723,174515
,4,28724,174520
,4,28725,174525
,4,28726,174530
,4,28727,174535
,4,28728,174540
,4,28729,174545
,4,28730,174550
,4,28731,174555
,4,28732,174560
,4,28733,174565
,4,28734,174570
,4,28735,174575
,4,28736,174580
,4,28737,174585
,4,28738,174590
,4,28739,174595
,4,28740,174600
,4,28741,174605
,4,28742,174610
,4,28743,174615
,4,28744,174620
,4,28745,174625
,4,28746,174630
,4,28747,174635
,4,28748,174640
,4,28749,174645
,4,28750,174650
,4,28751,174655
,4,28752,174660
,4,28753,174665
,4,28754,174670
,4,28755,174675
,4,28756,174680
,4,28757,174685
,4,28758,174690
,4,28759,174695
,4,28760,174700
,4,28761,174705
,4,28762,174710
,4,28763,174715
,4,28764,174720
,4,28765,174725
,4,28766,174730
,4,28767,174735
,4,28768,174740
,4,28769,174745
,4,28770,174750
,4,28771,174755
,4,28772,174760
,4,28773,174765
,4,28774,174770
,4,28775,174775
,4,28776,174780
,4,28777,174785
,4,28778,174790
,4,28779,174795
,4,28780,174800
,4,28781,174805
,4,28782,174810
,4,28783,174815
,4,28784,174820
,4,28785,174825
,4,28786,174830
,4,28787,174835
,4,28788,174840
,4,28789,174845
,4,28790,174850
,4,28791,174855
,4,28792,174860
,4,28793,174865
,4,28794,174870
,4,28795,174875
,4,28796,174880
,4,28797,174885
,4,28798,174890
,4,28799,174895
,4,28800,174900
,4,28801,174905
,4,28802,174910
,4,28803,174915
,4,28804,174920
,4,28805,174925
,4,28806,174930
,4,28807,174935
,4,28808,174940
,4,28809,174945
,4,28810,174950
,4,28811,174955
,4,28812,174960
,4,28813,174965
,4,28814,174970
,4,28815,174975
,4,28816,174980
,4,28817,174985
,4,28818,174990
,4,28819,174995
,4,28820,175000
,4,28821,175005
,4,28822,175010
,4,28823,175015
,4,28824,175020
,4,28825,175025
,4,28826,175030
,4,28827,175035
,4,28828,175040
,4,28829,175045
,4,28830,175050
,4,28831,175055
,4,28832,175060
,4,28833,175065
,4,28834,175070
,4,28835,175075
,4,28836,175080
,4,28837,175085
,4,28838,175090
,4,28839,175095
,4,28840,175100
,4,28841,175105
,4,28842,175110
,4,28843,175115
,4,28844,175120
,4,28845,175125
,4,28846,175130
,4,28847,175135
,4,28848,175140
,4,28849,175145
,4,28850,175150
,4,28851,175155
,4,28852,175160
,4,28853,175165
,4,28854,175170
,4,28855,175175
,4,28856,175180
,4,28857,175185
,4,28858,175190
,4,28859,175195
,4,28860,175200
,4,28861,175205
,4,28862,175210
,4,28863,175215
,4,28864,175220
,4,28865,175225
,4,28866,175230
,4,28867,175235
,4,28868,175240
,4,28869,175245
,4,28870,175250
,4,28871,175255
,4,28872,175260
,4,28873,175265
,4,28874,175270
,4,28875,175275
,4,28876,175280
,4,28877,175285
,4,28878,175290
,4,28879,175295
,4,28880,175300
,4,28881,175305
,4,28882,175310
,4,28883,175315
,4,28884,175320
,4,28885,175325
,4,28886,175330
,4,28887,175335
,4,28888,175340
,4,28889,175345
,4,28890,175350
,4,28891,175355
,4,28892,175360
,4,28893,175365
,4,28894,175370
,4,28895,175375
,4,28896,175380
,4,28897,175385
,4,28898,175390
,4,28899,175395
,4,28900,175400
,4,28901,175405
,4,28902,175410
,4,28903,175415
,4,28904,175420
,4,28905,175425
,4,28906,175430
,4,28907,175435
,4,28908,175440
,4,28909,175445
,4,28910,175450
,4,28911,175455
,4,28912,175460
,4,28913,175465
,4,28914,175470
,4,28915,175475
,4,28916,175480
,4,28917,175485
,4,28918,175490
,4,28919,175495
,4,28920,175500
,4,28921,175505
,4,28922,175510
,4,28923,175515
,4,28924,175520
,4,28925,175525
,4,28926,175530
,4,28927,175535
,4,28928,175540
,4,28929,175545
,4,28930,175550
,4,28931,175555
,4,28932,175560
,4,28933,175565
,4,28934,175570
,4,28935,175575
,4,28936,175580
,4,28937,175585
,4,28938,175590
,4,28939,175595
,4,28940,175600
,4,28941,175605
,4,28942,175610
,4,28943,175615
,4,28944,175620
,4,28945,175625
,4,28946,175630
,4,28947,175635
,4,28948,175640
,4,28949,175645
,4,28950,175650
,4,28951,175655
,4,28952,175660
,4,28953,175665
,4,28954,175670
,4,28955,175675
,4,28956,175680
,4,28957,175685
,4,28958,175690
,4,28959,175695
,4,28960,175700
,4,28961,175705
,4,28962,175710
,4,28963,175715
,4,28964,175720
,4,28965,175725
,4,28966,175730
,4,28967,175735
,4,28968,175740
,4,28969,175745
,4,28970,175750
,4,28971,175755
,4,28972,175760
,4,28973,175765
,4,28974,175770
,4,28975,175775
,4,28976,175780
,4,28977,175785
,4,28978,175790
,4,28979,175795
,4,28980,175800
,4,28981,175805
,4,28982,175810
,4,28983,175815
,4,28984,175820
,4,28985,175825
,4,28986,175830
,4,28987,175835
,4,28988,175840
,4,28989,175845
,4,28990,175850
,4,28991,175855
,4,28992,175860
,4,28993,175865
,4,28994,175870
,4,28995,175875
,4,28996,175880
,4,28997,175885
,4,28998,175890
,4,28999,175895
,4,29000,175900
,4,29001,175905
,4,29002,175910
,4,29003,175915
,4,29004,175920
,4,29005,175925
,4,29006,175930
,4,29007,175935
,4,29008,175940
,4,29009,175945
,4,29010,175950
,4,29011,175955
,4,29012,175960
,4,29013,175965
,4,29014,175970
,4,29015,175975
,4,29016,175980
,4,29017,175985
,4,29018,175990
,4,29019,175995
,4,29020,176000
,4,29021,176005
,4,29022,176010
,4,29023,176015
,4,29024,176020
,4,29025,176025
,4,29026,176030
,4,29027,176035
,4,29028,176040
,4,29029,176045
,4,29030,176050
,4,29031,176055
,4,29032,176060
,4,29033,176065
,4,29034,176070
,4,29035,176075
,4,29036,176080
,4,29037,176085
,4,29038,176090
,4,29039,176095
,4,29040,176100
,4,29041,176105
,4,29042,176110
,4,29043,176115
,4,29044,176120
,4,29045,176125
,4,29046,176130
,4,29047,176135
,4,29048,176140
,4,29049,176145
,4,29050,176150
,4,29051,176155
,4,29052,176160
,4,29053,176165
,4,29054,176170
,4,29055,176175
,4,29056,176180
,4,29057,176185
,4,29058,176190
,4,29059,176195
,4,29060,176200
,4,29061,176205
,4,29062,176210
,4,29063,176215
,4,29064,176220
,4,29065,176225
,4,29066,176230
,4,29067,176235
,4,29068,176240
,4,29069,176245
,4,29070,176250
,4,29071,176255
,4,29072,176260
,4,29073,176265
,4,29074,176270
,4,29075,176275
,4,29076,176280
,4,29077,176285
,4,29078,176290
,4,29079,176295
,4,29080,176300
,4,29081,176305
,4,29082,176310
,4,29083,176315
,4,29084,176320
,4,29085,176325
,4,29086,176330
,4,29087,176335
,4,29088,176340
,4,29089,176345
,4,29090,176350
,4,29091,176355
,4,29092,176360
,4,29093,176365
,4,29094,176370
,4,29095,176375
,4,29096,176380
,4,29097,176385
,4,29098,176390
,4,29099,176395
,4,29100,176400
,4,29101,176405
,4,29102,176410
,4,29103,176415
,4,29104,176420
,4,29105,176425
,4,29106,176430
,4,29107,176435
,4,29108,176440
,4,29109,176445
,4,29110,176450
,4,29111,176455
,4,29112,176460
,4,29113,176465
,4,29114,176470
,4,29115,176475
,4,29116,176480
,4,29117,176485
,4,29118,176490
,4,29119,176495
,4,29120,176500
,4,29121,176505
,4,29122,176510
,4,29123,176515
,4,29124,176520
,4,29125,176525
,4,29126,176530
,4,29127,176535
,4,29128,176540
,4,29129,176545
,4,29130,176550
,4,29131,176555
,4,29132,176560
,4,29133,176565
,4,29134,176570
,4,29135,176575
,4,29136,176580
,4,29137,176585
,4,29138,176590
,4,29139,176595
,4,29140,176600
,4,29141,176605
,4,29142,176610
,4,29143,176615
,4,29144,176620
,4,29145,176625
,4,29146,176630
,4,29147,176635
,4,29148,176640
,4,29149,176645
,4,29150,176650
,4,29151,176655
,4,29152,176660
,4,29153,176665
,4,29154,176670
,4,29155,176675
,4,29156,176680
,4,29157,176685
,4,29158,176690
,4,29159,176695
,4,29160,176700
,4,29161,176705
,4,29162,176710
,4,29163,176715
,4,29164,176720
,4,29165,176725
,4,29166,176730
,4,29167,176735
,4,29168,176740
,4,29169,176745
,4,29170,176750
,4,29171,176755
,4,29172,176760
,4,29173,176765
,4,29174,176770
,4,29175,176775
,4,29176,176780
,4,29177,176785
,4,29178,176790
,4,29179,176795
,4,29180,176800
,4,29181,176805
,4,29182,176810
,4,29183,176815
,4,29184,176820
,4,29185,176825
,4,29186,176830
,4,29187,176835
,4,29188,176840
,4,29189,176845
,4,29190,176850
,4,29191,176855
,4,29192,176860
,4,29193,176865
,4,29194,176870
,4,29195,176875
,4,29196,176880
,4,29197,176885
,4,29198,176890
,4,29199,176895
,4,29200,176900
,4,29201,176905
,4,29202,176910
,4,29203,176915
,4,29204,176920
,4,29205,176925
,4,29206,176930
,4,29207,176935
,4,29208,176940
,4,29209,176945
,4,29210,176950
,4,29211,176955
,4,29212,176960
,4,29213,176965
,4,29214,176970
,4,29215,176975
,4,29216,176980
,4,29217,176985
,4,29218,176990
,4,29219,176995
,4,29220,177000
,4,29221,177005
,4,29222,177010
,4,29223,177015
,4,29224,177020
,4,29225,177025
,4,29226,177030
,4,29227,177035
,4,29228,177040
,4,29229,177045
,4,29230,177050
,4,29231,177055
,4,29232,177060
,4,29233,177065
,4,29234,177070
,4,29235,177075
,4,29236,177080
,4,29237,177085
,4,29238,177090
,4,29239,177095
,4,29240,177100
,4,29241,177105
,4,29242,177110
,4,29243,177115
,4,29244,177120
,4,29245,177125
,4,29246,177130
,4,29247,177135
,4,29248,177140
,4,29249,177145
,4,29250,177150
,4,29251,177155
,4,29252,177160
,4,29253,177165
,4,29254,177170
,4,29255,177175
,4,29256,177180
,4,29257,177185
,4,29258,177190
,4,29259,177195
,4,29260,177200
,4,29261,177205
,4,29262,177210
,4,29263,177215
,4,29264,177220
,4,29265,177225
,4,29266,177230
,4,29267,177235
,4,29268,177240
,4,29269,177245
,4,29270,177250
,4,29271,177255
,4,29272,177260
,4,29273,177265
,4,29274,177270
,4,29275,177275
,4,29276,177280
,4,29277,177285
,4,29278,177290
,4,29279,177295
,4,29280,177300
,4,29281,177305
,4,29282,177310
,4,29283,177315
,4,29284,177320
,4,29285,177325
,4,29286,177330
,4,29287,177335
,4,29288,177340
,4,29289,177345
,4,29290,177350
,4,29291,177355
,4,29292,177360
,4,29293,177365
,4,29294,177370
,4,29295,177375
,4,29296,177380
,4,29297,177385
,4,29298,177390
,4,29299,177395
,4,29300,177400
,4,29301,177405
,4,29302,177410
,4,29303,177415
,4,29304,177420
,4,29305,177425
,4,29306,177430
,4,29307,177435
,4,29308,177440
,4,29309,177445
,4,29310,177450
,4,29311,177455
,4,29312,177460
,4,29313,177465
,4,29314,177470
,4,29315,177475
,4,29316,177480
,4,29317,177485
,4,29318,177490
,4,29319,177495
,4,29320,177500
,4,29321,177505
,4,29322,177510
,4,29323,177515
,4,29324,177520
,4,29325,177525
,4,29326,177530
,4,29327,177535
,4,29328,177540
,4,29329,177545
,4,29330,177550
,4,29331,177555
,4,29332,177560
,4,29333,177565
,4,29334,177570
,4,29335,177575
,4,29336,177580
,4,29337,177585
,4,29338,177590
,4,29339,177595
,4,29340,177600
,4,29341,177605
,4,29342,177610
,4,29343,177615
,4,29344,177620
,4,29345,177625
,4,29346,177630
,4,29347,177635
,4,29348,177640
,4,29349,177645
,4,29350,177650
,4,29351,177655
,4,29352,177660
,4,29353,177665
,4,29354,177670
,4,29355,177675
,4,29356,177680
,4,29357,177685
,4,29358,177690
,4,29359,177695
,4,29360,177700
,4,29361,177705
,4,29362,177710
,4,29363,177715
,4,29364,177720
,4,29365,177725
,4,29366,177730
,4,29367,177735
,4,29368,177740
,4,29369,177745
,4,29370,177750
,4,29371,177755
,4,29372,177760
,4,29373,177765
,4,29374,177770
,4,29375,177775
,4,29376,177780
,4,29377,177785
,4,29378,177790
,4,29379,177795
,4,29380,177800
,4,29381,177805
,4,29382,177810
,4,29383,177815
,4,29384,177820
,4,29385,177825
,4,29386,177830
,4,29387,177835
,4,29388,177840
,4,29389,177845
,4,29390,177850
,4,29391,177855
,4,29392,177860
,4,29393,177865
,4,29394,177870
,4,29395,177875
,4,29396,177880
,4,29397,177885
,4,29398,177890
,4,29399,177895
,4,29400,177900
,4,29401,177905
,4,29402,177910
,4,29403,177915
,4,29404,177920
,4,29405,177925
,4,29406,177930
,4,29407,177935
,4,29408,177940
,4,29409,177945
,4,29410,177950
,4,29411,177955
,4,29412,177960
,4,29413,177965
,4,29414,177970
,4,29415,177975
,4,29416,177980
,4,29417,177985
,4,29418,177990
,4,29419,177995
,4,29420,178000
,4,29421,178005
,4,29422,178010
,4,29423,178015
,4,29424,178020
,4,29425,178025
,4,29426,178030
,4,29427,178035
,4,29428,178040
,4,29429,178045
,4,29430,178050
,4,29431,178055
,4,29432,178060
,4,29433,178065
,4,29434,178070
,4,29435,178075
,4,29436,178080
,4,29437,178085
,4,29438,178090
,4,29439,178095
,4,29440,178100
,4,29441,178105
,4,29442,178110
,4,29443,178115
,4,29444,178120
,4,29445,178125
,4,29446,178130
,4,29447,178135
,4,29448,178140
,4,29449,178145
,4,29450,178150
,4,29451,178155
,4,29452,178160
,4,29453,178165
,4,29454,178170
,4,29455,178175
,4,29456,178180
,4,29457,178185
,4,29458,178190
,4,29459,178195
,4,29460,178200
,4,29461,178205
,4,29462,178210
,4,29463,178215
,4,29464,178220
,4,29465,178225
,4,29466,178230
,4,29467,178235
,4,29468,178240
,4,29469,178245
,4,29470,178250
,4,29471,178255
,4,29472,178260
,4,29473,178265
,4,29474,178270
,4,29475,178275
,4,29476,178280
,4,29477,178285
,4,29478,178290
,4,29479,178295
,4,29480,178300
,4,29481,178305
,4,29482,178310
,4,29483,178315
,4,29484,178320
,4,29485,178325
,4,29486,178330
,4,29487,178335
,4,29488,178340
,4,29489,178345
,4,29490,178350
,4,29491,178355
,4,29492,178360
,4,29493,178365
,4,29494,178370
,4,29495,178375
,4,29496,178380
,4,29497,178385
,4,29498,178390
,4,29499,178395
,4,29500,178400
,4,29501,178405
,4,29502,178410
,4,29503,178415
,4,29504,178420
,4,29505,178425
,4,29506,178430
,4,29507,178435
,4,29508,178440
,4,29509,178445
,4,29510,178450
,4,29511,178455
,4,29512,178460
,4,29513,178465
,4,29514,178470
,4,29515,178475
,4,29516,178480
,4,29517,178485
,4,29518,178490
,4,29519,178495
,4,29520,178500
,4,29521,178505
,4,29522,178510
,4,29523,178515
,4,29524,178520
,4,29525,178525
,4,29526,178530
,4,29527,178535
,4,29528,178540
,4,29529,178545
,4,29530,178550
,4,29531,178555
,4,29532,178560
,4,29533,178565
,4,29534,178570
,4,29535,178575
,4,29536,178580
,4,29537,178585
,4,29538,178590
,4,29539,178595
,4,29540,178600
,4,29541,178605
,4,29542,178610
,4,29543,178615
,4,29544,178620
,4,29545,178625
,4,29546,178630
,4,29547,178635
,4,29548,178640
,4,29549,178645
,4,29550,178650
,4,29551,178655
,4,29552,178660
,4,29553,178665
,4,29554,178670
,4,29555,178675
,4,29556,178680
,4,29557,178685
,4,29558,178690
,4,29559,178695
,4,29560,178700
,4,29561,178705
,4,29562,178710
,4,29563,178715
,4,29564,178720
,4,29565,178725
,4,29566,178730
,4,29567,178735
,4,29568,178740
,4,29569,178745
,4,29570,178750
,4,29571,178755
,4,29572,178760
,4,29573,178765
,4,29574,178770
,4,29575,178775
,4,29576,178780
,4,29577,178785
,4,29578,178790
,4,29579,178795
,4,29580,178800
,4,29581,178805
,4,29582,178810
,4,29583,178815
,4,29584,178820
,4,29585,178825
,4,29586,178830
,4,29587,178835
,4,29588,178840
,4,29589,178845
,4,29590,178850
,4,29591,178855
,4,29592,178860
,4,29593,178865
,4,29594,178870
,4,29595,178875
,4,29596,178880
,4,29597,178885
,4,29598,178890
,4,29599,178895
,4,29600,178900
,4,29601,178905
,4,29602,178910
,4,29603,178915
,4,29604,178920
,4,29605,178925
,4,29606,178930
,4,29607,178935
,4,29608,178940
,4,29609,178945
,4,29610,178950
,4,29611,178955
,4,29612,178960
,4,29613,178965
,4,29614,178970
,4,29615,178975
,4,29616,178980
,4,29617,178985
,4,29618,178990
,4,29619,178995
,4,29620,179000
,4,29621,179005
,4,29622,179010
,4,29623,179015
,4,29624,179020
,4,29625,179025
,4,29626,179030
,4,29627,179035
,4,29628,179040
,4,29629,179045
,4,29630,179050
,4,29631,179055
,4,29632,179060
,4,29633,179065
,4,29634,179070
,4,29635,179075
,4,29636,179080
,4,29637,179085
,4,29638,179090
,4,29639,179095
,4,29640,179100
,4,29641,179105
,4,29642,179110
,4,29643,179115
,4,29644,179120
,4,29645,179125
,4,29646,179130
,4,29647,179135
,4,29648,179140
,4,29649,179145
,4,29650,179150
,4,29651,179155
,4,29652,179160
,4,29653,179165
,4,29654,179170
,4,29655,179175
,4,29656,179180
,4,29657,179185
,4,29658,179190
,4,29659,179195
,4,29660,179200
,4,29661,179205
,4,29662,179210
,4,29663,179215
,4,29664,179220
,4,29665,179225
,4,29666,179230
,4,29667,179235
,4,29668,179240
,4,29669,179245
,4,29670,179250
,4,29671,179255
,4,29672,179260
,4,29673,179265
,4,29674,179270
,4,29675,179275
,4,29676,179280
,4,29677,179285
,4,29678,179290
,4,29679,179295
,4,29680,179300
,4,29681,179305
,4,29682,179310
,4,29683,179315
,4,29684,179320
,4,29685,179325
,4,29686,179330
,4,29687,179335
,4,29688,179340
,4,29689,179345
,4,29690,179350
,4,29691,179355
,4,29692,179360
,4,29693,179365
,4,29694,179370
,4,29695,179375
,4,29696,179380
,4,29697,179385
,4,29698,179390
,4,29699,179395
,4,29700,179400
,4,29701,179405
,4,29702,179410
,4,29703,179415
,4,29704,179420
,4,29705,179425
,4,29706,179430
,4,29707,179435
,4,29708,179440
,4,29709,179445
,4,29710,179450
,4,29711,179455
,4,29712,179460
,4,29713,179465
,4,29714,179470
,4,29715,179475
,4,29716,179480
,4,29717,179485
,4,29718,179490
,4,29719,179495
,4,29720,179500
,4,29721,179505
,4,29722,179510
,4,29723,179515
,4,29724,179520
,4,29725,179525
,4,29726,179530
,4,29727,179535
,4,29728,179540
,4,29729,179545
,4,29730,179550
,4,29731,179555
,4,29732,179560
,4,29733,179565
,4,29734,179570
,4,29735,179575
,4,29736,179580
,4,29737,179585
,4,29738,179590
,4,29739,179595
,4,29740,179600
,4,29741,179605
,4,29742,179610
,4,29743,179615
,4,29744,179620
,4,29745,179625
,4,29746,179630
,4,29747,179635
,4,29748,179640
,4,29749,179645
,4,29750,179650
,4,29751,179655
,4,29752,179660
,4,29753,179665
,4,29754,179670
,4,29755,179675
,4,29756,179680
,4,29757,179685
,4,29758,179690
,4,29759,179695
,4,29760,179700
,4,29761,179705
,4,29762,179710
,4,29763,179715
,4,29764,179720
,4,29765,179725
,4,29766,179730
,4,29767,179735
,4,29768,179740
,4,29769,179745
,4,29770,179750
,4,29771,179755
,4,29772,179760
,4,29773,179765
,4,29774,179770
,4,29775,179775
,4,29776,179780
,4,29777,179785
,4,29778,179790
,4,29779,179795
,4,29780,179800
,4,29781,179805
,4,29782,179810
,4,29783,179815
,4,29784,179820
,4,29785,179825
,4,29786,179830
,4,29787,179835
,4,29788,179840
,4,29789,179845
,4,29790,179850
,4,29791,179855
,4,29792,179860
,4,29793,179865
,4,29794,179870
,4,29795,179875
,4,29796,179880
,4,29797,179885
,4,29798,179890
,4,29799,179895
,4,29800,179900
,4,29801,179905
,4,29802,179910
,4,29803,179915
,4,29804,179920
,4,29805,179925
,4,29806,179930
,4,29807,179935
,4,29808,179940
,4,29809,179945
,4,29810,179950
,4,29811,179955
,4,29812,179960
,4,29813,179965
,4,29814,179970
,4,29815,179975
,4,29816,179980
,4,29817,179985
,4,29818,179990
,4,29819,179995
,4,29820,180000
,4,29821,180005
,4,29822,180010
,4,29823,180015
,4,29824,180020
,4,29825,180025
,4,29826,180030
,4,29827,180035
,4,29828,180040
,4,29829,180045
,4,29830,180050
,4,29831,180055
,4,29832,180060
,4,29833,180065
,4,29834,180070
,4,29835,180075
,4,29836,180080
,4,29837,180085
,4,29838,180090
,4,29839,180095
,4,29840,180100
,4,29841,180105
,4,29842,180110
,4,29843,180115
,4,29844,180120
,4,29845,180125
,4,29846,180130
,4,29847,180135
,4,29848,180140
,4,29849,180145
,4,29850,180150
,4,29851,180155
,4,29852,180160
,4,29853,180165
,4,29854,180170
,4,29855,180175
,4,29856,180180
,4,29857,180185
,4,29858,180190
,4,29859,180195
,4,29860,180200
,4,29861,180205
,4,29862,180210
,4,29863,180215
,4,29864,180220
,4,29865,180225
,4,29866,180230
,4,29867,180235
,4,29868,180240
,4,29869,180245
,4,29870,180250
,4,29871,180255
,4,29872,180260
,4,29873,180265
,4,29874,180270
,4,29875,180275
,4,29876,180280
,4,29877,180285
,4,29878,180290
,4,29879,180295
,4,29880,180300
,4,29881,180305
,4,29882,180310
,4,29883,180315
,4,29884,180320
,4,29885,180325
,4,29886,180330
,4,29887,180335
,4,29888,180340
,4,29889,180345
,4,29890,180350
,4,29891,180355
,4,29892,180360
,4,29893,180365
,4,29894,180370
,4,29895,180375
,4,29896,180380
,4,29897,180385
,4,29898,180390
,4,29899,180395
,4,29900,180400
,4,29901,180405
,4,29902,180410
,4,29903,180415
,4,29904,180420
,4,29905,180425
,4,29906,180430
,4,29907,180435
,4,29908,180440
,4,29909,180445
,4,29910,180450
,4,29911,180455
,4,29912,180460
,4,29913,180465
,4,29914,180470
,4,29915,180475
,4,29916,180480
,4,29917,180485
,4,29918,180490
,4,29919,180495
,4,29920,180500
,4,29921,180505
,4,29922,180510
,4,29923,180515
,4,29924,180520
,4,29925,180525
,4,29926,180530
,4,29927,180535
,4,29928,180540
,4,29929,180545
,4,29930,180550
,4,29931,180555
,4,29932,180560
,4,29933,180565
,4,29934,180570
,4,29935,180575
,4,29936,180580
,4,29937,180585
,4,29938,180590
,4,29939,180595
,4,29940,180600
,4,29941,180605
,4,29942,180610
,4,29943,180615
,4,29944,180620
,4,29945,180625
,4,29946,180630
,4,29947,180635
,4,29948,180640
,4,29949,180645
,4,29950,180650
,4,29951,180655
,4,29952,180660
,4,29953,180665
,4,29954,180670
,4,29955,180675
,4,29956,180680
,4,29957,180685
,4,29958,180690
,4,29959,180695
,4,29960,180700
,4,29961,180705
,4,29962,180710
,4,29963,180715
,4,29964,180720
,4,29965,180725
,4,29966,180730
,4,29967,180735
,4,29968,180740
,4,29969,180745
,4,29970,180750
,4,29971,180755
,4,29972,180760
,4,29973,180765
,4,29974,180770
,4,29975,180775
,4,29976,180780
,4,29977,180785
,4,29978,180790
,4,29979,180795
,4,29980,180800
,4,29981,180805
,4,29982,180810
,4,29983,180815
,4,29984,180820
,4,29985,180825
,4,29986,180830
,4,29987,180835
,4,29988,180840
,4,29989,180845
,4,29990,180850
,4,29991,180855
,4,29992,180860
,4,29993,180865
,4,29994,180870
,4,29995,180875
,4,29996,180880
,4,29997,180885
,4,29998,180890
,4,29999,180895
,4,30000,180900
,4,30001,180905
,4,30002,180910
,4,30003,180915
,4,30004,180920
,4,30005,180925
,4,30006,180930
,4,30007,180935
,4,30008,180940
,4,30009,180945
,4,30010,180950
,4,30011,180955
,4,30012,180960
,4,30013,180965
,4,30014,180970
,4,30015,180975
,4,30016,180980
,4,30017,180985
,4,30018,180990
,4,30019,180995
,4,30020,181000
,4,30021,181005
,4,30022,181010
,4,30023,181015
,4,30024,181020
,4,30025,181025
,4,30026,181030
,4,30027,181035
,4,30028,181040
,4,30029,181045
,4,30030,181050
,4,30031,181055
,4,30032,181060
,4,30033,181065
,4,30034,181070
,4,30035,181075
,4,30036,181080
,4,30037,181085
,4,30038,181090
,4,30039,181095
,4,30040,181100
,4,30041,181105
,4,30042,181110
,4,30043,181115
,4,30044,181120
,4,30045,181125
,4,30046,181130
,4,30047,181135
,4,30048,181140
,4,30049,181145
,4,30050,181150
,4,30051,181155
,4,30052,181160
,4,30053,181165
,4,30054,181170
,4,30055,181175
,4,30056,181180
,4,30057,181185
,4,30058,181190
,4,30059,181195
,4,30060,181200
,4,30061,181205
,4,30062,181210
,4,30063,181215
,4,30064,181220
,4,30065,181225
,4,30066,181230
,4,30067,181235
,4,30068,181240
,4,30069,181245
,4,30070,181250
,4,30071,181255
,4,30072,181260
,4,30073,181265
,4,30074,181270
,4,30075,181275
,4,30076,181280
,4,30077,181285
,4,30078,181290
,4,30079,181295
,4,30080,181300
,4,30081,181305
,4,30082,181310
,4,30083,181315
,4,30084,181320
,4,30085,181325
,4,30086,181330
,4,30087,181335
,4,30088,181340
,4,30089,181345
,4,30090,181350
,4,30091,181355
,4,30092,181360
,4,30093,181365
,4,30094,181370
,4,30095,181375
,4,30096,181380
,4,30097,181385
,4,30098,181390
,4,30099,181395
,4,30100,181400
,4,30101,181405
,4,30102,181410
,4,30103,181415
,4,30104,181420
,4,30105,181425
,4,30106,181430
,4,30107,181435
,4,30108,181440
,4,30109,181445
,4,30110,181450
,4,30111,181455
,4,30112,181460
,4,30113,181465
,4,30114,181470
,4,30115,181475
,4,30116,181480
,4,30117,181485
,4,30118,181490
,4,30119,181495
,4,30120,181500
,4,30121,181505
,4,30122,181510
,4,30123,181515
,4,30124,181520
,4,30125,181525
,4,30126,181530
,4,30127,181535
,4,30128,181540
,4,30129,181545
,4,30130,181550
,4,30131,181555
,4,30132,181560
,4,30133,181565
,4,30134,181570
,4,30135,181575
,4,30136,181580
,4,30137,181585
,4,30138,181590
,4,30139,181595
,4,30140,181600
,4,30141,181605
,4,30142,181610
,4,30143,181615
,4,30144,181620
,4,30145,181625
,4,30146,181630
,4,30147,181635
,4,30148,181640
,4,30149,181645
,4,30150,181650
,4,30151,181655
,4,30152,181660
,4,30153,181665
,4,30154,181670
,4,30155,181675
,4,30156,181680
,4,30157,181685
,4,30158,181690
,4,30159,181695
,4,30160,181700
,4,30161,181705
,4,30162,181710
,4,30163,181715
,4,30164,181720
,4,30165,181725
,4,30166,181730
,4,30167,181735
,4,30168,181740
,4,30169,181745
,4,30170,181750
,4,30171,181755
,4,30172,181760
,4,30173,181765
,4,30174,181770
,4,30175,181775
,4,30176,181780
,4,30177,181785
,4,30178,181790
,4,30179,181795
,4,30180,181800
,4,30181,181805
,4,30182,181810
,4,30183,181815
,4,30184,181820
,4,30185,181825
,4,30186,181830
,4,30187,181835
,4,30188,181840
,4,30189,181845
,4,30190,181850
,4,30191,181855
,4,30192,181860
,4,30193,181865
,4,30194,181870
,4,30195,181875
,4,30196,181880
,4,30197,181885
,4,30198,181890
,4,30199,181895
,4,30200,181900
,4,30201,181905
,4,30202,181910
,4,30203,181915
,4,30204,181920
,4,30205,181925
,4,30206,181930
,4,30207,181935
,4,30208,181940
,4,30209,181945
,4,30210,181950
,4,30211,181955
,4,30212,181960
,4,30213,181965
,4,30214,181970
,4,30215,181975
,4,30216,181980
,4,30217,181985
,4,30218,181990
,4,30219,181995
,4,30220,182000
,4,30221,182005
,4,30222,182010
,4,30223,182015
,4,30224,182020
,4,30225,182025
,4,30226,182030
,4,30227,182035
,4,30228,182040
,4,30229,182045
,4,30230,182050
,4,30231,182055
,4,30232,182060
,4,30233,182065
,4,30234,182070
,4,30235,182075
,4,30236,182080
,4,30237,182085
,4,30238,182090
,4,30239,182095
,4,30240,182100
,4,30241,182105
,4,30242,182110
,4,30243,182115
,4,30244,182120
,4,30245,182125
,4,30246,182130
,4,30247,182135
,4,30248,182140
,4,30249,182145
,4,30250,182150
,4,30251,182155
,4,30252,182160
,4,30253,182165
,4,30254,182170
,4,30255,182175
,4,30256,182180
,4,30257,182185
,4,30258,182190
,4,30259,182195
,4,30260,182200
,4,30261,182205
,4,30262,182210
,4,30263,182215
,4,30264,182220
,4,30265,182225
,4,30266,182230
,4,30267,182235
,4,30268,182240
,4,30269,182245
,4,30270,182250
,4,30271,182255
,4,30272,182260
,4,30273,182265
,4,30274,182270
,4,30275,182275
,4,30276,182280
,4,30277,182285
,4,30278,182290
,4,30279,182295
,4,30280,182300
,4,30281,182305
,4,30282,182310
,4,30283,182315
,4,30284,182320
,4,30285,182325
,4,30286,182330
,4,30287,182335
,4,30288,182340
,4,30289,182345
,4,30290,182350
,4,30291,182355
,4,30292,182360
,4,30293,182365
,4,30294,182370
,4,30295,182375
,4,30296,182380
,4,30297,182385
,4,30298,182390
,4,30299,182395
,4,30300,182400
,4,30301,182405
,4,30302,182410
,4,30303,182415
,4,30304,182420
,4,30305,182425
,4,30306,182430
,4,30307,182435
,4,30308,182440
,4,30309,182445
,4,30310,182450
,4,30311,182455
,4,30312,182460
,4,30313,182465
,4,30314,182470
,4,30315,182475
,4,30316,182480
,4,30317,182485
,4,30318,182490
,4,30319,182495
,4,30320,182500
,4,30321,182505
,4,30322,182510
,4,30323,182515
,4,30324,182520
,4,30325,182525
,4,30326,182530
,4,30327,182535
,4,30328,182540
,4,30329,182545
,4,30330,182550
,4,30331,182555
,4,30332,182560
,4,30333,182565
,4,30334,182570
,4,30335,182575
,4,30336,182580
,4,30337,182585
,4,30338,182590
,4,30339,182595
,4,30340,182600
,4,30341,182605
,4,30342,182610
,4,30343,182615
,4,30344,182620
,4,30345,182625
,4,30346,182630
,4,30347,182635
,4,30348,182640
,4,30349,182645
,4,30350,182650
,4,30351,182655
,4,30352,182660
,4,30353,182665
,4,30354,182670
,4,30355,182675
,4,30356,182680
,4,30357,182685
,4,30358,182690
,4,30359,182695
,4,30360,182700
,4,30361,182705
,4,30362,182710
,4,30363,182715
,4,30364,182720
,4,30365,182725
,4,30366,182730
,4,30367,182735
,4,30368,182740
,4,30369,182745
,4,30370,182750
,4,30371,182755
,4,30372,182760
,4,30373,182765
,4,30374,182770
,4,30375,182775
,4,30376,182780
,4,30377,182785
,4,30378,182790
,4,30379,182795
,4,30380,182800
,4,30381,182805
,4,30382,182810
,4,30383,182815
,4,30384,182820
,4,30385,182825
,4,30386,182830
,4,30387,182835
,4,30388,182840
,4,30389,182845
,4,30390,182850
,4,30391,182855
,4,30392,182860
,4,30393,182865
,4,30394,182870
,4,30395,182875
,4,30396,182880
,4,30397,182885
,4,30398,182890
,4,30399,182895
,4,30400,182900
,4,30401,182905
,4,30402,182910
,4,30403,182915
,4,30404,182920
,4,30405,182925
,4,30406,182930
,4,30407,182935
,4,30408,182940
,4,30409,182945
,4,30410,182950
,4,30411,182955
,4,30412,182960
,4,30413,182965
,4,30414,182970
,4,30415,182975
,4,30416,182980
,4,30417,182985
,4,30418,182990
,4,30419,182995
,4,30420,183000
,4,30421,183005
,4,30422,183010
,4,30423,183015
,4,30424,183020
,4,30425,183025
,4,30426,183030
,4,30427,183035
,4,30428,183040
,4,30429,183045
,4,30430,183050
,4,30431,183055
,4,30432,183060
,4,30433,183065
,4,30434,183070
,4,30435,183075
,4,30436,183080
,4,30437,183085
,4,30438,183090
,4,30439,183095
,4,30440,183100
,4,30441,183105
,4,30442,183110
,4,30443,183115
,4,30444,183120
,4,30445,183125
,4,30446,183130
,4,30447,183135
,4,30448,183140
,4,30449,183145
,4,30450,183150
,4,30451,183155
,4,30452,183160
,4,30453,183165
,4,30454,183170
,4,30455,183175
,4,30456,183180
,4,30457,183185
,4,30458,183190
,4,30459,183195
,4,30460,183200
,4,30461,183205
,4,30462,183210
,4,30463,183215
,4,30464,183220
,4,30465,183225
,4,30466,183230
,4,30467,183235
,4,30468,183240
,4,30469,183245
,4,30470,183250
,4,30471,183255
,4,30472,183260
,4,30473,183265
,4,30474,183270
,4,30475,183275
,4,30476,183280
,4,30477,183285
,4,30478,183290
,4,30479,183295
,4,30480,183300
,4,30481,183305
,4,30482,183310
,4,30483,183315
,4,30484,183320
,4,30485,183325
,4,30486,183330
,4,30487,183335
,4,30488,183340
,4,30489,183345
,4,30490,183350
,4,30491,183355
,4,30492,183360
,4,30493,183365
,4,30494,183370
,4,30495,183375
,4,30496,183380
,4,30497,183385
,4,30498,183390
,4,30499,183395
,4,30500,183400
,4,30501,183405
,4,30502,183410
,4,30503,183415
,4,30504,183420
,4,30505,183425
,4,30506,183430
,4,30507,183435
,4,30508,183440
,4,30509,183445
,4,30510,183450
,4,30511,183455
,4,30512,183460
,4,30513,183465
,4,30514,183470
,4,30515,183475
,4,30516,183480
,4,30517,183485
,4,30518,183490
,4,30519,183495
,4,30520,183500
,4,30521,183505
,4,30522,183510
,4,30523,183515
,4,30524,183520
,4,30525,183525
,4,30526,183530
,4,30527,183535
,4,30528,183540
,4,30529,183545
,4,30530,183550
,4,30531,183555
,4,30532,183560
,4,30533,183565
,4,30534,183570
,4,30535,183575
,4,30536,183580
,4,30537,183585
,4,30538,183590
,4,30539,183595
,4,30540,183600
,4,30541,183605
,4,30542,183610
,4,30543,183615
,4,30544,183620
,4,30545,183625
,4,30546,183630
,4,30547,183635
,4,30548,183640
,4,30549,183645
,4,30550,183650
,4,30551,183655
,4,30552,183660
,4,30553,183665
,4,30554,183670
,4,30555,183675
,4,30556,183680
,4,30557,183685
,4,30558,183690
,4,30559,183695
,4,30560,183700
,4,30561,183705
,4,30562,183710
,4,30563,183715
,4,30564,183720
,4,30565,183725
,4,30566,183730
,4,30567,183735
,4,30568,183740
,4,30569,183745
,4,30570,183750
,4,30571,183755
,4,30572,183760
,4,30573,183765
,4,30574,183770
,4,30575,183775
,4,30576,183780
,4,30577,183785
,4,30578,183790
,4,30579,183795
,4,30580,183800
,4,30581,183805
,4,30582,183810
,4,30583,183815
,4,30584,183820
,4,30585,183825
,4,30586,183830
,4,30587,183835
,4,30588,183840
,4,30589,183845
,4,30590,183850
,4,30591,183855
,4,30592,183860
,4,30593,183865
,4,30594,183870
,4,30595,183875
,4,30596,183880
,4,30597,183885
,4,30598,183890
,4,30599,183895
,4,30600,183900
,4,30601,183905
,4,30602,183910
,4,30603,183915
,4,30604,183920
,4,30605,183925
,4,30606,183930
,4,30607,183935
,4,30608,183940
,4,30609,183945
,4,30610,183950
,4,30611,183955
,4,30612,183960
,4,30613,183965
,4,30614,183970
,4,30615,183975
,4,30616,183980
,4,30617,183985
,4,30618,183990
,4,30619,183995
,4,30620,184000
,4,30621,184005
,4,30622,184010
,4,30623,184015
,4,30624,184020
,4,30625,184025
,4,30626,184030
,4,30627,184035
,4,30628,184040
,4,30629,184045
,4,30630,184050
,4,30631,184055
,4,30632,184060
,4,30633,184065
,4,30634,184070
,4,30635,184075
,4,30636,184080
,4,30637,184085
,4,30638,184090
,4,30639,184095
,4,30640,184100
,4,30641,184105
,4,30642,184110
,4,30643,184115
,4,30644,184120
,4,30645,184125
,4,30646,184130
,4,30647,184135
,4,30648,184140
,4,30649,184145
,4,30650,184150
,4,30651,184155
,4,30652,184160
,4,30653,184165
,4,30654,184170
,4,30655,184175
,4,30656,184180
,4,30657,184185
,4,30658,184190
,4,30659,184195
,4,30660,184200
,4,30661,184205
,4,30662,184210
,4,30663,184215
,4,30664,184220
,4,30665,184225
,4,30666,184230
,4,30667,184235
,4,30668,184240
,4,30669,184245
,4,30670,184250
,4,30671,184255
,4,30672,184260
,4,30673,184265
,4,30674,184270
,4,30675,184275
,4,30676,184280
,4,30677,184285
,4,30678,184290
,4,30679,184295
,4,30680,184300
,4,30681,184305
,4,30682,184310
,4,30683,184315
,4,30684,184320
,4,30685,184325
,4,30686,184330
,4,30687,184335
,4,30688,184340
,4,30689,184345
,4,30690,184350
,4,30691,184355
,4,30692,184360
,4,30693,184365
,4,30694,184370
,4,30695,184375
,4,30696,184380
,4,30697,184385
,4,30698,184390
,4,30699,184395
,4,30700,184400
,4,30701,184405
,4,30702,184410
,4,30703,184415
,4,30704,184420
,4,30705,184425
,4,30706,184430
,4,30707,184435
,4,30708,184440
,4,30709,184445
,4,30710,184450
,4,30711,184455
,4,30712,184460
,4,30713,184465
,4,30714,184470
,4,30715,184475
,4,30716,184480
,4,30717,184485
,4,30718,184490
,4,30719,184495
,4,30720,184500
,4,30721,184505
,4,30722,184510
,4,30723,184515
,4,30724,184520
,4,30725,184525
,4,30726,184530
,4,30727,184535
,4,30728,184540
,4,30729,184545
,4,30730,184550
,4,30731,184555
,4,30732,184560
,4,30733,184565
,4,30734,184570
,4,30735,184575
,4,30736,184580
,4,30737,184585
,4,30738,184590
,4,30739,184595
,4,30740,184600
,4,30741,184605
,4,30742,184610
,4,30743,184615
,4,30744,184620
,4,30745,184625
,4,30746,184630
,4,30747,184635
,4,30748,184640
,4,30749,184645
,4,30750,184650
,4,30751,184655
,4,30752,184660
,4,30753,184665
,4,30754,184670
,4,30755,184675
,4,30756,184680
,4,30757,184685
,4,30758,184690
,4,30759,184695
,4,30760,184700
,4,30761,184705
,4,30762,184710
,4,30763,184715
,4,30764,184720
,4,30765,184725
,4,30766,184730
,4,30767,184735
,4,30768,184740
,4,30769,184745
,4,30770,184750
,4,30771,184755
,4,30772,184760
,4,30773,184765
,4,30774,184770
,4,30775,184775
,4,30776,184780
,4,30777,184785
,4,30778,184790
,4,30779,184795
,4,30780,184800
,4,30781,184805
,4,30782,184810
,4,30783,184815
,4,30784,184820
,4,30785,184825
,4,30786,184830
,4,30787,184835
,4,30788,184840
,4,30789,184845
,4,30790,184850
,4,30791,184855
,4,30792,184860
,4,30793,184865
,4,30794,184870
,4,30795,184875
,4,30796,184880
,4,30797,184885
,4,30798,184890
,4,30799,184895
,4,30800,184900
,4,30801,184905
,4,30802,184910
,4,30803,184915
,4,30804,184920
,4,30805,184925
,4,30806,184930
,4,30807,184935
,4,30808,184940
,4,30809,184945
,4,30810,184950
,4,30811,184955
,4,30812,184960
,4,30813,184965
,4,30814,184970
,4,30815,184975
,4,30816,184980
,4,30817,184985
,4,30818,184990
,4,30819,184995
,4,30820,185000
,4,30821,185005
,4,30822,185010
,4,30823,185015
,4,30824,185020
,4,30825,185025
,4,30826,185030
,4,30827,185035
,4,30828,185040
,4,30829,185045
,4,30830,185050
,4,30831,185055
,4,30832,185060
,4,30833,185065
,4,30834,185070
,4,30835,185075
,4,30836,185080
,4,30837,185085
,4,30838,185090
,4,30839,185095
,4,30840,185100
,4,30841,185105
,4,30842,185110
,4,30843,185115
,4,30844,185120
,4,30845,185125
,4,30846,185130
,4,30847,185135
,4,30848,185140
,4,30849,185145
,4,30850,185150
,4,30851,185155
,4,30852,185160
,4,30853,185165
,4,30854,185170
,4,30855,185175
,4,30856,185180
,4,30857,185185
,4,30858,185190
,4,30859,185195
,4,30860,185200
,4,30861,185205
,4,30862,185210
,4,30863,185215
,4,30864,185220
,4,30865,185225
,4,30866,185230
,4,30867,185235
,4,30868,185240
,4,30869,185245
,4,30870,185250
,4,30871,185255
,4,30872,185260
,4,30873,185265
,4,30874,185270
,4,30875,185275
,4,30876,185280
,4,30877,185285
,4,30878,185290
,4,30879,185295
,4,30880,185300
,4,30881,185305
,4,30882,185310
,4,30883,185315
,4,30884,185320
,4,30885,185325
,4,30886,185330
,4,30887,185335
,4,30888,185340
,4,30889,185345
,4,30890,185350
,4,30891,185355
,4,30892,185360
,4,30893,185365
,4,30894,185370
,4,30895,185375
,4,30896,185380
,4,30897,185385
,4,30898,185390
,4,30899,185395
,4,30900,185400
,4,30901,185405
,4,30902,185410
,4,30903,185415
,4,30904,185420
,4,30905,185425
,4,30906,185430
,4,30907,185435
,4,30908,185440
,4,30909,185445
,4,30910,185450
,4,30911,185455
,4,30912,185460
,4,30913,185465
,4,30914,185470
,4,30915,185475
,4,30916,185480
,4,30917,185485
,4,30918,185490
,4,30919,185495
,4,30920,185500
,4,30921,185505
,4,30922,185510
,4,30923,185515
,4,30924,185520
,4,30925,185525
,4,30926,185530
,4,30927,185535
,4,30928,185540
,4,30929,185545
,4,30930,185550
,4,30931,185555
,4,30932,185560
,4,30933,185565
,4,30934,185570
,4,30935,185575
,4,30936,185580
,4,30937,185585
,4,30938,185590
,4,30939,185595
,4,30940,185600
,4,30941,185605
,4,30942,185610
,4,30943,185615
,4,30944,185620
,4,30945,185625
,4,30946,185630
,4,30947,185635
,4,30948,185640
,4,30949,185645
,4,30950,185650
,4,30951,185655
,4,30952,185660
,4,30953,185665
,4,30954,185670
,4,30955,185675
,4,30956,185680
,4,30957,185685
,4,30958,185690
,4,30959,185695
,4,30960,185700
,4,30961,185705
,4,30962,185710
,4,30963,185715
,4,30964,185720
,4,30965,185725
,4,30966,185730
,4,30967,185735
,4,30968,185740
,4,30969,185745
,4,30970,185750
,4,30971,185755
,4,30972,185760
,4,30973,185765
,4,30974,185770
,4,30975,185775
,4,30976,185780
,4,30977,185785
,4,30978,185790
,4,30979,185795
,4,30980,185800
,4,30981,185805
,4,30982,185810
,4,30983,185815
,4,30984,185820
,4,30985,185825
,4,30986,185830
,4,30987,185835
,4,30988,185840
,4,30989,185845
,4,30990,185850
,4,30991,185855
,4,30992,185860
,4,30993,185865
,4,30994,185870
,4,30995,185875
,4,30996,185880
,4,30997,185885
,4,30998,185890
,4,30999,185895
,4,31000,185900
,4,31001,185905
,4,31002,185910
,4,31003,185915
,4,31004,185920
,4,31005,185925
,4,31006,185930
,4,31007,185935
,4,31008,185940
,4,31009,185945
,4,31010,185950
,4,31011,185955
,4,31012,185960
,4,31013,185965
,4,31014,185970
,4,31015,185975
,4,31016,185980
,4,31017,185985
,4,31018,185990
,4,31019,185995
,4,31020,186000
,4,31021,186005
,4,31022,186010
,4,31023,186015
,4,31024,186020
,4,31025,186025
,4,31026,186030
,4,31027,186035
,4,31028,186040
,4,31029,186045
,4,31030,186050
,4,31031,186055
,4,31032,186060
,4,31033,186065
,4,31034,186070
,4,31035,186075
,4,31036,186080
,4,31037,186085
,4,31038,186090
,4,31039,186095
,4,31040,186100
,4,31041,186105
,4,31042,186110
,4,31043,186115
,4,31044,186120
,4,31045,186125
,4,31046,186130
,4,31047,186135
,4,31048,186140
,4,31049,186145
,4,31050,186150
,4,31051,186155
,4,31052,186160
,4,31053,186165
,4,31054,186170
,4,31055,186175
,4,31056,186180
,4,31057,186185
,4,31058,186190
,4,31059,186195
,4,31060,186200
,4,31061,186205
,4,31062,186210
,4,31063,186215
,4,31064,186220
,4,31065,186225
,4,31066,186230
,4,31067,186235
,4,31068,186240
,4,31069,186245
,4,31070,186250
,4,31071,186255
,4,31072,186260
,4,31073,186265
,4,31074,186270
,4,31075,186275
,4,31076,186280
,4,31077,186285
,4,31078,186290
,4,31079,186295
,4,31080,186300
,4,31081,186305
,4,31082,186310
,4,31083,186315
,4,31084,186320
,4,31085,186325
,4,31086,186330
,4,31087,186335
,4,31088,186340
,4,31089,186345
,4,31090,186350
,4,31091,186355
,4,31092,186360
,4,31093,186365
,4,31094,186370
,4,31095,186375
,4,31096,186380
,4,31097,186385
,4,31098,186390
,4,31099,186395
,4,31100,186400
,4,31101,186405
,4,31102,186410
,4,31103,186415
,4,31104,186420
,4,31105,186425
,4,31106,186430
,4,31107,186435
,4,31108,186440
,4,31109,186445
,4,31110,186450
,4,31111,186455
,4,31112,186460
,4,31113,186465
,4,31114,186470
,4,31115,186475
,4,31116,186480
,4,31117,186485
,4,31118,186490
,4,31119,186495
,4,31120,186500
,4,31121,186505
,4,31122,186510
,4,31123,186515
,4,31124,186520
,4,31125,186525
,4,31126,186530
,4,31127,186535
,4,31128,186540
,4,31129,186545
,4,31130,186550
,4,31131,186555
,4,31132,186560
,4,31133,186565
,4,31134,186570
,4,31135,186575
,4,31136,186580
,4,31137,186585
,4,31138,186590
,4,31139,186595
,4,31140,186600
,4,31141,186605
,4,31142,186610
,4,31143,186615
,4,31144,186620
,4,31145,186625
,4,31146,186630
,4,31147,186635
,4,31148,186640
,4,31149,186645
,4,31150,186650
,4,31151,186655
,4,31152,186660
,4,31153,186665
,4,31154,186670
,4,31155,186675
,4,31156,186680
,4,31157,186685
,4,31158,186690
,4,31159,186695
,4,31160,186700
,4,31161,186705
,4,31162,186710
,4,31163,186715
,4,31164,186720
,4,31165,186725
,4,31166,186730
,4,31167,186735
,4,31168,186740
,4,31169,186745
,4,31170,186750
,4,31171,186755
,4,31172,186760
,4,31173,186765
,4,31174,186770
,4,31175,186775
,4,31176,186780
,4,31177,186785
,4,31178,186790
,4,31179,186795
,4,31180,186800
,4,31181,186805
,4,31182,186810
,4,31183,186815
,4,31184,186820
,4,31185,186825
,4,31186,186830
,4,31187,186835
,4,31188,186840
,4,31189,186845
,4,31190,186850
,4,31191,186855
,4,31192,186860
,4,31193,186865
,4,31194,186870
,4,31195,186875
,4,31196,186880
,4,31197,186885
,4,31198,186890
,4,31199,186895
,4,31200,186900
,4,31201,186905
,4,31202,186910
,4,31203,186915
,4,31204,186920
,4,31205,186925
,4,31206,186930
,4,31207,186935
,4,31208,186940
,4,31209,186945
,4,31210,186950
,4,31211,186955
,4,31212,186960
,4,31213,186965
,4,31214,186970
,4,31215,186975
,4,31216,186980
,4,31217,186985
,4,31218,186990
,4,31219,186995
,4,31220,187000
,4,31221,187005
,4,31222,187010
,4,31223,187015
,4,31224,187020
,4,31225,187025
,4,31226,187030
,4,31227,187035
,4,31228,187040
,4,31229,187045
,4,31230,187050
,4,31231,187055
,4,31232,187060
,4,31233,187065
,4,31234,187070
,4,31235,187075
,4,31236,187080
,4,31237,187085
,4,31238,187090
,4,31239,187095
,4,31240,187100
,4,31241,187105
,4,31242,187110
,4,31243,187115
,4,31244,187120
,4,31245,187125
,4,31246,187130
,4,31247,187135
,4,31248,187140
,4,31249,187145
,4,31250,187150
,4,31251,187155
,4,31252,187160
,4,31253,187165
,4,31254,187170
,4,31255,187175
,4,31256,187180
,4,31257,187185
,4,31258,187190
,4,31259,187195
,4,31260,187200
,4,31261,187205
,4,31262,187210
,4,31263,187215
,4,31264,187220
,4,31265,187225
,4,31266,187230
,4,31267,187235
,4,31268,187240
,4,31269,187245
,4,31270,187250
,4,31271,187255
,4,31272,187260
,4,31273,187265
,4,31274,187270
,4,31275,187275
,4,31276,187280
,4,31277,187285
,4,31278,187290
,4,31279,187295
,4,31280,187300
,4,31281,187305
,4,31282,187310
,4,31283,187315
,4,31284,187320
,4,31285,187325
,4,31286,187330
,4,31287,187335
,4,31288,187340
,4,31289,187345
,4,31290,187350
,4,31291,187355
,4,31292,187360
,4,31293,187365
,4,31294,187370
,4,31295,187375
,4,31296,187380
,4,31297,187385
,4,31298,187390
,4,31299,187395
,4,31300,187400
,4,31301,187405
,4,31302,187410
,4,31303,187415
,4,31304,187420
,4,31305,187425
,4,31306,187430
,4,31307,187435
,4,31308,187440
,4,31309,187445
,4,31310,187450
,4,31311,187455
,4,31312,187460
,4,31313,187465
,4,31314,187470
,4,31315,187475
,4,31316,187480
,4,31317,187485
,4,31318,187490
,4,31319,187495
,4,31320,187500
,4,31321,187505
,4,31322,187510
,4,31323,187515
,4,31324,187520
,4,31325,187525
,4,31326,187530
,4,31327,187535
,4,31328,187540
,4,31329,187545
,4,31330,187550
,4,31331,187555
,4,31332,187560
,4,31333,187565
,4,31334,187570
,4,31335,187575
,4,31336,187580
,4,31337,187585
,4,31338,187590
,4,31339,187595
,4,31340,187600
,4,31341,187605
,4,31342,187610
,4,31343,187615
,4,31344,187620
,4,31345,187625
,4,31346,187630
,4,31347,187635
,4,31348,187640
,4,31349,187645
,4,31350,187650
,4,31351,187655
,4,31352,187660
,4,31353,187665
,4,31354,187670
,4,31355,187675
,4,31356,187680
,4,31357,187685
,4,31358,187690
,4,31359,187695
,4,31360,187700
,4,31361,187705
,4,31362,187710
,4,31363,187715
,4,31364,187720
,4,31365,187725
,4,31366,187730
,4,31367,187735
,4,31368,187740
,4,31369,187745
,4,31370,187750
,4,31371,187755
,4,31372,187760
,4,31373,187765
,4,31374,187770
,4,31375,187775
,4,31376,187780
,4,31377,187785
,4,31378,187790
,4,31379,187795
,4,31380,187800
,4,31381,187805
,4,31382,187810
,4,31383,187815
,4,31384,187820
,4,31385,187825
,4,31386,187830
,4,31387,187835
,4,31388,187840
,4,31389,187845
,4,31390,187850
,4,31391,187855
,4,31392,187860
,4,31393,187865
,4,31394,187870
,4,31395,187875
,4,31396,187880
,4,31397,187885
,4,31398,187890
,4,31399,187895
,4,31400,187900
,4,31401,187905
,4,31402,187910
,4,31403,187915
,4,31404,187920
,4,31405,187925
,4,31406,187930
,4,31407,187935
,4,31408,187940
,4,31409,187945
,4,31410,187950
,4,31411,187955
,4,31412,187960
,4,31413,187965
,4,31414,187970
,4,31415,187975
,4,31416,187980
,4,31417,187985
,4,31418,187990
,4,31419,187995
,4,31420,188000
,4,31421,188005
,4,31422,188010
,4,31423,188015
,4,31424,188020
,4,31425,188025
,4,31426,188030
,4,31427,188035
,4,31428,188040
,4,31429,188045
,4,31430,188050
,4,31431,188055
,4,31432,188060
,4,31433,188065
,4,31434,188070
,4,31435,188075
,4,31436,188080
,4,31437,188085
,4,31438,188090
,4,31439,188095
,4,31440,188100
,4,31441,188105
,4,31442,188110
,4,31443,188115
,4,31444,188120
,4,31445,188125
,4,31446,188130
,4,31447,188135
,4,31448,188140
,4,31449,188145
,4,31450,188150
,4,31451,188155
,4,31452,188160
,4,31453,188165
,4,31454,188170
,4,31455,188175
,4,31456,188180
,4,31457,188185
,4,31458,188190
,4,31459,188195
,4,31460,188200
,4,31461,188205
,4,31462,188210
,4,31463,188215
,4,31464,188220
,4,31465,188225
,4,31466,188230
,4,31467,188235
,4,31468,188240
,4,31469,188245
,4,31470,188250
,4,31471,188255
,4,31472,188260
,4,31473,188265
,4,31474,188270
,4,31475,188275
,4,31476,188280
,4,31477,188285
,4,31478,188290
,4,31479,188295
,4,31480,188300
,4,31481,188305
,4,31482,188310
,4,31483,188315
,4,31484,188320
,4,31485,188325
,4,31486,188330
,4,31487,188335
,4,31488,188340
,4,31489,188345
,4,31490,188350
,4,31491,188355
,4,31492,188360
,4,31493,188365
,4,31494,188370
,4,31495,188375
,4,31496,188380
,4,31497,188385
,4,31498,188390
,4,31499,188395
,4,31500,188400
,4,31501,188405
,4,31502,188410
,4,31503,188415
,4,31504,188420
,4,31505,188425
,4,31506,188430
,4,31507,188435
,4,31508,188440
,4,31509,188445
,4,31510,188450
,4,31511,188455
,4,31512,188460
,4,31513,188465
,4,31514,188470
,4,31515,188475
,4,31516,188480
,4,31517,188485
,4,31518,188490
,4,31519,188495
,4,31520,188500
,4,31521,188505
,4,31522,188510
,4,31523,188515
,4,31524,188520
,4,31525,188525
,4,31526,188530
,4,31527,188535
,4,31528,188540
,4,31529,188545
,4,31530,188550
,4,31531,188555
,4,31532,188560
,4,31533,188565
,4,31534,188570
,4,31535,188575
,4,31536,188580
,4,31537,188585
,4,31538,188590
,4,31539,188595
,4,31540,188600
,4,31541,188605
,4,31542,188610
,4,31543,188615
,4,31544,188620
,4,31545,188625
,4,31546,188630
,4,31547,188635
,4,31548,188640
,4,31549,188645
,4,31550,188650
,4,31551,188655
,4,31552,188660
,4,31553,188665
,4,31554,188670
,4,31555,188675
,4,31556,188680
,4,31557,188685
,4,31558,188690
,4,31559,188695
,4,31560,188700
,4,31561,188705
,4,31562,188710
,4,31563,188715
,4,31564,188720
,4,31565,188725
,4,31566,188730
,4,31567,188735
,4,31568,188740
,4,31569,188745
,4,31570,188750
,4,31571,188755
,4,31572,188760
,4,31573,188765
,4,31574,188770
,4,31575,188775
,4,31576,188780
,4,31577,188785
,4,31578,188790
,4,31579,188795
,4,31580,188800
,4,31581,188805
,4,31582,188810
,4,31583,188815
,4,31584,188820
,4,31585,188825
,4,31586,188830
,4,31587,188835
,4,31588,188840
,4,31589,188845
,4,31590,188850
,4,31591,188855
,4,31592,188860
,4,31593,188865
,4,31594,188870
,4,31595,188875
,4,31596,188880
,4,31597,188885
,4,31598,188890
,4,31599,188895
,4,31600,188900
,4,31601,188905
,4,31602,188910
,4,31603,188915
,4,31604,188920
,4,31605,188925
,4,31606,188930
,4,31607,188935
,4,31608,188940
,4,31609,188945
,4,31610,188950
,4,31611,188955
,4,31612,188960
,4,31613,188965
,4,31614,188970
,4,31615,188975
,4,31616,188980
,4,31617,188985
,4,31618,188990
,4,31619,188995
,4,31620,189000
,4,31621,189005
,4,31622,189010
,4,31623,189015
,4,31624,189020
,4,31625,189025
,4,31626,189030
,4,31627,189035
,4,31628,189040
,4,31629,189045
,4,31630,189050
,4,31631,189055
,4,31632,189060
,4,31633,189065
,4,31634,189070
,4,31635,189075
,4,31636,189080
,4,31637,189085
,4,31638,189090
,4,31639,189095
,4,31640,189100
,4,31641,189105
,4,31642,189110
,4,31643,189115
,4,31644,189120
,4,31645,189125
,4,31646,189130
,4,31647,189135
,4,31648,189140
,4,31649,189145
,4,31650,189150
,4,31651,189155
,4,31652,189160
,4,31653,189165
,4,31654,189170
,4,31655,189175
,4,31656,189180
,4,31657,189185
,4,31658,189190
,4,31659,189195
,4,31660,189200
,4,31661,189205
,4,31662,189210
,4,31663,189215
,4,31664,189220
,4,31665,189225
,4,31666,189230
,4,31667,189235
,4,31668,189240
,4,31669,189245
,4,31670,189250
,4,31671,189255
,4,31672,189260
,4,31673,189265
,4,31674,189270
,4,31675,189275
,4,31676,189280
,4,31677,189285
,4,31678,189290
,4,31679,189295
,4,31680,189300
,4,31681,189305
,4,31682,189310
,4,31683,189315
,4,31684,189320
,4,31685,189325
,4,31686,189330
,4,31687,189335
,4,31688,189340
,4,31689,189345
,4,31690,189350
,4,31691,189355
,4,31692,189360
,4,31693,189365
,4,31694,189370
,4,31695,189375
,4,31696,189380
,4,31697,189385
,4,31698,189390
,4,31699,189395
,4,31700,189400
,4,31701,189405
,4,31702,189410
,4,31703,189415
,4,31704,189420
,4,31705,189425
,4,31706,189430
,4,31707,189435
,4,31708,189440
,4,31709,189445
,4,31710,189450
,4,31711,189455
,4,31712,189460
,4,31713,189465
,4,31714,189470
,4,31715,189475
,4,31716,189480
,4,31717,189485
,4,31718,189490
,4,31719,189495
,4,31720,189500
,4,31721,189505
,4,31722,189510
,4,31723,189515
,4,31724,189520
,4,31725,189525
,4,31726,189530
,4,31727,189535
,4,31728,189540
,4,31729,189545
,4,31730,189550
,4,31731,189555
,4,31732,189560
,4,31733,189565
,4,31734,189570
,4,31735,189575
,4,31736,189580
,4,31737,189585
,4,31738,189590
,4,31739,189595
,4,31740,189600
,4,31741,189605
,4,31742,189610
,4,31743,189615
,4,31744,189620
,4,31745,189625
,4,31746,189630
,4,31747,189635
,4,31748,189640
,4,31749,189645
,4,31750,189650
,4,31751,189655
,4,31752,189660
,4,31753,189665
,4,31754,189670
,4,31755,189675
,4,31756,189680
,4,31757,189685
,4,31758,189690
,4,31759,189695
,4,31760,189700
,4,31761,189705
,4,31762,189710
,4,31763,189715
,4,31764,189720
,4,31765,189725
,4,31766,189730
,4,31767,189735
,4,31768,189740
,4,31769,189745
,4,31770,189750
,4,31771,189755
,4,31772,189760
,4,31773,189765
,4,31774,189770
,4,31775,189775
,4,31776,189780
,4,31777,189785
,4,31778,189790
,4,31779,189795
,4,31780,189800
,4,31781,189805
,4,31782,189810
,4,31783,189815
,4,31784,189820
,4,31785,189825
,4,31786,189830
,4,31787,189835
,4,31788,189840
,4,31789,189845
,4,31790,189850
,4,31791,189855
,4,31792,189860
,4,31793,189865
,4,31794,189870
,4,31795,189875
,4,31796,189880
,4,31797,189885
,4,31798,189890
,4,31799,189895
,4,31800,189900
,4,31801,189905
,4,31802,189910
,4,31803,189915
,4,31804,189920
,4,31805,189925
,4,31806,189930
,4,31807,189935
,4,31808,189940
,4,31809,189945
,4,31810,189950
,4,31811,189955
,4,31812,189960
,4,31813,189965
,4,31814,189970
,4,31815,189975
,4,31816,189980
,4,31817,189985
,4,31818,189990
,4,31819,189995
,4,31820,190000
,4,31821,190005
,4,31822,190010
,4,31823,190015
,4,31824,190020
,4,31825,190025
,4,31826,190030
,4,31827,190035
,4,31828,190040
,4,31829,190045
,4,31830,190050
,4,31831,190055
,4,31832,190060
,4,31833,190065
,4,31834,190070
,4,31835,190075
,4,31836,190080
,4,31837,190085
,4,31838,190090
,4,31839,190095
,4,31840,190100
,4,31841,190105
,4,31842,190110
,4,31843,190115
,4,31844,190120
,4,31845,190125
,4,31846,190130
,4,31847,190135
,4,31848,190140
,4,31849,190145
,4,31850,190150
,4,31851,190155
,4,31852,190160
,4,31853,190165
,4,31854,190170
,4,31855,190175
,4,31856,190180
,4,31857,190185
,4,31858,190190
,4,31859,190195
,4,31860,190200
,4,31861,190205
,4,31862,190210
,4,31863,190215
,4,31864,190220
,4,31865,190225
,4,31866,190230
,4,31867,190235
,4,31868,190240
,4,31869,190245
,4,31870,190250
,4,31871,190255
,4,31872,190260
,4,31873,190265
,4,31874,190270
,4,31875,190275
,4,31876,190280
,4,31877,190285
,4,31878,190290
,4,31879,190295
,4,31880,190300
,4,31881,190305
,4,31882,190310
,4,31883,190315
,4,31884,190320
,4,31885,190325
,4,31886,190330
,4,31887,190335
,4,31888,190340
,4,31889,190345
,4,31890,190350
,4,31891,190355
,4,31892,190360
,4,31893,190365
,4,31894,190370
,4,31895,190375
,4,31896,190380
,4,31897,190385
,4,31898,190390
,4,31899,190395
,4,31900,190400
,4,31901,190405
,4,31902,190410
,4,31903,190415
,4,31904,190420
,4,31905,190425
,4,31906,190430
,4,31907,190435
,4,31908,190440
,4,31909,190445
,4,31910,190450
,4,31911,190455
,4,31912,190460
,4,31913,190465
,4,31914,190470
,4,31915,190475
,4,31916,190480
,4,31917,190485
,4,31918,190490
,4,31919,190495
,4,31920,190500
,4,31921,190505
,4,31922,190510
,4,31923,190515
,4,31924,190520
,4,31925,190525
,4,31926,190530
,4,31927,190535
,4,31928,190540
,4,31929,190545
,4,31930,190550
,4,31931,190555
,4,31932,190560
,4,31933,190565
,4,31934,190570
,4,31935,190575
,4,31936,190580
,4,31937,190585
,4,31938,190590
,4,31939,190595
,4,31940,190600
,4,31941,190605
,4,31942,190610
,4,31943,190615
,4,31944,190620
,4,31945,190625
,4,31946,190630
,4,31947,190635
,4,31948,190640
,4,31949,190645
,4,31950,190650
,4,31951,190655
,4,31952,190660
,4,31953,190665
,4,31954,190670
,4,31955,190675
,4,31956,190680
,4,31957,190685
,4,31958,190690
,4,31959,190695
,4,31960,190700
,4,31961,190705
,4,31962,190710
,4,31963,190715
,4,31964,190720
,4,31965,190725
,4,31966,190730
,4,31967,190735
,4,31968,190740
,4,31969,190745
,4,31970,190750
,4,31971,190755
,4,31972,190760
,4,31973,190765
,4,31974,190770
,4,31975,190775
,4,31976,190780
,4,31977,190785
,4,31978,190790
,4,31979,190795
,4,31980,190800
,4,31981,190805
,4,31982,190810
,4,31983,190815
,4,31984,190820
,4,31985,190825
,4,31986,190830
,4,31987,190835
,4,31988,190840
,4,31989,190845
,4,31990,190850
,4,31991,190855
,4,31992,190860
,4,31993,190865
,4,31994,190870
,4,31995,190875
,4,31996,190880
,4,31997,190885
,4,31998,190890
,4,31999,190895
,4,32000,190900
,4,32001,190905
,4,32002,190910
,4,32003,190915
,4,32004,190920
,4,32005,190925
,4,32006,190930
,4,32007,190935
,4,32008,190940
,4,32009,190945
,4,32010,190950
,4,32011,190955
,4,32012,190960
,4,32013,190965
,4,32014,190970
,4,32015,190975
,4,32016,190980
,4,32017,190985
,4,32018,190990
,4,32019,190995
,4,32020,191000
,4,32021,191005
,4,32022,191010
,4,32023,191015
,4,32024,191020
,4,32025,191025
,4,32026,191030
,4,32027,191035
,4,32028,191040
,4,32029,191045
,4,32030,191050
,4,32031,191055
,4,32032,191060
,4,32033,191065
,4,32034,191070
,4,32035,191075
,4,32036,191080
,4,32037,191085
,4,32038,191090
,4,32039,191095
,4,32040,191100
,4,32041,191105
,4,32042,191110
,4,32043,191115
,4,32044,191120
,4,32045,191125
,4,32046,191130
,4,32047,191135
,4,32048,191140
,4,32049,191145
,4,32050,191150
,4,32051,191155
,4,32052,191160
,4,32053,191165
,4,32054,191170
,4,32055,191175
,4,32056,191180
,4,32057,191185
,4,32058,191190
,4,32059,191195
,4,32060,191200
,4,32061,191205
,4,32062,191210
,4,32063,191215
,4,32064,191220
,4,32065,191225
,4,32066,191230
,4,32067,191235
,4,32068,191240
,4,32069,191245
,4,32070,191250
,4,32071,191255
,4,32072,191260
,4,32073,191265
,4,32074,191270
,4,32075,191275
,4,32076,191280
,4,32077,191285
,4,32078,191290
,4,32079,191295
,4,32080,191300
,4,32081,191305
,4,32082,191310
,4,32083,191315
,4,32084,191320
,4,32085,191325
,4,32086,191330
,4,32087,191335
,4,32088,191340
,4,32089,191345
,4,32090,191350
,4,32091,191355
,4,32092,191360
,4,32093,191365
,4,32094,191370
,4,32095,191375
,4,32096,191380
,4,32097,191385
,4,32098,191390
,4,32099,191395
,4,32100,191400
,4,32101,191405
,4,32102,191410
,4,32103,191415
,4,32104,191420
,4,32105,191425
,4,32106,191430
,4,32107,191435
,4,32108,191440
,4,32109,191445
,4,32110,191450
,4,32111,191455
,4,32112,191460
,4,32113,191465
,4,32114,191470
,4,32115,191475
,4,32116,191480
,4,32117,191485
,4,32118,191490
,4,32119,191495
,4,32120,191500
,4,32121,191505
,4,32122,191510
,4,32123,191515
,4,32124,191520
,4,32125,191525
,4,32126,191530
,4,32127,191535
,4,32128,191540
,4,32129,191545
,4,32130,191550
,4,32131,191555
,4,32132,191560
,4,32133,191565
,4,32134,191570
,4,32135,191575
,4,32136,191580
,4,32137,191585
,4,32138,191590
,4,32139,191595
,4,32140,191600
,4,32141,191605
,4,32142,191610
,4,32143,191615
,4,32144,191620
,4,32145,191625
,4,32146,191630
,4,32147,191635
,4,32148,191640
,4,32149,191645
,4,32150,191650
,4,32151,191655
,4,32152,191660
,4,32153,191665
,4,32154,191670
,4,32155,191675
,4,32156,191680
,4,32157,191685
,4,32158,191690
,4,32159,191695
,4,32160,191700
,4,32161,191705
,4,32162,191710
,4,32163,191715
,4,32164,191720
,4,32165,191725
,4,32166,191730
,4,32167,191735
,4,32168,191740
,4,32169,191745
,4,32170,191750
,4,32171,191755
,4,32172,191760
,4,32173,191765
,4,32174,191770
,4,32175,191775
,4,32176,191780
,4,32177,191785
,4,32178,191790
,4,32179,191795
,4,32180,191800
,4,32181,191805
,4,32182,191810
,4,32183,191815
,4,32184,191820
,4,32185,191825
,4,32186,191830
,4,32187,191835
,4,32188,191840
,4,32189,191845
,4,32190,191850
,4,32191,191855
,4,32192,191860
,4,32193,191865
,4,32194,191870
,4,32195,191875
,4,32196,191880
,4,32197,191885
,4,32198,191890
,4,32199,191895
,4,32200,191900
,4,32201,191905
,4,32202,191910
,4,32203,191915
,4,32204,191920
,4,32205,191925
,4,32206,191930
,4,32207,191935
,4,32208,191940
,4,32209,191945
,4,32210,191950
,4,32211,191955
,4,32212,191960
,4,32213,191965
,4,32214,191970
,4,32215,191975
,4,32216,191980
,4,32217,191985
,4,32218,191990
,4,32219,191995
,4,32220,192000
,4,32221,192005
,4,32222,192010
,4,32223,192015
,4,32224,192020
,4,32225,192025
,4,32226,192030
,4,32227,192035
,4,32228,192040
,4,32229,192045
,4,32230,192050
,4,32231,192055
,4,32232,192060
,4,32233,192065
,4,32234,192070
,4,32235,192075
,4,32236,192080
,4,32237,192085
,4,32238,192090
,4,32239,192095
,4,32240,192100
,4,32241,192105
,4,32242,192110
,4,32243,192115
,4,32244,192120
,4,32245,192125
,4,32246,192130
,4,32247,192135
,4,32248,192140
,4,32249,192145
,4,32250,192150
,4,32251,192155
,4,32252,192160
,4,32253,192165
,4,32254,192170
,4,32255,192175
,4,32256,192180
,4,32257,192185
,4,32258,192190
,4,32259,192195
,4,32260,192200
,4,32261,192205
,4,32262,192210
,4,32263,192215
,4,32264,192220
,4,32265,192225
,4,32266,192230
,4,32267,192235
,4,32268,192240
,4,32269,192245
,4,32270,192250
,4,32271,192255
,4,32272,192260
,4,32273,192265
,4,32274,192270
,4,32275,192275
,4,32276,192280
,4,32277,192285
,4,32278,192290
,4,32279,192295
,4,32280,192300
,4,32281,192305
,4,32282,192310
,4,32283,192315
,4,32284,192320
,4,32285,192325
,4,32286,192330
,4,32287,192335
,4,32288,192340
,4,32289,192345
,4,32290,192350
,4,32291,192355
,4,32292,192360
,4,32293,192365
,4,32294,192370
,4,32295,192375
,4,32296,192380
,4,32297,192385
,4,32298,192390
,4,32299,192395
,4,32300,192400
,4,32301,192405
,4,32302,192410
,4,32303,192415
,4,32304,192420
,4,32305,192425
,4,32306,192430
,4,32307,192435
,4,32308,192440
,4,32309,192445
,4,32310,192450
,4,32311,192455
,4,32312,192460
,4,32313,192465
,4,32314,192470
,4,32315,192475
,4,32316,192480
,4,32317,192485
,4,32318,192490
,4,32319,192495
,4,32320,192500
,4,32321,192505
,4,32322,192510
,4,32323,192515
,4,32324,192520
,4,32325,192525
,4,32326,192530
,4,32327,192535
,4,32328,192540
,4,32329,192545
,4,32330,192550
,4,32331,192555
,4,32332,192560
,4,32333,192565
,4,32334,192570
,4,32335,192575
,4,32336,192580
,4,32337,192585
,4,32338,192590
,4,32339,192595
,4,32340,192600
,4,32341,192605
,4,32342,192610
,4,32343,192615
,4,32344,192620
,4,32345,192625
,4,32346,192630
,4,32347,192635
,4,32348,192640
,4,32349,192645
,4,32350,192650
,4,32351,192655
,4,32352,192660
,4,32353,192665
,4,32354,192670
,4,32355,192675
,4,32356,192680
,4,32357,192685
,4,32358,192690
,4,32359,192695
,4,32360,192700
,4,32361,192705
,4,32362,192710
,4,32363,192715
,4,32364,192720
,4,32365,192725
,4,32366,192730
,4,32367,192735
,4,32368,192740
,4,32369,192745
,4,32370,192750
,4,32371,192755
,4,32372,192760
,4,32373,192765
,4,32374,192770
,4,32375,192775
,4,32376,192780
,4,32377,192785
,4,32378,192790
,4,32379,192795
,4,32380,192800
,4,32381,192805
,4,32382,192810
,4,32383,192815
,4,32384,192820
,4,32385,192825
,4,32386,192830
,4,32387,192835
,4,32388,192840
,4,32389,192845
,4,32390,192850
,4,32391,192855
,4,32392,192860
,4,32393,192865
,4,32394,192870
,4,32395,192875
,4,32396,192880
,4,32397,192885
,4,32398,192890
,4,32399,192895
,4,32400,192900
,4,32401,192905
,4,32402,192910
,4,32403,192915
,4,32404,192920
,4,32405,192925
,4,32406,192930
,4,32407,192935
,4,32408,192940
,4,32409,192945
,4,32410,192950
,4,32411,192955
,4,32412,192960
,4,32413,192965
,4,32414,192970
,4,32415,192975
,4,32416,192980
,4,32417,192985
,4,32418,192990
,4,32419,192995
,4,32420,193000
,4,32421,193005
,4,32422,193010
,4,32423,193015
,4,32424,193020
,4,32425,193025
,4,32426,193030
,4,32427,193035
,4,32428,193040
,4,32429,193045
,4,32430,193050
,4,32431,193055
,4,32432,193060
,4,32433,193065
,4,32434,193070
,4,32435,193075
,4,32436,193080
,4,32437,193085
,4,32438,193090
,4,32439,193095
,4,32440,193100
,4,32441,193105
,4,32442,193110
,4,32443,193115
,4,32444,193120
,4,32445,193125
,4,32446,193130
,4,32447,193135
,4,32448,193140
,4,32449,193145
,4,32450,193150
,4,32451,193155
,4,32452,193160
,4,32453,193165
,4,32454,193170
,4,32455,193175
,4,32456,193180
,4,32457,193185
,4,32458,193190
,4,32459,193195
,4,32460,193200
,4,32461,193205
,4,32462,193210
,4,32463,193215
,4,32464,193220
,4,32465,193225
,4,32466,193230
,4,32467,193235
,4,32468,193240
,4,32469,193245
,4,32470,193250
,4,32471,193255
,4,32472,193260
,4,32473,193265
,4,32474,193270
,4,32475,193275
,4,32476,193280
,4,32477,193285
,4,32478,193290
,4,32479,193295
,4,32480,193300
,4,32481,193305
,4,32482,193310
,4,32483,193315
,4,32484,193320
,4,32485,193325
,4,32486,193330
,4,32487,193335
,4,32488,193340
,4,32489,193345
,4,32490,193350
,4,32491,193355
,4,32492,193360
,4,32493,193365
,4,32494,193370
,4,32495,193375
,4,32496,193380
,4,32497,193385
,4,32498,193390
,4,32499,193395
,4,32500,193400
,4,32501,193405
,4,32502,193410
,4,32503,193415
,4,32504,193420
,4,32505,193425
,4,32506,193430
,4,32507,193435
,4,32508,193440
,4,32509,193445
,4,32510,193450
,4,32511,193455
,4,32512,193460
,4,32513,193465
,4,32514,193470
,4,32515,193475
,4,32516,193480
,4,32517,193485
,4,32518,193490
,4,32519,193495
,4,32520,193500
,4,32521,193505
,4,32522,193510
,4,32523,193515
,4,32524,193520
,4,32525,193525
,4,32526,193530
,4,32527,193535
,4,32528,193540
,4,32529,193545
,4,32530,193550
,4,32531,193555
,4,32532,193560
,4,32533,193565
,4,32534,193570
,4,32535,193575
,4,32536,193580
,4,32537,193585
,4,32538,193590
,4,32539,193595
,4,32540,193600
,4,32541,193605
,4,32542,193610
,4,32543,193615
,4,32544,193620
,4,32545,193625
,4,32546,193630
,4,32547,193635
,4,32548,193640
,4,32549,193645
,4,32550,193650
,4,32551,193655
,4,32552,193660
,4,32553,193665
,4,32554,193670
,4,32555,193675
,4,32556,193680
,4,32557,193685
,4,32558,193690
,4,32559,193695
,4,32560,193700
,4,32561,193705
,4,32562,193710
,4,32563,193715
,4,32564,193720
,4,32565,193725
,4,32566,193730
,4,32567,193735
,4,32568,193740
,4,32569,193745
,4,32570,193750
,4,32571,193755
,4,32572,193760
,4,32573,193765
,4,32574,193770
,4,32575,193775
,4,32576,193780
,4,32577,193785
,4,32578,193790
,4,32579,193795
,4,32580,193800
,4,32581,193805
,4,32582,193810
,4,32583,193815
,4,32584,193820
,4,32585,193825
,4,32586,193830
,4,32587,193835
,4,32588,193840
,4,32589,193845
,4,32590,193850
,4,32591,193855
,4,32592,193860
,4,32593,193865
,4,32594,193870
,4,32595,193875
,4,32596,193880
,4,32597,193885
,4,32598,193890
,4,32599,193895
,4,32600,193900
,4,32601,193905
,4,32602,193910
,4,32603,193915
,4,32604,193920
,4,32605,193925
,4,32606,193930
,4,32607,193935
,4,32608,193940
,4,32609,193945
,4,32610,193950
,4,32611,193955
,4,32612,193960
,4,32613,193965
,4,32614,193970
,4,32615,193975
,4,32616,193980
,4,32617,193985
,4,32618,193990
,4,32619,193995
,4,32620,194000
,4,32621,194005
,4,32622,194010
,4,32623,194015
,4,32624,194020
,4,32625,194025
,4,32626,194030
,4,32627,194035
,4,32628,194040
,4,32629,194045
,4,32630,194050
,4,32631,194055
,4,32632,194060
,4,32633,194065
,4,32634,194070
,4,32635,194075
,4,32636,194080
,4,32637,194085
,4,32638,194090
,4,32639,194095
,4,32640,194100
,4,32641,194105
,4,32642,194110
,4,32643,194115
,4,32644,194120
,4,32645,194125
,4,32646,194130
,4,32647,194135
,4,32648,194140
,4,32649,194145
,4,32650,194150
,4,32651,194155
,4,32652,194160
,4,32653,194165
,4,32654,194170
,4,32655,194175
,4,32656,194180
,4,32657,194185
,4,32658,194190
,4,32659,194195
,4,32660,194200
,4,32661,194205
,4,32662,194210
,4,32663,194215
,4,32664,194220
,4,32665,194225
,4,32666,194230
,4,32667,194235
,4,32668,194240
,4,32669,194245
,4,32670,194250
,4,32671,194255
,4,32672,194260
,4,32673,194265
,4,32674,194270
,4,32675,194275
,4,32676,194280
,4,32677,194285
,4,32678,194290
,4,32679,194295
,4,32680,194300
,4,32681,194305
,4,32682,194310
,4,32683,194315
,4,32684,194320
,4,32685,194325
,4,32686,194330
,4,32687,194335
,4,32688,194340
,4,32689,194345
,4,32690,194350
,4,32691,194355
,4,32692,194360
,4,32693,194365
,4,32694,194370
,4,32695,194375
,4,32696,194380
,4,32697,194385
,4,32698,194390
,4,32699,194395
,4,32700,194400
,4,32701,194405
,4,32702,194410
,4,32703,194415
,4,32704,194420
,4,32705,194425
,4,32706,194430
,4,32707,194435
,4,32708,194440
,4,32709,194445
,4,32710,194450
,4,32711,194455
,4,32712,194460
,4,32713,194465
,4,32714,194470
,4,32715,194475
,4,32716,194480
,4,32717,194485
,4,32718,194490
,4,32719,194495
,4,32720,194500
,4,32721,194505
,4,32722,194510
,4,32723,194515
,4,32724,194520
,4,32725,194525
,4,32726,194530
,4,32727,194535
,4,32728,194540
,4,32729,194545
,4,32730,194550
,4,32731,194555
,4,32732,194560
,4,32733,194565
,4,32734,194570
,4,32735,194575
,4,32736,194580
,4,32737,194585
,4,32738,194590
,4,32739,194595
,4,32740,194600
,4,32741,194605
,4,32742,194610
,4,32743,194615
,4,32744,194620
,4,32745,194625
,4,32746,194630
,4,32747,194635
,4,32748,194640
,4,32749,194645
,4,32750,194650
,4,32751,194655
,4,32752,194660
,4,32753,194665
,4,32754,194670
,4,32755,194675
,4,32756,194680
,4,32757,194685
,4,32758,194690
,4,32759,194695
,4,32760,194700
,4,32761,194705
,4,32762,194710
,4,32763,194715
,4,32764,194720
,4,32765,194725
,4,32766,194730
,4,32767,194735
,4,32768,194740
,4,32769,194745
,4,32770,194750
,4,32771,194755
,4,32772,194760
,4,32773,194765
,4,32774,194770
,4,32775,194775
,4,32776,194780
,4,32777,194785
,4,32778,194790
,4,32779,194795
,4,32780,194800
,4,32781,194805
,4,32782,194810
,4,32783,194815
,4,32784,194820
,4,32785,194825
,4,32786,194830
,4,32787,194835
,4,32788,194840
,4,32789,194845
,4,32790,194850
,4,32791,194855
,4,32792,194860
,4,32793,194865
,4,32794,194870
,4,32795,194875
,4,32796,194880
,4,32797,194885
,4,32798,194890
,4,32799,194895
,4,32800,194900
,4,32801,194905
,4,32802,194910
,4,32803,194915
,4,32804,194920
,4,32805,194925
,4,32806,194930
,4,32807,194935
,4,32808,194940
,4,32809,194945
,4,32810,194950
,4,32811,194955
,4,32812,194960
,4,32813,194965
,4,32814,194970
,4,32815,194975
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,1,195015
,3,36244,225010
,4,1,195030
,3,36244,225010
,4,1,195045
,3,36244,225010
,4,1,195060
,3,36244,225010
,4,1,195075
,3,36244,225010
,4,1,195090
,3,36244,225010
,4,1,195115
,4,3,195120
,3,36244,225010
,4,1,30520
,4,1,195135
,4,3,195140
,3,36244,225010
,4,1,195145
,0,1467,195145
,2,35551,425
,3,36254,30395
,3,36255,203725
,6,64,1260
,3,36244,12670
,4,1,203730
,4,1,195165
,3,36244,225010
,4,1,195180
,3,36244,225010
,3,36259,430
,3,36261,350
,3,36260,195190
,3,36244,234750
,4,3,16560
,4,5,740
,3,36259,430
,3,36261,350
,3,36260,195200
,3,36244,234750
,4,3,16560
,4,5,810
,3,36259,430
,3,36261,350
,3,36260,195210
,3,36244,234750
,4,3,16560
,4,5,785
,3,36259,430
,3,36261,350
,3,36260,195220
,3,36244,234750
,4,3,16560
,4,5,905
,3,36259,430
,3,36261,350
,3,36260,195230
,3,36244,234750
,4,3,16560
,4,5,760
,2,35551,425
,3,36253,204510
,3,36254,15705
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,15710
,3,36244,234750
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,195290
,4,20,15975
,4,21,195295
,4,23,16020
,4,24,195300
,4,26,16025
,4,27,195305
,4,30,195310
,4,32,16030
,4,33,195315
,4,35,16035
,4,36,195320
,4,38,16040
,4,39,195325
,4,41,16045
,4,42,195330
,4,44,16060
,4,45,195335
,4,47,16075
,4,48,195340
,4,50,16080
,4,51,195345
,4,53,16085
,4,54,195350
,4,56,16100
,4,57,195355
,4,59,16105
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,4,1,12670
,4,2,195365
,3,36259,425
,3,36377,195375
,4,2,195380
,3,36262,195370
,3,36260,195245
,3,36244,234750
,4,1,195375
,4,2,195380
,3,36259,425
,3,36377,12670
,4,2,195365
,3,36262,195360
,3,36260,195245
,3,36244,234750
,3,36259,425
,3,36377,195365
,4,2,195390
,3,36262,195385
,3,36260,195245
,3,36244,234750
,4,1,195365
,4,2,195390
,3,36259,425
,3,36377,195380
,4,2,195400
,3,36262,195395
,3,36260,195245
,3,36244,234750
,4,1,195380
,4,2,195400
,3,36259,425
,3,36377,195390
,4,2,195410
,3,36262,195405
,3,36260,195245
,3,36244,234750
,4,1,195390
,4,2,195410
,3,36259,425
,3,36377,195400
,4,2,195420
,3,36262,195415
,3,36260,195245
,3,36244,234750
,4,1,195400
,4,2,195420
,3,36259,425
,3,36377,195410
,4,2,195430
,3,36262,195425
,3,36260,195245
,3,36244,234750
,4,1,195410
,4,2,195430
,3,36259,425
,3,36377,195420
,4,2,195440
,3,36262,195435
,3,36260,195245
,3,36244,234750
,4,1,195420
,4,2,195440
,3,36259,425
,3,36377,195430
,4,2,195450
,3,36262,195445
,3,36260,195245
,3,36244,234750
,4,1,195430
,4,2,195450
,3,36259,425
,3,36377,195440
,4,2,195460
,3,36262,195455
,3,36260,195245
,3,36244,234750
,4,1,195440
,4,2,195460
,3,36259,425
,3,36377,195450
,4,2,195470
,3,36262,195465
,3,36260,195245
,3,36244,234750
,4,1,195450
,4,2,195470
,3,36259,425
,3,36377,195460
,4,2,195480
,3,36262,195475
,3,36260,195245
,3,36244,234750
,4,1,195460
,4,2,195480
,3,36259,425
,3,36377,195470
,4,2,195490
,3,36262,195485
,3,36260,195245
,3,36244,234750
,4,1,195470
,4,2,195490
,3,36259,425
,3,36377,195480
,3,36260,195245
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,195500
,3,36244,234750
,4,3,16560
,4,5,16140
,4,3,16125
,4,5,16140
,4,6,16180
,4,8,16395
,4,2,16420
,4,3,16190
,4,5,16445
,4,6,16210
,4,8,15700
,4,9,16225
,4,11,16490
,4,12,16240
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,195525
,3,36244,234750
,4,3,16560
,4,5,16275
,4,2,16420
,4,3,16275
,4,5,16445
,4,6,16310
,4,8,15700
,4,9,16005
,4,11,16490
,4,12,16375
,3,36259,430
,3,36261,350
,3,36260,195540
,3,36244,234750
,4,3,16560
,4,5,16310
,3,36259,430
,3,36261,350
,3,36260,195550
,3,36244,234750
,4,3,16560
,4,5,16005
,3,36259,430
,3,36261,350
,3,36260,195560
,3,36244,234750
,4,3,16560
,4,5,16375
,3,36259,430
,3,36261,350
,4,2,205975
,4,4,29140
,4,5,222550
,4,6,197350
,4,7,197410
,4,8,199565
,4,9,199595
,4,10,7370
,4,11,216995
,4,12,29920
,4,13,203420
,4,14,30355
,4,15,203310
,4,16,207225
,4,17,205665
,4,18,203090
,4,19,204115
,4,20,211950
,4,21,222555
,4,22,199050
,4,23,199115
,4,24,203515
,4,25,222560
,4,26,195950
,4,27,222565
,4,28,211420
,4,29,222570
,4,30,197905
,4,31,198115
,3,36262,222545
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,195575
,3,36244,234750
,4,3,16560
,4,5,16425
,3,36259,430
,3,36261,350
,3,36260,195585
,3,36244,234750
,4,3,16560
,4,5,16450
,3,36259,430
,3,36261,350
,3,36260,195595
,3,36244,234750
,4,3,16560
,4,5,16470
,3,36259,430
,3,36261,350
,3,36260,195605
,3,36244,234750
,4,3,16560
,4,5,16495
,3,36259,430
,3,36261,350
,3,36260,195615
,3,36244,234750
,4,3,16420
,4,5,16425
,4,6,16445
,4,8,16450
,4,9,15700
,4,11,16470
,4,12,16490
,4,14,16495
,4,15,16560
,4,17,16395
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,16420
,4,20,16275
,4,21,16445
,4,23,16310
,4,24,15700
,4,26,16005
,4,27,16490
,4,29,16375
,4,1,12670
,4,2,195630
,3,36259,425
,3,36377,195640
,4,2,195645
,3,36262,195635
,3,36260,195620
,3,36244,234750
,4,1,195640
,4,2,195645
,3,36259,425
,3,36377,12670
,4,2,195630
,3,36262,195625
,3,36260,195620
,3,36244,234750
,3,36259,425
,3,36377,195630
,4,2,16405
,3,36262,195650
,3,36260,195620
,3,36244,234750
,4,1,195630
,4,2,16405
,4,1,455
,4,2,195660
,3,36259,430
,3,36261,350
,3,36377,221880
,3,36260,195505
,3,36244,234750
,4,1,455
,4,2,195670
,3,36259,430
,3,36261,350
,3,36377,197280
,4,2,197285
,3,36262,197275
,3,36260,222045
,3,36244,234750
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,195680
,4,21,195685
,4,24,16910
,4,26,16510
,4,27,195690
,4,29,16515
,4,30,195695
,4,32,16520
,4,33,195700
,4,35,16525
,4,36,195705
,4,38,16530
,4,39,29280
,4,1,12670
,4,2,195715
,3,36259,425
,3,36377,195725
,4,2,195730
,3,36262,195720
,3,36260,195675
,3,36244,234750
,4,1,195725
,4,2,195730
,3,36259,425
,3,36377,12670
,4,2,195715
,3,36262,195710
,3,36260,195675
,3,36244,234750
,3,36259,425
,3,36377,195715
,4,2,195740
,3,36262,195735
,3,36260,195675
,3,36244,234750
,4,1,195715
,4,2,195740
,3,36259,425
,3,36377,195730
,4,2,195750
,3,36262,195745
,3,36260,195675
,3,36244,234750
,4,1,195730
,4,2,195750
,3,36259,425
,3,36377,195740
,4,2,195760
,3,36262,195755
,3,36260,195675
,3,36244,234750
,4,1,195740
,4,2,195760
,3,36259,425
,3,36377,195750
,4,2,195770
,3,36262,195765
,3,36260,195675
,3,36244,234750
,4,1,195750
,4,2,195770
,3,36259,425
,3,36377,195760
,4,2,195780
,3,36262,195775
,3,36260,195675
,3,36244,234750
,4,1,195760
,4,2,195780
,3,36259,425
,3,36377,195770
,3,36260,195675
,3,36244,234750
,4,3,16560
,4,5,16010
,4,6,12090
,4,8,16535
,4,9,28435
,4,11,16540
,4,2,195795
,3,36259,430
,3,36261,350
,3,36377,195805
,4,2,195810
,3,36262,195800
,3,36260,195785
,3,36244,234750
,4,1,195805
,4,2,195810
,3,36259,430
,3,36261,350
,4,2,195795
,3,36262,195790
,3,36260,195785
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,195795
,3,36260,195785
,3,36244,234750
,2,828,16010
,2,286,16535
,2,1364,16540
,2,35551,430
,3,36315,195820
,3,36244,195810
,2,35013,206190
,2,34822,206195
,2,857,206200
,2,35014,206205
,2,34632,206210
,2,34824,206215
,2,833,206220
,2,1151,206225
,2,820,206230
,2,34823,206235
,2,35015,206240
,2,35016,206245
,2,35017,206250
,2,35018,206255
,2,35019,206260
,2,35020,206265
,2,35021,206270
,2,35022,206275
,2,832,206280
,2,35023,206285
,2,34616,206290
,2,35024,206295
,2,34636,206300
,2,35025,206305
,2,1267,206310
,2,35026,206315
,2,34639,206320
,2,35027,206325
,2,34635,206330
,2,1395,206335
,2,35028,206340
,2,972,206345
,2,860,206350
,2,837,206355
,2,34821,206360
,2,35029,206365
,2,35030,206370
,2,35031,206375
,2,35032,206380
,2,35033,206385
,2,35551,430
,3,36315,206390
,3,36244,206395
,2,35013,206445
,2,34822,206450
,2,832,206455
,2,857,206460
,2,34616,206465
,2,34636,206470
,2,34632,206475
,2,34639,206480
,2,34824,206485
,2,34635,206490
,2,1395,206495
,2,972,206500
,2,35028,206505
,2,1151,206510
,2,820,206515
,2,34823,206520
,2,34821,206525
,2,35029,206530
,2,35551,430
,3,36315,206535
,3,36244,198790
,1,0,15180
,1,1,15185
,2,35551,1070
,3,36314,15175
,3,36244,198805
,4,1,560
,4,2,205450
,4,1,195825
,4,2,195830
,4,3,195835
,3,36259,195815
,3,36261,16010
,4,2,195870
,3,36262,195865
,3,36244,234750
,4,3,23105
,4,6,16680
,4,9,16905
,4,12,195860
,4,2,195870
,3,36259,195815
,3,36261,16010
,3,36377,195850
,4,2,195880
,3,36262,195875
,3,36260,195855
,3,36244,234750
,4,1,195850
,4,2,195880
,3,36259,195815
,3,36261,16010
,3,36377,195870
,4,2,195890
,3,36262,195885
,3,36260,195855
,3,36244,234750
,4,1,195870
,4,2,195890
,3,36259,195815
,3,36261,16010
,3,36377,195880
,4,2,195900
,3,36262,195895
,3,36260,195855
,3,36244,234750
,4,1,195880
,4,2,195900
,3,36259,195815
,3,36261,16010
,3,36377,195890
,3,36260,195855
,3,36244,234750
,3,36372,200
,3,36373,195970
,3,36372,200
,3,36373,21685
,3,36372,200
,3,36373,195990
,3,36372,200
,3,36373,196095
,4,3,195950
,4,6,16620
,4,8,26450
,4,1,195565
,4,2,195960
,3,36259,430
,3,36261,350
,3,36377,222565
,3,36260,195945
,3,36244,234750
,4,3,16560
,4,5,26450
,4,6,195970
,4,8,16970
,4,9,195975
,4,11,16985
,4,12,21680
,4,14,16995
,4,15,195980
,4,17,16995
,4,18,195985
,4,20,17005
,4,21,21685
,4,23,17010
,4,24,195990
,4,26,17015
,4,27,195995
,4,29,17025
,2,35551,425
,3,36254,16940
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,16945
,4,2,196010
,3,36259,430
,3,36261,350
,3,36377,196020
,4,2,196025
,3,36262,196015
,3,36260,195965
,3,36244,234750
,4,1,196020
,4,2,196025
,3,36259,430
,3,36261,350
,4,2,196010
,3,36262,196005
,3,36260,195965
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,196010
,4,2,196035
,3,36262,196030
,3,36260,195965
,3,36244,234750
,4,1,196010
,4,2,196035
,3,36259,430
,3,36261,350
,3,36377,196025
,4,2,196045
,3,36262,196040
,3,36260,195965
,3,36244,234750
,4,1,196025
,4,2,196045
,3,36259,430
,3,36261,350
,3,36377,196035
,4,2,196055
,3,36262,196050
,3,36260,195965
,3,36244,234750
,4,1,196035
,4,2,196055
,3,36259,430
,3,36261,350
,3,36377,196045
,4,2,196065
,3,36262,196060
,3,36260,195965
,3,36244,234750
,4,1,196045
,4,2,196065
,3,36259,430
,3,36261,350
,3,36377,196055
,4,2,196075
,3,36262,196070
,3,36260,195965
,3,36244,234750
,4,1,196055
,4,2,196075
,3,36259,430
,3,36261,350
,3,36377,196065
,4,2,196085
,3,36262,196080
,3,36260,195965
,3,36244,234750
,4,1,196065
,4,2,196085
,3,36259,430
,3,36261,350
,3,36377,196075
,3,36260,195965
,3,36244,234750
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,196095
,4,20,17035
,4,2,196105
,4,3,16560
,4,1,205470
,4,2,205475
,4,2,196115
,3,36259,430
,3,36261,350
,3,36377,204230
,3,36260,196100
,3,36244,234750
,4,3,16550
,4,2,196130
,3,36259,430
,3,36261,350
,3,36377,204250
,3,36260,196120
,3,36244,234750
,2,828,26450
,2,34331,16970
,2,34332,16985
,2,1068,16995
,2,34333,16995
,2,34334,17005
,2,1069,17010
,2,34335,17015
,2,34336,17025
,2,35551,430
,3,36315,196140
,3,36244,196085
,2,35551,425
,3,36254,5930
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,5940
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5945
,2,35551,425
,3,36254,5965
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5970
,2,35551,425
,3,36254,5980
,3,36255,440
,6,64,85
,3,36244,675
,4,1,5985
,2,35551,425
,3,36254,5995
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6000
,2,35551,425
,3,36254,6020
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6025
,2,35551,425
,3,36254,6035
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6040
,2,35551,425
,3,36254,6050
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6055
,2,35551,425
,3,36254,6075
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6080
,2,35551,425
,3,36254,6090
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6095
,2,35551,425
,3,36254,6105
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6110
,2,35551,425
,3,36254,6130
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6135
,2,35551,425
,3,36254,6145
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6150
,2,35551,425
,3,36254,6160
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6165
,2,35551,425
,3,36254,6185
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6190
,2,35551,425
,3,36254,6200
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6205
,2,35551,425
,3,36254,6215
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,6225
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,6230
,3,36255,440
,6,64,85
,3,36244,675
,4,1,6235
,4,2,196220
,4,3,196165
,4,4,196185
,4,8,196215
,4,9,196190
,4,10,196170
,4,11,196205
,4,14,196225
,4,15,196160
,4,16,196210
,4,17,196230
,4,18,196180
,4,19,196235
,4,20,196155
,4,21,196200
,4,24,196145
,4,25,196175
,4,29,196195
,4,30,196150
,3,36261,350
,3,36260,216935
,3,36244,234750
,4,3,196255
,4,6,196260
,4,9,196265
,4,12,196270
,4,15,196275
,4,18,196280
,4,21,196285
,4,24,196290
,4,27,196295
,4,30,196300
,4,33,196305
,4,36,196310
,4,2,196320
,3,36259,6320
,3,36261,2950
,3,36377,6325
,4,2,196330
,3,36262,196325
,3,36260,196250
,3,36244,234750
,4,1,6325
,4,2,196330
,3,36259,6320
,3,36261,2950
,3,36377,196320
,4,2,196340
,3,36262,196335
,3,36260,196250
,3,36244,234750
,4,1,196320
,4,2,196340
,3,36259,6320
,3,36261,2950
,3,36377,196330
,4,2,196350
,3,36262,196345
,3,36260,196250
,3,36244,234750
,4,1,196330
,4,2,196350
,3,36259,6320
,3,36261,2950
,3,36377,196340
,4,2,196360
,3,36262,196355
,3,36260,196250
,3,36244,234750
,4,1,196340
,4,2,196360
,3,36259,6320
,3,36261,2950
,3,36377,196350
,4,2,196370
,3,36262,196365
,3,36260,196250
,3,36244,234750
,4,1,196350
,4,2,196370
,3,36259,6320
,3,36261,2950
,3,36377,196360
,4,2,196380
,3,36262,196375
,3,36260,196250
,3,36244,234750
,4,1,196360
,4,2,196380
,3,36259,6320
,3,36261,2950
,3,36377,196370
,4,2,196390
,3,36262,196385
,3,36260,196250
,3,36244,234750
,4,1,196370
,4,2,196390
,3,36259,6320
,3,36261,2950
,3,36377,196380
,4,2,196400
,3,36262,196395
,3,36260,196250
,3,36244,234750
,4,1,196380
,4,2,196400
,3,36259,6320
,3,36261,2950
,3,36377,196390
,4,2,196410
,3,36262,196405
,3,36260,196250
,3,36244,234750
,4,1,196390
,4,2,196410
,3,36259,6320
,3,36261,2950
,3,36377,196400
,4,2,196420
,3,36262,196415
,3,36260,196250
,3,36244,234750
,4,1,196400
,4,2,196420
,3,36259,6320
,3,36261,2950
,3,36377,196410
,4,2,196430
,3,36262,196425
,3,36260,196250
,3,36244,234750
,4,1,196410
,4,2,196430
,3,36259,6320
,3,36261,2950
,3,36377,196420
,3,36260,196250
,3,36244,234750
,4,3,16560
,4,5,12660
,2,828,12660
,2,35551,196135
,3,36315,196445
,3,36244,196450
,3,36259,196135
,3,36261,350
,3,36260,196435
,3,36244,234750
,4,3,196460
,4,5,12690
,4,6,196465
,4,9,196470
,4,12,196475
,4,15,196480
,4,18,196485
,4,21,196490
,4,24,196495
,4,27,196500
,4,30,196505
,4,33,196510
,4,36,196515
,4,38,12790
,4,39,196520
,4,42,196525
,4,44,12810
,4,45,196530
,4,47,12855
,4,48,196535
,4,50,12890
,4,51,21430
,4,53,12925
,4,54,196540
,4,56,12960
,4,57,196545
,4,59,12995
,4,60,196550
,4,62,13030
,4,63,21750
,4,65,13065
,4,66,196555
,4,68,13100
,4,69,196560
,4,71,13135
,4,72,196565
,4,74,13170
,4,75,196570
,4,77,13205
,4,78,196575
,4,80,13240
,4,81,196580
,4,83,13275
,4,84,196585
,4,86,13310
,4,87,196590
,4,89,13345
,4,90,196595
,4,92,13380
,4,93,196600
,4,95,13415
,4,96,196605
,4,98,13450
,4,99,196610
,4,101,13485
,4,102,196615
,4,104,13520
,4,105,196620
,4,107,13555
,4,108,196625
,4,110,13590
,4,111,196630
,4,113,13625
,4,114,24795
,4,116,13660
,4,117,196635
,4,119,13695
,4,120,196640
,4,123,196645
,4,126,16930
,4,129,196650
,4,132,16620
,4,134,26450
,4,135,196655
,4,137,17385
,4,138,196660
,4,141,15695
,4,143,15985
,4,144,21140
,4,147,21400
,4,149,196665
,4,150,21420
,4,152,196670
,4,153,21370
,4,155,196675
,4,156,21390
,4,158,196680
,4,159,21350
,4,161,196685
,4,162,196690
,4,165,21525
,4,167,21535
,4,168,21530
,4,170,21545
,4,171,21520
,4,173,21555
,4,174,196695
,4,176,21565
,4,177,196700
,4,179,21610
,4,180,196705
,4,182,21615
,4,183,21680
,4,185,21690
,4,186,195980
,4,188,21690
,4,189,21685
,4,191,21710
,4,192,196710
,0,1049,12925
,0,1050,204760
,0,1051,100
,0,1052,110
,0,1053,204580
,0,1042,204765
,0,1043,204770
,2,35551,425
,3,36253,205480
,3,36254,21395
,3,36255,204755
,6,64,85
,3,36244,12670
,4,1,21405
,0,1049,12925
,0,1050,204760
,0,1051,100
,0,1052,110
,0,1053,204580
,0,1042,204765
,0,1043,204770
,2,35551,425
,3,36253,205485
,3,36254,21415
,3,36255,204755
,6,64,85
,3,36244,12670
,4,1,4220
,0,1049,12925
,0,1050,204760
,0,1051,100
,0,1052,110
,0,1053,204580
,0,1042,204765
,0,1043,204770
,2,35551,425
,3,36254,21365
,3,36255,204755
,6,64,85
,3,36244,12670
,4,1,21375
,0,1049,12925
,0,1050,204760
,0,1051,100
,0,1052,110
,0,1053,204580
,0,1042,204765
,0,1043,204770
,2,35551,425
,3,36254,21385
,3,36255,204755
,6,64,85
,3,36244,12670
,4,1,4220
,0,1049,12925
,0,1050,204760
,0,1051,100
,0,1052,110
,0,1053,204580
,0,1042,204765
,0,1043,204770
,2,35551,425
,3,36254,21345
,3,36255,204755
,6,64,85
,3,36244,12670
,4,1,21355
,4,2,196720
,3,36259,196440
,3,36261,12660
,3,36377,196730
,4,2,196735
,3,36262,196725
,3,36260,196455
,3,36244,234750
,4,1,196730
,4,2,196735
,3,36259,196440
,3,36261,12660
,4,2,196720
,3,36262,196715
,3,36260,196455
,3,36244,234750
,3,36259,196440
,3,36261,12660
,3,36377,196720
,4,2,196745
,3,36262,196740
,3,36260,196455
,3,36244,234750
,4,1,196720
,4,2,196745
,3,36259,196440
,3,36261,12660
,3,36377,196735
,4,2,196760
,3,36262,196755
,3,36260,196455
,3,36244,234750
,3,36372,200
,3,36373,196655
,4,1,196735
,4,2,196760
,3,36259,196440
,3,36261,12660
,3,36377,196745
,4,2,198620
,3,36262,198615
,3,36260,196455
,3,36244,234750
,3,36372,200
,3,36373,197925
,3,36372,200
,3,36373,197930
,3,36372,200
,3,36373,197935
,3,36372,200
,3,36373,197940
,3,36372,200
,3,36373,18910
,3,36372,200
,3,36373,18935
,3,36372,200
,3,36373,197975
,3,36372,200
,3,36373,197980
,3,36372,200
,3,36373,197985
,3,36372,200
,3,36373,197990
,3,36372,200
,3,36373,198000
,3,36372,200
,3,36373,198005
,3,36372,200
,3,36373,198010
,3,36372,200
,3,36373,198015
,3,36372,200
,3,36373,18960
,3,36372,200
,3,36373,18985
,3,36372,200
,3,36373,19010
,3,36372,200
,3,36373,19035
,4,2,18560
,4,3,18185
,4,5,18585
,4,6,18205
,4,8,18610
,4,9,18220
,4,11,18635
,4,12,18235
,4,14,18660
,4,15,18250
,4,17,18685
,4,18,18265
,4,20,18710
,4,21,18280
,4,23,18735
,4,24,18295
,4,26,18760
,4,27,18310
,4,29,18785
,4,30,18325
,4,32,18810
,4,33,18340
,4,35,18835
,4,36,18355
,4,38,18860
,4,39,18370
,4,41,18885
,4,42,18385
,4,44,18910
,4,45,18400
,4,47,18935
,4,48,18415
,4,50,18960
,4,51,18430
,4,53,18985
,4,54,18445
,4,56,19010
,4,57,18460
,4,59,19035
,4,60,18475
,4,62,17715
,4,63,18490
,4,65,19080
,4,66,18505
,3,36259,430
,3,36261,350
,3,36260,196980
,3,36244,234750
,4,3,16560
,4,5,18565
,3,36259,430
,3,36261,350
,3,36260,196990
,3,36244,234750
,4,3,16560
,4,5,18590
,3,36259,430
,3,36261,350
,3,36260,197000
,3,36244,234750
,4,3,16560
,4,5,18615
,3,36259,430
,3,36261,350
,3,36260,197010
,3,36244,234750
,4,3,16560
,4,5,18640
,3,36259,430
,3,36261,350
,3,36260,197020
,3,36244,234750
,4,3,16560
,4,5,18665
,3,36259,430
,3,36261,350
,3,36260,197030
,3,36244,234750
,4,3,16560
,4,5,18690
,3,36259,430
,3,36261,350
,3,36260,197040
,3,36244,234750
,4,3,16560
,4,5,18715
,3,36259,430
,3,36261,350
,3,36260,197050
,3,36244,234750
,4,3,16560
,4,5,18740
,3,36259,430
,3,36261,350
,3,36260,197060
,3,36244,234750
,4,3,16560
,4,5,18765
,3,36259,430
,3,36261,350
,3,36260,197070
,3,36244,234750
,4,3,16560
,4,5,18790
,3,36259,430
,3,36261,350
,3,36260,197080
,3,36244,234750
,4,3,16560
,4,5,18815
,3,36259,430
,3,36261,350
,3,36260,197090
,3,36244,234750
,4,3,16560
,4,5,18840
,3,36259,430
,3,36261,350
,3,36260,197100
,3,36244,234750
,4,3,16560
,4,5,18865
,3,36259,430
,3,36261,350
,3,36260,197110
,3,36244,234750
,4,3,16560
,4,5,18890
,3,36259,430
,3,36261,350
,3,36260,197120
,3,36244,234750
,4,3,16560
,4,5,18915
,3,36259,430
,3,36261,350
,3,36260,197130
,3,36244,234750
,4,3,16560
,4,5,18940
,3,36259,430
,3,36261,350
,3,36260,197140
,3,36244,234750
,4,3,16560
,4,5,18965
,3,36259,430
,3,36261,350
,3,36260,197150
,3,36244,234750
,4,3,16560
,4,5,18990
,3,36259,430
,3,36261,350
,3,36260,197160
,3,36244,234750
,4,3,16560
,4,5,19015
,3,36259,430
,3,36261,350
,3,36260,197170
,3,36244,234750
,4,3,16560
,4,5,19040
,3,36259,430
,3,36261,350
,3,36260,197180
,3,36244,234750
,4,3,16560
,4,5,19060
,3,36259,430
,3,36261,350
,3,36260,197190
,3,36244,234750
,4,3,16560
,4,5,19085
,2,828,950
,2,882,20745
,2,883,20755
,2,884,20760
,2,34460,20765
,2,428,20770
,2,71,20775
,2,888,20780
,2,949,20790
,2,294,20795
,2,934,20800
,2,929,20805
,2,930,20810
,2,935,20815
,2,937,20820
,2,936,20825
,2,34461,20830
,2,34462,20835
,2,34463,20840
,2,34464,20845
,2,34465,20850
,2,34466,20855
,2,34467,20860
,2,34468,20865
,2,34469,20870
,2,34470,20875
,2,941,20880
,2,942,20885
,2,943,20890
,2,944,20895
,2,34471,20900
,2,34472,20905
,2,34473,20910
,2,34474,20915
,2,34475,20920
,2,34476,20925
,2,34477,20930
,2,34478,20935
,2,34479,20940
,2,34480,20945
,2,945,20950
,2,946,20955
,2,947,20960
,2,948,20965
,2,35551,430
,3,36315,198025
,3,36244,198030
,3,36259,197195
,3,36261,350
,3,36377,198060
,3,36260,198020
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,197210
,3,36244,234750
,4,3,16560
,4,5,18530
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,197220
,4,20,18530
,4,21,197225
,4,23,18535
,3,36259,430
,3,36261,350
,3,36260,197235
,3,36244,234750
,4,3,16560
,4,5,18535
,4,1,12670
,4,2,18545
,4,3,18115
,4,5,18525
,4,6,197250
,4,8,19180
,3,36259,430
,3,36261,350
,3,36260,197260
,3,36244,234750
,4,3,16560
,4,5,19180
,4,1,455
,4,2,197270
,3,36259,430
,3,36261,350
,3,36377,221885
,3,36260,197245
,3,36244,234750
,4,1,197280
,4,2,197285
,3,36259,430
,3,36261,350
,3,36377,455
,4,2,195670
,3,36262,195665
,3,36260,222045
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,195670
,4,2,200640
,3,36262,200635
,3,36260,222045
,3,36244,234750
,3,36372,200
,3,36373,197695
,2,35551,425
,3,36253,205490
,3,36254,20145
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,20150
,4,3,197350
,4,5,20245
,4,6,197355
,4,8,20370
,4,9,197360
,4,11,20375
,4,12,197365
,4,14,20380
,4,15,22780
,4,17,20385
,4,18,20135
,4,20,20260
,4,21,17645
,4,23,20265
,4,24,6960
,4,26,20315
,4,27,19920
,4,29,20320
,4,30,19930
,4,32,20325
,4,33,19940
,4,35,20330
,4,36,295
,4,38,197370
,4,39,8950
,4,41,20415
,4,42,12150
,4,44,197375
,4,45,19980
,4,47,197380
,4,48,197385
,4,50,20420
,4,51,197390
,4,53,20440
,0,1023,205545
,0,843,205550
,0,1024,110
,2,35551,425
,3,36254,20390
,3,36255,205555
,6,64,85
,3,36244,12670
,4,1,4220
,0,1023,205560
,0,843,205565
,0,1024,110
,2,35551,425
,3,36254,20390
,3,36255,205570
,6,64,85
,3,36244,12670
,4,1,4220
,0,1023,205575
,0,843,205580
,0,1024,110
,2,35551,425
,3,36254,20390
,3,36255,205585
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,195565
,4,2,197400
,3,36259,430
,3,36261,350
,3,36377,197410
,4,2,197415
,3,36262,197405
,3,36260,197345
,3,36244,234750
,4,1,197410
,4,2,197415
,3,36259,430
,3,36261,350
,3,36377,195565
,4,2,197400
,3,36262,197395
,3,36260,197345
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,197400
,4,2,197425
,3,36262,197420
,3,36260,197345
,3,36244,234750
,4,1,197400
,4,2,197425
,3,36259,430
,3,36261,350
,3,36377,197415
,4,2,197435
,3,36262,197430
,3,36260,197345
,3,36244,234750
,4,1,197415
,4,2,197435
,3,36259,430
,3,36261,350
,3,36377,197425
,4,2,197445
,3,36262,197440
,3,36260,197345
,3,36244,234750
,4,1,197425
,4,2,197445
,3,36259,430
,3,36261,350
,3,36377,197435
,4,2,197455
,3,36262,197450
,3,36260,197345
,3,36244,234750
,4,1,197435
,4,2,197455
,3,36259,430
,3,36261,350
,3,36377,197445
,4,2,197585
,3,36262,197580
,3,36260,197345
,3,36244,234750
,4,3,7995
,4,6,19655
,4,9,19665
,4,12,19675
,4,15,19685
,4,18,19695
,4,21,19705
,4,24,19715
,4,27,19725
,4,30,19735
,4,33,19745
,4,36,19755
,4,39,19765
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,197470
,4,21,197475
,4,3,19780
,4,6,19785
,4,9,19790
,4,12,90
,4,15,80
,4,18,10495
,4,21,19795
,4,24,19800
,4,2,197490
,3,36259,430
,3,36261,350
,3,36377,197500
,4,2,197505
,3,36262,197495
,3,36260,197480
,3,36244,234750
,4,1,197500
,4,2,197505
,3,36259,430
,3,36261,350
,4,2,197490
,3,36262,197485
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,197490
,4,2,197515
,3,36262,197510
,3,36260,197480
,3,36244,234750
,4,1,197490
,4,2,197515
,3,36259,430
,3,36261,350
,3,36377,197505
,4,2,197525
,3,36262,197520
,3,36260,197480
,3,36244,234750
,4,1,197505
,4,2,197525
,3,36259,430
,3,36261,350
,3,36377,197515
,4,2,197535
,3,36262,197530
,3,36260,197480
,3,36244,234750
,4,1,197515
,4,2,197535
,3,36259,430
,3,36261,350
,3,36377,197525
,4,2,197545
,3,36262,197540
,3,36260,197480
,3,36244,234750
,4,1,197525
,4,2,197545
,3,36259,430
,3,36261,350
,3,36377,197535
,4,2,197555
,3,36262,197550
,3,36260,197480
,3,36244,234750
,4,1,197535
,4,2,197555
,3,36259,430
,3,36261,350
,3,36377,197545
,4,2,197565
,3,36262,197560
,3,36260,197480
,3,36244,234750
,4,1,197545
,4,2,197565
,3,36259,430
,3,36261,350
,3,36377,197555
,3,36260,197480
,3,36244,234750
,4,1,12670
,4,2,197575
,3,36259,425
,3,36377,223835
,3,36260,197465
,3,36244,234750
,4,1,197445
,4,2,197585
,3,36259,430
,3,36261,350
,3,36377,197455
,4,2,197595
,3,36262,197590
,3,36260,197345
,3,36244,234750
,4,1,197455
,4,2,197595
,3,36259,430
,3,36261,350
,3,36377,197585
,4,2,197605
,3,36262,197600
,3,36260,197345
,3,36244,234750
,4,1,197585
,4,2,197605
,3,36259,430
,3,36261,350
,3,36377,197595
,4,2,197615
,3,36262,197610
,3,36260,197345
,3,36244,234750
,4,1,197595
,4,2,197615
,3,36259,430
,3,36261,350
,3,36377,197605
,4,2,197625
,3,36262,197620
,3,36260,197345
,3,36244,234750
,4,1,197605
,4,2,197625
,3,36259,430
,3,36261,350
,3,36377,197615
,4,2,197635
,3,36262,197630
,3,36260,197345
,3,36244,234750
,4,1,197615
,4,2,197635
,3,36259,430
,3,36261,350
,3,36377,197625
,4,2,197645
,3,36262,197640
,3,36260,197345
,3,36244,234750
,4,1,197625
,4,2,197645
,3,36259,430
,3,36261,350
,3,36377,197635
,4,2,197655
,3,36262,197650
,3,36260,197345
,3,36244,234750
,4,1,197635
,4,2,197655
,3,36259,430
,3,36261,350
,3,36377,197645
,4,2,197665
,3,36262,197660
,3,36260,197345
,3,36244,234750
,4,1,197645
,4,2,197665
,3,36259,430
,3,36261,350
,3,36377,197655
,4,2,197675
,3,36262,197670
,3,36260,197345
,3,36244,234750
,4,1,197655
,4,2,197675
,3,36259,430
,3,36261,350
,3,36377,197665
,3,36260,197345
,3,36244,234750
,2,35551,425
,3,36254,19465
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,19470
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,19340
,4,20,20445
,4,21,19250
,4,23,20465
,4,24,19260
,4,26,11735
,4,27,19350
,4,29,20585
,4,30,19360
,4,32,20590
,4,33,19370
,4,35,20595
,4,36,19380
,4,38,20600
,4,39,19390
,4,41,20605
,4,42,19400
,4,44,20610
,4,45,197690
,4,47,20615
,4,48,197695
,4,50,20625
,4,51,197700
,4,53,20635
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,197710
,4,20,795
,4,3,16550
,4,6,20520
,4,9,20525
,4,12,20530
,4,2,197725
,3,36259,430
,3,36261,350
,3,36377,197735
,4,2,197740
,3,36262,197730
,3,36260,197715
,3,36244,234750
,4,1,197735
,4,2,197740
,3,36259,430
,3,36261,350
,4,2,197725
,3,36262,197720
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,197725
,4,2,197750
,3,36262,197745
,3,36260,197715
,3,36244,234750
,4,1,197725
,4,2,197750
,3,36259,430
,3,36261,350
,3,36377,197740
,4,2,197760
,3,36262,197755
,3,36260,197715
,3,36244,234750
,4,1,197740
,4,2,197760
,3,36259,430
,3,36261,350
,3,36377,197750
,3,36260,197715
,3,36244,234750
,4,3,16560
,4,5,20445
,2,828,795
,2,34297,10020
,2,1378,655
,2,71,2585
,2,35551,430
,3,36244,217145
,3,36259,197770
,3,36261,350
,3,36260,197765
,3,36244,234750
,4,1,12670
,4,2,197790
,3,36259,425
,3,36377,197800
,4,2,197805
,3,36262,197795
,3,36260,197685
,3,36244,234750
,4,1,197800
,4,2,197805
,3,36259,425
,3,36377,12670
,4,2,197790
,3,36262,197785
,3,36260,197685
,3,36244,234750
,3,36259,425
,3,36377,197790
,4,2,197815
,3,36262,197810
,3,36260,197685
,3,36244,234750
,4,1,197790
,4,2,197815
,3,36259,425
,3,36377,197805
,4,2,197825
,3,36262,197820
,3,36260,197685
,3,36244,234750
,4,1,197805
,4,2,197825
,3,36259,425
,3,36377,197815
,4,2,197835
,3,36262,197830
,3,36260,197685
,3,36244,234750
,4,1,197815
,4,2,197835
,3,36259,425
,3,36377,197825
,4,2,197845
,3,36262,197840
,3,36260,197685
,3,36244,234750
,4,1,197825
,4,2,197845
,3,36259,425
,3,36377,197835
,4,2,197855
,3,36262,197850
,3,36260,197685
,3,36244,234750
,4,1,197835
,4,2,197855
,3,36259,425
,3,36377,197845
,4,2,197865
,3,36262,197860
,3,36260,197685
,3,36244,234750
,4,1,197845
,4,2,197865
,3,36259,425
,3,36377,197855
,4,2,197875
,3,36262,197870
,3,36260,197685
,3,36244,234750
,4,1,197855
,4,2,197875
,3,36259,425
,3,36377,197865
,4,2,197885
,3,36262,197880
,3,36260,197685
,3,36244,234750
,4,1,197865
,4,2,197885
,3,36259,425
,3,36377,197875
,4,2,197895
,3,36262,197890
,3,36260,197685
,3,36244,234750
,4,1,197875
,4,2,197895
,3,36259,425
,3,36377,197885
,3,36260,197685
,3,36244,234750
,4,3,197905
,4,6,18115
,4,8,18525
,4,9,17440
,4,11,950
,4,3,16560
,4,5,950
,4,6,17645
,4,8,20745
,4,9,17655
,4,11,20755
,4,12,17665
,4,14,20760
,4,15,197915
,4,17,20765
,4,18,11370
,4,20,20770
,4,21,4890
,4,23,20775
,4,24,17715
,4,26,20780
,4,27,19080
,4,29,20790
,4,30,7440
,4,32,20795
,4,33,18685
,4,35,20800
,4,36,18560
,4,38,20805
,4,39,18585
,4,41,20810
,4,42,18710
,4,44,20815
,4,45,18760
,4,47,20820
,4,48,18735
,4,50,20825
,4,51,197920
,4,53,20830
,4,54,197925
,4,56,20835
,4,57,197930
,4,59,20840
,4,60,197935
,4,62,20845
,4,63,197940
,4,65,20850
,4,66,197945
,4,68,20855
,4,69,197950
,4,71,20860
,4,72,197955
,4,74,20865
,4,75,197960
,4,77,20870
,4,78,197965
,4,80,20875
,4,81,18860
,4,83,20880
,4,84,18885
,4,86,20885
,4,87,18910
,4,89,20890
,4,90,18935
,4,92,20895
,4,93,197970
,4,95,20900
,4,96,197975
,4,98,20905
,4,99,197980
,4,101,20910
,4,102,197985
,4,104,20915
,4,105,197990
,4,107,20920
,4,108,197995
,4,110,20925
,4,111,198000
,4,113,20930
,4,114,198005
,4,116,20935
,4,117,198010
,4,119,20940
,4,120,198015
,4,122,20945
,4,123,18960
,4,125,20950
,4,126,18985
,4,128,20955
,4,129,19010
,4,131,20960
,4,132,19035
,4,134,20965
,4,3,18560
,4,5,18565
,4,6,18585
,4,8,18590
,4,9,18610
,4,11,18615
,4,12,18635
,4,14,18640
,4,15,18660
,4,17,18665
,4,18,18685
,4,20,18690
,4,21,18710
,4,23,18715
,4,24,18735
,4,26,18740
,4,27,18760
,4,29,18765
,4,30,18785
,4,32,18790
,4,33,18810
,4,35,18815
,4,36,18835
,4,38,18840
,4,39,18860
,4,41,18865
,4,42,18885
,4,44,18890
,4,45,18910
,4,47,18915
,4,48,18935
,4,50,18940
,4,51,18960
,4,53,18965
,4,54,18985
,4,56,18990
,4,57,19010
,4,59,19015
,4,60,19035
,4,62,19040
,4,63,17715
,4,65,19060
,4,66,19080
,4,68,19085
,4,69,16560
,4,71,18525
,4,72,4890
,4,74,20640
,4,75,197915
,4,77,20725
,4,78,7440
,4,80,20730
,3,36259,430
,3,36261,350
,3,36377,198605
,3,36260,197910
,3,36244,234750
,2,35551,425
,3,36254,18130
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,18135
,4,2,198045
,3,36259,197195
,3,36261,350
,3,36377,198055
,4,2,198060
,3,36262,198050
,3,36260,198020
,3,36244,234750
,4,1,198055
,4,2,198060
,3,36259,197195
,3,36261,350
,4,2,198045
,3,36262,198040
,3,36260,198020
,3,36244,234750
,3,36259,197195
,3,36261,350
,3,36377,198045
,4,2,197200
,3,36262,198065
,3,36260,198020
,3,36244,234750
,4,1,198045
,4,2,197200
,4,2,198075
,3,36259,18540
,3,36261,18525
,3,36377,18550
,4,2,198095
,3,36262,198090
,3,36244,234750
,4,3,21455
,4,6,198085
,4,1,18550
,4,2,198095
,3,36259,18540
,3,36261,18525
,3,36377,198075
,4,2,202990
,3,36262,202985
,3,36260,198080
,3,36244,234750
,4,1,195565
,4,2,198105
,3,36259,430
,3,36261,350
,3,36377,198115
,4,2,198120
,3,36262,198110
,3,36260,197900
,3,36244,234750
,4,1,198115
,4,2,198120
,3,36259,430
,3,36261,350
,3,36377,195565
,4,2,198105
,3,36262,198100
,3,36260,197900
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,198105
,3,36260,197900
,3,36244,234750
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,198130
,4,20,20735
,4,21,198135
,4,24,17625
,4,26,20740
,4,27,197220
,4,29,18530
,4,30,7480
,4,32,20785
,4,1,12670
,4,2,198145
,3,36259,425
,3,36377,198155
,4,2,198160
,3,36262,198150
,3,36260,198125
,3,36244,234750
,4,1,198155
,4,2,198160
,3,36259,425
,3,36377,12670
,4,2,198145
,3,36262,198140
,3,36260,198125
,3,36244,234750
,3,36259,425
,3,36377,198145
,4,2,198235
,3,36262,198230
,3,36260,198125
,3,36244,234750
,4,2,198170
,3,36259,430
,3,36261,350
,3,36377,198180
,4,2,198185
,3,36262,198175
,3,36260,197910
,3,36244,234750
,4,1,198180
,4,2,198185
,3,36259,430
,3,36261,350
,4,2,198170
,3,36262,198165
,3,36260,197910
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,198170
,4,2,198195
,3,36262,198190
,3,36260,197910
,3,36244,234750
,4,1,198170
,4,2,198195
,3,36259,430
,3,36261,350
,3,36377,198185
,4,2,198205
,3,36262,198200
,3,36260,197910
,3,36244,234750
,4,1,198185
,4,2,198205
,3,36259,430
,3,36261,350
,3,36377,198195
,4,2,198215
,3,36262,198210
,3,36260,197910
,3,36244,234750
,4,1,198195
,4,2,198215
,3,36259,430
,3,36261,350
,3,36377,198205
,4,2,198225
,3,36262,198220
,3,36260,197910
,3,36244,234750
,4,1,198205
,4,2,198225
,3,36259,430
,3,36261,350
,3,36377,198215
,4,2,198245
,3,36262,198240
,3,36260,197910
,3,36244,234750
,4,1,198145
,4,2,198235
,3,36259,425
,3,36377,198160
,4,2,198255
,3,36262,198250
,3,36260,198125
,3,36244,234750
,4,1,198215
,4,2,198245
,3,36259,430
,3,36261,350
,3,36377,198225
,4,2,198265
,3,36262,198260
,3,36260,197910
,3,36244,234750
,4,1,198160
,4,2,198255
,3,36259,425
,3,36377,198235
,3,36260,198125
,3,36244,234750
,4,1,198225
,4,2,198265
,3,36259,430
,3,36261,350
,3,36377,198245
,4,2,198275
,3,36262,198270
,3,36260,197910
,3,36244,234750
,4,1,198245
,4,2,198275
,3,36259,430
,3,36261,350
,3,36377,198265
,4,2,198285
,3,36262,198280
,3,36260,197910
,3,36244,234750
,4,1,198265
,4,2,198285
,3,36259,430
,3,36261,350
,3,36377,198275
,4,2,198295
,3,36262,198290
,3,36260,197910
,3,36244,234750
,4,1,198275
,4,2,198295
,3,36259,430
,3,36261,350
,3,36377,198285
,4,2,198305
,3,36262,198300
,3,36260,197910
,3,36244,234750
,4,1,198285
,4,2,198305
,3,36259,430
,3,36261,350
,3,36377,198295
,4,2,198315
,3,36262,198310
,3,36260,197910
,3,36244,234750
,4,1,198295
,4,2,198315
,3,36259,430
,3,36261,350
,3,36377,198305
,4,2,198325
,3,36262,198320
,3,36260,197910
,3,36244,234750
,4,1,198305
,4,2,198325
,3,36259,430
,3,36261,350
,3,36377,198315
,4,2,198335
,3,36262,198330
,3,36260,197910
,3,36244,234750
,4,1,198315
,4,2,198335
,3,36259,430
,3,36261,350
,3,36377,198325
,4,2,198345
,3,36262,198340
,3,36260,197910
,3,36244,234750
,4,1,198325
,4,2,198345
,3,36259,430
,3,36261,350
,3,36377,198335
,4,2,198355
,3,36262,198350
,3,36260,197910
,3,36244,234750
,4,1,198335
,4,2,198355
,3,36259,430
,3,36261,350
,3,36377,198345
,4,2,198365
,3,36262,198360
,3,36260,197910
,3,36244,234750
,4,1,198345
,4,2,198365
,3,36259,430
,3,36261,350
,3,36377,198355
,4,2,198375
,3,36262,198370
,3,36260,197910
,3,36244,234750
,4,1,198355
,4,2,198375
,3,36259,430
,3,36261,350
,3,36377,198365
,4,2,198385
,3,36262,198380
,3,36260,197910
,3,36244,234750
,4,1,198365
,4,2,198385
,3,36259,430
,3,36261,350
,3,36377,198375
,4,2,198395
,3,36262,198390
,3,36260,197910
,3,36244,234750
,4,1,198375
,4,2,198395
,3,36259,430
,3,36261,350
,3,36377,198385
,4,2,198405
,3,36262,198400
,3,36260,197910
,3,36244,234750
,4,1,198385
,4,2,198405
,3,36259,430
,3,36261,350
,3,36377,198395
,4,2,198415
,3,36262,198410
,3,36260,197910
,3,36244,234750
,4,1,198395
,4,2,198415
,3,36259,430
,3,36261,350
,3,36377,198405
,4,2,198425
,3,36262,198420
,3,36260,197910
,3,36244,234750
,4,1,198405
,4,2,198425
,3,36259,430
,3,36261,350
,3,36377,198415
,4,2,198435
,3,36262,198430
,3,36260,197910
,3,36244,234750
,4,1,198415
,4,2,198435
,3,36259,430
,3,36261,350
,3,36377,198425
,4,2,198445
,3,36262,198440
,3,36260,197910
,3,36244,234750
,4,1,198425
,4,2,198445
,3,36259,430
,3,36261,350
,3,36377,198435
,4,2,198455
,3,36262,198450
,3,36260,197910
,3,36244,234750
,4,1,198435
,4,2,198455
,3,36259,430
,3,36261,350
,3,36377,198445
,4,2,198465
,3,36262,198460
,3,36260,197910
,3,36244,234750
,4,1,198445
,4,2,198465
,3,36259,430
,3,36261,350
,3,36377,198455
,4,2,198475
,3,36262,198470
,3,36260,197910
,3,36244,234750
,4,1,198455
,4,2,198475
,3,36259,430
,3,36261,350
,3,36377,198465
,4,2,198485
,3,36262,198480
,3,36260,197910
,3,36244,234750
,4,1,198465
,4,2,198485
,3,36259,430
,3,36261,350
,3,36377,198475
,4,2,198495
,3,36262,198490
,3,36260,197910
,3,36244,234750
,4,1,198475
,4,2,198495
,3,36259,430
,3,36261,350
,3,36377,198485
,4,2,198505
,3,36262,198500
,3,36260,197910
,3,36244,234750
,4,1,198485
,4,2,198505
,3,36259,430
,3,36261,350
,3,36377,198495
,4,2,198515
,3,36262,198510
,3,36260,197910
,3,36244,234750
,4,1,198495
,4,2,198515
,3,36259,430
,3,36261,350
,3,36377,198505
,4,2,198525
,3,36262,198520
,3,36260,197910
,3,36244,234750
,4,1,198505
,4,2,198525
,3,36259,430
,3,36261,350
,3,36377,198515
,4,2,198535
,3,36262,198530
,3,36260,197910
,3,36244,234750
,4,1,198515
,4,2,198535
,3,36259,430
,3,36261,350
,3,36377,198525
,4,2,198545
,3,36262,198540
,3,36260,197910
,3,36244,234750
,4,1,198525
,4,2,198545
,3,36259,430
,3,36261,350
,3,36377,198535
,4,2,198555
,3,36262,198550
,3,36260,197910
,3,36244,234750
,4,1,198535
,4,2,198555
,3,36259,430
,3,36261,350
,3,36377,198545
,4,2,198565
,3,36262,198560
,3,36260,197910
,3,36244,234750
,4,1,198545
,4,2,198565
,3,36259,430
,3,36261,350
,3,36377,198555
,4,2,198575
,3,36262,198570
,3,36260,197910
,3,36244,234750
,4,1,198555
,4,2,198575
,3,36259,430
,3,36261,350
,3,36377,198565
,4,2,198585
,3,36262,198580
,3,36260,197910
,3,36244,234750
,4,1,198565
,4,2,198585
,3,36259,430
,3,36261,350
,3,36377,198575
,4,2,198595
,3,36262,198590
,3,36260,197910
,3,36244,234750
,4,1,198575
,4,2,198595
,3,36259,430
,3,36261,350
,3,36377,198585
,4,2,198605
,3,36262,198600
,3,36260,197910
,3,36244,234750
,4,1,198585
,4,2,198605
,3,36259,430
,3,36261,350
,3,36377,198595
,4,2,198030
,3,36262,198610
,3,36260,197910
,3,36244,234750
,4,1,198595
,4,2,198030
,4,1,196745
,4,2,198620
,3,36259,196440
,3,36261,12660
,3,36377,196760
,4,2,198665
,3,36262,198660
,3,36260,196455
,3,36244,234750
,3,36372,200
,3,36373,203375
,3,36372,200
,3,36373,203385
,3,36372,200
,3,36373,203390
,3,36372,200
,3,36373,203395
,4,1,196760
,4,2,198665
,3,36259,196440
,3,36261,12660
,3,36377,198620
,4,2,198800
,3,36262,198795
,3,36260,196455
,3,36244,234750
,4,2,195
,4,4,195
,4,2,198680
,4,3,198685
,4,6,198690
,4,9,198695
,4,12,198700
,4,15,198705
,4,1,205625
,4,2,205630
,4,1,455
,4,2,198715
,3,36259,430
,3,36261,350
,3,36377,198725
,4,2,198730
,3,36262,198720
,3,36260,198675
,3,36244,234750
,4,1,198725
,4,2,198730
,3,36259,430
,3,36261,350
,3,36377,455
,4,2,198715
,3,36262,198710
,3,36260,198675
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,198715
,4,2,198740
,3,36262,198735
,3,36260,198675
,3,36244,234750
,4,1,198715
,4,2,198740
,3,36259,430
,3,36261,350
,3,36377,198730
,4,2,198750
,3,36262,198745
,3,36260,198675
,3,36244,234750
,4,1,198730
,4,2,198750
,3,36259,430
,3,36261,350
,3,36377,198740
,3,36260,198675
,3,36244,234750
,4,2,198760
,4,3,198765
,4,6,198770
,4,1,205635
,4,2,205640
,4,1,455
,4,2,198780
,3,36259,430
,3,36261,350
,3,36377,221870
,3,36260,198755
,3,36244,234750
,3,36244,204190
,4,36,655
,3,36259,430
,3,36261,350
,3,36244,234750
,4,1,198620
,4,2,198800
,3,36259,196440
,3,36261,12660
,3,36377,198665
,4,2,198815
,3,36262,198810
,3,36260,196455
,3,36244,234750
,3,36259,1070
,3,36261,895
,3,36377,204170
,4,2,204160
,3,36262,216910
,3,36260,216875
,3,36244,234750
,4,1,198665
,4,2,198815
,3,36259,196440
,3,36261,12660
,3,36377,198800
,4,2,198825
,3,36262,198820
,3,36260,196455
,3,36244,234750
,4,1,198800
,4,2,198825
,3,36259,196440
,3,36261,12660
,3,36377,198815
,4,2,198835
,3,36262,198830
,3,36260,196455
,3,36244,234750
,4,1,198815
,4,2,198835
,3,36259,196440
,3,36261,12660
,3,36377,198825
,4,2,198845
,3,36262,198840
,3,36260,196455
,3,36244,234750
,4,1,198825
,4,2,198845
,3,36259,196440
,3,36261,12660
,3,36377,198835
,4,2,198855
,3,36262,198850
,3,36260,196455
,3,36244,234750
,4,1,198835
,4,2,198855
,3,36259,196440
,3,36261,12660
,3,36377,198845
,4,2,198865
,3,36262,198860
,3,36260,196455
,3,36244,234750
,4,1,198845
,4,2,198865
,3,36259,196440
,3,36261,12660
,3,36377,198855
,4,2,198880
,3,36262,198875
,3,36260,196455
,3,36244,234750
,4,1,198855
,4,2,198880
,3,36259,196440
,3,36261,12660
,3,36377,198865
,4,2,198890
,3,36262,198885
,3,36260,196455
,3,36244,234750
,4,1,198865
,4,2,198890
,3,36259,196440
,3,36261,12660
,3,36377,198880
,4,2,198905
,3,36262,198900
,3,36260,196455
,3,36244,234750
,4,1,560
,4,1,198880
,4,2,198905
,3,36259,196440
,3,36261,12660
,3,36377,198890
,4,2,198915
,3,36262,198910
,3,36260,196455
,3,36244,234750
,4,1,198890
,4,2,198915
,3,36259,196440
,3,36261,12660
,3,36377,198905
,4,2,198925
,3,36262,198920
,3,36260,196455
,3,36244,234750
,4,1,198905
,4,2,198925
,3,36259,196440
,3,36261,12660
,3,36377,198915
,4,2,198935
,3,36262,198930
,3,36260,196455
,3,36244,234750
,4,1,198915
,4,2,198935
,3,36259,196440
,3,36261,12660
,3,36377,198925
,4,2,198960
,3,36262,198955
,3,36260,196455
,3,36244,234750
,3,36372,205645
,3,36373,205650
,3,36372,200
,3,36373,21685
,4,1,198925
,4,2,198960
,3,36259,196440
,3,36261,12660
,3,36377,198935
,4,2,198970
,3,36262,198965
,3,36260,196455
,3,36244,234750
,4,1,198935
,4,2,198970
,3,36259,196440
,3,36261,12660
,3,36377,198960
,4,2,198980
,3,36262,198975
,3,36260,196455
,3,36244,234750
,4,1,198960
,4,2,198980
,3,36259,196440
,3,36261,12660
,3,36377,198970
,4,2,202915
,3,36262,202910
,3,36260,196455
,3,36244,234750
,2,35551,425
,3,36253,205670
,3,36254,22075
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,22080
,4,3,199050
,4,5,22105
,4,6,24785
,4,8,22135
,4,9,6710
,4,11,22140
,4,12,199055
,4,14,22145
,4,15,199060
,4,18,199065
,4,21,29270
,4,23,22155
,4,24,199070
,4,26,22160
,4,27,199075
,4,29,22165
,4,30,195695
,4,32,199080
,4,33,199085
,4,35,199090
,4,36,199095
,4,38,22170
,0,1023,205685
,0,843,205690
,0,1024,110
,2,35551,425
,3,36254,20390
,3,36255,205695
,6,64,85
,3,36244,12670
,4,1,4220
,0,1023,205700
,0,843,205705
,0,1024,110
,2,35551,425
,3,36254,20390
,3,36255,205710
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,195565
,4,2,199105
,3,36259,430
,3,36261,350
,3,36377,199115
,4,2,199120
,3,36262,199110
,3,36260,199045
,3,36244,234750
,4,1,199115
,4,2,199120
,3,36259,430
,3,36261,350
,3,36377,195565
,4,2,199105
,3,36262,199100
,3,36260,199045
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,199105
,4,2,199130
,3,36262,199125
,3,36260,199045
,3,36244,234750
,4,1,199105
,4,2,199130
,3,36259,430
,3,36261,350
,3,36377,199120
,4,2,199140
,3,36262,199135
,3,36260,199045
,3,36244,234750
,4,1,199120
,4,2,199140
,3,36259,430
,3,36261,350
,3,36377,199130
,4,2,199150
,3,36262,199145
,3,36260,199045
,3,36244,234750
,4,1,199130
,4,2,199150
,3,36259,430
,3,36261,350
,3,36377,199140
,4,2,199160
,3,36262,199155
,3,36260,199045
,3,36244,234750
,4,1,199140
,4,2,199160
,3,36259,430
,3,36261,350
,3,36377,199150
,4,2,199170
,3,36262,199165
,3,36260,199045
,3,36244,234750
,4,1,199150
,4,2,199170
,3,36259,430
,3,36261,350
,3,36377,199160
,4,2,199180
,3,36262,199175
,3,36260,199045
,3,36244,234750
,4,1,199160
,4,2,199180
,3,36259,430
,3,36261,350
,3,36377,199170
,4,2,199190
,3,36262,199185
,3,36260,199045
,3,36244,234750
,4,1,199170
,4,2,199190
,3,36259,430
,3,36261,350
,3,36377,199180
,4,2,199200
,3,36262,199195
,3,36260,199045
,3,36244,234750
,4,1,199180
,4,2,199200
,3,36259,430
,3,36261,350
,3,36377,199190
,4,2,199210
,3,36262,199205
,3,36260,199045
,3,36244,234750
,4,1,199190
,4,2,199210
,3,36259,430
,3,36261,350
,3,36377,199200
,3,36260,199045
,3,36244,234750
,3,36372,200
,3,36373,199330
,3,36372,200
,3,36373,199335
,3,36372,200
,3,36373,199345
,3,36372,16635
,3,36373,205715
,3,36372,16635
,3,36373,205720
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,199295
,4,21,195685
,4,24,199300
,4,27,199305
,4,30,199310
,4,33,29280
,4,36,195705
,4,38,16530
,4,39,199315
,4,41,22825
,4,42,199320
,4,45,199325
,4,47,22885
,4,48,199330
,4,50,22905
,4,51,199335
,4,53,22925
,4,54,199340
,4,56,22940
,4,57,199345
,4,59,22945
,4,60,199350
,4,62,22995
,4,63,199355
,4,65,23000
,4,66,199360
,4,68,23015
,4,69,16635
,4,71,22835
,4,1,12670
,4,2,199370
,3,36259,425
,3,36377,199380
,4,2,199385
,3,36262,199375
,3,36260,199290
,3,36244,234750
,4,1,199380
,4,2,199385
,3,36259,425
,3,36377,12670
,4,2,199370
,3,36262,199365
,3,36260,199290
,3,36244,234750
,3,36259,425
,3,36377,199370
,4,2,199395
,3,36262,199390
,3,36260,199290
,3,36244,234750
,4,1,199370
,4,2,199395
,3,36259,425
,3,36377,199385
,4,2,199405
,3,36262,199400
,3,36260,199290
,3,36244,234750
,4,1,199385
,4,2,199405
,3,36259,425
,3,36377,199395
,4,2,199415
,3,36262,199410
,3,36260,199290
,3,36244,234750
,4,1,199395
,4,2,199415
,3,36259,425
,3,36377,199405
,4,2,199425
,3,36262,199420
,3,36260,199290
,3,36244,234750
,4,1,199405
,4,2,199425
,3,36259,425
,3,36377,199415
,4,2,199440
,3,36262,199435
,3,36260,199290
,3,36244,234750
,2,35551,425
,3,36253,205725
,3,36254,22795
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,22800
,4,1,199415
,4,2,199440
,3,36259,425
,3,36377,199425
,4,2,199450
,3,36262,199445
,3,36260,199290
,3,36244,234750
,4,1,199425
,4,2,199450
,3,36259,425
,3,36377,199440
,4,2,199460
,3,36262,199455
,3,36260,199290
,3,36244,234750
,4,1,199440
,4,2,199460
,3,36259,425
,3,36377,199450
,4,2,199470
,3,36262,199465
,3,36260,199290
,3,36244,234750
,4,1,199450
,4,2,199470
,3,36259,425
,3,36377,199460
,4,2,199480
,3,36262,199475
,3,36260,199290
,3,36244,234750
,4,1,199460
,4,2,199480
,3,36259,425
,3,36377,199470
,4,2,199490
,3,36262,199485
,3,36260,199290
,3,36244,234750
,4,1,199470
,4,2,199490
,3,36259,425
,3,36377,199480
,4,2,199500
,3,36262,199495
,3,36260,199290
,3,36244,234750
,4,1,199480
,4,2,199500
,3,36259,425
,3,36377,199490
,4,2,199610
,3,36262,199605
,3,36260,199290
,3,36244,234750
,4,3,16560
,4,5,22835
,4,6,199510
,4,8,22950
,4,9,16910
,4,11,22955
,4,12,199515
,4,14,22960
,4,2,199525
,3,36259,430
,3,36261,350
,3,36377,199535
,4,2,199540
,3,36262,199530
,3,36260,199505
,3,36244,234750
,4,1,199535
,4,2,199540
,3,36259,430
,3,36261,350
,4,2,199525
,3,36262,199520
,3,36260,199505
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,199525
,4,2,199550
,3,36262,199545
,3,36260,199505
,3,36244,234750
,4,1,199525
,4,2,199550
,3,36259,430
,3,36261,350
,3,36377,199540
,3,36260,199505
,3,36244,234750
,4,2,199560
,4,3,199565
,4,5,22985
,4,6,199570
,4,8,22990
,4,9,199575
,4,11,13555
,4,1,205760
,4,1,195565
,4,2,199585
,3,36259,430
,3,36261,350
,3,36377,199595
,4,2,199600
,3,36262,199590
,3,36260,199555
,3,36244,234750
,4,1,199595
,4,2,199600
,3,36259,430
,3,36261,350
,3,36377,195565
,4,2,199585
,3,36262,199580
,3,36260,199555
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,199585
,3,36260,199555
,3,36244,234750
,4,1,199490
,4,2,199610
,3,36259,425
,3,36377,199500
,4,2,199620
,3,36262,199615
,3,36260,199290
,3,36244,234750
,4,1,199500
,4,2,199620
,3,36259,425
,3,36377,199610
,4,2,199630
,3,36262,199625
,3,36260,199290
,3,36244,234750
,4,1,199610
,4,2,199630
,3,36259,425
,3,36377,199620
,4,2,199645
,3,36262,199640
,3,36260,199290
,3,36244,234750
,4,1,199620
,4,2,199645
,3,36259,425
,3,36377,199630
,3,36260,199290
,3,36244,234750
,4,2,199660
,4,3,23090
,4,6,23040
,4,1,205765
,4,2,205770
,4,2,199670
,3,36259,430
,3,36261,350
,3,36377,199680
,4,2,199685
,3,36262,199675
,3,36260,199655
,3,36244,234750
,4,1,199680
,4,2,199685
,3,36259,430
,3,36261,350
,4,2,199670
,3,36262,199665
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,199670
,3,36260,199655
,3,36244,234750
,3,36372,200
,3,36373,199955
,3,36372,200
,3,36373,199970
,3,36372,200
,3,36373,199975
,3,36372,200
,3,36373,199980
,3,36372,200
,3,36373,201430
,3,36372,200
,3,36373,201465
,3,36372,200
,3,36373,201470
,3,36372,200
,3,36373,201480
,3,36372,200
,3,36373,201515
,3,36372,200
,3,36373,201595
,3,36372,200
,3,36373,201605
,3,36372,200
,3,36373,201625
,3,36372,200
,3,36373,201635
,3,36259,430
,3,36261,350
,3,36377,201380
,3,36260,199950
,3,36244,234750
,4,3,16560
,4,5,24925
,4,6,199955
,4,8,27635
,4,9,199960
,4,11,27760
,4,12,199965
,4,14,27765
,4,15,199970
,4,17,27770
,4,18,199975
,4,20,27775
,4,21,199980
,4,23,27780
,4,24,199985
,4,26,27785
,4,27,199990
,4,29,27790
,4,3,200000
,4,5,24925
,4,6,30145
,4,8,24960
,4,9,200005
,4,11,24995
,4,12,200010
,4,14,25030
,4,15,200015
,4,17,25065
,4,18,200020
,4,20,25100
,4,21,200025
,4,23,25135
,4,24,200030
,4,26,25170
,4,27,200035
,4,29,25205
,4,30,200040
,4,32,25240
,4,33,200045
,4,35,25275
,4,36,28460
,4,38,25310
,4,39,200050
,4,41,25345
,4,42,200055
,4,44,25380
,4,45,7935
,4,47,25415
,4,48,200060
,4,50,25450
,4,51,200065
,4,53,25485
,4,54,200070
,4,56,25520
,4,57,197915
,4,59,25555
,4,60,200075
,4,62,25590
,4,63,200080
,4,65,25625
,4,66,200085
,4,68,25660
,4,69,200090
,4,71,25695
,4,72,200095
,4,74,25730
,4,75,200100
,4,77,25765
,4,78,23665
,4,80,25845
,3,36259,430
,3,36261,350
,3,36260,200110
,3,36244,234750
,4,3,16560
,4,5,24960
,4,1,455
,4,2,200120
,3,36259,430
,3,36261,350
,3,36377,200140
,4,2,200145
,3,36262,200135
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200130
,3,36244,234750
,4,3,16560
,4,5,24995
,4,1,200140
,4,2,200145
,3,36259,430
,3,36261,350
,3,36377,455
,4,2,200120
,3,36262,200115
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,200120
,4,2,200165
,3,36262,200160
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200155
,3,36244,234750
,4,3,16560
,4,5,25030
,4,1,200120
,4,2,200165
,3,36259,430
,3,36261,350
,3,36377,200145
,4,2,200185
,3,36262,200180
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200175
,3,36244,234750
,4,3,16560
,4,5,25065
,4,1,200145
,4,2,200185
,3,36259,430
,3,36261,350
,3,36377,200165
,4,2,200205
,3,36262,200200
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200195
,3,36244,234750
,4,3,16560
,4,5,25100
,4,1,200165
,4,2,200205
,3,36259,430
,3,36261,350
,3,36377,200185
,4,2,200225
,3,36262,200220
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200215
,3,36244,234750
,4,3,16560
,4,5,25135
,4,1,200185
,4,2,200225
,3,36259,430
,3,36261,350
,3,36377,200205
,4,2,200245
,3,36262,200240
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200235
,3,36244,234750
,4,3,16560
,4,5,25170
,4,1,200205
,4,2,200245
,3,36259,430
,3,36261,350
,3,36377,200225
,4,2,200265
,3,36262,200260
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200255
,3,36244,234750
,4,3,16560
,4,5,25205
,4,1,200225
,4,2,200265
,3,36259,430
,3,36261,350
,3,36377,200245
,4,2,200285
,3,36262,200280
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200275
,3,36244,234750
,4,3,16560
,4,5,25240
,4,1,200245
,4,2,200285
,3,36259,430
,3,36261,350
,3,36377,200265
,4,2,200305
,3,36262,200300
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200295
,3,36244,234750
,4,3,16560
,4,5,25275
,4,1,200265
,4,2,200305
,3,36259,430
,3,36261,350
,3,36377,200285
,4,2,200325
,3,36262,200320
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200315
,3,36244,234750
,4,3,16560
,4,5,25310
,4,1,200285
,4,2,200325
,3,36259,430
,3,36261,350
,3,36377,200305
,4,2,200345
,3,36262,200340
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200335
,3,36244,234750
,4,3,16560
,4,5,25345
,4,1,200305
,4,2,200345
,3,36259,430
,3,36261,350
,3,36377,200325
,4,2,200365
,3,36262,200360
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200355
,3,36244,234750
,4,3,16560
,4,5,25380
,4,1,200325
,4,2,200365
,3,36259,430
,3,36261,350
,3,36377,200345
,4,2,200385
,3,36262,200380
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200375
,3,36244,234750
,4,3,16560
,4,5,25415
,4,1,200345
,4,2,200385
,3,36259,430
,3,36261,350
,3,36377,200365
,4,2,200405
,3,36262,200400
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200395
,3,36244,234750
,4,3,16560
,4,5,25450
,4,1,200365
,4,2,200405
,3,36259,430
,3,36261,350
,3,36377,200385
,4,2,200425
,3,36262,200420
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200415
,3,36244,234750
,4,3,16560
,4,5,25485
,4,1,200385
,4,2,200425
,3,36259,430
,3,36261,350
,3,36377,200405
,4,2,200445
,3,36262,200440
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200435
,3,36244,234750
,4,3,16560
,4,5,25520
,4,1,200405
,4,2,200445
,3,36259,430
,3,36261,350
,3,36377,200425
,4,2,200465
,3,36262,200460
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200455
,3,36244,234750
,4,3,16560
,4,5,25555
,4,1,200425
,4,2,200465
,3,36259,430
,3,36261,350
,3,36377,200445
,4,2,200485
,3,36262,200480
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200475
,3,36244,234750
,4,3,16560
,4,5,25590
,4,1,200445
,4,2,200485
,3,36259,430
,3,36261,350
,3,36377,200465
,4,2,200505
,3,36262,200500
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200495
,3,36244,234750
,4,3,16560
,4,5,25625
,4,1,200465
,4,2,200505
,3,36259,430
,3,36261,350
,3,36377,200485
,4,2,200525
,3,36262,200520
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200515
,3,36244,234750
,4,3,16560
,4,5,25660
,4,1,200485
,4,2,200525
,3,36259,430
,3,36261,350
,3,36377,200505
,4,2,200545
,3,36262,200540
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200535
,3,36244,234750
,4,3,16560
,4,5,25695
,4,1,200505
,4,2,200545
,3,36259,430
,3,36261,350
,3,36377,200525
,4,2,200565
,3,36262,200560
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200555
,3,36244,234750
,4,3,16560
,4,5,25730
,4,1,200525
,4,2,200565
,3,36259,430
,3,36261,350
,3,36377,200545
,4,2,200585
,3,36262,200580
,3,36260,199995
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,200575
,3,36244,234750
,4,3,16560
,4,5,25765
,4,1,200545
,4,2,200585
,3,36259,430
,3,36261,350
,3,36377,200565
,4,2,200630
,3,36262,200625
,3,36260,199995
,3,36244,234750
,4,2,23245
,4,3,25805
,4,5,25885
,4,6,25825
,3,36259,430
,3,36261,350
,3,36260,200600
,3,36244,234750
,4,3,16560
,4,5,25865
,3,36259,430
,3,36261,350
,3,36260,200610
,3,36244,234750
,4,3,16560
,4,5,25890
,3,36259,430
,3,36261,350
,3,36260,200620
,3,36244,234750
,4,3,23245
,4,5,25865
,4,6,25885
,4,8,25890
,4,9,16560
,4,11,25845
,4,1,200565
,4,2,200630
,3,36259,430
,3,36261,350
,3,36377,200585
,3,36260,199995
,3,36244,234750
,4,1,195670
,4,2,200640
,3,36259,430
,3,36261,350
,3,36377,197285
,4,2,200650
,3,36262,200645
,3,36260,222045
,3,36244,234750
,4,1,197285
,4,2,200650
,3,36259,430
,3,36261,350
,3,36377,200640
,4,2,203260
,3,36262,203255
,3,36260,222045
,3,36244,234750
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,197710
,4,21,24810
,4,23,26465
,4,24,24815
,4,26,27045
,4,27,27165
,4,29,27470
,4,30,27355
,4,32,27485
,4,33,27540
,4,35,27615
,4,36,24805
,4,38,26455
,4,3,16560
,4,5,26455
,4,6,200665
,4,8,27625
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,26060
,4,20,26460
,4,21,197710
,4,23,26455
,4,24,200730
,4,26,26540
,4,1,12670
,4,2,200740
,3,36259,425
,3,36377,200925
,4,2,200930
,3,36262,200920
,3,36260,200725
,3,36244,234750
,2,828,26455
,2,34615,27625
,2,35551,196135
,3,36315,200750
,3,36244,200755
,3,36259,196135
,3,36261,350
,3,36377,235020
,3,36260,200660
,3,36244,234750
,4,3,16560
,4,5,26465
,4,6,7385
,4,8,26445
,4,9,7420
,4,11,26555
,4,12,200765
,4,14,26560
,4,15,200010
,4,17,26565
,4,18,200770
,4,20,26570
,4,21,200665
,4,23,26575
,4,24,200775
,4,26,26585
,4,27,195980
,4,29,26590
,4,30,21680
,4,32,26590
,4,33,200780
,4,35,26595
,4,36,200785
,4,38,26600
,4,39,195705
,4,41,26605
,2,35551,425
,3,36254,26415
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,26420
,4,2,200800
,3,36259,200745
,3,36261,350
,3,36377,200810
,4,2,200815
,3,36262,200805
,3,36260,200760
,3,36244,234750
,4,1,200810
,4,2,200815
,3,36259,200745
,3,36261,350
,4,2,200800
,3,36262,200795
,3,36260,200760
,3,36244,234750
,3,36259,200745
,3,36261,350
,3,36377,200800
,4,2,200825
,3,36262,200820
,3,36260,200760
,3,36244,234750
,4,1,200800
,4,2,200825
,3,36259,200745
,3,36261,350
,3,36377,200815
,4,2,200835
,3,36262,200830
,3,36260,200760
,3,36244,234750
,4,1,200815
,4,2,200835
,3,36259,200745
,3,36261,350
,3,36377,200825
,4,2,200845
,3,36262,200840
,3,36260,200760
,3,36244,234750
,4,1,200825
,4,2,200845
,3,36259,200745
,3,36261,350
,3,36377,200835
,4,2,200855
,3,36262,200850
,3,36260,200760
,3,36244,234750
,4,1,200835
,4,2,200855
,3,36259,200745
,3,36261,350
,3,36377,200845
,4,2,200865
,3,36262,200860
,3,36260,200760
,3,36244,234750
,4,1,200845
,4,2,200865
,3,36259,200745
,3,36261,350
,3,36377,200855
,4,2,200875
,3,36262,200870
,3,36260,200760
,3,36244,234750
,4,1,200855
,4,2,200875
,3,36259,200745
,3,36261,350
,3,36377,200865
,4,2,200885
,3,36262,200880
,3,36260,200760
,3,36244,234750
,4,1,200865
,4,2,200885
,3,36259,200745
,3,36261,350
,3,36377,200875
,4,2,200895
,3,36262,200890
,3,36260,200760
,3,36244,234750
,4,1,200875
,4,2,200895
,3,36259,200745
,3,36261,350
,3,36377,200885
,4,2,200905
,3,36262,200900
,3,36260,200760
,3,36244,234750
,4,1,200885
,4,2,200905
,3,36259,200745
,3,36261,350
,3,36377,200895
,4,2,200915
,3,36262,200910
,3,36260,200760
,3,36244,234750
,4,1,200895
,4,2,200915
,3,36259,200745
,3,36261,350
,3,36377,200905
,3,36260,200760
,3,36244,234750
,4,1,200925
,4,2,200930
,3,36259,425
,3,36377,12670
,4,2,200740
,3,36262,200735
,3,36260,200725
,3,36244,234750
,3,36259,425
,3,36377,200740
,3,36260,200725
,3,36244,234750
,4,1,12670
,4,2,200940
,3,36259,425
,3,36377,201055
,4,2,201060
,3,36262,201050
,3,36260,200655
,3,36244,234750
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,26655
,4,20,27040
,4,21,197710
,4,23,26455
,4,1,12670
,4,2,200980
,3,36259,425
,3,36377,223840
,3,36260,200970
,3,36244,234750
,4,2,200990
,4,3,16560
,4,5,27045
,4,6,200665
,4,8,27030
,4,9,197915
,4,11,27125
,4,12,200995
,4,14,27130
,4,15,29140
,4,17,27135
,4,1,205830
,2,35551,425
,3,36254,27000
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,27005
,4,2,201010
,3,36259,200745
,3,36261,350
,3,36377,201020
,4,2,201025
,3,36262,201015
,3,36260,200985
,3,36244,234750
,4,1,201020
,4,2,201025
,3,36259,200745
,3,36261,350
,4,2,201010
,3,36262,201005
,3,36260,200985
,3,36244,234750
,3,36259,200745
,3,36261,350
,3,36377,201010
,4,2,201035
,3,36262,201030
,3,36260,200985
,3,36244,234750
,4,1,201010
,4,2,201035
,3,36259,200745
,3,36261,350
,3,36377,201025
,4,2,201045
,3,36262,201040
,3,36260,200985
,3,36244,234750
,4,1,201025
,4,2,201045
,3,36259,200745
,3,36261,350
,3,36377,201035
,3,36260,200985
,3,36244,234750
,4,1,201055
,4,2,201060
,3,36259,425
,3,36377,12670
,4,2,200940
,3,36262,200935
,3,36260,200655
,3,36244,234750
,3,36259,425
,3,36377,200940
,4,2,201125
,3,36262,201120
,3,36260,200655
,3,36244,234750
,2,828,26465
,2,473,26445
,2,563,26555
,2,34627,26560
,2,34596,26565
,2,34628,26570
,2,34615,26575
,2,34629,26585
,2,34333,26590
,2,1068,26590
,2,34630,26595
,2,34631,26600
,2,34320,26605
,2,35551,200745
,3,36315,201075
,3,36244,200915
,4,3,16560
,4,5,27470
,4,6,197915
,4,8,27125
,4,9,200995
,4,11,27130
,4,12,29140
,4,14,27135
,4,2,201090
,3,36259,201070
,3,36261,350
,3,36377,201100
,4,2,201105
,3,36262,201095
,3,36260,201080
,3,36244,234750
,4,1,201100
,4,2,201105
,3,36259,201070
,3,36261,350
,4,2,201090
,3,36262,201085
,3,36260,201080
,3,36244,234750
,3,36259,201070
,3,36261,350
,3,36377,201090
,4,2,201115
,3,36262,201110
,3,36260,201080
,3,36244,234750
,4,1,201090
,4,2,201115
,3,36259,201070
,3,36261,350
,3,36377,201105
,3,36260,201080
,3,36244,234750
,4,1,200940
,4,2,201125
,3,36259,425
,3,36377,201060
,4,2,201230
,3,36262,201225
,3,36260,200655
,3,36244,234750
,2,828,27470
,2,34460,27125
,2,34634,27130
,2,1408,27135
,2,35551,201070
,3,36315,201160
,3,36244,201115
,4,3,16560
,4,5,27485
,4,6,7385
,4,8,27465
,4,9,201170
,4,11,27500
,4,12,200995
,4,14,27505
,4,15,200770
,4,17,27510
,2,35551,425
,3,36254,27435
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,27440
,4,2,201185
,3,36259,201155
,3,36261,350
,3,36377,201195
,4,2,201200
,3,36262,201190
,3,36260,201165
,3,36244,234750
,4,1,201195
,4,2,201200
,3,36259,201155
,3,36261,350
,4,2,201185
,3,36262,201180
,3,36260,201165
,3,36244,234750
,3,36259,201155
,3,36261,350
,3,36377,201185
,4,2,201210
,3,36262,201205
,3,36260,201165
,3,36244,234750
,4,1,201185
,4,2,201210
,3,36259,201155
,3,36261,350
,3,36377,201200
,4,2,201220
,3,36262,201215
,3,36260,201165
,3,36244,234750
,4,1,201200
,4,2,201220
,3,36259,201155
,3,36261,350
,3,36377,201210
,3,36260,201165
,3,36244,234750
,4,1,201060
,4,2,201230
,3,36259,425
,3,36377,201125
,4,2,201280
,3,36262,201275
,3,36260,200655
,3,36244,234750
,2,828,27485
,2,473,27465
,2,34638,27500
,2,34634,27505
,2,34628,27510
,2,35551,201155
,3,36315,201250
,3,36244,201220
,4,3,16560
,4,5,27615
,4,6,201170
,4,8,27610
,2,35551,425
,3,36254,27580
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,27585
,4,2,201270
,3,36259,201245
,3,36261,350
,3,36377,235025
,3,36260,201255
,3,36244,234750
,4,1,201125
,4,2,201280
,3,36259,425
,3,36377,201230
,4,2,201290
,3,36262,201285
,3,36260,200655
,3,36244,234750
,4,1,201230
,4,2,201290
,3,36259,425
,3,36377,201280
,3,36260,200655
,3,36244,234750
,2,35551,425
,3,36254,26005
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,26010
,4,2,200755
,2,35551,425
,3,36253,205835
,3,36254,24885
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,24890
,4,2,201315
,3,36259,430
,3,36261,350
,3,36377,201325
,4,2,201330
,3,36262,201320
,3,36260,199950
,3,36244,234750
,4,1,201325
,4,2,201330
,3,36259,430
,3,36261,350
,4,2,201315
,3,36262,201310
,3,36260,199950
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,201315
,4,2,201340
,3,36262,201335
,3,36260,199950
,3,36244,234750
,4,1,201315
,4,2,201340
,3,36259,430
,3,36261,350
,3,36377,201330
,4,2,201350
,3,36262,201345
,3,36260,199950
,3,36244,234750
,4,1,201330
,4,2,201350
,3,36259,430
,3,36261,350
,3,36377,201340
,4,2,201360
,3,36262,201355
,3,36260,199950
,3,36244,234750
,4,1,201340
,4,2,201360
,3,36259,430
,3,36261,350
,3,36377,201350
,4,2,201370
,3,36262,201365
,3,36260,199950
,3,36244,234750
,4,1,201350
,4,2,201370
,3,36259,430
,3,36261,350
,3,36377,201360
,4,2,201380
,3,36262,201375
,3,36260,199950
,3,36244,234750
,4,1,201360
,4,2,201380
,3,36259,430
,3,36261,350
,3,36377,201370
,4,2,199945
,3,36262,201385
,3,36260,199950
,3,36244,234750
,4,1,201370
,4,2,199945
,4,3,20520
,4,6,16550
,4,2,201400
,3,36259,430
,3,36261,350
,3,36377,201410
,4,2,201415
,3,36262,201405
,3,36260,201390
,3,36244,234750
,4,1,201410
,4,2,201415
,3,36259,430
,3,36261,350
,4,2,201400
,3,36262,201395
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,201400
,3,36260,201390
,3,36244,234750
,4,3,200000
,4,5,24925
,4,6,195695
,4,8,27795
,4,9,199085
,4,11,27800
,4,12,201425
,4,14,27805
,4,15,201430
,4,17,27815
,4,18,201435
,4,20,27680
,4,21,30145
,4,23,27860
,4,24,201440
,4,26,27865
,4,27,200005
,4,29,27870
,4,30,201445
,4,32,27875
,4,33,200010
,4,35,27880
,4,36,201450
,4,38,27885
,4,39,197915
,4,41,27895
,4,42,201455
,4,44,27900
,4,45,200025
,4,47,27905
,4,48,201460
,4,50,27910
,4,51,19230
,4,53,27915
,4,54,201465
,4,56,27920
,4,57,200030
,4,59,27925
,4,60,201470
,4,62,27930
,4,63,200035
,4,65,27935
,4,66,201475
,4,68,27940
,4,69,200015
,4,71,27945
,4,72,201480
,4,74,27950
,4,75,200020
,4,77,27955
,4,78,201485
,4,80,27960
,4,81,200040
,4,83,27965
,4,84,201490
,4,86,27970
,4,87,200045
,4,89,27975
,4,90,201495
,4,92,27980
,4,93,200055
,4,95,27985
,4,96,200050
,4,98,27990
,4,99,28460
,4,101,27995
,4,102,201500
,4,104,28000
,4,105,201505
,4,107,28005
,4,108,201510
,4,110,28010
,4,111,200065
,4,113,28015
,4,114,201515
,4,116,28020
,4,117,200060
,4,119,28025
,4,120,201520
,4,122,28030
,4,123,7935
,4,125,28035
,4,126,201525
,4,128,28040
,4,129,200070
,4,131,28045
,4,132,201530
,4,134,28050
,4,135,200080
,4,137,28055
,4,138,201535
,4,140,28060
,4,141,201540
,4,143,28065
,4,144,201545
,4,146,28070
,4,147,200075
,4,149,28075
,4,150,201550
,4,152,28080
,4,153,201555
,4,155,28085
,4,156,201560
,4,158,28090
,4,159,200090
,4,161,28095
,4,162,201565
,4,164,28100
,4,165,200085
,4,167,28105
,4,168,201570
,4,170,28110
,4,171,201575
,4,173,27695
,4,174,200095
,4,176,28115
,4,177,201580
,4,179,28120
,4,180,200100
,4,182,28125
,4,183,201585
,4,185,28130
,4,186,201590
,4,188,28135
,4,189,201595
,4,191,28145
,4,192,201600
,4,194,28155
,4,195,201605
,4,197,28165
,4,198,201610
,4,200,28185
,4,201,201615
,4,203,28205
,4,204,201620
,4,206,28215
,4,207,24595
,4,209,28220
,4,210,24615
,4,212,28240
,4,213,201625
,4,215,28250
,4,216,23695
,4,218,27745
,4,219,201630
,4,221,27745
,4,222,201635
,4,224,28275
,4,225,23705
,4,227,27750
,4,228,201640
,4,230,27750
,4,231,23715
,4,233,201645
,0,972,20250
,0,1265,22110
,0,1266,27640
,0,1267,27645
,0,1151,27650
,0,1268,26455
,0,831,26450
,0,1269,26465
,0,1270,27045
,0,1073,110
,0,1280,85
,0,1154,27655
,0,1155,27660
,0,1156,27665
,0,1157,27670
,0,1158,27675
,0,1159,27680
,0,1160,27685
,0,1161,27690
,0,1162,27695
,0,1163,27700
,0,797,27705
,0,1164,27710
,0,1165,27715
,0,1281,27720
,0,1166,27725
,0,1282,27730
,0,1283,27735
,0,928,85
,0,1167,27740
,0,1168,27745
,0,1061,27750
,2,34458,26455
,2,35551,425
,2,34299,205915
,3,36254,23710
,3,36255,27755
,6,64,85
,3,36315,205920
,3,36244,201055
,4,1,4220
,4,2,201655
,3,36259,430
,3,36261,350
,3,36377,201665
,4,2,201670
,3,36262,201660
,3,36260,201420
,3,36244,234750
,4,1,201665
,4,2,201670
,3,36259,430
,3,36261,350
,4,2,201655
,3,36262,201650
,3,36260,201420
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,201655
,4,2,201680
,3,36262,201675
,3,36260,201420
,3,36244,234750
,4,1,201655
,4,2,201680
,3,36259,430
,3,36261,350
,3,36377,201670
,4,2,201690
,3,36262,201685
,3,36260,201420
,3,36244,234750
,4,1,201670
,4,2,201690
,3,36259,430
,3,36261,350
,3,36377,201680
,4,2,201700
,3,36262,201695
,3,36260,201420
,3,36244,234750
,4,1,201680
,4,2,201700
,3,36259,430
,3,36261,350
,3,36377,201690
,4,2,201710
,3,36262,201705
,3,36260,201420
,3,36244,234750
,4,1,201690
,4,2,201710
,3,36259,430
,3,36261,350
,3,36377,201700
,4,2,201720
,3,36262,201715
,3,36260,201420
,3,36244,234750
,4,1,201700
,4,2,201720
,3,36259,430
,3,36261,350
,3,36377,201710
,4,2,201730
,3,36262,201725
,3,36260,201420
,3,36244,234750
,4,1,201710
,4,2,201730
,3,36259,430
,3,36261,350
,3,36377,201720
,4,2,201740
,3,36262,201735
,3,36260,201420
,3,36244,234750
,4,1,201720
,4,2,201740
,3,36259,430
,3,36261,350
,3,36377,201730
,4,2,201750
,3,36262,201745
,3,36260,201420
,3,36244,234750
,4,1,201730
,4,2,201750
,3,36259,430
,3,36261,350
,3,36377,201740
,4,2,201760
,3,36262,201755
,3,36260,201420
,3,36244,234750
,4,1,201740
,4,2,201760
,3,36259,430
,3,36261,350
,3,36377,201750
,4,2,201770
,3,36262,201765
,3,36260,201420
,3,36244,234750
,4,1,201750
,4,2,201770
,3,36259,430
,3,36261,350
,3,36377,201760
,4,2,201780
,3,36262,201775
,3,36260,201420
,3,36244,234750
,4,1,201760
,4,2,201780
,3,36259,430
,3,36261,350
,3,36377,201770
,4,2,201790
,3,36262,201785
,3,36260,201420
,3,36244,234750
,4,1,201770
,4,2,201790
,3,36259,430
,3,36261,350
,3,36377,201780
,4,2,201800
,3,36262,201795
,3,36260,201420
,3,36244,234750
,4,1,201780
,4,2,201800
,3,36259,430
,3,36261,350
,3,36377,201790
,4,2,201810
,3,36262,201805
,3,36260,201420
,3,36244,234750
,4,1,201790
,4,2,201810
,3,36259,430
,3,36261,350
,3,36377,201800
,4,2,201820
,3,36262,201815
,3,36260,201420
,3,36244,234750
,4,1,201800
,4,2,201820
,3,36259,430
,3,36261,350
,3,36377,201810
,4,2,201830
,3,36262,201825
,3,36260,201420
,3,36244,234750
,4,1,201810
,4,2,201830
,3,36259,430
,3,36261,350
,3,36377,201820
,4,2,201840
,3,36262,201835
,3,36260,201420
,3,36244,234750
,4,1,201820
,4,2,201840
,3,36259,430
,3,36261,350
,3,36377,201830
,4,2,201850
,3,36262,201845
,3,36260,201420
,3,36244,234750
,4,1,201830
,4,2,201850
,3,36259,430
,3,36261,350
,3,36377,201840
,4,2,201860
,3,36262,201855
,3,36260,201420
,3,36244,234750
,4,1,201840
,4,2,201860
,3,36259,430
,3,36261,350
,3,36377,201850
,4,2,201870
,3,36262,201865
,3,36260,201420
,3,36244,234750
,4,1,201850
,4,2,201870
,3,36259,430
,3,36261,350
,3,36377,201860
,4,2,201880
,3,36262,201875
,3,36260,201420
,3,36244,234750
,4,1,201860
,4,2,201880
,3,36259,430
,3,36261,350
,3,36377,201870
,4,2,201890
,3,36262,201885
,3,36260,201420
,3,36244,234750
,4,1,201870
,4,2,201890
,3,36259,430
,3,36261,350
,3,36377,201880
,4,2,201900
,3,36262,201895
,3,36260,201420
,3,36244,234750
,4,1,201880
,4,2,201900
,3,36259,430
,3,36261,350
,3,36377,201890
,4,2,201910
,3,36262,201905
,3,36260,201420
,3,36244,234750
,4,1,201890
,4,2,201910
,3,36259,430
,3,36261,350
,3,36377,201900
,4,2,201920
,3,36262,201915
,3,36260,201420
,3,36244,234750
,4,1,201900
,4,2,201920
,3,36259,430
,3,36261,350
,3,36377,201910
,4,2,201930
,3,36262,201925
,3,36260,201420
,3,36244,234750
,4,1,201910
,4,2,201930
,3,36259,430
,3,36261,350
,3,36377,201920
,4,2,201940
,3,36262,201935
,3,36260,201420
,3,36244,234750
,4,1,201920
,4,2,201940
,3,36259,430
,3,36261,350
,3,36377,201930
,4,2,201950
,3,36262,201945
,3,36260,201420
,3,36244,234750
,4,1,201930
,4,2,201950
,3,36259,430
,3,36261,350
,3,36377,201940
,4,2,201960
,3,36262,201955
,3,36260,201420
,3,36244,234750
,4,1,201940
,4,2,201960
,3,36259,430
,3,36261,350
,3,36377,201950
,4,2,201970
,3,36262,201965
,3,36260,201420
,3,36244,234750
,4,1,201950
,4,2,201970
,3,36259,430
,3,36261,350
,3,36377,201960
,4,2,201980
,3,36262,201975
,3,36260,201420
,3,36244,234750
,4,1,201960
,4,2,201980
,3,36259,430
,3,36261,350
,3,36377,201970
,4,2,201990
,3,36262,201985
,3,36260,201420
,3,36244,234750
,4,1,201970
,4,2,201990
,3,36259,430
,3,36261,350
,3,36377,201980
,4,2,202000
,3,36262,201995
,3,36260,201420
,3,36244,234750
,4,1,201980
,4,2,202000
,3,36259,430
,3,36261,350
,3,36377,201990
,4,2,202010
,3,36262,202005
,3,36260,201420
,3,36244,234750
,4,1,201990
,4,2,202010
,3,36259,430
,3,36261,350
,3,36377,202000
,4,2,202020
,3,36262,202015
,3,36260,201420
,3,36244,234750
,4,1,202000
,4,2,202020
,3,36259,430
,3,36261,350
,3,36377,202010
,4,2,202030
,3,36262,202025
,3,36260,201420
,3,36244,234750
,4,1,202010
,4,2,202030
,3,36259,430
,3,36261,350
,3,36377,202020
,4,2,202040
,3,36262,202035
,3,36260,201420
,3,36244,234750
,4,1,202020
,4,2,202040
,3,36259,430
,3,36261,350
,3,36377,202030
,4,2,202050
,3,36262,202045
,3,36260,201420
,3,36244,234750
,4,1,202030
,4,2,202050
,3,36259,430
,3,36261,350
,3,36377,202040
,4,2,202060
,3,36262,202055
,3,36260,201420
,3,36244,234750
,4,1,202040
,4,2,202060
,3,36259,430
,3,36261,350
,3,36377,202050
,4,2,202070
,3,36262,202065
,3,36260,201420
,3,36244,234750
,4,1,202050
,4,2,202070
,3,36259,430
,3,36261,350
,3,36377,202060
,4,2,202080
,3,36262,202075
,3,36260,201420
,3,36244,234750
,4,1,202060
,4,2,202080
,3,36259,430
,3,36261,350
,3,36377,202070
,4,2,202090
,3,36262,202085
,3,36260,201420
,3,36244,234750
,4,1,202070
,4,2,202090
,3,36259,430
,3,36261,350
,3,36377,202080
,4,2,202100
,3,36262,202095
,3,36260,201420
,3,36244,234750
,4,1,202080
,4,2,202100
,3,36259,430
,3,36261,350
,3,36377,202090
,4,2,202110
,3,36262,202105
,3,36260,201420
,3,36244,234750
,4,1,202090
,4,2,202110
,3,36259,430
,3,36261,350
,3,36377,202100
,4,2,202120
,3,36262,202115
,3,36260,201420
,3,36244,234750
,4,1,202100
,4,2,202120
,3,36259,430
,3,36261,350
,3,36377,202110
,4,2,202130
,3,36262,202125
,3,36260,201420
,3,36244,234750
,4,1,202110
,4,2,202130
,3,36259,430
,3,36261,350
,3,36377,202120
,4,2,202140
,3,36262,202135
,3,36260,201420
,3,36244,234750
,4,1,202120
,4,2,202140
,3,36259,430
,3,36261,350
,3,36377,202130
,4,2,202150
,3,36262,202145
,3,36260,201420
,3,36244,234750
,4,1,202130
,4,2,202150
,3,36259,430
,3,36261,350
,3,36377,202140
,4,2,202160
,3,36262,202155
,3,36260,201420
,3,36244,234750
,4,1,202140
,4,2,202160
,3,36259,430
,3,36261,350
,3,36377,202150
,4,2,202170
,3,36262,202165
,3,36260,201420
,3,36244,234750
,4,1,202150
,4,2,202170
,3,36259,430
,3,36261,350
,3,36377,202160
,4,2,202180
,3,36262,202175
,3,36260,201420
,3,36244,234750
,4,1,202160
,4,2,202180
,3,36259,430
,3,36261,350
,3,36377,202170
,4,2,202190
,3,36262,202185
,3,36260,201420
,3,36244,234750
,4,1,202170
,4,2,202190
,3,36259,430
,3,36261,350
,3,36377,202180
,4,2,202200
,3,36262,202195
,3,36260,201420
,3,36244,234750
,4,1,202180
,4,2,202200
,3,36259,430
,3,36261,350
,3,36377,202190
,4,2,202210
,3,36262,202205
,3,36260,201420
,3,36244,234750
,4,1,202190
,4,2,202210
,3,36259,430
,3,36261,350
,3,36377,202200
,4,2,202220
,3,36262,202215
,3,36260,201420
,3,36244,234750
,4,1,202200
,4,2,202220
,3,36259,430
,3,36261,350
,3,36377,202210
,4,2,202230
,3,36262,202225
,3,36260,201420
,3,36244,234750
,4,1,202210
,4,2,202230
,3,36259,430
,3,36261,350
,3,36377,202220
,4,2,202240
,3,36262,202235
,3,36260,201420
,3,36244,234750
,4,1,202220
,4,2,202240
,3,36259,430
,3,36261,350
,3,36377,202230
,4,2,202280
,3,36262,202275
,3,36260,201420
,3,36244,234750
,4,3,16560
,4,5,27710
,4,6,23245
,4,8,28175
,4,9,30145
,4,11,28180
,4,2,202255
,3,36259,196135
,3,36261,350
,3,36377,202265
,4,2,202270
,3,36262,202260
,3,36260,202245
,3,36244,234750
,4,1,202265
,4,2,202270
,3,36259,196135
,3,36261,350
,4,2,202255
,3,36262,202250
,3,36260,202245
,3,36244,234750
,3,36259,196135
,3,36261,350
,3,36377,202255
,3,36260,202245
,3,36244,234750
,4,1,202230
,4,2,202280
,3,36259,430
,3,36261,350
,3,36377,202240
,4,2,202320
,3,36262,202315
,3,36260,201420
,3,36244,234750
,4,3,16560
,4,5,27715
,4,6,23245
,4,8,28195
,4,9,25885
,4,11,28200
,4,2,202295
,3,36259,196135
,3,36261,350
,3,36377,202305
,4,2,202310
,3,36262,202300
,3,36260,202285
,3,36244,234750
,4,1,202305
,4,2,202310
,3,36259,196135
,3,36261,350
,4,2,202295
,3,36262,202290
,3,36260,202285
,3,36244,234750
,3,36259,196135
,3,36261,350
,3,36377,202295
,3,36260,202285
,3,36244,234750
,4,1,202240
,4,2,202320
,3,36259,430
,3,36261,350
,3,36377,202280
,4,2,202330
,3,36262,202325
,3,36260,201420
,3,36244,234750
,4,1,202280
,4,2,202330
,3,36259,430
,3,36261,350
,3,36377,202320
,4,2,202340
,3,36262,202335
,3,36260,201420
,3,36244,234750
,4,1,202320
,4,2,202340
,3,36259,430
,3,36261,350
,3,36377,202330
,4,2,202350
,3,36262,202345
,3,36260,201420
,3,36244,234750
,4,1,202330
,4,2,202350
,3,36259,430
,3,36261,350
,3,36377,202340
,4,2,202360
,3,36262,202355
,3,36260,201420
,3,36244,234750
,4,1,202340
,4,2,202360
,3,36259,430
,3,36261,350
,3,36377,202350
,4,2,202380
,3,36262,202375
,3,36260,201420
,3,36244,234750
,4,3,16560
,4,5,27745
,4,6,200005
,4,8,28255
,4,9,200770
,4,11,28260
,4,12,202370
,4,14,28265
,4,15,30145
,4,17,28270
,4,1,202350
,4,2,202380
,3,36259,430
,3,36261,350
,3,36377,202360
,4,2,202390
,3,36262,202385
,3,36260,201420
,3,36244,234750
,4,1,202360
,4,2,202390
,3,36259,430
,3,36261,350
,3,36377,202380
,4,2,202445
,3,36262,202440
,3,36260,201420
,3,36244,234750
,4,2,202400
,3,36259,201070
,3,36261,350
,3,36377,202410
,4,2,202415
,3,36262,202405
,3,36260,202365
,3,36244,234750
,4,1,202410
,4,2,202415
,3,36259,201070
,3,36261,350
,4,2,202400
,3,36262,202395
,3,36260,202365
,3,36244,234750
,3,36259,201070
,3,36261,350
,3,36377,202400
,4,2,202425
,3,36262,202420
,3,36260,202365
,3,36244,234750
,4,1,202400
,4,2,202425
,3,36259,201070
,3,36261,350
,3,36377,202415
,4,2,202435
,3,36262,202430
,3,36260,202365
,3,36244,234750
,4,1,202415
,4,2,202435
,3,36259,201070
,3,36261,350
,3,36377,202425
,3,36260,202365
,3,36244,234750
,4,1,202380
,4,2,202445
,3,36259,430
,3,36261,350
,3,36377,202390
,4,2,202475
,3,36262,202470
,3,36260,201420
,3,36244,234750
,2,828,27045
,2,34615,27030
,2,34460,27125
,2,34634,27130
,2,1408,27135
,2,35551,200745
,3,36315,202455
,3,36244,201045
,4,3,16560
,4,5,27750
,4,6,200005
,4,8,28280
,4,9,200995
,4,11,28285
,4,12,202370
,4,14,28265
,4,15,30145
,4,17,28270
,4,18,202465
,4,20,27135
,4,1,202390
,4,2,202475
,3,36259,430
,3,36261,350
,3,36377,202445
,4,2,202485
,3,36262,202480
,3,36260,201420
,3,36244,234750
,4,1,202445
,4,2,202485
,3,36259,430
,3,36261,350
,3,36377,202475
,4,2,202555
,3,36262,202550
,3,36260,201420
,3,36244,234750
,4,2,202495
,3,36259,202450
,3,36261,350
,3,36377,202505
,4,2,202510
,3,36262,202500
,3,36260,202460
,3,36244,234750
,4,1,202505
,4,2,202510
,3,36259,202450
,3,36261,350
,4,2,202495
,3,36262,202490
,3,36260,202460
,3,36244,234750
,3,36259,202450
,3,36261,350
,3,36377,202495
,4,2,202520
,3,36262,202515
,3,36260,202460
,3,36244,234750
,4,1,202495
,4,2,202520
,3,36259,202450
,3,36261,350
,3,36377,202510
,4,2,202530
,3,36262,202525
,3,36260,202460
,3,36244,234750
,4,1,202510
,4,2,202530
,3,36259,202450
,3,36261,350
,3,36377,202520
,4,2,202540
,3,36262,202535
,3,36260,202460
,3,36244,234750
,4,1,202520
,4,2,202540
,3,36259,202450
,3,36261,350
,3,36377,202530
,3,36260,202460
,3,36244,234750
,4,3,16560
,4,5,201645
,4,6,197915
,4,8,28290
,4,9,29140
,4,11,28295
,4,12,202370
,4,14,28300
,4,15,202465
,4,17,28300
,4,1,202475
,4,2,202555
,3,36259,430
,3,36261,350
,3,36377,202485
,3,36260,201420
,3,36244,234750
,4,2,202565
,3,36259,200745
,3,36261,350
,3,36377,202575
,4,2,202580
,3,36262,202570
,3,36260,202545
,3,36244,234750
,4,1,202575
,4,2,202580
,3,36259,200745
,3,36261,350
,4,2,202565
,3,36262,202560
,3,36260,202545
,3,36244,234750
,3,36259,200745
,3,36261,350
,3,36377,202565
,4,2,202590
,3,36262,202585
,3,36260,202545
,3,36244,234750
,4,1,202565
,4,2,202590
,3,36259,200745
,3,36261,350
,3,36377,202580
,4,2,202600
,3,36262,202595
,3,36260,202545
,3,36244,234750
,4,1,202580
,4,2,202600
,3,36259,200745
,3,36261,350
,3,36377,202590
,3,36260,202545
,3,36244,234750
,4,3,202610
,4,6,28945
,4,9,202615
,4,12,202620
,4,15,202625
,4,18,202630
,4,21,202635
,4,24,202640
,4,27,28850
,4,30,202645
,4,33,202650
,4,36,202655
,4,39,202660
,4,2,202670
,3,36259,24930
,3,36261,24925
,3,36377,24935
,4,2,202680
,3,36262,202675
,3,36260,202605
,3,36244,234750
,4,1,24935
,4,2,202680
,3,36259,24930
,3,36261,24925
,3,36377,202670
,4,2,202690
,3,36262,202685
,3,36260,202605
,3,36244,234750
,4,1,202670
,4,2,202690
,3,36259,24930
,3,36261,24925
,3,36377,202680
,4,2,202700
,3,36262,202695
,3,36260,202605
,3,36244,234750
,4,1,202680
,4,2,202700
,3,36259,24930
,3,36261,24925
,3,36377,202690
,4,2,202710
,3,36262,202705
,3,36260,202605
,3,36244,234750
,4,1,202690
,4,2,202710
,3,36259,24930
,3,36261,24925
,3,36377,202700
,4,2,202720
,3,36262,202715
,3,36260,202605
,3,36244,234750
,4,1,202700
,4,2,202720
,3,36259,24930
,3,36261,24925
,3,36377,202710
,4,2,202730
,3,36262,202725
,3,36260,202605
,3,36244,234750
,4,1,202710
,4,2,202730
,3,36259,24930
,3,36261,24925
,3,36377,202720
,4,2,202740
,3,36262,202735
,3,36260,202605
,3,36244,234750
,4,1,202720
,4,2,202740
,3,36259,24930
,3,36261,24925
,3,36377,202730
,4,2,202750
,3,36262,202745
,3,36260,202605
,3,36244,234750
,4,1,202730
,4,2,202750
,3,36259,24930
,3,36261,24925
,3,36377,202740
,4,2,202760
,3,36262,202755
,3,36260,202605
,3,36244,234750
,4,1,202740
,4,2,202760
,3,36259,24930
,3,36261,24925
,3,36377,202750
,4,2,202770
,3,36262,202765
,3,36260,202605
,3,36244,234750
,4,1,202750
,4,2,202770
,3,36259,24930
,3,36261,24925
,3,36377,202760
,4,2,202780
,3,36262,202775
,3,36260,202605
,3,36244,234750
,4,1,202760
,4,2,202780
,3,36259,24930
,3,36261,24925
,3,36377,202770
,4,2,202790
,3,36262,202785
,3,36260,202605
,3,36244,234750
,4,1,202770
,4,2,202790
,3,36259,24930
,3,36261,24925
,3,36377,202780
,3,36260,202605
,3,36244,234750
,2,828,22835
,2,34542,22950
,2,856,22955
,2,34543,22960
,2,35551,430
,3,36315,202800
,3,36244,199550
,2,34993,207500
,2,1419,204595
,2,35551,430
,3,36315,207505
,3,36244,198790
,2,35034,29310
,2,35035,207510
,2,35551,430
,3,36315,207515
,3,36244,198790
,2,34544,22985
,2,34545,22990
,2,34546,13555
,2,35551,430
,3,36244,199600
,1,0,205730
,1,1,205735
,1,2,205740
,2,35551,1070
,3,36314,207520
,3,36244,198805
,2,34993,207510
,2,34994,207525
,2,34995,207530
,2,34996,207535
,2,34997,207540
,2,34998,207545
,2,34999,207550
,2,35000,207555
,2,34828,207560
,2,1419,29310
,2,35001,207565
,2,35002,207570
,2,35003,207575
,2,35004,207580
,2,35551,430
,3,36315,207585
,3,36244,198790
,4,1,560
,4,2,205925
,4,3,205930
,4,2,202805
,4,3,202810
,4,4,202815
,4,5,202820
,4,6,195835
,4,7,202825
,4,3,16680
,4,6,16905
,4,9,23095
,4,12,23105
,4,15,195860
,4,18,202845
,4,21,23040
,4,2,202855
,3,36259,202795
,3,36261,22835
,3,36377,22355
,4,2,202865
,3,36262,202860
,3,36260,202840
,3,36244,234750
,4,1,22355
,4,2,202865
,3,36259,202795
,3,36261,22835
,3,36377,202855
,4,2,202875
,3,36262,202870
,3,36260,202840
,3,36244,234750
,4,1,202855
,4,2,202875
,3,36259,202795
,3,36261,22835
,3,36377,202865
,4,2,202885
,3,36262,202880
,3,36260,202840
,3,36244,234750
,4,1,202865
,4,2,202885
,3,36259,202795
,3,36261,22835
,3,36377,202875
,4,2,202895
,3,36262,202890
,3,36260,202840
,3,36244,234750
,4,1,202875
,4,2,202895
,3,36259,202795
,3,36261,22835
,3,36377,202885
,4,2,202905
,3,36262,202900
,3,36260,202840
,3,36244,234750
,4,1,202885
,4,2,202905
,3,36259,202795
,3,36261,22835
,3,36377,202895
,4,2,202935
,3,36262,202930
,3,36260,202840
,3,36244,234750
,4,1,198970
,4,2,202915
,3,36259,196440
,3,36261,12660
,3,36377,198980
,3,36260,196455
,3,36244,234750
,4,2,202920
,4,4,204505
,4,1,202895
,4,2,202935
,3,36259,202795
,3,36261,22835
,3,36377,202905
,3,36260,202840
,3,36244,234750
,4,3,28785
,4,6,28790
,4,2,202950
,3,36259,430
,3,36261,350
,3,36377,202960
,4,2,202965
,3,36262,202955
,3,36260,202940
,3,36244,234750
,4,1,202960
,4,2,202965
,3,36259,430
,3,36261,350
,4,2,202950
,3,36262,202945
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,202950
,3,36260,202940
,3,36244,234750
,4,3,21455
,4,6,23095
,4,9,29040
,4,2,202980
,3,36259,197195
,3,36261,950
,3,36377,17455
,4,2,203000
,3,36262,202995
,3,36260,202970
,3,36244,234750
,4,1,198075
,4,2,202990
,3,36259,18540
,3,36261,18525
,3,36377,198095
,3,36260,198080
,3,36244,234750
,4,1,17455
,4,2,203000
,3,36259,197195
,3,36261,950
,3,36377,202980
,4,2,203010
,3,36262,203005
,3,36260,202970
,3,36244,234750
,4,1,202980
,4,2,203010
,3,36259,197195
,3,36261,950
,3,36377,203000
,4,2,203020
,3,36262,203015
,3,36260,202970
,3,36244,234750
,4,1,203000
,4,2,203020
,3,36259,197195
,3,36261,950
,3,36377,203010
,3,36260,202970
,3,36244,234750
,3,36372,320
,3,36373,205935
,3,36372,200
,3,36373,205940
,4,2,203045
,4,6,204470
,4,3,17655
,4,2,203065
,3,36259,430
,3,36261,350
,3,36377,204280
,3,36260,203055
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,203080
,3,36244,234750
,4,3,16560
,4,5,29565
,4,3,203090
,4,5,29565
,3,36372,200
,3,36373,203375
,3,36372,200
,3,36373,203385
,3,36372,200
,3,36373,203390
,3,36372,200
,3,36373,203395
,3,36372,200
,3,36373,203400
,4,2,30145
,4,3,29995
,4,5,30170
,4,6,30015
,4,8,30195
,4,9,30030
,4,11,23245
,4,12,30045
,4,14,25885
,4,15,30060
,4,17,30260
,4,18,30075
,4,20,30285
,4,21,30090
,4,23,30310
,4,24,30105
,3,36259,430
,3,36261,350
,3,36260,203165
,3,36244,234750
,4,3,16560
,4,5,30150
,3,36259,430
,3,36261,350
,3,36260,203175
,3,36244,234750
,4,3,16560
,4,5,30175
,3,36259,430
,3,36261,350
,3,36260,203185
,3,36244,234750
,4,3,16560
,4,5,30200
,3,36259,430
,3,36261,350
,3,36260,203195
,3,36244,234750
,4,3,16560
,4,5,30220
,3,36259,430
,3,36261,350
,3,36260,203205
,3,36244,234750
,4,3,16560
,4,5,30240
,3,36259,430
,3,36261,350
,3,36260,203215
,3,36244,234750
,4,3,16560
,4,5,30265
,3,36259,430
,3,36261,350
,3,36260,203225
,3,36244,234750
,4,3,16560
,4,5,30290
,3,36259,430
,3,36261,350
,3,36260,203235
,3,36244,234750
,4,3,16560
,4,5,30315
,3,36259,430
,3,36261,350
,3,36260,203245
,3,36244,234750
,4,3,30145
,4,5,30150
,4,6,30170
,4,8,30175
,4,9,30195
,4,11,30200
,4,12,23245
,4,14,30220
,4,15,25885
,4,17,30240
,4,18,30260
,4,20,30265
,4,21,30285
,4,23,30290
,4,24,30310
,4,26,30315
,4,27,16560
,4,29,30125
,4,3,29900
,4,5,30125
,4,1,200640
,4,2,203260
,3,36259,430
,3,36261,350
,3,36377,200650
,4,2,222055
,3,36262,222050
,3,36260,222045
,3,36244,234750
,4,3,30355
,4,5,203270
,4,6,30375
,4,8,203275
,4,9,7400
,4,11,203280
,4,12,30400
,4,14,195145
,4,15,30420
,4,17,203285
,4,18,30440
,4,20,203290
,0,1467,195145
,2,35551,425
,3,36254,30350
,3,36255,203725
,6,64,85
,3,36244,12670
,4,1,30360
,0,1467,195145
,2,35551,425
,3,36254,30370
,3,36255,203725
,6,64,85
,3,36244,12670
,4,1,204075
,0,1467,195145
,2,35551,425
,3,36254,30390
,3,36255,203725
,6,64,85
,3,36244,12670
,4,1,4220
,0,1467,195145
,2,35551,425
,3,36254,30415
,3,36255,203725
,6,64,30560
,3,36244,12670
,4,1,204065
,0,1467,195145
,2,35551,425
,3,36254,30435
,3,36255,203725
,6,64,195145
,3,36244,12670
,4,1,204070
,4,1,195565
,4,2,203300
,3,36259,430
,3,36261,350
,3,36377,203310
,4,2,203315
,3,36262,203305
,3,36260,203265
,3,36244,234750
,4,1,203310
,4,2,203315
,3,36259,430
,3,36261,350
,3,36377,195565
,4,2,203300
,3,36262,203295
,3,36260,203265
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,203300
,4,2,203325
,3,36262,203320
,3,36260,203265
,3,36244,234750
,4,1,203300
,4,2,203325
,3,36259,430
,3,36261,350
,3,36377,203315
,4,2,203335
,3,36262,203330
,3,36260,203265
,3,36244,234750
,4,1,203315
,4,2,203335
,3,36259,430
,3,36261,350
,3,36377,203325
,4,2,203345
,3,36262,203340
,3,36260,203265
,3,36244,234750
,4,1,203325
,4,2,203345
,3,36259,430
,3,36261,350
,3,36377,203335
,3,36260,203265
,3,36244,234750
,2,35551,425
,3,36253,205960
,3,36254,29940
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,29945
,4,3,29920
,4,5,30495
,4,6,203360
,4,8,30555
,4,9,203365
,4,11,30560
,4,12,203370
,4,14,30570
,4,15,203375
,4,17,30575
,4,18,203380
,4,20,30580
,4,21,203385
,4,23,30585
,4,24,203390
,4,26,30615
,4,27,203395
,4,29,30625
,4,30,203400
,4,32,30630
,4,1,195565
,4,2,203410
,3,36259,430
,3,36261,350
,3,36377,203420
,4,2,203425
,3,36262,203415
,3,36260,203355
,3,36244,234750
,4,1,203420
,4,2,203425
,3,36259,430
,3,36261,350
,3,36377,195565
,4,2,203410
,3,36262,203405
,3,36260,203355
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,203410
,4,2,203435
,3,36262,203430
,3,36260,203355
,3,36244,234750
,4,1,203410
,4,2,203435
,3,36259,430
,3,36261,350
,3,36377,203425
,4,2,203445
,3,36262,203440
,3,36260,203355
,3,36244,234750
,4,1,203425
,4,2,203445
,3,36259,430
,3,36261,350
,3,36377,203435
,4,2,203455
,3,36262,203450
,3,36260,203355
,3,36244,234750
,4,1,203435
,4,2,203455
,3,36259,430
,3,36261,350
,3,36377,203445
,4,2,203465
,3,36262,203460
,3,36260,203355
,3,36244,234750
,4,1,203445
,4,2,203465
,3,36259,430
,3,36261,350
,3,36377,203455
,4,2,203540
,3,36262,203535
,3,36260,203355
,3,36244,234750
,4,3,16560
,4,5,30530
,4,6,30195
,4,8,30590
,4,9,30170
,4,11,30595
,4,12,30145
,4,14,30600
,4,2,203480
,3,36259,430
,3,36261,350
,3,36377,203490
,4,2,203495
,3,36262,203485
,3,36260,203470
,3,36244,234750
,4,1,203490
,4,2,203495
,3,36259,430
,3,36261,350
,4,2,203480
,3,36262,203475
,3,36260,203470
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,203480
,4,2,203505
,3,36262,203500
,3,36260,203470
,3,36244,234750
,4,1,203480
,4,2,203505
,3,36259,430
,3,36261,350
,3,36377,203495
,3,36260,203470
,3,36244,234750
,4,3,203515
,4,6,203520
,4,1,195565
,4,2,203530
,3,36259,430
,3,36261,350
,3,36377,222560
,3,36260,203510
,3,36244,234750
,4,1,203455
,4,2,203540
,3,36259,430
,3,36261,350
,3,36377,203465
,4,2,203550
,3,36262,203545
,3,36260,203355
,3,36244,234750
,4,1,203465
,4,2,203550
,3,36259,430
,3,36261,350
,3,36377,203540
,4,2,203560
,3,36262,203555
,3,36260,203355
,3,36244,234750
,4,1,203540
,4,2,203560
,3,36259,430
,3,36261,350
,3,36377,203550
,3,36260,203355
,3,36244,234750
,2,828,30530
,2,1460,30590
,2,1459,30595
,2,1458,30600
,2,35551,430
,3,36315,203570
,3,36244,203505
,4,3,203580
,4,6,203520
,4,9,203515
,4,12,203585
,4,15,203590
,4,18,203595
,4,2,203605
,3,36259,203565
,3,36261,30530
,3,36377,29800
,4,2,203615
,3,36262,203610
,3,36260,203575
,3,36244,234750
,4,1,29800
,4,2,203615
,3,36259,203565
,3,36261,30530
,3,36377,203605
,4,2,203625
,3,36262,203620
,3,36260,203575
,3,36244,234750
,4,1,203605
,4,2,203625
,3,36259,203565
,3,36261,30530
,3,36377,203615
,4,2,203635
,3,36262,203630
,3,36260,203575
,3,36244,234750
,4,1,203615
,4,2,203635
,3,36259,203565
,3,36261,30530
,3,36377,203625
,4,2,203645
,3,36262,203640
,3,36260,203575
,3,36244,234750
,4,1,203625
,4,2,203645
,3,36259,203565
,3,36261,30530
,3,36377,203635
,4,2,203655
,3,36262,203650
,3,36260,203575
,3,36244,234750
,4,1,203635
,4,2,203655
,3,36259,203565
,3,36261,30530
,3,36377,203645
,3,36260,203575
,3,36244,234750
,4,3,203515
,4,6,203520
,4,9,30740
,4,12,203665
,4,14,30525
,4,2,203675
,3,36259,30130
,3,36261,30125
,3,36377,30135
,4,2,203685
,3,36262,203680
,3,36260,203660
,3,36244,234750
,4,1,30135
,4,2,203685
,3,36259,30130
,3,36261,30125
,3,36377,203675
,4,2,203695
,3,36262,203690
,3,36260,203660
,3,36244,234750
,4,1,203675
,4,2,203695
,3,36259,30130
,3,36261,30125
,3,36377,203685
,4,2,203705
,3,36262,203700
,3,36260,203660
,3,36244,234750
,4,1,203685
,4,2,203705
,3,36259,30130
,3,36261,30125
,3,36377,203695
,3,36260,203660
,3,36244,234750
,3,36251,229580
,3,36371,195025
,3,36244,230605
,4,1,208635
,4,3,213600
,4,4,19260
,4,5,230705
,4,6,208270
,3,36251,225260
,3,36244,230605
,4,1,203715
,4,2,208590
,3,36251,229600
,3,36371,195085
,3,36244,230605
,4,1,208635
,3,36256,205985
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,195145
,3,36251,229590
,3,36371,195055
,3,36244,230605
,4,1,208635
,4,2,203655
,4,3,203520
,4,4,233700
,4,5,203655
,4,6,203515
,4,7,233710
,4,8,203655
,3,36244,225020
,3,36244,225020
,3,36244,225020
,3,36244,225020
,3,36244,225020
,3,36244,225020
,3,36244,225020
,3,36244,225020
,3,36259,430
,3,36261,2565
,3,36260,217100
,3,36244,234750
,3,36244,234750
,2,35551,1070
,3,36244,198805
,2,35756,85
,2,491,85
,2,1404,85
,2,828,730
,2,34297,10050
,2,35551,197770
,3,36244,217185
,3,36259,203815
,3,36261,730
,3,36377,217295
,3,36260,217300
,3,36244,234750
,2,35551,425
,3,36254,9995
,3,36255,440
,6,64,85
,3,36244,675
,4,1,10000
,2,35756,85
,2,491,85
,2,1404,85
,2,828,885
,2,34297,10040
,2,35551,197770
,3,36244,205990
,3,36256,203825
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,885
,2,35756,85
,2,491,85
,2,1404,85
,2,828,800
,2,34297,10065
,2,35551,197770
,3,36244,205995
,3,36256,203825
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,800
,2,35756,85
,2,491,85
,2,1404,85
,2,828,890
,2,34297,10075
,2,35551,197770
,3,36244,206000
,3,36256,203825
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,890
,2,35756,85
,2,491,85
,2,1404,85
,2,828,815
,2,34297,10085
,2,35551,197770
,3,36244,206005
,3,36256,203825
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,815
,2,35756,85
,2,491,85
,2,1404,85
,2,828,910
,2,34297,10095
,2,35551,197770
,3,36244,206010
,3,36256,203825
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,910
,2,35551,425
,2,34299,218625
,3,36254,218620
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,218630
,2,35551,425
,2,34299,218640
,3,36254,218635
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,218645
,2,35551,425
,2,34299,218655
,3,36254,218650
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,218660
,2,35551,425
,2,34299,218670
,3,36254,218665
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,218675
,2,35551,425
,2,34299,218685
,3,36254,218680
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,218690
,2,35551,425
,2,34299,218700
,3,36254,218695
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,218705
,2,35551,425
,2,34299,218715
,3,36254,218710
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,218720
,2,35551,425
,2,34299,218730
,3,36254,218725
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,218735
,2,35551,425
,2,34299,218745
,3,36254,218740
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,218750
,2,35551,425
,2,34299,218760
,3,36254,218755
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,218765
,2,35551,425
,2,34299,218775
,3,36254,218770
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,218780
,2,35551,425
,2,34299,218580
,3,36254,218575
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,218585
,2,35551,425
,2,34299,218610
,3,36254,218605
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,218615
,2,35551,425
,2,34299,219690
,3,36254,219685
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,219695
,2,35551,425
,2,34299,219720
,3,36254,219715
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,219725
,2,35551,425
,2,34299,219750
,3,36254,219745
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,219755
,2,35551,425
,2,34299,219780
,3,36254,219775
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,219785
,2,35551,425
,2,34299,219810
,3,36254,219805
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,219815
,2,35551,425
,2,34299,219840
,3,36254,219835
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,219845
,2,35551,425
,2,34299,219870
,3,36254,219865
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,219875
,2,35551,425
,2,34299,219900
,3,36254,219895
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,219905
,2,35551,425
,2,34299,219930
,3,36254,219925
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,219935
,2,35551,425
,2,34299,219960
,3,36254,219955
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,219965
,2,35551,425
,2,34299,219990
,3,36254,219985
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,219995
,2,35551,425
,2,34299,220020
,3,36254,220015
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,220025
,2,35551,425
,2,34299,220870
,3,36254,220865
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,220875
,2,35551,425
,2,34299,220885
,3,36254,220880
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,220890
,2,35551,425
,2,34299,220900
,3,36254,220895
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,220905
,2,35551,425
,2,34299,220915
,3,36254,220910
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,220920
,2,35551,425
,2,34299,220930
,3,36254,220925
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,220935
,2,35551,425
,2,34299,220945
,3,36254,220940
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,12650
,4,2,220950
,4,1,12660
,4,2,12775
,4,3,12855
,4,4,12890
,4,5,12925
,4,6,12960
,4,7,12995
,4,8,13030
,4,9,13065
,4,10,13100
,4,11,13135
,4,12,13170
,4,13,13205
,4,14,13240
,4,15,13275
,4,16,13310
,4,17,13345
,4,18,13380
,4,19,13415
,4,20,13450
,4,21,13485
,4,22,13520
,4,23,13555
,4,24,13590
,4,25,13625
,4,26,13660
,4,27,13695
,4,28,695
,4,30,775
,4,35,790
,4,40,705
,4,45,830
,4,50,925
,4,55,835
,4,60,920
,4,65,710
,4,70,700
,4,75,765
,4,92,780
,4,93,690
,4,94,955
,4,95,740
,4,96,810
,4,97,785
,4,98,905
,4,99,760
,4,100,16140
,4,101,16395
,4,102,16425
,4,103,16450
,4,104,16470
,4,105,16495
,4,106,16275
,4,107,16310
,4,108,16005
,4,109,16375
,4,110,18525
,4,111,18565
,4,112,18590
,4,113,18615
,4,114,18640
,4,115,18665
,4,116,18690
,4,117,18715
,4,118,18740
,4,119,18765
,4,120,18790
,4,121,18815
,4,122,18840
,4,123,18865
,4,124,18890
,4,125,18915
,4,126,18940
,4,127,18965
,4,128,18990
,4,129,19015
,4,130,19040
,4,131,19060
,4,132,19085
,4,133,18530
,4,134,18535
,4,135,19180
,4,136,24925
,4,137,24960
,4,138,24995
,4,139,25030
,4,140,25065
,4,141,25100
,4,142,25135
,4,143,25170
,4,144,25205
,4,145,25240
,4,146,25275
,4,147,25310
,4,148,25345
,4,149,25380
,4,150,25415
,4,151,25450
,4,152,25485
,4,153,25520
,4,154,25555
,4,155,25590
,4,156,25625
,4,157,25660
,4,158,25695
,4,159,25730
,4,160,25765
,4,161,25845
,4,162,25865
,4,163,25890
,4,164,29565
,4,165,30125
,4,166,30150
,4,167,30175
,4,168,30200
,4,169,30220
,4,170,30240
,4,171,30265
,4,172,30290
,4,173,30315
,4,174,203880
,4,175,203885
,4,176,203890
,4,177,203895
,4,178,203900
,4,179,203905
,4,180,203910
,4,181,203915
,4,182,203920
,4,183,203925
,4,184,203930
,4,185,203935
,4,186,203940
,4,187,203945
,4,188,203950
,4,189,203955
,4,190,203960
,4,191,203965
,4,192,203970
,4,193,203975
,4,194,203980
,4,195,203985
,4,196,203990
,4,197,203995
,4,198,204000
,4,199,204005
,4,200,204010
,4,201,204015
,4,202,204020
,4,203,204025
,4,204,204030
,3,36259,430
,3,36261,350
,3,36377,217320
,3,36260,217310
,3,36244,234750
,3,36259,1070
,3,36261,895
,3,36377,1080
,4,2,204165
,3,36262,216895
,3,36260,216875
,3,36244,234750
,4,1,560
,4,2,206015
,4,3,206020
,4,1,27645
,3,36251,229645
,3,36371,195130
,3,36244,230605
,4,1,208635
,4,2,233910
,4,3,203655
,4,4,203520
,4,5,230780
,4,6,203655
,4,7,203515
,4,8,230780
,4,9,203655
,4,12,203705
,4,13,208265
,4,14,203705
,4,15,208700
,4,16,208915
,4,17,208885
,3,36251,229595
,3,36371,195070
,3,36244,230605
,4,1,208635
,4,2,203705
,3,36251,229570
,3,36371,195010
,3,36244,230605
,4,1,208635
,4,2,203705
,4,1,560
,4,2,204085
,2,842,215
,2,132,100
,2,35664,110
,2,35911,110
,2,35551,1390
,3,36244,1400
,4,1,204095
,4,2,215
,4,4,215
,2,35551,425
,3,36253,204105
,3,36254,29390
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,29395
,4,1,560
,4,2,206025
,2,34700,29565
,2,35551,430
,3,36244,204115
,3,36259,430
,3,36261,350
,3,36377,195565
,3,36260,203085
,3,36244,234750
,2,1054,85
,2,35861,85
,2,35551,430
,3,36244,204125
,3,36259,430
,3,36261,1460
,3,36377,214510
,3,36260,214500
,3,36244,234750
,2,1054,85
,2,35861,85
,2,35551,430
,3,36314,204135
,3,36244,204140
,3,36244,206030
,3,36259,430
,3,36261,1460
,3,36260,214520
,3,36244,234750
,2,1054,85
,2,36379,595
,2,36380,595
,2,36381,595
,2,36382,595
,2,35551,430
,3,36244,204150
,3,36259,430
,3,36261,1460
,3,36260,214525
,3,36244,234750
,4,1,1080
,4,2,204050
,4,3,198805
,4,4,204160
,4,5,204165
,4,6,204170
,3,36259,1070
,3,36261,895
,3,36377,198805
,3,36260,216875
,3,36244,234750
,3,36259,1070
,3,36261,895
,3,36377,204050
,4,2,204170
,3,36262,216900
,3,36260,216875
,3,36244,234750
,3,36259,1070
,3,36261,895
,3,36377,204165
,4,2,198805
,3,36262,216905
,3,36260,216875
,3,36244,234750
,1,1,85
,2,35551,70
,3,36314,204180
,3,36244,195515
,3,36244,204190
,4,5,195565
,4,12,204195
,4,13,204200
,4,20,204205
,4,21,204210
,4,26,204215
,4,27,204220
,4,62,204225
,4,63,204230
,4,84,204235
,4,85,197500
,4,100,204240
,4,101,199680
,4,104,204245
,4,105,204250
,4,110,204255
,4,111,201410
,4,112,204260
,4,113,197735
,4,114,204265
,4,115,204270
,4,122,204275
,4,123,204280
,4,128,204285
,4,129,202960
,3,36244,234750
,4,1,20525
,4,2,20520
,4,3,20530
,3,36259,430
,3,36261,350
,4,2,224275
,3,36262,224270
,3,36244,234750
,4,1,28350
,4,2,16930
,3,36259,430
,3,36261,350
,4,2,224545
,3,36262,224540
,3,36244,234750
,4,1,10490
,4,2,10495
,3,36259,430
,3,36261,350
,4,2,217320
,3,36262,217315
,3,36244,234750
,4,1,16560
,3,36259,430
,3,36261,350
,4,2,196115
,3,36262,196110
,3,36244,234750
,4,1,19780
,4,2,19785
,4,3,19790
,4,4,90
,4,5,80
,4,6,10495
,4,7,19795
,4,8,19800
,4,1,23090
,4,2,23040
,4,1,16550
,3,36259,430
,3,36261,350
,4,2,196130
,3,36262,196125
,3,36244,234750
,4,1,20520
,4,2,16550
,4,1,16550
,4,2,20520
,4,3,20525
,4,4,20530
,4,1,212225
,4,2,27205
,4,3,20525
,3,36259,430
,3,36261,350
,4,2,223250
,3,36262,223245
,3,36244,234750
,4,1,17655
,3,36259,430
,3,36261,350
,4,2,203065
,3,36262,203060
,3,36244,234750
,4,1,28785
,4,2,28790
,4,1,204295
,4,2,204295
,2,34716,205965
,2,34715,205965
,2,34718,211190
,2,34719,211180
,2,34720,100
,2,35551,203565
,3,36244,203655
,4,1,515
,4,2,16765
,4,1,515
,4,2,12040
,4,1,515
,4,2,22300
,4,1,515
,4,2,26040
,4,1,515
,4,2,30335
,4,1,515
,4,2,19200
,4,1,515
,4,2,27315
,4,1,515
,4,2,15160
,4,1,515
,4,2,3670
,4,1,515
,4,2,23485
,4,1,515
,4,2,9215
,4,1,515
,4,2,8800
,4,1,515
,4,2,27145
,4,1,515
,4,2,25910
,4,1,515
,4,2,6540
,4,1,515
,4,2,29305
,4,1,515
,4,2,26620
,4,1,515
,4,2,19500
,4,1,515
,4,2,4760
,4,1,515
,4,2,11795
,4,1,515
,4,2,10470
,4,1,515
,4,2,29595
,4,1,515
,4,2,8500
,4,1,515
,4,2,27520
,4,1,515
,4,2,17400
,4,1,515
,4,2,21790
,4,1,515
,4,2,7510
,4,1,515
,4,2,10305
,4,2,204445
,4,7,204450
,3,36251,228415
,3,36244,230605
,4,1,204450
,4,2,204450
,4,3,204450
,4,4,204450
,4,2,204460
,4,7,204465
,3,36251,228250
,3,36244,230605
,4,1,204465
,4,2,204465
,4,3,204465
,4,4,204465
,3,36251,228655
,3,36244,230605
,4,1,204470
,4,2,204470
,4,3,204470
,4,4,204470
,4,2,204480
,4,6,204485
,3,36251,230410
,3,36244,230605
,4,1,230400
,4,2,230405
,4,3,204485
,4,4,204485
,4,5,204485
,4,6,204485
,4,2,204495
,4,7,204500
,3,36251,228300
,3,36244,230605
,4,1,204500
,4,2,204500
,4,3,204500
,4,4,204500
,4,1,560
,4,2,204515
,4,3,204520
,2,35551,430
,3,36244,195565
,1,0,15180
,1,1,15185
,2,35551,1070
,3,36314,15175
,3,36244,198805
,4,1,204530
,4,2,204535
,4,3,204540
,4,4,204545
,4,5,204550
,4,6,204555
,4,7,204560
,4,9,204565
,4,10,204570
,4,11,204575
,4,12,204580
,4,13,204585
,4,17,204590
,4,19,204595
,2,1121,110
,2,35874,100
,2,35727,100
,2,35629,100
,2,35439,100
,2,35018,100
,2,35551,430
,3,36315,206035
,3,36244,206040
,2,35551,1070
,3,36244,204160
,2,35551,12780
,3,36244,12785
,1,0,204605
,1,1,204610
,1,2,204615
,1,3,204620
,1,4,204625
,1,5,204630
,1,6,204635
,1,7,204640
,1,8,204645
,1,9,204650
,1,10,204655
,1,11,204660
,1,12,204665
,1,13,204670
,1,14,204675
,1,15,204680
,1,16,204685
,1,17,204690
,1,18,204695
,1,19,204700
,1,20,204705
,1,21,204710
,1,22,204715
,1,23,204720
,1,24,204725
,1,25,204730
,1,26,204735
,2,35551,1070
,3,36314,204600
,3,36244,204160
,1,0,206045
,1,1,206050
,2,35551,1070
,3,36314,206055
,3,36244,204160
,2,35920,206060
,2,34811,206065
,2,35496,206070
,2,35923,206075
,2,35874,206080
,2,35025,206085
,2,35843,206090
,2,35462,206095
,2,35551,430
,3,36315,206100
,3,36244,206105
,2,35551,430
,3,36315,206110
,3,36314,206115
,3,36244,206120
,2,34943,206125
,2,35551,430
,3,36315,206130
,3,36244,206135
,2,34496,206140
,2,34497,206145
,2,35551,430
,3,36315,206150
,3,36244,198780
,2,839,200
,2,855,205945
,2,1130,70
,2,1132,29310
,2,34321,100
,2,34697,205950
,2,1127,205955
,2,35551,202795
,3,36244,202935
,4,1,204605
,4,2,204610
,4,3,204615
,4,4,204620
,4,5,204625
,4,6,204630
,4,7,204635
,4,8,204640
,4,9,204645
,4,10,204650
,4,11,204655
,4,12,204660
,4,13,204665
,4,14,204670
,4,15,204675
,4,16,204680
,4,17,204685
,4,18,204690
,4,19,204695
,4,20,204700
,4,21,204705
,4,22,204710
,4,23,204715
,4,24,204720
,4,25,204725
,4,26,204730
,4,27,204735
,3,36372,206155
,3,36373,206160
,3,36372,206155
,3,36373,28860
,3,36372,206155
,3,36373,15695
,3,36372,206155
,3,36373,19455
,3,36372,206155
,3,36373,16625
,3,36372,206155
,3,36373,16915
,3,36372,206155
,3,36373,23470
,3,36372,206155
,3,36373,206165
,3,36372,206155
,3,36373,200670
,3,36372,206155
,3,36373,200945
,3,36372,206155
,3,36373,201065
,3,36372,206155
,3,36373,201130
,3,36372,206155
,3,36373,201235
,3,36372,206155
,3,36373,206170
,3,36372,206155
,3,36373,206175
,3,36372,206155
,3,36373,207730
,3,36372,206155
,3,36373,207655
,3,36372,206155
,3,36373,207740
,4,1,204750
,4,2,204750
,2,34715,204750
,2,34716,204750
,2,34721,30525
,2,35551,30130
,3,36315,204745
,3,36244,203705
,3,36256,16060
,3,36257,16015
,3,36258,685
,3,36244,195240
,4,2,12925
,4,3,204760
,4,6,204580
,4,10,204765
,4,11,204770
,2,35551,1070
,3,36244,198805
,0,1049,12925
,0,1050,204760
,0,1051,100
,0,1052,110
,0,1053,204580
,0,1042,204765
,0,1043,204770
,2,35551,425
,3,36253,206440
,3,36254,21315
,3,36255,204755
,6,64,85
,3,36244,12670
,4,1,21325
,0,1049,12925
,0,1050,204760
,0,1051,100
,0,1052,110
,0,1053,204580
,0,1042,204765
,0,1043,204770
,2,35551,425
,3,36254,21335
,3,36255,204755
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,350
,4,2,340
,3,36372,200
,3,36373,196285
,4,2,204800
,4,3,204805
,4,5,204810
,2,35551,425
,3,36254,8295
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8300
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,2,35551,425
,3,36254,8305
,3,36255,440
,6,64,85
,3,36244,675
,4,1,4220
,3,36256,203825
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,795
,3,36256,203825
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,730
,3,36256,2920
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,1835
,4,4,204860
,0,486,730
,2,35551,425
,3,36254,10195
,3,36255,204850
,6,64,85
,3,36244,675
,4,1,4220
,3,36256,1810
,3,36257,440
,3,36258,970
,3,36244,195240
,3,36256,2085
,3,36257,440
,3,36258,970
,3,36244,195240
,3,36256,2085
,3,36257,440
,3,36258,970
,3,36244,195240
,3,36256,2085
,3,36257,440
,3,36258,970
,3,36244,195240
,3,36256,2085
,3,36257,440
,3,36258,970
,3,36244,195240
,3,36256,2085
,3,36257,440
,3,36258,970
,3,36244,195240
,3,36256,2085
,3,36257,440
,3,36258,970
,3,36244,195240
,3,36256,2085
,3,36257,440
,3,36258,970
,3,36244,195240
,3,36256,2085
,3,36257,440
,3,36258,970
,3,36244,195240
,3,36256,2085
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,204930
,4,3,13750
,4,2,204940
,4,2,204950
,4,5,204955
,4,6,13820
,4,8,204960
,4,9,13835
,4,11,204965
,4,12,13850
,4,14,204970
,4,15,13865
,4,2,204980
,4,2,204990
,4,5,204995
,4,6,13945
,4,8,205000
,4,9,13960
,4,11,205005
,4,12,13975
,4,14,205010
,4,15,13990
,4,2,205020
,4,2,205030
,4,5,205035
,4,6,14065
,4,8,205040
,4,9,14080
,4,11,205045
,4,12,14095
,4,14,205050
,4,15,14110
,4,2,205060
,4,2,205070
,4,5,205075
,4,6,14185
,4,8,205080
,4,9,14200
,4,11,205085
,4,12,14215
,4,14,205090
,4,15,14230
,4,2,205100
,4,2,205110
,4,5,205115
,4,6,14305
,4,8,205120
,4,9,14320
,4,11,205125
,4,12,14335
,4,14,205130
,4,15,14350
,4,2,205140
,4,2,205150
,4,5,205155
,4,6,14425
,4,8,205160
,4,9,14440
,4,11,205165
,4,12,14455
,4,14,205170
,4,15,14470
,4,2,205180
,4,2,205190
,4,5,205195
,4,6,14545
,4,8,205200
,4,9,14560
,4,11,205205
,4,12,14575
,4,14,205210
,4,15,14590
,4,2,205220
,4,2,205230
,4,5,205235
,4,6,14665
,4,8,205240
,4,9,14680
,4,11,205245
,4,12,14695
,4,14,205250
,4,15,14710
,4,2,205260
,4,2,205270
,4,5,205275
,4,6,14785
,4,8,205280
,4,9,14800
,4,11,205285
,4,12,14815
,4,14,205290
,4,15,14830
,4,2,205300
,4,3,14900
,4,5,205305
,4,6,14915
,4,8,205310
,4,9,14930
,4,11,205315
,4,12,14945
,4,14,205320
,4,15,14960
,4,17,205325
,4,18,14975
,4,20,205330
,4,21,14990
,4,23,205335
,4,24,15005
,4,26,205340
,4,27,15020
,4,29,205345
,4,30,15035
,4,32,205350
,4,33,15050
,4,35,205355
,4,36,15065
,4,38,205360
,4,39,15080
,4,41,205365
,4,42,15095
,4,44,205370
,4,45,15110
,4,47,205375
,4,48,15125
,3,36372,200
,3,36373,195290
,3,36372,200
,3,36373,195295
,3,36372,200
,3,36373,195300
,3,36372,200
,3,36373,195310
,3,36372,200
,3,36373,195315
,3,36372,200
,3,36373,195320
,3,36372,200
,3,36373,195325
,3,36372,200
,3,36373,195330
,3,36372,200
,3,36373,195335
,3,36372,200
,3,36373,195340
,3,36372,200
,3,36373,195345
,3,36372,200
,3,36373,195350
,3,36372,200
,3,36373,195355
,4,1,560
,2,35551,430
,3,36244,195565
,4,1,560
,4,2,206540
,3,36259,425
,3,36377,12670
,3,36260,196090
,3,36244,234750
,4,1,16560
,4,1,560
,4,2,206545
,4,1,560
,4,1,560
,4,2,206550
,4,16,206555
,4,17,206560
,4,18,206565
,2,229,207855
,2,975,207860
,2,976,207865
,2,977,207870
,2,978,207875
,2,979,207880
,2,980,207885
,2,981,207890
,2,982,207895
,2,983,207900
,2,984,207905
,2,985,207910
,2,986,207915
,2,35551,430
,3,36244,207850
,2,987,19725
,2,988,19765
,2,989,19765
,2,18,19695
,2,17,7995
,2,660,19735
,2,990,19745
,2,991,19755
,2,35551,430
,3,36244,197565
,4,1,560
,4,1,205495
,4,2,205500
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,4,1,560
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,20070
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,20370
,3,36257,20365
,3,36258,685
,3,36244,195240
,4,2,205545
,4,3,205550
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,20085
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,20370
,3,36257,20365
,3,36258,685
,3,36244,195240
,4,2,205560
,4,3,205565
,0,856,16510
,0,855,20250
,0,1017,20255
,0,1018,20260
,0,882,20265
,0,992,20270
,0,993,20275
,0,994,20280
,0,995,20285
,0,996,20290
,0,997,20295
,0,998,20300
,0,999,20305
,0,1000,20310
,0,133,20315
,0,1001,20320
,0,1002,20325
,0,1003,20330
,0,1004,20335
,0,1005,20340
,0,1019,20345
,0,1006,20350
,0,74,20355
,2,35551,425
,3,36254,19975
,3,36255,20365
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,20370
,3,36257,20365
,3,36258,685
,3,36244,195240
,4,2,205575
,4,3,205580
,4,1,560
,4,1,560
,3,36244,229660
,3,36244,229660
,4,1,198685
,4,2,198690
,4,3,198695
,4,4,198700
,4,5,198705
,4,1,198765
,4,2,198770
,2,35467,220955
,2,35551,220870
,3,36244,221685
,4,1,205655
,3,36259,430
,3,36261,350
,3,36377,195565
,3,36260,224155
,3,36244,234750
,4,1,560
,4,4,206570
,4,1,205
,4,2,205675
,0,856,16510
,0,855,22110
,0,1077,22115
,0,1088,85
,0,1089,85
,0,1078,22120
,0,1079,85
,0,1090,22125
,2,35551,425
,3,36254,22000
,3,36255,22130
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,20370
,3,36257,20365
,3,36258,685
,3,36244,195240
,4,2,205685
,4,3,205690
,0,856,16510
,0,855,22110
,0,1077,22115
,0,1088,85
,0,1089,85
,0,1078,22120
,0,1079,85
,0,1090,22125
,2,35551,425
,3,36254,22005
,3,36255,22130
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,20370
,3,36257,20365
,3,36258,685
,3,36244,195240
,4,2,205700
,4,3,205705
,4,1,560
,4,2,206575
,4,3,206580
,4,4,206585
,4,5,206590
,4,6,206595
,4,8,206600
,4,9,206605
,4,1,205730
,4,2,205735
,4,3,205740
,3,36244,204190
,4,66,206610
,4,67,205750
,4,1,199565
,4,2,199570
,4,3,199575
,4,1,23090
,4,2,23040
,0,1269,26465
,0,1270,27045
,0,1341,27470
,0,1342,205775
,2,35551,425
,3,36254,27180
,3,36255,205780
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,206615
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,26465
,4,3,27045
,4,4,27470
,4,5,205775
,4,1,26465
,4,1,27470
,2,828,27615
,2,34638,27610
,2,35551,201245
,3,36315,206620
,3,36244,201270
,4,1,27485
,4,1,26450
,2,828,26460
,2,35551,430
,3,36315,223315
,3,36244,223320
,4,1,560
,4,3,206625
,2,828,27040
,2,35551,430
,3,36315,223600
,3,36244,223605
,4,1,560
,4,3,206630
,4,1,200665
,4,2,197915
,4,3,200995
,4,4,29140
,4,1,560
,4,3,206635
,4,4,206640
,4,6,206645
,4,8,206650
,3,36244,225020
,3,36244,225020
,3,36244,204190
,4,9,206655
,4,12,206660
,4,15,24835
,4,18,206665
,4,21,206670
,4,27,206675
,4,28,205845
,4,39,206680
,4,45,206685
,4,81,206690
,4,84,206695
,4,87,206700
,4,90,206705
,4,93,206710
,4,96,206715
,4,99,206720
,4,102,206725
,4,108,206730
,4,117,24860
,4,120,206735
,4,132,206740
,4,180,206745
,4,183,206750
,4,186,206755
,4,198,206760
,4,210,206765
,4,228,206770
,4,237,206775
,4,240,206780
,4,243,206785
,4,246,206790
,4,255,206795
,4,258,206800
,4,276,206805
,4,312,206810
,4,321,206815
,4,384,206820
,4,387,206825
,4,396,206830
,4,399,206835
,4,405,206840
,4,408,206845
,4,414,206850
,4,423,206855
,4,426,206860
,4,435,206865
,4,441,206870
,4,453,206875
,4,456,206880
,4,483,206885
,4,492,206890
,4,507,206895
,4,510,206900
,4,513,206905
,4,516,206910
,4,522,206915
,4,528,206920
,4,531,206925
,4,534,206930
,4,537,206935
,4,540,206940
,4,546,206945
,4,552,206950
,4,555,206955
,4,558,206960
,4,561,206965
,4,564,206970
,4,567,206975
,4,570,206980
,4,573,206985
,4,576,206990
,4,579,206995
,4,582,207000
,4,585,207005
,4,588,207010
,4,597,207015
,4,600,207020
,4,603,207025
,4,618,207030
,4,621,207035
,4,630,207040
,4,660,207045
,4,666,207050
,4,669,207055
,4,672,207060
,4,696,24845
,4,699,24830
,4,705,207065
,4,720,24825
,4,753,207070
,4,754,205850
,4,765,207075
,4,768,207080
,4,777,207085
,4,786,207090
,4,789,207095
,4,816,207100
,4,819,207105
,4,828,207110
,4,843,207115
,4,846,207120
,4,849,207125
,4,855,207130
,4,867,24855
,4,870,207135
,4,894,207140
,4,897,207145
,4,906,207150
,4,909,207155
,4,912,207160
,4,918,207165
,4,930,207170
,4,945,207175
,4,951,207180
,4,954,207185
,4,957,207190
,4,960,207195
,4,963,207200
,4,972,207205
,4,975,207210
,4,978,207215
,4,993,207220
,4,1002,207225
,4,1014,207230
,4,1017,207235
,4,1035,207240
,4,1038,207245
,4,1041,207250
,4,1044,24850
,4,1047,207255
,4,1053,207260
,4,1071,207265
,4,1074,207270
,4,1083,207275
,4,1104,207280
,4,1107,207285
,4,1122,207290
,4,1128,24775
,4,1131,207295
,4,1134,207300
,4,1155,207305
,4,1158,207310
,4,1161,207315
,4,1164,207320
,4,1176,207325
,4,1179,207330
,4,1185,207335
,4,1194,207340
,4,1200,207345
,4,1206,24780
,4,1221,207350
,4,1230,207355
,4,1233,207360
,4,1236,207365
,4,1257,207370
,4,1281,207375
,4,1287,207380
,4,1290,207385
,4,1293,207390
,4,1296,207395
,4,1314,207400
,4,1323,207405
,4,1338,207410
,4,1341,207415
,4,1353,24840
,4,1380,24765
,4,1383,207420
,4,1446,207425
,4,1449,207430
,4,1464,207435
,4,1467,207440
,4,1470,207445
,4,1482,207450
,4,1491,24770
,4,1503,207455
,4,1506,207460
,4,1524,207465
,4,1536,207470
,4,1,560
,2,828,27710
,2,1138,28175
,2,1458,28180
,2,35551,196135
,3,36315,207475
,3,36244,202270
,4,1,26450
,2,828,27715
,2,1138,28195
,2,1284,28200
,2,35551,196135
,3,36315,207480
,3,36244,202310
,4,1,26450
,2,828,27745
,2,34595,28255
,2,34628,28260
,2,34684,28265
,2,1458,28270
,2,35551,201070
,3,36315,207485
,3,36244,202435
,4,1,560
,4,1,26465
,2,828,27750
,2,34595,28280
,2,34634,28285
,2,34684,28265
,2,1458,28270
,2,34685,27135
,2,35551,202450
,3,36315,207490
,3,36244,202540
,4,1,560
,4,1,27045
,2,828,201645
,2,34460,28290
,2,1408,28295
,2,34684,28300
,2,34685,28300
,2,35551,200745
,3,36315,207495
,3,36244,202600
,4,1,26455
,2,35551,430
,3,36244,195565
,2,35551,1070
,3,36244,198805
,3,36372,200
,3,36373,5380
,2,35551,430
,3,36244,195565
,1,0,207500
,2,35551,1070
,3,36314,207590
,3,36244,198805
,1,0,207595
,1,1,207600
,1,2,207605
,1,3,207610
,1,4,207615
,1,5,207620
,1,6,207625
,1,7,207630
,1,8,207635
,2,35551,1070
,3,36314,207640
,3,36244,198805
,4,1,560
,4,3,207645
,4,4,207650
,2,34715,204295
,2,34716,204295
,2,34721,30525
,2,35551,30130
,3,36315,204290
,3,36244,203705
,3,36244,204190
,4,13,205965
,4,19,204750
,3,36259,430
,3,36261,350
,3,36377,195565
,3,36244,234750
,4,1,30535
,4,2,30535
,2,35551,425
,3,36254,30465
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,30470
,3,36259,197770
,3,36261,795
,3,36377,234990
,3,36260,217165
,3,36244,234750
,3,36259,197770
,3,36261,795
,3,36377,235000
,3,36260,217190
,3,36244,234750
,3,36259,197770
,3,36261,795
,3,36377,235005
,3,36260,217200
,3,36244,234750
,3,36259,197770
,3,36261,795
,3,36377,235010
,3,36260,217210
,3,36244,234750
,3,36259,197770
,3,36261,795
,3,36377,235015
,3,36260,217220
,3,36244,234750
,2,827,85
,2,35551,430
,3,36244,196130
,2,828,85
,2,35551,430
,3,36244,196115
,2,35551,1070
,3,36244,198805
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,217560
,3,36260,217515
,3,36244,234750
,4,1,206045
,4,2,206050
,4,1,206060
,4,2,206065
,4,3,206070
,4,4,206075
,4,5,206080
,4,6,206085
,4,7,206090
,4,8,206095
,3,36259,430
,3,36261,350
,3,36377,217495
,3,36260,217430
,3,36244,234750
,3,36244,229665
,3,36259,430
,3,36261,350
,3,36377,455
,3,36244,234750
,0,1058,85
,0,1059,21570
,0,1060,21575
,2,35551,425
,3,36254,218305
,3,36255,21580
,6,64,85
,3,36244,12670
,4,1,4220
,3,36259,430
,3,36261,350
,3,36377,455
,3,36260,224160
,3,36244,234750
,2,34491,207940
,2,34492,207945
,2,34493,207950
,2,34494,207955
,2,34495,207960
,2,35551,430
,3,36315,207965
,3,36244,198750
,2,35038,110
,2,35039,110
,2,35041,100
,2,35042,100
,2,35043,340
,2,35044,110
,2,35045,207970
,2,35046,207975
,2,35047,110
,2,35048,110
,2,35049,100
,2,35051,207980
,2,35052,207985
,2,35053,110
,2,35054,110
,2,35056,110
,2,35058,110
,2,35551,430
,3,36315,207990
,3,36244,198790
,4,1,206140
,4,2,206145
,2,822,16140
,2,823,16395
,2,35551,430
,3,36315,206185
,3,36244,195660
,3,36244,204190
,4,12,207655
,4,13,206190
,4,33,206165
,4,34,206195
,4,48,16915
,4,49,206200
,4,90,207660
,4,91,206205
,4,96,200945
,4,97,206210
,4,99,206175
,4,100,206215
,4,114,16630
,4,115,206220
,4,132,23470
,4,133,206225
,4,138,15695
,4,139,206230
,4,141,206170
,4,142,206235
,4,147,207665
,4,148,206240
,4,150,207670
,4,151,206245
,4,159,207675
,4,160,206250
,4,165,207680
,4,166,206255
,4,180,207685
,4,181,206260
,4,183,207690
,4,184,206265
,4,198,207695
,4,199,206270
,4,216,207700
,4,217,206275
,4,237,16625
,4,238,206280
,4,246,207705
,4,247,206285
,4,249,200670
,4,250,206290
,4,252,207710
,4,253,206295
,4,276,201130
,4,277,206300
,4,279,207715
,4,280,206305
,4,288,24800
,4,289,206310
,4,291,207720
,4,292,206315
,4,297,201235
,4,298,206320
,4,300,207725
,4,301,206325
,4,303,201065
,4,304,206330
,4,306,28860
,4,307,206335
,4,315,207730
,4,316,206340
,4,318,19455
,4,319,206345
,4,324,16930
,4,325,206350
,4,345,207735
,4,346,206355
,4,348,206160
,4,349,206360
,4,357,207740
,4,358,206365
,4,366,207745
,4,367,206370
,4,369,207750
,4,370,206375
,4,372,207755
,4,373,206380
,4,381,207760
,4,382,206385
,3,36259,430
,3,36261,350
,3,36244,234750
,2,926,18525
,2,34436,19180
,2,35551,430
,3,36315,206405
,3,36244,197270
,2,1450,30125
,2,35551,430
,3,36315,206415
,3,36244,206420
,3,36259,430
,3,36261,350
,3,36377,455
,3,36260,203250
,3,36244,234750
,2,34716,70
,2,34715,70
,2,34718,206430
,2,34719,206435
,2,34720,100
,2,35551,203565
,3,36244,203655
,3,36244,225020
,0,1361,207765
,0,1472,206425
,0,1417,207770
,2,35551,425
,3,36254,30640
,3,36255,207775
,6,64,85
,3,36244,12670
,4,1,30645
,4,1,560
,4,2,207780
,2,1132,218795
,2,839,207655
,2,855,224580
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,25915
,2,839,206165
,2,855,26455
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,21795
,2,839,16625
,2,855,22110
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,22305
,2,839,16915
,2,855,22835
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,26045
,2,839,200670
,2,855,26465
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,27320
,2,839,201130
,2,855,27485
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,26625
,2,839,200945
,2,855,27045
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,27525
,2,839,201235
,2,855,27615
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,30340
,2,839,206175
,2,855,30505
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,27150
,2,839,201065
,2,855,27470
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,17405
,2,839,28860
,2,855,20645
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,19505
,2,839,19455
,2,855,20250
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,218030
,2,839,207730
,2,855,224585
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,23490
,2,839,23470
,2,855,27650
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,19205
,2,839,15695
,2,855,11735
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,29600
,2,839,206170
,2,855,30500
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,16770
,2,839,206160
,2,855,16975
,2,34321,100
,2,35551,195815
,3,36244,195900
,2,1132,219000
,2,839,207740
,2,855,220035
,2,34321,100
,2,35551,195815
,3,36244,195900
,3,36244,204190
,4,12,207655
,4,13,206445
,4,33,206165
,4,34,206450
,4,45,16625
,4,46,206455
,4,48,16915
,4,49,206460
,4,54,200670
,4,55,206465
,4,84,201130
,4,85,206470
,4,96,200945
,4,97,206475
,4,99,201235
,4,100,206480
,4,102,206175
,4,103,206485
,4,111,201065
,4,112,206490
,4,114,28860
,4,115,206495
,4,123,19455
,4,124,206500
,4,126,207730
,4,127,206505
,4,132,23470
,4,133,206510
,4,138,15695
,4,139,206515
,4,141,206170
,4,142,206520
,4,156,206160
,4,157,206525
,4,165,207740
,4,166,206530
,2,35551,430
,3,36244,195565
,2,1361,85
,2,860,70
,2,35551,430
,3,36244,224555
,2,842,204480
,2,132,100
,2,35664,110
,2,35911,110
,2,35551,1390
,3,36244,1400
,4,1,204475
,2,229,207785
,2,975,207790
,2,976,207795
,2,977,207800
,2,978,207805
,2,979,207810
,2,980,207815
,2,981,207820
,2,982,207825
,2,983,207830
,2,984,207835
,2,985,207840
,2,986,207845
,2,35551,430
,3,36244,207850
,2,987,19725
,2,988,19765
,2,989,19765
,2,18,19695
,2,17,7995
,2,660,19735
,2,990,19745
,2,991,19755
,2,35551,430
,3,36244,197565
,1,0,10550
,1,1,10555
,1,2,10560
,1,3,10565
,1,4,10570
,1,5,10575
,1,6,10580
,1,7,10585
,1,8,10590
,1,9,10595
,1,10,10600
,1,11,10605
,2,35551,1070
,3,36314,19805
,3,36244,198805
,2,842,204445
,2,132,110
,2,35664,110
,2,35911,110
,2,35551,1390
,3,36244,1400
,4,1,204440
,2,35551,430
,3,36244,195565
,2,35551,430
,3,36244,195565
,2,35551,430
,3,36244,195565
,2,35551,1070
,3,36244,198805
,2,35551,1070
,3,36244,198805
,2,35551,430
,3,36244,195565
,2,35551,430
,3,36244,195565
,2,35551,425
,3,36254,27240
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,27245
,2,35551,1070
,3,36244,198805
,2,35551,1070
,3,36244,198805
,2,1025,110
,2,827,85
,2,35551,430
,3,36244,201415
,2,35551,430
,3,36244,195565
,2,842,204495
,2,132,100
,2,35664,110
,2,35911,110
,2,35551,1390
,3,36244,1400
,4,1,204490
,2,842,204460
,2,132,110
,2,35664,110
,2,35911,110
,2,35551,1390
,3,36244,1400
,4,1,204455
,2,839,207510
,2,855,204110
,2,1130,204595
,2,1132,207510
,2,34321,100
,2,34697,207995
,2,1127,208000
,2,35551,202795
,3,36244,202935
,3,36244,204190
,4,12,207510
,4,13,207500
,4,69,29310
,4,70,204595
,3,36244,204190
,4,75,207920
,4,76,29310
,4,96,207925
,4,97,207510
,4,1,205730
,4,2,205735
,4,3,205740
,3,36244,204190
,4,12,207930
,4,13,207510
,4,18,207525
,4,19,207525
,4,21,207530
,4,22,207530
,4,27,207535
,4,28,207535
,4,30,207540
,4,31,207540
,4,39,207545
,4,40,207545
,4,51,207550
,4,52,207550
,4,60,207555
,4,61,207555
,4,66,207560
,4,67,207560
,4,69,207935
,4,70,29310
,4,72,207565
,4,73,207565
,4,78,207570
,4,79,207570
,4,93,207575
,4,94,207575
,4,96,207580
,4,97,207580
,4,1,207500
,4,1,207595
,4,2,207600
,4,3,207605
,4,4,207610
,4,5,207615
,4,6,207620
,4,7,207625
,4,8,207630
,4,9,207635
,2,35551,430
,3,36244,195565
,2,35551,430
,3,36244,195565
,0,1421,204110
,0,660,208110
,0,1422,208115
,2,35551,425
,3,36254,29340
,3,36255,208120
,6,64,85
,3,36244,12670
,4,1,29345
,2,35551,1070
,3,36244,198805
,3,36256,30580
,3,36257,30550
,3,36258,685
,3,36244,195240
,4,3,207765
,4,4,206425
,4,5,207770
,2,35551,1070
,3,36244,198805
,2,35551,1070
,3,36314,19515
,3,36244,1080
,2,35551,1070
,3,36314,19525
,3,36244,1080
,2,35551,1070
,3,36314,19535
,3,36244,1080
,2,35551,1070
,3,36314,19545
,3,36244,1080
,2,35551,1070
,3,36314,19555
,3,36244,1080
,2,35551,1070
,3,36314,19565
,3,36244,1080
,2,35551,1070
,3,36314,19575
,3,36244,1080
,2,35551,1070
,3,36314,19585
,3,36244,1080
,2,35551,1070
,3,36314,19595
,3,36244,1080
,2,35551,1070
,3,36314,19605
,3,36244,1080
,2,35551,1070
,3,36314,19615
,3,36244,1080
,2,35551,1070
,3,36314,19625
,3,36244,1080
,2,35551,1070
,3,36314,19635
,3,36244,1080
,3,36259,430
,3,36261,350
,3,36260,197460
,3,36244,234750
,2,35551,1070
,3,36314,19515
,3,36244,1080
,2,35551,1070
,3,36314,19525
,3,36244,1080
,2,35551,1070
,3,36314,19535
,3,36244,1080
,2,35551,1070
,3,36314,19545
,3,36244,1080
,2,35551,1070
,3,36314,19555
,3,36244,1080
,2,35551,1070
,3,36314,19565
,3,36244,1080
,2,35551,1070
,3,36314,19575
,3,36244,1080
,2,35551,1070
,3,36314,19585
,3,36244,1080
,2,35551,1070
,3,36314,19595
,3,36244,1080
,2,35551,1070
,3,36314,19605
,3,36244,1080
,2,35551,1070
,3,36314,19615
,3,36244,1080
,2,35551,1070
,3,36314,19625
,3,36244,1080
,2,35551,1070
,3,36314,19635
,3,36244,1080
,2,35551,1070
,3,36244,204160
,2,35551,1070
,3,36244,204160
,2,35551,1070
,3,36244,204160
,2,35551,1070
,3,36244,204160
,4,1,207940
,4,2,207945
,4,3,207950
,4,4,207955
,4,5,207960
,3,36244,204190
,4,6,208005
,4,9,208010
,4,12,208015
,4,27,208020
,4,33,208025
,4,42,208030
,4,43,340
,4,45,208035
,4,54,208040
,4,55,207970
,4,57,208045
,4,58,207975
,4,60,208050
,4,63,208055
,4,69,208060
,4,72,208065
,4,75,208070
,4,76,207980
,4,78,208075
,4,79,207985
,4,81,208080
,4,87,208085
,4,90,208090
,4,93,208095
,4,96,208100
,4,99,208105
,2,35551,1070
,3,36244,198805
,1,0,208125
,1,1,208130
,1,2,208135
,1,3,208140
,1,4,208145
,1,5,208150
,1,6,208155
,1,7,208160
,1,8,208165
,1,9,208170
,1,10,208175
,1,11,208180
,2,35551,1070
,3,36314,208185
,3,36244,198805
,1,0,30905
,1,1,30910
,1,2,30915
,1,3,30920
,1,4,30925
,1,5,30930
,1,6,30935
,1,7,30940
,1,8,30945
,1,9,30950
,1,10,30955
,1,11,30960
,1,12,30965
,1,13,30970
,1,14,30975
,1,15,30980
,1,16,30985
,1,17,30990
,1,18,30995
,1,19,31000
,1,20,31005
,1,21,31010
,1,22,31015
,1,23,31020
,1,24,31025
,1,25,31030
,1,26,31035
,1,27,31040
,1,28,31045
,1,29,31050
,1,30,31055
,1,31,31060
,1,32,31065
,1,33,31070
,1,34,31075
,1,35,31080
,1,36,31085
,1,37,31090
,1,38,31095
,1,39,31100
,1,40,31105
,1,41,31110
,1,42,31115
,1,43,31120
,1,44,31125
,1,45,31130
,1,46,31135
,1,47,31140
,1,48,31145
,1,49,31150
,1,50,31155
,1,51,31160
,1,52,31165
,1,53,31170
,1,54,31175
,1,55,31180
,1,56,31185
,1,57,31190
,1,58,31195
,1,59,31200
,1,60,31205
,1,61,31210
,1,62,31215
,1,63,31220
,1,64,31225
,1,65,31230
,1,66,31235
,1,67,31240
,1,68,31245
,1,69,31250
,1,70,31255
,1,71,31260
,1,72,31265
,1,73,31270
,1,74,31275
,1,75,31280
,1,76,31285
,1,77,31290
,1,78,31295
,1,79,31300
,1,80,31305
,1,81,31310
,1,82,31315
,1,83,31320
,1,84,31325
,1,85,31330
,1,86,31335
,1,87,31340
,1,88,31345
,1,89,31350
,1,90,31355
,1,91,31360
,1,92,31365
,1,93,31370
,1,94,31375
,1,95,31380
,1,96,31385
,1,97,31390
,1,98,31395
,1,99,31400
,1,100,31405
,1,101,31410
,1,102,31415
,1,103,31420
,1,104,31425
,1,105,31430
,1,106,31435
,1,107,31440
,1,108,31445
,1,109,31450
,1,110,31455
,1,111,31460
,1,112,31465
,1,113,31470
,1,114,31475
,1,115,31480
,1,116,31485
,1,117,31490
,1,118,31495
,1,119,31500
,1,120,31505
,1,121,31510
,1,122,31515
,1,123,31520
,1,124,31525
,1,125,31530
,1,126,31535
,1,127,31540
,1,128,31545
,1,129,31550
,1,130,31555
,1,131,31560
,1,132,31565
,1,133,31570
,1,134,31575
,1,135,31580
,1,136,31585
,1,137,31590
,1,138,31595
,1,139,31600
,1,140,31605
,1,141,31610
,1,142,31615
,1,143,31620
,1,144,31625
,1,145,31630
,1,146,31635
,1,147,31640
,1,148,31645
,1,149,31650
,1,150,31655
,1,151,31660
,1,152,31665
,1,153,31670
,1,154,31675
,1,155,31680
,1,156,31685
,1,157,31690
,1,158,31695
,1,159,31700
,1,160,31705
,1,161,31710
,1,162,31715
,1,163,31720
,1,164,31725
,1,165,31730
,1,166,31735
,1,167,31740
,1,168,31745
,1,169,31750
,1,170,31755
,1,171,31760
,1,172,31765
,1,173,31770
,1,174,31775
,1,175,31780
,1,176,31785
,1,177,31790
,1,178,31795
,1,179,31800
,1,180,31805
,1,181,31810
,1,182,31815
,1,183,31820
,1,184,31825
,1,185,31830
,1,186,31835
,1,187,31840
,1,188,31845
,1,189,31850
,1,190,31855
,1,191,31860
,1,192,31865
,1,193,31870
,1,194,31875
,1,195,31880
,1,196,31885
,1,197,31890
,1,198,31895
,1,199,31900
,1,200,31905
,1,201,31910
,1,202,31915
,1,203,31920
,1,204,31925
,1,205,31930
,1,206,31935
,1,207,31940
,1,208,31945
,1,209,31950
,1,210,31955
,1,211,31960
,1,212,31965
,1,213,31970
,1,214,31975
,1,215,31980
,1,216,31985
,1,217,31990
,1,218,31995
,1,219,32000
,1,220,32005
,1,221,32010
,1,222,32015
,1,223,32020
,1,224,32025
,1,225,32030
,1,226,32035
,1,227,32040
,1,228,32045
,1,229,32050
,1,230,32055
,1,231,32060
,1,232,32065
,1,233,32070
,1,234,32075
,1,235,32080
,1,236,32085
,1,237,32090
,1,238,32095
,1,239,32100
,1,240,32105
,1,241,32110
,1,242,32115
,1,243,32120
,1,244,32125
,1,245,32130
,1,246,32135
,1,247,32140
,1,248,32145
,1,249,32150
,1,250,32155
,1,251,32160
,1,252,32165
,1,253,32170
,1,254,32175
,1,255,32180
,1,256,32185
,1,257,32190
,1,258,32195
,1,259,32200
,1,260,32205
,1,261,32210
,1,262,32215
,1,263,32220
,1,264,32225
,1,265,32230
,1,266,32235
,1,267,32240
,1,268,32245
,1,269,32250
,1,270,32255
,1,271,32260
,1,272,32265
,1,273,32270
,1,274,32275
,1,275,32280
,1,276,32285
,1,277,32290
,1,278,32295
,1,279,32300
,1,280,32305
,1,281,32310
,1,282,32315
,1,283,32320
,1,284,32325
,1,285,32330
,1,286,32335
,1,287,32340
,1,288,32345
,1,289,32350
,1,290,32355
,1,291,32360
,1,292,32365
,1,293,32370
,1,294,32375
,1,295,32380
,1,296,32385
,1,297,32390
,1,298,32395
,1,299,32400
,1,300,32405
,1,301,32410
,1,302,32415
,1,303,32420
,1,304,32425
,1,305,32430
,1,306,32435
,1,307,32440
,1,308,32445
,1,309,32450
,1,310,32455
,1,311,32460
,1,312,32465
,1,313,32470
,1,314,32475
,1,315,32480
,1,316,32485
,1,317,32490
,1,318,32495
,1,319,32500
,1,320,32505
,1,321,32510
,1,322,32515
,1,323,32520
,1,324,32525
,1,325,32530
,1,326,32535
,1,327,32540
,1,328,32545
,1,329,32550
,1,330,32555
,1,331,32560
,1,332,32565
,1,333,32570
,1,334,32575
,1,335,32580
,1,336,32585
,1,337,32590
,1,338,32595
,1,339,32600
,1,340,32605
,1,341,32610
,1,342,32615
,1,343,32620
,1,344,32625
,1,345,32630
,1,346,32635
,1,347,32640
,1,348,32645
,1,349,32650
,1,350,32655
,1,351,32660
,1,352,32665
,1,353,32670
,1,354,32675
,1,355,32680
,1,356,32685
,1,357,32690
,1,358,32695
,1,359,32700
,1,360,32705
,1,361,32710
,1,362,32715
,1,363,32720
,1,364,32725
,1,365,32730
,1,366,32735
,1,367,32740
,1,368,32745
,1,369,32750
,1,370,32755
,1,371,32760
,1,372,32765
,1,373,32770
,1,374,32775
,1,375,32780
,1,376,32785
,1,377,32790
,1,378,32795
,1,379,32800
,1,380,32805
,1,381,32810
,1,382,32815
,1,383,32820
,1,384,32825
,1,385,32830
,1,386,32835
,1,387,32840
,1,388,32845
,1,389,32850
,1,390,32855
,1,391,32860
,1,392,32865
,1,393,32870
,1,394,32875
,1,395,32880
,1,396,32885
,1,397,32890
,1,398,32895
,1,399,32900
,1,400,32905
,1,401,32910
,1,402,32915
,1,403,32920
,1,404,32925
,1,405,32930
,1,406,32935
,1,407,32940
,1,408,32945
,1,409,32950
,1,410,32955
,1,411,32960
,1,412,32965
,1,413,32970
,1,414,32975
,1,415,32980
,1,416,32985
,1,417,32990
,1,418,32995
,1,419,33000
,1,420,33005
,1,421,33010
,1,422,33015
,1,423,33020
,1,424,33025
,1,425,33030
,1,426,33035
,1,427,33040
,1,428,33045
,1,429,33050
,1,430,33055
,1,431,33060
,1,432,33065
,1,433,33070
,1,434,33075
,1,435,33080
,1,436,33085
,1,437,33090
,1,438,33095
,1,439,33100
,1,440,33105
,1,441,33110
,1,442,33115
,1,443,33120
,1,444,33125
,1,445,33130
,1,446,33135
,1,447,33140
,1,448,33145
,1,449,33150
,1,450,33155
,1,451,33160
,1,452,33165
,1,453,33170
,1,454,33175
,1,455,33180
,1,456,33185
,1,457,33190
,1,458,33195
,1,459,33200
,1,460,33205
,1,461,33210
,1,462,33215
,1,463,33220
,1,464,33225
,1,465,33230
,1,466,33235
,1,467,33240
,1,468,33245
,1,469,33250
,1,470,33255
,1,471,33260
,1,472,33265
,1,473,33270
,1,474,33275
,1,475,33280
,1,476,33285
,1,477,33290
,1,478,33295
,1,479,33300
,1,480,33305
,1,481,33310
,1,482,33315
,1,483,33320
,1,484,33325
,1,485,33330
,1,486,33335
,1,487,33340
,1,488,33345
,1,489,33350
,1,490,33355
,1,491,33360
,1,492,33365
,1,493,33370
,1,494,33375
,1,495,33380
,1,496,33385
,1,497,33390
,1,498,33395
,1,499,33400
,1,500,33405
,1,501,33410
,1,502,33415
,1,503,33420
,1,504,33425
,1,505,33430
,1,506,33435
,1,507,33440
,1,508,33445
,1,509,33450
,1,510,33455
,1,511,33460
,1,512,33465
,1,513,33470
,1,514,33475
,1,515,33480
,1,516,33485
,1,517,33490
,1,518,33495
,1,519,33500
,1,520,33505
,1,521,33510
,1,522,33515
,1,523,33520
,1,524,33525
,1,525,33530
,1,526,33535
,1,527,33540
,1,528,33545
,1,529,33550
,1,530,33555
,1,531,33560
,1,532,33565
,1,533,33570
,1,534,33575
,1,535,33580
,1,536,33585
,1,537,33590
,1,538,33595
,1,539,33600
,1,540,33605
,1,541,33610
,1,542,33615
,1,543,33620
,1,544,33625
,1,545,33630
,1,546,33635
,1,547,33640
,1,548,33645
,1,549,33650
,1,550,33655
,1,551,33660
,1,552,33665
,1,553,33670
,1,554,33675
,1,555,33680
,1,556,33685
,1,557,33690
,1,558,33695
,1,559,33700
,1,560,33705
,1,561,33710
,1,562,33715
,1,563,33720
,1,564,33725
,1,565,33730
,1,566,33735
,1,567,33740
,1,568,33745
,1,569,33750
,1,570,33755
,1,571,33760
,1,572,33765
,1,573,33770
,1,574,33775
,1,575,33780
,1,576,33785
,1,577,33790
,1,578,33795
,1,579,33800
,1,580,33805
,1,581,33810
,1,582,33815
,1,583,33820
,1,584,33825
,1,585,33830
,1,586,33835
,1,587,33840
,1,588,33845
,1,589,33850
,1,590,33855
,1,591,33860
,1,592,33865
,1,593,33870
,1,594,33875
,1,595,33880
,1,596,33885
,1,597,33890
,1,598,33895
,1,599,33900
,1,600,33905
,1,601,33910
,1,602,33915
,1,603,33920
,1,604,33925
,1,605,33930
,1,606,33935
,1,607,33940
,1,608,33945
,1,609,33950
,1,610,33955
,1,611,33960
,1,612,33965
,1,613,33970
,1,614,33975
,1,615,33980
,1,616,33985
,1,617,33990
,1,618,33995
,1,619,34000
,1,620,34005
,1,621,34010
,1,622,34015
,1,623,34020
,1,624,34025
,1,625,34030
,1,626,34035
,1,627,34040
,1,628,34045
,1,629,34050
,1,630,34055
,1,631,34060
,1,632,34065
,1,633,34070
,1,634,34075
,1,635,34080
,1,636,34085
,1,637,34090
,1,638,34095
,1,639,34100
,1,640,34105
,1,641,34110
,1,642,34115
,1,643,34120
,1,644,34125
,1,645,34130
,1,646,34135
,1,647,34140
,1,648,34145
,1,649,34150
,1,650,34155
,1,651,34160
,1,652,34165
,1,653,34170
,1,654,34175
,1,655,34180
,1,656,34185
,1,657,34190
,1,658,34195
,1,659,34200
,1,660,34205
,1,661,34210
,1,662,34215
,1,663,34220
,1,664,34225
,1,665,34230
,1,666,34235
,1,667,34240
,1,668,34245
,1,669,34250
,1,670,34255
,1,671,34260
,1,672,34265
,1,673,34270
,1,674,34275
,1,675,34280
,1,676,34285
,1,677,34290
,1,678,34295
,1,679,34300
,1,680,34305
,1,681,34310
,1,682,34315
,1,683,34320
,1,684,34325
,1,685,34330
,1,686,34335
,1,687,34340
,1,688,34345
,1,689,34350
,1,690,34355
,1,691,34360
,1,692,34365
,1,693,34370
,1,694,34375
,1,695,34380
,1,696,34385
,1,697,34390
,1,698,34395
,1,699,34400
,1,700,34405
,1,701,34410
,1,702,34415
,1,703,34420
,1,704,34425
,1,705,34430
,1,706,34435
,1,707,34440
,1,708,34445
,1,709,34450
,1,710,34455
,1,711,34460
,1,712,34465
,1,713,34470
,1,714,34475
,1,715,34480
,1,716,34485
,1,717,34490
,1,718,34495
,1,719,34500
,1,720,34505
,1,721,34510
,1,722,34515
,1,723,34520
,1,724,34525
,1,725,34530
,1,726,34535
,1,727,34540
,1,728,34545
,1,729,34550
,1,730,34555
,1,731,34560
,1,732,34565
,1,733,34570
,1,734,34575
,1,735,34580
,1,736,34585
,1,737,34590
,1,738,34595
,1,739,34600
,1,740,34605
,1,741,34610
,1,742,34615
,1,743,34620
,1,744,34625
,1,745,34630
,1,746,34635
,1,747,34640
,1,748,34645
,1,749,34650
,1,750,34655
,1,751,34660
,1,752,34665
,1,753,34670
,1,754,34675
,1,755,34680
,1,756,34685
,1,757,34690
,1,758,34695
,1,759,34700
,1,760,34705
,1,761,34710
,1,762,34715
,1,763,34720
,1,764,34725
,1,765,34730
,1,766,34735
,1,767,34740
,1,768,34745
,1,769,34750
,1,770,34755
,1,771,34760
,1,772,34765
,1,773,34770
,1,774,34775
,1,775,34780
,1,776,34785
,1,777,34790
,1,778,34795
,1,779,34800
,1,780,34805
,1,781,34810
,1,782,34815
,1,783,34820
,1,784,34825
,1,785,34830
,1,786,34835
,1,787,34840
,1,788,34845
,1,789,34850
,1,790,34855
,1,791,34860
,1,792,34865
,1,793,34870
,1,794,34875
,1,795,34880
,1,796,34885
,1,797,34890
,1,798,34895
,1,799,34900
,1,800,34905
,1,801,34910
,1,802,34915
,1,803,34920
,1,804,34925
,1,805,34930
,1,806,34935
,1,807,34940
,1,808,34945
,1,809,34950
,1,810,34955
,1,811,34960
,1,812,34965
,1,813,34970
,1,814,34975
,1,815,34980
,1,816,34985
,1,817,34990
,1,818,34995
,1,819,35000
,1,820,35005
,1,821,35010
,1,822,35015
,1,823,35020
,1,824,35025
,1,825,35030
,1,826,35035
,1,827,35040
,1,828,35045
,1,829,35050
,1,830,35055
,1,831,35060
,1,832,35065
,1,833,35070
,1,834,35075
,1,835,35080
,1,836,35085
,1,837,35090
,1,838,35095
,1,839,35100
,1,840,35105
,1,841,35110
,1,842,35115
,1,843,35120
,1,844,35125
,1,845,35130
,1,846,35135
,1,847,35140
,1,848,35145
,1,849,35150
,1,850,35155
,1,851,35160
,1,852,35165
,1,853,35170
,1,854,35175
,1,855,35180
,1,856,35185
,1,857,35190
,1,858,35195
,1,859,35200
,1,860,35205
,1,861,35210
,1,862,35215
,1,863,35220
,1,864,35225
,1,865,35230
,1,866,35235
,1,867,35240
,1,868,35245
,1,869,35250
,1,870,35255
,1,871,35260
,1,872,35265
,1,873,35270
,1,874,35275
,1,875,35280
,1,876,35285
,1,877,35290
,1,878,35295
,1,879,35300
,1,880,35305
,1,881,35310
,1,882,35315
,1,883,35320
,1,884,35325
,1,885,35330
,1,886,35335
,1,887,35340
,1,888,35345
,1,889,35350
,1,890,35355
,1,891,35360
,1,892,35365
,1,893,35370
,1,894,35375
,1,895,35380
,1,896,35385
,1,897,35390
,1,898,35395
,1,899,35400
,1,900,35405
,1,901,35410
,1,902,35415
,1,903,35420
,1,904,35425
,1,905,35430
,1,906,35435
,1,907,35440
,1,908,35445
,1,909,35450
,1,910,35455
,1,911,35460
,1,912,35465
,1,913,35470
,1,914,35475
,1,915,35480
,1,916,35485
,1,917,35490
,1,918,35495
,1,919,35500
,1,920,35505
,1,921,35510
,1,922,35515
,1,923,35520
,1,924,35525
,1,925,35530
,1,926,35535
,1,927,35540
,1,928,35545
,1,929,35550
,1,930,35555
,1,931,35560
,1,932,35565
,1,933,35570
,1,934,35575
,1,935,35580
,1,936,35585
,1,937,35590
,1,938,35595
,1,939,35600
,1,940,35605
,1,941,35610
,1,942,35615
,1,943,35620
,1,944,35625
,1,945,35630
,1,946,35635
,1,947,35640
,1,948,35645
,1,949,35650
,1,950,35655
,1,951,35660
,1,952,35665
,1,953,35670
,1,954,35675
,1,955,35680
,1,956,35685
,1,957,35690
,1,958,35695
,1,959,35700
,1,960,35705
,1,961,35710
,1,962,35715
,1,963,35720
,1,964,35725
,1,965,35730
,1,966,35735
,1,967,35740
,1,968,35745
,1,969,35750
,1,970,35755
,1,971,35760
,1,972,35765
,1,973,35770
,1,974,35775
,1,975,35780
,1,976,35785
,1,977,35790
,1,978,35795
,1,979,35800
,1,980,35805
,1,981,35810
,1,982,35815
,1,983,35820
,1,984,35825
,1,985,35830
,1,986,35835
,1,987,35840
,1,988,35845
,1,989,35850
,1,990,35855
,1,991,35860
,1,992,35865
,1,993,35870
,1,994,35875
,1,995,35880
,1,996,35885
,1,997,35890
,1,998,35895
,1,999,35900
,1,1000,35905
,1,1001,35910
,1,1002,35915
,1,1003,35920
,1,1004,35925
,1,1005,35930
,1,1006,35935
,1,1007,35940
,1,1008,35945
,1,1009,35950
,1,1010,35955
,1,1011,35960
,1,1012,35965
,1,1013,35970
,1,1014,35975
,1,1015,35980
,1,1016,35985
,1,1017,35990
,1,1018,35995
,1,1019,36000
,1,1020,36005
,1,1021,36010
,1,1022,36015
,1,1023,36020
,1,1024,36025
,1,1025,36030
,1,1026,36035
,1,1027,36040
,1,1028,36045
,1,1029,36050
,1,1030,36055
,1,1031,36060
,1,1032,36065
,1,1033,36070
,1,1034,36075
,1,1035,36080
,1,1036,36085
,1,1037,36090
,1,1038,36095
,1,1039,36100
,1,1040,36105
,1,1041,36110
,1,1042,36115
,1,1043,36120
,1,1044,36125
,1,1045,36130
,1,1046,36135
,1,1047,36140
,1,1048,36145
,1,1049,36150
,1,1050,36155
,1,1051,36160
,1,1052,36165
,1,1053,36170
,1,1054,36175
,1,1055,36180
,1,1056,36185
,1,1057,36190
,1,1058,36195
,1,1059,36200
,1,1060,36205
,1,1061,36210
,1,1062,36215
,1,1063,36220
,1,1064,36225
,1,1065,36230
,1,1066,36235
,1,1067,36240
,1,1068,36245
,1,1069,36250
,1,1070,36255
,1,1071,36260
,1,1072,36265
,1,1073,36270
,1,1074,36275
,1,1075,36280
,1,1076,36285
,1,1077,36290
,1,1078,36295
,1,1079,36300
,1,1080,36305
,1,1081,36310
,1,1082,36315
,1,1083,36320
,1,1084,36325
,1,1085,36330
,1,1086,36335
,1,1087,36340
,1,1088,36345
,1,1089,36350
,1,1090,36355
,1,1091,36360
,1,1092,36365
,1,1093,36370
,1,1094,36375
,1,1095,36380
,1,1096,36385
,1,1097,36390
,1,1098,36395
,1,1099,36400
,1,1100,36405
,1,1101,36410
,1,1102,36415
,1,1103,36420
,1,1104,36425
,1,1105,36430
,1,1106,36435
,1,1107,36440
,1,1108,36445
,1,1109,36450
,1,1110,36455
,1,1111,36460
,1,1112,36465
,1,1113,36470
,1,1114,36475
,1,1115,36480
,1,1116,36485
,1,1117,36490
,1,1118,36495
,1,1119,36500
,1,1120,36505
,1,1121,36510
,1,1122,36515
,1,1123,36520
,1,1124,36525
,1,1125,36530
,1,1126,36535
,1,1127,36540
,1,1128,36545
,1,1129,36550
,1,1130,36555
,1,1131,36560
,1,1132,36565
,1,1133,36570
,1,1134,36575
,1,1135,36580
,1,1136,36585
,1,1137,36590
,1,1138,36595
,1,1139,36600
,1,1140,36605
,1,1141,36610
,1,1142,36615
,1,1143,36620
,1,1144,36625
,1,1145,36630
,1,1146,36635
,1,1147,36640
,1,1148,36645
,1,1149,36650
,1,1150,36655
,1,1151,36660
,1,1152,36665
,1,1153,36670
,1,1154,36675
,1,1155,36680
,1,1156,36685
,1,1157,36690
,1,1158,36695
,1,1159,36700
,1,1160,36705
,1,1161,36710
,1,1162,36715
,1,1163,36720
,1,1164,36725
,1,1165,36730
,1,1166,36735
,1,1167,36740
,1,1168,36745
,1,1169,36750
,1,1170,36755
,1,1171,36760
,1,1172,36765
,1,1173,36770
,1,1174,36775
,1,1175,36780
,1,1176,36785
,1,1177,36790
,1,1178,36795
,1,1179,36800
,1,1180,36805
,1,1181,36810
,1,1182,36815
,1,1183,36820
,1,1184,36825
,1,1185,36830
,1,1186,36835
,1,1187,36840
,1,1188,36845
,1,1189,36850
,1,1190,36855
,1,1191,36860
,1,1192,36865
,1,1193,36870
,1,1194,36875
,1,1195,36880
,1,1196,36885
,1,1197,36890
,1,1198,36895
,1,1199,36900
,1,1200,36905
,1,1201,36910
,1,1202,36915
,1,1203,36920
,1,1204,36925
,1,1205,36930
,1,1206,36935
,1,1207,36940
,1,1208,36945
,1,1209,36950
,1,1210,36955
,1,1211,36960
,1,1212,36965
,1,1213,36970
,1,1214,36975
,1,1215,36980
,1,1216,36985
,1,1217,36990
,1,1218,36995
,1,1219,37000
,1,1220,37005
,1,1221,37010
,1,1222,37015
,1,1223,37020
,1,1224,37025
,1,1225,37030
,1,1226,37035
,1,1227,37040
,1,1228,37045
,1,1229,37050
,1,1230,37055
,1,1231,37060
,1,1232,37065
,1,1233,37070
,1,1234,37075
,1,1235,37080
,1,1236,37085
,1,1237,37090
,1,1238,37095
,1,1239,37100
,1,1240,37105
,1,1241,37110
,1,1242,37115
,1,1243,37120
,1,1244,37125
,1,1245,37130
,1,1246,37135
,1,1247,37140
,1,1248,37145
,1,1249,37150
,1,1250,37155
,1,1251,37160
,1,1252,37165
,1,1253,37170
,1,1254,37175
,1,1255,37180
,1,1256,37185
,1,1257,37190
,1,1258,37195
,1,1259,37200
,1,1260,37205
,1,1261,37210
,1,1262,37215
,1,1263,37220
,1,1264,37225
,1,1265,37230
,1,1266,37235
,1,1267,37240
,1,1268,37245
,1,1269,37250
,1,1270,37255
,1,1271,37260
,1,1272,37265
,1,1273,37270
,1,1274,37275
,1,1275,37280
,1,1276,37285
,1,1277,37290
,1,1278,37295
,1,1279,37300
,1,1280,37305
,1,1281,37310
,1,1282,37315
,1,1283,37320
,1,1284,37325
,1,1285,37330
,1,1286,37335
,1,1287,37340
,1,1288,37345
,1,1289,37350
,1,1290,37355
,1,1291,37360
,1,1292,37365
,1,1293,37370
,1,1294,37375
,1,1295,37380
,1,1296,37385
,1,1297,37390
,1,1298,37395
,1,1299,37400
,1,1300,37405
,1,1301,37410
,1,1302,37415
,1,1303,37420
,1,1304,37425
,1,1305,37430
,1,1306,37435
,1,1307,37440
,1,1308,37445
,1,1309,37450
,1,1310,37455
,1,1311,37460
,1,1312,37465
,1,1313,37470
,1,1314,37475
,1,1315,37480
,1,1316,37485
,1,1317,37490
,1,1318,37495
,1,1319,37500
,1,1320,37505
,1,1321,37510
,1,1322,37515
,1,1323,37520
,1,1324,37525
,1,1325,37530
,1,1326,37535
,1,1327,37540
,1,1328,37545
,1,1329,37550
,1,1330,37555
,1,1331,37560
,1,1332,37565
,1,1333,37570
,1,1334,37575
,1,1335,37580
,1,1336,37585
,1,1337,37590
,1,1338,37595
,1,1339,37600
,1,1340,37605
,1,1341,37610
,1,1342,37615
,1,1343,37620
,1,1344,37625
,1,1345,37630
,1,1346,37635
,1,1347,37640
,1,1348,37645
,1,1349,37650
,1,1350,37655
,1,1351,37660
,1,1352,37665
,1,1353,37670
,1,1354,37675
,1,1355,37680
,1,1356,37685
,1,1357,37690
,1,1358,37695
,1,1359,37700
,1,1360,37705
,1,1361,37710
,1,1362,37715
,1,1363,37720
,1,1364,37725
,1,1365,37730
,1,1366,37735
,1,1367,37740
,1,1368,37745
,1,1369,37750
,1,1370,37755
,1,1371,37760
,1,1372,37765
,1,1373,37770
,1,1374,37775
,1,1375,37780
,1,1376,37785
,1,1377,37790
,1,1378,37795
,1,1379,37800
,1,1380,37805
,1,1381,37810
,1,1382,37815
,1,1383,37820
,1,1384,37825
,1,1385,37830
,1,1386,37835
,1,1387,37840
,1,1388,37845
,1,1389,37850
,1,1390,37855
,1,1391,37860
,1,1392,37865
,1,1393,37870
,1,1394,37875
,1,1395,37880
,1,1396,37885
,1,1397,37890
,1,1398,37895
,1,1399,37900
,1,1400,37905
,1,1401,37910
,1,1402,37915
,1,1403,37920
,1,1404,37925
,1,1405,37930
,1,1406,37935
,1,1407,37940
,1,1408,37945
,1,1409,37950
,1,1410,37955
,1,1411,37960
,1,1412,37965
,1,1413,37970
,1,1414,37975
,1,1415,37980
,1,1416,37985
,1,1417,37990
,1,1418,37995
,1,1419,38000
,1,1420,38005
,1,1421,38010
,1,1422,38015
,1,1423,38020
,1,1424,38025
,1,1425,38030
,1,1426,38035
,1,1427,38040
,1,1428,38045
,1,1429,38050
,1,1430,38055
,1,1431,38060
,1,1432,38065
,1,1433,38070
,1,1434,38075
,1,1435,38080
,1,1436,38085
,1,1437,38090
,1,1438,38095
,1,1439,38100
,1,1440,38105
,1,1441,38110
,1,1442,38115
,1,1443,38120
,1,1444,38125
,1,1445,38130
,1,1446,38135
,1,1447,38140
,1,1448,38145
,1,1449,38150
,1,1450,38155
,1,1451,38160
,1,1452,38165
,1,1453,38170
,1,1454,38175
,1,1455,38180
,1,1456,38185
,1,1457,38190
,1,1458,38195
,1,1459,38200
,1,1460,38205
,1,1461,38210
,1,1462,38215
,1,1463,38220
,1,1464,38225
,1,1465,38230
,1,1466,38235
,1,1467,38240
,1,1468,38245
,1,1469,38250
,1,1470,38255
,1,1471,38260
,1,1472,38265
,1,1473,38270
,1,1474,38275
,1,1475,38280
,1,1476,38285
,1,1477,38290
,1,1478,38295
,1,1479,38300
,1,1480,38305
,1,1481,38310
,1,1482,38315
,1,1483,38320
,1,1484,38325
,1,1485,38330
,1,1486,38335
,1,1487,38340
,1,1488,38345
,1,1489,38350
,1,1490,38355
,1,1491,38360
,1,1492,38365
,1,1493,38370
,1,1494,38375
,1,1495,38380
,1,1496,38385
,1,1497,38390
,1,1498,38395
,1,1499,38400
,1,1500,38405
,1,1501,38410
,1,1502,38415
,1,1503,38420
,1,1504,38425
,1,1505,38430
,1,1506,38435
,1,1507,38440
,1,1508,38445
,1,1509,38450
,1,1510,38455
,1,1511,38460
,1,1512,38465
,1,1513,38470
,1,1514,38475
,1,1515,38480
,1,1516,38485
,1,1517,38490
,1,1518,38495
,1,1519,38500
,1,1520,38505
,1,1521,38510
,1,1522,38515
,1,1523,38520
,1,1524,38525
,1,1525,38530
,1,1526,38535
,1,1527,38540
,1,1528,38545
,1,1529,38550
,1,1530,38555
,1,1531,38560
,1,1532,38565
,1,1533,38570
,1,1534,38575
,1,1535,38580
,1,1536,38585
,1,1537,38590
,1,1538,38595
,1,1539,38600
,1,1540,38605
,1,1541,38610
,1,1542,38615
,1,1543,38620
,1,1544,38625
,1,1545,38630
,1,1546,38635
,1,1547,38640
,1,1548,38645
,1,1549,38650
,1,1550,38655
,1,1551,38660
,1,1552,38665
,1,1553,38670
,1,1554,38675
,1,1555,38680
,1,1556,38685
,1,1557,38690
,1,1558,38695
,1,1559,38700
,1,1560,38705
,1,1561,38710
,1,1562,38715
,1,1563,38720
,1,1564,38725
,1,1565,38730
,1,1566,38735
,1,1567,38740
,1,1568,38745
,1,1569,38750
,1,1570,38755
,1,1571,38760
,1,1572,38765
,1,1573,38770
,1,1574,38775
,1,1575,38780
,1,1576,38785
,1,1577,38790
,1,1578,38795
,1,1579,38800
,1,1580,38805
,1,1581,38810
,1,1582,38815
,1,1583,38820
,1,1584,38825
,1,1585,38830
,1,1586,38835
,1,1587,38840
,1,1588,38845
,1,1589,38850
,1,1590,38855
,1,1591,38860
,1,1592,38865
,1,1593,38870
,1,1594,38875
,1,1595,38880
,1,1596,38885
,1,1597,38890
,1,1598,38895
,1,1599,38900
,1,1600,38905
,1,1601,38910
,1,1602,38915
,1,1603,38920
,1,1604,38925
,1,1605,38930
,1,1606,38935
,1,1607,38940
,1,1608,38945
,1,1609,38950
,1,1610,38955
,1,1611,38960
,1,1612,38965
,1,1613,38970
,1,1614,38975
,1,1615,38980
,1,1616,38985
,1,1617,38990
,1,1618,38995
,1,1619,39000
,1,1620,39005
,1,1621,39010
,1,1622,39015
,1,1623,39020
,1,1624,39025
,1,1625,39030
,1,1626,39035
,1,1627,39040
,1,1628,39045
,1,1629,39050
,1,1630,39055
,1,1631,39060
,1,1632,39065
,1,1633,39070
,1,1634,39075
,1,1635,39080
,1,1636,39085
,1,1637,39090
,1,1638,39095
,1,1639,39100
,1,1640,39105
,1,1641,39110
,1,1642,39115
,1,1643,39120
,1,1644,39125
,1,1645,39130
,1,1646,39135
,1,1647,39140
,1,1648,39145
,1,1649,39150
,1,1650,39155
,1,1651,39160
,1,1652,39165
,1,1653,39170
,1,1654,39175
,1,1655,39180
,1,1656,39185
,1,1657,39190
,1,1658,39195
,1,1659,39200
,1,1660,39205
,1,1661,39210
,1,1662,39215
,1,1663,39220
,1,1664,39225
,1,1665,39230
,1,1666,39235
,1,1667,39240
,1,1668,39245
,1,1669,39250
,1,1670,39255
,1,1671,39260
,1,1672,39265
,1,1673,39270
,1,1674,39275
,1,1675,39280
,1,1676,39285
,1,1677,39290
,1,1678,39295
,1,1679,39300
,1,1680,39305
,1,1681,39310
,1,1682,39315
,1,1683,39320
,1,1684,39325
,1,1685,39330
,1,1686,39335
,1,1687,39340
,1,1688,39345
,1,1689,39350
,1,1690,39355
,1,1691,39360
,1,1692,39365
,1,1693,39370
,1,1694,39375
,1,1695,39380
,1,1696,39385
,1,1697,39390
,1,1698,39395
,1,1699,39400
,1,1700,39405
,1,1701,39410
,1,1702,39415
,1,1703,39420
,1,1704,39425
,1,1705,39430
,1,1706,39435
,1,1707,39440
,1,1708,39445
,1,1709,39450
,1,1710,39455
,1,1711,39460
,1,1712,39465
,1,1713,39470
,1,1714,39475
,1,1715,39480
,1,1716,39485
,1,1717,39490
,1,1718,39495
,1,1719,39500
,1,1720,39505
,1,1721,39510
,1,1722,39515
,1,1723,39520
,1,1724,39525
,1,1725,39530
,1,1726,39535
,1,1727,39540
,1,1728,39545
,1,1729,39550
,1,1730,39555
,1,1731,39560
,1,1732,39565
,1,1733,39570
,1,1734,39575
,1,1735,39580
,1,1736,39585
,1,1737,39590
,1,1738,39595
,1,1739,39600
,1,1740,39605
,1,1741,39610
,1,1742,39615
,1,1743,39620
,1,1744,39625
,1,1745,39630
,1,1746,39635
,1,1747,39640
,1,1748,39645
,1,1749,39650
,1,1750,39655
,1,1751,39660
,1,1752,39665
,1,1753,39670
,1,1754,39675
,1,1755,39680
,1,1756,39685
,1,1757,39690
,1,1758,39695
,1,1759,39700
,1,1760,39705
,1,1761,39710
,1,1762,39715
,1,1763,39720
,1,1764,39725
,1,1765,39730
,1,1766,39735
,1,1767,39740
,1,1768,39745
,1,1769,39750
,1,1770,39755
,1,1771,39760
,1,1772,39765
,1,1773,39770
,1,1774,39775
,1,1775,39780
,1,1776,39785
,1,1777,39790
,1,1778,39795
,1,1779,39800
,1,1780,39805
,1,1781,39810
,1,1782,39815
,1,1783,39820
,1,1784,39825
,1,1785,39830
,1,1786,39835
,1,1787,39840
,1,1788,39845
,1,1789,39850
,1,1790,39855
,1,1791,39860
,1,1792,39865
,1,1793,39870
,1,1794,39875
,1,1795,39880
,1,1796,39885
,1,1797,39890
,1,1798,39895
,1,1799,39900
,1,1800,39905
,1,1801,39910
,1,1802,39915
,1,1803,39920
,1,1804,39925
,1,1805,39930
,1,1806,39935
,1,1807,39940
,1,1808,39945
,1,1809,39950
,1,1810,39955
,1,1811,39960
,1,1812,39965
,1,1813,39970
,1,1814,39975
,1,1815,39980
,1,1816,39985
,1,1817,39990
,1,1818,39995
,1,1819,40000
,1,1820,40005
,1,1821,40010
,1,1822,40015
,1,1823,40020
,1,1824,40025
,1,1825,40030
,1,1826,40035
,1,1827,40040
,1,1828,40045
,1,1829,40050
,1,1830,40055
,1,1831,40060
,1,1832,40065
,1,1833,40070
,1,1834,40075
,1,1835,40080
,1,1836,40085
,1,1837,40090
,1,1838,40095
,1,1839,40100
,1,1840,40105
,1,1841,40110
,1,1842,40115
,1,1843,40120
,1,1844,40125
,1,1845,40130
,1,1846,40135
,1,1847,40140
,1,1848,40145
,1,1849,40150
,1,1850,40155
,1,1851,40160
,1,1852,40165
,1,1853,40170
,1,1854,40175
,1,1855,40180
,1,1856,40185
,1,1857,40190
,1,1858,40195
,1,1859,40200
,1,1860,40205
,1,1861,40210
,1,1862,40215
,1,1863,40220
,1,1864,40225
,1,1865,40230
,1,1866,40235
,1,1867,40240
,1,1868,40245
,1,1869,40250
,1,1870,40255
,1,1871,40260
,1,1872,40265
,1,1873,40270
,1,1874,40275
,1,1875,40280
,1,1876,40285
,1,1877,40290
,1,1878,40295
,1,1879,40300
,1,1880,40305
,1,1881,40310
,1,1882,40315
,1,1883,40320
,1,1884,40325
,1,1885,40330
,1,1886,40335
,1,1887,40340
,1,1888,40345
,1,1889,40350
,1,1890,40355
,1,1891,40360
,1,1892,40365
,1,1893,40370
,1,1894,40375
,1,1895,40380
,1,1896,40385
,1,1897,40390
,1,1898,40395
,1,1899,40400
,1,1900,40405
,1,1901,40410
,1,1902,40415
,1,1903,40420
,1,1904,40425
,1,1905,40430
,1,1906,40435
,1,1907,40440
,1,1908,40445
,1,1909,40450
,1,1910,40455
,1,1911,40460
,1,1912,40465
,1,1913,40470
,1,1914,40475
,1,1915,40480
,1,1916,40485
,1,1917,40490
,1,1918,40495
,1,1919,40500
,1,1920,40505
,1,1921,40510
,1,1922,40515
,1,1923,40520
,1,1924,40525
,1,1925,40530
,1,1926,40535
,1,1927,40540
,1,1928,40545
,1,1929,40550
,1,1930,40555
,1,1931,40560
,1,1932,40565
,1,1933,40570
,1,1934,40575
,1,1935,40580
,1,1936,40585
,1,1937,40590
,1,1938,40595
,1,1939,40600
,1,1940,40605
,1,1941,40610
,1,1942,40615
,1,1943,40620
,1,1944,40625
,1,1945,40630
,1,1946,40635
,1,1947,40640
,1,1948,40645
,1,1949,40650
,1,1950,40655
,1,1951,40660
,1,1952,40665
,1,1953,40670
,1,1954,40675
,1,1955,40680
,1,1956,40685
,1,1957,40690
,1,1958,40695
,1,1959,40700
,1,1960,40705
,1,1961,40710
,1,1962,40715
,1,1963,40720
,1,1964,40725
,1,1965,40730
,1,1966,40735
,1,1967,40740
,1,1968,40745
,1,1969,40750
,1,1970,40755
,1,1971,40760
,1,1972,40765
,1,1973,40770
,1,1974,40775
,1,1975,40780
,1,1976,40785
,1,1977,40790
,1,1978,40795
,1,1979,40800
,1,1980,40805
,1,1981,40810
,1,1982,40815
,1,1983,40820
,1,1984,40825
,1,1985,40830
,1,1986,40835
,1,1987,40840
,1,1988,40845
,1,1989,40850
,1,1990,40855
,1,1991,40860
,1,1992,40865
,1,1993,40870
,1,1994,40875
,1,1995,40880
,1,1996,40885
,1,1997,40890
,1,1998,40895
,1,1999,40900
,1,2000,40905
,1,2001,40910
,1,2002,40915
,1,2003,40920
,1,2004,40925
,1,2005,40930
,1,2006,40935
,1,2007,40940
,1,2008,40945
,1,2009,40950
,1,2010,40955
,1,2011,40960
,1,2012,40965
,1,2013,40970
,1,2014,40975
,1,2015,40980
,1,2016,40985
,1,2017,40990
,1,2018,40995
,1,2019,41000
,1,2020,41005
,1,2021,41010
,1,2022,41015
,1,2023,41020
,1,2024,41025
,1,2025,41030
,1,2026,41035
,1,2027,41040
,1,2028,41045
,1,2029,41050
,1,2030,41055
,1,2031,41060
,1,2032,41065
,1,2033,41070
,1,2034,41075
,1,2035,41080
,1,2036,41085
,1,2037,41090
,1,2038,41095
,1,2039,41100
,1,2040,41105
,1,2041,41110
,1,2042,41115
,1,2043,41120
,1,2044,41125
,1,2045,41130
,1,2046,41135
,1,2047,41140
,1,2048,41145
,1,2049,41150
,1,2050,41155
,1,2051,41160
,1,2052,41165
,1,2053,41170
,1,2054,41175
,1,2055,41180
,1,2056,41185
,1,2057,41190
,1,2058,41195
,1,2059,41200
,1,2060,41205
,1,2061,41210
,1,2062,41215
,1,2063,41220
,1,2064,41225
,1,2065,41230
,1,2066,41235
,1,2067,41240
,1,2068,41245
,1,2069,41250
,1,2070,41255
,1,2071,41260
,1,2072,41265
,1,2073,41270
,1,2074,41275
,1,2075,41280
,1,2076,41285
,1,2077,41290
,1,2078,41295
,1,2079,41300
,1,2080,41305
,1,2081,41310
,1,2082,41315
,1,2083,41320
,1,2084,41325
,1,2085,41330
,1,2086,41335
,1,2087,41340
,1,2088,41345
,1,2089,41350
,1,2090,41355
,1,2091,41360
,1,2092,41365
,1,2093,41370
,1,2094,41375
,1,2095,41380
,1,2096,41385
,1,2097,41390
,1,2098,41395
,1,2099,41400
,1,2100,41405
,1,2101,41410
,1,2102,41415
,1,2103,41420
,1,2104,41425
,1,2105,41430
,1,2106,41435
,1,2107,41440
,1,2108,41445
,1,2109,41450
,1,2110,41455
,1,2111,41460
,1,2112,41465
,1,2113,41470
,1,2114,41475
,1,2115,41480
,1,2116,41485
,1,2117,41490
,1,2118,41495
,1,2119,41500
,1,2120,41505
,1,2121,41510
,1,2122,41515
,1,2123,41520
,1,2124,41525
,1,2125,41530
,1,2126,41535
,1,2127,41540
,1,2128,41545
,1,2129,41550
,1,2130,41555
,1,2131,41560
,1,2132,41565
,1,2133,41570
,1,2134,41575
,1,2135,41580
,1,2136,41585
,1,2137,41590
,1,2138,41595
,1,2139,41600
,1,2140,41605
,1,2141,41610
,1,2142,41615
,1,2143,41620
,1,2144,41625
,1,2145,41630
,1,2146,41635
,1,2147,41640
,1,2148,41645
,1,2149,41650
,1,2150,41655
,1,2151,41660
,1,2152,41665
,1,2153,41670
,1,2154,41675
,1,2155,41680
,1,2156,41685
,1,2157,41690
,1,2158,41695
,1,2159,41700
,1,2160,41705
,1,2161,41710
,1,2162,41715
,1,2163,41720
,1,2164,41725
,1,2165,41730
,1,2166,41735
,1,2167,41740
,1,2168,41745
,1,2169,41750
,1,2170,41755
,1,2171,41760
,1,2172,41765
,1,2173,41770
,1,2174,41775
,1,2175,41780
,1,2176,41785
,1,2177,41790
,1,2178,41795
,1,2179,41800
,1,2180,41805
,1,2181,41810
,1,2182,41815
,1,2183,41820
,1,2184,41825
,1,2185,41830
,1,2186,41835
,1,2187,41840
,1,2188,41845
,1,2189,41850
,1,2190,41855
,1,2191,41860
,1,2192,41865
,1,2193,41870
,1,2194,41875
,1,2195,41880
,1,2196,41885
,1,2197,41890
,1,2198,41895
,1,2199,41900
,1,2200,41905
,1,2201,41910
,1,2202,41915
,1,2203,41920
,1,2204,41925
,1,2205,41930
,1,2206,41935
,1,2207,41940
,1,2208,41945
,1,2209,41950
,1,2210,41955
,1,2211,41960
,1,2212,41965
,1,2213,41970
,1,2214,41975
,1,2215,41980
,1,2216,41985
,1,2217,41990
,1,2218,41995
,1,2219,42000
,1,2220,42005
,1,2221,42010
,1,2222,42015
,1,2223,42020
,1,2224,42025
,1,2225,42030
,1,2226,42035
,1,2227,42040
,1,2228,42045
,1,2229,42050
,1,2230,42055
,1,2231,42060
,1,2232,42065
,1,2233,42070
,1,2234,42075
,1,2235,42080
,1,2236,42085
,1,2237,42090
,1,2238,42095
,1,2239,42100
,1,2240,42105
,1,2241,42110
,1,2242,42115
,1,2243,42120
,1,2244,42125
,1,2245,42130
,1,2246,42135
,1,2247,42140
,1,2248,42145
,1,2249,42150
,1,2250,42155
,1,2251,42160
,1,2252,42165
,1,2253,42170
,1,2254,42175
,1,2255,42180
,1,2256,42185
,1,2257,42190
,1,2258,42195
,1,2259,42200
,1,2260,42205
,1,2261,42210
,1,2262,42215
,1,2263,42220
,1,2264,42225
,1,2265,42230
,1,2266,42235
,1,2267,42240
,1,2268,42245
,1,2269,42250
,1,2270,42255
,1,2271,42260
,1,2272,42265
,1,2273,42270
,1,2274,42275
,1,2275,42280
,1,2276,42285
,1,2277,42290
,1,2278,42295
,1,2279,42300
,1,2280,42305
,1,2281,42310
,1,2282,42315
,1,2283,42320
,1,2284,42325
,1,2285,42330
,1,2286,42335
,1,2287,42340
,1,2288,42345
,1,2289,42350
,1,2290,42355
,1,2291,42360
,1,2292,42365
,1,2293,42370
,1,2294,42375
,1,2295,42380
,1,2296,42385
,1,2297,42390
,1,2298,42395
,1,2299,42400
,1,2300,42405
,1,2301,42410
,1,2302,42415
,1,2303,42420
,1,2304,42425
,1,2305,42430
,1,2306,42435
,1,2307,42440
,1,2308,42445
,1,2309,42450
,1,2310,42455
,1,2311,42460
,1,2312,42465
,1,2313,42470
,1,2314,42475
,1,2315,42480
,1,2316,42485
,1,2317,42490
,1,2318,42495
,1,2319,42500
,1,2320,42505
,1,2321,42510
,1,2322,42515
,1,2323,42520
,1,2324,42525
,1,2325,42530
,1,2326,42535
,1,2327,42540
,1,2328,42545
,1,2329,42550
,1,2330,42555
,1,2331,42560
,1,2332,42565
,1,2333,42570
,1,2334,42575
,1,2335,42580
,1,2336,42585
,1,2337,42590
,1,2338,42595
,1,2339,42600
,1,2340,42605
,1,2341,42610
,1,2342,42615
,1,2343,42620
,1,2344,42625
,1,2345,42630
,1,2346,42635
,1,2347,42640
,1,2348,42645
,1,2349,42650
,1,2350,42655
,1,2351,42660
,1,2352,42665
,1,2353,42670
,1,2354,42675
,1,2355,42680
,1,2356,42685
,1,2357,42690
,1,2358,42695
,1,2359,42700
,1,2360,42705
,1,2361,42710
,1,2362,42715
,1,2363,42720
,1,2364,42725
,1,2365,42730
,1,2366,42735
,1,2367,42740
,1,2368,42745
,1,2369,42750
,1,2370,42755
,1,2371,42760
,1,2372,42765
,1,2373,42770
,1,2374,42775
,1,2375,42780
,1,2376,42785
,1,2377,42790
,1,2378,42795
,1,2379,42800
,1,2380,42805
,1,2381,42810
,1,2382,42815
,1,2383,42820
,1,2384,42825
,1,2385,42830
,1,2386,42835
,1,2387,42840
,1,2388,42845
,1,2389,42850
,1,2390,42855
,1,2391,42860
,1,2392,42865
,1,2393,42870
,1,2394,42875
,1,2395,42880
,1,2396,42885
,1,2397,42890
,1,2398,42895
,1,2399,42900
,1,2400,42905
,1,2401,42910
,1,2402,42915
,1,2403,42920
,1,2404,42925
,1,2405,42930
,1,2406,42935
,1,2407,42940
,1,2408,42945
,1,2409,42950
,1,2410,42955
,1,2411,42960
,1,2412,42965
,1,2413,42970
,1,2414,42975
,1,2415,42980
,1,2416,42985
,1,2417,42990
,1,2418,42995
,1,2419,43000
,1,2420,43005
,1,2421,43010
,1,2422,43015
,1,2423,43020
,1,2424,43025
,1,2425,43030
,1,2426,43035
,1,2427,43040
,1,2428,43045
,1,2429,43050
,1,2430,43055
,1,2431,43060
,1,2432,43065
,1,2433,43070
,1,2434,43075
,1,2435,43080
,1,2436,43085
,1,2437,43090
,1,2438,43095
,1,2439,43100
,1,2440,43105
,1,2441,43110
,1,2442,43115
,1,2443,43120
,1,2444,43125
,1,2445,43130
,1,2446,43135
,1,2447,43140
,1,2448,43145
,1,2449,43150
,1,2450,43155
,1,2451,43160
,1,2452,43165
,1,2453,43170
,1,2454,43175
,1,2455,43180
,1,2456,43185
,1,2457,43190
,1,2458,43195
,1,2459,43200
,1,2460,43205
,1,2461,43210
,1,2462,43215
,1,2463,43220
,1,2464,43225
,1,2465,43230
,1,2466,43235
,1,2467,43240
,1,2468,43245
,1,2469,43250
,1,2470,43255
,1,2471,43260
,1,2472,43265
,1,2473,43270
,1,2474,43275
,1,2475,43280
,1,2476,43285
,1,2477,43290
,1,2478,43295
,1,2479,43300
,1,2480,43305
,1,2481,43310
,1,2482,43315
,1,2483,43320
,1,2484,43325
,1,2485,43330
,1,2486,43335
,1,2487,43340
,1,2488,43345
,1,2489,43350
,1,2490,43355
,1,2491,43360
,1,2492,43365
,1,2493,43370
,1,2494,43375
,1,2495,43380
,1,2496,43385
,1,2497,43390
,1,2498,43395
,1,2499,43400
,1,2500,43405
,1,2501,43410
,1,2502,43415
,1,2503,43420
,1,2504,43425
,1,2505,43430
,1,2506,43435
,1,2507,43440
,1,2508,43445
,1,2509,43450
,1,2510,43455
,1,2511,43460
,1,2512,43465
,1,2513,43470
,1,2514,43475
,1,2515,43480
,1,2516,43485
,1,2517,43490
,1,2518,43495
,1,2519,43500
,1,2520,43505
,1,2521,43510
,1,2522,43515
,1,2523,43520
,1,2524,43525
,1,2525,43530
,1,2526,43535
,1,2527,43540
,1,2528,43545
,1,2529,43550
,1,2530,43555
,1,2531,43560
,1,2532,43565
,1,2533,43570
,1,2534,43575
,1,2535,43580
,1,2536,43585
,1,2537,43590
,1,2538,43595
,1,2539,43600
,1,2540,43605
,1,2541,43610
,1,2542,43615
,1,2543,43620
,1,2544,43625
,1,2545,43630
,1,2546,43635
,1,2547,43640
,1,2548,43645
,1,2549,43650
,1,2550,43655
,1,2551,43660
,1,2552,43665
,1,2553,43670
,1,2554,43675
,1,2555,43680
,1,2556,43685
,1,2557,43690
,1,2558,43695
,1,2559,43700
,1,2560,43705
,1,2561,43710
,1,2562,43715
,1,2563,43720
,1,2564,43725
,1,2565,43730
,1,2566,43735
,1,2567,43740
,1,2568,43745
,1,2569,43750
,1,2570,43755
,1,2571,43760
,1,2572,43765
,1,2573,43770
,1,2574,43775
,1,2575,43780
,1,2576,43785
,1,2577,43790
,1,2578,43795
,1,2579,43800
,1,2580,43805
,1,2581,43810
,1,2582,43815
,1,2583,43820
,1,2584,43825
,1,2585,43830
,1,2586,43835
,1,2587,43840
,1,2588,43845
,1,2589,43850
,1,2590,43855
,1,2591,43860
,1,2592,43865
,1,2593,43870
,1,2594,43875
,1,2595,43880
,1,2596,43885
,1,2597,43890
,1,2598,43895
,1,2599,43900
,1,2600,43905
,1,2601,43910
,1,2602,43915
,1,2603,43920
,1,2604,43925
,1,2605,43930
,1,2606,43935
,1,2607,43940
,1,2608,43945
,1,2609,43950
,1,2610,43955
,1,2611,43960
,1,2612,43965
,1,2613,43970
,1,2614,43975
,1,2615,43980
,1,2616,43985
,1,2617,43990
,1,2618,43995
,1,2619,44000
,1,2620,44005
,1,2621,44010
,1,2622,44015
,1,2623,44020
,1,2624,44025
,1,2625,44030
,1,2626,44035
,1,2627,44040
,1,2628,44045
,1,2629,44050
,1,2630,44055
,1,2631,44060
,1,2632,44065
,1,2633,44070
,1,2634,44075
,1,2635,44080
,1,2636,44085
,1,2637,44090
,1,2638,44095
,1,2639,44100
,1,2640,44105
,1,2641,44110
,1,2642,44115
,1,2643,44120
,1,2644,44125
,1,2645,44130
,1,2646,44135
,1,2647,44140
,1,2648,44145
,1,2649,44150
,1,2650,44155
,1,2651,44160
,1,2652,44165
,1,2653,44170
,1,2654,44175
,1,2655,44180
,1,2656,44185
,1,2657,44190
,1,2658,44195
,1,2659,44200
,1,2660,44205
,1,2661,44210
,1,2662,44215
,1,2663,44220
,1,2664,44225
,1,2665,44230
,1,2666,44235
,1,2667,44240
,1,2668,44245
,1,2669,44250
,1,2670,44255
,1,2671,44260
,1,2672,44265
,1,2673,44270
,1,2674,44275
,1,2675,44280
,1,2676,44285
,1,2677,44290
,1,2678,44295
,1,2679,44300
,1,2680,44305
,1,2681,44310
,1,2682,44315
,1,2683,44320
,1,2684,44325
,1,2685,44330
,1,2686,44335
,1,2687,44340
,1,2688,44345
,1,2689,44350
,1,2690,44355
,1,2691,44360
,1,2692,44365
,1,2693,44370
,1,2694,44375
,1,2695,44380
,1,2696,44385
,1,2697,44390
,1,2698,44395
,1,2699,44400
,1,2700,44405
,1,2701,44410
,1,2702,44415
,1,2703,44420
,1,2704,44425
,1,2705,44430
,1,2706,44435
,1,2707,44440
,1,2708,44445
,1,2709,44450
,1,2710,44455
,1,2711,44460
,1,2712,44465
,1,2713,44470
,1,2714,44475
,1,2715,44480
,1,2716,44485
,1,2717,44490
,1,2718,44495
,1,2719,44500
,1,2720,44505
,1,2721,44510
,1,2722,44515
,1,2723,44520
,1,2724,44525
,1,2725,44530
,1,2726,44535
,1,2727,44540
,1,2728,44545
,1,2729,44550
,1,2730,44555
,1,2731,44560
,1,2732,44565
,1,2733,44570
,1,2734,44575
,1,2735,44580
,1,2736,44585
,1,2737,44590
,1,2738,44595
,1,2739,44600
,1,2740,44605
,1,2741,44610
,1,2742,44615
,1,2743,44620
,1,2744,44625
,1,2745,44630
,1,2746,44635
,1,2747,44640
,1,2748,44645
,1,2749,44650
,1,2750,44655
,1,2751,44660
,1,2752,44665
,1,2753,44670
,1,2754,44675
,1,2755,44680
,1,2756,44685
,1,2757,44690
,1,2758,44695
,1,2759,44700
,1,2760,44705
,1,2761,44710
,1,2762,44715
,1,2763,44720
,1,2764,44725
,1,2765,44730
,1,2766,44735
,1,2767,44740
,1,2768,44745
,1,2769,44750
,1,2770,44755
,1,2771,44760
,1,2772,44765
,1,2773,44770
,1,2774,44775
,1,2775,44780
,1,2776,44785
,1,2777,44790
,1,2778,44795
,1,2779,44800
,1,2780,44805
,1,2781,44810
,1,2782,44815
,1,2783,44820
,1,2784,44825
,1,2785,44830
,1,2786,44835
,1,2787,44840
,1,2788,44845
,1,2789,44850
,1,2790,44855
,1,2791,44860
,1,2792,44865
,1,2793,44870
,1,2794,44875
,1,2795,44880
,1,2796,44885
,1,2797,44890
,1,2798,44895
,1,2799,44900
,1,2800,44905
,1,2801,44910
,1,2802,44915
,1,2803,44920
,1,2804,44925
,1,2805,44930
,1,2806,44935
,1,2807,44940
,1,2808,44945
,1,2809,44950
,1,2810,44955
,1,2811,44960
,1,2812,44965
,1,2813,44970
,1,2814,44975
,1,2815,44980
,1,2816,44985
,1,2817,44990
,1,2818,44995
,1,2819,45000
,1,2820,45005
,1,2821,45010
,1,2822,45015
,1,2823,45020
,1,2824,45025
,1,2825,45030
,1,2826,45035
,1,2827,45040
,1,2828,45045
,1,2829,45050
,1,2830,45055
,1,2831,45060
,1,2832,45065
,1,2833,45070
,1,2834,45075
,1,2835,45080
,1,2836,45085
,1,2837,45090
,1,2838,45095
,1,2839,45100
,1,2840,45105
,1,2841,45110
,1,2842,45115
,1,2843,45120
,1,2844,45125
,1,2845,45130
,1,2846,45135
,1,2847,45140
,1,2848,45145
,1,2849,45150
,1,2850,45155
,1,2851,45160
,1,2852,45165
,1,2853,45170
,1,2854,45175
,1,2855,45180
,1,2856,45185
,1,2857,45190
,1,2858,45195
,1,2859,45200
,1,2860,45205
,1,2861,45210
,1,2862,45215
,1,2863,45220
,1,2864,45225
,1,2865,45230
,1,2866,45235
,1,2867,45240
,1,2868,45245
,1,2869,45250
,1,2870,45255
,1,2871,45260
,1,2872,45265
,1,2873,45270
,1,2874,45275
,1,2875,45280
,1,2876,45285
,1,2877,45290
,1,2878,45295
,1,2879,45300
,1,2880,45305
,1,2881,45310
,1,2882,45315
,1,2883,45320
,1,2884,45325
,1,2885,45330
,1,2886,45335
,1,2887,45340
,1,2888,45345
,1,2889,45350
,1,2890,45355
,1,2891,45360
,1,2892,45365
,1,2893,45370
,1,2894,45375
,1,2895,45380
,1,2896,45385
,1,2897,45390
,1,2898,45395
,1,2899,45400
,1,2900,45405
,1,2901,45410
,1,2902,45415
,1,2903,45420
,1,2904,45425
,1,2905,45430
,1,2906,45435
,1,2907,45440
,1,2908,45445
,1,2909,45450
,1,2910,45455
,1,2911,45460
,1,2912,45465
,1,2913,45470
,1,2914,45475
,1,2915,45480
,1,2916,45485
,1,2917,45490
,1,2918,45495
,1,2919,45500
,1,2920,45505
,1,2921,45510
,1,2922,45515
,1,2923,45520
,1,2924,45525
,1,2925,45530
,1,2926,45535
,1,2927,45540
,1,2928,45545
,1,2929,45550
,1,2930,45555
,1,2931,45560
,1,2932,45565
,1,2933,45570
,1,2934,45575
,1,2935,45580
,1,2936,45585
,1,2937,45590
,1,2938,45595
,1,2939,45600
,1,2940,45605
,1,2941,45610
,1,2942,45615
,1,2943,45620
,1,2944,45625
,1,2945,45630
,1,2946,45635
,1,2947,45640
,1,2948,45645
,1,2949,45650
,1,2950,45655
,1,2951,45660
,1,2952,45665
,1,2953,45670
,1,2954,45675
,1,2955,45680
,1,2956,45685
,1,2957,45690
,1,2958,45695
,1,2959,45700
,1,2960,45705
,1,2961,45710
,1,2962,45715
,1,2963,45720
,1,2964,45725
,1,2965,45730
,1,2966,45735
,1,2967,45740
,1,2968,45745
,1,2969,45750
,1,2970,45755
,1,2971,45760
,1,2972,45765
,1,2973,45770
,1,2974,45775
,1,2975,45780
,1,2976,45785
,1,2977,45790
,1,2978,45795
,1,2979,45800
,1,2980,45805
,1,2981,45810
,1,2982,45815
,1,2983,45820
,1,2984,45825
,1,2985,45830
,1,2986,45835
,1,2987,45840
,1,2988,45845
,1,2989,45850
,1,2990,45855
,1,2991,45860
,1,2992,45865
,1,2993,45870
,1,2994,45875
,1,2995,45880
,1,2996,45885
,1,2997,45890
,1,2998,45895
,1,2999,45900
,1,3000,45905
,1,3001,45910
,1,3002,45915
,1,3003,45920
,1,3004,45925
,1,3005,45930
,1,3006,45935
,1,3007,45940
,1,3008,45945
,1,3009,45950
,1,3010,45955
,1,3011,45960
,1,3012,45965
,1,3013,45970
,1,3014,45975
,1,3015,45980
,1,3016,45985
,1,3017,45990
,1,3018,45995
,1,3019,46000
,1,3020,46005
,1,3021,46010
,1,3022,46015
,1,3023,46020
,1,3024,46025
,1,3025,46030
,1,3026,46035
,1,3027,46040
,1,3028,46045
,1,3029,46050
,1,3030,46055
,1,3031,46060
,1,3032,46065
,1,3033,46070
,1,3034,46075
,1,3035,46080
,1,3036,46085
,1,3037,46090
,1,3038,46095
,1,3039,46100
,1,3040,46105
,1,3041,46110
,1,3042,46115
,1,3043,46120
,1,3044,46125
,1,3045,46130
,1,3046,46135
,1,3047,46140
,1,3048,46145
,1,3049,46150
,1,3050,46155
,1,3051,46160
,1,3052,46165
,1,3053,46170
,1,3054,46175
,1,3055,46180
,1,3056,46185
,1,3057,46190
,1,3058,46195
,1,3059,46200
,1,3060,46205
,1,3061,46210
,1,3062,46215
,1,3063,46220
,1,3064,46225
,1,3065,46230
,1,3066,46235
,1,3067,46240
,1,3068,46245
,1,3069,46250
,1,3070,46255
,1,3071,46260
,1,3072,46265
,1,3073,46270
,1,3074,46275
,1,3075,46280
,1,3076,46285
,1,3077,46290
,1,3078,46295
,1,3079,46300
,1,3080,46305
,1,3081,46310
,1,3082,46315
,1,3083,46320
,1,3084,46325
,1,3085,46330
,1,3086,46335
,1,3087,46340
,1,3088,46345
,1,3089,46350
,1,3090,46355
,1,3091,46360
,1,3092,46365
,1,3093,46370
,1,3094,46375
,1,3095,46380
,1,3096,46385
,1,3097,46390
,1,3098,46395
,1,3099,46400
,1,3100,46405
,1,3101,46410
,1,3102,46415
,1,3103,46420
,1,3104,46425
,1,3105,46430
,1,3106,46435
,1,3107,46440
,1,3108,46445
,1,3109,46450
,1,3110,46455
,1,3111,46460
,1,3112,46465
,1,3113,46470
,1,3114,46475
,1,3115,46480
,1,3116,46485
,1,3117,46490
,1,3118,46495
,1,3119,46500
,1,3120,46505
,1,3121,46510
,1,3122,46515
,1,3123,46520
,1,3124,46525
,1,3125,46530
,1,3126,46535
,1,3127,46540
,1,3128,46545
,1,3129,46550
,1,3130,46555
,1,3131,46560
,1,3132,46565
,1,3133,46570
,1,3134,46575
,1,3135,46580
,1,3136,46585
,1,3137,46590
,1,3138,46595
,1,3139,46600
,1,3140,46605
,1,3141,46610
,1,3142,46615
,1,3143,46620
,1,3144,46625
,1,3145,46630
,1,3146,46635
,1,3147,46640
,1,3148,46645
,1,3149,46650
,1,3150,46655
,1,3151,46660
,1,3152,46665
,1,3153,46670
,1,3154,46675
,1,3155,46680
,1,3156,46685
,1,3157,46690
,1,3158,46695
,1,3159,46700
,1,3160,46705
,1,3161,46710
,1,3162,46715
,1,3163,46720
,1,3164,46725
,1,3165,46730
,1,3166,46735
,1,3167,46740
,1,3168,46745
,1,3169,46750
,1,3170,46755
,1,3171,46760
,1,3172,46765
,1,3173,46770
,1,3174,46775
,1,3175,46780
,1,3176,46785
,1,3177,46790
,1,3178,46795
,1,3179,46800
,1,3180,46805
,1,3181,46810
,1,3182,46815
,1,3183,46820
,1,3184,46825
,1,3185,46830
,1,3186,46835
,1,3187,46840
,1,3188,46845
,1,3189,46850
,1,3190,46855
,1,3191,46860
,1,3192,46865
,1,3193,46870
,1,3194,46875
,1,3195,46880
,1,3196,46885
,1,3197,46890
,1,3198,46895
,1,3199,46900
,1,3200,46905
,1,3201,46910
,1,3202,46915
,1,3203,46920
,1,3204,46925
,1,3205,46930
,1,3206,46935
,1,3207,46940
,1,3208,46945
,1,3209,46950
,1,3210,46955
,1,3211,46960
,1,3212,46965
,1,3213,46970
,1,3214,46975
,1,3215,46980
,1,3216,46985
,1,3217,46990
,1,3218,46995
,1,3219,47000
,1,3220,47005
,1,3221,47010
,1,3222,47015
,1,3223,47020
,1,3224,47025
,1,3225,47030
,1,3226,47035
,1,3227,47040
,1,3228,47045
,1,3229,47050
,1,3230,47055
,1,3231,47060
,1,3232,47065
,1,3233,47070
,1,3234,47075
,1,3235,47080
,1,3236,47085
,1,3237,47090
,1,3238,47095
,1,3239,47100
,1,3240,47105
,1,3241,47110
,1,3242,47115
,1,3243,47120
,1,3244,47125
,1,3245,47130
,1,3246,47135
,1,3247,47140
,1,3248,47145
,1,3249,47150
,1,3250,47155
,1,3251,47160
,1,3252,47165
,1,3253,47170
,1,3254,47175
,1,3255,47180
,1,3256,47185
,1,3257,47190
,1,3258,47195
,1,3259,47200
,1,3260,47205
,1,3261,47210
,1,3262,47215
,1,3263,47220
,1,3264,47225
,1,3265,47230
,1,3266,47235
,1,3267,47240
,1,3268,47245
,1,3269,47250
,1,3270,47255
,1,3271,47260
,1,3272,47265
,1,3273,47270
,1,3274,47275
,1,3275,47280
,1,3276,47285
,1,3277,47290
,1,3278,47295
,1,3279,47300
,1,3280,47305
,1,3281,47310
,1,3282,47315
,1,3283,47320
,1,3284,47325
,1,3285,47330
,1,3286,47335
,1,3287,47340
,1,3288,47345
,1,3289,47350
,1,3290,47355
,1,3291,47360
,1,3292,47365
,1,3293,47370
,1,3294,47375
,1,3295,47380
,1,3296,47385
,1,3297,47390
,1,3298,47395
,1,3299,47400
,1,3300,47405
,1,3301,47410
,1,3302,47415
,1,3303,47420
,1,3304,47425
,1,3305,47430
,1,3306,47435
,1,3307,47440
,1,3308,47445
,1,3309,47450
,1,3310,47455
,1,3311,47460
,1,3312,47465
,1,3313,47470
,1,3314,47475
,1,3315,47480
,1,3316,47485
,1,3317,47490
,1,3318,47495
,1,3319,47500
,1,3320,47505
,1,3321,47510
,1,3322,47515
,1,3323,47520
,1,3324,47525
,1,3325,47530
,1,3326,47535
,1,3327,47540
,1,3328,47545
,1,3329,47550
,1,3330,47555
,1,3331,47560
,1,3332,47565
,1,3333,47570
,1,3334,47575
,1,3335,47580
,1,3336,47585
,1,3337,47590
,1,3338,47595
,1,3339,47600
,1,3340,47605
,1,3341,47610
,1,3342,47615
,1,3343,47620
,1,3344,47625
,1,3345,47630
,1,3346,47635
,1,3347,47640
,1,3348,47645
,1,3349,47650
,1,3350,47655
,1,3351,47660
,1,3352,47665
,1,3353,47670
,1,3354,47675
,1,3355,47680
,1,3356,47685
,1,3357,47690
,1,3358,47695
,1,3359,47700
,1,3360,47705
,1,3361,47710
,1,3362,47715
,1,3363,47720
,1,3364,47725
,1,3365,47730
,1,3366,47735
,1,3367,47740
,1,3368,47745
,1,3369,47750
,1,3370,47755
,1,3371,47760
,1,3372,47765
,1,3373,47770
,1,3374,47775
,1,3375,47780
,1,3376,47785
,1,3377,47790
,1,3378,47795
,1,3379,47800
,1,3380,47805
,1,3381,47810
,1,3382,47815
,1,3383,47820
,1,3384,47825
,1,3385,47830
,1,3386,47835
,1,3387,47840
,1,3388,47845
,1,3389,47850
,1,3390,47855
,1,3391,47860
,1,3392,47865
,1,3393,47870
,1,3394,47875
,1,3395,47880
,1,3396,47885
,1,3397,47890
,1,3398,47895
,1,3399,47900
,1,3400,47905
,1,3401,47910
,1,3402,47915
,1,3403,47920
,1,3404,47925
,1,3405,47930
,1,3406,47935
,1,3407,47940
,1,3408,47945
,1,3409,47950
,1,3410,47955
,1,3411,47960
,1,3412,47965
,1,3413,47970
,1,3414,47975
,1,3415,47980
,1,3416,47985
,1,3417,47990
,1,3418,47995
,1,3419,48000
,1,3420,48005
,1,3421,48010
,1,3422,48015
,1,3423,48020
,1,3424,48025
,1,3425,48030
,1,3426,48035
,1,3427,48040
,1,3428,48045
,1,3429,48050
,1,3430,48055
,1,3431,48060
,1,3432,48065
,1,3433,48070
,1,3434,48075
,1,3435,48080
,1,3436,48085
,1,3437,48090
,1,3438,48095
,1,3439,48100
,1,3440,48105
,1,3441,48110
,1,3442,48115
,1,3443,48120
,1,3444,48125
,1,3445,48130
,1,3446,48135
,1,3447,48140
,1,3448,48145
,1,3449,48150
,1,3450,48155
,1,3451,48160
,1,3452,48165
,1,3453,48170
,1,3454,48175
,1,3455,48180
,1,3456,48185
,1,3457,48190
,1,3458,48195
,1,3459,48200
,1,3460,48205
,1,3461,48210
,1,3462,48215
,1,3463,48220
,1,3464,48225
,1,3465,48230
,1,3466,48235
,1,3467,48240
,1,3468,48245
,1,3469,48250
,1,3470,48255
,1,3471,48260
,1,3472,48265
,1,3473,48270
,1,3474,48275
,1,3475,48280
,1,3476,48285
,1,3477,48290
,1,3478,48295
,1,3479,48300
,1,3480,48305
,1,3481,48310
,1,3482,48315
,1,3483,48320
,1,3484,48325
,1,3485,48330
,1,3486,48335
,1,3487,48340
,1,3488,48345
,1,3489,48350
,1,3490,48355
,1,3491,48360
,1,3492,48365
,1,3493,48370
,1,3494,48375
,1,3495,48380
,1,3496,48385
,1,3497,48390
,1,3498,48395
,1,3499,48400
,1,3500,48405
,1,3501,48410
,1,3502,48415
,1,3503,48420
,1,3504,48425
,1,3505,48430
,1,3506,48435
,1,3507,48440
,1,3508,48445
,1,3509,48450
,1,3510,48455
,1,3511,48460
,1,3512,48465
,1,3513,48470
,1,3514,48475
,1,3515,48480
,1,3516,48485
,1,3517,48490
,1,3518,48495
,1,3519,48500
,1,3520,48505
,1,3521,48510
,1,3522,48515
,1,3523,48520
,1,3524,48525
,1,3525,48530
,1,3526,48535
,1,3527,48540
,1,3528,48545
,1,3529,48550
,1,3530,48555
,1,3531,48560
,1,3532,48565
,1,3533,48570
,1,3534,48575
,1,3535,48580
,1,3536,48585
,1,3537,48590
,1,3538,48595
,1,3539,48600
,1,3540,48605
,1,3541,48610
,1,3542,48615
,1,3543,48620
,1,3544,48625
,1,3545,48630
,1,3546,48635
,1,3547,48640
,1,3548,48645
,1,3549,48650
,1,3550,48655
,1,3551,48660
,1,3552,48665
,1,3553,48670
,1,3554,48675
,1,3555,48680
,1,3556,48685
,1,3557,48690
,1,3558,48695
,1,3559,48700
,1,3560,48705
,1,3561,48710
,1,3562,48715
,1,3563,48720
,1,3564,48725
,1,3565,48730
,1,3566,48735
,1,3567,48740
,1,3568,48745
,1,3569,48750
,1,3570,48755
,1,3571,48760
,1,3572,48765
,1,3573,48770
,1,3574,48775
,1,3575,48780
,1,3576,48785
,1,3577,48790
,1,3578,48795
,1,3579,48800
,1,3580,48805
,1,3581,48810
,1,3582,48815
,1,3583,48820
,1,3584,48825
,1,3585,48830
,1,3586,48835
,1,3587,48840
,1,3588,48845
,1,3589,48850
,1,3590,48855
,1,3591,48860
,1,3592,48865
,1,3593,48870
,1,3594,48875
,1,3595,48880
,1,3596,48885
,1,3597,48890
,1,3598,48895
,1,3599,48900
,1,3600,48905
,1,3601,48910
,1,3602,48915
,1,3603,48920
,1,3604,48925
,1,3605,48930
,1,3606,48935
,1,3607,48940
,1,3608,48945
,1,3609,48950
,1,3610,48955
,1,3611,48960
,1,3612,48965
,1,3613,48970
,1,3614,48975
,1,3615,48980
,1,3616,48985
,1,3617,48990
,1,3618,48995
,1,3619,49000
,1,3620,49005
,1,3621,49010
,1,3622,49015
,1,3623,49020
,1,3624,49025
,1,3625,49030
,1,3626,49035
,1,3627,49040
,1,3628,49045
,1,3629,49050
,1,3630,49055
,1,3631,49060
,1,3632,49065
,1,3633,49070
,1,3634,49075
,1,3635,49080
,1,3636,49085
,1,3637,49090
,1,3638,49095
,1,3639,49100
,1,3640,49105
,1,3641,49110
,1,3642,49115
,1,3643,49120
,1,3644,49125
,1,3645,49130
,1,3646,49135
,1,3647,49140
,1,3648,49145
,1,3649,49150
,1,3650,49155
,1,3651,49160
,1,3652,49165
,1,3653,49170
,1,3654,49175
,1,3655,49180
,1,3656,49185
,1,3657,49190
,1,3658,49195
,1,3659,49200
,1,3660,49205
,1,3661,49210
,1,3662,49215
,1,3663,49220
,1,3664,49225
,1,3665,49230
,1,3666,49235
,1,3667,49240
,1,3668,49245
,1,3669,49250
,1,3670,49255
,1,3671,49260
,1,3672,49265
,1,3673,49270
,1,3674,49275
,1,3675,49280
,1,3676,49285
,1,3677,49290
,1,3678,49295
,1,3679,49300
,1,3680,49305
,1,3681,49310
,1,3682,49315
,1,3683,49320
,1,3684,49325
,1,3685,49330
,1,3686,49335
,1,3687,49340
,1,3688,49345
,1,3689,49350
,1,3690,49355
,1,3691,49360
,1,3692,49365
,1,3693,49370
,1,3694,49375
,1,3695,49380
,1,3696,49385
,1,3697,49390
,1,3698,49395
,1,3699,49400
,1,3700,49405
,1,3701,49410
,1,3702,49415
,1,3703,49420
,1,3704,49425
,1,3705,49430
,1,3706,49435
,1,3707,49440
,1,3708,49445
,1,3709,49450
,1,3710,49455
,1,3711,49460
,1,3712,49465
,1,3713,49470
,1,3714,49475
,1,3715,49480
,1,3716,49485
,1,3717,49490
,1,3718,49495
,1,3719,49500
,1,3720,49505
,1,3721,49510
,1,3722,49515
,1,3723,49520
,1,3724,49525
,1,3725,49530
,1,3726,49535
,1,3727,49540
,1,3728,49545
,1,3729,49550
,1,3730,49555
,1,3731,49560
,1,3732,49565
,1,3733,49570
,1,3734,49575
,1,3735,49580
,1,3736,49585
,1,3737,49590
,1,3738,49595
,1,3739,49600
,1,3740,49605
,1,3741,49610
,1,3742,49615
,1,3743,49620
,1,3744,49625
,1,3745,49630
,1,3746,49635
,1,3747,49640
,1,3748,49645
,1,3749,49650
,1,3750,49655
,1,3751,49660
,1,3752,49665
,1,3753,49670
,1,3754,49675
,1,3755,49680
,1,3756,49685
,1,3757,49690
,1,3758,49695
,1,3759,49700
,1,3760,49705
,1,3761,49710
,1,3762,49715
,1,3763,49720
,1,3764,49725
,1,3765,49730
,1,3766,49735
,1,3767,49740
,1,3768,49745
,1,3769,49750
,1,3770,49755
,1,3771,49760
,1,3772,49765
,1,3773,49770
,1,3774,49775
,1,3775,49780
,1,3776,49785
,1,3777,49790
,1,3778,49795
,1,3779,49800
,1,3780,49805
,1,3781,49810
,1,3782,49815
,1,3783,49820
,1,3784,49825
,1,3785,49830
,1,3786,49835
,1,3787,49840
,1,3788,49845
,1,3789,49850
,1,3790,49855
,1,3791,49860
,1,3792,49865
,1,3793,49870
,1,3794,49875
,1,3795,49880
,1,3796,49885
,1,3797,49890
,1,3798,49895
,1,3799,49900
,1,3800,49905
,1,3801,49910
,1,3802,49915
,1,3803,49920
,1,3804,49925
,1,3805,49930
,1,3806,49935
,1,3807,49940
,1,3808,49945
,1,3809,49950
,1,3810,49955
,1,3811,49960
,1,3812,49965
,1,3813,49970
,1,3814,49975
,1,3815,49980
,1,3816,49985
,1,3817,49990
,1,3818,49995
,1,3819,50000
,1,3820,50005
,1,3821,50010
,1,3822,50015
,1,3823,50020
,1,3824,50025
,1,3825,50030
,1,3826,50035
,1,3827,50040
,1,3828,50045
,1,3829,50050
,1,3830,50055
,1,3831,50060
,1,3832,50065
,1,3833,50070
,1,3834,50075
,1,3835,50080
,1,3836,50085
,1,3837,50090
,1,3838,50095
,1,3839,50100
,1,3840,50105
,1,3841,50110
,1,3842,50115
,1,3843,50120
,1,3844,50125
,1,3845,50130
,1,3846,50135
,1,3847,50140
,1,3848,50145
,1,3849,50150
,1,3850,50155
,1,3851,50160
,1,3852,50165
,1,3853,50170
,1,3854,50175
,1,3855,50180
,1,3856,50185
,1,3857,50190
,1,3858,50195
,1,3859,50200
,1,3860,50205
,1,3861,50210
,1,3862,50215
,1,3863,50220
,1,3864,50225
,1,3865,50230
,1,3866,50235
,1,3867,50240
,1,3868,50245
,1,3869,50250
,1,3870,50255
,1,3871,50260
,1,3872,50265
,1,3873,50270
,1,3874,50275
,1,3875,50280
,1,3876,50285
,1,3877,50290
,1,3878,50295
,1,3879,50300
,1,3880,50305
,1,3881,50310
,1,3882,50315
,1,3883,50320
,1,3884,50325
,1,3885,50330
,1,3886,50335
,1,3887,50340
,1,3888,50345
,1,3889,50350
,1,3890,50355
,1,3891,50360
,1,3892,50365
,1,3893,50370
,1,3894,50375
,1,3895,50380
,1,3896,50385
,1,3897,50390
,1,3898,50395
,1,3899,50400
,1,3900,50405
,1,3901,50410
,1,3902,50415
,1,3903,50420
,1,3904,50425
,1,3905,50430
,1,3906,50435
,1,3907,50440
,1,3908,50445
,1,3909,50450
,1,3910,50455
,1,3911,50460
,1,3912,50465
,1,3913,50470
,1,3914,50475
,1,3915,50480
,1,3916,50485
,1,3917,50490
,1,3918,50495
,1,3919,50500
,1,3920,50505
,1,3921,50510
,1,3922,50515
,1,3923,50520
,1,3924,50525
,1,3925,50530
,1,3926,50535
,1,3927,50540
,1,3928,50545
,1,3929,50550
,1,3930,50555
,1,3931,50560
,1,3932,50565
,1,3933,50570
,1,3934,50575
,1,3935,50580
,1,3936,50585
,1,3937,50590
,1,3938,50595
,1,3939,50600
,1,3940,50605
,1,3941,50610
,1,3942,50615
,1,3943,50620
,1,3944,50625
,1,3945,50630
,1,3946,50635
,1,3947,50640
,1,3948,50645
,1,3949,50650
,1,3950,50655
,1,3951,50660
,1,3952,50665
,1,3953,50670
,1,3954,50675
,1,3955,50680
,1,3956,50685
,1,3957,50690
,1,3958,50695
,1,3959,50700
,1,3960,50705
,1,3961,50710
,1,3962,50715
,1,3963,50720
,1,3964,50725
,1,3965,50730
,1,3966,50735
,1,3967,50740
,1,3968,50745
,1,3969,50750
,1,3970,50755
,1,3971,50760
,1,3972,50765
,1,3973,50770
,1,3974,50775
,1,3975,50780
,1,3976,50785
,1,3977,50790
,1,3978,50795
,1,3979,50800
,1,3980,50805
,1,3981,50810
,1,3982,50815
,1,3983,50820
,1,3984,50825
,1,3985,50830
,1,3986,50835
,1,3987,50840
,1,3988,50845
,1,3989,50850
,1,3990,50855
,1,3991,50860
,1,3992,50865
,1,3993,50870
,1,3994,50875
,1,3995,50880
,1,3996,50885
,1,3997,50890
,1,3998,50895
,1,3999,50900
,1,4000,50905
,1,4001,50910
,1,4002,50915
,1,4003,50920
,1,4004,50925
,1,4005,50930
,1,4006,50935
,1,4007,50940
,1,4008,50945
,1,4009,50950
,1,4010,50955
,1,4011,50960
,1,4012,50965
,1,4013,50970
,1,4014,50975
,1,4015,50980
,1,4016,50985
,1,4017,50990
,1,4018,50995
,1,4019,51000
,1,4020,51005
,1,4021,51010
,1,4022,51015
,1,4023,51020
,1,4024,51025
,1,4025,51030
,1,4026,51035
,1,4027,51040
,1,4028,51045
,1,4029,51050
,1,4030,51055
,1,4031,51060
,1,4032,51065
,1,4033,51070
,1,4034,51075
,1,4035,51080
,1,4036,51085
,1,4037,51090
,1,4038,51095
,1,4039,51100
,1,4040,51105
,1,4041,51110
,1,4042,51115
,1,4043,51120
,1,4044,51125
,1,4045,51130
,1,4046,51135
,1,4047,51140
,1,4048,51145
,1,4049,51150
,1,4050,51155
,1,4051,51160
,1,4052,51165
,1,4053,51170
,1,4054,51175
,1,4055,51180
,1,4056,51185
,1,4057,51190
,1,4058,51195
,1,4059,51200
,1,4060,51205
,1,4061,51210
,1,4062,51215
,1,4063,51220
,1,4064,51225
,1,4065,51230
,1,4066,51235
,1,4067,51240
,1,4068,51245
,1,4069,51250
,1,4070,51255
,1,4071,51260
,1,4072,51265
,1,4073,51270
,1,4074,51275
,1,4075,51280
,1,4076,51285
,1,4077,51290
,1,4078,51295
,1,4079,51300
,1,4080,51305
,1,4081,51310
,1,4082,51315
,1,4083,51320
,1,4084,51325
,1,4085,51330
,1,4086,51335
,1,4087,51340
,1,4088,51345
,1,4089,51350
,1,4090,51355
,1,4091,51360
,1,4092,51365
,1,4093,51370
,1,4094,51375
,1,4095,51380
,1,4096,51385
,1,4097,51390
,1,4098,51395
,1,4099,51400
,1,4100,51405
,1,4101,51410
,1,4102,51415
,1,4103,51420
,1,4104,51425
,1,4105,51430
,1,4106,51435
,1,4107,51440
,1,4108,51445
,1,4109,51450
,1,4110,51455
,1,4111,51460
,1,4112,51465
,1,4113,51470
,1,4114,51475
,1,4115,51480
,1,4116,51485
,1,4117,51490
,1,4118,51495
,1,4119,51500
,1,4120,51505
,1,4121,51510
,1,4122,51515
,1,4123,51520
,1,4124,51525
,1,4125,51530
,1,4126,51535
,1,4127,51540
,1,4128,51545
,1,4129,51550
,1,4130,51555
,1,4131,51560
,1,4132,51565
,1,4133,51570
,1,4134,51575
,1,4135,51580
,1,4136,51585
,1,4137,51590
,1,4138,51595
,1,4139,51600
,1,4140,51605
,1,4141,51610
,1,4142,51615
,1,4143,51620
,1,4144,51625
,1,4145,51630
,1,4146,51635
,1,4147,51640
,1,4148,51645
,1,4149,51650
,1,4150,51655
,1,4151,51660
,1,4152,51665
,1,4153,51670
,1,4154,51675
,1,4155,51680
,1,4156,51685
,1,4157,51690
,1,4158,51695
,1,4159,51700
,1,4160,51705
,1,4161,51710
,1,4162,51715
,1,4163,51720
,1,4164,51725
,1,4165,51730
,1,4166,51735
,1,4167,51740
,1,4168,51745
,1,4169,51750
,1,4170,51755
,1,4171,51760
,1,4172,51765
,1,4173,51770
,1,4174,51775
,1,4175,51780
,1,4176,51785
,1,4177,51790
,1,4178,51795
,1,4179,51800
,1,4180,51805
,1,4181,51810
,1,4182,51815
,1,4183,51820
,1,4184,51825
,1,4185,51830
,1,4186,51835
,1,4187,51840
,1,4188,51845
,1,4189,51850
,1,4190,51855
,1,4191,51860
,1,4192,51865
,1,4193,51870
,1,4194,51875
,1,4195,51880
,1,4196,51885
,1,4197,51890
,1,4198,51895
,1,4199,51900
,1,4200,51905
,1,4201,51910
,1,4202,51915
,1,4203,51920
,1,4204,51925
,1,4205,51930
,1,4206,51935
,1,4207,51940
,1,4208,51945
,1,4209,51950
,1,4210,51955
,1,4211,51960
,1,4212,51965
,1,4213,51970
,1,4214,51975
,1,4215,51980
,1,4216,51985
,1,4217,51990
,1,4218,51995
,1,4219,52000
,1,4220,52005
,1,4221,52010
,1,4222,52015
,1,4223,52020
,1,4224,52025
,1,4225,52030
,1,4226,52035
,1,4227,52040
,1,4228,52045
,1,4229,52050
,1,4230,52055
,1,4231,52060
,1,4232,52065
,1,4233,52070
,1,4234,52075
,1,4235,52080
,1,4236,52085
,1,4237,52090
,1,4238,52095
,1,4239,52100
,1,4240,52105
,1,4241,52110
,1,4242,52115
,1,4243,52120
,1,4244,52125
,1,4245,52130
,1,4246,52135
,1,4247,52140
,1,4248,52145
,1,4249,52150
,1,4250,52155
,1,4251,52160
,1,4252,52165
,1,4253,52170
,1,4254,52175
,1,4255,52180
,1,4256,52185
,1,4257,52190
,1,4258,52195
,1,4259,52200
,1,4260,52205
,1,4261,52210
,1,4262,52215
,1,4263,52220
,1,4264,52225
,1,4265,52230
,1,4266,52235
,1,4267,52240
,1,4268,52245
,1,4269,52250
,1,4270,52255
,1,4271,52260
,1,4272,52265
,1,4273,52270
,1,4274,52275
,1,4275,52280
,1,4276,52285
,1,4277,52290
,1,4278,52295
,1,4279,52300
,1,4280,52305
,1,4281,52310
,1,4282,52315
,1,4283,52320
,1,4284,52325
,1,4285,52330
,1,4286,52335
,1,4287,52340
,1,4288,52345
,1,4289,52350
,1,4290,52355
,1,4291,52360
,1,4292,52365
,1,4293,52370
,1,4294,52375
,1,4295,52380
,1,4296,52385
,1,4297,52390
,1,4298,52395
,1,4299,52400
,1,4300,52405
,1,4301,52410
,1,4302,52415
,1,4303,52420
,1,4304,52425
,1,4305,52430
,1,4306,52435
,1,4307,52440
,1,4308,52445
,1,4309,52450
,1,4310,52455
,1,4311,52460
,1,4312,52465
,1,4313,52470
,1,4314,52475
,1,4315,52480
,1,4316,52485
,1,4317,52490
,1,4318,52495
,1,4319,52500
,1,4320,52505
,1,4321,52510
,1,4322,52515
,1,4323,52520
,1,4324,52525
,1,4325,52530
,1,4326,52535
,1,4327,52540
,1,4328,52545
,1,4329,52550
,1,4330,52555
,1,4331,52560
,1,4332,52565
,1,4333,52570
,1,4334,52575
,1,4335,52580
,1,4336,52585
,1,4337,52590
,1,4338,52595
,1,4339,52600
,1,4340,52605
,1,4341,52610
,1,4342,52615
,1,4343,52620
,1,4344,52625
,1,4345,52630
,1,4346,52635
,1,4347,52640
,1,4348,52645
,1,4349,52650
,1,4350,52655
,1,4351,52660
,1,4352,52665
,1,4353,52670
,1,4354,52675
,1,4355,52680
,1,4356,52685
,1,4357,52690
,1,4358,52695
,1,4359,52700
,1,4360,52705
,1,4361,52710
,1,4362,52715
,1,4363,52720
,1,4364,52725
,1,4365,52730
,1,4366,52735
,1,4367,52740
,1,4368,52745
,1,4369,52750
,1,4370,52755
,1,4371,52760
,1,4372,52765
,1,4373,52770
,1,4374,52775
,1,4375,52780
,1,4376,52785
,1,4377,52790
,1,4378,52795
,1,4379,52800
,1,4380,52805
,1,4381,52810
,1,4382,52815
,1,4383,52820
,1,4384,52825
,1,4385,52830
,1,4386,52835
,1,4387,52840
,1,4388,52845
,1,4389,52850
,1,4390,52855
,1,4391,52860
,1,4392,52865
,1,4393,52870
,1,4394,52875
,1,4395,52880
,1,4396,52885
,1,4397,52890
,1,4398,52895
,1,4399,52900
,1,4400,52905
,1,4401,52910
,1,4402,52915
,1,4403,52920
,1,4404,52925
,1,4405,52930
,1,4406,52935
,1,4407,52940
,1,4408,52945
,1,4409,52950
,1,4410,52955
,1,4411,52960
,1,4412,52965
,1,4413,52970
,1,4414,52975
,1,4415,52980
,1,4416,52985
,1,4417,52990
,1,4418,52995
,1,4419,53000
,1,4420,53005
,1,4421,53010
,1,4422,53015
,1,4423,53020
,1,4424,53025
,1,4425,53030
,1,4426,53035
,1,4427,53040
,1,4428,53045
,1,4429,53050
,1,4430,53055
,1,4431,53060
,1,4432,53065
,1,4433,53070
,1,4434,53075
,1,4435,53080
,1,4436,53085
,1,4437,53090
,1,4438,53095
,1,4439,53100
,1,4440,53105
,1,4441,53110
,1,4442,53115
,1,4443,53120
,1,4444,53125
,1,4445,53130
,1,4446,53135
,1,4447,53140
,1,4448,53145
,1,4449,53150
,1,4450,53155
,1,4451,53160
,1,4452,53165
,1,4453,53170
,1,4454,53175
,1,4455,53180
,1,4456,53185
,1,4457,53190
,1,4458,53195
,1,4459,53200
,1,4460,53205
,1,4461,53210
,1,4462,53215
,1,4463,53220
,1,4464,53225
,1,4465,53230
,1,4466,53235
,1,4467,53240
,1,4468,53245
,1,4469,53250
,1,4470,53255
,1,4471,53260
,1,4472,53265
,1,4473,53270
,1,4474,53275
,1,4475,53280
,1,4476,53285
,1,4477,53290
,1,4478,53295
,1,4479,53300
,1,4480,53305
,1,4481,53310
,1,4482,53315
,1,4483,53320
,1,4484,53325
,1,4485,53330
,1,4486,53335
,1,4487,53340
,1,4488,53345
,1,4489,53350
,1,4490,53355
,1,4491,53360
,1,4492,53365
,1,4493,53370
,1,4494,53375
,1,4495,53380
,1,4496,53385
,1,4497,53390
,1,4498,53395
,1,4499,53400
,1,4500,53405
,1,4501,53410
,1,4502,53415
,1,4503,53420
,1,4504,53425
,1,4505,53430
,1,4506,53435
,1,4507,53440
,1,4508,53445
,1,4509,53450
,1,4510,53455
,1,4511,53460
,1,4512,53465
,1,4513,53470
,1,4514,53475
,1,4515,53480
,1,4516,53485
,1,4517,53490
,1,4518,53495
,1,4519,53500
,1,4520,53505
,1,4521,53510
,1,4522,53515
,1,4523,53520
,1,4524,53525
,1,4525,53530
,1,4526,53535
,1,4527,53540
,1,4528,53545
,1,4529,53550
,1,4530,53555
,1,4531,53560
,1,4532,53565
,1,4533,53570
,1,4534,53575
,1,4535,53580
,1,4536,53585
,1,4537,53590
,1,4538,53595
,1,4539,53600
,1,4540,53605
,1,4541,53610
,1,4542,53615
,1,4543,53620
,1,4544,53625
,1,4545,53630
,1,4546,53635
,1,4547,53640
,1,4548,53645
,1,4549,53650
,1,4550,53655
,1,4551,53660
,1,4552,53665
,1,4553,53670
,1,4554,53675
,1,4555,53680
,1,4556,53685
,1,4557,53690
,1,4558,53695
,1,4559,53700
,1,4560,53705
,1,4561,53710
,1,4562,53715
,1,4563,53720
,1,4564,53725
,1,4565,53730
,1,4566,53735
,1,4567,53740
,1,4568,53745
,1,4569,53750
,1,4570,53755
,1,4571,53760
,1,4572,53765
,1,4573,53770
,1,4574,53775
,1,4575,53780
,1,4576,53785
,1,4577,53790
,1,4578,53795
,1,4579,53800
,1,4580,53805
,1,4581,53810
,1,4582,53815
,1,4583,53820
,1,4584,53825
,1,4585,53830
,1,4586,53835
,1,4587,53840
,1,4588,53845
,1,4589,53850
,1,4590,53855
,1,4591,53860
,1,4592,53865
,1,4593,53870
,1,4594,53875
,1,4595,53880
,1,4596,53885
,1,4597,53890
,1,4598,53895
,1,4599,53900
,1,4600,53905
,1,4601,53910
,1,4602,53915
,1,4603,53920
,1,4604,53925
,1,4605,53930
,1,4606,53935
,1,4607,53940
,1,4608,53945
,1,4609,53950
,1,4610,53955
,1,4611,53960
,1,4612,53965
,1,4613,53970
,1,4614,53975
,1,4615,53980
,1,4616,53985
,1,4617,53990
,1,4618,53995
,1,4619,54000
,1,4620,54005
,1,4621,54010
,1,4622,54015
,1,4623,54020
,1,4624,54025
,1,4625,54030
,1,4626,54035
,1,4627,54040
,1,4628,54045
,1,4629,54050
,1,4630,54055
,1,4631,54060
,1,4632,54065
,1,4633,54070
,1,4634,54075
,1,4635,54080
,1,4636,54085
,1,4637,54090
,1,4638,54095
,1,4639,54100
,1,4640,54105
,1,4641,54110
,1,4642,54115
,1,4643,54120
,1,4644,54125
,1,4645,54130
,1,4646,54135
,1,4647,54140
,1,4648,54145
,1,4649,54150
,1,4650,54155
,1,4651,54160
,1,4652,54165
,1,4653,54170
,1,4654,54175
,1,4655,54180
,1,4656,54185
,1,4657,54190
,1,4658,54195
,1,4659,54200
,1,4660,54205
,1,4661,54210
,1,4662,54215
,1,4663,54220
,1,4664,54225
,1,4665,54230
,1,4666,54235
,1,4667,54240
,1,4668,54245
,1,4669,54250
,1,4670,54255
,1,4671,54260
,1,4672,54265
,1,4673,54270
,1,4674,54275
,1,4675,54280
,1,4676,54285
,1,4677,54290
,1,4678,54295
,1,4679,54300
,1,4680,54305
,1,4681,54310
,1,4682,54315
,1,4683,54320
,1,4684,54325
,1,4685,54330
,1,4686,54335
,1,4687,54340
,1,4688,54345
,1,4689,54350
,1,4690,54355
,1,4691,54360
,1,4692,54365
,1,4693,54370
,1,4694,54375
,1,4695,54380
,1,4696,54385
,1,4697,54390
,1,4698,54395
,1,4699,54400
,1,4700,54405
,1,4701,54410
,1,4702,54415
,1,4703,54420
,1,4704,54425
,1,4705,54430
,1,4706,54435
,1,4707,54440
,1,4708,54445
,1,4709,54450
,1,4710,54455
,1,4711,54460
,1,4712,54465
,1,4713,54470
,1,4714,54475
,1,4715,54480
,1,4716,54485
,1,4717,54490
,1,4718,54495
,1,4719,54500
,1,4720,54505
,1,4721,54510
,1,4722,54515
,1,4723,54520
,1,4724,54525
,1,4725,54530
,1,4726,54535
,1,4727,54540
,1,4728,54545
,1,4729,54550
,1,4730,54555
,1,4731,54560
,1,4732,54565
,1,4733,54570
,1,4734,54575
,1,4735,54580
,1,4736,54585
,1,4737,54590
,1,4738,54595
,1,4739,54600
,1,4740,54605
,1,4741,54610
,1,4742,54615
,1,4743,54620
,1,4744,54625
,1,4745,54630
,1,4746,54635
,1,4747,54640
,1,4748,54645
,1,4749,54650
,1,4750,54655
,1,4751,54660
,1,4752,54665
,1,4753,54670
,1,4754,54675
,1,4755,54680
,1,4756,54685
,1,4757,54690
,1,4758,54695
,1,4759,54700
,1,4760,54705
,1,4761,54710
,1,4762,54715
,1,4763,54720
,1,4764,54725
,1,4765,54730
,1,4766,54735
,1,4767,54740
,1,4768,54745
,1,4769,54750
,1,4770,54755
,1,4771,54760
,1,4772,54765
,1,4773,54770
,1,4774,54775
,1,4775,54780
,1,4776,54785
,1,4777,54790
,1,4778,54795
,1,4779,54800
,1,4780,54805
,1,4781,54810
,1,4782,54815
,1,4783,54820
,1,4784,54825
,1,4785,54830
,1,4786,54835
,1,4787,54840
,1,4788,54845
,1,4789,54850
,1,4790,54855
,1,4791,54860
,1,4792,54865
,1,4793,54870
,1,4794,54875
,1,4795,54880
,1,4796,54885
,1,4797,54890
,1,4798,54895
,1,4799,54900
,1,4800,54905
,1,4801,54910
,1,4802,54915
,1,4803,54920
,1,4804,54925
,1,4805,54930
,1,4806,54935
,1,4807,54940
,1,4808,54945
,1,4809,54950
,1,4810,54955
,1,4811,54960
,1,4812,54965
,1,4813,54970
,1,4814,54975
,1,4815,54980
,1,4816,54985
,1,4817,54990
,1,4818,54995
,1,4819,55000
,1,4820,55005
,1,4821,55010
,1,4822,55015
,1,4823,55020
,1,4824,55025
,1,4825,55030
,1,4826,55035
,1,4827,55040
,1,4828,55045
,1,4829,55050
,1,4830,55055
,1,4831,55060
,1,4832,55065
,1,4833,55070
,1,4834,55075
,1,4835,55080
,1,4836,55085
,1,4837,55090
,1,4838,55095
,1,4839,55100
,1,4840,55105
,1,4841,55110
,1,4842,55115
,1,4843,55120
,1,4844,55125
,1,4845,55130
,1,4846,55135
,1,4847,55140
,1,4848,55145
,1,4849,55150
,1,4850,55155
,1,4851,55160
,1,4852,55165
,1,4853,55170
,1,4854,55175
,1,4855,55180
,1,4856,55185
,1,4857,55190
,1,4858,55195
,1,4859,55200
,1,4860,55205
,1,4861,55210
,1,4862,55215
,1,4863,55220
,1,4864,55225
,1,4865,55230
,1,4866,55235
,1,4867,55240
,1,4868,55245
,1,4869,55250
,1,4870,55255
,1,4871,55260
,1,4872,55265
,1,4873,55270
,1,4874,55275
,1,4875,55280
,1,4876,55285
,1,4877,55290
,1,4878,55295
,1,4879,55300
,1,4880,55305
,1,4881,55310
,1,4882,55315
,1,4883,55320
,1,4884,55325
,1,4885,55330
,1,4886,55335
,1,4887,55340
,1,4888,55345
,1,4889,55350
,1,4890,55355
,1,4891,55360
,1,4892,55365
,1,4893,55370
,1,4894,55375
,1,4895,55380
,1,4896,55385
,1,4897,55390
,1,4898,55395
,1,4899,55400
,1,4900,55405
,1,4901,55410
,1,4902,55415
,1,4903,55420
,1,4904,55425
,1,4905,55430
,1,4906,55435
,1,4907,55440
,1,4908,55445
,1,4909,55450
,1,4910,55455
,1,4911,55460
,1,4912,55465
,1,4913,55470
,1,4914,55475
,1,4915,55480
,1,4916,55485
,1,4917,55490
,1,4918,55495
,1,4919,55500
,1,4920,55505
,1,4921,55510
,1,4922,55515
,1,4923,55520
,1,4924,55525
,1,4925,55530
,1,4926,55535
,1,4927,55540
,1,4928,55545
,1,4929,55550
,1,4930,55555
,1,4931,55560
,1,4932,55565
,1,4933,55570
,1,4934,55575
,1,4935,55580
,1,4936,55585
,1,4937,55590
,1,4938,55595
,1,4939,55600
,1,4940,55605
,1,4941,55610
,1,4942,55615
,1,4943,55620
,1,4944,55625
,1,4945,55630
,1,4946,55635
,1,4947,55640
,1,4948,55645
,1,4949,55650
,1,4950,55655
,1,4951,55660
,1,4952,55665
,1,4953,55670
,1,4954,55675
,1,4955,55680
,1,4956,55685
,1,4957,55690
,1,4958,55695
,1,4959,55700
,1,4960,55705
,1,4961,55710
,1,4962,55715
,1,4963,55720
,1,4964,55725
,1,4965,55730
,1,4966,55735
,1,4967,55740
,1,4968,55745
,1,4969,55750
,1,4970,55755
,1,4971,55760
,1,4972,55765
,1,4973,55770
,1,4974,55775
,1,4975,55780
,1,4976,55785
,1,4977,55790
,1,4978,55795
,1,4979,55800
,1,4980,55805
,1,4981,55810
,1,4982,55815
,1,4983,55820
,1,4984,55825
,1,4985,55830
,1,4986,55835
,1,4987,55840
,1,4988,55845
,1,4989,55850
,1,4990,55855
,1,4991,55860
,1,4992,55865
,1,4993,55870
,1,4994,55875
,1,4995,55880
,1,4996,55885
,1,4997,55890
,1,4998,55895
,1,4999,55900
,1,5000,55905
,1,5001,55910
,1,5002,55915
,1,5003,55920
,1,5004,55925
,1,5005,55930
,1,5006,55935
,1,5007,55940
,1,5008,55945
,1,5009,55950
,1,5010,55955
,1,5011,55960
,1,5012,55965
,1,5013,55970
,1,5014,55975
,1,5015,55980
,1,5016,55985
,1,5017,55990
,1,5018,55995
,1,5019,56000
,1,5020,56005
,1,5021,56010
,1,5022,56015
,1,5023,56020
,1,5024,56025
,1,5025,56030
,1,5026,56035
,1,5027,56040
,1,5028,56045
,1,5029,56050
,1,5030,56055
,1,5031,56060
,1,5032,56065
,1,5033,56070
,1,5034,56075
,1,5035,56080
,1,5036,56085
,1,5037,56090
,1,5038,56095
,1,5039,56100
,1,5040,56105
,1,5041,56110
,1,5042,56115
,1,5043,56120
,1,5044,56125
,1,5045,56130
,1,5046,56135
,1,5047,56140
,1,5048,56145
,1,5049,56150
,1,5050,56155
,1,5051,56160
,1,5052,56165
,1,5053,56170
,1,5054,56175
,1,5055,56180
,1,5056,56185
,1,5057,56190
,1,5058,56195
,1,5059,56200
,1,5060,56205
,1,5061,56210
,1,5062,56215
,1,5063,56220
,1,5064,56225
,1,5065,56230
,1,5066,56235
,1,5067,56240
,1,5068,56245
,1,5069,56250
,1,5070,56255
,1,5071,56260
,1,5072,56265
,1,5073,56270
,1,5074,56275
,1,5075,56280
,1,5076,56285
,1,5077,56290
,1,5078,56295
,1,5079,56300
,1,5080,56305
,1,5081,56310
,1,5082,56315
,1,5083,56320
,1,5084,56325
,1,5085,56330
,1,5086,56335
,1,5087,56340
,1,5088,56345
,1,5089,56350
,1,5090,56355
,1,5091,56360
,1,5092,56365
,1,5093,56370
,1,5094,56375
,1,5095,56380
,1,5096,56385
,1,5097,56390
,1,5098,56395
,1,5099,56400
,1,5100,56405
,1,5101,56410
,1,5102,56415
,1,5103,56420
,1,5104,56425
,1,5105,56430
,1,5106,56435
,1,5107,56440
,1,5108,56445
,1,5109,56450
,1,5110,56455
,1,5111,56460
,1,5112,56465
,1,5113,56470
,1,5114,56475
,1,5115,56480
,1,5116,56485
,1,5117,56490
,1,5118,56495
,1,5119,56500
,1,5120,56505
,1,5121,56510
,1,5122,56515
,1,5123,56520
,1,5124,56525
,1,5125,56530
,1,5126,56535
,1,5127,56540
,1,5128,56545
,1,5129,56550
,1,5130,56555
,1,5131,56560
,1,5132,56565
,1,5133,56570
,1,5134,56575
,1,5135,56580
,1,5136,56585
,1,5137,56590
,1,5138,56595
,1,5139,56600
,1,5140,56605
,1,5141,56610
,1,5142,56615
,1,5143,56620
,1,5144,56625
,1,5145,56630
,1,5146,56635
,1,5147,56640
,1,5148,56645
,1,5149,56650
,1,5150,56655
,1,5151,56660
,1,5152,56665
,1,5153,56670
,1,5154,56675
,1,5155,56680
,1,5156,56685
,1,5157,56690
,1,5158,56695
,1,5159,56700
,1,5160,56705
,1,5161,56710
,1,5162,56715
,1,5163,56720
,1,5164,56725
,1,5165,56730
,1,5166,56735
,1,5167,56740
,1,5168,56745
,1,5169,56750
,1,5170,56755
,1,5171,56760
,1,5172,56765
,1,5173,56770
,1,5174,56775
,1,5175,56780
,1,5176,56785
,1,5177,56790
,1,5178,56795
,1,5179,56800
,1,5180,56805
,1,5181,56810
,1,5182,56815
,1,5183,56820
,1,5184,56825
,1,5185,56830
,1,5186,56835
,1,5187,56840
,1,5188,56845
,1,5189,56850
,1,5190,56855
,1,5191,56860
,1,5192,56865
,1,5193,56870
,1,5194,56875
,1,5195,56880
,1,5196,56885
,1,5197,56890
,1,5198,56895
,1,5199,56900
,1,5200,56905
,1,5201,56910
,1,5202,56915
,1,5203,56920
,1,5204,56925
,1,5205,56930
,1,5206,56935
,1,5207,56940
,1,5208,56945
,1,5209,56950
,1,5210,56955
,1,5211,56960
,1,5212,56965
,1,5213,56970
,1,5214,56975
,1,5215,56980
,1,5216,56985
,1,5217,56990
,1,5218,56995
,1,5219,57000
,1,5220,57005
,1,5221,57010
,1,5222,57015
,1,5223,57020
,1,5224,57025
,1,5225,57030
,1,5226,57035
,1,5227,57040
,1,5228,57045
,1,5229,57050
,1,5230,57055
,1,5231,57060
,1,5232,57065
,1,5233,57070
,1,5234,57075
,1,5235,57080
,1,5236,57085
,1,5237,57090
,1,5238,57095
,1,5239,57100
,1,5240,57105
,1,5241,57110
,1,5242,57115
,1,5243,57120
,1,5244,57125
,1,5245,57130
,1,5246,57135
,1,5247,57140
,1,5248,57145
,1,5249,57150
,1,5250,57155
,1,5251,57160
,1,5252,57165
,1,5253,57170
,1,5254,57175
,1,5255,57180
,1,5256,57185
,1,5257,57190
,1,5258,57195
,1,5259,57200
,1,5260,57205
,1,5261,57210
,1,5262,57215
,1,5263,57220
,1,5264,57225
,1,5265,57230
,1,5266,57235
,1,5267,57240
,1,5268,57245
,1,5269,57250
,1,5270,57255
,1,5271,57260
,1,5272,57265
,1,5273,57270
,1,5274,57275
,1,5275,57280
,1,5276,57285
,1,5277,57290
,1,5278,57295
,1,5279,57300
,1,5280,57305
,1,5281,57310
,1,5282,57315
,1,5283,57320
,1,5284,57325
,1,5285,57330
,1,5286,57335
,1,5287,57340
,1,5288,57345
,1,5289,57350
,1,5290,57355
,1,5291,57360
,1,5292,57365
,1,5293,57370
,1,5294,57375
,1,5295,57380
,1,5296,57385
,1,5297,57390
,1,5298,57395
,1,5299,57400
,1,5300,57405
,1,5301,57410
,1,5302,57415
,1,5303,57420
,1,5304,57425
,1,5305,57430
,1,5306,57435
,1,5307,57440
,1,5308,57445
,1,5309,57450
,1,5310,57455
,1,5311,57460
,1,5312,57465
,1,5313,57470
,1,5314,57475
,1,5315,57480
,1,5316,57485
,1,5317,57490
,1,5318,57495
,1,5319,57500
,1,5320,57505
,1,5321,57510
,1,5322,57515
,1,5323,57520
,1,5324,57525
,1,5325,57530
,1,5326,57535
,1,5327,57540
,1,5328,57545
,1,5329,57550
,1,5330,57555
,1,5331,57560
,1,5332,57565
,1,5333,57570
,1,5334,57575
,1,5335,57580
,1,5336,57585
,1,5337,57590
,1,5338,57595
,1,5339,57600
,1,5340,57605
,1,5341,57610
,1,5342,57615
,1,5343,57620
,1,5344,57625
,1,5345,57630
,1,5346,57635
,1,5347,57640
,1,5348,57645
,1,5349,57650
,1,5350,57655
,1,5351,57660
,1,5352,57665
,1,5353,57670
,1,5354,57675
,1,5355,57680
,1,5356,57685
,1,5357,57690
,1,5358,57695
,1,5359,57700
,1,5360,57705
,1,5361,57710
,1,5362,57715
,1,5363,57720
,1,5364,57725
,1,5365,57730
,1,5366,57735
,1,5367,57740
,1,5368,57745
,1,5369,57750
,1,5370,57755
,1,5371,57760
,1,5372,57765
,1,5373,57770
,1,5374,57775
,1,5375,57780
,1,5376,57785
,1,5377,57790
,1,5378,57795
,1,5379,57800
,1,5380,57805
,1,5381,57810
,1,5382,57815
,1,5383,57820
,1,5384,57825
,1,5385,57830
,1,5386,57835
,1,5387,57840
,1,5388,57845
,1,5389,57850
,1,5390,57855
,1,5391,57860
,1,5392,57865
,1,5393,57870
,1,5394,57875
,1,5395,57880
,1,5396,57885
,1,5397,57890
,1,5398,57895
,1,5399,57900
,1,5400,57905
,1,5401,57910
,1,5402,57915
,1,5403,57920
,1,5404,57925
,1,5405,57930
,1,5406,57935
,1,5407,57940
,1,5408,57945
,1,5409,57950
,1,5410,57955
,1,5411,57960
,1,5412,57965
,1,5413,57970
,1,5414,57975
,1,5415,57980
,1,5416,57985
,1,5417,57990
,1,5418,57995
,1,5419,58000
,1,5420,58005
,1,5421,58010
,1,5422,58015
,1,5423,58020
,1,5424,58025
,1,5425,58030
,1,5426,58035
,1,5427,58040
,1,5428,58045
,1,5429,58050
,1,5430,58055
,1,5431,58060
,1,5432,58065
,1,5433,58070
,1,5434,58075
,1,5435,58080
,1,5436,58085
,1,5437,58090
,1,5438,58095
,1,5439,58100
,1,5440,58105
,1,5441,58110
,1,5442,58115
,1,5443,58120
,1,5444,58125
,1,5445,58130
,1,5446,58135
,1,5447,58140
,1,5448,58145
,1,5449,58150
,1,5450,58155
,1,5451,58160
,1,5452,58165
,1,5453,58170
,1,5454,58175
,1,5455,58180
,1,5456,58185
,1,5457,58190
,1,5458,58195
,1,5459,58200
,1,5460,58205
,1,5461,58210
,1,5462,58215
,1,5463,58220
,1,5464,58225
,1,5465,58230
,1,5466,58235
,1,5467,58240
,1,5468,58245
,1,5469,58250
,1,5470,58255
,1,5471,58260
,1,5472,58265
,1,5473,58270
,1,5474,58275
,1,5475,58280
,1,5476,58285
,1,5477,58290
,1,5478,58295
,1,5479,58300
,1,5480,58305
,1,5481,58310
,1,5482,58315
,1,5483,58320
,1,5484,58325
,1,5485,58330
,1,5486,58335
,1,5487,58340
,1,5488,58345
,1,5489,58350
,1,5490,58355
,1,5491,58360
,1,5492,58365
,1,5493,58370
,1,5494,58375
,1,5495,58380
,1,5496,58385
,1,5497,58390
,1,5498,58395
,1,5499,58400
,1,5500,58405
,1,5501,58410
,1,5502,58415
,1,5503,58420
,1,5504,58425
,1,5505,58430
,1,5506,58435
,1,5507,58440
,1,5508,58445
,1,5509,58450
,1,5510,58455
,1,5511,58460
,1,5512,58465
,1,5513,58470
,1,5514,58475
,1,5515,58480
,1,5516,58485
,1,5517,58490
,1,5518,58495
,1,5519,58500
,1,5520,58505
,1,5521,58510
,1,5522,58515
,1,5523,58520
,1,5524,58525
,1,5525,58530
,1,5526,58535
,1,5527,58540
,1,5528,58545
,1,5529,58550
,1,5530,58555
,1,5531,58560
,1,5532,58565
,1,5533,58570
,1,5534,58575
,1,5535,58580
,1,5536,58585
,1,5537,58590
,1,5538,58595
,1,5539,58600
,1,5540,58605
,1,5541,58610
,1,5542,58615
,1,5543,58620
,1,5544,58625
,1,5545,58630
,1,5546,58635
,1,5547,58640
,1,5548,58645
,1,5549,58650
,1,5550,58655
,1,5551,58660
,1,5552,58665
,1,5553,58670
,1,5554,58675
,1,5555,58680
,1,5556,58685
,1,5557,58690
,1,5558,58695
,1,5559,58700
,1,5560,58705
,1,5561,58710
,1,5562,58715
,1,5563,58720
,1,5564,58725
,1,5565,58730
,1,5566,58735
,1,5567,58740
,1,5568,58745
,1,5569,58750
,1,5570,58755
,1,5571,58760
,1,5572,58765
,1,5573,58770
,1,5574,58775
,1,5575,58780
,1,5576,58785
,1,5577,58790
,1,5578,58795
,1,5579,58800
,1,5580,58805
,1,5581,58810
,1,5582,58815
,1,5583,58820
,1,5584,58825
,1,5585,58830
,1,5586,58835
,1,5587,58840
,1,5588,58845
,1,5589,58850
,1,5590,58855
,1,5591,58860
,1,5592,58865
,1,5593,58870
,1,5594,58875
,1,5595,58880
,1,5596,58885
,1,5597,58890
,1,5598,58895
,1,5599,58900
,1,5600,58905
,1,5601,58910
,1,5602,58915
,1,5603,58920
,1,5604,58925
,1,5605,58930
,1,5606,58935
,1,5607,58940
,1,5608,58945
,1,5609,58950
,1,5610,58955
,1,5611,58960
,1,5612,58965
,1,5613,58970
,1,5614,58975
,1,5615,58980
,1,5616,58985
,1,5617,58990
,1,5618,58995
,1,5619,59000
,1,5620,59005
,1,5621,59010
,1,5622,59015
,1,5623,59020
,1,5624,59025
,1,5625,59030
,1,5626,59035
,1,5627,59040
,1,5628,59045
,1,5629,59050
,1,5630,59055
,1,5631,59060
,1,5632,59065
,1,5633,59070
,1,5634,59075
,1,5635,59080
,1,5636,59085
,1,5637,59090
,1,5638,59095
,1,5639,59100
,1,5640,59105
,1,5641,59110
,1,5642,59115
,1,5643,59120
,1,5644,59125
,1,5645,59130
,1,5646,59135
,1,5647,59140
,1,5648,59145
,1,5649,59150
,1,5650,59155
,1,5651,59160
,1,5652,59165
,1,5653,59170
,1,5654,59175
,1,5655,59180
,1,5656,59185
,1,5657,59190
,1,5658,59195
,1,5659,59200
,1,5660,59205
,1,5661,59210
,1,5662,59215
,1,5663,59220
,1,5664,59225
,1,5665,59230
,1,5666,59235
,1,5667,59240
,1,5668,59245
,1,5669,59250
,1,5670,59255
,1,5671,59260
,1,5672,59265
,1,5673,59270
,1,5674,59275
,1,5675,59280
,1,5676,59285
,1,5677,59290
,1,5678,59295
,1,5679,59300
,1,5680,59305
,1,5681,59310
,1,5682,59315
,1,5683,59320
,1,5684,59325
,1,5685,59330
,1,5686,59335
,1,5687,59340
,1,5688,59345
,1,5689,59350
,1,5690,59355
,1,5691,59360
,1,5692,59365
,1,5693,59370
,1,5694,59375
,1,5695,59380
,1,5696,59385
,1,5697,59390
,1,5698,59395
,1,5699,59400
,1,5700,59405
,1,5701,59410
,1,5702,59415
,1,5703,59420
,1,5704,59425
,1,5705,59430
,1,5706,59435
,1,5707,59440
,1,5708,59445
,1,5709,59450
,1,5710,59455
,1,5711,59460
,1,5712,59465
,1,5713,59470
,1,5714,59475
,1,5715,59480
,1,5716,59485
,1,5717,59490
,1,5718,59495
,1,5719,59500
,1,5720,59505
,1,5721,59510
,1,5722,59515
,1,5723,59520
,1,5724,59525
,1,5725,59530
,1,5726,59535
,1,5727,59540
,1,5728,59545
,1,5729,59550
,1,5730,59555
,1,5731,59560
,1,5732,59565
,1,5733,59570
,1,5734,59575
,1,5735,59580
,1,5736,59585
,1,5737,59590
,1,5738,59595
,1,5739,59600
,1,5740,59605
,1,5741,59610
,1,5742,59615
,1,5743,59620
,1,5744,59625
,1,5745,59630
,1,5746,59635
,1,5747,59640
,1,5748,59645
,1,5749,59650
,1,5750,59655
,1,5751,59660
,1,5752,59665
,1,5753,59670
,1,5754,59675
,1,5755,59680
,1,5756,59685
,1,5757,59690
,1,5758,59695
,1,5759,59700
,1,5760,59705
,1,5761,59710
,1,5762,59715
,1,5763,59720
,1,5764,59725
,1,5765,59730
,1,5766,59735
,1,5767,59740
,1,5768,59745
,1,5769,59750
,1,5770,59755
,1,5771,59760
,1,5772,59765
,1,5773,59770
,1,5774,59775
,1,5775,59780
,1,5776,59785
,1,5777,59790
,1,5778,59795
,1,5779,59800
,1,5780,59805
,1,5781,59810
,1,5782,59815
,1,5783,59820
,1,5784,59825
,1,5785,59830
,1,5786,59835
,1,5787,59840
,1,5788,59845
,1,5789,59850
,1,5790,59855
,1,5791,59860
,1,5792,59865
,1,5793,59870
,1,5794,59875
,1,5795,59880
,1,5796,59885
,1,5797,59890
,1,5798,59895
,1,5799,59900
,1,5800,59905
,1,5801,59910
,1,5802,59915
,1,5803,59920
,1,5804,59925
,1,5805,59930
,1,5806,59935
,1,5807,59940
,1,5808,59945
,1,5809,59950
,1,5810,59955
,1,5811,59960
,1,5812,59965
,1,5813,59970
,1,5814,59975
,1,5815,59980
,1,5816,59985
,1,5817,59990
,1,5818,59995
,1,5819,60000
,1,5820,60005
,1,5821,60010
,1,5822,60015
,1,5823,60020
,1,5824,60025
,1,5825,60030
,1,5826,60035
,1,5827,60040
,1,5828,60045
,1,5829,60050
,1,5830,60055
,1,5831,60060
,1,5832,60065
,1,5833,60070
,1,5834,60075
,1,5835,60080
,1,5836,60085
,1,5837,60090
,1,5838,60095
,1,5839,60100
,1,5840,60105
,1,5841,60110
,1,5842,60115
,1,5843,60120
,1,5844,60125
,1,5845,60130
,1,5846,60135
,1,5847,60140
,1,5848,60145
,1,5849,60150
,1,5850,60155
,1,5851,60160
,1,5852,60165
,1,5853,60170
,1,5854,60175
,1,5855,60180
,1,5856,60185
,1,5857,60190
,1,5858,60195
,1,5859,60200
,1,5860,60205
,1,5861,60210
,1,5862,60215
,1,5863,60220
,1,5864,60225
,1,5865,60230
,1,5866,60235
,1,5867,60240
,1,5868,60245
,1,5869,60250
,1,5870,60255
,1,5871,60260
,1,5872,60265
,1,5873,60270
,1,5874,60275
,1,5875,60280
,1,5876,60285
,1,5877,60290
,1,5878,60295
,1,5879,60300
,1,5880,60305
,1,5881,60310
,1,5882,60315
,1,5883,60320
,1,5884,60325
,1,5885,60330
,1,5886,60335
,1,5887,60340
,1,5888,60345
,1,5889,60350
,1,5890,60355
,1,5891,60360
,1,5892,60365
,1,5893,60370
,1,5894,60375
,1,5895,60380
,1,5896,60385
,1,5897,60390
,1,5898,60395
,1,5899,60400
,1,5900,60405
,1,5901,60410
,1,5902,60415
,1,5903,60420
,1,5904,60425
,1,5905,60430
,1,5906,60435
,1,5907,60440
,1,5908,60445
,1,5909,60450
,1,5910,60455
,1,5911,60460
,1,5912,60465
,1,5913,60470
,1,5914,60475
,1,5915,60480
,1,5916,60485
,1,5917,60490
,1,5918,60495
,1,5919,60500
,1,5920,60505
,1,5921,60510
,1,5922,60515
,1,5923,60520
,1,5924,60525
,1,5925,60530
,1,5926,60535
,1,5927,60540
,1,5928,60545
,1,5929,60550
,1,5930,60555
,1,5931,60560
,1,5932,60565
,1,5933,60570
,1,5934,60575
,1,5935,60580
,1,5936,60585
,1,5937,60590
,1,5938,60595
,1,5939,60600
,1,5940,60605
,1,5941,60610
,1,5942,60615
,1,5943,60620
,1,5944,60625
,1,5945,60630
,1,5946,60635
,1,5947,60640
,1,5948,60645
,1,5949,60650
,1,5950,60655
,1,5951,60660
,1,5952,60665
,1,5953,60670
,1,5954,60675
,1,5955,60680
,1,5956,60685
,1,5957,60690
,1,5958,60695
,1,5959,60700
,1,5960,60705
,1,5961,60710
,1,5962,60715
,1,5963,60720
,1,5964,60725
,1,5965,60730
,1,5966,60735
,1,5967,60740
,1,5968,60745
,1,5969,60750
,1,5970,60755
,1,5971,60760
,1,5972,60765
,1,5973,60770
,1,5974,60775
,1,5975,60780
,1,5976,60785
,1,5977,60790
,1,5978,60795
,1,5979,60800
,1,5980,60805
,1,5981,60810
,1,5982,60815
,1,5983,60820
,1,5984,60825
,1,5985,60830
,1,5986,60835
,1,5987,60840
,1,5988,60845
,1,5989,60850
,1,5990,60855
,1,5991,60860
,1,5992,60865
,1,5993,60870
,1,5994,60875
,1,5995,60880
,1,5996,60885
,1,5997,60890
,1,5998,60895
,1,5999,60900
,1,6000,60905
,1,6001,60910
,1,6002,60915
,1,6003,60920
,1,6004,60925
,1,6005,60930
,1,6006,60935
,1,6007,60940
,1,6008,60945
,1,6009,60950
,1,6010,60955
,1,6011,60960
,1,6012,60965
,1,6013,60970
,1,6014,60975
,1,6015,60980
,1,6016,60985
,1,6017,60990
,1,6018,60995
,1,6019,61000
,1,6020,61005
,1,6021,61010
,1,6022,61015
,1,6023,61020
,1,6024,61025
,1,6025,61030
,1,6026,61035
,1,6027,61040
,1,6028,61045
,1,6029,61050
,1,6030,61055
,1,6031,61060
,1,6032,61065
,1,6033,61070
,1,6034,61075
,1,6035,61080
,1,6036,61085
,1,6037,61090
,1,6038,61095
,1,6039,61100
,1,6040,61105
,1,6041,61110
,1,6042,61115
,1,6043,61120
,1,6044,61125
,1,6045,61130
,1,6046,61135
,1,6047,61140
,1,6048,61145
,1,6049,61150
,1,6050,61155
,1,6051,61160
,1,6052,61165
,1,6053,61170
,1,6054,61175
,1,6055,61180
,1,6056,61185
,1,6057,61190
,1,6058,61195
,1,6059,61200
,1,6060,61205
,1,6061,61210
,1,6062,61215
,1,6063,61220
,1,6064,61225
,1,6065,61230
,1,6066,61235
,1,6067,61240
,1,6068,61245
,1,6069,61250
,1,6070,61255
,1,6071,61260
,1,6072,61265
,1,6073,61270
,1,6074,61275
,1,6075,61280
,1,6076,61285
,1,6077,61290
,1,6078,61295
,1,6079,61300
,1,6080,61305
,1,6081,61310
,1,6082,61315
,1,6083,61320
,1,6084,61325
,1,6085,61330
,1,6086,61335
,1,6087,61340
,1,6088,61345
,1,6089,61350
,1,6090,61355
,1,6091,61360
,1,6092,61365
,1,6093,61370
,1,6094,61375
,1,6095,61380
,1,6096,61385
,1,6097,61390
,1,6098,61395
,1,6099,61400
,1,6100,61405
,1,6101,61410
,1,6102,61415
,1,6103,61420
,1,6104,61425
,1,6105,61430
,1,6106,61435
,1,6107,61440
,1,6108,61445
,1,6109,61450
,1,6110,61455
,1,6111,61460
,1,6112,61465
,1,6113,61470
,1,6114,61475
,1,6115,61480
,1,6116,61485
,1,6117,61490
,1,6118,61495
,1,6119,61500
,1,6120,61505
,1,6121,61510
,1,6122,61515
,1,6123,61520
,1,6124,61525
,1,6125,61530
,1,6126,61535
,1,6127,61540
,1,6128,61545
,1,6129,61550
,1,6130,61555
,1,6131,61560
,1,6132,61565
,1,6133,61570
,1,6134,61575
,1,6135,61580
,1,6136,61585
,1,6137,61590
,1,6138,61595
,1,6139,61600
,1,6140,61605
,1,6141,61610
,1,6142,61615
,1,6143,61620
,1,6144,61625
,1,6145,61630
,1,6146,61635
,1,6147,61640
,1,6148,61645
,1,6149,61650
,1,6150,61655
,1,6151,61660
,1,6152,61665
,1,6153,61670
,1,6154,61675
,1,6155,61680
,1,6156,61685
,1,6157,61690
,1,6158,61695
,1,6159,61700
,1,6160,61705
,1,6161,61710
,1,6162,61715
,1,6163,61720
,1,6164,61725
,1,6165,61730
,1,6166,61735
,1,6167,61740
,1,6168,61745
,1,6169,61750
,1,6170,61755
,1,6171,61760
,1,6172,61765
,1,6173,61770
,1,6174,61775
,1,6175,61780
,1,6176,61785
,1,6177,61790
,1,6178,61795
,1,6179,61800
,1,6180,61805
,1,6181,61810
,1,6182,61815
,1,6183,61820
,1,6184,61825
,1,6185,61830
,1,6186,61835
,1,6187,61840
,1,6188,61845
,1,6189,61850
,1,6190,61855
,1,6191,61860
,1,6192,61865
,1,6193,61870
,1,6194,61875
,1,6195,61880
,1,6196,61885
,1,6197,61890
,1,6198,61895
,1,6199,61900
,1,6200,61905
,1,6201,61910
,1,6202,61915
,1,6203,61920
,1,6204,61925
,1,6205,61930
,1,6206,61935
,1,6207,61940
,1,6208,61945
,1,6209,61950
,1,6210,61955
,1,6211,61960
,1,6212,61965
,1,6213,61970
,1,6214,61975
,1,6215,61980
,1,6216,61985
,1,6217,61990
,1,6218,61995
,1,6219,62000
,1,6220,62005
,1,6221,62010
,1,6222,62015
,1,6223,62020
,1,6224,62025
,1,6225,62030
,1,6226,62035
,1,6227,62040
,1,6228,62045
,1,6229,62050
,1,6230,62055
,1,6231,62060
,1,6232,62065
,1,6233,62070
,1,6234,62075
,1,6235,62080
,1,6236,62085
,1,6237,62090
,1,6238,62095
,1,6239,62100
,1,6240,62105
,1,6241,62110
,1,6242,62115
,1,6243,62120
,1,6244,62125
,1,6245,62130
,1,6246,62135
,1,6247,62140
,1,6248,62145
,1,6249,62150
,1,6250,62155
,1,6251,62160
,1,6252,62165
,1,6253,62170
,1,6254,62175
,1,6255,62180
,1,6256,62185
,1,6257,62190
,1,6258,62195
,1,6259,62200
,1,6260,62205
,1,6261,62210
,1,6262,62215
,1,6263,62220
,1,6264,62225
,1,6265,62230
,1,6266,62235
,1,6267,62240
,1,6268,62245
,1,6269,62250
,1,6270,62255
,1,6271,62260
,1,6272,62265
,1,6273,62270
,1,6274,62275
,1,6275,62280
,1,6276,62285
,1,6277,62290
,1,6278,62295
,1,6279,62300
,1,6280,62305
,1,6281,62310
,1,6282,62315
,1,6283,62320
,1,6284,62325
,1,6285,62330
,1,6286,62335
,1,6287,62340
,1,6288,62345
,1,6289,62350
,1,6290,62355
,1,6291,62360
,1,6292,62365
,1,6293,62370
,1,6294,62375
,1,6295,62380
,1,6296,62385
,1,6297,62390
,1,6298,62395
,1,6299,62400
,1,6300,62405
,1,6301,62410
,1,6302,62415
,1,6303,62420
,1,6304,62425
,1,6305,62430
,1,6306,62435
,1,6307,62440
,1,6308,62445
,1,6309,62450
,1,6310,62455
,1,6311,62460
,1,6312,62465
,1,6313,62470
,1,6314,62475
,1,6315,62480
,1,6316,62485
,1,6317,62490
,1,6318,62495
,1,6319,62500
,1,6320,62505
,1,6321,62510
,1,6322,62515
,1,6323,62520
,1,6324,62525
,1,6325,62530
,1,6326,62535
,1,6327,62540
,1,6328,62545
,1,6329,62550
,1,6330,62555
,1,6331,62560
,1,6332,62565
,1,6333,62570
,1,6334,62575
,1,6335,62580
,1,6336,62585
,1,6337,62590
,1,6338,62595
,1,6339,62600
,1,6340,62605
,1,6341,62610
,1,6342,62615
,1,6343,62620
,1,6344,62625
,1,6345,62630
,1,6346,62635
,1,6347,62640
,1,6348,62645
,1,6349,62650
,1,6350,62655
,1,6351,62660
,1,6352,62665
,1,6353,62670
,1,6354,62675
,1,6355,62680
,1,6356,62685
,1,6357,62690
,1,6358,62695
,1,6359,62700
,1,6360,62705
,1,6361,62710
,1,6362,62715
,1,6363,62720
,1,6364,62725
,1,6365,62730
,1,6366,62735
,1,6367,62740
,1,6368,62745
,1,6369,62750
,1,6370,62755
,1,6371,62760
,1,6372,62765
,1,6373,62770
,1,6374,62775
,1,6375,62780
,1,6376,62785
,1,6377,62790
,1,6378,62795
,1,6379,62800
,1,6380,62805
,1,6381,62810
,1,6382,62815
,1,6383,62820
,1,6384,62825
,1,6385,62830
,1,6386,62835
,1,6387,62840
,1,6388,62845
,1,6389,62850
,1,6390,62855
,1,6391,62860
,1,6392,62865
,1,6393,62870
,1,6394,62875
,1,6395,62880
,1,6396,62885
,1,6397,62890
,1,6398,62895
,1,6399,62900
,1,6400,62905
,1,6401,62910
,1,6402,62915
,1,6403,62920
,1,6404,62925
,1,6405,62930
,1,6406,62935
,1,6407,62940
,1,6408,62945
,1,6409,62950
,1,6410,62955
,1,6411,62960
,1,6412,62965
,1,6413,62970
,1,6414,62975
,1,6415,62980
,1,6416,62985
,1,6417,62990
,1,6418,62995
,1,6419,63000
,1,6420,63005
,1,6421,63010
,1,6422,63015
,1,6423,63020
,1,6424,63025
,1,6425,63030
,1,6426,63035
,1,6427,63040
,1,6428,63045
,1,6429,63050
,1,6430,63055
,1,6431,63060
,1,6432,63065
,1,6433,63070
,1,6434,63075
,1,6435,63080
,1,6436,63085
,1,6437,63090
,1,6438,63095
,1,6439,63100
,1,6440,63105
,1,6441,63110
,1,6442,63115
,1,6443,63120
,1,6444,63125
,1,6445,63130
,1,6446,63135
,1,6447,63140
,1,6448,63145
,1,6449,63150
,1,6450,63155
,1,6451,63160
,1,6452,63165
,1,6453,63170
,1,6454,63175
,1,6455,63180
,1,6456,63185
,1,6457,63190
,1,6458,63195
,1,6459,63200
,1,6460,63205
,1,6461,63210
,1,6462,63215
,1,6463,63220
,1,6464,63225
,1,6465,63230
,1,6466,63235
,1,6467,63240
,1,6468,63245
,1,6469,63250
,1,6470,63255
,1,6471,63260
,1,6472,63265
,1,6473,63270
,1,6474,63275
,1,6475,63280
,1,6476,63285
,1,6477,63290
,1,6478,63295
,1,6479,63300
,1,6480,63305
,1,6481,63310
,1,6482,63315
,1,6483,63320
,1,6484,63325
,1,6485,63330
,1,6486,63335
,1,6487,63340
,1,6488,63345
,1,6489,63350
,1,6490,63355
,1,6491,63360
,1,6492,63365
,1,6493,63370
,1,6494,63375
,1,6495,63380
,1,6496,63385
,1,6497,63390
,1,6498,63395
,1,6499,63400
,1,6500,63405
,1,6501,63410
,1,6502,63415
,1,6503,63420
,1,6504,63425
,1,6505,63430
,1,6506,63435
,1,6507,63440
,1,6508,63445
,1,6509,63450
,1,6510,63455
,1,6511,63460
,1,6512,63465
,1,6513,63470
,1,6514,63475
,1,6515,63480
,1,6516,63485
,1,6517,63490
,1,6518,63495
,1,6519,63500
,1,6520,63505
,1,6521,63510
,1,6522,63515
,1,6523,63520
,1,6524,63525
,1,6525,63530
,1,6526,63535
,1,6527,63540
,1,6528,63545
,1,6529,63550
,1,6530,63555
,1,6531,63560
,1,6532,63565
,1,6533,63570
,1,6534,63575
,1,6535,63580
,1,6536,63585
,1,6537,63590
,1,6538,63595
,1,6539,63600
,1,6540,63605
,1,6541,63610
,1,6542,63615
,1,6543,63620
,1,6544,63625
,1,6545,63630
,1,6546,63635
,1,6547,63640
,1,6548,63645
,1,6549,63650
,1,6550,63655
,1,6551,63660
,1,6552,63665
,1,6553,63670
,1,6554,63675
,1,6555,63680
,1,6556,63685
,1,6557,63690
,1,6558,63695
,1,6559,63700
,1,6560,63705
,1,6561,63710
,1,6562,63715
,1,6563,63720
,1,6564,63725
,1,6565,63730
,1,6566,63735
,1,6567,63740
,1,6568,63745
,1,6569,63750
,1,6570,63755
,1,6571,63760
,1,6572,63765
,1,6573,63770
,1,6574,63775
,1,6575,63780
,1,6576,63785
,1,6577,63790
,1,6578,63795
,1,6579,63800
,1,6580,63805
,1,6581,63810
,1,6582,63815
,1,6583,63820
,1,6584,63825
,1,6585,63830
,1,6586,63835
,1,6587,63840
,1,6588,63845
,1,6589,63850
,1,6590,63855
,1,6591,63860
,1,6592,63865
,1,6593,63870
,1,6594,63875
,1,6595,63880
,1,6596,63885
,1,6597,63890
,1,6598,63895
,1,6599,63900
,1,6600,63905
,1,6601,63910
,1,6602,63915
,1,6603,63920
,1,6604,63925
,1,6605,63930
,1,6606,63935
,1,6607,63940
,1,6608,63945
,1,6609,63950
,1,6610,63955
,1,6611,63960
,1,6612,63965
,1,6613,63970
,1,6614,63975
,1,6615,63980
,1,6616,63985
,1,6617,63990
,1,6618,63995
,1,6619,64000
,1,6620,64005
,1,6621,64010
,1,6622,64015
,1,6623,64020
,1,6624,64025
,1,6625,64030
,1,6626,64035
,1,6627,64040
,1,6628,64045
,1,6629,64050
,1,6630,64055
,1,6631,64060
,1,6632,64065
,1,6633,64070
,1,6634,64075
,1,6635,64080
,1,6636,64085
,1,6637,64090
,1,6638,64095
,1,6639,64100
,1,6640,64105
,1,6641,64110
,1,6642,64115
,1,6643,64120
,1,6644,64125
,1,6645,64130
,1,6646,64135
,1,6647,64140
,1,6648,64145
,1,6649,64150
,1,6650,64155
,1,6651,64160
,1,6652,64165
,1,6653,64170
,1,6654,64175
,1,6655,64180
,1,6656,64185
,1,6657,64190
,1,6658,64195
,1,6659,64200
,1,6660,64205
,1,6661,64210
,1,6662,64215
,1,6663,64220
,1,6664,64225
,1,6665,64230
,1,6666,64235
,1,6667,64240
,1,6668,64245
,1,6669,64250
,1,6670,64255
,1,6671,64260
,1,6672,64265
,1,6673,64270
,1,6674,64275
,1,6675,64280
,1,6676,64285
,1,6677,64290
,1,6678,64295
,1,6679,64300
,1,6680,64305
,1,6681,64310
,1,6682,64315
,1,6683,64320
,1,6684,64325
,1,6685,64330
,1,6686,64335
,1,6687,64340
,1,6688,64345
,1,6689,64350
,1,6690,64355
,1,6691,64360
,1,6692,64365
,1,6693,64370
,1,6694,64375
,1,6695,64380
,1,6696,64385
,1,6697,64390
,1,6698,64395
,1,6699,64400
,1,6700,64405
,1,6701,64410
,1,6702,64415
,1,6703,64420
,1,6704,64425
,1,6705,64430
,1,6706,64435
,1,6707,64440
,1,6708,64445
,1,6709,64450
,1,6710,64455
,1,6711,64460
,1,6712,64465
,1,6713,64470
,1,6714,64475
,1,6715,64480
,1,6716,64485
,1,6717,64490
,1,6718,64495
,1,6719,64500
,1,6720,64505
,1,6721,64510
,1,6722,64515
,1,6723,64520
,1,6724,64525
,1,6725,64530
,1,6726,64535
,1,6727,64540
,1,6728,64545
,1,6729,64550
,1,6730,64555
,1,6731,64560
,1,6732,64565
,1,6733,64570
,1,6734,64575
,1,6735,64580
,1,6736,64585
,1,6737,64590
,1,6738,64595
,1,6739,64600
,1,6740,64605
,1,6741,64610
,1,6742,64615
,1,6743,64620
,1,6744,64625
,1,6745,64630
,1,6746,64635
,1,6747,64640
,1,6748,64645
,1,6749,64650
,1,6750,64655
,1,6751,64660
,1,6752,64665
,1,6753,64670
,1,6754,64675
,1,6755,64680
,1,6756,64685
,1,6757,64690
,1,6758,64695
,1,6759,64700
,1,6760,64705
,1,6761,64710
,1,6762,64715
,1,6763,64720
,1,6764,64725
,1,6765,64730
,1,6766,64735
,1,6767,64740
,1,6768,64745
,1,6769,64750
,1,6770,64755
,1,6771,64760
,1,6772,64765
,1,6773,64770
,1,6774,64775
,1,6775,64780
,1,6776,64785
,1,6777,64790
,1,6778,64795
,1,6779,64800
,1,6780,64805
,1,6781,64810
,1,6782,64815
,1,6783,64820
,1,6784,64825
,1,6785,64830
,1,6786,64835
,1,6787,64840
,1,6788,64845
,1,6789,64850
,1,6790,64855
,1,6791,64860
,1,6792,64865
,1,6793,64870
,1,6794,64875
,1,6795,64880
,1,6796,64885
,1,6797,64890
,1,6798,64895
,1,6799,64900
,1,6800,64905
,1,6801,64910
,1,6802,64915
,1,6803,64920
,1,6804,64925
,1,6805,64930
,1,6806,64935
,1,6807,64940
,1,6808,64945
,1,6809,64950
,1,6810,64955
,1,6811,64960
,1,6812,64965
,1,6813,64970
,1,6814,64975
,1,6815,64980
,1,6816,64985
,1,6817,64990
,1,6818,64995
,1,6819,65000
,1,6820,65005
,1,6821,65010
,1,6822,65015
,1,6823,65020
,1,6824,65025
,1,6825,65030
,1,6826,65035
,1,6827,65040
,1,6828,65045
,1,6829,65050
,1,6830,65055
,1,6831,65060
,1,6832,65065
,1,6833,65070
,1,6834,65075
,1,6835,65080
,1,6836,65085
,1,6837,65090
,1,6838,65095
,1,6839,65100
,1,6840,65105
,1,6841,65110
,1,6842,65115
,1,6843,65120
,1,6844,65125
,1,6845,65130
,1,6846,65135
,1,6847,65140
,1,6848,65145
,1,6849,65150
,1,6850,65155
,1,6851,65160
,1,6852,65165
,1,6853,65170
,1,6854,65175
,1,6855,65180
,1,6856,65185
,1,6857,65190
,1,6858,65195
,1,6859,65200
,1,6860,65205
,1,6861,65210
,1,6862,65215
,1,6863,65220
,1,6864,65225
,1,6865,65230
,1,6866,65235
,1,6867,65240
,1,6868,65245
,1,6869,65250
,1,6870,65255
,1,6871,65260
,1,6872,65265
,1,6873,65270
,1,6874,65275
,1,6875,65280
,1,6876,65285
,1,6877,65290
,1,6878,65295
,1,6879,65300
,1,6880,65305
,1,6881,65310
,1,6882,65315
,1,6883,65320
,1,6884,65325
,1,6885,65330
,1,6886,65335
,1,6887,65340
,1,6888,65345
,1,6889,65350
,1,6890,65355
,1,6891,65360
,1,6892,65365
,1,6893,65370
,1,6894,65375
,1,6895,65380
,1,6896,65385
,1,6897,65390
,1,6898,65395
,1,6899,65400
,1,6900,65405
,1,6901,65410
,1,6902,65415
,1,6903,65420
,1,6904,65425
,1,6905,65430
,1,6906,65435
,1,6907,65440
,1,6908,65445
,1,6909,65450
,1,6910,65455
,1,6911,65460
,1,6912,65465
,1,6913,65470
,1,6914,65475
,1,6915,65480
,1,6916,65485
,1,6917,65490
,1,6918,65495
,1,6919,65500
,1,6920,65505
,1,6921,65510
,1,6922,65515
,1,6923,65520
,1,6924,65525
,1,6925,65530
,1,6926,65535
,1,6927,65540
,1,6928,65545
,1,6929,65550
,1,6930,65555
,1,6931,65560
,1,6932,65565
,1,6933,65570
,1,6934,65575
,1,6935,65580
,1,6936,65585
,1,6937,65590
,1,6938,65595
,1,6939,65600
,1,6940,65605
,1,6941,65610
,1,6942,65615
,1,6943,65620
,1,6944,65625
,1,6945,65630
,1,6946,65635
,1,6947,65640
,1,6948,65645
,1,6949,65650
,1,6950,65655
,1,6951,65660
,1,6952,65665
,1,6953,65670
,1,6954,65675
,1,6955,65680
,1,6956,65685
,1,6957,65690
,1,6958,65695
,1,6959,65700
,1,6960,65705
,1,6961,65710
,1,6962,65715
,1,6963,65720
,1,6964,65725
,1,6965,65730
,1,6966,65735
,1,6967,65740
,1,6968,65745
,1,6969,65750
,1,6970,65755
,1,6971,65760
,1,6972,65765
,1,6973,65770
,1,6974,65775
,1,6975,65780
,1,6976,65785
,1,6977,65790
,1,6978,65795
,1,6979,65800
,1,6980,65805
,1,6981,65810
,1,6982,65815
,1,6983,65820
,1,6984,65825
,1,6985,65830
,1,6986,65835
,1,6987,65840
,1,6988,65845
,1,6989,65850
,1,6990,65855
,1,6991,65860
,1,6992,65865
,1,6993,65870
,1,6994,65875
,1,6995,65880
,1,6996,65885
,1,6997,65890
,1,6998,65895
,1,6999,65900
,1,7000,65905
,1,7001,65910
,1,7002,65915
,1,7003,65920
,1,7004,65925
,1,7005,65930
,1,7006,65935
,1,7007,65940
,1,7008,65945
,1,7009,65950
,1,7010,65955
,1,7011,65960
,1,7012,65965
,1,7013,65970
,1,7014,65975
,1,7015,65980
,1,7016,65985
,1,7017,65990
,1,7018,65995
,1,7019,66000
,1,7020,66005
,1,7021,66010
,1,7022,66015
,1,7023,66020
,1,7024,66025
,1,7025,66030
,1,7026,66035
,1,7027,66040
,1,7028,66045
,1,7029,66050
,1,7030,66055
,1,7031,66060
,1,7032,66065
,1,7033,66070
,1,7034,66075
,1,7035,66080
,1,7036,66085
,1,7037,66090
,1,7038,66095
,1,7039,66100
,1,7040,66105
,1,7041,66110
,1,7042,66115
,1,7043,66120
,1,7044,66125
,1,7045,66130
,1,7046,66135
,1,7047,66140
,1,7048,66145
,1,7049,66150
,1,7050,66155
,1,7051,66160
,1,7052,66165
,1,7053,66170
,1,7054,66175
,1,7055,66180
,1,7056,66185
,1,7057,66190
,1,7058,66195
,1,7059,66200
,1,7060,66205
,1,7061,66210
,1,7062,66215
,1,7063,66220
,1,7064,66225
,1,7065,66230
,1,7066,66235
,1,7067,66240
,1,7068,66245
,1,7069,66250
,1,7070,66255
,1,7071,66260
,1,7072,66265
,1,7073,66270
,1,7074,66275
,1,7075,66280
,1,7076,66285
,1,7077,66290
,1,7078,66295
,1,7079,66300
,1,7080,66305
,1,7081,66310
,1,7082,66315
,1,7083,66320
,1,7084,66325
,1,7085,66330
,1,7086,66335
,1,7087,66340
,1,7088,66345
,1,7089,66350
,1,7090,66355
,1,7091,66360
,1,7092,66365
,1,7093,66370
,1,7094,66375
,1,7095,66380
,1,7096,66385
,1,7097,66390
,1,7098,66395
,1,7099,66400
,1,7100,66405
,1,7101,66410
,1,7102,66415
,1,7103,66420
,1,7104,66425
,1,7105,66430
,1,7106,66435
,1,7107,66440
,1,7108,66445
,1,7109,66450
,1,7110,66455
,1,7111,66460
,1,7112,66465
,1,7113,66470
,1,7114,66475
,1,7115,66480
,1,7116,66485
,1,7117,66490
,1,7118,66495
,1,7119,66500
,1,7120,66505
,1,7121,66510
,1,7122,66515
,1,7123,66520
,1,7124,66525
,1,7125,66530
,1,7126,66535
,1,7127,66540
,1,7128,66545
,1,7129,66550
,1,7130,66555
,1,7131,66560
,1,7132,66565
,1,7133,66570
,1,7134,66575
,1,7135,66580
,1,7136,66585
,1,7137,66590
,1,7138,66595
,1,7139,66600
,1,7140,66605
,1,7141,66610
,1,7142,66615
,1,7143,66620
,1,7144,66625
,1,7145,66630
,1,7146,66635
,1,7147,66640
,1,7148,66645
,1,7149,66650
,1,7150,66655
,1,7151,66660
,1,7152,66665
,1,7153,66670
,1,7154,66675
,1,7155,66680
,1,7156,66685
,1,7157,66690
,1,7158,66695
,1,7159,66700
,1,7160,66705
,1,7161,66710
,1,7162,66715
,1,7163,66720
,1,7164,66725
,1,7165,66730
,1,7166,66735
,1,7167,66740
,1,7168,66745
,1,7169,66750
,1,7170,66755
,1,7171,66760
,1,7172,66765
,1,7173,66770
,1,7174,66775
,1,7175,66780
,1,7176,66785
,1,7177,66790
,1,7178,66795
,1,7179,66800
,1,7180,66805
,1,7181,66810
,1,7182,66815
,1,7183,66820
,1,7184,66825
,1,7185,66830
,1,7186,66835
,1,7187,66840
,1,7188,66845
,1,7189,66850
,1,7190,66855
,1,7191,66860
,1,7192,66865
,1,7193,66870
,1,7194,66875
,1,7195,66880
,1,7196,66885
,1,7197,66890
,1,7198,66895
,1,7199,66900
,1,7200,66905
,1,7201,66910
,1,7202,66915
,1,7203,66920
,1,7204,66925
,1,7205,66930
,1,7206,66935
,1,7207,66940
,1,7208,66945
,1,7209,66950
,1,7210,66955
,1,7211,66960
,1,7212,66965
,1,7213,66970
,1,7214,66975
,1,7215,66980
,1,7216,66985
,1,7217,66990
,1,7218,66995
,1,7219,67000
,1,7220,67005
,1,7221,67010
,1,7222,67015
,1,7223,67020
,1,7224,67025
,1,7225,67030
,1,7226,67035
,1,7227,67040
,1,7228,67045
,1,7229,67050
,1,7230,67055
,1,7231,67060
,1,7232,67065
,1,7233,67070
,1,7234,67075
,1,7235,67080
,1,7236,67085
,1,7237,67090
,1,7238,67095
,1,7239,67100
,1,7240,67105
,1,7241,67110
,1,7242,67115
,1,7243,67120
,1,7244,67125
,1,7245,67130
,1,7246,67135
,1,7247,67140
,1,7248,67145
,1,7249,67150
,1,7250,67155
,1,7251,67160
,1,7252,67165
,1,7253,67170
,1,7254,67175
,1,7255,67180
,1,7256,67185
,1,7257,67190
,1,7258,67195
,1,7259,67200
,1,7260,67205
,1,7261,67210
,1,7262,67215
,1,7263,67220
,1,7264,67225
,1,7265,67230
,1,7266,67235
,1,7267,67240
,1,7268,67245
,1,7269,67250
,1,7270,67255
,1,7271,67260
,1,7272,67265
,1,7273,67270
,1,7274,67275
,1,7275,67280
,1,7276,67285
,1,7277,67290
,1,7278,67295
,1,7279,67300
,1,7280,67305
,1,7281,67310
,1,7282,67315
,1,7283,67320
,1,7284,67325
,1,7285,67330
,1,7286,67335
,1,7287,67340
,1,7288,67345
,1,7289,67350
,1,7290,67355
,1,7291,67360
,1,7292,67365
,1,7293,67370
,1,7294,67375
,1,7295,67380
,1,7296,67385
,1,7297,67390
,1,7298,67395
,1,7299,67400
,1,7300,67405
,1,7301,67410
,1,7302,67415
,1,7303,67420
,1,7304,67425
,1,7305,67430
,1,7306,67435
,1,7307,67440
,1,7308,67445
,1,7309,67450
,1,7310,67455
,1,7311,67460
,1,7312,67465
,1,7313,67470
,1,7314,67475
,1,7315,67480
,1,7316,67485
,1,7317,67490
,1,7318,67495
,1,7319,67500
,1,7320,67505
,1,7321,67510
,1,7322,67515
,1,7323,67520
,1,7324,67525
,1,7325,67530
,1,7326,67535
,1,7327,67540
,1,7328,67545
,1,7329,67550
,1,7330,67555
,1,7331,67560
,1,7332,67565
,1,7333,67570
,1,7334,67575
,1,7335,67580
,1,7336,67585
,1,7337,67590
,1,7338,67595
,1,7339,67600
,1,7340,67605
,1,7341,67610
,1,7342,67615
,1,7343,67620
,1,7344,67625
,1,7345,67630
,1,7346,67635
,1,7347,67640
,1,7348,67645
,1,7349,67650
,1,7350,67655
,1,7351,67660
,1,7352,67665
,1,7353,67670
,1,7354,67675
,1,7355,67680
,1,7356,67685
,1,7357,67690
,1,7358,67695
,1,7359,67700
,1,7360,67705
,1,7361,67710
,1,7362,67715
,1,7363,67720
,1,7364,67725
,1,7365,67730
,1,7366,67735
,1,7367,67740
,1,7368,67745
,1,7369,67750
,1,7370,67755
,1,7371,67760
,1,7372,67765
,1,7373,67770
,1,7374,67775
,1,7375,67780
,1,7376,67785
,1,7377,67790
,1,7378,67795
,1,7379,67800
,1,7380,67805
,1,7381,67810
,1,7382,67815
,1,7383,67820
,1,7384,67825
,1,7385,67830
,1,7386,67835
,1,7387,67840
,1,7388,67845
,1,7389,67850
,1,7390,67855
,1,7391,67860
,1,7392,67865
,1,7393,67870
,1,7394,67875
,1,7395,67880
,1,7396,67885
,1,7397,67890
,1,7398,67895
,1,7399,67900
,1,7400,67905
,1,7401,67910
,1,7402,67915
,1,7403,67920
,1,7404,67925
,1,7405,67930
,1,7406,67935
,1,7407,67940
,1,7408,67945
,1,7409,67950
,1,7410,67955
,1,7411,67960
,1,7412,67965
,1,7413,67970
,1,7414,67975
,1,7415,67980
,1,7416,67985
,1,7417,67990
,1,7418,67995
,1,7419,68000
,1,7420,68005
,1,7421,68010
,1,7422,68015
,1,7423,68020
,1,7424,68025
,1,7425,68030
,1,7426,68035
,1,7427,68040
,1,7428,68045
,1,7429,68050
,1,7430,68055
,1,7431,68060
,1,7432,68065
,1,7433,68070
,1,7434,68075
,1,7435,68080
,1,7436,68085
,1,7437,68090
,1,7438,68095
,1,7439,68100
,1,7440,68105
,1,7441,68110
,1,7442,68115
,1,7443,68120
,1,7444,68125
,1,7445,68130
,1,7446,68135
,1,7447,68140
,1,7448,68145
,1,7449,68150
,1,7450,68155
,1,7451,68160
,1,7452,68165
,1,7453,68170
,1,7454,68175
,1,7455,68180
,1,7456,68185
,1,7457,68190
,1,7458,68195
,1,7459,68200
,1,7460,68205
,1,7461,68210
,1,7462,68215
,1,7463,68220
,1,7464,68225
,1,7465,68230
,1,7466,68235
,1,7467,68240
,1,7468,68245
,1,7469,68250
,1,7470,68255
,1,7471,68260
,1,7472,68265
,1,7473,68270
,1,7474,68275
,1,7475,68280
,1,7476,68285
,1,7477,68290
,1,7478,68295
,1,7479,68300
,1,7480,68305
,1,7481,68310
,1,7482,68315
,1,7483,68320
,1,7484,68325
,1,7485,68330
,1,7486,68335
,1,7487,68340
,1,7488,68345
,1,7489,68350
,1,7490,68355
,1,7491,68360
,1,7492,68365
,1,7493,68370
,1,7494,68375
,1,7495,68380
,1,7496,68385
,1,7497,68390
,1,7498,68395
,1,7499,68400
,1,7500,68405
,1,7501,68410
,1,7502,68415
,1,7503,68420
,1,7504,68425
,1,7505,68430
,1,7506,68435
,1,7507,68440
,1,7508,68445
,1,7509,68450
,1,7510,68455
,1,7511,68460
,1,7512,68465
,1,7513,68470
,1,7514,68475
,1,7515,68480
,1,7516,68485
,1,7517,68490
,1,7518,68495
,1,7519,68500
,1,7520,68505
,1,7521,68510
,1,7522,68515
,1,7523,68520
,1,7524,68525
,1,7525,68530
,1,7526,68535
,1,7527,68540
,1,7528,68545
,1,7529,68550
,1,7530,68555
,1,7531,68560
,1,7532,68565
,1,7533,68570
,1,7534,68575
,1,7535,68580
,1,7536,68585
,1,7537,68590
,1,7538,68595
,1,7539,68600
,1,7540,68605
,1,7541,68610
,1,7542,68615
,1,7543,68620
,1,7544,68625
,1,7545,68630
,1,7546,68635
,1,7547,68640
,1,7548,68645
,1,7549,68650
,1,7550,68655
,1,7551,68660
,1,7552,68665
,1,7553,68670
,1,7554,68675
,1,7555,68680
,1,7556,68685
,1,7557,68690
,1,7558,68695
,1,7559,68700
,1,7560,68705
,1,7561,68710
,1,7562,68715
,1,7563,68720
,1,7564,68725
,1,7565,68730
,1,7566,68735
,1,7567,68740
,1,7568,68745
,1,7569,68750
,1,7570,68755
,1,7571,68760
,1,7572,68765
,1,7573,68770
,1,7574,68775
,1,7575,68780
,1,7576,68785
,1,7577,68790
,1,7578,68795
,1,7579,68800
,1,7580,68805
,1,7581,68810
,1,7582,68815
,1,7583,68820
,1,7584,68825
,1,7585,68830
,1,7586,68835
,1,7587,68840
,1,7588,68845
,1,7589,68850
,1,7590,68855
,1,7591,68860
,1,7592,68865
,1,7593,68870
,1,7594,68875
,1,7595,68880
,1,7596,68885
,1,7597,68890
,1,7598,68895
,1,7599,68900
,1,7600,68905
,1,7601,68910
,1,7602,68915
,1,7603,68920
,1,7604,68925
,1,7605,68930
,1,7606,68935
,1,7607,68940
,1,7608,68945
,1,7609,68950
,1,7610,68955
,1,7611,68960
,1,7612,68965
,1,7613,68970
,1,7614,68975
,1,7615,68980
,1,7616,68985
,1,7617,68990
,1,7618,68995
,1,7619,69000
,1,7620,69005
,1,7621,69010
,1,7622,69015
,1,7623,69020
,1,7624,69025
,1,7625,69030
,1,7626,69035
,1,7627,69040
,1,7628,69045
,1,7629,69050
,1,7630,69055
,1,7631,69060
,1,7632,69065
,1,7633,69070
,1,7634,69075
,1,7635,69080
,1,7636,69085
,1,7637,69090
,1,7638,69095
,1,7639,69100
,1,7640,69105
,1,7641,69110
,1,7642,69115
,1,7643,69120
,1,7644,69125
,1,7645,69130
,1,7646,69135
,1,7647,69140
,1,7648,69145
,1,7649,69150
,1,7650,69155
,1,7651,69160
,1,7652,69165
,1,7653,69170
,1,7654,69175
,1,7655,69180
,1,7656,69185
,1,7657,69190
,1,7658,69195
,1,7659,69200
,1,7660,69205
,1,7661,69210
,1,7662,69215
,1,7663,69220
,1,7664,69225
,1,7665,69230
,1,7666,69235
,1,7667,69240
,1,7668,69245
,1,7669,69250
,1,7670,69255
,1,7671,69260
,1,7672,69265
,1,7673,69270
,1,7674,69275
,1,7675,69280
,1,7676,69285
,1,7677,69290
,1,7678,69295
,1,7679,69300
,1,7680,69305
,1,7681,69310
,1,7682,69315
,1,7683,69320
,1,7684,69325
,1,7685,69330
,1,7686,69335
,1,7687,69340
,1,7688,69345
,1,7689,69350
,1,7690,69355
,1,7691,69360
,1,7692,69365
,1,7693,69370
,1,7694,69375
,1,7695,69380
,1,7696,69385
,1,7697,69390
,1,7698,69395
,1,7699,69400
,1,7700,69405
,1,7701,69410
,1,7702,69415
,1,7703,69420
,1,7704,69425
,1,7705,69430
,1,7706,69435
,1,7707,69440
,1,7708,69445
,1,7709,69450
,1,7710,69455
,1,7711,69460
,1,7712,69465
,1,7713,69470
,1,7714,69475
,1,7715,69480
,1,7716,69485
,1,7717,69490
,1,7718,69495
,1,7719,69500
,1,7720,69505
,1,7721,69510
,1,7722,69515
,1,7723,69520
,1,7724,69525
,1,7725,69530
,1,7726,69535
,1,7727,69540
,1,7728,69545
,1,7729,69550
,1,7730,69555
,1,7731,69560
,1,7732,69565
,1,7733,69570
,1,7734,69575
,1,7735,69580
,1,7736,69585
,1,7737,69590
,1,7738,69595
,1,7739,69600
,1,7740,69605
,1,7741,69610
,1,7742,69615
,1,7743,69620
,1,7744,69625
,1,7745,69630
,1,7746,69635
,1,7747,69640
,1,7748,69645
,1,7749,69650
,1,7750,69655
,1,7751,69660
,1,7752,69665
,1,7753,69670
,1,7754,69675
,1,7755,69680
,1,7756,69685
,1,7757,69690
,1,7758,69695
,1,7759,69700
,1,7760,69705
,1,7761,69710
,1,7762,69715
,1,7763,69720
,1,7764,69725
,1,7765,69730
,1,7766,69735
,1,7767,69740
,1,7768,69745
,1,7769,69750
,1,7770,69755
,1,7771,69760
,1,7772,69765
,1,7773,69770
,1,7774,69775
,1,7775,69780
,1,7776,69785
,1,7777,69790
,1,7778,69795
,1,7779,69800
,1,7780,69805
,1,7781,69810
,1,7782,69815
,1,7783,69820
,1,7784,69825
,1,7785,69830
,1,7786,69835
,1,7787,69840
,1,7788,69845
,1,7789,69850
,1,7790,69855
,1,7791,69860
,1,7792,69865
,1,7793,69870
,1,7794,69875
,1,7795,69880
,1,7796,69885
,1,7797,69890
,1,7798,69895
,1,7799,69900
,1,7800,69905
,1,7801,69910
,1,7802,69915
,1,7803,69920
,1,7804,69925
,1,7805,69930
,1,7806,69935
,1,7807,69940
,1,7808,69945
,1,7809,69950
,1,7810,69955
,1,7811,69960
,1,7812,69965
,1,7813,69970
,1,7814,69975
,1,7815,69980
,1,7816,69985
,1,7817,69990
,1,7818,69995
,1,7819,70000
,1,7820,70005
,1,7821,70010
,1,7822,70015
,1,7823,70020
,1,7824,70025
,1,7825,70030
,1,7826,70035
,1,7827,70040
,1,7828,70045
,1,7829,70050
,1,7830,70055
,1,7831,70060
,1,7832,70065
,1,7833,70070
,1,7834,70075
,1,7835,70080
,1,7836,70085
,1,7837,70090
,1,7838,70095
,1,7839,70100
,1,7840,70105
,1,7841,70110
,1,7842,70115
,1,7843,70120
,1,7844,70125
,1,7845,70130
,1,7846,70135
,1,7847,70140
,1,7848,70145
,1,7849,70150
,1,7850,70155
,1,7851,70160
,1,7852,70165
,1,7853,70170
,1,7854,70175
,1,7855,70180
,1,7856,70185
,1,7857,70190
,1,7858,70195
,1,7859,70200
,1,7860,70205
,1,7861,70210
,1,7862,70215
,1,7863,70220
,1,7864,70225
,1,7865,70230
,1,7866,70235
,1,7867,70240
,1,7868,70245
,1,7869,70250
,1,7870,70255
,1,7871,70260
,1,7872,70265
,1,7873,70270
,1,7874,70275
,1,7875,70280
,1,7876,70285
,1,7877,70290
,1,7878,70295
,1,7879,70300
,1,7880,70305
,1,7881,70310
,1,7882,70315
,1,7883,70320
,1,7884,70325
,1,7885,70330
,1,7886,70335
,1,7887,70340
,1,7888,70345
,1,7889,70350
,1,7890,70355
,1,7891,70360
,1,7892,70365
,1,7893,70370
,1,7894,70375
,1,7895,70380
,1,7896,70385
,1,7897,70390
,1,7898,70395
,1,7899,70400
,1,7900,70405
,1,7901,70410
,1,7902,70415
,1,7903,70420
,1,7904,70425
,1,7905,70430
,1,7906,70435
,1,7907,70440
,1,7908,70445
,1,7909,70450
,1,7910,70455
,1,7911,70460
,1,7912,70465
,1,7913,70470
,1,7914,70475
,1,7915,70480
,1,7916,70485
,1,7917,70490
,1,7918,70495
,1,7919,70500
,1,7920,70505
,1,7921,70510
,1,7922,70515
,1,7923,70520
,1,7924,70525
,1,7925,70530
,1,7926,70535
,1,7927,70540
,1,7928,70545
,1,7929,70550
,1,7930,70555
,1,7931,70560
,1,7932,70565
,1,7933,70570
,1,7934,70575
,1,7935,70580
,1,7936,70585
,1,7937,70590
,1,7938,70595
,1,7939,70600
,1,7940,70605
,1,7941,70610
,1,7942,70615
,1,7943,70620
,1,7944,70625
,1,7945,70630
,1,7946,70635
,1,7947,70640
,1,7948,70645
,1,7949,70650
,1,7950,70655
,1,7951,70660
,1,7952,70665
,1,7953,70670
,1,7954,70675
,1,7955,70680
,1,7956,70685
,1,7957,70690
,1,7958,70695
,1,7959,70700
,1,7960,70705
,1,7961,70710
,1,7962,70715
,1,7963,70720
,1,7964,70725
,1,7965,70730
,1,7966,70735
,1,7967,70740
,1,7968,70745
,1,7969,70750
,1,7970,70755
,1,7971,70760
,1,7972,70765
,1,7973,70770
,1,7974,70775
,1,7975,70780
,1,7976,70785
,1,7977,70790
,1,7978,70795
,1,7979,70800
,1,7980,70805
,1,7981,70810
,1,7982,70815
,1,7983,70820
,1,7984,70825
,1,7985,70830
,1,7986,70835
,1,7987,70840
,1,7988,70845
,1,7989,70850
,1,7990,70855
,1,7991,70860
,1,7992,70865
,1,7993,70870
,1,7994,70875
,1,7995,70880
,1,7996,70885
,1,7997,70890
,1,7998,70895
,1,7999,70900
,1,8000,70905
,1,8001,70910
,1,8002,70915
,1,8003,70920
,1,8004,70925
,1,8005,70930
,1,8006,70935
,1,8007,70940
,1,8008,70945
,1,8009,70950
,1,8010,70955
,1,8011,70960
,1,8012,70965
,1,8013,70970
,1,8014,70975
,1,8015,70980
,1,8016,70985
,1,8017,70990
,1,8018,70995
,1,8019,71000
,1,8020,71005
,1,8021,71010
,1,8022,71015
,1,8023,71020
,1,8024,71025
,1,8025,71030
,1,8026,71035
,1,8027,71040
,1,8028,71045
,1,8029,71050
,1,8030,71055
,1,8031,71060
,1,8032,71065
,1,8033,71070
,1,8034,71075
,1,8035,71080
,1,8036,71085
,1,8037,71090
,1,8038,71095
,1,8039,71100
,1,8040,71105
,1,8041,71110
,1,8042,71115
,1,8043,71120
,1,8044,71125
,1,8045,71130
,1,8046,71135
,1,8047,71140
,1,8048,71145
,1,8049,71150
,1,8050,71155
,1,8051,71160
,1,8052,71165
,1,8053,71170
,1,8054,71175
,1,8055,71180
,1,8056,71185
,1,8057,71190
,1,8058,71195
,1,8059,71200
,1,8060,71205
,1,8061,71210
,1,8062,71215
,1,8063,71220
,1,8064,71225
,1,8065,71230
,1,8066,71235
,1,8067,71240
,1,8068,71245
,1,8069,71250
,1,8070,71255
,1,8071,71260
,1,8072,71265
,1,8073,71270
,1,8074,71275
,1,8075,71280
,1,8076,71285
,1,8077,71290
,1,8078,71295
,1,8079,71300
,1,8080,71305
,1,8081,71310
,1,8082,71315
,1,8083,71320
,1,8084,71325
,1,8085,71330
,1,8086,71335
,1,8087,71340
,1,8088,71345
,1,8089,71350
,1,8090,71355
,1,8091,71360
,1,8092,71365
,1,8093,71370
,1,8094,71375
,1,8095,71380
,1,8096,71385
,1,8097,71390
,1,8098,71395
,1,8099,71400
,1,8100,71405
,1,8101,71410
,1,8102,71415
,1,8103,71420
,1,8104,71425
,1,8105,71430
,1,8106,71435
,1,8107,71440
,1,8108,71445
,1,8109,71450
,1,8110,71455
,1,8111,71460
,1,8112,71465
,1,8113,71470
,1,8114,71475
,1,8115,71480
,1,8116,71485
,1,8117,71490
,1,8118,71495
,1,8119,71500
,1,8120,71505
,1,8121,71510
,1,8122,71515
,1,8123,71520
,1,8124,71525
,1,8125,71530
,1,8126,71535
,1,8127,71540
,1,8128,71545
,1,8129,71550
,1,8130,71555
,1,8131,71560
,1,8132,71565
,1,8133,71570
,1,8134,71575
,1,8135,71580
,1,8136,71585
,1,8137,71590
,1,8138,71595
,1,8139,71600
,1,8140,71605
,1,8141,71610
,1,8142,71615
,1,8143,71620
,1,8144,71625
,1,8145,71630
,1,8146,71635
,1,8147,71640
,1,8148,71645
,1,8149,71650
,1,8150,71655
,1,8151,71660
,1,8152,71665
,1,8153,71670
,1,8154,71675
,1,8155,71680
,1,8156,71685
,1,8157,71690
,1,8158,71695
,1,8159,71700
,1,8160,71705
,1,8161,71710
,1,8162,71715
,1,8163,71720
,1,8164,71725
,1,8165,71730
,1,8166,71735
,1,8167,71740
,1,8168,71745
,1,8169,71750
,1,8170,71755
,1,8171,71760
,1,8172,71765
,1,8173,71770
,1,8174,71775
,1,8175,71780
,1,8176,71785
,1,8177,71790
,1,8178,71795
,1,8179,71800
,1,8180,71805
,1,8181,71810
,1,8182,71815
,1,8183,71820
,1,8184,71825
,1,8185,71830
,1,8186,71835
,1,8187,71840
,1,8188,71845
,1,8189,71850
,1,8190,71855
,1,8191,71860
,1,8192,71865
,1,8193,71870
,1,8194,71875
,1,8195,71880
,1,8196,71885
,1,8197,71890
,1,8198,71895
,1,8199,71900
,1,8200,71905
,1,8201,71910
,1,8202,71915
,1,8203,71920
,1,8204,71925
,1,8205,71930
,1,8206,71935
,1,8207,71940
,1,8208,71945
,1,8209,71950
,1,8210,71955
,1,8211,71960
,1,8212,71965
,1,8213,71970
,1,8214,71975
,1,8215,71980
,1,8216,71985
,1,8217,71990
,1,8218,71995
,1,8219,72000
,1,8220,72005
,1,8221,72010
,1,8222,72015
,1,8223,72020
,1,8224,72025
,1,8225,72030
,1,8226,72035
,1,8227,72040
,1,8228,72045
,1,8229,72050
,1,8230,72055
,1,8231,72060
,1,8232,72065
,1,8233,72070
,1,8234,72075
,1,8235,72080
,1,8236,72085
,1,8237,72090
,1,8238,72095
,1,8239,72100
,1,8240,72105
,1,8241,72110
,1,8242,72115
,1,8243,72120
,1,8244,72125
,1,8245,72130
,1,8246,72135
,1,8247,72140
,1,8248,72145
,1,8249,72150
,1,8250,72155
,1,8251,72160
,1,8252,72165
,1,8253,72170
,1,8254,72175
,1,8255,72180
,1,8256,72185
,1,8257,72190
,1,8258,72195
,1,8259,72200
,1,8260,72205
,1,8261,72210
,1,8262,72215
,1,8263,72220
,1,8264,72225
,1,8265,72230
,1,8266,72235
,1,8267,72240
,1,8268,72245
,1,8269,72250
,1,8270,72255
,1,8271,72260
,1,8272,72265
,1,8273,72270
,1,8274,72275
,1,8275,72280
,1,8276,72285
,1,8277,72290
,1,8278,72295
,1,8279,72300
,1,8280,72305
,1,8281,72310
,1,8282,72315
,1,8283,72320
,1,8284,72325
,1,8285,72330
,1,8286,72335
,1,8287,72340
,1,8288,72345
,1,8289,72350
,1,8290,72355
,1,8291,72360
,1,8292,72365
,1,8293,72370
,1,8294,72375
,1,8295,72380
,1,8296,72385
,1,8297,72390
,1,8298,72395
,1,8299,72400
,1,8300,72405
,1,8301,72410
,1,8302,72415
,1,8303,72420
,1,8304,72425
,1,8305,72430
,1,8306,72435
,1,8307,72440
,1,8308,72445
,1,8309,72450
,1,8310,72455
,1,8311,72460
,1,8312,72465
,1,8313,72470
,1,8314,72475
,1,8315,72480
,1,8316,72485
,1,8317,72490
,1,8318,72495
,1,8319,72500
,1,8320,72505
,1,8321,72510
,1,8322,72515
,1,8323,72520
,1,8324,72525
,1,8325,72530
,1,8326,72535
,1,8327,72540
,1,8328,72545
,1,8329,72550
,1,8330,72555
,1,8331,72560
,1,8332,72565
,1,8333,72570
,1,8334,72575
,1,8335,72580
,1,8336,72585
,1,8337,72590
,1,8338,72595
,1,8339,72600
,1,8340,72605
,1,8341,72610
,1,8342,72615
,1,8343,72620
,1,8344,72625
,1,8345,72630
,1,8346,72635
,1,8347,72640
,1,8348,72645
,1,8349,72650
,1,8350,72655
,1,8351,72660
,1,8352,72665
,1,8353,72670
,1,8354,72675
,1,8355,72680
,1,8356,72685
,1,8357,72690
,1,8358,72695
,1,8359,72700
,1,8360,72705
,1,8361,72710
,1,8362,72715
,1,8363,72720
,1,8364,72725
,1,8365,72730
,1,8366,72735
,1,8367,72740
,1,8368,72745
,1,8369,72750
,1,8370,72755
,1,8371,72760
,1,8372,72765
,1,8373,72770
,1,8374,72775
,1,8375,72780
,1,8376,72785
,1,8377,72790
,1,8378,72795
,1,8379,72800
,1,8380,72805
,1,8381,72810
,1,8382,72815
,1,8383,72820
,1,8384,72825
,1,8385,72830
,1,8386,72835
,1,8387,72840
,1,8388,72845
,1,8389,72850
,1,8390,72855
,1,8391,72860
,1,8392,72865
,1,8393,72870
,1,8394,72875
,1,8395,72880
,1,8396,72885
,1,8397,72890
,1,8398,72895
,1,8399,72900
,1,8400,72905
,1,8401,72910
,1,8402,72915
,1,8403,72920
,1,8404,72925
,1,8405,72930
,1,8406,72935
,1,8407,72940
,1,8408,72945
,1,8409,72950
,1,8410,72955
,1,8411,72960
,1,8412,72965
,1,8413,72970
,1,8414,72975
,1,8415,72980
,1,8416,72985
,1,8417,72990
,1,8418,72995
,1,8419,73000
,1,8420,73005
,1,8421,73010
,1,8422,73015
,1,8423,73020
,1,8424,73025
,1,8425,73030
,1,8426,73035
,1,8427,73040
,1,8428,73045
,1,8429,73050
,1,8430,73055
,1,8431,73060
,1,8432,73065
,1,8433,73070
,1,8434,73075
,1,8435,73080
,1,8436,73085
,1,8437,73090
,1,8438,73095
,1,8439,73100
,1,8440,73105
,1,8441,73110
,1,8442,73115
,1,8443,73120
,1,8444,73125
,1,8445,73130
,1,8446,73135
,1,8447,73140
,1,8448,73145
,1,8449,73150
,1,8450,73155
,1,8451,73160
,1,8452,73165
,1,8453,73170
,1,8454,73175
,1,8455,73180
,1,8456,73185
,1,8457,73190
,1,8458,73195
,1,8459,73200
,1,8460,73205
,1,8461,73210
,1,8462,73215
,1,8463,73220
,1,8464,73225
,1,8465,73230
,1,8466,73235
,1,8467,73240
,1,8468,73245
,1,8469,73250
,1,8470,73255
,1,8471,73260
,1,8472,73265
,1,8473,73270
,1,8474,73275
,1,8475,73280
,1,8476,73285
,1,8477,73290
,1,8478,73295
,1,8479,73300
,1,8480,73305
,1,8481,73310
,1,8482,73315
,1,8483,73320
,1,8484,73325
,1,8485,73330
,1,8486,73335
,1,8487,73340
,1,8488,73345
,1,8489,73350
,1,8490,73355
,1,8491,73360
,1,8492,73365
,1,8493,73370
,1,8494,73375
,1,8495,73380
,1,8496,73385
,1,8497,73390
,1,8498,73395
,1,8499,73400
,1,8500,73405
,1,8501,73410
,1,8502,73415
,1,8503,73420
,1,8504,73425
,1,8505,73430
,1,8506,73435
,1,8507,73440
,1,8508,73445
,1,8509,73450
,1,8510,73455
,1,8511,73460
,1,8512,73465
,1,8513,73470
,1,8514,73475
,1,8515,73480
,1,8516,73485
,1,8517,73490
,1,8518,73495
,1,8519,73500
,1,8520,73505
,1,8521,73510
,1,8522,73515
,1,8523,73520
,1,8524,73525
,1,8525,73530
,1,8526,73535
,1,8527,73540
,1,8528,73545
,1,8529,73550
,1,8530,73555
,1,8531,73560
,1,8532,73565
,1,8533,73570
,1,8534,73575
,1,8535,73580
,1,8536,73585
,1,8537,73590
,1,8538,73595
,1,8539,73600
,1,8540,73605
,1,8541,73610
,1,8542,73615
,1,8543,73620
,1,8544,73625
,1,8545,73630
,1,8546,73635
,1,8547,73640
,1,8548,73645
,1,8549,73650
,1,8550,73655
,1,8551,73660
,1,8552,73665
,1,8553,73670
,1,8554,73675
,1,8555,73680
,1,8556,73685
,1,8557,73690
,1,8558,73695
,1,8559,73700
,1,8560,73705
,1,8561,73710
,1,8562,73715
,1,8563,73720
,1,8564,73725
,1,8565,73730
,1,8566,73735
,1,8567,73740
,1,8568,73745
,1,8569,73750
,1,8570,73755
,1,8571,73760
,1,8572,73765
,1,8573,73770
,1,8574,73775
,1,8575,73780
,1,8576,73785
,1,8577,73790
,1,8578,73795
,1,8579,73800
,1,8580,73805
,1,8581,73810
,1,8582,73815
,1,8583,73820
,1,8584,73825
,1,8585,73830
,1,8586,73835
,1,8587,73840
,1,8588,73845
,1,8589,73850
,1,8590,73855
,1,8591,73860
,1,8592,73865
,1,8593,73870
,1,8594,73875
,1,8595,73880
,1,8596,73885
,1,8597,73890
,1,8598,73895
,1,8599,73900
,1,8600,73905
,1,8601,73910
,1,8602,73915
,1,8603,73920
,1,8604,73925
,1,8605,73930
,1,8606,73935
,1,8607,73940
,1,8608,73945
,1,8609,73950
,1,8610,73955
,1,8611,73960
,1,8612,73965
,1,8613,73970
,1,8614,73975
,1,8615,73980
,1,8616,73985
,1,8617,73990
,1,8618,73995
,1,8619,74000
,1,8620,74005
,1,8621,74010
,1,8622,74015
,1,8623,74020
,1,8624,74025
,1,8625,74030
,1,8626,74035
,1,8627,74040
,1,8628,74045
,1,8629,74050
,1,8630,74055
,1,8631,74060
,1,8632,74065
,1,8633,74070
,1,8634,74075
,1,8635,74080
,1,8636,74085
,1,8637,74090
,1,8638,74095
,1,8639,74100
,1,8640,74105
,1,8641,74110
,1,8642,74115
,1,8643,74120
,1,8644,74125
,1,8645,74130
,1,8646,74135
,1,8647,74140
,1,8648,74145
,1,8649,74150
,1,8650,74155
,1,8651,74160
,1,8652,74165
,1,8653,74170
,1,8654,74175
,1,8655,74180
,1,8656,74185
,1,8657,74190
,1,8658,74195
,1,8659,74200
,1,8660,74205
,1,8661,74210
,1,8662,74215
,1,8663,74220
,1,8664,74225
,1,8665,74230
,1,8666,74235
,1,8667,74240
,1,8668,74245
,1,8669,74250
,1,8670,74255
,1,8671,74260
,1,8672,74265
,1,8673,74270
,1,8674,74275
,1,8675,74280
,1,8676,74285
,1,8677,74290
,1,8678,74295
,1,8679,74300
,1,8680,74305
,1,8681,74310
,1,8682,74315
,1,8683,74320
,1,8684,74325
,1,8685,74330
,1,8686,74335
,1,8687,74340
,1,8688,74345
,1,8689,74350
,1,8690,74355
,1,8691,74360
,1,8692,74365
,1,8693,74370
,1,8694,74375
,1,8695,74380
,1,8696,74385
,1,8697,74390
,1,8698,74395
,1,8699,74400
,1,8700,74405
,1,8701,74410
,1,8702,74415
,1,8703,74420
,1,8704,74425
,1,8705,74430
,1,8706,74435
,1,8707,74440
,1,8708,74445
,1,8709,74450
,1,8710,74455
,1,8711,74460
,1,8712,74465
,1,8713,74470
,1,8714,74475
,1,8715,74480
,1,8716,74485
,1,8717,74490
,1,8718,74495
,1,8719,74500
,1,8720,74505
,1,8721,74510
,1,8722,74515
,1,8723,74520
,1,8724,74525
,1,8725,74530
,1,8726,74535
,1,8727,74540
,1,8728,74545
,1,8729,74550
,1,8730,74555
,1,8731,74560
,1,8732,74565
,1,8733,74570
,1,8734,74575
,1,8735,74580
,1,8736,74585
,1,8737,74590
,1,8738,74595
,1,8739,74600
,1,8740,74605
,1,8741,74610
,1,8742,74615
,1,8743,74620
,1,8744,74625
,1,8745,74630
,1,8746,74635
,1,8747,74640
,1,8748,74645
,1,8749,74650
,1,8750,74655
,1,8751,74660
,1,8752,74665
,1,8753,74670
,1,8754,74675
,1,8755,74680
,1,8756,74685
,1,8757,74690
,1,8758,74695
,1,8759,74700
,1,8760,74705
,1,8761,74710
,1,8762,74715
,1,8763,74720
,1,8764,74725
,1,8765,74730
,1,8766,74735
,1,8767,74740
,1,8768,74745
,1,8769,74750
,1,8770,74755
,1,8771,74760
,1,8772,74765
,1,8773,74770
,1,8774,74775
,1,8775,74780
,1,8776,74785
,1,8777,74790
,1,8778,74795
,1,8779,74800
,1,8780,74805
,1,8781,74810
,1,8782,74815
,1,8783,74820
,1,8784,74825
,1,8785,74830
,1,8786,74835
,1,8787,74840
,1,8788,74845
,1,8789,74850
,1,8790,74855
,1,8791,74860
,1,8792,74865
,1,8793,74870
,1,8794,74875
,1,8795,74880
,1,8796,74885
,1,8797,74890
,1,8798,74895
,1,8799,74900
,1,8800,74905
,1,8801,74910
,1,8802,74915
,1,8803,74920
,1,8804,74925
,1,8805,74930
,1,8806,74935
,1,8807,74940
,1,8808,74945
,1,8809,74950
,1,8810,74955
,1,8811,74960
,1,8812,74965
,1,8813,74970
,1,8814,74975
,1,8815,74980
,1,8816,74985
,1,8817,74990
,1,8818,74995
,1,8819,75000
,1,8820,75005
,1,8821,75010
,1,8822,75015
,1,8823,75020
,1,8824,75025
,1,8825,75030
,1,8826,75035
,1,8827,75040
,1,8828,75045
,1,8829,75050
,1,8830,75055
,1,8831,75060
,1,8832,75065
,1,8833,75070
,1,8834,75075
,1,8835,75080
,1,8836,75085
,1,8837,75090
,1,8838,75095
,1,8839,75100
,1,8840,75105
,1,8841,75110
,1,8842,75115
,1,8843,75120
,1,8844,75125
,1,8845,75130
,1,8846,75135
,1,8847,75140
,1,8848,75145
,1,8849,75150
,1,8850,75155
,1,8851,75160
,1,8852,75165
,1,8853,75170
,1,8854,75175
,1,8855,75180
,1,8856,75185
,1,8857,75190
,1,8858,75195
,1,8859,75200
,1,8860,75205
,1,8861,75210
,1,8862,75215
,1,8863,75220
,1,8864,75225
,1,8865,75230
,1,8866,75235
,1,8867,75240
,1,8868,75245
,1,8869,75250
,1,8870,75255
,1,8871,75260
,1,8872,75265
,1,8873,75270
,1,8874,75275
,1,8875,75280
,1,8876,75285
,1,8877,75290
,1,8878,75295
,1,8879,75300
,1,8880,75305
,1,8881,75310
,1,8882,75315
,1,8883,75320
,1,8884,75325
,1,8885,75330
,1,8886,75335
,1,8887,75340
,1,8888,75345
,1,8889,75350
,1,8890,75355
,1,8891,75360
,1,8892,75365
,1,8893,75370
,1,8894,75375
,1,8895,75380
,1,8896,75385
,1,8897,75390
,1,8898,75395
,1,8899,75400
,1,8900,75405
,1,8901,75410
,1,8902,75415
,1,8903,75420
,1,8904,75425
,1,8905,75430
,1,8906,75435
,1,8907,75440
,1,8908,75445
,1,8909,75450
,1,8910,75455
,1,8911,75460
,1,8912,75465
,1,8913,75470
,1,8914,75475
,1,8915,75480
,1,8916,75485
,1,8917,75490
,1,8918,75495
,1,8919,75500
,1,8920,75505
,1,8921,75510
,1,8922,75515
,1,8923,75520
,1,8924,75525
,1,8925,75530
,1,8926,75535
,1,8927,75540
,1,8928,75545
,1,8929,75550
,1,8930,75555
,1,8931,75560
,1,8932,75565
,1,8933,75570
,1,8934,75575
,1,8935,75580
,1,8936,75585
,1,8937,75590
,1,8938,75595
,1,8939,75600
,1,8940,75605
,1,8941,75610
,1,8942,75615
,1,8943,75620
,1,8944,75625
,1,8945,75630
,1,8946,75635
,1,8947,75640
,1,8948,75645
,1,8949,75650
,1,8950,75655
,1,8951,75660
,1,8952,75665
,1,8953,75670
,1,8954,75675
,1,8955,75680
,1,8956,75685
,1,8957,75690
,1,8958,75695
,1,8959,75700
,1,8960,75705
,1,8961,75710
,1,8962,75715
,1,8963,75720
,1,8964,75725
,1,8965,75730
,1,8966,75735
,1,8967,75740
,1,8968,75745
,1,8969,75750
,1,8970,75755
,1,8971,75760
,1,8972,75765
,1,8973,75770
,1,8974,75775
,1,8975,75780
,1,8976,75785
,1,8977,75790
,1,8978,75795
,1,8979,75800
,1,8980,75805
,1,8981,75810
,1,8982,75815
,1,8983,75820
,1,8984,75825
,1,8985,75830
,1,8986,75835
,1,8987,75840
,1,8988,75845
,1,8989,75850
,1,8990,75855
,1,8991,75860
,1,8992,75865
,1,8993,75870
,1,8994,75875
,1,8995,75880
,1,8996,75885
,1,8997,75890
,1,8998,75895
,1,8999,75900
,1,9000,75905
,1,9001,75910
,1,9002,75915
,1,9003,75920
,1,9004,75925
,1,9005,75930
,1,9006,75935
,1,9007,75940
,1,9008,75945
,1,9009,75950
,1,9010,75955
,1,9011,75960
,1,9012,75965
,1,9013,75970
,1,9014,75975
,1,9015,75980
,1,9016,75985
,1,9017,75990
,1,9018,75995
,1,9019,76000
,1,9020,76005
,1,9021,76010
,1,9022,76015
,1,9023,76020
,1,9024,76025
,1,9025,76030
,1,9026,76035
,1,9027,76040
,1,9028,76045
,1,9029,76050
,1,9030,76055
,1,9031,76060
,1,9032,76065
,1,9033,76070
,1,9034,76075
,1,9035,76080
,1,9036,76085
,1,9037,76090
,1,9038,76095
,1,9039,76100
,1,9040,76105
,1,9041,76110
,1,9042,76115
,1,9043,76120
,1,9044,76125
,1,9045,76130
,1,9046,76135
,1,9047,76140
,1,9048,76145
,1,9049,76150
,1,9050,76155
,1,9051,76160
,1,9052,76165
,1,9053,76170
,1,9054,76175
,1,9055,76180
,1,9056,76185
,1,9057,76190
,1,9058,76195
,1,9059,76200
,1,9060,76205
,1,9061,76210
,1,9062,76215
,1,9063,76220
,1,9064,76225
,1,9065,76230
,1,9066,76235
,1,9067,76240
,1,9068,76245
,1,9069,76250
,1,9070,76255
,1,9071,76260
,1,9072,76265
,1,9073,76270
,1,9074,76275
,1,9075,76280
,1,9076,76285
,1,9077,76290
,1,9078,76295
,1,9079,76300
,1,9080,76305
,1,9081,76310
,1,9082,76315
,1,9083,76320
,1,9084,76325
,1,9085,76330
,1,9086,76335
,1,9087,76340
,1,9088,76345
,1,9089,76350
,1,9090,76355
,1,9091,76360
,1,9092,76365
,1,9093,76370
,1,9094,76375
,1,9095,76380
,1,9096,76385
,1,9097,76390
,1,9098,76395
,1,9099,76400
,1,9100,76405
,1,9101,76410
,1,9102,76415
,1,9103,76420
,1,9104,76425
,1,9105,76430
,1,9106,76435
,1,9107,76440
,1,9108,76445
,1,9109,76450
,1,9110,76455
,1,9111,76460
,1,9112,76465
,1,9113,76470
,1,9114,76475
,1,9115,76480
,1,9116,76485
,1,9117,76490
,1,9118,76495
,1,9119,76500
,1,9120,76505
,1,9121,76510
,1,9122,76515
,1,9123,76520
,1,9124,76525
,1,9125,76530
,1,9126,76535
,1,9127,76540
,1,9128,76545
,1,9129,76550
,1,9130,76555
,1,9131,76560
,1,9132,76565
,1,9133,76570
,1,9134,76575
,1,9135,76580
,1,9136,76585
,1,9137,76590
,1,9138,76595
,1,9139,76600
,1,9140,76605
,1,9141,76610
,1,9142,76615
,1,9143,76620
,1,9144,76625
,1,9145,76630
,1,9146,76635
,1,9147,76640
,1,9148,76645
,1,9149,76650
,1,9150,76655
,1,9151,76660
,1,9152,76665
,1,9153,76670
,1,9154,76675
,1,9155,76680
,1,9156,76685
,1,9157,76690
,1,9158,76695
,1,9159,76700
,1,9160,76705
,1,9161,76710
,1,9162,76715
,1,9163,76720
,1,9164,76725
,1,9165,76730
,1,9166,76735
,1,9167,76740
,1,9168,76745
,1,9169,76750
,1,9170,76755
,1,9171,76760
,1,9172,76765
,1,9173,76770
,1,9174,76775
,1,9175,76780
,1,9176,76785
,1,9177,76790
,1,9178,76795
,1,9179,76800
,1,9180,76805
,1,9181,76810
,1,9182,76815
,1,9183,76820
,1,9184,76825
,1,9185,76830
,1,9186,76835
,1,9187,76840
,1,9188,76845
,1,9189,76850
,1,9190,76855
,1,9191,76860
,1,9192,76865
,1,9193,76870
,1,9194,76875
,1,9195,76880
,1,9196,76885
,1,9197,76890
,1,9198,76895
,1,9199,76900
,1,9200,76905
,1,9201,76910
,1,9202,76915
,1,9203,76920
,1,9204,76925
,1,9205,76930
,1,9206,76935
,1,9207,76940
,1,9208,76945
,1,9209,76950
,1,9210,76955
,1,9211,76960
,1,9212,76965
,1,9213,76970
,1,9214,76975
,1,9215,76980
,1,9216,76985
,1,9217,76990
,1,9218,76995
,1,9219,77000
,1,9220,77005
,1,9221,77010
,1,9222,77015
,1,9223,77020
,1,9224,77025
,1,9225,77030
,1,9226,77035
,1,9227,77040
,1,9228,77045
,1,9229,77050
,1,9230,77055
,1,9231,77060
,1,9232,77065
,1,9233,77070
,1,9234,77075
,1,9235,77080
,1,9236,77085
,1,9237,77090
,1,9238,77095
,1,9239,77100
,1,9240,77105
,1,9241,77110
,1,9242,77115
,1,9243,77120
,1,9244,77125
,1,9245,77130
,1,9246,77135
,1,9247,77140
,1,9248,77145
,1,9249,77150
,1,9250,77155
,1,9251,77160
,1,9252,77165
,1,9253,77170
,1,9254,77175
,1,9255,77180
,1,9256,77185
,1,9257,77190
,1,9258,77195
,1,9259,77200
,1,9260,77205
,1,9261,77210
,1,9262,77215
,1,9263,77220
,1,9264,77225
,1,9265,77230
,1,9266,77235
,1,9267,77240
,1,9268,77245
,1,9269,77250
,1,9270,77255
,1,9271,77260
,1,9272,77265
,1,9273,77270
,1,9274,77275
,1,9275,77280
,1,9276,77285
,1,9277,77290
,1,9278,77295
,1,9279,77300
,1,9280,77305
,1,9281,77310
,1,9282,77315
,1,9283,77320
,1,9284,77325
,1,9285,77330
,1,9286,77335
,1,9287,77340
,1,9288,77345
,1,9289,77350
,1,9290,77355
,1,9291,77360
,1,9292,77365
,1,9293,77370
,1,9294,77375
,1,9295,77380
,1,9296,77385
,1,9297,77390
,1,9298,77395
,1,9299,77400
,1,9300,77405
,1,9301,77410
,1,9302,77415
,1,9303,77420
,1,9304,77425
,1,9305,77430
,1,9306,77435
,1,9307,77440
,1,9308,77445
,1,9309,77450
,1,9310,77455
,1,9311,77460
,1,9312,77465
,1,9313,77470
,1,9314,77475
,1,9315,77480
,1,9316,77485
,1,9317,77490
,1,9318,77495
,1,9319,77500
,1,9320,77505
,1,9321,77510
,1,9322,77515
,1,9323,77520
,1,9324,77525
,1,9325,77530
,1,9326,77535
,1,9327,77540
,1,9328,77545
,1,9329,77550
,1,9330,77555
,1,9331,77560
,1,9332,77565
,1,9333,77570
,1,9334,77575
,1,9335,77580
,1,9336,77585
,1,9337,77590
,1,9338,77595
,1,9339,77600
,1,9340,77605
,1,9341,77610
,1,9342,77615
,1,9343,77620
,1,9344,77625
,1,9345,77630
,1,9346,77635
,1,9347,77640
,1,9348,77645
,1,9349,77650
,1,9350,77655
,1,9351,77660
,1,9352,77665
,1,9353,77670
,1,9354,77675
,1,9355,77680
,1,9356,77685
,1,9357,77690
,1,9358,77695
,1,9359,77700
,1,9360,77705
,1,9361,77710
,1,9362,77715
,1,9363,77720
,1,9364,77725
,1,9365,77730
,1,9366,77735
,1,9367,77740
,1,9368,77745
,1,9369,77750
,1,9370,77755
,1,9371,77760
,1,9372,77765
,1,9373,77770
,1,9374,77775
,1,9375,77780
,1,9376,77785
,1,9377,77790
,1,9378,77795
,1,9379,77800
,1,9380,77805
,1,9381,77810
,1,9382,77815
,1,9383,77820
,1,9384,77825
,1,9385,77830
,1,9386,77835
,1,9387,77840
,1,9388,77845
,1,9389,77850
,1,9390,77855
,1,9391,77860
,1,9392,77865
,1,9393,77870
,1,9394,77875
,1,9395,77880
,1,9396,77885
,1,9397,77890
,1,9398,77895
,1,9399,77900
,1,9400,77905
,1,9401,77910
,1,9402,77915
,1,9403,77920
,1,9404,77925
,1,9405,77930
,1,9406,77935
,1,9407,77940
,1,9408,77945
,1,9409,77950
,1,9410,77955
,1,9411,77960
,1,9412,77965
,1,9413,77970
,1,9414,77975
,1,9415,77980
,1,9416,77985
,1,9417,77990
,1,9418,77995
,1,9419,78000
,1,9420,78005
,1,9421,78010
,1,9422,78015
,1,9423,78020
,1,9424,78025
,1,9425,78030
,1,9426,78035
,1,9427,78040
,1,9428,78045
,1,9429,78050
,1,9430,78055
,1,9431,78060
,1,9432,78065
,1,9433,78070
,1,9434,78075
,1,9435,78080
,1,9436,78085
,1,9437,78090
,1,9438,78095
,1,9439,78100
,1,9440,78105
,1,9441,78110
,1,9442,78115
,1,9443,78120
,1,9444,78125
,1,9445,78130
,1,9446,78135
,1,9447,78140
,1,9448,78145
,1,9449,78150
,1,9450,78155
,1,9451,78160
,1,9452,78165
,1,9453,78170
,1,9454,78175
,1,9455,78180
,1,9456,78185
,1,9457,78190
,1,9458,78195
,1,9459,78200
,1,9460,78205
,1,9461,78210
,1,9462,78215
,1,9463,78220
,1,9464,78225
,1,9465,78230
,1,9466,78235
,1,9467,78240
,1,9468,78245
,1,9469,78250
,1,9470,78255
,1,9471,78260
,1,9472,78265
,1,9473,78270
,1,9474,78275
,1,9475,78280
,1,9476,78285
,1,9477,78290
,1,9478,78295
,1,9479,78300
,1,9480,78305
,1,9481,78310
,1,9482,78315
,1,9483,78320
,1,9484,78325
,1,9485,78330
,1,9486,78335
,1,9487,78340
,1,9488,78345
,1,9489,78350
,1,9490,78355
,1,9491,78360
,1,9492,78365
,1,9493,78370
,1,9494,78375
,1,9495,78380
,1,9496,78385
,1,9497,78390
,1,9498,78395
,1,9499,78400
,1,9500,78405
,1,9501,78410
,1,9502,78415
,1,9503,78420
,1,9504,78425
,1,9505,78430
,1,9506,78435
,1,9507,78440
,1,9508,78445
,1,9509,78450
,1,9510,78455
,1,9511,78460
,1,9512,78465
,1,9513,78470
,1,9514,78475
,1,9515,78480
,1,9516,78485
,1,9517,78490
,1,9518,78495
,1,9519,78500
,1,9520,78505
,1,9521,78510
,1,9522,78515
,1,9523,78520
,1,9524,78525
,1,9525,78530
,1,9526,78535
,1,9527,78540
,1,9528,78545
,1,9529,78550
,1,9530,78555
,1,9531,78560
,1,9532,78565
,1,9533,78570
,1,9534,78575
,1,9535,78580
,1,9536,78585
,1,9537,78590
,1,9538,78595
,1,9539,78600
,1,9540,78605
,1,9541,78610
,1,9542,78615
,1,9543,78620
,1,9544,78625
,1,9545,78630
,1,9546,78635
,1,9547,78640
,1,9548,78645
,1,9549,78650
,1,9550,78655
,1,9551,78660
,1,9552,78665
,1,9553,78670
,1,9554,78675
,1,9555,78680
,1,9556,78685
,1,9557,78690
,1,9558,78695
,1,9559,78700
,1,9560,78705
,1,9561,78710
,1,9562,78715
,1,9563,78720
,1,9564,78725
,1,9565,78730
,1,9566,78735
,1,9567,78740
,1,9568,78745
,1,9569,78750
,1,9570,78755
,1,9571,78760
,1,9572,78765
,1,9573,78770
,1,9574,78775
,1,9575,78780
,1,9576,78785
,1,9577,78790
,1,9578,78795
,1,9579,78800
,1,9580,78805
,1,9581,78810
,1,9582,78815
,1,9583,78820
,1,9584,78825
,1,9585,78830
,1,9586,78835
,1,9587,78840
,1,9588,78845
,1,9589,78850
,1,9590,78855
,1,9591,78860
,1,9592,78865
,1,9593,78870
,1,9594,78875
,1,9595,78880
,1,9596,78885
,1,9597,78890
,1,9598,78895
,1,9599,78900
,1,9600,78905
,1,9601,78910
,1,9602,78915
,1,9603,78920
,1,9604,78925
,1,9605,78930
,1,9606,78935
,1,9607,78940
,1,9608,78945
,1,9609,78950
,1,9610,78955
,1,9611,78960
,1,9612,78965
,1,9613,78970
,1,9614,78975
,1,9615,78980
,1,9616,78985
,1,9617,78990
,1,9618,78995
,1,9619,79000
,1,9620,79005
,1,9621,79010
,1,9622,79015
,1,9623,79020
,1,9624,79025
,1,9625,79030
,1,9626,79035
,1,9627,79040
,1,9628,79045
,1,9629,79050
,1,9630,79055
,1,9631,79060
,1,9632,79065
,1,9633,79070
,1,9634,79075
,1,9635,79080
,1,9636,79085
,1,9637,79090
,1,9638,79095
,1,9639,79100
,1,9640,79105
,1,9641,79110
,1,9642,79115
,1,9643,79120
,1,9644,79125
,1,9645,79130
,1,9646,79135
,1,9647,79140
,1,9648,79145
,1,9649,79150
,1,9650,79155
,1,9651,79160
,1,9652,79165
,1,9653,79170
,1,9654,79175
,1,9655,79180
,1,9656,79185
,1,9657,79190
,1,9658,79195
,1,9659,79200
,1,9660,79205
,1,9661,79210
,1,9662,79215
,1,9663,79220
,1,9664,79225
,1,9665,79230
,1,9666,79235
,1,9667,79240
,1,9668,79245
,1,9669,79250
,1,9670,79255
,1,9671,79260
,1,9672,79265
,1,9673,79270
,1,9674,79275
,1,9675,79280
,1,9676,79285
,1,9677,79290
,1,9678,79295
,1,9679,79300
,1,9680,79305
,1,9681,79310
,1,9682,79315
,1,9683,79320
,1,9684,79325
,1,9685,79330
,1,9686,79335
,1,9687,79340
,1,9688,79345
,1,9689,79350
,1,9690,79355
,1,9691,79360
,1,9692,79365
,1,9693,79370
,1,9694,79375
,1,9695,79380
,1,9696,79385
,1,9697,79390
,1,9698,79395
,1,9699,79400
,1,9700,79405
,1,9701,79410
,1,9702,79415
,1,9703,79420
,1,9704,79425
,1,9705,79430
,1,9706,79435
,1,9707,79440
,1,9708,79445
,1,9709,79450
,1,9710,79455
,1,9711,79460
,1,9712,79465
,1,9713,79470
,1,9714,79475
,1,9715,79480
,1,9716,79485
,1,9717,79490
,1,9718,79495
,1,9719,79500
,1,9720,79505
,1,9721,79510
,1,9722,79515
,1,9723,79520
,1,9724,79525
,1,9725,79530
,1,9726,79535
,1,9727,79540
,1,9728,79545
,1,9729,79550
,1,9730,79555
,1,9731,79560
,1,9732,79565
,1,9733,79570
,1,9734,79575
,1,9735,79580
,1,9736,79585
,1,9737,79590
,1,9738,79595
,1,9739,79600
,1,9740,79605
,1,9741,79610
,1,9742,79615
,1,9743,79620
,1,9744,79625
,1,9745,79630
,1,9746,79635
,1,9747,79640
,1,9748,79645
,1,9749,79650
,1,9750,79655
,1,9751,79660
,1,9752,79665
,1,9753,79670
,1,9754,79675
,1,9755,79680
,1,9756,79685
,1,9757,79690
,1,9758,79695
,1,9759,79700
,1,9760,79705
,1,9761,79710
,1,9762,79715
,1,9763,79720
,1,9764,79725
,1,9765,79730
,1,9766,79735
,1,9767,79740
,1,9768,79745
,1,9769,79750
,1,9770,79755
,1,9771,79760
,1,9772,79765
,1,9773,79770
,1,9774,79775
,1,9775,79780
,1,9776,79785
,1,9777,79790
,1,9778,79795
,1,9779,79800
,1,9780,79805
,1,9781,79810
,1,9782,79815
,1,9783,79820
,1,9784,79825
,1,9785,79830
,1,9786,79835
,1,9787,79840
,1,9788,79845
,1,9789,79850
,1,9790,79855
,1,9791,79860
,1,9792,79865
,1,9793,79870
,1,9794,79875
,1,9795,79880
,1,9796,79885
,1,9797,79890
,1,9798,79895
,1,9799,79900
,1,9800,79905
,1,9801,79910
,1,9802,79915
,1,9803,79920
,1,9804,79925
,1,9805,79930
,1,9806,79935
,1,9807,79940
,1,9808,79945
,1,9809,79950
,1,9810,79955
,1,9811,79960
,1,9812,79965
,1,9813,79970
,1,9814,79975
,1,9815,79980
,1,9816,79985
,1,9817,79990
,1,9818,79995
,1,9819,80000
,1,9820,80005
,1,9821,80010
,1,9822,80015
,1,9823,80020
,1,9824,80025
,1,9825,80030
,1,9826,80035
,1,9827,80040
,1,9828,80045
,1,9829,80050
,1,9830,80055
,1,9831,80060
,1,9832,80065
,1,9833,80070
,1,9834,80075
,1,9835,80080
,1,9836,80085
,1,9837,80090
,1,9838,80095
,1,9839,80100
,1,9840,80105
,1,9841,80110
,1,9842,80115
,1,9843,80120
,1,9844,80125
,1,9845,80130
,1,9846,80135
,1,9847,80140
,1,9848,80145
,1,9849,80150
,1,9850,80155
,1,9851,80160
,1,9852,80165
,1,9853,80170
,1,9854,80175
,1,9855,80180
,1,9856,80185
,1,9857,80190
,1,9858,80195
,1,9859,80200
,1,9860,80205
,1,9861,80210
,1,9862,80215
,1,9863,80220
,1,9864,80225
,1,9865,80230
,1,9866,80235
,1,9867,80240
,1,9868,80245
,1,9869,80250
,1,9870,80255
,1,9871,80260
,1,9872,80265
,1,9873,80270
,1,9874,80275
,1,9875,80280
,1,9876,80285
,1,9877,80290
,1,9878,80295
,1,9879,80300
,1,9880,80305
,1,9881,80310
,1,9882,80315
,1,9883,80320
,1,9884,80325
,1,9885,80330
,1,9886,80335
,1,9887,80340
,1,9888,80345
,1,9889,80350
,1,9890,80355
,1,9891,80360
,1,9892,80365
,1,9893,80370
,1,9894,80375
,1,9895,80380
,1,9896,80385
,1,9897,80390
,1,9898,80395
,1,9899,80400
,1,9900,80405
,1,9901,80410
,1,9902,80415
,1,9903,80420
,1,9904,80425
,1,9905,80430
,1,9906,80435
,1,9907,80440
,1,9908,80445
,1,9909,80450
,1,9910,80455
,1,9911,80460
,1,9912,80465
,1,9913,80470
,1,9914,80475
,1,9915,80480
,1,9916,80485
,1,9917,80490
,1,9918,80495
,1,9919,80500
,1,9920,80505
,1,9921,80510
,1,9922,80515
,1,9923,80520
,1,9924,80525
,1,9925,80530
,1,9926,80535
,1,9927,80540
,1,9928,80545
,1,9929,80550
,1,9930,80555
,1,9931,80560
,1,9932,80565
,1,9933,80570
,1,9934,80575
,1,9935,80580
,1,9936,80585
,1,9937,80590
,1,9938,80595
,1,9939,80600
,1,9940,80605
,1,9941,80610
,1,9942,80615
,1,9943,80620
,1,9944,80625
,1,9945,80630
,1,9946,80635
,1,9947,80640
,1,9948,80645
,1,9949,80650
,1,9950,80655
,1,9951,80660
,1,9952,80665
,1,9953,80670
,1,9954,80675
,1,9955,80680
,1,9956,80685
,1,9957,80690
,1,9958,80695
,1,9959,80700
,1,9960,80705
,1,9961,80710
,1,9962,80715
,1,9963,80720
,1,9964,80725
,1,9965,80730
,1,9966,80735
,1,9967,80740
,1,9968,80745
,1,9969,80750
,1,9970,80755
,1,9971,80760
,1,9972,80765
,1,9973,80770
,1,9974,80775
,1,9975,80780
,1,9976,80785
,1,9977,80790
,1,9978,80795
,1,9979,80800
,1,9980,80805
,1,9981,80810
,1,9982,80815
,1,9983,80820
,1,9984,80825
,1,9985,80830
,1,9986,80835
,1,9987,80840
,1,9988,80845
,1,9989,80850
,1,9990,80855
,1,9991,80860
,1,9992,80865
,1,9993,80870
,1,9994,80875
,1,9995,80880
,1,9996,80885
,1,9997,80890
,1,9998,80895
,1,9999,80900
,1,10000,80905
,1,10001,80910
,1,10002,80915
,1,10003,80920
,1,10004,80925
,1,10005,80930
,1,10006,80935
,1,10007,80940
,1,10008,80945
,1,10009,80950
,1,10010,80955
,1,10011,80960
,1,10012,80965
,1,10013,80970
,1,10014,80975
,1,10015,80980
,1,10016,80985
,1,10017,80990
,1,10018,80995
,1,10019,81000
,1,10020,81005
,1,10021,81010
,1,10022,81015
,1,10023,81020
,1,10024,81025
,1,10025,81030
,1,10026,81035
,1,10027,81040
,1,10028,81045
,1,10029,81050
,1,10030,81055
,1,10031,81060
,1,10032,81065
,1,10033,81070
,1,10034,81075
,1,10035,81080
,1,10036,81085
,1,10037,81090
,1,10038,81095
,1,10039,81100
,1,10040,81105
,1,10041,81110
,1,10042,81115
,1,10043,81120
,1,10044,81125
,1,10045,81130
,1,10046,81135
,1,10047,81140
,1,10048,81145
,1,10049,81150
,1,10050,81155
,1,10051,81160
,1,10052,81165
,1,10053,81170
,1,10054,81175
,1,10055,81180
,1,10056,81185
,1,10057,81190
,1,10058,81195
,1,10059,81200
,1,10060,81205
,1,10061,81210
,1,10062,81215
,1,10063,81220
,1,10064,81225
,1,10065,81230
,1,10066,81235
,1,10067,81240
,1,10068,81245
,1,10069,81250
,1,10070,81255
,1,10071,81260
,1,10072,81265
,1,10073,81270
,1,10074,81275
,1,10075,81280
,1,10076,81285
,1,10077,81290
,1,10078,81295
,1,10079,81300
,1,10080,81305
,1,10081,81310
,1,10082,81315
,1,10083,81320
,1,10084,81325
,1,10085,81330
,1,10086,81335
,1,10087,81340
,1,10088,81345
,1,10089,81350
,1,10090,81355
,1,10091,81360
,1,10092,81365
,1,10093,81370
,1,10094,81375
,1,10095,81380
,1,10096,81385
,1,10097,81390
,1,10098,81395
,1,10099,81400
,1,10100,81405
,1,10101,81410
,1,10102,81415
,1,10103,81420
,1,10104,81425
,1,10105,81430
,1,10106,81435
,1,10107,81440
,1,10108,81445
,1,10109,81450
,1,10110,81455
,1,10111,81460
,1,10112,81465
,1,10113,81470
,1,10114,81475
,1,10115,81480
,1,10116,81485
,1,10117,81490
,1,10118,81495
,1,10119,81500
,1,10120,81505
,1,10121,81510
,1,10122,81515
,1,10123,81520
,1,10124,81525
,1,10125,81530
,1,10126,81535
,1,10127,81540
,1,10128,81545
,1,10129,81550
,1,10130,81555
,1,10131,81560
,1,10132,81565
,1,10133,81570
,1,10134,81575
,1,10135,81580
,1,10136,81585
,1,10137,81590
,1,10138,81595
,1,10139,81600
,1,10140,81605
,1,10141,81610
,1,10142,81615
,1,10143,81620
,1,10144,81625
,1,10145,81630
,1,10146,81635
,1,10147,81640
,1,10148,81645
,1,10149,81650
,1,10150,81655
,1,10151,81660
,1,10152,81665
,1,10153,81670
,1,10154,81675
,1,10155,81680
,1,10156,81685
,1,10157,81690
,1,10158,81695
,1,10159,81700
,1,10160,81705
,1,10161,81710
,1,10162,81715
,1,10163,81720
,1,10164,81725
,1,10165,81730
,1,10166,81735
,1,10167,81740
,1,10168,81745
,1,10169,81750
,1,10170,81755
,1,10171,81760
,1,10172,81765
,1,10173,81770
,1,10174,81775
,1,10175,81780
,1,10176,81785
,1,10177,81790
,1,10178,81795
,1,10179,81800
,1,10180,81805
,1,10181,81810
,1,10182,81815
,1,10183,81820
,1,10184,81825
,1,10185,81830
,1,10186,81835
,1,10187,81840
,1,10188,81845
,1,10189,81850
,1,10190,81855
,1,10191,81860
,1,10192,81865
,1,10193,81870
,1,10194,81875
,1,10195,81880
,1,10196,81885
,1,10197,81890
,1,10198,81895
,1,10199,81900
,1,10200,81905
,1,10201,81910
,1,10202,81915
,1,10203,81920
,1,10204,81925
,1,10205,81930
,1,10206,81935
,1,10207,81940
,1,10208,81945
,1,10209,81950
,1,10210,81955
,1,10211,81960
,1,10212,81965
,1,10213,81970
,1,10214,81975
,1,10215,81980
,1,10216,81985
,1,10217,81990
,1,10218,81995
,1,10219,82000
,1,10220,82005
,1,10221,82010
,1,10222,82015
,1,10223,82020
,1,10224,82025
,1,10225,82030
,1,10226,82035
,1,10227,82040
,1,10228,82045
,1,10229,82050
,1,10230,82055
,1,10231,82060
,1,10232,82065
,1,10233,82070
,1,10234,82075
,1,10235,82080
,1,10236,82085
,1,10237,82090
,1,10238,82095
,1,10239,82100
,1,10240,82105
,1,10241,82110
,1,10242,82115
,1,10243,82120
,1,10244,82125
,1,10245,82130
,1,10246,82135
,1,10247,82140
,1,10248,82145
,1,10249,82150
,1,10250,82155
,1,10251,82160
,1,10252,82165
,1,10253,82170
,1,10254,82175
,1,10255,82180
,1,10256,82185
,1,10257,82190
,1,10258,82195
,1,10259,82200
,1,10260,82205
,1,10261,82210
,1,10262,82215
,1,10263,82220
,1,10264,82225
,1,10265,82230
,1,10266,82235
,1,10267,82240
,1,10268,82245
,1,10269,82250
,1,10270,82255
,1,10271,82260
,1,10272,82265
,1,10273,82270
,1,10274,82275
,1,10275,82280
,1,10276,82285
,1,10277,82290
,1,10278,82295
,1,10279,82300
,1,10280,82305
,1,10281,82310
,1,10282,82315
,1,10283,82320
,1,10284,82325
,1,10285,82330
,1,10286,82335
,1,10287,82340
,1,10288,82345
,1,10289,82350
,1,10290,82355
,1,10291,82360
,1,10292,82365
,1,10293,82370
,1,10294,82375
,1,10295,82380
,1,10296,82385
,1,10297,82390
,1,10298,82395
,1,10299,82400
,1,10300,82405
,1,10301,82410
,1,10302,82415
,1,10303,82420
,1,10304,82425
,1,10305,82430
,1,10306,82435
,1,10307,82440
,1,10308,82445
,1,10309,82450
,1,10310,82455
,1,10311,82460
,1,10312,82465
,1,10313,82470
,1,10314,82475
,1,10315,82480
,1,10316,82485
,1,10317,82490
,1,10318,82495
,1,10319,82500
,1,10320,82505
,1,10321,82510
,1,10322,82515
,1,10323,82520
,1,10324,82525
,1,10325,82530
,1,10326,82535
,1,10327,82540
,1,10328,82545
,1,10329,82550
,1,10330,82555
,1,10331,82560
,1,10332,82565
,1,10333,82570
,1,10334,82575
,1,10335,82580
,1,10336,82585
,1,10337,82590
,1,10338,82595
,1,10339,82600
,1,10340,82605
,1,10341,82610
,1,10342,82615
,1,10343,82620
,1,10344,82625
,1,10345,82630
,1,10346,82635
,1,10347,82640
,1,10348,82645
,1,10349,82650
,1,10350,82655
,1,10351,82660
,1,10352,82665
,1,10353,82670
,1,10354,82675
,1,10355,82680
,1,10356,82685
,1,10357,82690
,1,10358,82695
,1,10359,82700
,1,10360,82705
,1,10361,82710
,1,10362,82715
,1,10363,82720
,1,10364,82725
,1,10365,82730
,1,10366,82735
,1,10367,82740
,1,10368,82745
,1,10369,82750
,1,10370,82755
,1,10371,82760
,1,10372,82765
,1,10373,82770
,1,10374,82775
,1,10375,82780
,1,10376,82785
,1,10377,82790
,1,10378,82795
,1,10379,82800
,1,10380,82805
,1,10381,82810
,1,10382,82815
,1,10383,82820
,1,10384,82825
,1,10385,82830
,1,10386,82835
,1,10387,82840
,1,10388,82845
,1,10389,82850
,1,10390,82855
,1,10391,82860
,1,10392,82865
,1,10393,82870
,1,10394,82875
,1,10395,82880
,1,10396,82885
,1,10397,82890
,1,10398,82895
,1,10399,82900
,1,10400,82905
,1,10401,82910
,1,10402,82915
,1,10403,82920
,1,10404,82925
,1,10405,82930
,1,10406,82935
,1,10407,82940
,1,10408,82945
,1,10409,82950
,1,10410,82955
,1,10411,82960
,1,10412,82965
,1,10413,82970
,1,10414,82975
,1,10415,82980
,1,10416,82985
,1,10417,82990
,1,10418,82995
,1,10419,83000
,1,10420,83005
,1,10421,83010
,1,10422,83015
,1,10423,83020
,1,10424,83025
,1,10425,83030
,1,10426,83035
,1,10427,83040
,1,10428,83045
,1,10429,83050
,1,10430,83055
,1,10431,83060
,1,10432,83065
,1,10433,83070
,1,10434,83075
,1,10435,83080
,1,10436,83085
,1,10437,83090
,1,10438,83095
,1,10439,83100
,1,10440,83105
,1,10441,83110
,1,10442,83115
,1,10443,83120
,1,10444,83125
,1,10445,83130
,1,10446,83135
,1,10447,83140
,1,10448,83145
,1,10449,83150
,1,10450,83155
,1,10451,83160
,1,10452,83165
,1,10453,83170
,1,10454,83175
,1,10455,83180
,1,10456,83185
,1,10457,83190
,1,10458,83195
,1,10459,83200
,1,10460,83205
,1,10461,83210
,1,10462,83215
,1,10463,83220
,1,10464,83225
,1,10465,83230
,1,10466,83235
,1,10467,83240
,1,10468,83245
,1,10469,83250
,1,10470,83255
,1,10471,83260
,1,10472,83265
,1,10473,83270
,1,10474,83275
,1,10475,83280
,1,10476,83285
,1,10477,83290
,1,10478,83295
,1,10479,83300
,1,10480,83305
,1,10481,83310
,1,10482,83315
,1,10483,83320
,1,10484,83325
,1,10485,83330
,1,10486,83335
,1,10487,83340
,1,10488,83345
,1,10489,83350
,1,10490,83355
,1,10491,83360
,1,10492,83365
,1,10493,83370
,1,10494,83375
,1,10495,83380
,1,10496,83385
,1,10497,83390
,1,10498,83395
,1,10499,83400
,1,10500,83405
,1,10501,83410
,1,10502,83415
,1,10503,83420
,1,10504,83425
,1,10505,83430
,1,10506,83435
,1,10507,83440
,1,10508,83445
,1,10509,83450
,1,10510,83455
,1,10511,83460
,1,10512,83465
,1,10513,83470
,1,10514,83475
,1,10515,83480
,1,10516,83485
,1,10517,83490
,1,10518,83495
,1,10519,83500
,1,10520,83505
,1,10521,83510
,1,10522,83515
,1,10523,83520
,1,10524,83525
,1,10525,83530
,1,10526,83535
,1,10527,83540
,1,10528,83545
,1,10529,83550
,1,10530,83555
,1,10531,83560
,1,10532,83565
,1,10533,83570
,1,10534,83575
,1,10535,83580
,1,10536,83585
,1,10537,83590
,1,10538,83595
,1,10539,83600
,1,10540,83605
,1,10541,83610
,1,10542,83615
,1,10543,83620
,1,10544,83625
,1,10545,83630
,1,10546,83635
,1,10547,83640
,1,10548,83645
,1,10549,83650
,1,10550,83655
,1,10551,83660
,1,10552,83665
,1,10553,83670
,1,10554,83675
,1,10555,83680
,1,10556,83685
,1,10557,83690
,1,10558,83695
,1,10559,83700
,1,10560,83705
,1,10561,83710
,1,10562,83715
,1,10563,83720
,1,10564,83725
,1,10565,83730
,1,10566,83735
,1,10567,83740
,1,10568,83745
,1,10569,83750
,1,10570,83755
,1,10571,83760
,1,10572,83765
,1,10573,83770
,1,10574,83775
,1,10575,83780
,1,10576,83785
,1,10577,83790
,1,10578,83795
,1,10579,83800
,1,10580,83805
,1,10581,83810
,1,10582,83815
,1,10583,83820
,1,10584,83825
,1,10585,83830
,1,10586,83835
,1,10587,83840
,1,10588,83845
,1,10589,83850
,1,10590,83855
,1,10591,83860
,1,10592,83865
,1,10593,83870
,1,10594,83875
,1,10595,83880
,1,10596,83885
,1,10597,83890
,1,10598,83895
,1,10599,83900
,1,10600,83905
,1,10601,83910
,1,10602,83915
,1,10603,83920
,1,10604,83925
,1,10605,83930
,1,10606,83935
,1,10607,83940
,1,10608,83945
,1,10609,83950
,1,10610,83955
,1,10611,83960
,1,10612,83965
,1,10613,83970
,1,10614,83975
,1,10615,83980
,1,10616,83985
,1,10617,83990
,1,10618,83995
,1,10619,84000
,1,10620,84005
,1,10621,84010
,1,10622,84015
,1,10623,84020
,1,10624,84025
,1,10625,84030
,1,10626,84035
,1,10627,84040
,1,10628,84045
,1,10629,84050
,1,10630,84055
,1,10631,84060
,1,10632,84065
,1,10633,84070
,1,10634,84075
,1,10635,84080
,1,10636,84085
,1,10637,84090
,1,10638,84095
,1,10639,84100
,1,10640,84105
,1,10641,84110
,1,10642,84115
,1,10643,84120
,1,10644,84125
,1,10645,84130
,1,10646,84135
,1,10647,84140
,1,10648,84145
,1,10649,84150
,1,10650,84155
,1,10651,84160
,1,10652,84165
,1,10653,84170
,1,10654,84175
,1,10655,84180
,1,10656,84185
,1,10657,84190
,1,10658,84195
,1,10659,84200
,1,10660,84205
,1,10661,84210
,1,10662,84215
,1,10663,84220
,1,10664,84225
,1,10665,84230
,1,10666,84235
,1,10667,84240
,1,10668,84245
,1,10669,84250
,1,10670,84255
,1,10671,84260
,1,10672,84265
,1,10673,84270
,1,10674,84275
,1,10675,84280
,1,10676,84285
,1,10677,84290
,1,10678,84295
,1,10679,84300
,1,10680,84305
,1,10681,84310
,1,10682,84315
,1,10683,84320
,1,10684,84325
,1,10685,84330
,1,10686,84335
,1,10687,84340
,1,10688,84345
,1,10689,84350
,1,10690,84355
,1,10691,84360
,1,10692,84365
,1,10693,84370
,1,10694,84375
,1,10695,84380
,1,10696,84385
,1,10697,84390
,1,10698,84395
,1,10699,84400
,1,10700,84405
,1,10701,84410
,1,10702,84415
,1,10703,84420
,1,10704,84425
,1,10705,84430
,1,10706,84435
,1,10707,84440
,1,10708,84445
,1,10709,84450
,1,10710,84455
,1,10711,84460
,1,10712,84465
,1,10713,84470
,1,10714,84475
,1,10715,84480
,1,10716,84485
,1,10717,84490
,1,10718,84495
,1,10719,84500
,1,10720,84505
,1,10721,84510
,1,10722,84515
,1,10723,84520
,1,10724,84525
,1,10725,84530
,1,10726,84535
,1,10727,84540
,1,10728,84545
,1,10729,84550
,1,10730,84555
,1,10731,84560
,1,10732,84565
,1,10733,84570
,1,10734,84575
,1,10735,84580
,1,10736,84585
,1,10737,84590
,1,10738,84595
,1,10739,84600
,1,10740,84605
,1,10741,84610
,1,10742,84615
,1,10743,84620
,1,10744,84625
,1,10745,84630
,1,10746,84635
,1,10747,84640
,1,10748,84645
,1,10749,84650
,1,10750,84655
,1,10751,84660
,1,10752,84665
,1,10753,84670
,1,10754,84675
,1,10755,84680
,1,10756,84685
,1,10757,84690
,1,10758,84695
,1,10759,84700
,1,10760,84705
,1,10761,84710
,1,10762,84715
,1,10763,84720
,1,10764,84725
,1,10765,84730
,1,10766,84735
,1,10767,84740
,1,10768,84745
,1,10769,84750
,1,10770,84755
,1,10771,84760
,1,10772,84765
,1,10773,84770
,1,10774,84775
,1,10775,84780
,1,10776,84785
,1,10777,84790
,1,10778,84795
,1,10779,84800
,1,10780,84805
,1,10781,84810
,1,10782,84815
,1,10783,84820
,1,10784,84825
,1,10785,84830
,1,10786,84835
,1,10787,84840
,1,10788,84845
,1,10789,84850
,1,10790,84855
,1,10791,84860
,1,10792,84865
,1,10793,84870
,1,10794,84875
,1,10795,84880
,1,10796,84885
,1,10797,84890
,1,10798,84895
,1,10799,84900
,1,10800,84905
,1,10801,84910
,1,10802,84915
,1,10803,84920
,1,10804,84925
,1,10805,84930
,1,10806,84935
,1,10807,84940
,1,10808,84945
,1,10809,84950
,1,10810,84955
,1,10811,84960
,1,10812,84965
,1,10813,84970
,1,10814,84975
,1,10815,84980
,1,10816,84985
,1,10817,84990
,1,10818,84995
,1,10819,85000
,1,10820,85005
,1,10821,85010
,1,10822,85015
,1,10823,85020
,1,10824,85025
,1,10825,85030
,1,10826,85035
,1,10827,85040
,1,10828,85045
,1,10829,85050
,1,10830,85055
,1,10831,85060
,1,10832,85065
,1,10833,85070
,1,10834,85075
,1,10835,85080
,1,10836,85085
,1,10837,85090
,1,10838,85095
,1,10839,85100
,1,10840,85105
,1,10841,85110
,1,10842,85115
,1,10843,85120
,1,10844,85125
,1,10845,85130
,1,10846,85135
,1,10847,85140
,1,10848,85145
,1,10849,85150
,1,10850,85155
,1,10851,85160
,1,10852,85165
,1,10853,85170
,1,10854,85175
,1,10855,85180
,1,10856,85185
,1,10857,85190
,1,10858,85195
,1,10859,85200
,1,10860,85205
,1,10861,85210
,1,10862,85215
,1,10863,85220
,1,10864,85225
,1,10865,85230
,1,10866,85235
,1,10867,85240
,1,10868,85245
,1,10869,85250
,1,10870,85255
,1,10871,85260
,1,10872,85265
,1,10873,85270
,1,10874,85275
,1,10875,85280
,1,10876,85285
,1,10877,85290
,1,10878,85295
,1,10879,85300
,1,10880,85305
,1,10881,85310
,1,10882,85315
,1,10883,85320
,1,10884,85325
,1,10885,85330
,1,10886,85335
,1,10887,85340
,1,10888,85345
,1,10889,85350
,1,10890,85355
,1,10891,85360
,1,10892,85365
,1,10893,85370
,1,10894,85375
,1,10895,85380
,1,10896,85385
,1,10897,85390
,1,10898,85395
,1,10899,85400
,1,10900,85405
,1,10901,85410
,1,10902,85415
,1,10903,85420
,1,10904,85425
,1,10905,85430
,1,10906,85435
,1,10907,85440
,1,10908,85445
,1,10909,85450
,1,10910,85455
,1,10911,85460
,1,10912,85465
,1,10913,85470
,1,10914,85475
,1,10915,85480
,1,10916,85485
,1,10917,85490
,1,10918,85495
,1,10919,85500
,1,10920,85505
,1,10921,85510
,1,10922,85515
,1,10923,85520
,1,10924,85525
,1,10925,85530
,1,10926,85535
,1,10927,85540
,1,10928,85545
,1,10929,85550
,1,10930,85555
,1,10931,85560
,1,10932,85565
,1,10933,85570
,1,10934,85575
,1,10935,85580
,1,10936,85585
,1,10937,85590
,1,10938,85595
,1,10939,85600
,1,10940,85605
,1,10941,85610
,1,10942,85615
,1,10943,85620
,1,10944,85625
,1,10945,85630
,1,10946,85635
,1,10947,85640
,1,10948,85645
,1,10949,85650
,1,10950,85655
,1,10951,85660
,1,10952,85665
,1,10953,85670
,1,10954,85675
,1,10955,85680
,1,10956,85685
,1,10957,85690
,1,10958,85695
,1,10959,85700
,1,10960,85705
,1,10961,85710
,1,10962,85715
,1,10963,85720
,1,10964,85725
,1,10965,85730
,1,10966,85735
,1,10967,85740
,1,10968,85745
,1,10969,85750
,1,10970,85755
,1,10971,85760
,1,10972,85765
,1,10973,85770
,1,10974,85775
,1,10975,85780
,1,10976,85785
,1,10977,85790
,1,10978,85795
,1,10979,85800
,1,10980,85805
,1,10981,85810
,1,10982,85815
,1,10983,85820
,1,10984,85825
,1,10985,85830
,1,10986,85835
,1,10987,85840
,1,10988,85845
,1,10989,85850
,1,10990,85855
,1,10991,85860
,1,10992,85865
,1,10993,85870
,1,10994,85875
,1,10995,85880
,1,10996,85885
,1,10997,85890
,1,10998,85895
,1,10999,85900
,1,11000,85905
,1,11001,85910
,1,11002,85915
,1,11003,85920
,1,11004,85925
,1,11005,85930
,1,11006,85935
,1,11007,85940
,1,11008,85945
,1,11009,85950
,1,11010,85955
,1,11011,85960
,1,11012,85965
,1,11013,85970
,1,11014,85975
,1,11015,85980
,1,11016,85985
,1,11017,85990
,1,11018,85995
,1,11019,86000
,1,11020,86005
,1,11021,86010
,1,11022,86015
,1,11023,86020
,1,11024,86025
,1,11025,86030
,1,11026,86035
,1,11027,86040
,1,11028,86045
,1,11029,86050
,1,11030,86055
,1,11031,86060
,1,11032,86065
,1,11033,86070
,1,11034,86075
,1,11035,86080
,1,11036,86085
,1,11037,86090
,1,11038,86095
,1,11039,86100
,1,11040,86105
,1,11041,86110
,1,11042,86115
,1,11043,86120
,1,11044,86125
,1,11045,86130
,1,11046,86135
,1,11047,86140
,1,11048,86145
,1,11049,86150
,1,11050,86155
,1,11051,86160
,1,11052,86165
,1,11053,86170
,1,11054,86175
,1,11055,86180
,1,11056,86185
,1,11057,86190
,1,11058,86195
,1,11059,86200
,1,11060,86205
,1,11061,86210
,1,11062,86215
,1,11063,86220
,1,11064,86225
,1,11065,86230
,1,11066,86235
,1,11067,86240
,1,11068,86245
,1,11069,86250
,1,11070,86255
,1,11071,86260
,1,11072,86265
,1,11073,86270
,1,11074,86275
,1,11075,86280
,1,11076,86285
,1,11077,86290
,1,11078,86295
,1,11079,86300
,1,11080,86305
,1,11081,86310
,1,11082,86315
,1,11083,86320
,1,11084,86325
,1,11085,86330
,1,11086,86335
,1,11087,86340
,1,11088,86345
,1,11089,86350
,1,11090,86355
,1,11091,86360
,1,11092,86365
,1,11093,86370
,1,11094,86375
,1,11095,86380
,1,11096,86385
,1,11097,86390
,1,11098,86395
,1,11099,86400
,1,11100,86405
,1,11101,86410
,1,11102,86415
,1,11103,86420
,1,11104,86425
,1,11105,86430
,1,11106,86435
,1,11107,86440
,1,11108,86445
,1,11109,86450
,1,11110,86455
,1,11111,86460
,1,11112,86465
,1,11113,86470
,1,11114,86475
,1,11115,86480
,1,11116,86485
,1,11117,86490
,1,11118,86495
,1,11119,86500
,1,11120,86505
,1,11121,86510
,1,11122,86515
,1,11123,86520
,1,11124,86525
,1,11125,86530
,1,11126,86535
,1,11127,86540
,1,11128,86545
,1,11129,86550
,1,11130,86555
,1,11131,86560
,1,11132,86565
,1,11133,86570
,1,11134,86575
,1,11135,86580
,1,11136,86585
,1,11137,86590
,1,11138,86595
,1,11139,86600
,1,11140,86605
,1,11141,86610
,1,11142,86615
,1,11143,86620
,1,11144,86625
,1,11145,86630
,1,11146,86635
,1,11147,86640
,1,11148,86645
,1,11149,86650
,1,11150,86655
,1,11151,86660
,1,11152,86665
,1,11153,86670
,1,11154,86675
,1,11155,86680
,1,11156,86685
,1,11157,86690
,1,11158,86695
,1,11159,86700
,1,11160,86705
,1,11161,86710
,1,11162,86715
,1,11163,86720
,1,11164,86725
,1,11165,86730
,1,11166,86735
,1,11167,86740
,1,11168,86745
,1,11169,86750
,1,11170,86755
,1,11171,86760
,1,11172,86765
,1,11173,86770
,1,11174,86775
,1,11175,86780
,1,11176,86785
,1,11177,86790
,1,11178,86795
,1,11179,86800
,1,11180,86805
,1,11181,86810
,1,11182,86815
,1,11183,86820
,1,11184,86825
,1,11185,86830
,1,11186,86835
,1,11187,86840
,1,11188,86845
,1,11189,86850
,1,11190,86855
,1,11191,86860
,1,11192,86865
,1,11193,86870
,1,11194,86875
,1,11195,86880
,1,11196,86885
,1,11197,86890
,1,11198,86895
,1,11199,86900
,1,11200,86905
,1,11201,86910
,1,11202,86915
,1,11203,86920
,1,11204,86925
,1,11205,86930
,1,11206,86935
,1,11207,86940
,1,11208,86945
,1,11209,86950
,1,11210,86955
,1,11211,86960
,1,11212,86965
,1,11213,86970
,1,11214,86975
,1,11215,86980
,1,11216,86985
,1,11217,86990
,1,11218,86995
,1,11219,87000
,1,11220,87005
,1,11221,87010
,1,11222,87015
,1,11223,87020
,1,11224,87025
,1,11225,87030
,1,11226,87035
,1,11227,87040
,1,11228,87045
,1,11229,87050
,1,11230,87055
,1,11231,87060
,1,11232,87065
,1,11233,87070
,1,11234,87075
,1,11235,87080
,1,11236,87085
,1,11237,87090
,1,11238,87095
,1,11239,87100
,1,11240,87105
,1,11241,87110
,1,11242,87115
,1,11243,87120
,1,11244,87125
,1,11245,87130
,1,11246,87135
,1,11247,87140
,1,11248,87145
,1,11249,87150
,1,11250,87155
,1,11251,87160
,1,11252,87165
,1,11253,87170
,1,11254,87175
,1,11255,87180
,1,11256,87185
,1,11257,87190
,1,11258,87195
,1,11259,87200
,1,11260,87205
,1,11261,87210
,1,11262,87215
,1,11263,87220
,1,11264,87225
,1,11265,87230
,1,11266,87235
,1,11267,87240
,1,11268,87245
,1,11269,87250
,1,11270,87255
,1,11271,87260
,1,11272,87265
,1,11273,87270
,1,11274,87275
,1,11275,87280
,1,11276,87285
,1,11277,87290
,1,11278,87295
,1,11279,87300
,1,11280,87305
,1,11281,87310
,1,11282,87315
,1,11283,87320
,1,11284,87325
,1,11285,87330
,1,11286,87335
,1,11287,87340
,1,11288,87345
,1,11289,87350
,1,11290,87355
,1,11291,87360
,1,11292,87365
,1,11293,87370
,1,11294,87375
,1,11295,87380
,1,11296,87385
,1,11297,87390
,1,11298,87395
,1,11299,87400
,1,11300,87405
,1,11301,87410
,1,11302,87415
,1,11303,87420
,1,11304,87425
,1,11305,87430
,1,11306,87435
,1,11307,87440
,1,11308,87445
,1,11309,87450
,1,11310,87455
,1,11311,87460
,1,11312,87465
,1,11313,87470
,1,11314,87475
,1,11315,87480
,1,11316,87485
,1,11317,87490
,1,11318,87495
,1,11319,87500
,1,11320,87505
,1,11321,87510
,1,11322,87515
,1,11323,87520
,1,11324,87525
,1,11325,87530
,1,11326,87535
,1,11327,87540
,1,11328,87545
,1,11329,87550
,1,11330,87555
,1,11331,87560
,1,11332,87565
,1,11333,87570
,1,11334,87575
,1,11335,87580
,1,11336,87585
,1,11337,87590
,1,11338,87595
,1,11339,87600
,1,11340,87605
,1,11341,87610
,1,11342,87615
,1,11343,87620
,1,11344,87625
,1,11345,87630
,1,11346,87635
,1,11347,87640
,1,11348,87645
,1,11349,87650
,1,11350,87655
,1,11351,87660
,1,11352,87665
,1,11353,87670
,1,11354,87675
,1,11355,87680
,1,11356,87685
,1,11357,87690
,1,11358,87695
,1,11359,87700
,1,11360,87705
,1,11361,87710
,1,11362,87715
,1,11363,87720
,1,11364,87725
,1,11365,87730
,1,11366,87735
,1,11367,87740
,1,11368,87745
,1,11369,87750
,1,11370,87755
,1,11371,87760
,1,11372,87765
,1,11373,87770
,1,11374,87775
,1,11375,87780
,1,11376,87785
,1,11377,87790
,1,11378,87795
,1,11379,87800
,1,11380,87805
,1,11381,87810
,1,11382,87815
,1,11383,87820
,1,11384,87825
,1,11385,87830
,1,11386,87835
,1,11387,87840
,1,11388,87845
,1,11389,87850
,1,11390,87855
,1,11391,87860
,1,11392,87865
,1,11393,87870
,1,11394,87875
,1,11395,87880
,1,11396,87885
,1,11397,87890
,1,11398,87895
,1,11399,87900
,1,11400,87905
,1,11401,87910
,1,11402,87915
,1,11403,87920
,1,11404,87925
,1,11405,87930
,1,11406,87935
,1,11407,87940
,1,11408,87945
,1,11409,87950
,1,11410,87955
,1,11411,87960
,1,11412,87965
,1,11413,87970
,1,11414,87975
,1,11415,87980
,1,11416,87985
,1,11417,87990
,1,11418,87995
,1,11419,88000
,1,11420,88005
,1,11421,88010
,1,11422,88015
,1,11423,88020
,1,11424,88025
,1,11425,88030
,1,11426,88035
,1,11427,88040
,1,11428,88045
,1,11429,88050
,1,11430,88055
,1,11431,88060
,1,11432,88065
,1,11433,88070
,1,11434,88075
,1,11435,88080
,1,11436,88085
,1,11437,88090
,1,11438,88095
,1,11439,88100
,1,11440,88105
,1,11441,88110
,1,11442,88115
,1,11443,88120
,1,11444,88125
,1,11445,88130
,1,11446,88135
,1,11447,88140
,1,11448,88145
,1,11449,88150
,1,11450,88155
,1,11451,88160
,1,11452,88165
,1,11453,88170
,1,11454,88175
,1,11455,88180
,1,11456,88185
,1,11457,88190
,1,11458,88195
,1,11459,88200
,1,11460,88205
,1,11461,88210
,1,11462,88215
,1,11463,88220
,1,11464,88225
,1,11465,88230
,1,11466,88235
,1,11467,88240
,1,11468,88245
,1,11469,88250
,1,11470,88255
,1,11471,88260
,1,11472,88265
,1,11473,88270
,1,11474,88275
,1,11475,88280
,1,11476,88285
,1,11477,88290
,1,11478,88295
,1,11479,88300
,1,11480,88305
,1,11481,88310
,1,11482,88315
,1,11483,88320
,1,11484,88325
,1,11485,88330
,1,11486,88335
,1,11487,88340
,1,11488,88345
,1,11489,88350
,1,11490,88355
,1,11491,88360
,1,11492,88365
,1,11493,88370
,1,11494,88375
,1,11495,88380
,1,11496,88385
,1,11497,88390
,1,11498,88395
,1,11499,88400
,1,11500,88405
,1,11501,88410
,1,11502,88415
,1,11503,88420
,1,11504,88425
,1,11505,88430
,1,11506,88435
,1,11507,88440
,1,11508,88445
,1,11509,88450
,1,11510,88455
,1,11511,88460
,1,11512,88465
,1,11513,88470
,1,11514,88475
,1,11515,88480
,1,11516,88485
,1,11517,88490
,1,11518,88495
,1,11519,88500
,1,11520,88505
,1,11521,88510
,1,11522,88515
,1,11523,88520
,1,11524,88525
,1,11525,88530
,1,11526,88535
,1,11527,88540
,1,11528,88545
,1,11529,88550
,1,11530,88555
,1,11531,88560
,1,11532,88565
,1,11533,88570
,1,11534,88575
,1,11535,88580
,1,11536,88585
,1,11537,88590
,1,11538,88595
,1,11539,88600
,1,11540,88605
,1,11541,88610
,1,11542,88615
,1,11543,88620
,1,11544,88625
,1,11545,88630
,1,11546,88635
,1,11547,88640
,1,11548,88645
,1,11549,88650
,1,11550,88655
,1,11551,88660
,1,11552,88665
,1,11553,88670
,1,11554,88675
,1,11555,88680
,1,11556,88685
,1,11557,88690
,1,11558,88695
,1,11559,88700
,1,11560,88705
,1,11561,88710
,1,11562,88715
,1,11563,88720
,1,11564,88725
,1,11565,88730
,1,11566,88735
,1,11567,88740
,1,11568,88745
,1,11569,88750
,1,11570,88755
,1,11571,88760
,1,11572,88765
,1,11573,88770
,1,11574,88775
,1,11575,88780
,1,11576,88785
,1,11577,88790
,1,11578,88795
,1,11579,88800
,1,11580,88805
,1,11581,88810
,1,11582,88815
,1,11583,88820
,1,11584,88825
,1,11585,88830
,1,11586,88835
,1,11587,88840
,1,11588,88845
,1,11589,88850
,1,11590,88855
,1,11591,88860
,1,11592,88865
,1,11593,88870
,1,11594,88875
,1,11595,88880
,1,11596,88885
,1,11597,88890
,1,11598,88895
,1,11599,88900
,1,11600,88905
,1,11601,88910
,1,11602,88915
,1,11603,88920
,1,11604,88925
,1,11605,88930
,1,11606,88935
,1,11607,88940
,1,11608,88945
,1,11609,88950
,1,11610,88955
,1,11611,88960
,1,11612,88965
,1,11613,88970
,1,11614,88975
,1,11615,88980
,1,11616,88985
,1,11617,88990
,1,11618,88995
,1,11619,89000
,1,11620,89005
,1,11621,89010
,1,11622,89015
,1,11623,89020
,1,11624,89025
,1,11625,89030
,1,11626,89035
,1,11627,89040
,1,11628,89045
,1,11629,89050
,1,11630,89055
,1,11631,89060
,1,11632,89065
,1,11633,89070
,1,11634,89075
,1,11635,89080
,1,11636,89085
,1,11637,89090
,1,11638,89095
,1,11639,89100
,1,11640,89105
,1,11641,89110
,1,11642,89115
,1,11643,89120
,1,11644,89125
,1,11645,89130
,1,11646,89135
,1,11647,89140
,1,11648,89145
,1,11649,89150
,1,11650,89155
,1,11651,89160
,1,11652,89165
,1,11653,89170
,1,11654,89175
,1,11655,89180
,1,11656,89185
,1,11657,89190
,1,11658,89195
,1,11659,89200
,1,11660,89205
,1,11661,89210
,1,11662,89215
,1,11663,89220
,1,11664,89225
,1,11665,89230
,1,11666,89235
,1,11667,89240
,1,11668,89245
,1,11669,89250
,1,11670,89255
,1,11671,89260
,1,11672,89265
,1,11673,89270
,1,11674,89275
,1,11675,89280
,1,11676,89285
,1,11677,89290
,1,11678,89295
,1,11679,89300
,1,11680,89305
,1,11681,89310
,1,11682,89315
,1,11683,89320
,1,11684,89325
,1,11685,89330
,1,11686,89335
,1,11687,89340
,1,11688,89345
,1,11689,89350
,1,11690,89355
,1,11691,89360
,1,11692,89365
,1,11693,89370
,1,11694,89375
,1,11695,89380
,1,11696,89385
,1,11697,89390
,1,11698,89395
,1,11699,89400
,1,11700,89405
,1,11701,89410
,1,11702,89415
,1,11703,89420
,1,11704,89425
,1,11705,89430
,1,11706,89435
,1,11707,89440
,1,11708,89445
,1,11709,89450
,1,11710,89455
,1,11711,89460
,1,11712,89465
,1,11713,89470
,1,11714,89475
,1,11715,89480
,1,11716,89485
,1,11717,89490
,1,11718,89495
,1,11719,89500
,1,11720,89505
,1,11721,89510
,1,11722,89515
,1,11723,89520
,1,11724,89525
,1,11725,89530
,1,11726,89535
,1,11727,89540
,1,11728,89545
,1,11729,89550
,1,11730,89555
,1,11731,89560
,1,11732,89565
,1,11733,89570
,1,11734,89575
,1,11735,89580
,1,11736,89585
,1,11737,89590
,1,11738,89595
,1,11739,89600
,1,11740,89605
,1,11741,89610
,1,11742,89615
,1,11743,89620
,1,11744,89625
,1,11745,89630
,1,11746,89635
,1,11747,89640
,1,11748,89645
,1,11749,89650
,1,11750,89655
,1,11751,89660
,1,11752,89665
,1,11753,89670
,1,11754,89675
,1,11755,89680
,1,11756,89685
,1,11757,89690
,1,11758,89695
,1,11759,89700
,1,11760,89705
,1,11761,89710
,1,11762,89715
,1,11763,89720
,1,11764,89725
,1,11765,89730
,1,11766,89735
,1,11767,89740
,1,11768,89745
,1,11769,89750
,1,11770,89755
,1,11771,89760
,1,11772,89765
,1,11773,89770
,1,11774,89775
,1,11775,89780
,1,11776,89785
,1,11777,89790
,1,11778,89795
,1,11779,89800
,1,11780,89805
,1,11781,89810
,1,11782,89815
,1,11783,89820
,1,11784,89825
,1,11785,89830
,1,11786,89835
,1,11787,89840
,1,11788,89845
,1,11789,89850
,1,11790,89855
,1,11791,89860
,1,11792,89865
,1,11793,89870
,1,11794,89875
,1,11795,89880
,1,11796,89885
,1,11797,89890
,1,11798,89895
,1,11799,89900
,1,11800,89905
,1,11801,89910
,1,11802,89915
,1,11803,89920
,1,11804,89925
,1,11805,89930
,1,11806,89935
,1,11807,89940
,1,11808,89945
,1,11809,89950
,1,11810,89955
,1,11811,89960
,1,11812,89965
,1,11813,89970
,1,11814,89975
,1,11815,89980
,1,11816,89985
,1,11817,89990
,1,11818,89995
,1,11819,90000
,1,11820,90005
,1,11821,90010
,1,11822,90015
,1,11823,90020
,1,11824,90025
,1,11825,90030
,1,11826,90035
,1,11827,90040
,1,11828,90045
,1,11829,90050
,1,11830,90055
,1,11831,90060
,1,11832,90065
,1,11833,90070
,1,11834,90075
,1,11835,90080
,1,11836,90085
,1,11837,90090
,1,11838,90095
,1,11839,90100
,1,11840,90105
,1,11841,90110
,1,11842,90115
,1,11843,90120
,1,11844,90125
,1,11845,90130
,1,11846,90135
,1,11847,90140
,1,11848,90145
,1,11849,90150
,1,11850,90155
,1,11851,90160
,1,11852,90165
,1,11853,90170
,1,11854,90175
,1,11855,90180
,1,11856,90185
,1,11857,90190
,1,11858,90195
,1,11859,90200
,1,11860,90205
,1,11861,90210
,1,11862,90215
,1,11863,90220
,1,11864,90225
,1,11865,90230
,1,11866,90235
,1,11867,90240
,1,11868,90245
,1,11869,90250
,1,11870,90255
,1,11871,90260
,1,11872,90265
,1,11873,90270
,1,11874,90275
,1,11875,90280
,1,11876,90285
,1,11877,90290
,1,11878,90295
,1,11879,90300
,1,11880,90305
,1,11881,90310
,1,11882,90315
,1,11883,90320
,1,11884,90325
,1,11885,90330
,1,11886,90335
,1,11887,90340
,1,11888,90345
,1,11889,90350
,1,11890,90355
,1,11891,90360
,1,11892,90365
,1,11893,90370
,1,11894,90375
,1,11895,90380
,1,11896,90385
,1,11897,90390
,1,11898,90395
,1,11899,90400
,1,11900,90405
,1,11901,90410
,1,11902,90415
,1,11903,90420
,1,11904,90425
,1,11905,90430
,1,11906,90435
,1,11907,90440
,1,11908,90445
,1,11909,90450
,1,11910,90455
,1,11911,90460
,1,11912,90465
,1,11913,90470
,1,11914,90475
,1,11915,90480
,1,11916,90485
,1,11917,90490
,1,11918,90495
,1,11919,90500
,1,11920,90505
,1,11921,90510
,1,11922,90515
,1,11923,90520
,1,11924,90525
,1,11925,90530
,1,11926,90535
,1,11927,90540
,1,11928,90545
,1,11929,90550
,1,11930,90555
,1,11931,90560
,1,11932,90565
,1,11933,90570
,1,11934,90575
,1,11935,90580
,1,11936,90585
,1,11937,90590
,1,11938,90595
,1,11939,90600
,1,11940,90605
,1,11941,90610
,1,11942,90615
,1,11943,90620
,1,11944,90625
,1,11945,90630
,1,11946,90635
,1,11947,90640
,1,11948,90645
,1,11949,90650
,1,11950,90655
,1,11951,90660
,1,11952,90665
,1,11953,90670
,1,11954,90675
,1,11955,90680
,1,11956,90685
,1,11957,90690
,1,11958,90695
,1,11959,90700
,1,11960,90705
,1,11961,90710
,1,11962,90715
,1,11963,90720
,1,11964,90725
,1,11965,90730
,1,11966,90735
,1,11967,90740
,1,11968,90745
,1,11969,90750
,1,11970,90755
,1,11971,90760
,1,11972,90765
,1,11973,90770
,1,11974,90775
,1,11975,90780
,1,11976,90785
,1,11977,90790
,1,11978,90795
,1,11979,90800
,1,11980,90805
,1,11981,90810
,1,11982,90815
,1,11983,90820
,1,11984,90825
,1,11985,90830
,1,11986,90835
,1,11987,90840
,1,11988,90845
,1,11989,90850
,1,11990,90855
,1,11991,90860
,1,11992,90865
,1,11993,90870
,1,11994,90875
,1,11995,90880
,1,11996,90885
,1,11997,90890
,1,11998,90895
,1,11999,90900
,1,12000,90905
,1,12001,90910
,1,12002,90915
,1,12003,90920
,1,12004,90925
,1,12005,90930
,1,12006,90935
,1,12007,90940
,1,12008,90945
,1,12009,90950
,1,12010,90955
,1,12011,90960
,1,12012,90965
,1,12013,90970
,1,12014,90975
,1,12015,90980
,1,12016,90985
,1,12017,90990
,1,12018,90995
,1,12019,91000
,1,12020,91005
,1,12021,91010
,1,12022,91015
,1,12023,91020
,1,12024,91025
,1,12025,91030
,1,12026,91035
,1,12027,91040
,1,12028,91045
,1,12029,91050
,1,12030,91055
,1,12031,91060
,1,12032,91065
,1,12033,91070
,1,12034,91075
,1,12035,91080
,1,12036,91085
,1,12037,91090
,1,12038,91095
,1,12039,91100
,1,12040,91105
,1,12041,91110
,1,12042,91115
,1,12043,91120
,1,12044,91125
,1,12045,91130
,1,12046,91135
,1,12047,91140
,1,12048,91145
,1,12049,91150
,1,12050,91155
,1,12051,91160
,1,12052,91165
,1,12053,91170
,1,12054,91175
,1,12055,91180
,1,12056,91185
,1,12057,91190
,1,12058,91195
,1,12059,91200
,1,12060,91205
,1,12061,91210
,1,12062,91215
,1,12063,91220
,1,12064,91225
,1,12065,91230
,1,12066,91235
,1,12067,91240
,1,12068,91245
,1,12069,91250
,1,12070,91255
,1,12071,91260
,1,12072,91265
,1,12073,91270
,1,12074,91275
,1,12075,91280
,1,12076,91285
,1,12077,91290
,1,12078,91295
,1,12079,91300
,1,12080,91305
,1,12081,91310
,1,12082,91315
,1,12083,91320
,1,12084,91325
,1,12085,91330
,1,12086,91335
,1,12087,91340
,1,12088,91345
,1,12089,91350
,1,12090,91355
,1,12091,91360
,1,12092,91365
,1,12093,91370
,1,12094,91375
,1,12095,91380
,1,12096,91385
,1,12097,91390
,1,12098,91395
,1,12099,91400
,1,12100,91405
,1,12101,91410
,1,12102,91415
,1,12103,91420
,1,12104,91425
,1,12105,91430
,1,12106,91435
,1,12107,91440
,1,12108,91445
,1,12109,91450
,1,12110,91455
,1,12111,91460
,1,12112,91465
,1,12113,91470
,1,12114,91475
,1,12115,91480
,1,12116,91485
,1,12117,91490
,1,12118,91495
,1,12119,91500
,1,12120,91505
,1,12121,91510
,1,12122,91515
,1,12123,91520
,1,12124,91525
,1,12125,91530
,1,12126,91535
,1,12127,91540
,1,12128,91545
,1,12129,91550
,1,12130,91555
,1,12131,91560
,1,12132,91565
,1,12133,91570
,1,12134,91575
,1,12135,91580
,1,12136,91585
,1,12137,91590
,1,12138,91595
,1,12139,91600
,1,12140,91605
,1,12141,91610
,1,12142,91615
,1,12143,91620
,1,12144,91625
,1,12145,91630
,1,12146,91635
,1,12147,91640
,1,12148,91645
,1,12149,91650
,1,12150,91655
,1,12151,91660
,1,12152,91665
,1,12153,91670
,1,12154,91675
,1,12155,91680
,1,12156,91685
,1,12157,91690
,1,12158,91695
,1,12159,91700
,1,12160,91705
,1,12161,91710
,1,12162,91715
,1,12163,91720
,1,12164,91725
,1,12165,91730
,1,12166,91735
,1,12167,91740
,1,12168,91745
,1,12169,91750
,1,12170,91755
,1,12171,91760
,1,12172,91765
,1,12173,91770
,1,12174,91775
,1,12175,91780
,1,12176,91785
,1,12177,91790
,1,12178,91795
,1,12179,91800
,1,12180,91805
,1,12181,91810
,1,12182,91815
,1,12183,91820
,1,12184,91825
,1,12185,91830
,1,12186,91835
,1,12187,91840
,1,12188,91845
,1,12189,91850
,1,12190,91855
,1,12191,91860
,1,12192,91865
,1,12193,91870
,1,12194,91875
,1,12195,91880
,1,12196,91885
,1,12197,91890
,1,12198,91895
,1,12199,91900
,1,12200,91905
,1,12201,91910
,1,12202,91915
,1,12203,91920
,1,12204,91925
,1,12205,91930
,1,12206,91935
,1,12207,91940
,1,12208,91945
,1,12209,91950
,1,12210,91955
,1,12211,91960
,1,12212,91965
,1,12213,91970
,1,12214,91975
,1,12215,91980
,1,12216,91985
,1,12217,91990
,1,12218,91995
,1,12219,92000
,1,12220,92005
,1,12221,92010
,1,12222,92015
,1,12223,92020
,1,12224,92025
,1,12225,92030
,1,12226,92035
,1,12227,92040
,1,12228,92045
,1,12229,92050
,1,12230,92055
,1,12231,92060
,1,12232,92065
,1,12233,92070
,1,12234,92075
,1,12235,92080
,1,12236,92085
,1,12237,92090
,1,12238,92095
,1,12239,92100
,1,12240,92105
,1,12241,92110
,1,12242,92115
,1,12243,92120
,1,12244,92125
,1,12245,92130
,1,12246,92135
,1,12247,92140
,1,12248,92145
,1,12249,92150
,1,12250,92155
,1,12251,92160
,1,12252,92165
,1,12253,92170
,1,12254,92175
,1,12255,92180
,1,12256,92185
,1,12257,92190
,1,12258,92195
,1,12259,92200
,1,12260,92205
,1,12261,92210
,1,12262,92215
,1,12263,92220
,1,12264,92225
,1,12265,92230
,1,12266,92235
,1,12267,92240
,1,12268,92245
,1,12269,92250
,1,12270,92255
,1,12271,92260
,1,12272,92265
,1,12273,92270
,1,12274,92275
,1,12275,92280
,1,12276,92285
,1,12277,92290
,1,12278,92295
,1,12279,92300
,1,12280,92305
,1,12281,92310
,1,12282,92315
,1,12283,92320
,1,12284,92325
,1,12285,92330
,1,12286,92335
,1,12287,92340
,1,12288,92345
,1,12289,92350
,1,12290,92355
,1,12291,92360
,1,12292,92365
,1,12293,92370
,1,12294,92375
,1,12295,92380
,1,12296,92385
,1,12297,92390
,1,12298,92395
,1,12299,92400
,1,12300,92405
,1,12301,92410
,1,12302,92415
,1,12303,92420
,1,12304,92425
,1,12305,92430
,1,12306,92435
,1,12307,92440
,1,12308,92445
,1,12309,92450
,1,12310,92455
,1,12311,92460
,1,12312,92465
,1,12313,92470
,1,12314,92475
,1,12315,92480
,1,12316,92485
,1,12317,92490
,1,12318,92495
,1,12319,92500
,1,12320,92505
,1,12321,92510
,1,12322,92515
,1,12323,92520
,1,12324,92525
,1,12325,92530
,1,12326,92535
,1,12327,92540
,1,12328,92545
,1,12329,92550
,1,12330,92555
,1,12331,92560
,1,12332,92565
,1,12333,92570
,1,12334,92575
,1,12335,92580
,1,12336,92585
,1,12337,92590
,1,12338,92595
,1,12339,92600
,1,12340,92605
,1,12341,92610
,1,12342,92615
,1,12343,92620
,1,12344,92625
,1,12345,92630
,1,12346,92635
,1,12347,92640
,1,12348,92645
,1,12349,92650
,1,12350,92655
,1,12351,92660
,1,12352,92665
,1,12353,92670
,1,12354,92675
,1,12355,92680
,1,12356,92685
,1,12357,92690
,1,12358,92695
,1,12359,92700
,1,12360,92705
,1,12361,92710
,1,12362,92715
,1,12363,92720
,1,12364,92725
,1,12365,92730
,1,12366,92735
,1,12367,92740
,1,12368,92745
,1,12369,92750
,1,12370,92755
,1,12371,92760
,1,12372,92765
,1,12373,92770
,1,12374,92775
,1,12375,92780
,1,12376,92785
,1,12377,92790
,1,12378,92795
,1,12379,92800
,1,12380,92805
,1,12381,92810
,1,12382,92815
,1,12383,92820
,1,12384,92825
,1,12385,92830
,1,12386,92835
,1,12387,92840
,1,12388,92845
,1,12389,92850
,1,12390,92855
,1,12391,92860
,1,12392,92865
,1,12393,92870
,1,12394,92875
,1,12395,92880
,1,12396,92885
,1,12397,92890
,1,12398,92895
,1,12399,92900
,1,12400,92905
,1,12401,92910
,1,12402,92915
,1,12403,92920
,1,12404,92925
,1,12405,92930
,1,12406,92935
,1,12407,92940
,1,12408,92945
,1,12409,92950
,1,12410,92955
,1,12411,92960
,1,12412,92965
,1,12413,92970
,1,12414,92975
,1,12415,92980
,1,12416,92985
,1,12417,92990
,1,12418,92995
,1,12419,93000
,1,12420,93005
,1,12421,93010
,1,12422,93015
,1,12423,93020
,1,12424,93025
,1,12425,93030
,1,12426,93035
,1,12427,93040
,1,12428,93045
,1,12429,93050
,1,12430,93055
,1,12431,93060
,1,12432,93065
,1,12433,93070
,1,12434,93075
,1,12435,93080
,1,12436,93085
,1,12437,93090
,1,12438,93095
,1,12439,93100
,1,12440,93105
,1,12441,93110
,1,12442,93115
,1,12443,93120
,1,12444,93125
,1,12445,93130
,1,12446,93135
,1,12447,93140
,1,12448,93145
,1,12449,93150
,1,12450,93155
,1,12451,93160
,1,12452,93165
,1,12453,93170
,1,12454,93175
,1,12455,93180
,1,12456,93185
,1,12457,93190
,1,12458,93195
,1,12459,93200
,1,12460,93205
,1,12461,93210
,1,12462,93215
,1,12463,93220
,1,12464,93225
,1,12465,93230
,1,12466,93235
,1,12467,93240
,1,12468,93245
,1,12469,93250
,1,12470,93255
,1,12471,93260
,1,12472,93265
,1,12473,93270
,1,12474,93275
,1,12475,93280
,1,12476,93285
,1,12477,93290
,1,12478,93295
,1,12479,93300
,1,12480,93305
,1,12481,93310
,1,12482,93315
,1,12483,93320
,1,12484,93325
,1,12485,93330
,1,12486,93335
,1,12487,93340
,1,12488,93345
,1,12489,93350
,1,12490,93355
,1,12491,93360
,1,12492,93365
,1,12493,93370
,1,12494,93375
,1,12495,93380
,1,12496,93385
,1,12497,93390
,1,12498,93395
,1,12499,93400
,1,12500,93405
,1,12501,93410
,1,12502,93415
,1,12503,93420
,1,12504,93425
,1,12505,93430
,1,12506,93435
,1,12507,93440
,1,12508,93445
,1,12509,93450
,1,12510,93455
,1,12511,93460
,1,12512,93465
,1,12513,93470
,1,12514,93475
,1,12515,93480
,1,12516,93485
,1,12517,93490
,1,12518,93495
,1,12519,93500
,1,12520,93505
,1,12521,93510
,1,12522,93515
,1,12523,93520
,1,12524,93525
,1,12525,93530
,1,12526,93535
,1,12527,93540
,1,12528,93545
,1,12529,93550
,1,12530,93555
,1,12531,93560
,1,12532,93565
,1,12533,93570
,1,12534,93575
,1,12535,93580
,1,12536,93585
,1,12537,93590
,1,12538,93595
,1,12539,93600
,1,12540,93605
,1,12541,93610
,1,12542,93615
,1,12543,93620
,1,12544,93625
,1,12545,93630
,1,12546,93635
,1,12547,93640
,1,12548,93645
,1,12549,93650
,1,12550,93655
,1,12551,93660
,1,12552,93665
,1,12553,93670
,1,12554,93675
,1,12555,93680
,1,12556,93685
,1,12557,93690
,1,12558,93695
,1,12559,93700
,1,12560,93705
,1,12561,93710
,1,12562,93715
,1,12563,93720
,1,12564,93725
,1,12565,93730
,1,12566,93735
,1,12567,93740
,1,12568,93745
,1,12569,93750
,1,12570,93755
,1,12571,93760
,1,12572,93765
,1,12573,93770
,1,12574,93775
,1,12575,93780
,1,12576,93785
,1,12577,93790
,1,12578,93795
,1,12579,93800
,1,12580,93805
,1,12581,93810
,1,12582,93815
,1,12583,93820
,1,12584,93825
,1,12585,93830
,1,12586,93835
,1,12587,93840
,1,12588,93845
,1,12589,93850
,1,12590,93855
,1,12591,93860
,1,12592,93865
,1,12593,93870
,1,12594,93875
,1,12595,93880
,1,12596,93885
,1,12597,93890
,1,12598,93895
,1,12599,93900
,1,12600,93905
,1,12601,93910
,1,12602,93915
,1,12603,93920
,1,12604,93925
,1,12605,93930
,1,12606,93935
,1,12607,93940
,1,12608,93945
,1,12609,93950
,1,12610,93955
,1,12611,93960
,1,12612,93965
,1,12613,93970
,1,12614,93975
,1,12615,93980
,1,12616,93985
,1,12617,93990
,1,12618,93995
,1,12619,94000
,1,12620,94005
,1,12621,94010
,1,12622,94015
,1,12623,94020
,1,12624,94025
,1,12625,94030
,1,12626,94035
,1,12627,94040
,1,12628,94045
,1,12629,94050
,1,12630,94055
,1,12631,94060
,1,12632,94065
,1,12633,94070
,1,12634,94075
,1,12635,94080
,1,12636,94085
,1,12637,94090
,1,12638,94095
,1,12639,94100
,1,12640,94105
,1,12641,94110
,1,12642,94115
,1,12643,94120
,1,12644,94125
,1,12645,94130
,1,12646,94135
,1,12647,94140
,1,12648,94145
,1,12649,94150
,1,12650,94155
,1,12651,94160
,1,12652,94165
,1,12653,94170
,1,12654,94175
,1,12655,94180
,1,12656,94185
,1,12657,94190
,1,12658,94195
,1,12659,94200
,1,12660,94205
,1,12661,94210
,1,12662,94215
,1,12663,94220
,1,12664,94225
,1,12665,94230
,1,12666,94235
,1,12667,94240
,1,12668,94245
,1,12669,94250
,1,12670,94255
,1,12671,94260
,1,12672,94265
,1,12673,94270
,1,12674,94275
,1,12675,94280
,1,12676,94285
,1,12677,94290
,1,12678,94295
,1,12679,94300
,1,12680,94305
,1,12681,94310
,1,12682,94315
,1,12683,94320
,1,12684,94325
,1,12685,94330
,1,12686,94335
,1,12687,94340
,1,12688,94345
,1,12689,94350
,1,12690,94355
,1,12691,94360
,1,12692,94365
,1,12693,94370
,1,12694,94375
,1,12695,94380
,1,12696,94385
,1,12697,94390
,1,12698,94395
,1,12699,94400
,1,12700,94405
,1,12701,94410
,1,12702,94415
,1,12703,94420
,1,12704,94425
,1,12705,94430
,1,12706,94435
,1,12707,94440
,1,12708,94445
,1,12709,94450
,1,12710,94455
,1,12711,94460
,1,12712,94465
,1,12713,94470
,1,12714,94475
,1,12715,94480
,1,12716,94485
,1,12717,94490
,1,12718,94495
,1,12719,94500
,1,12720,94505
,1,12721,94510
,1,12722,94515
,1,12723,94520
,1,12724,94525
,1,12725,94530
,1,12726,94535
,1,12727,94540
,1,12728,94545
,1,12729,94550
,1,12730,94555
,1,12731,94560
,1,12732,94565
,1,12733,94570
,1,12734,94575
,1,12735,94580
,1,12736,94585
,1,12737,94590
,1,12738,94595
,1,12739,94600
,1,12740,94605
,1,12741,94610
,1,12742,94615
,1,12743,94620
,1,12744,94625
,1,12745,94630
,1,12746,94635
,1,12747,94640
,1,12748,94645
,1,12749,94650
,1,12750,94655
,1,12751,94660
,1,12752,94665
,1,12753,94670
,1,12754,94675
,1,12755,94680
,1,12756,94685
,1,12757,94690
,1,12758,94695
,1,12759,94700
,1,12760,94705
,1,12761,94710
,1,12762,94715
,1,12763,94720
,1,12764,94725
,1,12765,94730
,1,12766,94735
,1,12767,94740
,1,12768,94745
,1,12769,94750
,1,12770,94755
,1,12771,94760
,1,12772,94765
,1,12773,94770
,1,12774,94775
,1,12775,94780
,1,12776,94785
,1,12777,94790
,1,12778,94795
,1,12779,94800
,1,12780,94805
,1,12781,94810
,1,12782,94815
,1,12783,94820
,1,12784,94825
,1,12785,94830
,1,12786,94835
,1,12787,94840
,1,12788,94845
,1,12789,94850
,1,12790,94855
,1,12791,94860
,1,12792,94865
,1,12793,94870
,1,12794,94875
,1,12795,94880
,1,12796,94885
,1,12797,94890
,1,12798,94895
,1,12799,94900
,1,12800,94905
,1,12801,94910
,1,12802,94915
,1,12803,94920
,1,12804,94925
,1,12805,94930
,1,12806,94935
,1,12807,94940
,1,12808,94945
,1,12809,94950
,1,12810,94955
,1,12811,94960
,1,12812,94965
,1,12813,94970
,1,12814,94975
,1,12815,94980
,1,12816,94985
,1,12817,94990
,1,12818,94995
,1,12819,95000
,1,12820,95005
,1,12821,95010
,1,12822,95015
,1,12823,95020
,1,12824,95025
,1,12825,95030
,1,12826,95035
,1,12827,95040
,1,12828,95045
,1,12829,95050
,1,12830,95055
,1,12831,95060
,1,12832,95065
,1,12833,95070
,1,12834,95075
,1,12835,95080
,1,12836,95085
,1,12837,95090
,1,12838,95095
,1,12839,95100
,1,12840,95105
,1,12841,95110
,1,12842,95115
,1,12843,95120
,1,12844,95125
,1,12845,95130
,1,12846,95135
,1,12847,95140
,1,12848,95145
,1,12849,95150
,1,12850,95155
,1,12851,95160
,1,12852,95165
,1,12853,95170
,1,12854,95175
,1,12855,95180
,1,12856,95185
,1,12857,95190
,1,12858,95195
,1,12859,95200
,1,12860,95205
,1,12861,95210
,1,12862,95215
,1,12863,95220
,1,12864,95225
,1,12865,95230
,1,12866,95235
,1,12867,95240
,1,12868,95245
,1,12869,95250
,1,12870,95255
,1,12871,95260
,1,12872,95265
,1,12873,95270
,1,12874,95275
,1,12875,95280
,1,12876,95285
,1,12877,95290
,1,12878,95295
,1,12879,95300
,1,12880,95305
,1,12881,95310
,1,12882,95315
,1,12883,95320
,1,12884,95325
,1,12885,95330
,1,12886,95335
,1,12887,95340
,1,12888,95345
,1,12889,95350
,1,12890,95355
,1,12891,95360
,1,12892,95365
,1,12893,95370
,1,12894,95375
,1,12895,95380
,1,12896,95385
,1,12897,95390
,1,12898,95395
,1,12899,95400
,1,12900,95405
,1,12901,95410
,1,12902,95415
,1,12903,95420
,1,12904,95425
,1,12905,95430
,1,12906,95435
,1,12907,95440
,1,12908,95445
,1,12909,95450
,1,12910,95455
,1,12911,95460
,1,12912,95465
,1,12913,95470
,1,12914,95475
,1,12915,95480
,1,12916,95485
,1,12917,95490
,1,12918,95495
,1,12919,95500
,1,12920,95505
,1,12921,95510
,1,12922,95515
,1,12923,95520
,1,12924,95525
,1,12925,95530
,1,12926,95535
,1,12927,95540
,1,12928,95545
,1,12929,95550
,1,12930,95555
,1,12931,95560
,1,12932,95565
,1,12933,95570
,1,12934,95575
,1,12935,95580
,1,12936,95585
,1,12937,95590
,1,12938,95595
,1,12939,95600
,1,12940,95605
,1,12941,95610
,1,12942,95615
,1,12943,95620
,1,12944,95625
,1,12945,95630
,1,12946,95635
,1,12947,95640
,1,12948,95645
,1,12949,95650
,1,12950,95655
,1,12951,95660
,1,12952,95665
,1,12953,95670
,1,12954,95675
,1,12955,95680
,1,12956,95685
,1,12957,95690
,1,12958,95695
,1,12959,95700
,1,12960,95705
,1,12961,95710
,1,12962,95715
,1,12963,95720
,1,12964,95725
,1,12965,95730
,1,12966,95735
,1,12967,95740
,1,12968,95745
,1,12969,95750
,1,12970,95755
,1,12971,95760
,1,12972,95765
,1,12973,95770
,1,12974,95775
,1,12975,95780
,1,12976,95785
,1,12977,95790
,1,12978,95795
,1,12979,95800
,1,12980,95805
,1,12981,95810
,1,12982,95815
,1,12983,95820
,1,12984,95825
,1,12985,95830
,1,12986,95835
,1,12987,95840
,1,12988,95845
,1,12989,95850
,1,12990,95855
,1,12991,95860
,1,12992,95865
,1,12993,95870
,1,12994,95875
,1,12995,95880
,1,12996,95885
,1,12997,95890
,1,12998,95895
,1,12999,95900
,1,13000,95905
,1,13001,95910
,1,13002,95915
,1,13003,95920
,1,13004,95925
,1,13005,95930
,1,13006,95935
,1,13007,95940
,1,13008,95945
,1,13009,95950
,1,13010,95955
,1,13011,95960
,1,13012,95965
,1,13013,95970
,1,13014,95975
,1,13015,95980
,1,13016,95985
,1,13017,95990
,1,13018,95995
,1,13019,96000
,1,13020,96005
,1,13021,96010
,1,13022,96015
,1,13023,96020
,1,13024,96025
,1,13025,96030
,1,13026,96035
,1,13027,96040
,1,13028,96045
,1,13029,96050
,1,13030,96055
,1,13031,96060
,1,13032,96065
,1,13033,96070
,1,13034,96075
,1,13035,96080
,1,13036,96085
,1,13037,96090
,1,13038,96095
,1,13039,96100
,1,13040,96105
,1,13041,96110
,1,13042,96115
,1,13043,96120
,1,13044,96125
,1,13045,96130
,1,13046,96135
,1,13047,96140
,1,13048,96145
,1,13049,96150
,1,13050,96155
,1,13051,96160
,1,13052,96165
,1,13053,96170
,1,13054,96175
,1,13055,96180
,1,13056,96185
,1,13057,96190
,1,13058,96195
,1,13059,96200
,1,13060,96205
,1,13061,96210
,1,13062,96215
,1,13063,96220
,1,13064,96225
,1,13065,96230
,1,13066,96235
,1,13067,96240
,1,13068,96245
,1,13069,96250
,1,13070,96255
,1,13071,96260
,1,13072,96265
,1,13073,96270
,1,13074,96275
,1,13075,96280
,1,13076,96285
,1,13077,96290
,1,13078,96295
,1,13079,96300
,1,13080,96305
,1,13081,96310
,1,13082,96315
,1,13083,96320
,1,13084,96325
,1,13085,96330
,1,13086,96335
,1,13087,96340
,1,13088,96345
,1,13089,96350
,1,13090,96355
,1,13091,96360
,1,13092,96365
,1,13093,96370
,1,13094,96375
,1,13095,96380
,1,13096,96385
,1,13097,96390
,1,13098,96395
,1,13099,96400
,1,13100,96405
,1,13101,96410
,1,13102,96415
,1,13103,96420
,1,13104,96425
,1,13105,96430
,1,13106,96435
,1,13107,96440
,1,13108,96445
,1,13109,96450
,1,13110,96455
,1,13111,96460
,1,13112,96465
,1,13113,96470
,1,13114,96475
,1,13115,96480
,1,13116,96485
,1,13117,96490
,1,13118,96495
,1,13119,96500
,1,13120,96505
,1,13121,96510
,1,13122,96515
,1,13123,96520
,1,13124,96525
,1,13125,96530
,1,13126,96535
,1,13127,96540
,1,13128,96545
,1,13129,96550
,1,13130,96555
,1,13131,96560
,1,13132,96565
,1,13133,96570
,1,13134,96575
,1,13135,96580
,1,13136,96585
,1,13137,96590
,1,13138,96595
,1,13139,96600
,1,13140,96605
,1,13141,96610
,1,13142,96615
,1,13143,96620
,1,13144,96625
,1,13145,96630
,1,13146,96635
,1,13147,96640
,1,13148,96645
,1,13149,96650
,1,13150,96655
,1,13151,96660
,1,13152,96665
,1,13153,96670
,1,13154,96675
,1,13155,96680
,1,13156,96685
,1,13157,96690
,1,13158,96695
,1,13159,96700
,1,13160,96705
,1,13161,96710
,1,13162,96715
,1,13163,96720
,1,13164,96725
,1,13165,96730
,1,13166,96735
,1,13167,96740
,1,13168,96745
,1,13169,96750
,1,13170,96755
,1,13171,96760
,1,13172,96765
,1,13173,96770
,1,13174,96775
,1,13175,96780
,1,13176,96785
,1,13177,96790
,1,13178,96795
,1,13179,96800
,1,13180,96805
,1,13181,96810
,1,13182,96815
,1,13183,96820
,1,13184,96825
,1,13185,96830
,1,13186,96835
,1,13187,96840
,1,13188,96845
,1,13189,96850
,1,13190,96855
,1,13191,96860
,1,13192,96865
,1,13193,96870
,1,13194,96875
,1,13195,96880
,1,13196,96885
,1,13197,96890
,1,13198,96895
,1,13199,96900
,1,13200,96905
,1,13201,96910
,1,13202,96915
,1,13203,96920
,1,13204,96925
,1,13205,96930
,1,13206,96935
,1,13207,96940
,1,13208,96945
,1,13209,96950
,1,13210,96955
,1,13211,96960
,1,13212,96965
,1,13213,96970
,1,13214,96975
,1,13215,96980
,1,13216,96985
,1,13217,96990
,1,13218,96995
,1,13219,97000
,1,13220,97005
,1,13221,97010
,1,13222,97015
,1,13223,97020
,1,13224,97025
,1,13225,97030
,1,13226,97035
,1,13227,97040
,1,13228,97045
,1,13229,97050
,1,13230,97055
,1,13231,97060
,1,13232,97065
,1,13233,97070
,1,13234,97075
,1,13235,97080
,1,13236,97085
,1,13237,97090
,1,13238,97095
,1,13239,97100
,1,13240,97105
,1,13241,97110
,1,13242,97115
,1,13243,97120
,1,13244,97125
,1,13245,97130
,1,13246,97135
,1,13247,97140
,1,13248,97145
,1,13249,97150
,1,13250,97155
,1,13251,97160
,1,13252,97165
,1,13253,97170
,1,13254,97175
,1,13255,97180
,1,13256,97185
,1,13257,97190
,1,13258,97195
,1,13259,97200
,1,13260,97205
,1,13261,97210
,1,13262,97215
,1,13263,97220
,1,13264,97225
,1,13265,97230
,1,13266,97235
,1,13267,97240
,1,13268,97245
,1,13269,97250
,1,13270,97255
,1,13271,97260
,1,13272,97265
,1,13273,97270
,1,13274,97275
,1,13275,97280
,1,13276,97285
,1,13277,97290
,1,13278,97295
,1,13279,97300
,1,13280,97305
,1,13281,97310
,1,13282,97315
,1,13283,97320
,1,13284,97325
,1,13285,97330
,1,13286,97335
,1,13287,97340
,1,13288,97345
,1,13289,97350
,1,13290,97355
,1,13291,97360
,1,13292,97365
,1,13293,97370
,1,13294,97375
,1,13295,97380
,1,13296,97385
,1,13297,97390
,1,13298,97395
,1,13299,97400
,1,13300,97405
,1,13301,97410
,1,13302,97415
,1,13303,97420
,1,13304,97425
,1,13305,97430
,1,13306,97435
,1,13307,97440
,1,13308,97445
,1,13309,97450
,1,13310,97455
,1,13311,97460
,1,13312,97465
,1,13313,97470
,1,13314,97475
,1,13315,97480
,1,13316,97485
,1,13317,97490
,1,13318,97495
,1,13319,97500
,1,13320,97505
,1,13321,97510
,1,13322,97515
,1,13323,97520
,1,13324,97525
,1,13325,97530
,1,13326,97535
,1,13327,97540
,1,13328,97545
,1,13329,97550
,1,13330,97555
,1,13331,97560
,1,13332,97565
,1,13333,97570
,1,13334,97575
,1,13335,97580
,1,13336,97585
,1,13337,97590
,1,13338,97595
,1,13339,97600
,1,13340,97605
,1,13341,97610
,1,13342,97615
,1,13343,97620
,1,13344,97625
,1,13345,97630
,1,13346,97635
,1,13347,97640
,1,13348,97645
,1,13349,97650
,1,13350,97655
,1,13351,97660
,1,13352,97665
,1,13353,97670
,1,13354,97675
,1,13355,97680
,1,13356,97685
,1,13357,97690
,1,13358,97695
,1,13359,97700
,1,13360,97705
,1,13361,97710
,1,13362,97715
,1,13363,97720
,1,13364,97725
,1,13365,97730
,1,13366,97735
,1,13367,97740
,1,13368,97745
,1,13369,97750
,1,13370,97755
,1,13371,97760
,1,13372,97765
,1,13373,97770
,1,13374,97775
,1,13375,97780
,1,13376,97785
,1,13377,97790
,1,13378,97795
,1,13379,97800
,1,13380,97805
,1,13381,97810
,1,13382,97815
,1,13383,97820
,1,13384,97825
,1,13385,97830
,1,13386,97835
,1,13387,97840
,1,13388,97845
,1,13389,97850
,1,13390,97855
,1,13391,97860
,1,13392,97865
,1,13393,97870
,1,13394,97875
,1,13395,97880
,1,13396,97885
,1,13397,97890
,1,13398,97895
,1,13399,97900
,1,13400,97905
,1,13401,97910
,1,13402,97915
,1,13403,97920
,1,13404,97925
,1,13405,97930
,1,13406,97935
,1,13407,97940
,1,13408,97945
,1,13409,97950
,1,13410,97955
,1,13411,97960
,1,13412,97965
,1,13413,97970
,1,13414,97975
,1,13415,97980
,1,13416,97985
,1,13417,97990
,1,13418,97995
,1,13419,98000
,1,13420,98005
,1,13421,98010
,1,13422,98015
,1,13423,98020
,1,13424,98025
,1,13425,98030
,1,13426,98035
,1,13427,98040
,1,13428,98045
,1,13429,98050
,1,13430,98055
,1,13431,98060
,1,13432,98065
,1,13433,98070
,1,13434,98075
,1,13435,98080
,1,13436,98085
,1,13437,98090
,1,13438,98095
,1,13439,98100
,1,13440,98105
,1,13441,98110
,1,13442,98115
,1,13443,98120
,1,13444,98125
,1,13445,98130
,1,13446,98135
,1,13447,98140
,1,13448,98145
,1,13449,98150
,1,13450,98155
,1,13451,98160
,1,13452,98165
,1,13453,98170
,1,13454,98175
,1,13455,98180
,1,13456,98185
,1,13457,98190
,1,13458,98195
,1,13459,98200
,1,13460,98205
,1,13461,98210
,1,13462,98215
,1,13463,98220
,1,13464,98225
,1,13465,98230
,1,13466,98235
,1,13467,98240
,1,13468,98245
,1,13469,98250
,1,13470,98255
,1,13471,98260
,1,13472,98265
,1,13473,98270
,1,13474,98275
,1,13475,98280
,1,13476,98285
,1,13477,98290
,1,13478,98295
,1,13479,98300
,1,13480,98305
,1,13481,98310
,1,13482,98315
,1,13483,98320
,1,13484,98325
,1,13485,98330
,1,13486,98335
,1,13487,98340
,1,13488,98345
,1,13489,98350
,1,13490,98355
,1,13491,98360
,1,13492,98365
,1,13493,98370
,1,13494,98375
,1,13495,98380
,1,13496,98385
,1,13497,98390
,1,13498,98395
,1,13499,98400
,1,13500,98405
,1,13501,98410
,1,13502,98415
,1,13503,98420
,1,13504,98425
,1,13505,98430
,1,13506,98435
,1,13507,98440
,1,13508,98445
,1,13509,98450
,1,13510,98455
,1,13511,98460
,1,13512,98465
,1,13513,98470
,1,13514,98475
,1,13515,98480
,1,13516,98485
,1,13517,98490
,1,13518,98495
,1,13519,98500
,1,13520,98505
,1,13521,98510
,1,13522,98515
,1,13523,98520
,1,13524,98525
,1,13525,98530
,1,13526,98535
,1,13527,98540
,1,13528,98545
,1,13529,98550
,1,13530,98555
,1,13531,98560
,1,13532,98565
,1,13533,98570
,1,13534,98575
,1,13535,98580
,1,13536,98585
,1,13537,98590
,1,13538,98595
,1,13539,98600
,1,13540,98605
,1,13541,98610
,1,13542,98615
,1,13543,98620
,1,13544,98625
,1,13545,98630
,1,13546,98635
,1,13547,98640
,1,13548,98645
,1,13549,98650
,1,13550,98655
,1,13551,98660
,1,13552,98665
,1,13553,98670
,1,13554,98675
,1,13555,98680
,1,13556,98685
,1,13557,98690
,1,13558,98695
,1,13559,98700
,1,13560,98705
,1,13561,98710
,1,13562,98715
,1,13563,98720
,1,13564,98725
,1,13565,98730
,1,13566,98735
,1,13567,98740
,1,13568,98745
,1,13569,98750
,1,13570,98755
,1,13571,98760
,1,13572,98765
,1,13573,98770
,1,13574,98775
,1,13575,98780
,1,13576,98785
,1,13577,98790
,1,13578,98795
,1,13579,98800
,1,13580,98805
,1,13581,98810
,1,13582,98815
,1,13583,98820
,1,13584,98825
,1,13585,98830
,1,13586,98835
,1,13587,98840
,1,13588,98845
,1,13589,98850
,1,13590,98855
,1,13591,98860
,1,13592,98865
,1,13593,98870
,1,13594,98875
,1,13595,98880
,1,13596,98885
,1,13597,98890
,1,13598,98895
,1,13599,98900
,1,13600,98905
,1,13601,98910
,1,13602,98915
,1,13603,98920
,1,13604,98925
,1,13605,98930
,1,13606,98935
,1,13607,98940
,1,13608,98945
,1,13609,98950
,1,13610,98955
,1,13611,98960
,1,13612,98965
,1,13613,98970
,1,13614,98975
,1,13615,98980
,1,13616,98985
,1,13617,98990
,1,13618,98995
,1,13619,99000
,1,13620,99005
,1,13621,99010
,1,13622,99015
,1,13623,99020
,1,13624,99025
,1,13625,99030
,1,13626,99035
,1,13627,99040
,1,13628,99045
,1,13629,99050
,1,13630,99055
,1,13631,99060
,1,13632,99065
,1,13633,99070
,1,13634,99075
,1,13635,99080
,1,13636,99085
,1,13637,99090
,1,13638,99095
,1,13639,99100
,1,13640,99105
,1,13641,99110
,1,13642,99115
,1,13643,99120
,1,13644,99125
,1,13645,99130
,1,13646,99135
,1,13647,99140
,1,13648,99145
,1,13649,99150
,1,13650,99155
,1,13651,99160
,1,13652,99165
,1,13653,99170
,1,13654,99175
,1,13655,99180
,1,13656,99185
,1,13657,99190
,1,13658,99195
,1,13659,99200
,1,13660,99205
,1,13661,99210
,1,13662,99215
,1,13663,99220
,1,13664,99225
,1,13665,99230
,1,13666,99235
,1,13667,99240
,1,13668,99245
,1,13669,99250
,1,13670,99255
,1,13671,99260
,1,13672,99265
,1,13673,99270
,1,13674,99275
,1,13675,99280
,1,13676,99285
,1,13677,99290
,1,13678,99295
,1,13679,99300
,1,13680,99305
,1,13681,99310
,1,13682,99315
,1,13683,99320
,1,13684,99325
,1,13685,99330
,1,13686,99335
,1,13687,99340
,1,13688,99345
,1,13689,99350
,1,13690,99355
,1,13691,99360
,1,13692,99365
,1,13693,99370
,1,13694,99375
,1,13695,99380
,1,13696,99385
,1,13697,99390
,1,13698,99395
,1,13699,99400
,1,13700,99405
,1,13701,99410
,1,13702,99415
,1,13703,99420
,1,13704,99425
,1,13705,99430
,1,13706,99435
,1,13707,99440
,1,13708,99445
,1,13709,99450
,1,13710,99455
,1,13711,99460
,1,13712,99465
,1,13713,99470
,1,13714,99475
,1,13715,99480
,1,13716,99485
,1,13717,99490
,1,13718,99495
,1,13719,99500
,1,13720,99505
,1,13721,99510
,1,13722,99515
,1,13723,99520
,1,13724,99525
,1,13725,99530
,1,13726,99535
,1,13727,99540
,1,13728,99545
,1,13729,99550
,1,13730,99555
,1,13731,99560
,1,13732,99565
,1,13733,99570
,1,13734,99575
,1,13735,99580
,1,13736,99585
,1,13737,99590
,1,13738,99595
,1,13739,99600
,1,13740,99605
,1,13741,99610
,1,13742,99615
,1,13743,99620
,1,13744,99625
,1,13745,99630
,1,13746,99635
,1,13747,99640
,1,13748,99645
,1,13749,99650
,1,13750,99655
,1,13751,99660
,1,13752,99665
,1,13753,99670
,1,13754,99675
,1,13755,99680
,1,13756,99685
,1,13757,99690
,1,13758,99695
,1,13759,99700
,1,13760,99705
,1,13761,99710
,1,13762,99715
,1,13763,99720
,1,13764,99725
,1,13765,99730
,1,13766,99735
,1,13767,99740
,1,13768,99745
,1,13769,99750
,1,13770,99755
,1,13771,99760
,1,13772,99765
,1,13773,99770
,1,13774,99775
,1,13775,99780
,1,13776,99785
,1,13777,99790
,1,13778,99795
,1,13779,99800
,1,13780,99805
,1,13781,99810
,1,13782,99815
,1,13783,99820
,1,13784,99825
,1,13785,99830
,1,13786,99835
,1,13787,99840
,1,13788,99845
,1,13789,99850
,1,13790,99855
,1,13791,99860
,1,13792,99865
,1,13793,99870
,1,13794,99875
,1,13795,99880
,1,13796,99885
,1,13797,99890
,1,13798,99895
,1,13799,99900
,1,13800,99905
,1,13801,99910
,1,13802,99915
,1,13803,99920
,1,13804,99925
,1,13805,99930
,1,13806,99935
,1,13807,99940
,1,13808,99945
,1,13809,99950
,1,13810,99955
,1,13811,99960
,1,13812,99965
,1,13813,99970
,1,13814,99975
,1,13815,99980
,1,13816,99985
,1,13817,99990
,1,13818,99995
,1,13819,100000
,1,13820,100005
,1,13821,100010
,1,13822,100015
,1,13823,100020
,1,13824,100025
,1,13825,100030
,1,13826,100035
,1,13827,100040
,1,13828,100045
,1,13829,100050
,1,13830,100055
,1,13831,100060
,1,13832,100065
,1,13833,100070
,1,13834,100075
,1,13835,100080
,1,13836,100085
,1,13837,100090
,1,13838,100095
,1,13839,100100
,1,13840,100105
,1,13841,100110
,1,13842,100115
,1,13843,100120
,1,13844,100125
,1,13845,100130
,1,13846,100135
,1,13847,100140
,1,13848,100145
,1,13849,100150
,1,13850,100155
,1,13851,100160
,1,13852,100165
,1,13853,100170
,1,13854,100175
,1,13855,100180
,1,13856,100185
,1,13857,100190
,1,13858,100195
,1,13859,100200
,1,13860,100205
,1,13861,100210
,1,13862,100215
,1,13863,100220
,1,13864,100225
,1,13865,100230
,1,13866,100235
,1,13867,100240
,1,13868,100245
,1,13869,100250
,1,13870,100255
,1,13871,100260
,1,13872,100265
,1,13873,100270
,1,13874,100275
,1,13875,100280
,1,13876,100285
,1,13877,100290
,1,13878,100295
,1,13879,100300
,1,13880,100305
,1,13881,100310
,1,13882,100315
,1,13883,100320
,1,13884,100325
,1,13885,100330
,1,13886,100335
,1,13887,100340
,1,13888,100345
,1,13889,100350
,1,13890,100355
,1,13891,100360
,1,13892,100365
,1,13893,100370
,1,13894,100375
,1,13895,100380
,1,13896,100385
,1,13897,100390
,1,13898,100395
,1,13899,100400
,1,13900,100405
,1,13901,100410
,1,13902,100415
,1,13903,100420
,1,13904,100425
,1,13905,100430
,1,13906,100435
,1,13907,100440
,1,13908,100445
,1,13909,100450
,1,13910,100455
,1,13911,100460
,1,13912,100465
,1,13913,100470
,1,13914,100475
,1,13915,100480
,1,13916,100485
,1,13917,100490
,1,13918,100495
,1,13919,100500
,1,13920,100505
,1,13921,100510
,1,13922,100515
,1,13923,100520
,1,13924,100525
,1,13925,100530
,1,13926,100535
,1,13927,100540
,1,13928,100545
,1,13929,100550
,1,13930,100555
,1,13931,100560
,1,13932,100565
,1,13933,100570
,1,13934,100575
,1,13935,100580
,1,13936,100585
,1,13937,100590
,1,13938,100595
,1,13939,100600
,1,13940,100605
,1,13941,100610
,1,13942,100615
,1,13943,100620
,1,13944,100625
,1,13945,100630
,1,13946,100635
,1,13947,100640
,1,13948,100645
,1,13949,100650
,1,13950,100655
,1,13951,100660
,1,13952,100665
,1,13953,100670
,1,13954,100675
,1,13955,100680
,1,13956,100685
,1,13957,100690
,1,13958,100695
,1,13959,100700
,1,13960,100705
,1,13961,100710
,1,13962,100715
,1,13963,100720
,1,13964,100725
,1,13965,100730
,1,13966,100735
,1,13967,100740
,1,13968,100745
,1,13969,100750
,1,13970,100755
,1,13971,100760
,1,13972,100765
,1,13973,100770
,1,13974,100775
,1,13975,100780
,1,13976,100785
,1,13977,100790
,1,13978,100795
,1,13979,100800
,1,13980,100805
,1,13981,100810
,1,13982,100815
,1,13983,100820
,1,13984,100825
,1,13985,100830
,1,13986,100835
,1,13987,100840
,1,13988,100845
,1,13989,100850
,1,13990,100855
,1,13991,100860
,1,13992,100865
,1,13993,100870
,1,13994,100875
,1,13995,100880
,1,13996,100885
,1,13997,100890
,1,13998,100895
,1,13999,100900
,1,14000,100905
,1,14001,100910
,1,14002,100915
,1,14003,100920
,1,14004,100925
,1,14005,100930
,1,14006,100935
,1,14007,100940
,1,14008,100945
,1,14009,100950
,1,14010,100955
,1,14011,100960
,1,14012,100965
,1,14013,100970
,1,14014,100975
,1,14015,100980
,1,14016,100985
,1,14017,100990
,1,14018,100995
,1,14019,101000
,1,14020,101005
,1,14021,101010
,1,14022,101015
,1,14023,101020
,1,14024,101025
,1,14025,101030
,1,14026,101035
,1,14027,101040
,1,14028,101045
,1,14029,101050
,1,14030,101055
,1,14031,101060
,1,14032,101065
,1,14033,101070
,1,14034,101075
,1,14035,101080
,1,14036,101085
,1,14037,101090
,1,14038,101095
,1,14039,101100
,1,14040,101105
,1,14041,101110
,1,14042,101115
,1,14043,101120
,1,14044,101125
,1,14045,101130
,1,14046,101135
,1,14047,101140
,1,14048,101145
,1,14049,101150
,1,14050,101155
,1,14051,101160
,1,14052,101165
,1,14053,101170
,1,14054,101175
,1,14055,101180
,1,14056,101185
,1,14057,101190
,1,14058,101195
,1,14059,101200
,1,14060,101205
,1,14061,101210
,1,14062,101215
,1,14063,101220
,1,14064,101225
,1,14065,101230
,1,14066,101235
,1,14067,101240
,1,14068,101245
,1,14069,101250
,1,14070,101255
,1,14071,101260
,1,14072,101265
,1,14073,101270
,1,14074,101275
,1,14075,101280
,1,14076,101285
,1,14077,101290
,1,14078,101295
,1,14079,101300
,1,14080,101305
,1,14081,101310
,1,14082,101315
,1,14083,101320
,1,14084,101325
,1,14085,101330
,1,14086,101335
,1,14087,101340
,1,14088,101345
,1,14089,101350
,1,14090,101355
,1,14091,101360
,1,14092,101365
,1,14093,101370
,1,14094,101375
,1,14095,101380
,1,14096,101385
,1,14097,101390
,1,14098,101395
,1,14099,101400
,1,14100,101405
,1,14101,101410
,1,14102,101415
,1,14103,101420
,1,14104,101425
,1,14105,101430
,1,14106,101435
,1,14107,101440
,1,14108,101445
,1,14109,101450
,1,14110,101455
,1,14111,101460
,1,14112,101465
,1,14113,101470
,1,14114,101475
,1,14115,101480
,1,14116,101485
,1,14117,101490
,1,14118,101495
,1,14119,101500
,1,14120,101505
,1,14121,101510
,1,14122,101515
,1,14123,101520
,1,14124,101525
,1,14125,101530
,1,14126,101535
,1,14127,101540
,1,14128,101545
,1,14129,101550
,1,14130,101555
,1,14131,101560
,1,14132,101565
,1,14133,101570
,1,14134,101575
,1,14135,101580
,1,14136,101585
,1,14137,101590
,1,14138,101595
,1,14139,101600
,1,14140,101605
,1,14141,101610
,1,14142,101615
,1,14143,101620
,1,14144,101625
,1,14145,101630
,1,14146,101635
,1,14147,101640
,1,14148,101645
,1,14149,101650
,1,14150,101655
,1,14151,101660
,1,14152,101665
,1,14153,101670
,1,14154,101675
,1,14155,101680
,1,14156,101685
,1,14157,101690
,1,14158,101695
,1,14159,101700
,1,14160,101705
,1,14161,101710
,1,14162,101715
,1,14163,101720
,1,14164,101725
,1,14165,101730
,1,14166,101735
,1,14167,101740
,1,14168,101745
,1,14169,101750
,1,14170,101755
,1,14171,101760
,1,14172,101765
,1,14173,101770
,1,14174,101775
,1,14175,101780
,1,14176,101785
,1,14177,101790
,1,14178,101795
,1,14179,101800
,1,14180,101805
,1,14181,101810
,1,14182,101815
,1,14183,101820
,1,14184,101825
,1,14185,101830
,1,14186,101835
,1,14187,101840
,1,14188,101845
,1,14189,101850
,1,14190,101855
,1,14191,101860
,1,14192,101865
,1,14193,101870
,1,14194,101875
,1,14195,101880
,1,14196,101885
,1,14197,101890
,1,14198,101895
,1,14199,101900
,1,14200,101905
,1,14201,101910
,1,14202,101915
,1,14203,101920
,1,14204,101925
,1,14205,101930
,1,14206,101935
,1,14207,101940
,1,14208,101945
,1,14209,101950
,1,14210,101955
,1,14211,101960
,1,14212,101965
,1,14213,101970
,1,14214,101975
,1,14215,101980
,1,14216,101985
,1,14217,101990
,1,14218,101995
,1,14219,102000
,1,14220,102005
,1,14221,102010
,1,14222,102015
,1,14223,102020
,1,14224,102025
,1,14225,102030
,1,14226,102035
,1,14227,102040
,1,14228,102045
,1,14229,102050
,1,14230,102055
,1,14231,102060
,1,14232,102065
,1,14233,102070
,1,14234,102075
,1,14235,102080
,1,14236,102085
,1,14237,102090
,1,14238,102095
,1,14239,102100
,1,14240,102105
,1,14241,102110
,1,14242,102115
,1,14243,102120
,1,14244,102125
,1,14245,102130
,1,14246,102135
,1,14247,102140
,1,14248,102145
,1,14249,102150
,1,14250,102155
,1,14251,102160
,1,14252,102165
,1,14253,102170
,1,14254,102175
,1,14255,102180
,1,14256,102185
,1,14257,102190
,1,14258,102195
,1,14259,102200
,1,14260,102205
,1,14261,102210
,1,14262,102215
,1,14263,102220
,1,14264,102225
,1,14265,102230
,1,14266,102235
,1,14267,102240
,1,14268,102245
,1,14269,102250
,1,14270,102255
,1,14271,102260
,1,14272,102265
,1,14273,102270
,1,14274,102275
,1,14275,102280
,1,14276,102285
,1,14277,102290
,1,14278,102295
,1,14279,102300
,1,14280,102305
,1,14281,102310
,1,14282,102315
,1,14283,102320
,1,14284,102325
,1,14285,102330
,1,14286,102335
,1,14287,102340
,1,14288,102345
,1,14289,102350
,1,14290,102355
,1,14291,102360
,1,14292,102365
,1,14293,102370
,1,14294,102375
,1,14295,102380
,1,14296,102385
,1,14297,102390
,1,14298,102395
,1,14299,102400
,1,14300,102405
,1,14301,102410
,1,14302,102415
,1,14303,102420
,1,14304,102425
,1,14305,102430
,1,14306,102435
,1,14307,102440
,1,14308,102445
,1,14309,102450
,1,14310,102455
,1,14311,102460
,1,14312,102465
,1,14313,102470
,1,14314,102475
,1,14315,102480
,1,14316,102485
,1,14317,102490
,1,14318,102495
,1,14319,102500
,1,14320,102505
,1,14321,102510
,1,14322,102515
,1,14323,102520
,1,14324,102525
,1,14325,102530
,1,14326,102535
,1,14327,102540
,1,14328,102545
,1,14329,102550
,1,14330,102555
,1,14331,102560
,1,14332,102565
,1,14333,102570
,1,14334,102575
,1,14335,102580
,1,14336,102585
,1,14337,102590
,1,14338,102595
,1,14339,102600
,1,14340,102605
,1,14341,102610
,1,14342,102615
,1,14343,102620
,1,14344,102625
,1,14345,102630
,1,14346,102635
,1,14347,102640
,1,14348,102645
,1,14349,102650
,1,14350,102655
,1,14351,102660
,1,14352,102665
,1,14353,102670
,1,14354,102675
,1,14355,102680
,1,14356,102685
,1,14357,102690
,1,14358,102695
,1,14359,102700
,1,14360,102705
,1,14361,102710
,1,14362,102715
,1,14363,102720
,1,14364,102725
,1,14365,102730
,1,14366,102735
,1,14367,102740
,1,14368,102745
,1,14369,102750
,1,14370,102755
,1,14371,102760
,1,14372,102765
,1,14373,102770
,1,14374,102775
,1,14375,102780
,1,14376,102785
,1,14377,102790
,1,14378,102795
,1,14379,102800
,1,14380,102805
,1,14381,102810
,1,14382,102815
,1,14383,102820
,1,14384,102825
,1,14385,102830
,1,14386,102835
,1,14387,102840
,1,14388,102845
,1,14389,102850
,1,14390,102855
,1,14391,102860
,1,14392,102865
,1,14393,102870
,1,14394,102875
,1,14395,102880
,1,14396,102885
,1,14397,102890
,1,14398,102895
,1,14399,102900
,1,14400,102905
,1,14401,102910
,1,14402,102915
,1,14403,102920
,1,14404,102925
,1,14405,102930
,1,14406,102935
,1,14407,102940
,1,14408,102945
,1,14409,102950
,1,14410,102955
,1,14411,102960
,1,14412,102965
,1,14413,102970
,1,14414,102975
,1,14415,102980
,1,14416,102985
,1,14417,102990
,1,14418,102995
,1,14419,103000
,1,14420,103005
,1,14421,103010
,1,14422,103015
,1,14423,103020
,1,14424,103025
,1,14425,103030
,1,14426,103035
,1,14427,103040
,1,14428,103045
,1,14429,103050
,1,14430,103055
,1,14431,103060
,1,14432,103065
,1,14433,103070
,1,14434,103075
,1,14435,103080
,1,14436,103085
,1,14437,103090
,1,14438,103095
,1,14439,103100
,1,14440,103105
,1,14441,103110
,1,14442,103115
,1,14443,103120
,1,14444,103125
,1,14445,103130
,1,14446,103135
,1,14447,103140
,1,14448,103145
,1,14449,103150
,1,14450,103155
,1,14451,103160
,1,14452,103165
,1,14453,103170
,1,14454,103175
,1,14455,103180
,1,14456,103185
,1,14457,103190
,1,14458,103195
,1,14459,103200
,1,14460,103205
,1,14461,103210
,1,14462,103215
,1,14463,103220
,1,14464,103225
,1,14465,103230
,1,14466,103235
,1,14467,103240
,1,14468,103245
,1,14469,103250
,1,14470,103255
,1,14471,103260
,1,14472,103265
,1,14473,103270
,1,14474,103275
,1,14475,103280
,1,14476,103285
,1,14477,103290
,1,14478,103295
,1,14479,103300
,1,14480,103305
,1,14481,103310
,1,14482,103315
,1,14483,103320
,1,14484,103325
,1,14485,103330
,1,14486,103335
,1,14487,103340
,1,14488,103345
,1,14489,103350
,1,14490,103355
,1,14491,103360
,1,14492,103365
,1,14493,103370
,1,14494,103375
,1,14495,103380
,1,14496,103385
,1,14497,103390
,1,14498,103395
,1,14499,103400
,1,14500,103405
,1,14501,103410
,1,14502,103415
,1,14503,103420
,1,14504,103425
,1,14505,103430
,1,14506,103435
,1,14507,103440
,1,14508,103445
,1,14509,103450
,1,14510,103455
,1,14511,103460
,1,14512,103465
,1,14513,103470
,1,14514,103475
,1,14515,103480
,1,14516,103485
,1,14517,103490
,1,14518,103495
,1,14519,103500
,1,14520,103505
,1,14521,103510
,1,14522,103515
,1,14523,103520
,1,14524,103525
,1,14525,103530
,1,14526,103535
,1,14527,103540
,1,14528,103545
,1,14529,103550
,1,14530,103555
,1,14531,103560
,1,14532,103565
,1,14533,103570
,1,14534,103575
,1,14535,103580
,1,14536,103585
,1,14537,103590
,1,14538,103595
,1,14539,103600
,1,14540,103605
,1,14541,103610
,1,14542,103615
,1,14543,103620
,1,14544,103625
,1,14545,103630
,1,14546,103635
,1,14547,103640
,1,14548,103645
,1,14549,103650
,1,14550,103655
,1,14551,103660
,1,14552,103665
,1,14553,103670
,1,14554,103675
,1,14555,103680
,1,14556,103685
,1,14557,103690
,1,14558,103695
,1,14559,103700
,1,14560,103705
,1,14561,103710
,1,14562,103715
,1,14563,103720
,1,14564,103725
,1,14565,103730
,1,14566,103735
,1,14567,103740
,1,14568,103745
,1,14569,103750
,1,14570,103755
,1,14571,103760
,1,14572,103765
,1,14573,103770
,1,14574,103775
,1,14575,103780
,1,14576,103785
,1,14577,103790
,1,14578,103795
,1,14579,103800
,1,14580,103805
,1,14581,103810
,1,14582,103815
,1,14583,103820
,1,14584,103825
,1,14585,103830
,1,14586,103835
,1,14587,103840
,1,14588,103845
,1,14589,103850
,1,14590,103855
,1,14591,103860
,1,14592,103865
,1,14593,103870
,1,14594,103875
,1,14595,103880
,1,14596,103885
,1,14597,103890
,1,14598,103895
,1,14599,103900
,1,14600,103905
,1,14601,103910
,1,14602,103915
,1,14603,103920
,1,14604,103925
,1,14605,103930
,1,14606,103935
,1,14607,103940
,1,14608,103945
,1,14609,103950
,1,14610,103955
,1,14611,103960
,1,14612,103965
,1,14613,103970
,1,14614,103975
,1,14615,103980
,1,14616,103985
,1,14617,103990
,1,14618,103995
,1,14619,104000
,1,14620,104005
,1,14621,104010
,1,14622,104015
,1,14623,104020
,1,14624,104025
,1,14625,104030
,1,14626,104035
,1,14627,104040
,1,14628,104045
,1,14629,104050
,1,14630,104055
,1,14631,104060
,1,14632,104065
,1,14633,104070
,1,14634,104075
,1,14635,104080
,1,14636,104085
,1,14637,104090
,1,14638,104095
,1,14639,104100
,1,14640,104105
,1,14641,104110
,1,14642,104115
,1,14643,104120
,1,14644,104125
,1,14645,104130
,1,14646,104135
,1,14647,104140
,1,14648,104145
,1,14649,104150
,1,14650,104155
,1,14651,104160
,1,14652,104165
,1,14653,104170
,1,14654,104175
,1,14655,104180
,1,14656,104185
,1,14657,104190
,1,14658,104195
,1,14659,104200
,1,14660,104205
,1,14661,104210
,1,14662,104215
,1,14663,104220
,1,14664,104225
,1,14665,104230
,1,14666,104235
,1,14667,104240
,1,14668,104245
,1,14669,104250
,1,14670,104255
,1,14671,104260
,1,14672,104265
,1,14673,104270
,1,14674,104275
,1,14675,104280
,1,14676,104285
,1,14677,104290
,1,14678,104295
,1,14679,104300
,1,14680,104305
,1,14681,104310
,1,14682,104315
,1,14683,104320
,1,14684,104325
,1,14685,104330
,1,14686,104335
,1,14687,104340
,1,14688,104345
,1,14689,104350
,1,14690,104355
,1,14691,104360
,1,14692,104365
,1,14693,104370
,1,14694,104375
,1,14695,104380
,1,14696,104385
,1,14697,104390
,1,14698,104395
,1,14699,104400
,1,14700,104405
,1,14701,104410
,1,14702,104415
,1,14703,104420
,1,14704,104425
,1,14705,104430
,1,14706,104435
,1,14707,104440
,1,14708,104445
,1,14709,104450
,1,14710,104455
,1,14711,104460
,1,14712,104465
,1,14713,104470
,1,14714,104475
,1,14715,104480
,1,14716,104485
,1,14717,104490
,1,14718,104495
,1,14719,104500
,1,14720,104505
,1,14721,104510
,1,14722,104515
,1,14723,104520
,1,14724,104525
,1,14725,104530
,1,14726,104535
,1,14727,104540
,1,14728,104545
,1,14729,104550
,1,14730,104555
,1,14731,104560
,1,14732,104565
,1,14733,104570
,1,14734,104575
,1,14735,104580
,1,14736,104585
,1,14737,104590
,1,14738,104595
,1,14739,104600
,1,14740,104605
,1,14741,104610
,1,14742,104615
,1,14743,104620
,1,14744,104625
,1,14745,104630
,1,14746,104635
,1,14747,104640
,1,14748,104645
,1,14749,104650
,1,14750,104655
,1,14751,104660
,1,14752,104665
,1,14753,104670
,1,14754,104675
,1,14755,104680
,1,14756,104685
,1,14757,104690
,1,14758,104695
,1,14759,104700
,1,14760,104705
,1,14761,104710
,1,14762,104715
,1,14763,104720
,1,14764,104725
,1,14765,104730
,1,14766,104735
,1,14767,104740
,1,14768,104745
,1,14769,104750
,1,14770,104755
,1,14771,104760
,1,14772,104765
,1,14773,104770
,1,14774,104775
,1,14775,104780
,1,14776,104785
,1,14777,104790
,1,14778,104795
,1,14779,104800
,1,14780,104805
,1,14781,104810
,1,14782,104815
,1,14783,104820
,1,14784,104825
,1,14785,104830
,1,14786,104835
,1,14787,104840
,1,14788,104845
,1,14789,104850
,1,14790,104855
,1,14791,104860
,1,14792,104865
,1,14793,104870
,1,14794,104875
,1,14795,104880
,1,14796,104885
,1,14797,104890
,1,14798,104895
,1,14799,104900
,1,14800,104905
,1,14801,104910
,1,14802,104915
,1,14803,104920
,1,14804,104925
,1,14805,104930
,1,14806,104935
,1,14807,104940
,1,14808,104945
,1,14809,104950
,1,14810,104955
,1,14811,104960
,1,14812,104965
,1,14813,104970
,1,14814,104975
,1,14815,104980
,1,14816,104985
,1,14817,104990
,1,14818,104995
,1,14819,105000
,1,14820,105005
,1,14821,105010
,1,14822,105015
,1,14823,105020
,1,14824,105025
,1,14825,105030
,1,14826,105035
,1,14827,105040
,1,14828,105045
,1,14829,105050
,1,14830,105055
,1,14831,105060
,1,14832,105065
,1,14833,105070
,1,14834,105075
,1,14835,105080
,1,14836,105085
,1,14837,105090
,1,14838,105095
,1,14839,105100
,1,14840,105105
,1,14841,105110
,1,14842,105115
,1,14843,105120
,1,14844,105125
,1,14845,105130
,1,14846,105135
,1,14847,105140
,1,14848,105145
,1,14849,105150
,1,14850,105155
,1,14851,105160
,1,14852,105165
,1,14853,105170
,1,14854,105175
,1,14855,105180
,1,14856,105185
,1,14857,105190
,1,14858,105195
,1,14859,105200
,1,14860,105205
,1,14861,105210
,1,14862,105215
,1,14863,105220
,1,14864,105225
,1,14865,105230
,1,14866,105235
,1,14867,105240
,1,14868,105245
,1,14869,105250
,1,14870,105255
,1,14871,105260
,1,14872,105265
,1,14873,105270
,1,14874,105275
,1,14875,105280
,1,14876,105285
,1,14877,105290
,1,14878,105295
,1,14879,105300
,1,14880,105305
,1,14881,105310
,1,14882,105315
,1,14883,105320
,1,14884,105325
,1,14885,105330
,1,14886,105335
,1,14887,105340
,1,14888,105345
,1,14889,105350
,1,14890,105355
,1,14891,105360
,1,14892,105365
,1,14893,105370
,1,14894,105375
,1,14895,105380
,1,14896,105385
,1,14897,105390
,1,14898,105395
,1,14899,105400
,1,14900,105405
,1,14901,105410
,1,14902,105415
,1,14903,105420
,1,14904,105425
,1,14905,105430
,1,14906,105435
,1,14907,105440
,1,14908,105445
,1,14909,105450
,1,14910,105455
,1,14911,105460
,1,14912,105465
,1,14913,105470
,1,14914,105475
,1,14915,105480
,1,14916,105485
,1,14917,105490
,1,14918,105495
,1,14919,105500
,1,14920,105505
,1,14921,105510
,1,14922,105515
,1,14923,105520
,1,14924,105525
,1,14925,105530
,1,14926,105535
,1,14927,105540
,1,14928,105545
,1,14929,105550
,1,14930,105555
,1,14931,105560
,1,14932,105565
,1,14933,105570
,1,14934,105575
,1,14935,105580
,1,14936,105585
,1,14937,105590
,1,14938,105595
,1,14939,105600
,1,14940,105605
,1,14941,105610
,1,14942,105615
,1,14943,105620
,1,14944,105625
,1,14945,105630
,1,14946,105635
,1,14947,105640
,1,14948,105645
,1,14949,105650
,1,14950,105655
,1,14951,105660
,1,14952,105665
,1,14953,105670
,1,14954,105675
,1,14955,105680
,1,14956,105685
,1,14957,105690
,1,14958,105695
,1,14959,105700
,1,14960,105705
,1,14961,105710
,1,14962,105715
,1,14963,105720
,1,14964,105725
,1,14965,105730
,1,14966,105735
,1,14967,105740
,1,14968,105745
,1,14969,105750
,1,14970,105755
,1,14971,105760
,1,14972,105765
,1,14973,105770
,1,14974,105775
,1,14975,105780
,1,14976,105785
,1,14977,105790
,1,14978,105795
,1,14979,105800
,1,14980,105805
,1,14981,105810
,1,14982,105815
,1,14983,105820
,1,14984,105825
,1,14985,105830
,1,14986,105835
,1,14987,105840
,1,14988,105845
,1,14989,105850
,1,14990,105855
,1,14991,105860
,1,14992,105865
,1,14993,105870
,1,14994,105875
,1,14995,105880
,1,14996,105885
,1,14997,105890
,1,14998,105895
,1,14999,105900
,1,15000,105905
,1,15001,105910
,1,15002,105915
,1,15003,105920
,1,15004,105925
,1,15005,105930
,1,15006,105935
,1,15007,105940
,1,15008,105945
,1,15009,105950
,1,15010,105955
,1,15011,105960
,1,15012,105965
,1,15013,105970
,1,15014,105975
,1,15015,105980
,1,15016,105985
,1,15017,105990
,1,15018,105995
,1,15019,106000
,1,15020,106005
,1,15021,106010
,1,15022,106015
,1,15023,106020
,1,15024,106025
,1,15025,106030
,1,15026,106035
,1,15027,106040
,1,15028,106045
,1,15029,106050
,1,15030,106055
,1,15031,106060
,1,15032,106065
,1,15033,106070
,1,15034,106075
,1,15035,106080
,1,15036,106085
,1,15037,106090
,1,15038,106095
,1,15039,106100
,1,15040,106105
,1,15041,106110
,1,15042,106115
,1,15043,106120
,1,15044,106125
,1,15045,106130
,1,15046,106135
,1,15047,106140
,1,15048,106145
,1,15049,106150
,1,15050,106155
,1,15051,106160
,1,15052,106165
,1,15053,106170
,1,15054,106175
,1,15055,106180
,1,15056,106185
,1,15057,106190
,1,15058,106195
,1,15059,106200
,1,15060,106205
,1,15061,106210
,1,15062,106215
,1,15063,106220
,1,15064,106225
,1,15065,106230
,1,15066,106235
,1,15067,106240
,1,15068,106245
,1,15069,106250
,1,15070,106255
,1,15071,106260
,1,15072,106265
,1,15073,106270
,1,15074,106275
,1,15075,106280
,1,15076,106285
,1,15077,106290
,1,15078,106295
,1,15079,106300
,1,15080,106305
,1,15081,106310
,1,15082,106315
,1,15083,106320
,1,15084,106325
,1,15085,106330
,1,15086,106335
,1,15087,106340
,1,15088,106345
,1,15089,106350
,1,15090,106355
,1,15091,106360
,1,15092,106365
,1,15093,106370
,1,15094,106375
,1,15095,106380
,1,15096,106385
,1,15097,106390
,1,15098,106395
,1,15099,106400
,1,15100,106405
,1,15101,106410
,1,15102,106415
,1,15103,106420
,1,15104,106425
,1,15105,106430
,1,15106,106435
,1,15107,106440
,1,15108,106445
,1,15109,106450
,1,15110,106455
,1,15111,106460
,1,15112,106465
,1,15113,106470
,1,15114,106475
,1,15115,106480
,1,15116,106485
,1,15117,106490
,1,15118,106495
,1,15119,106500
,1,15120,106505
,1,15121,106510
,1,15122,106515
,1,15123,106520
,1,15124,106525
,1,15125,106530
,1,15126,106535
,1,15127,106540
,1,15128,106545
,1,15129,106550
,1,15130,106555
,1,15131,106560
,1,15132,106565
,1,15133,106570
,1,15134,106575
,1,15135,106580
,1,15136,106585
,1,15137,106590
,1,15138,106595
,1,15139,106600
,1,15140,106605
,1,15141,106610
,1,15142,106615
,1,15143,106620
,1,15144,106625
,1,15145,106630
,1,15146,106635
,1,15147,106640
,1,15148,106645
,1,15149,106650
,1,15150,106655
,1,15151,106660
,1,15152,106665
,1,15153,106670
,1,15154,106675
,1,15155,106680
,1,15156,106685
,1,15157,106690
,1,15158,106695
,1,15159,106700
,1,15160,106705
,1,15161,106710
,1,15162,106715
,1,15163,106720
,1,15164,106725
,1,15165,106730
,1,15166,106735
,1,15167,106740
,1,15168,106745
,1,15169,106750
,1,15170,106755
,1,15171,106760
,1,15172,106765
,1,15173,106770
,1,15174,106775
,1,15175,106780
,1,15176,106785
,1,15177,106790
,1,15178,106795
,1,15179,106800
,1,15180,106805
,1,15181,106810
,1,15182,106815
,1,15183,106820
,1,15184,106825
,1,15185,106830
,1,15186,106835
,1,15187,106840
,1,15188,106845
,1,15189,106850
,1,15190,106855
,1,15191,106860
,1,15192,106865
,1,15193,106870
,1,15194,106875
,1,15195,106880
,1,15196,106885
,1,15197,106890
,1,15198,106895
,1,15199,106900
,1,15200,106905
,1,15201,106910
,1,15202,106915
,1,15203,106920
,1,15204,106925
,1,15205,106930
,1,15206,106935
,1,15207,106940
,1,15208,106945
,1,15209,106950
,1,15210,106955
,1,15211,106960
,1,15212,106965
,1,15213,106970
,1,15214,106975
,1,15215,106980
,1,15216,106985
,1,15217,106990
,1,15218,106995
,1,15219,107000
,1,15220,107005
,1,15221,107010
,1,15222,107015
,1,15223,107020
,1,15224,107025
,1,15225,107030
,1,15226,107035
,1,15227,107040
,1,15228,107045
,1,15229,107050
,1,15230,107055
,1,15231,107060
,1,15232,107065
,1,15233,107070
,1,15234,107075
,1,15235,107080
,1,15236,107085
,1,15237,107090
,1,15238,107095
,1,15239,107100
,1,15240,107105
,1,15241,107110
,1,15242,107115
,1,15243,107120
,1,15244,107125
,1,15245,107130
,1,15246,107135
,1,15247,107140
,1,15248,107145
,1,15249,107150
,1,15250,107155
,1,15251,107160
,1,15252,107165
,1,15253,107170
,1,15254,107175
,1,15255,107180
,1,15256,107185
,1,15257,107190
,1,15258,107195
,1,15259,107200
,1,15260,107205
,1,15261,107210
,1,15262,107215
,1,15263,107220
,1,15264,107225
,1,15265,107230
,1,15266,107235
,1,15267,107240
,1,15268,107245
,1,15269,107250
,1,15270,107255
,1,15271,107260
,1,15272,107265
,1,15273,107270
,1,15274,107275
,1,15275,107280
,1,15276,107285
,1,15277,107290
,1,15278,107295
,1,15279,107300
,1,15280,107305
,1,15281,107310
,1,15282,107315
,1,15283,107320
,1,15284,107325
,1,15285,107330
,1,15286,107335
,1,15287,107340
,1,15288,107345
,1,15289,107350
,1,15290,107355
,1,15291,107360
,1,15292,107365
,1,15293,107370
,1,15294,107375
,1,15295,107380
,1,15296,107385
,1,15297,107390
,1,15298,107395
,1,15299,107400
,1,15300,107405
,1,15301,107410
,1,15302,107415
,1,15303,107420
,1,15304,107425
,1,15305,107430
,1,15306,107435
,1,15307,107440
,1,15308,107445
,1,15309,107450
,1,15310,107455
,1,15311,107460
,1,15312,107465
,1,15313,107470
,1,15314,107475
,1,15315,107480
,1,15316,107485
,1,15317,107490
,1,15318,107495
,1,15319,107500
,1,15320,107505
,1,15321,107510
,1,15322,107515
,1,15323,107520
,1,15324,107525
,1,15325,107530
,1,15326,107535
,1,15327,107540
,1,15328,107545
,1,15329,107550
,1,15330,107555
,1,15331,107560
,1,15332,107565
,1,15333,107570
,1,15334,107575
,1,15335,107580
,1,15336,107585
,1,15337,107590
,1,15338,107595
,1,15339,107600
,1,15340,107605
,1,15341,107610
,1,15342,107615
,1,15343,107620
,1,15344,107625
,1,15345,107630
,1,15346,107635
,1,15347,107640
,1,15348,107645
,1,15349,107650
,1,15350,107655
,1,15351,107660
,1,15352,107665
,1,15353,107670
,1,15354,107675
,1,15355,107680
,1,15356,107685
,1,15357,107690
,1,15358,107695
,1,15359,107700
,1,15360,107705
,1,15361,107710
,1,15362,107715
,1,15363,107720
,1,15364,107725
,1,15365,107730
,1,15366,107735
,1,15367,107740
,1,15368,107745
,1,15369,107750
,1,15370,107755
,1,15371,107760
,1,15372,107765
,1,15373,107770
,1,15374,107775
,1,15375,107780
,1,15376,107785
,1,15377,107790
,1,15378,107795
,1,15379,107800
,1,15380,107805
,1,15381,107810
,1,15382,107815
,1,15383,107820
,1,15384,107825
,1,15385,107830
,1,15386,107835
,1,15387,107840
,1,15388,107845
,1,15389,107850
,1,15390,107855
,1,15391,107860
,1,15392,107865
,1,15393,107870
,1,15394,107875
,1,15395,107880
,1,15396,107885
,1,15397,107890
,1,15398,107895
,1,15399,107900
,1,15400,107905
,1,15401,107910
,1,15402,107915
,1,15403,107920
,1,15404,107925
,1,15405,107930
,1,15406,107935
,1,15407,107940
,1,15408,107945
,1,15409,107950
,1,15410,107955
,1,15411,107960
,1,15412,107965
,1,15413,107970
,1,15414,107975
,1,15415,107980
,1,15416,107985
,1,15417,107990
,1,15418,107995
,1,15419,108000
,1,15420,108005
,1,15421,108010
,1,15422,108015
,1,15423,108020
,1,15424,108025
,1,15425,108030
,1,15426,108035
,1,15427,108040
,1,15428,108045
,1,15429,108050
,1,15430,108055
,1,15431,108060
,1,15432,108065
,1,15433,108070
,1,15434,108075
,1,15435,108080
,1,15436,108085
,1,15437,108090
,1,15438,108095
,1,15439,108100
,1,15440,108105
,1,15441,108110
,1,15442,108115
,1,15443,108120
,1,15444,108125
,1,15445,108130
,1,15446,108135
,1,15447,108140
,1,15448,108145
,1,15449,108150
,1,15450,108155
,1,15451,108160
,1,15452,108165
,1,15453,108170
,1,15454,108175
,1,15455,108180
,1,15456,108185
,1,15457,108190
,1,15458,108195
,1,15459,108200
,1,15460,108205
,1,15461,108210
,1,15462,108215
,1,15463,108220
,1,15464,108225
,1,15465,108230
,1,15466,108235
,1,15467,108240
,1,15468,108245
,1,15469,108250
,1,15470,108255
,1,15471,108260
,1,15472,108265
,1,15473,108270
,1,15474,108275
,1,15475,108280
,1,15476,108285
,1,15477,108290
,1,15478,108295
,1,15479,108300
,1,15480,108305
,1,15481,108310
,1,15482,108315
,1,15483,108320
,1,15484,108325
,1,15485,108330
,1,15486,108335
,1,15487,108340
,1,15488,108345
,1,15489,108350
,1,15490,108355
,1,15491,108360
,1,15492,108365
,1,15493,108370
,1,15494,108375
,1,15495,108380
,1,15496,108385
,1,15497,108390
,1,15498,108395
,1,15499,108400
,1,15500,108405
,1,15501,108410
,1,15502,108415
,1,15503,108420
,1,15504,108425
,1,15505,108430
,1,15506,108435
,1,15507,108440
,1,15508,108445
,1,15509,108450
,1,15510,108455
,1,15511,108460
,1,15512,108465
,1,15513,108470
,1,15514,108475
,1,15515,108480
,1,15516,108485
,1,15517,108490
,1,15518,108495
,1,15519,108500
,1,15520,108505
,1,15521,108510
,1,15522,108515
,1,15523,108520
,1,15524,108525
,1,15525,108530
,1,15526,108535
,1,15527,108540
,1,15528,108545
,1,15529,108550
,1,15530,108555
,1,15531,108560
,1,15532,108565
,1,15533,108570
,1,15534,108575
,1,15535,108580
,1,15536,108585
,1,15537,108590
,1,15538,108595
,1,15539,108600
,1,15540,108605
,1,15541,108610
,1,15542,108615
,1,15543,108620
,1,15544,108625
,1,15545,108630
,1,15546,108635
,1,15547,108640
,1,15548,108645
,1,15549,108650
,1,15550,108655
,1,15551,108660
,1,15552,108665
,1,15553,108670
,1,15554,108675
,1,15555,108680
,1,15556,108685
,1,15557,108690
,1,15558,108695
,1,15559,108700
,1,15560,108705
,1,15561,108710
,1,15562,108715
,1,15563,108720
,1,15564,108725
,1,15565,108730
,1,15566,108735
,1,15567,108740
,1,15568,108745
,1,15569,108750
,1,15570,108755
,1,15571,108760
,1,15572,108765
,1,15573,108770
,1,15574,108775
,1,15575,108780
,1,15576,108785
,1,15577,108790
,1,15578,108795
,1,15579,108800
,1,15580,108805
,1,15581,108810
,1,15582,108815
,1,15583,108820
,1,15584,108825
,1,15585,108830
,1,15586,108835
,1,15587,108840
,1,15588,108845
,1,15589,108850
,1,15590,108855
,1,15591,108860
,1,15592,108865
,1,15593,108870
,1,15594,108875
,1,15595,108880
,1,15596,108885
,1,15597,108890
,1,15598,108895
,1,15599,108900
,1,15600,108905
,1,15601,108910
,1,15602,108915
,1,15603,108920
,1,15604,108925
,1,15605,108930
,1,15606,108935
,1,15607,108940
,1,15608,108945
,1,15609,108950
,1,15610,108955
,1,15611,108960
,1,15612,108965
,1,15613,108970
,1,15614,108975
,1,15615,108980
,1,15616,108985
,1,15617,108990
,1,15618,108995
,1,15619,109000
,1,15620,109005
,1,15621,109010
,1,15622,109015
,1,15623,109020
,1,15624,109025
,1,15625,109030
,1,15626,109035
,1,15627,109040
,1,15628,109045
,1,15629,109050
,1,15630,109055
,1,15631,109060
,1,15632,109065
,1,15633,109070
,1,15634,109075
,1,15635,109080
,1,15636,109085
,1,15637,109090
,1,15638,109095
,1,15639,109100
,1,15640,109105
,1,15641,109110
,1,15642,109115
,1,15643,109120
,1,15644,109125
,1,15645,109130
,1,15646,109135
,1,15647,109140
,1,15648,109145
,1,15649,109150
,1,15650,109155
,1,15651,109160
,1,15652,109165
,1,15653,109170
,1,15654,109175
,1,15655,109180
,1,15656,109185
,1,15657,109190
,1,15658,109195
,1,15659,109200
,1,15660,109205
,1,15661,109210
,1,15662,109215
,1,15663,109220
,1,15664,109225
,1,15665,109230
,1,15666,109235
,1,15667,109240
,1,15668,109245
,1,15669,109250
,1,15670,109255
,1,15671,109260
,1,15672,109265
,1,15673,109270
,1,15674,109275
,1,15675,109280
,1,15676,109285
,1,15677,109290
,1,15678,109295
,1,15679,109300
,1,15680,109305
,1,15681,109310
,1,15682,109315
,1,15683,109320
,1,15684,109325
,1,15685,109330
,1,15686,109335
,1,15687,109340
,1,15688,109345
,1,15689,109350
,1,15690,109355
,1,15691,109360
,1,15692,109365
,1,15693,109370
,1,15694,109375
,1,15695,109380
,1,15696,109385
,1,15697,109390
,1,15698,109395
,1,15699,109400
,1,15700,109405
,1,15701,109410
,1,15702,109415
,1,15703,109420
,1,15704,109425
,1,15705,109430
,1,15706,109435
,1,15707,109440
,1,15708,109445
,1,15709,109450
,1,15710,109455
,1,15711,109460
,1,15712,109465
,1,15713,109470
,1,15714,109475
,1,15715,109480
,1,15716,109485
,1,15717,109490
,1,15718,109495
,1,15719,109500
,1,15720,109505
,1,15721,109510
,1,15722,109515
,1,15723,109520
,1,15724,109525
,1,15725,109530
,1,15726,109535
,1,15727,109540
,1,15728,109545
,1,15729,109550
,1,15730,109555
,1,15731,109560
,1,15732,109565
,1,15733,109570
,1,15734,109575
,1,15735,109580
,1,15736,109585
,1,15737,109590
,1,15738,109595
,1,15739,109600
,1,15740,109605
,1,15741,109610
,1,15742,109615
,1,15743,109620
,1,15744,109625
,1,15745,109630
,1,15746,109635
,1,15747,109640
,1,15748,109645
,1,15749,109650
,1,15750,109655
,1,15751,109660
,1,15752,109665
,1,15753,109670
,1,15754,109675
,1,15755,109680
,1,15756,109685
,1,15757,109690
,1,15758,109695
,1,15759,109700
,1,15760,109705
,1,15761,109710
,1,15762,109715
,1,15763,109720
,1,15764,109725
,1,15765,109730
,1,15766,109735
,1,15767,109740
,1,15768,109745
,1,15769,109750
,1,15770,109755
,1,15771,109760
,1,15772,109765
,1,15773,109770
,1,15774,109775
,1,15775,109780
,1,15776,109785
,1,15777,109790
,1,15778,109795
,1,15779,109800
,1,15780,109805
,1,15781,109810
,1,15782,109815
,1,15783,109820
,1,15784,109825
,1,15785,109830
,1,15786,109835
,1,15787,109840
,1,15788,109845
,1,15789,109850
,1,15790,109855
,1,15791,109860
,1,15792,109865
,1,15793,109870
,1,15794,109875
,1,15795,109880
,1,15796,109885
,1,15797,109890
,1,15798,109895
,1,15799,109900
,1,15800,109905
,1,15801,109910
,1,15802,109915
,1,15803,109920
,1,15804,109925
,1,15805,109930
,1,15806,109935
,1,15807,109940
,1,15808,109945
,1,15809,109950
,1,15810,109955
,1,15811,109960
,1,15812,109965
,1,15813,109970
,1,15814,109975
,1,15815,109980
,1,15816,109985
,1,15817,109990
,1,15818,109995
,1,15819,110000
,1,15820,110005
,1,15821,110010
,1,15822,110015
,1,15823,110020
,1,15824,110025
,1,15825,110030
,1,15826,110035
,1,15827,110040
,1,15828,110045
,1,15829,110050
,1,15830,110055
,1,15831,110060
,1,15832,110065
,1,15833,110070
,1,15834,110075
,1,15835,110080
,1,15836,110085
,1,15837,110090
,1,15838,110095
,1,15839,110100
,1,15840,110105
,1,15841,110110
,1,15842,110115
,1,15843,110120
,1,15844,110125
,1,15845,110130
,1,15846,110135
,1,15847,110140
,1,15848,110145
,1,15849,110150
,1,15850,110155
,1,15851,110160
,1,15852,110165
,1,15853,110170
,1,15854,110175
,1,15855,110180
,1,15856,110185
,1,15857,110190
,1,15858,110195
,1,15859,110200
,1,15860,110205
,1,15861,110210
,1,15862,110215
,1,15863,110220
,1,15864,110225
,1,15865,110230
,1,15866,110235
,1,15867,110240
,1,15868,110245
,1,15869,110250
,1,15870,110255
,1,15871,110260
,1,15872,110265
,1,15873,110270
,1,15874,110275
,1,15875,110280
,1,15876,110285
,1,15877,110290
,1,15878,110295
,1,15879,110300
,1,15880,110305
,1,15881,110310
,1,15882,110315
,1,15883,110320
,1,15884,110325
,1,15885,110330
,1,15886,110335
,1,15887,110340
,1,15888,110345
,1,15889,110350
,1,15890,110355
,1,15891,110360
,1,15892,110365
,1,15893,110370
,1,15894,110375
,1,15895,110380
,1,15896,110385
,1,15897,110390
,1,15898,110395
,1,15899,110400
,1,15900,110405
,1,15901,110410
,1,15902,110415
,1,15903,110420
,1,15904,110425
,1,15905,110430
,1,15906,110435
,1,15907,110440
,1,15908,110445
,1,15909,110450
,1,15910,110455
,1,15911,110460
,1,15912,110465
,1,15913,110470
,1,15914,110475
,1,15915,110480
,1,15916,110485
,1,15917,110490
,1,15918,110495
,1,15919,110500
,1,15920,110505
,1,15921,110510
,1,15922,110515
,1,15923,110520
,1,15924,110525
,1,15925,110530
,1,15926,110535
,1,15927,110540
,1,15928,110545
,1,15929,110550
,1,15930,110555
,1,15931,110560
,1,15932,110565
,1,15933,110570
,1,15934,110575
,1,15935,110580
,1,15936,110585
,1,15937,110590
,1,15938,110595
,1,15939,110600
,1,15940,110605
,1,15941,110610
,1,15942,110615
,1,15943,110620
,1,15944,110625
,1,15945,110630
,1,15946,110635
,1,15947,110640
,1,15948,110645
,1,15949,110650
,1,15950,110655
,1,15951,110660
,1,15952,110665
,1,15953,110670
,1,15954,110675
,1,15955,110680
,1,15956,110685
,1,15957,110690
,1,15958,110695
,1,15959,110700
,1,15960,110705
,1,15961,110710
,1,15962,110715
,1,15963,110720
,1,15964,110725
,1,15965,110730
,1,15966,110735
,1,15967,110740
,1,15968,110745
,1,15969,110750
,1,15970,110755
,1,15971,110760
,1,15972,110765
,1,15973,110770
,1,15974,110775
,1,15975,110780
,1,15976,110785
,1,15977,110790
,1,15978,110795
,1,15979,110800
,1,15980,110805
,1,15981,110810
,1,15982,110815
,1,15983,110820
,1,15984,110825
,1,15985,110830
,1,15986,110835
,1,15987,110840
,1,15988,110845
,1,15989,110850
,1,15990,110855
,1,15991,110860
,1,15992,110865
,1,15993,110870
,1,15994,110875
,1,15995,110880
,1,15996,110885
,1,15997,110890
,1,15998,110895
,1,15999,110900
,1,16000,110905
,1,16001,110910
,1,16002,110915
,1,16003,110920
,1,16004,110925
,1,16005,110930
,1,16006,110935
,1,16007,110940
,1,16008,110945
,1,16009,110950
,1,16010,110955
,1,16011,110960
,1,16012,110965
,1,16013,110970
,1,16014,110975
,1,16015,110980
,1,16016,110985
,1,16017,110990
,1,16018,110995
,1,16019,111000
,1,16020,111005
,1,16021,111010
,1,16022,111015
,1,16023,111020
,1,16024,111025
,1,16025,111030
,1,16026,111035
,1,16027,111040
,1,16028,111045
,1,16029,111050
,1,16030,111055
,1,16031,111060
,1,16032,111065
,1,16033,111070
,1,16034,111075
,1,16035,111080
,1,16036,111085
,1,16037,111090
,1,16038,111095
,1,16039,111100
,1,16040,111105
,1,16041,111110
,1,16042,111115
,1,16043,111120
,1,16044,111125
,1,16045,111130
,1,16046,111135
,1,16047,111140
,1,16048,111145
,1,16049,111150
,1,16050,111155
,1,16051,111160
,1,16052,111165
,1,16053,111170
,1,16054,111175
,1,16055,111180
,1,16056,111185
,1,16057,111190
,1,16058,111195
,1,16059,111200
,1,16060,111205
,1,16061,111210
,1,16062,111215
,1,16063,111220
,1,16064,111225
,1,16065,111230
,1,16066,111235
,1,16067,111240
,1,16068,111245
,1,16069,111250
,1,16070,111255
,1,16071,111260
,1,16072,111265
,1,16073,111270
,1,16074,111275
,1,16075,111280
,1,16076,111285
,1,16077,111290
,1,16078,111295
,1,16079,111300
,1,16080,111305
,1,16081,111310
,1,16082,111315
,1,16083,111320
,1,16084,111325
,1,16085,111330
,1,16086,111335
,1,16087,111340
,1,16088,111345
,1,16089,111350
,1,16090,111355
,1,16091,111360
,1,16092,111365
,1,16093,111370
,1,16094,111375
,1,16095,111380
,1,16096,111385
,1,16097,111390
,1,16098,111395
,1,16099,111400
,1,16100,111405
,1,16101,111410
,1,16102,111415
,1,16103,111420
,1,16104,111425
,1,16105,111430
,1,16106,111435
,1,16107,111440
,1,16108,111445
,1,16109,111450
,1,16110,111455
,1,16111,111460
,1,16112,111465
,1,16113,111470
,1,16114,111475
,1,16115,111480
,1,16116,111485
,1,16117,111490
,1,16118,111495
,1,16119,111500
,1,16120,111505
,1,16121,111510
,1,16122,111515
,1,16123,111520
,1,16124,111525
,1,16125,111530
,1,16126,111535
,1,16127,111540
,1,16128,111545
,1,16129,111550
,1,16130,111555
,1,16131,111560
,1,16132,111565
,1,16133,111570
,1,16134,111575
,1,16135,111580
,1,16136,111585
,1,16137,111590
,1,16138,111595
,1,16139,111600
,1,16140,111605
,1,16141,111610
,1,16142,111615
,1,16143,111620
,1,16144,111625
,1,16145,111630
,1,16146,111635
,1,16147,111640
,1,16148,111645
,1,16149,111650
,1,16150,111655
,1,16151,111660
,1,16152,111665
,1,16153,111670
,1,16154,111675
,1,16155,111680
,1,16156,111685
,1,16157,111690
,1,16158,111695
,1,16159,111700
,1,16160,111705
,1,16161,111710
,1,16162,111715
,1,16163,111720
,1,16164,111725
,1,16165,111730
,1,16166,111735
,1,16167,111740
,1,16168,111745
,1,16169,111750
,1,16170,111755
,1,16171,111760
,1,16172,111765
,1,16173,111770
,1,16174,111775
,1,16175,111780
,1,16176,111785
,1,16177,111790
,1,16178,111795
,1,16179,111800
,1,16180,111805
,1,16181,111810
,1,16182,111815
,1,16183,111820
,1,16184,111825
,1,16185,111830
,1,16186,111835
,1,16187,111840
,1,16188,111845
,1,16189,111850
,1,16190,111855
,1,16191,111860
,1,16192,111865
,1,16193,111870
,1,16194,111875
,1,16195,111880
,1,16196,111885
,1,16197,111890
,1,16198,111895
,1,16199,111900
,1,16200,111905
,1,16201,111910
,1,16202,111915
,1,16203,111920
,1,16204,111925
,1,16205,111930
,1,16206,111935
,1,16207,111940
,1,16208,111945
,1,16209,111950
,1,16210,111955
,1,16211,111960
,1,16212,111965
,1,16213,111970
,1,16214,111975
,1,16215,111980
,1,16216,111985
,1,16217,111990
,1,16218,111995
,1,16219,112000
,1,16220,112005
,1,16221,112010
,1,16222,112015
,1,16223,112020
,1,16224,112025
,1,16225,112030
,1,16226,112035
,1,16227,112040
,1,16228,112045
,1,16229,112050
,1,16230,112055
,1,16231,112060
,1,16232,112065
,1,16233,112070
,1,16234,112075
,1,16235,112080
,1,16236,112085
,1,16237,112090
,1,16238,112095
,1,16239,112100
,1,16240,112105
,1,16241,112110
,1,16242,112115
,1,16243,112120
,1,16244,112125
,1,16245,112130
,1,16246,112135
,1,16247,112140
,1,16248,112145
,1,16249,112150
,1,16250,112155
,1,16251,112160
,1,16252,112165
,1,16253,112170
,1,16254,112175
,1,16255,112180
,1,16256,112185
,1,16257,112190
,1,16258,112195
,1,16259,112200
,1,16260,112205
,1,16261,112210
,1,16262,112215
,1,16263,112220
,1,16264,112225
,1,16265,112230
,1,16266,112235
,1,16267,112240
,1,16268,112245
,1,16269,112250
,1,16270,112255
,1,16271,112260
,1,16272,112265
,1,16273,112270
,1,16274,112275
,1,16275,112280
,1,16276,112285
,1,16277,112290
,1,16278,112295
,1,16279,112300
,1,16280,112305
,1,16281,112310
,1,16282,112315
,1,16283,112320
,1,16284,112325
,1,16285,112330
,1,16286,112335
,1,16287,112340
,1,16288,112345
,1,16289,112350
,1,16290,112355
,1,16291,112360
,1,16292,112365
,1,16293,112370
,1,16294,112375
,1,16295,112380
,1,16296,112385
,1,16297,112390
,1,16298,112395
,1,16299,112400
,1,16300,112405
,1,16301,112410
,1,16302,112415
,1,16303,112420
,1,16304,112425
,1,16305,112430
,1,16306,112435
,1,16307,112440
,1,16308,112445
,1,16309,112450
,1,16310,112455
,1,16311,112460
,1,16312,112465
,1,16313,112470
,1,16314,112475
,1,16315,112480
,1,16316,112485
,1,16317,112490
,1,16318,112495
,1,16319,112500
,1,16320,112505
,1,16321,112510
,1,16322,112515
,1,16323,112520
,1,16324,112525
,1,16325,112530
,1,16326,112535
,1,16327,112540
,1,16328,112545
,1,16329,112550
,1,16330,112555
,1,16331,112560
,1,16332,112565
,1,16333,112570
,1,16334,112575
,1,16335,112580
,1,16336,112585
,1,16337,112590
,1,16338,112595
,1,16339,112600
,1,16340,112605
,1,16341,112610
,1,16342,112615
,1,16343,112620
,1,16344,112625
,1,16345,112630
,1,16346,112635
,1,16347,112640
,1,16348,112645
,1,16349,112650
,1,16350,112655
,1,16351,112660
,1,16352,112665
,1,16353,112670
,1,16354,112675
,1,16355,112680
,1,16356,112685
,1,16357,112690
,1,16358,112695
,1,16359,112700
,1,16360,112705
,1,16361,112710
,1,16362,112715
,1,16363,112720
,1,16364,112725
,1,16365,112730
,1,16366,112735
,1,16367,112740
,1,16368,112745
,1,16369,112750
,1,16370,112755
,1,16371,112760
,1,16372,112765
,1,16373,112770
,1,16374,112775
,1,16375,112780
,1,16376,112785
,1,16377,112790
,1,16378,112795
,1,16379,112800
,1,16380,112805
,1,16381,112810
,1,16382,112815
,1,16383,112820
,1,16384,112825
,1,16385,112830
,1,16386,112835
,1,16387,112840
,1,16388,112845
,1,16389,112850
,1,16390,112855
,1,16391,112860
,1,16392,112865
,1,16393,112870
,1,16394,112875
,1,16395,112880
,1,16396,112885
,1,16397,112890
,1,16398,112895
,1,16399,112900
,1,16400,112905
,1,16401,112910
,1,16402,112915
,1,16403,112920
,1,16404,112925
,1,16405,112930
,1,16406,112935
,1,16407,112940
,1,16408,112945
,1,16409,112950
,1,16410,112955
,1,16411,112960
,1,16412,112965
,1,16413,112970
,1,16414,112975
,1,16415,112980
,1,16416,112985
,1,16417,112990
,1,16418,112995
,1,16419,113000
,1,16420,113005
,1,16421,113010
,1,16422,113015
,1,16423,113020
,1,16424,113025
,1,16425,113030
,1,16426,113035
,1,16427,113040
,1,16428,113045
,1,16429,113050
,1,16430,113055
,1,16431,113060
,1,16432,113065
,1,16433,113070
,1,16434,113075
,1,16435,113080
,1,16436,113085
,1,16437,113090
,1,16438,113095
,1,16439,113100
,1,16440,113105
,1,16441,113110
,1,16442,113115
,1,16443,113120
,1,16444,113125
,1,16445,113130
,1,16446,113135
,1,16447,113140
,1,16448,113145
,1,16449,113150
,1,16450,113155
,1,16451,113160
,1,16452,113165
,1,16453,113170
,1,16454,113175
,1,16455,113180
,1,16456,113185
,1,16457,113190
,1,16458,113195
,1,16459,113200
,1,16460,113205
,1,16461,113210
,1,16462,113215
,1,16463,113220
,1,16464,113225
,1,16465,113230
,1,16466,113235
,1,16467,113240
,1,16468,113245
,1,16469,113250
,1,16470,113255
,1,16471,113260
,1,16472,113265
,1,16473,113270
,1,16474,113275
,1,16475,113280
,1,16476,113285
,1,16477,113290
,1,16478,113295
,1,16479,113300
,1,16480,113305
,1,16481,113310
,1,16482,113315
,1,16483,113320
,1,16484,113325
,1,16485,113330
,1,16486,113335
,1,16487,113340
,1,16488,113345
,1,16489,113350
,1,16490,113355
,1,16491,113360
,1,16492,113365
,1,16493,113370
,1,16494,113375
,1,16495,113380
,1,16496,113385
,1,16497,113390
,1,16498,113395
,1,16499,113400
,1,16500,113405
,1,16501,113410
,1,16502,113415
,1,16503,113420
,1,16504,113425
,1,16505,113430
,1,16506,113435
,1,16507,113440
,1,16508,113445
,1,16509,113450
,1,16510,113455
,1,16511,113460
,1,16512,113465
,1,16513,113470
,1,16514,113475
,1,16515,113480
,1,16516,113485
,1,16517,113490
,1,16518,113495
,1,16519,113500
,1,16520,113505
,1,16521,113510
,1,16522,113515
,1,16523,113520
,1,16524,113525
,1,16525,113530
,1,16526,113535
,1,16527,113540
,1,16528,113545
,1,16529,113550
,1,16530,113555
,1,16531,113560
,1,16532,113565
,1,16533,113570
,1,16534,113575
,1,16535,113580
,1,16536,113585
,1,16537,113590
,1,16538,113595
,1,16539,113600
,1,16540,113605
,1,16541,113610
,1,16542,113615
,1,16543,113620
,1,16544,113625
,1,16545,113630
,1,16546,113635
,1,16547,113640
,1,16548,113645
,1,16549,113650
,1,16550,113655
,1,16551,113660
,1,16552,113665
,1,16553,113670
,1,16554,113675
,1,16555,113680
,1,16556,113685
,1,16557,113690
,1,16558,113695
,1,16559,113700
,1,16560,113705
,1,16561,113710
,1,16562,113715
,1,16563,113720
,1,16564,113725
,1,16565,113730
,1,16566,113735
,1,16567,113740
,1,16568,113745
,1,16569,113750
,1,16570,113755
,1,16571,113760
,1,16572,113765
,1,16573,113770
,1,16574,113775
,1,16575,113780
,1,16576,113785
,1,16577,113790
,1,16578,113795
,1,16579,113800
,1,16580,113805
,1,16581,113810
,1,16582,113815
,1,16583,113820
,1,16584,113825
,1,16585,113830
,1,16586,113835
,1,16587,113840
,1,16588,113845
,1,16589,113850
,1,16590,113855
,1,16591,113860
,1,16592,113865
,1,16593,113870
,1,16594,113875
,1,16595,113880
,1,16596,113885
,1,16597,113890
,1,16598,113895
,1,16599,113900
,1,16600,113905
,1,16601,113910
,1,16602,113915
,1,16603,113920
,1,16604,113925
,1,16605,113930
,1,16606,113935
,1,16607,113940
,1,16608,113945
,1,16609,113950
,1,16610,113955
,1,16611,113960
,1,16612,113965
,1,16613,113970
,1,16614,113975
,1,16615,113980
,1,16616,113985
,1,16617,113990
,1,16618,113995
,1,16619,114000
,1,16620,114005
,1,16621,114010
,1,16622,114015
,1,16623,114020
,1,16624,114025
,1,16625,114030
,1,16626,114035
,1,16627,114040
,1,16628,114045
,1,16629,114050
,1,16630,114055
,1,16631,114060
,1,16632,114065
,1,16633,114070
,1,16634,114075
,1,16635,114080
,1,16636,114085
,1,16637,114090
,1,16638,114095
,1,16639,114100
,1,16640,114105
,1,16641,114110
,1,16642,114115
,1,16643,114120
,1,16644,114125
,1,16645,114130
,1,16646,114135
,1,16647,114140
,1,16648,114145
,1,16649,114150
,1,16650,114155
,1,16651,114160
,1,16652,114165
,1,16653,114170
,1,16654,114175
,1,16655,114180
,1,16656,114185
,1,16657,114190
,1,16658,114195
,1,16659,114200
,1,16660,114205
,1,16661,114210
,1,16662,114215
,1,16663,114220
,1,16664,114225
,1,16665,114230
,1,16666,114235
,1,16667,114240
,1,16668,114245
,1,16669,114250
,1,16670,114255
,1,16671,114260
,1,16672,114265
,1,16673,114270
,1,16674,114275
,1,16675,114280
,1,16676,114285
,1,16677,114290
,1,16678,114295
,1,16679,114300
,1,16680,114305
,1,16681,114310
,1,16682,114315
,1,16683,114320
,1,16684,114325
,1,16685,114330
,1,16686,114335
,1,16687,114340
,1,16688,114345
,1,16689,114350
,1,16690,114355
,1,16691,114360
,1,16692,114365
,1,16693,114370
,1,16694,114375
,1,16695,114380
,1,16696,114385
,1,16697,114390
,1,16698,114395
,1,16699,114400
,1,16700,114405
,1,16701,114410
,1,16702,114415
,1,16703,114420
,1,16704,114425
,1,16705,114430
,1,16706,114435
,1,16707,114440
,1,16708,114445
,1,16709,114450
,1,16710,114455
,1,16711,114460
,1,16712,114465
,1,16713,114470
,1,16714,114475
,1,16715,114480
,1,16716,114485
,1,16717,114490
,1,16718,114495
,1,16719,114500
,1,16720,114505
,1,16721,114510
,1,16722,114515
,1,16723,114520
,1,16724,114525
,1,16725,114530
,1,16726,114535
,1,16727,114540
,1,16728,114545
,1,16729,114550
,1,16730,114555
,1,16731,114560
,1,16732,114565
,1,16733,114570
,1,16734,114575
,1,16735,114580
,1,16736,114585
,1,16737,114590
,1,16738,114595
,1,16739,114600
,1,16740,114605
,1,16741,114610
,1,16742,114615
,1,16743,114620
,1,16744,114625
,1,16745,114630
,1,16746,114635
,1,16747,114640
,1,16748,114645
,1,16749,114650
,1,16750,114655
,1,16751,114660
,1,16752,114665
,1,16753,114670
,1,16754,114675
,1,16755,114680
,1,16756,114685
,1,16757,114690
,1,16758,114695
,1,16759,114700
,1,16760,114705
,1,16761,114710
,1,16762,114715
,1,16763,114720
,1,16764,114725
,1,16765,114730
,1,16766,114735
,1,16767,114740
,1,16768,114745
,1,16769,114750
,1,16770,114755
,1,16771,114760
,1,16772,114765
,1,16773,114770
,1,16774,114775
,1,16775,114780
,1,16776,114785
,1,16777,114790
,1,16778,114795
,1,16779,114800
,1,16780,114805
,1,16781,114810
,1,16782,114815
,1,16783,114820
,1,16784,114825
,1,16785,114830
,1,16786,114835
,1,16787,114840
,1,16788,114845
,1,16789,114850
,1,16790,114855
,1,16791,114860
,1,16792,114865
,1,16793,114870
,1,16794,114875
,1,16795,114880
,1,16796,114885
,1,16797,114890
,1,16798,114895
,1,16799,114900
,1,16800,114905
,1,16801,114910
,1,16802,114915
,1,16803,114920
,1,16804,114925
,1,16805,114930
,1,16806,114935
,1,16807,114940
,1,16808,114945
,1,16809,114950
,1,16810,114955
,1,16811,114960
,1,16812,114965
,1,16813,114970
,1,16814,114975
,1,16815,114980
,1,16816,114985
,1,16817,114990
,1,16818,114995
,1,16819,115000
,1,16820,115005
,1,16821,115010
,1,16822,115015
,1,16823,115020
,1,16824,115025
,1,16825,115030
,1,16826,115035
,1,16827,115040
,1,16828,115045
,1,16829,115050
,1,16830,115055
,1,16831,115060
,1,16832,115065
,1,16833,115070
,1,16834,115075
,1,16835,115080
,1,16836,115085
,1,16837,115090
,1,16838,115095
,1,16839,115100
,1,16840,115105
,1,16841,115110
,1,16842,115115
,1,16843,115120
,1,16844,115125
,1,16845,115130
,1,16846,115135
,1,16847,115140
,1,16848,115145
,1,16849,115150
,1,16850,115155
,1,16851,115160
,1,16852,115165
,1,16853,115170
,1,16854,115175
,1,16855,115180
,1,16856,115185
,1,16857,115190
,1,16858,115195
,1,16859,115200
,1,16860,115205
,1,16861,115210
,1,16862,115215
,1,16863,115220
,1,16864,115225
,1,16865,115230
,1,16866,115235
,1,16867,115240
,1,16868,115245
,1,16869,115250
,1,16870,115255
,1,16871,115260
,1,16872,115265
,1,16873,115270
,1,16874,115275
,1,16875,115280
,1,16876,115285
,1,16877,115290
,1,16878,115295
,1,16879,115300
,1,16880,115305
,1,16881,115310
,1,16882,115315
,1,16883,115320
,1,16884,115325
,1,16885,115330
,1,16886,115335
,1,16887,115340
,1,16888,115345
,1,16889,115350
,1,16890,115355
,1,16891,115360
,1,16892,115365
,1,16893,115370
,1,16894,115375
,1,16895,115380
,1,16896,115385
,1,16897,115390
,1,16898,115395
,1,16899,115400
,1,16900,115405
,1,16901,115410
,1,16902,115415
,1,16903,115420
,1,16904,115425
,1,16905,115430
,1,16906,115435
,1,16907,115440
,1,16908,115445
,1,16909,115450
,1,16910,115455
,1,16911,115460
,1,16912,115465
,1,16913,115470
,1,16914,115475
,1,16915,115480
,1,16916,115485
,1,16917,115490
,1,16918,115495
,1,16919,115500
,1,16920,115505
,1,16921,115510
,1,16922,115515
,1,16923,115520
,1,16924,115525
,1,16925,115530
,1,16926,115535
,1,16927,115540
,1,16928,115545
,1,16929,115550
,1,16930,115555
,1,16931,115560
,1,16932,115565
,1,16933,115570
,1,16934,115575
,1,16935,115580
,1,16936,115585
,1,16937,115590
,1,16938,115595
,1,16939,115600
,1,16940,115605
,1,16941,115610
,1,16942,115615
,1,16943,115620
,1,16944,115625
,1,16945,115630
,1,16946,115635
,1,16947,115640
,1,16948,115645
,1,16949,115650
,1,16950,115655
,1,16951,115660
,1,16952,115665
,1,16953,115670
,1,16954,115675
,1,16955,115680
,1,16956,115685
,1,16957,115690
,1,16958,115695
,1,16959,115700
,1,16960,115705
,1,16961,115710
,1,16962,115715
,1,16963,115720
,1,16964,115725
,1,16965,115730
,1,16966,115735
,1,16967,115740
,1,16968,115745
,1,16969,115750
,1,16970,115755
,1,16971,115760
,1,16972,115765
,1,16973,115770
,1,16974,115775
,1,16975,115780
,1,16976,115785
,1,16977,115790
,1,16978,115795
,1,16979,115800
,1,16980,115805
,1,16981,115810
,1,16982,115815
,1,16983,115820
,1,16984,115825
,1,16985,115830
,1,16986,115835
,1,16987,115840
,1,16988,115845
,1,16989,115850
,1,16990,115855
,1,16991,115860
,1,16992,115865
,1,16993,115870
,1,16994,115875
,1,16995,115880
,1,16996,115885
,1,16997,115890
,1,16998,115895
,1,16999,115900
,1,17000,115905
,1,17001,115910
,1,17002,115915
,1,17003,115920
,1,17004,115925
,1,17005,115930
,1,17006,115935
,1,17007,115940
,1,17008,115945
,1,17009,115950
,1,17010,115955
,1,17011,115960
,1,17012,115965
,1,17013,115970
,1,17014,115975
,1,17015,115980
,1,17016,115985
,1,17017,115990
,1,17018,115995
,1,17019,116000
,1,17020,116005
,1,17021,116010
,1,17022,116015
,1,17023,116020
,1,17024,116025
,1,17025,116030
,1,17026,116035
,1,17027,116040
,1,17028,116045
,1,17029,116050
,1,17030,116055
,1,17031,116060
,1,17032,116065
,1,17033,116070
,1,17034,116075
,1,17035,116080
,1,17036,116085
,1,17037,116090
,1,17038,116095
,1,17039,116100
,1,17040,116105
,1,17041,116110
,1,17042,116115
,1,17043,116120
,1,17044,116125
,1,17045,116130
,1,17046,116135
,1,17047,116140
,1,17048,116145
,1,17049,116150
,1,17050,116155
,1,17051,116160
,1,17052,116165
,1,17053,116170
,1,17054,116175
,1,17055,116180
,1,17056,116185
,1,17057,116190
,1,17058,116195
,1,17059,116200
,1,17060,116205
,1,17061,116210
,1,17062,116215
,1,17063,116220
,1,17064,116225
,1,17065,116230
,1,17066,116235
,1,17067,116240
,1,17068,116245
,1,17069,116250
,1,17070,116255
,1,17071,116260
,1,17072,116265
,1,17073,116270
,1,17074,116275
,1,17075,116280
,1,17076,116285
,1,17077,116290
,1,17078,116295
,1,17079,116300
,1,17080,116305
,1,17081,116310
,1,17082,116315
,1,17083,116320
,1,17084,116325
,1,17085,116330
,1,17086,116335
,1,17087,116340
,1,17088,116345
,1,17089,116350
,1,17090,116355
,1,17091,116360
,1,17092,116365
,1,17093,116370
,1,17094,116375
,1,17095,116380
,1,17096,116385
,1,17097,116390
,1,17098,116395
,1,17099,116400
,1,17100,116405
,1,17101,116410
,1,17102,116415
,1,17103,116420
,1,17104,116425
,1,17105,116430
,1,17106,116435
,1,17107,116440
,1,17108,116445
,1,17109,116450
,1,17110,116455
,1,17111,116460
,1,17112,116465
,1,17113,116470
,1,17114,116475
,1,17115,116480
,1,17116,116485
,1,17117,116490
,1,17118,116495
,1,17119,116500
,1,17120,116505
,1,17121,116510
,1,17122,116515
,1,17123,116520
,1,17124,116525
,1,17125,116530
,1,17126,116535
,1,17127,116540
,1,17128,116545
,1,17129,116550
,1,17130,116555
,1,17131,116560
,1,17132,116565
,1,17133,116570
,1,17134,116575
,1,17135,116580
,1,17136,116585
,1,17137,116590
,1,17138,116595
,1,17139,116600
,1,17140,116605
,1,17141,116610
,1,17142,116615
,1,17143,116620
,1,17144,116625
,1,17145,116630
,1,17146,116635
,1,17147,116640
,1,17148,116645
,1,17149,116650
,1,17150,116655
,1,17151,116660
,1,17152,116665
,1,17153,116670
,1,17154,116675
,1,17155,116680
,1,17156,116685
,1,17157,116690
,1,17158,116695
,1,17159,116700
,1,17160,116705
,1,17161,116710
,1,17162,116715
,1,17163,116720
,1,17164,116725
,1,17165,116730
,1,17166,116735
,1,17167,116740
,1,17168,116745
,1,17169,116750
,1,17170,116755
,1,17171,116760
,1,17172,116765
,1,17173,116770
,1,17174,116775
,1,17175,116780
,1,17176,116785
,1,17177,116790
,1,17178,116795
,1,17179,116800
,1,17180,116805
,1,17181,116810
,1,17182,116815
,1,17183,116820
,1,17184,116825
,1,17185,116830
,1,17186,116835
,1,17187,116840
,1,17188,116845
,1,17189,116850
,1,17190,116855
,1,17191,116860
,1,17192,116865
,1,17193,116870
,1,17194,116875
,1,17195,116880
,1,17196,116885
,1,17197,116890
,1,17198,116895
,1,17199,116900
,1,17200,116905
,1,17201,116910
,1,17202,116915
,1,17203,116920
,1,17204,116925
,1,17205,116930
,1,17206,116935
,1,17207,116940
,1,17208,116945
,1,17209,116950
,1,17210,116955
,1,17211,116960
,1,17212,116965
,1,17213,116970
,1,17214,116975
,1,17215,116980
,1,17216,116985
,1,17217,116990
,1,17218,116995
,1,17219,117000
,1,17220,117005
,1,17221,117010
,1,17222,117015
,1,17223,117020
,1,17224,117025
,1,17225,117030
,1,17226,117035
,1,17227,117040
,1,17228,117045
,1,17229,117050
,1,17230,117055
,1,17231,117060
,1,17232,117065
,1,17233,117070
,1,17234,117075
,1,17235,117080
,1,17236,117085
,1,17237,117090
,1,17238,117095
,1,17239,117100
,1,17240,117105
,1,17241,117110
,1,17242,117115
,1,17243,117120
,1,17244,117125
,1,17245,117130
,1,17246,117135
,1,17247,117140
,1,17248,117145
,1,17249,117150
,1,17250,117155
,1,17251,117160
,1,17252,117165
,1,17253,117170
,1,17254,117175
,1,17255,117180
,1,17256,117185
,1,17257,117190
,1,17258,117195
,1,17259,117200
,1,17260,117205
,1,17261,117210
,1,17262,117215
,1,17263,117220
,1,17264,117225
,1,17265,117230
,1,17266,117235
,1,17267,117240
,1,17268,117245
,1,17269,117250
,1,17270,117255
,1,17271,117260
,1,17272,117265
,1,17273,117270
,1,17274,117275
,1,17275,117280
,1,17276,117285
,1,17277,117290
,1,17278,117295
,1,17279,117300
,1,17280,117305
,1,17281,117310
,1,17282,117315
,1,17283,117320
,1,17284,117325
,1,17285,117330
,1,17286,117335
,1,17287,117340
,1,17288,117345
,1,17289,117350
,1,17290,117355
,1,17291,117360
,1,17292,117365
,1,17293,117370
,1,17294,117375
,1,17295,117380
,1,17296,117385
,1,17297,117390
,1,17298,117395
,1,17299,117400
,1,17300,117405
,1,17301,117410
,1,17302,117415
,1,17303,117420
,1,17304,117425
,1,17305,117430
,1,17306,117435
,1,17307,117440
,1,17308,117445
,1,17309,117450
,1,17310,117455
,1,17311,117460
,1,17312,117465
,1,17313,117470
,1,17314,117475
,1,17315,117480
,1,17316,117485
,1,17317,117490
,1,17318,117495
,1,17319,117500
,1,17320,117505
,1,17321,117510
,1,17322,117515
,1,17323,117520
,1,17324,117525
,1,17325,117530
,1,17326,117535
,1,17327,117540
,1,17328,117545
,1,17329,117550
,1,17330,117555
,1,17331,117560
,1,17332,117565
,1,17333,117570
,1,17334,117575
,1,17335,117580
,1,17336,117585
,1,17337,117590
,1,17338,117595
,1,17339,117600
,1,17340,117605
,1,17341,117610
,1,17342,117615
,1,17343,117620
,1,17344,117625
,1,17345,117630
,1,17346,117635
,1,17347,117640
,1,17348,117645
,1,17349,117650
,1,17350,117655
,1,17351,117660
,1,17352,117665
,1,17353,117670
,1,17354,117675
,1,17355,117680
,1,17356,117685
,1,17357,117690
,1,17358,117695
,1,17359,117700
,1,17360,117705
,1,17361,117710
,1,17362,117715
,1,17363,117720
,1,17364,117725
,1,17365,117730
,1,17366,117735
,1,17367,117740
,1,17368,117745
,1,17369,117750
,1,17370,117755
,1,17371,117760
,1,17372,117765
,1,17373,117770
,1,17374,117775
,1,17375,117780
,1,17376,117785
,1,17377,117790
,1,17378,117795
,1,17379,117800
,1,17380,117805
,1,17381,117810
,1,17382,117815
,1,17383,117820
,1,17384,117825
,1,17385,117830
,1,17386,117835
,1,17387,117840
,1,17388,117845
,1,17389,117850
,1,17390,117855
,1,17391,117860
,1,17392,117865
,1,17393,117870
,1,17394,117875
,1,17395,117880
,1,17396,117885
,1,17397,117890
,1,17398,117895
,1,17399,117900
,1,17400,117905
,1,17401,117910
,1,17402,117915
,1,17403,117920
,1,17404,117925
,1,17405,117930
,1,17406,117935
,1,17407,117940
,1,17408,117945
,1,17409,117950
,1,17410,117955
,1,17411,117960
,1,17412,117965
,1,17413,117970
,1,17414,117975
,1,17415,117980
,1,17416,117985
,1,17417,117990
,1,17418,117995
,1,17419,118000
,1,17420,118005
,1,17421,118010
,1,17422,118015
,1,17423,118020
,1,17424,118025
,1,17425,118030
,1,17426,118035
,1,17427,118040
,1,17428,118045
,1,17429,118050
,1,17430,118055
,1,17431,118060
,1,17432,118065
,1,17433,118070
,1,17434,118075
,1,17435,118080
,1,17436,118085
,1,17437,118090
,1,17438,118095
,1,17439,118100
,1,17440,118105
,1,17441,118110
,1,17442,118115
,1,17443,118120
,1,17444,118125
,1,17445,118130
,1,17446,118135
,1,17447,118140
,1,17448,118145
,1,17449,118150
,1,17450,118155
,1,17451,118160
,1,17452,118165
,1,17453,118170
,1,17454,118175
,1,17455,118180
,1,17456,118185
,1,17457,118190
,1,17458,118195
,1,17459,118200
,1,17460,118205
,1,17461,118210
,1,17462,118215
,1,17463,118220
,1,17464,118225
,1,17465,118230
,1,17466,118235
,1,17467,118240
,1,17468,118245
,1,17469,118250
,1,17470,118255
,1,17471,118260
,1,17472,118265
,1,17473,118270
,1,17474,118275
,1,17475,118280
,1,17476,118285
,1,17477,118290
,1,17478,118295
,1,17479,118300
,1,17480,118305
,1,17481,118310
,1,17482,118315
,1,17483,118320
,1,17484,118325
,1,17485,118330
,1,17486,118335
,1,17487,118340
,1,17488,118345
,1,17489,118350
,1,17490,118355
,1,17491,118360
,1,17492,118365
,1,17493,118370
,1,17494,118375
,1,17495,118380
,1,17496,118385
,1,17497,118390
,1,17498,118395
,1,17499,118400
,1,17500,118405
,1,17501,118410
,1,17502,118415
,1,17503,118420
,1,17504,118425
,1,17505,118430
,1,17506,118435
,1,17507,118440
,1,17508,118445
,1,17509,118450
,1,17510,118455
,1,17511,118460
,1,17512,118465
,1,17513,118470
,1,17514,118475
,1,17515,118480
,1,17516,118485
,1,17517,118490
,1,17518,118495
,1,17519,118500
,1,17520,118505
,1,17521,118510
,1,17522,118515
,1,17523,118520
,1,17524,118525
,1,17525,118530
,1,17526,118535
,1,17527,118540
,1,17528,118545
,1,17529,118550
,1,17530,118555
,1,17531,118560
,1,17532,118565
,1,17533,118570
,1,17534,118575
,1,17535,118580
,1,17536,118585
,1,17537,118590
,1,17538,118595
,1,17539,118600
,1,17540,118605
,1,17541,118610
,1,17542,118615
,1,17543,118620
,1,17544,118625
,1,17545,118630
,1,17546,118635
,1,17547,118640
,1,17548,118645
,1,17549,118650
,1,17550,118655
,1,17551,118660
,1,17552,118665
,1,17553,118670
,1,17554,118675
,1,17555,118680
,1,17556,118685
,1,17557,118690
,1,17558,118695
,1,17559,118700
,1,17560,118705
,1,17561,118710
,1,17562,118715
,1,17563,118720
,1,17564,118725
,1,17565,118730
,1,17566,118735
,1,17567,118740
,1,17568,118745
,1,17569,118750
,1,17570,118755
,1,17571,118760
,1,17572,118765
,1,17573,118770
,1,17574,118775
,1,17575,118780
,1,17576,118785
,1,17577,118790
,1,17578,118795
,1,17579,118800
,1,17580,118805
,1,17581,118810
,1,17582,118815
,1,17583,118820
,1,17584,118825
,1,17585,118830
,1,17586,118835
,1,17587,118840
,1,17588,118845
,1,17589,118850
,1,17590,118855
,1,17591,118860
,1,17592,118865
,1,17593,118870
,1,17594,118875
,1,17595,118880
,1,17596,118885
,1,17597,118890
,1,17598,118895
,1,17599,118900
,1,17600,118905
,1,17601,118910
,1,17602,118915
,1,17603,118920
,1,17604,118925
,1,17605,118930
,1,17606,118935
,1,17607,118940
,1,17608,118945
,1,17609,118950
,1,17610,118955
,1,17611,118960
,1,17612,118965
,1,17613,118970
,1,17614,118975
,1,17615,118980
,1,17616,118985
,1,17617,118990
,1,17618,118995
,1,17619,119000
,1,17620,119005
,1,17621,119010
,1,17622,119015
,1,17623,119020
,1,17624,119025
,1,17625,119030
,1,17626,119035
,1,17627,119040
,1,17628,119045
,1,17629,119050
,1,17630,119055
,1,17631,119060
,1,17632,119065
,1,17633,119070
,1,17634,119075
,1,17635,119080
,1,17636,119085
,1,17637,119090
,1,17638,119095
,1,17639,119100
,1,17640,119105
,1,17641,119110
,1,17642,119115
,1,17643,119120
,1,17644,119125
,1,17645,119130
,1,17646,119135
,1,17647,119140
,1,17648,119145
,1,17649,119150
,1,17650,119155
,1,17651,119160
,1,17652,119165
,1,17653,119170
,1,17654,119175
,1,17655,119180
,1,17656,119185
,1,17657,119190
,1,17658,119195
,1,17659,119200
,1,17660,119205
,1,17661,119210
,1,17662,119215
,1,17663,119220
,1,17664,119225
,1,17665,119230
,1,17666,119235
,1,17667,119240
,1,17668,119245
,1,17669,119250
,1,17670,119255
,1,17671,119260
,1,17672,119265
,1,17673,119270
,1,17674,119275
,1,17675,119280
,1,17676,119285
,1,17677,119290
,1,17678,119295
,1,17679,119300
,1,17680,119305
,1,17681,119310
,1,17682,119315
,1,17683,119320
,1,17684,119325
,1,17685,119330
,1,17686,119335
,1,17687,119340
,1,17688,119345
,1,17689,119350
,1,17690,119355
,1,17691,119360
,1,17692,119365
,1,17693,119370
,1,17694,119375
,1,17695,119380
,1,17696,119385
,1,17697,119390
,1,17698,119395
,1,17699,119400
,1,17700,119405
,1,17701,119410
,1,17702,119415
,1,17703,119420
,1,17704,119425
,1,17705,119430
,1,17706,119435
,1,17707,119440
,1,17708,119445
,1,17709,119450
,1,17710,119455
,1,17711,119460
,1,17712,119465
,1,17713,119470
,1,17714,119475
,1,17715,119480
,1,17716,119485
,1,17717,119490
,1,17718,119495
,1,17719,119500
,1,17720,119505
,1,17721,119510
,1,17722,119515
,1,17723,119520
,1,17724,119525
,1,17725,119530
,1,17726,119535
,1,17727,119540
,1,17728,119545
,1,17729,119550
,1,17730,119555
,1,17731,119560
,1,17732,119565
,1,17733,119570
,1,17734,119575
,1,17735,119580
,1,17736,119585
,1,17737,119590
,1,17738,119595
,1,17739,119600
,1,17740,119605
,1,17741,119610
,1,17742,119615
,1,17743,119620
,1,17744,119625
,1,17745,119630
,1,17746,119635
,1,17747,119640
,1,17748,119645
,1,17749,119650
,1,17750,119655
,1,17751,119660
,1,17752,119665
,1,17753,119670
,1,17754,119675
,1,17755,119680
,1,17756,119685
,1,17757,119690
,1,17758,119695
,1,17759,119700
,1,17760,119705
,1,17761,119710
,1,17762,119715
,1,17763,119720
,1,17764,119725
,1,17765,119730
,1,17766,119735
,1,17767,119740
,1,17768,119745
,1,17769,119750
,1,17770,119755
,1,17771,119760
,1,17772,119765
,1,17773,119770
,1,17774,119775
,1,17775,119780
,1,17776,119785
,1,17777,119790
,1,17778,119795
,1,17779,119800
,1,17780,119805
,1,17781,119810
,1,17782,119815
,1,17783,119820
,1,17784,119825
,1,17785,119830
,1,17786,119835
,1,17787,119840
,1,17788,119845
,1,17789,119850
,1,17790,119855
,1,17791,119860
,1,17792,119865
,1,17793,119870
,1,17794,119875
,1,17795,119880
,1,17796,119885
,1,17797,119890
,1,17798,119895
,1,17799,119900
,1,17800,119905
,1,17801,119910
,1,17802,119915
,1,17803,119920
,1,17804,119925
,1,17805,119930
,1,17806,119935
,1,17807,119940
,1,17808,119945
,1,17809,119950
,1,17810,119955
,1,17811,119960
,1,17812,119965
,1,17813,119970
,1,17814,119975
,1,17815,119980
,1,17816,119985
,1,17817,119990
,1,17818,119995
,1,17819,120000
,1,17820,120005
,1,17821,120010
,1,17822,120015
,1,17823,120020
,1,17824,120025
,1,17825,120030
,1,17826,120035
,1,17827,120040
,1,17828,120045
,1,17829,120050
,1,17830,120055
,1,17831,120060
,1,17832,120065
,1,17833,120070
,1,17834,120075
,1,17835,120080
,1,17836,120085
,1,17837,120090
,1,17838,120095
,1,17839,120100
,1,17840,120105
,1,17841,120110
,1,17842,120115
,1,17843,120120
,1,17844,120125
,1,17845,120130
,1,17846,120135
,1,17847,120140
,1,17848,120145
,1,17849,120150
,1,17850,120155
,1,17851,120160
,1,17852,120165
,1,17853,120170
,1,17854,120175
,1,17855,120180
,1,17856,120185
,1,17857,120190
,1,17858,120195
,1,17859,120200
,1,17860,120205
,1,17861,120210
,1,17862,120215
,1,17863,120220
,1,17864,120225
,1,17865,120230
,1,17866,120235
,1,17867,120240
,1,17868,120245
,1,17869,120250
,1,17870,120255
,1,17871,120260
,1,17872,120265
,1,17873,120270
,1,17874,120275
,1,17875,120280
,1,17876,120285
,1,17877,120290
,1,17878,120295
,1,17879,120300
,1,17880,120305
,1,17881,120310
,1,17882,120315
,1,17883,120320
,1,17884,120325
,1,17885,120330
,1,17886,120335
,1,17887,120340
,1,17888,120345
,1,17889,120350
,1,17890,120355
,1,17891,120360
,1,17892,120365
,1,17893,120370
,1,17894,120375
,1,17895,120380
,1,17896,120385
,1,17897,120390
,1,17898,120395
,1,17899,120400
,1,17900,120405
,1,17901,120410
,1,17902,120415
,1,17903,120420
,1,17904,120425
,1,17905,120430
,1,17906,120435
,1,17907,120440
,1,17908,120445
,1,17909,120450
,1,17910,120455
,1,17911,120460
,1,17912,120465
,1,17913,120470
,1,17914,120475
,1,17915,120480
,1,17916,120485
,1,17917,120490
,1,17918,120495
,1,17919,120500
,1,17920,120505
,1,17921,120510
,1,17922,120515
,1,17923,120520
,1,17924,120525
,1,17925,120530
,1,17926,120535
,1,17927,120540
,1,17928,120545
,1,17929,120550
,1,17930,120555
,1,17931,120560
,1,17932,120565
,1,17933,120570
,1,17934,120575
,1,17935,120580
,1,17936,120585
,1,17937,120590
,1,17938,120595
,1,17939,120600
,1,17940,120605
,1,17941,120610
,1,17942,120615
,1,17943,120620
,1,17944,120625
,1,17945,120630
,1,17946,120635
,1,17947,120640
,1,17948,120645
,1,17949,120650
,1,17950,120655
,1,17951,120660
,1,17952,120665
,1,17953,120670
,1,17954,120675
,1,17955,120680
,1,17956,120685
,1,17957,120690
,1,17958,120695
,1,17959,120700
,1,17960,120705
,1,17961,120710
,1,17962,120715
,1,17963,120720
,1,17964,120725
,1,17965,120730
,1,17966,120735
,1,17967,120740
,1,17968,120745
,1,17969,120750
,1,17970,120755
,1,17971,120760
,1,17972,120765
,1,17973,120770
,1,17974,120775
,1,17975,120780
,1,17976,120785
,1,17977,120790
,1,17978,120795
,1,17979,120800
,1,17980,120805
,1,17981,120810
,1,17982,120815
,1,17983,120820
,1,17984,120825
,1,17985,120830
,1,17986,120835
,1,17987,120840
,1,17988,120845
,1,17989,120850
,1,17990,120855
,1,17991,120860
,1,17992,120865
,1,17993,120870
,1,17994,120875
,1,17995,120880
,1,17996,120885
,1,17997,120890
,1,17998,120895
,1,17999,120900
,1,18000,120905
,1,18001,120910
,1,18002,120915
,1,18003,120920
,1,18004,120925
,1,18005,120930
,1,18006,120935
,1,18007,120940
,1,18008,120945
,1,18009,120950
,1,18010,120955
,1,18011,120960
,1,18012,120965
,1,18013,120970
,1,18014,120975
,1,18015,120980
,1,18016,120985
,1,18017,120990
,1,18018,120995
,1,18019,121000
,1,18020,121005
,1,18021,121010
,1,18022,121015
,1,18023,121020
,1,18024,121025
,1,18025,121030
,1,18026,121035
,1,18027,121040
,1,18028,121045
,1,18029,121050
,1,18030,121055
,1,18031,121060
,1,18032,121065
,1,18033,121070
,1,18034,121075
,1,18035,121080
,1,18036,121085
,1,18037,121090
,1,18038,121095
,1,18039,121100
,1,18040,121105
,1,18041,121110
,1,18042,121115
,1,18043,121120
,1,18044,121125
,1,18045,121130
,1,18046,121135
,1,18047,121140
,1,18048,121145
,1,18049,121150
,1,18050,121155
,1,18051,121160
,1,18052,121165
,1,18053,121170
,1,18054,121175
,1,18055,121180
,1,18056,121185
,1,18057,121190
,1,18058,121195
,1,18059,121200
,1,18060,121205
,1,18061,121210
,1,18062,121215
,1,18063,121220
,1,18064,121225
,1,18065,121230
,1,18066,121235
,1,18067,121240
,1,18068,121245
,1,18069,121250
,1,18070,121255
,1,18071,121260
,1,18072,121265
,1,18073,121270
,1,18074,121275
,1,18075,121280
,1,18076,121285
,1,18077,121290
,1,18078,121295
,1,18079,121300
,1,18080,121305
,1,18081,121310
,1,18082,121315
,1,18083,121320
,1,18084,121325
,1,18085,121330
,1,18086,121335
,1,18087,121340
,1,18088,121345
,1,18089,121350
,1,18090,121355
,1,18091,121360
,1,18092,121365
,1,18093,121370
,1,18094,121375
,1,18095,121380
,1,18096,121385
,1,18097,121390
,1,18098,121395
,1,18099,121400
,1,18100,121405
,1,18101,121410
,1,18102,121415
,1,18103,121420
,1,18104,121425
,1,18105,121430
,1,18106,121435
,1,18107,121440
,1,18108,121445
,1,18109,121450
,1,18110,121455
,1,18111,121460
,1,18112,121465
,1,18113,121470
,1,18114,121475
,1,18115,121480
,1,18116,121485
,1,18117,121490
,1,18118,121495
,1,18119,121500
,1,18120,121505
,1,18121,121510
,1,18122,121515
,1,18123,121520
,1,18124,121525
,1,18125,121530
,1,18126,121535
,1,18127,121540
,1,18128,121545
,1,18129,121550
,1,18130,121555
,1,18131,121560
,1,18132,121565
,1,18133,121570
,1,18134,121575
,1,18135,121580
,1,18136,121585
,1,18137,121590
,1,18138,121595
,1,18139,121600
,1,18140,121605
,1,18141,121610
,1,18142,121615
,1,18143,121620
,1,18144,121625
,1,18145,121630
,1,18146,121635
,1,18147,121640
,1,18148,121645
,1,18149,121650
,1,18150,121655
,1,18151,121660
,1,18152,121665
,1,18153,121670
,1,18154,121675
,1,18155,121680
,1,18156,121685
,1,18157,121690
,1,18158,121695
,1,18159,121700
,1,18160,121705
,1,18161,121710
,1,18162,121715
,1,18163,121720
,1,18164,121725
,1,18165,121730
,1,18166,121735
,1,18167,121740
,1,18168,121745
,1,18169,121750
,1,18170,121755
,1,18171,121760
,1,18172,121765
,1,18173,121770
,1,18174,121775
,1,18175,121780
,1,18176,121785
,1,18177,121790
,1,18178,121795
,1,18179,121800
,1,18180,121805
,1,18181,121810
,1,18182,121815
,1,18183,121820
,1,18184,121825
,1,18185,121830
,1,18186,121835
,1,18187,121840
,1,18188,121845
,1,18189,121850
,1,18190,121855
,1,18191,121860
,1,18192,121865
,1,18193,121870
,1,18194,121875
,1,18195,121880
,1,18196,121885
,1,18197,121890
,1,18198,121895
,1,18199,121900
,1,18200,121905
,1,18201,121910
,1,18202,121915
,1,18203,121920
,1,18204,121925
,1,18205,121930
,1,18206,121935
,1,18207,121940
,1,18208,121945
,1,18209,121950
,1,18210,121955
,1,18211,121960
,1,18212,121965
,1,18213,121970
,1,18214,121975
,1,18215,121980
,1,18216,121985
,1,18217,121990
,1,18218,121995
,1,18219,122000
,1,18220,122005
,1,18221,122010
,1,18222,122015
,1,18223,122020
,1,18224,122025
,1,18225,122030
,1,18226,122035
,1,18227,122040
,1,18228,122045
,1,18229,122050
,1,18230,122055
,1,18231,122060
,1,18232,122065
,1,18233,122070
,1,18234,122075
,1,18235,122080
,1,18236,122085
,1,18237,122090
,1,18238,122095
,1,18239,122100
,1,18240,122105
,1,18241,122110
,1,18242,122115
,1,18243,122120
,1,18244,122125
,1,18245,122130
,1,18246,122135
,1,18247,122140
,1,18248,122145
,1,18249,122150
,1,18250,122155
,1,18251,122160
,1,18252,122165
,1,18253,122170
,1,18254,122175
,1,18255,122180
,1,18256,122185
,1,18257,122190
,1,18258,122195
,1,18259,122200
,1,18260,122205
,1,18261,122210
,1,18262,122215
,1,18263,122220
,1,18264,122225
,1,18265,122230
,1,18266,122235
,1,18267,122240
,1,18268,122245
,1,18269,122250
,1,18270,122255
,1,18271,122260
,1,18272,122265
,1,18273,122270
,1,18274,122275
,1,18275,122280
,1,18276,122285
,1,18277,122290
,1,18278,122295
,1,18279,122300
,1,18280,122305
,1,18281,122310
,1,18282,122315
,1,18283,122320
,1,18284,122325
,1,18285,122330
,1,18286,122335
,1,18287,122340
,1,18288,122345
,1,18289,122350
,1,18290,122355
,1,18291,122360
,1,18292,122365
,1,18293,122370
,1,18294,122375
,1,18295,122380
,1,18296,122385
,1,18297,122390
,1,18298,122395
,1,18299,122400
,1,18300,122405
,1,18301,122410
,1,18302,122415
,1,18303,122420
,1,18304,122425
,1,18305,122430
,1,18306,122435
,1,18307,122440
,1,18308,122445
,1,18309,122450
,1,18310,122455
,1,18311,122460
,1,18312,122465
,1,18313,122470
,1,18314,122475
,1,18315,122480
,1,18316,122485
,1,18317,122490
,1,18318,122495
,1,18319,122500
,1,18320,122505
,1,18321,122510
,1,18322,122515
,1,18323,122520
,1,18324,122525
,1,18325,122530
,1,18326,122535
,1,18327,122540
,1,18328,122545
,1,18329,122550
,1,18330,122555
,1,18331,122560
,1,18332,122565
,1,18333,122570
,1,18334,122575
,1,18335,122580
,1,18336,122585
,1,18337,122590
,1,18338,122595
,1,18339,122600
,1,18340,122605
,1,18341,122610
,1,18342,122615
,1,18343,122620
,1,18344,122625
,1,18345,122630
,1,18346,122635
,1,18347,122640
,1,18348,122645
,1,18349,122650
,1,18350,122655
,1,18351,122660
,1,18352,122665
,1,18353,122670
,1,18354,122675
,1,18355,122680
,1,18356,122685
,1,18357,122690
,1,18358,122695
,1,18359,122700
,1,18360,122705
,1,18361,122710
,1,18362,122715
,1,18363,122720
,1,18364,122725
,1,18365,122730
,1,18366,122735
,1,18367,122740
,1,18368,122745
,1,18369,122750
,1,18370,122755
,1,18371,122760
,1,18372,122765
,1,18373,122770
,1,18374,122775
,1,18375,122780
,1,18376,122785
,1,18377,122790
,1,18378,122795
,1,18379,122800
,1,18380,122805
,1,18381,122810
,1,18382,122815
,1,18383,122820
,1,18384,122825
,1,18385,122830
,1,18386,122835
,1,18387,122840
,1,18388,122845
,1,18389,122850
,1,18390,122855
,1,18391,122860
,1,18392,122865
,1,18393,122870
,1,18394,122875
,1,18395,122880
,1,18396,122885
,1,18397,122890
,1,18398,122895
,1,18399,122900
,1,18400,122905
,1,18401,122910
,1,18402,122915
,1,18403,122920
,1,18404,122925
,1,18405,122930
,1,18406,122935
,1,18407,122940
,1,18408,122945
,1,18409,122950
,1,18410,122955
,1,18411,122960
,1,18412,122965
,1,18413,122970
,1,18414,122975
,1,18415,122980
,1,18416,122985
,1,18417,122990
,1,18418,122995
,1,18419,123000
,1,18420,123005
,1,18421,123010
,1,18422,123015
,1,18423,123020
,1,18424,123025
,1,18425,123030
,1,18426,123035
,1,18427,123040
,1,18428,123045
,1,18429,123050
,1,18430,123055
,1,18431,123060
,1,18432,123065
,1,18433,123070
,1,18434,123075
,1,18435,123080
,1,18436,123085
,1,18437,123090
,1,18438,123095
,1,18439,123100
,1,18440,123105
,1,18441,123110
,1,18442,123115
,1,18443,123120
,1,18444,123125
,1,18445,123130
,1,18446,123135
,1,18447,123140
,1,18448,123145
,1,18449,123150
,1,18450,123155
,1,18451,123160
,1,18452,123165
,1,18453,123170
,1,18454,123175
,1,18455,123180
,1,18456,123185
,1,18457,123190
,1,18458,123195
,1,18459,123200
,1,18460,123205
,1,18461,123210
,1,18462,123215
,1,18463,123220
,1,18464,123225
,1,18465,123230
,1,18466,123235
,1,18467,123240
,1,18468,123245
,1,18469,123250
,1,18470,123255
,1,18471,123260
,1,18472,123265
,1,18473,123270
,1,18474,123275
,1,18475,123280
,1,18476,123285
,1,18477,123290
,1,18478,123295
,1,18479,123300
,1,18480,123305
,1,18481,123310
,1,18482,123315
,1,18483,123320
,1,18484,123325
,1,18485,123330
,1,18486,123335
,1,18487,123340
,1,18488,123345
,1,18489,123350
,1,18490,123355
,1,18491,123360
,1,18492,123365
,1,18493,123370
,1,18494,123375
,1,18495,123380
,1,18496,123385
,1,18497,123390
,1,18498,123395
,1,18499,123400
,1,18500,123405
,1,18501,123410
,1,18502,123415
,1,18503,123420
,1,18504,123425
,1,18505,123430
,1,18506,123435
,1,18507,123440
,1,18508,123445
,1,18509,123450
,1,18510,123455
,1,18511,123460
,1,18512,123465
,1,18513,123470
,1,18514,123475
,1,18515,123480
,1,18516,123485
,1,18517,123490
,1,18518,123495
,1,18519,123500
,1,18520,123505
,1,18521,123510
,1,18522,123515
,1,18523,123520
,1,18524,123525
,1,18525,123530
,1,18526,123535
,1,18527,123540
,1,18528,123545
,1,18529,123550
,1,18530,123555
,1,18531,123560
,1,18532,123565
,1,18533,123570
,1,18534,123575
,1,18535,123580
,1,18536,123585
,1,18537,123590
,1,18538,123595
,1,18539,123600
,1,18540,123605
,1,18541,123610
,1,18542,123615
,1,18543,123620
,1,18544,123625
,1,18545,123630
,1,18546,123635
,1,18547,123640
,1,18548,123645
,1,18549,123650
,1,18550,123655
,1,18551,123660
,1,18552,123665
,1,18553,123670
,1,18554,123675
,1,18555,123680
,1,18556,123685
,1,18557,123690
,1,18558,123695
,1,18559,123700
,1,18560,123705
,1,18561,123710
,1,18562,123715
,1,18563,123720
,1,18564,123725
,1,18565,123730
,1,18566,123735
,1,18567,123740
,1,18568,123745
,1,18569,123750
,1,18570,123755
,1,18571,123760
,1,18572,123765
,1,18573,123770
,1,18574,123775
,1,18575,123780
,1,18576,123785
,1,18577,123790
,1,18578,123795
,1,18579,123800
,1,18580,123805
,1,18581,123810
,1,18582,123815
,1,18583,123820
,1,18584,123825
,1,18585,123830
,1,18586,123835
,1,18587,123840
,1,18588,123845
,1,18589,123850
,1,18590,123855
,1,18591,123860
,1,18592,123865
,1,18593,123870
,1,18594,123875
,1,18595,123880
,1,18596,123885
,1,18597,123890
,1,18598,123895
,1,18599,123900
,1,18600,123905
,1,18601,123910
,1,18602,123915
,1,18603,123920
,1,18604,123925
,1,18605,123930
,1,18606,123935
,1,18607,123940
,1,18608,123945
,1,18609,123950
,1,18610,123955
,1,18611,123960
,1,18612,123965
,1,18613,123970
,1,18614,123975
,1,18615,123980
,1,18616,123985
,1,18617,123990
,1,18618,123995
,1,18619,124000
,1,18620,124005
,1,18621,124010
,1,18622,124015
,1,18623,124020
,1,18624,124025
,1,18625,124030
,1,18626,124035
,1,18627,124040
,1,18628,124045
,1,18629,124050
,1,18630,124055
,1,18631,124060
,1,18632,124065
,1,18633,124070
,1,18634,124075
,1,18635,124080
,1,18636,124085
,1,18637,124090
,1,18638,124095
,1,18639,124100
,1,18640,124105
,1,18641,124110
,1,18642,124115
,1,18643,124120
,1,18644,124125
,1,18645,124130
,1,18646,124135
,1,18647,124140
,1,18648,124145
,1,18649,124150
,1,18650,124155
,1,18651,124160
,1,18652,124165
,1,18653,124170
,1,18654,124175
,1,18655,124180
,1,18656,124185
,1,18657,124190
,1,18658,124195
,1,18659,124200
,1,18660,124205
,1,18661,124210
,1,18662,124215
,1,18663,124220
,1,18664,124225
,1,18665,124230
,1,18666,124235
,1,18667,124240
,1,18668,124245
,1,18669,124250
,1,18670,124255
,1,18671,124260
,1,18672,124265
,1,18673,124270
,1,18674,124275
,1,18675,124280
,1,18676,124285
,1,18677,124290
,1,18678,124295
,1,18679,124300
,1,18680,124305
,1,18681,124310
,1,18682,124315
,1,18683,124320
,1,18684,124325
,1,18685,124330
,1,18686,124335
,1,18687,124340
,1,18688,124345
,1,18689,124350
,1,18690,124355
,1,18691,124360
,1,18692,124365
,1,18693,124370
,1,18694,124375
,1,18695,124380
,1,18696,124385
,1,18697,124390
,1,18698,124395
,1,18699,124400
,1,18700,124405
,1,18701,124410
,1,18702,124415
,1,18703,124420
,1,18704,124425
,1,18705,124430
,1,18706,124435
,1,18707,124440
,1,18708,124445
,1,18709,124450
,1,18710,124455
,1,18711,124460
,1,18712,124465
,1,18713,124470
,1,18714,124475
,1,18715,124480
,1,18716,124485
,1,18717,124490
,1,18718,124495
,1,18719,124500
,1,18720,124505
,1,18721,124510
,1,18722,124515
,1,18723,124520
,1,18724,124525
,1,18725,124530
,1,18726,124535
,1,18727,124540
,1,18728,124545
,1,18729,124550
,1,18730,124555
,1,18731,124560
,1,18732,124565
,1,18733,124570
,1,18734,124575
,1,18735,124580
,1,18736,124585
,1,18737,124590
,1,18738,124595
,1,18739,124600
,1,18740,124605
,1,18741,124610
,1,18742,124615
,1,18743,124620
,1,18744,124625
,1,18745,124630
,1,18746,124635
,1,18747,124640
,1,18748,124645
,1,18749,124650
,1,18750,124655
,1,18751,124660
,1,18752,124665
,1,18753,124670
,1,18754,124675
,1,18755,124680
,1,18756,124685
,1,18757,124690
,1,18758,124695
,1,18759,124700
,1,18760,124705
,1,18761,124710
,1,18762,124715
,1,18763,124720
,1,18764,124725
,1,18765,124730
,1,18766,124735
,1,18767,124740
,1,18768,124745
,1,18769,124750
,1,18770,124755
,1,18771,124760
,1,18772,124765
,1,18773,124770
,1,18774,124775
,1,18775,124780
,1,18776,124785
,1,18777,124790
,1,18778,124795
,1,18779,124800
,1,18780,124805
,1,18781,124810
,1,18782,124815
,1,18783,124820
,1,18784,124825
,1,18785,124830
,1,18786,124835
,1,18787,124840
,1,18788,124845
,1,18789,124850
,1,18790,124855
,1,18791,124860
,1,18792,124865
,1,18793,124870
,1,18794,124875
,1,18795,124880
,1,18796,124885
,1,18797,124890
,1,18798,124895
,1,18799,124900
,1,18800,124905
,1,18801,124910
,1,18802,124915
,1,18803,124920
,1,18804,124925
,1,18805,124930
,1,18806,124935
,1,18807,124940
,1,18808,124945
,1,18809,124950
,1,18810,124955
,1,18811,124960
,1,18812,124965
,1,18813,124970
,1,18814,124975
,1,18815,124980
,1,18816,124985
,1,18817,124990
,1,18818,124995
,1,18819,125000
,1,18820,125005
,1,18821,125010
,1,18822,125015
,1,18823,125020
,1,18824,125025
,1,18825,125030
,1,18826,125035
,1,18827,125040
,1,18828,125045
,1,18829,125050
,1,18830,125055
,1,18831,125060
,1,18832,125065
,1,18833,125070
,1,18834,125075
,1,18835,125080
,1,18836,125085
,1,18837,125090
,1,18838,125095
,1,18839,125100
,1,18840,125105
,1,18841,125110
,1,18842,125115
,1,18843,125120
,1,18844,125125
,1,18845,125130
,1,18846,125135
,1,18847,125140
,1,18848,125145
,1,18849,125150
,1,18850,125155
,1,18851,125160
,1,18852,125165
,1,18853,125170
,1,18854,125175
,1,18855,125180
,1,18856,125185
,1,18857,125190
,1,18858,125195
,1,18859,125200
,1,18860,125205
,1,18861,125210
,1,18862,125215
,1,18863,125220
,1,18864,125225
,1,18865,125230
,1,18866,125235
,1,18867,125240
,1,18868,125245
,1,18869,125250
,1,18870,125255
,1,18871,125260
,1,18872,125265
,1,18873,125270
,1,18874,125275
,1,18875,125280
,1,18876,125285
,1,18877,125290
,1,18878,125295
,1,18879,125300
,1,18880,125305
,1,18881,125310
,1,18882,125315
,1,18883,125320
,1,18884,125325
,1,18885,125330
,1,18886,125335
,1,18887,125340
,1,18888,125345
,1,18889,125350
,1,18890,125355
,1,18891,125360
,1,18892,125365
,1,18893,125370
,1,18894,125375
,1,18895,125380
,1,18896,125385
,1,18897,125390
,1,18898,125395
,1,18899,125400
,1,18900,125405
,1,18901,125410
,1,18902,125415
,1,18903,125420
,1,18904,125425
,1,18905,125430
,1,18906,125435
,1,18907,125440
,1,18908,125445
,1,18909,125450
,1,18910,125455
,1,18911,125460
,1,18912,125465
,1,18913,125470
,1,18914,125475
,1,18915,125480
,1,18916,125485
,1,18917,125490
,1,18918,125495
,1,18919,125500
,1,18920,125505
,1,18921,125510
,1,18922,125515
,1,18923,125520
,1,18924,125525
,1,18925,125530
,1,18926,125535
,1,18927,125540
,1,18928,125545
,1,18929,125550
,1,18930,125555
,1,18931,125560
,1,18932,125565
,1,18933,125570
,1,18934,125575
,1,18935,125580
,1,18936,125585
,1,18937,125590
,1,18938,125595
,1,18939,125600
,1,18940,125605
,1,18941,125610
,1,18942,125615
,1,18943,125620
,1,18944,125625
,1,18945,125630
,1,18946,125635
,1,18947,125640
,1,18948,125645
,1,18949,125650
,1,18950,125655
,1,18951,125660
,1,18952,125665
,1,18953,125670
,1,18954,125675
,1,18955,125680
,1,18956,125685
,1,18957,125690
,1,18958,125695
,1,18959,125700
,1,18960,125705
,1,18961,125710
,1,18962,125715
,1,18963,125720
,1,18964,125725
,1,18965,125730
,1,18966,125735
,1,18967,125740
,1,18968,125745
,1,18969,125750
,1,18970,125755
,1,18971,125760
,1,18972,125765
,1,18973,125770
,1,18974,125775
,1,18975,125780
,1,18976,125785
,1,18977,125790
,1,18978,125795
,1,18979,125800
,1,18980,125805
,1,18981,125810
,1,18982,125815
,1,18983,125820
,1,18984,125825
,1,18985,125830
,1,18986,125835
,1,18987,125840
,1,18988,125845
,1,18989,125850
,1,18990,125855
,1,18991,125860
,1,18992,125865
,1,18993,125870
,1,18994,125875
,1,18995,125880
,1,18996,125885
,1,18997,125890
,1,18998,125895
,1,18999,125900
,1,19000,125905
,1,19001,125910
,1,19002,125915
,1,19003,125920
,1,19004,125925
,1,19005,125930
,1,19006,125935
,1,19007,125940
,1,19008,125945
,1,19009,125950
,1,19010,125955
,1,19011,125960
,1,19012,125965
,1,19013,125970
,1,19014,125975
,1,19015,125980
,1,19016,125985
,1,19017,125990
,1,19018,125995
,1,19019,126000
,1,19020,126005
,1,19021,126010
,1,19022,126015
,1,19023,126020
,1,19024,126025
,1,19025,126030
,1,19026,126035
,1,19027,126040
,1,19028,126045
,1,19029,126050
,1,19030,126055
,1,19031,126060
,1,19032,126065
,1,19033,126070
,1,19034,126075
,1,19035,126080
,1,19036,126085
,1,19037,126090
,1,19038,126095
,1,19039,126100
,1,19040,126105
,1,19041,126110
,1,19042,126115
,1,19043,126120
,1,19044,126125
,1,19045,126130
,1,19046,126135
,1,19047,126140
,1,19048,126145
,1,19049,126150
,1,19050,126155
,1,19051,126160
,1,19052,126165
,1,19053,126170
,1,19054,126175
,1,19055,126180
,1,19056,126185
,1,19057,126190
,1,19058,126195
,1,19059,126200
,1,19060,126205
,1,19061,126210
,1,19062,126215
,1,19063,126220
,1,19064,126225
,1,19065,126230
,1,19066,126235
,1,19067,126240
,1,19068,126245
,1,19069,126250
,1,19070,126255
,1,19071,126260
,1,19072,126265
,1,19073,126270
,1,19074,126275
,1,19075,126280
,1,19076,126285
,1,19077,126290
,1,19078,126295
,1,19079,126300
,1,19080,126305
,1,19081,126310
,1,19082,126315
,1,19083,126320
,1,19084,126325
,1,19085,126330
,1,19086,126335
,1,19087,126340
,1,19088,126345
,1,19089,126350
,1,19090,126355
,1,19091,126360
,1,19092,126365
,1,19093,126370
,1,19094,126375
,1,19095,126380
,1,19096,126385
,1,19097,126390
,1,19098,126395
,1,19099,126400
,1,19100,126405
,1,19101,126410
,1,19102,126415
,1,19103,126420
,1,19104,126425
,1,19105,126430
,1,19106,126435
,1,19107,126440
,1,19108,126445
,1,19109,126450
,1,19110,126455
,1,19111,126460
,1,19112,126465
,1,19113,126470
,1,19114,126475
,1,19115,126480
,1,19116,126485
,1,19117,126490
,1,19118,126495
,1,19119,126500
,1,19120,126505
,1,19121,126510
,1,19122,126515
,1,19123,126520
,1,19124,126525
,1,19125,126530
,1,19126,126535
,1,19127,126540
,1,19128,126545
,1,19129,126550
,1,19130,126555
,1,19131,126560
,1,19132,126565
,1,19133,126570
,1,19134,126575
,1,19135,126580
,1,19136,126585
,1,19137,126590
,1,19138,126595
,1,19139,126600
,1,19140,126605
,1,19141,126610
,1,19142,126615
,1,19143,126620
,1,19144,126625
,1,19145,126630
,1,19146,126635
,1,19147,126640
,1,19148,126645
,1,19149,126650
,1,19150,126655
,1,19151,126660
,1,19152,126665
,1,19153,126670
,1,19154,126675
,1,19155,126680
,1,19156,126685
,1,19157,126690
,1,19158,126695
,1,19159,126700
,1,19160,126705
,1,19161,126710
,1,19162,126715
,1,19163,126720
,1,19164,126725
,1,19165,126730
,1,19166,126735
,1,19167,126740
,1,19168,126745
,1,19169,126750
,1,19170,126755
,1,19171,126760
,1,19172,126765
,1,19173,126770
,1,19174,126775
,1,19175,126780
,1,19176,126785
,1,19177,126790
,1,19178,126795
,1,19179,126800
,1,19180,126805
,1,19181,126810
,1,19182,126815
,1,19183,126820
,1,19184,126825
,1,19185,126830
,1,19186,126835
,1,19187,126840
,1,19188,126845
,1,19189,126850
,1,19190,126855
,1,19191,126860
,1,19192,126865
,1,19193,126870
,1,19194,126875
,1,19195,126880
,1,19196,126885
,1,19197,126890
,1,19198,126895
,1,19199,126900
,1,19200,126905
,1,19201,126910
,1,19202,126915
,1,19203,126920
,1,19204,126925
,1,19205,126930
,1,19206,126935
,1,19207,126940
,1,19208,126945
,1,19209,126950
,1,19210,126955
,1,19211,126960
,1,19212,126965
,1,19213,126970
,1,19214,126975
,1,19215,126980
,1,19216,126985
,1,19217,126990
,1,19218,126995
,1,19219,127000
,1,19220,127005
,1,19221,127010
,1,19222,127015
,1,19223,127020
,1,19224,127025
,1,19225,127030
,1,19226,127035
,1,19227,127040
,1,19228,127045
,1,19229,127050
,1,19230,127055
,1,19231,127060
,1,19232,127065
,1,19233,127070
,1,19234,127075
,1,19235,127080
,1,19236,127085
,1,19237,127090
,1,19238,127095
,1,19239,127100
,1,19240,127105
,1,19241,127110
,1,19242,127115
,1,19243,127120
,1,19244,127125
,1,19245,127130
,1,19246,127135
,1,19247,127140
,1,19248,127145
,1,19249,127150
,1,19250,127155
,1,19251,127160
,1,19252,127165
,1,19253,127170
,1,19254,127175
,1,19255,127180
,1,19256,127185
,1,19257,127190
,1,19258,127195
,1,19259,127200
,1,19260,127205
,1,19261,127210
,1,19262,127215
,1,19263,127220
,1,19264,127225
,1,19265,127230
,1,19266,127235
,1,19267,127240
,1,19268,127245
,1,19269,127250
,1,19270,127255
,1,19271,127260
,1,19272,127265
,1,19273,127270
,1,19274,127275
,1,19275,127280
,1,19276,127285
,1,19277,127290
,1,19278,127295
,1,19279,127300
,1,19280,127305
,1,19281,127310
,1,19282,127315
,1,19283,127320
,1,19284,127325
,1,19285,127330
,1,19286,127335
,1,19287,127340
,1,19288,127345
,1,19289,127350
,1,19290,127355
,1,19291,127360
,1,19292,127365
,1,19293,127370
,1,19294,127375
,1,19295,127380
,1,19296,127385
,1,19297,127390
,1,19298,127395
,1,19299,127400
,1,19300,127405
,1,19301,127410
,1,19302,127415
,1,19303,127420
,1,19304,127425
,1,19305,127430
,1,19306,127435
,1,19307,127440
,1,19308,127445
,1,19309,127450
,1,19310,127455
,1,19311,127460
,1,19312,127465
,1,19313,127470
,1,19314,127475
,1,19315,127480
,1,19316,127485
,1,19317,127490
,1,19318,127495
,1,19319,127500
,1,19320,127505
,1,19321,127510
,1,19322,127515
,1,19323,127520
,1,19324,127525
,1,19325,127530
,1,19326,127535
,1,19327,127540
,1,19328,127545
,1,19329,127550
,1,19330,127555
,1,19331,127560
,1,19332,127565
,1,19333,127570
,1,19334,127575
,1,19335,127580
,1,19336,127585
,1,19337,127590
,1,19338,127595
,1,19339,127600
,1,19340,127605
,1,19341,127610
,1,19342,127615
,1,19343,127620
,1,19344,127625
,1,19345,127630
,1,19346,127635
,1,19347,127640
,1,19348,127645
,1,19349,127650
,1,19350,127655
,1,19351,127660
,1,19352,127665
,1,19353,127670
,1,19354,127675
,1,19355,127680
,1,19356,127685
,1,19357,127690
,1,19358,127695
,1,19359,127700
,1,19360,127705
,1,19361,127710
,1,19362,127715
,1,19363,127720
,1,19364,127725
,1,19365,127730
,1,19366,127735
,1,19367,127740
,1,19368,127745
,1,19369,127750
,1,19370,127755
,1,19371,127760
,1,19372,127765
,1,19373,127770
,1,19374,127775
,1,19375,127780
,1,19376,127785
,1,19377,127790
,1,19378,127795
,1,19379,127800
,1,19380,127805
,1,19381,127810
,1,19382,127815
,1,19383,127820
,1,19384,127825
,1,19385,127830
,1,19386,127835
,1,19387,127840
,1,19388,127845
,1,19389,127850
,1,19390,127855
,1,19391,127860
,1,19392,127865
,1,19393,127870
,1,19394,127875
,1,19395,127880
,1,19396,127885
,1,19397,127890
,1,19398,127895
,1,19399,127900
,1,19400,127905
,1,19401,127910
,1,19402,127915
,1,19403,127920
,1,19404,127925
,1,19405,127930
,1,19406,127935
,1,19407,127940
,1,19408,127945
,1,19409,127950
,1,19410,127955
,1,19411,127960
,1,19412,127965
,1,19413,127970
,1,19414,127975
,1,19415,127980
,1,19416,127985
,1,19417,127990
,1,19418,127995
,1,19419,128000
,1,19420,128005
,1,19421,128010
,1,19422,128015
,1,19423,128020
,1,19424,128025
,1,19425,128030
,1,19426,128035
,1,19427,128040
,1,19428,128045
,1,19429,128050
,1,19430,128055
,1,19431,128060
,1,19432,128065
,1,19433,128070
,1,19434,128075
,1,19435,128080
,1,19436,128085
,1,19437,128090
,1,19438,128095
,1,19439,128100
,1,19440,128105
,1,19441,128110
,1,19442,128115
,1,19443,128120
,1,19444,128125
,1,19445,128130
,1,19446,128135
,1,19447,128140
,1,19448,128145
,1,19449,128150
,1,19450,128155
,1,19451,128160
,1,19452,128165
,1,19453,128170
,1,19454,128175
,1,19455,128180
,1,19456,128185
,1,19457,128190
,1,19458,128195
,1,19459,128200
,1,19460,128205
,1,19461,128210
,1,19462,128215
,1,19463,128220
,1,19464,128225
,1,19465,128230
,1,19466,128235
,1,19467,128240
,1,19468,128245
,1,19469,128250
,1,19470,128255
,1,19471,128260
,1,19472,128265
,1,19473,128270
,1,19474,128275
,1,19475,128280
,1,19476,128285
,1,19477,128290
,1,19478,128295
,1,19479,128300
,1,19480,128305
,1,19481,128310
,1,19482,128315
,1,19483,128320
,1,19484,128325
,1,19485,128330
,1,19486,128335
,1,19487,128340
,1,19488,128345
,1,19489,128350
,1,19490,128355
,1,19491,128360
,1,19492,128365
,1,19493,128370
,1,19494,128375
,1,19495,128380
,1,19496,128385
,1,19497,128390
,1,19498,128395
,1,19499,128400
,1,19500,128405
,1,19501,128410
,1,19502,128415
,1,19503,128420
,1,19504,128425
,1,19505,128430
,1,19506,128435
,1,19507,128440
,1,19508,128445
,1,19509,128450
,1,19510,128455
,1,19511,128460
,1,19512,128465
,1,19513,128470
,1,19514,128475
,1,19515,128480
,1,19516,128485
,1,19517,128490
,1,19518,128495
,1,19519,128500
,1,19520,128505
,1,19521,128510
,1,19522,128515
,1,19523,128520
,1,19524,128525
,1,19525,128530
,1,19526,128535
,1,19527,128540
,1,19528,128545
,1,19529,128550
,1,19530,128555
,1,19531,128560
,1,19532,128565
,1,19533,128570
,1,19534,128575
,1,19535,128580
,1,19536,128585
,1,19537,128590
,1,19538,128595
,1,19539,128600
,1,19540,128605
,1,19541,128610
,1,19542,128615
,1,19543,128620
,1,19544,128625
,1,19545,128630
,1,19546,128635
,1,19547,128640
,1,19548,128645
,1,19549,128650
,1,19550,128655
,1,19551,128660
,1,19552,128665
,1,19553,128670
,1,19554,128675
,1,19555,128680
,1,19556,128685
,1,19557,128690
,1,19558,128695
,1,19559,128700
,1,19560,128705
,1,19561,128710
,1,19562,128715
,1,19563,128720
,1,19564,128725
,1,19565,128730
,1,19566,128735
,1,19567,128740
,1,19568,128745
,1,19569,128750
,1,19570,128755
,1,19571,128760
,1,19572,128765
,1,19573,128770
,1,19574,128775
,1,19575,128780
,1,19576,128785
,1,19577,128790
,1,19578,128795
,1,19579,128800
,1,19580,128805
,1,19581,128810
,1,19582,128815
,1,19583,128820
,1,19584,128825
,1,19585,128830
,1,19586,128835
,1,19587,128840
,1,19588,128845
,1,19589,128850
,1,19590,128855
,1,19591,128860
,1,19592,128865
,1,19593,128870
,1,19594,128875
,1,19595,128880
,1,19596,128885
,1,19597,128890
,1,19598,128895
,1,19599,128900
,1,19600,128905
,1,19601,128910
,1,19602,128915
,1,19603,128920
,1,19604,128925
,1,19605,128930
,1,19606,128935
,1,19607,128940
,1,19608,128945
,1,19609,128950
,1,19610,128955
,1,19611,128960
,1,19612,128965
,1,19613,128970
,1,19614,128975
,1,19615,128980
,1,19616,128985
,1,19617,128990
,1,19618,128995
,1,19619,129000
,1,19620,129005
,1,19621,129010
,1,19622,129015
,1,19623,129020
,1,19624,129025
,1,19625,129030
,1,19626,129035
,1,19627,129040
,1,19628,129045
,1,19629,129050
,1,19630,129055
,1,19631,129060
,1,19632,129065
,1,19633,129070
,1,19634,129075
,1,19635,129080
,1,19636,129085
,1,19637,129090
,1,19638,129095
,1,19639,129100
,1,19640,129105
,1,19641,129110
,1,19642,129115
,1,19643,129120
,1,19644,129125
,1,19645,129130
,1,19646,129135
,1,19647,129140
,1,19648,129145
,1,19649,129150
,1,19650,129155
,1,19651,129160
,1,19652,129165
,1,19653,129170
,1,19654,129175
,1,19655,129180
,1,19656,129185
,1,19657,129190
,1,19658,129195
,1,19659,129200
,1,19660,129205
,1,19661,129210
,1,19662,129215
,1,19663,129220
,1,19664,129225
,1,19665,129230
,1,19666,129235
,1,19667,129240
,1,19668,129245
,1,19669,129250
,1,19670,129255
,1,19671,129260
,1,19672,129265
,1,19673,129270
,1,19674,129275
,1,19675,129280
,1,19676,129285
,1,19677,129290
,1,19678,129295
,1,19679,129300
,1,19680,129305
,1,19681,129310
,1,19682,129315
,1,19683,129320
,1,19684,129325
,1,19685,129330
,1,19686,129335
,1,19687,129340
,1,19688,129345
,1,19689,129350
,1,19690,129355
,1,19691,129360
,1,19692,129365
,1,19693,129370
,1,19694,129375
,1,19695,129380
,1,19696,129385
,1,19697,129390
,1,19698,129395
,1,19699,129400
,1,19700,129405
,1,19701,129410
,1,19702,129415
,1,19703,129420
,1,19704,129425
,1,19705,129430
,1,19706,129435
,1,19707,129440
,1,19708,129445
,1,19709,129450
,1,19710,129455
,1,19711,129460
,1,19712,129465
,1,19713,129470
,1,19714,129475
,1,19715,129480
,1,19716,129485
,1,19717,129490
,1,19718,129495
,1,19719,129500
,1,19720,129505
,1,19721,129510
,1,19722,129515
,1,19723,129520
,1,19724,129525
,1,19725,129530
,1,19726,129535
,1,19727,129540
,1,19728,129545
,1,19729,129550
,1,19730,129555
,1,19731,129560
,1,19732,129565
,1,19733,129570
,1,19734,129575
,1,19735,129580
,1,19736,129585
,1,19737,129590
,1,19738,129595
,1,19739,129600
,1,19740,129605
,1,19741,129610
,1,19742,129615
,1,19743,129620
,1,19744,129625
,1,19745,129630
,1,19746,129635
,1,19747,129640
,1,19748,129645
,1,19749,129650
,1,19750,129655
,1,19751,129660
,1,19752,129665
,1,19753,129670
,1,19754,129675
,1,19755,129680
,1,19756,129685
,1,19757,129690
,1,19758,129695
,1,19759,129700
,1,19760,129705
,1,19761,129710
,1,19762,129715
,1,19763,129720
,1,19764,129725
,1,19765,129730
,1,19766,129735
,1,19767,129740
,1,19768,129745
,1,19769,129750
,1,19770,129755
,1,19771,129760
,1,19772,129765
,1,19773,129770
,1,19774,129775
,1,19775,129780
,1,19776,129785
,1,19777,129790
,1,19778,129795
,1,19779,129800
,1,19780,129805
,1,19781,129810
,1,19782,129815
,1,19783,129820
,1,19784,129825
,1,19785,129830
,1,19786,129835
,1,19787,129840
,1,19788,129845
,1,19789,129850
,1,19790,129855
,1,19791,129860
,1,19792,129865
,1,19793,129870
,1,19794,129875
,1,19795,129880
,1,19796,129885
,1,19797,129890
,1,19798,129895
,1,19799,129900
,1,19800,129905
,1,19801,129910
,1,19802,129915
,1,19803,129920
,1,19804,129925
,1,19805,129930
,1,19806,129935
,1,19807,129940
,1,19808,129945
,1,19809,129950
,1,19810,129955
,1,19811,129960
,1,19812,129965
,1,19813,129970
,1,19814,129975
,1,19815,129980
,1,19816,129985
,1,19817,129990
,1,19818,129995
,1,19819,130000
,1,19820,130005
,1,19821,130010
,1,19822,130015
,1,19823,130020
,1,19824,130025
,1,19825,130030
,1,19826,130035
,1,19827,130040
,1,19828,130045
,1,19829,130050
,1,19830,130055
,1,19831,130060
,1,19832,130065
,1,19833,130070
,1,19834,130075
,1,19835,130080
,1,19836,130085
,1,19837,130090
,1,19838,130095
,1,19839,130100
,1,19840,130105
,1,19841,130110
,1,19842,130115
,1,19843,130120
,1,19844,130125
,1,19845,130130
,1,19846,130135
,1,19847,130140
,1,19848,130145
,1,19849,130150
,1,19850,130155
,1,19851,130160
,1,19852,130165
,1,19853,130170
,1,19854,130175
,1,19855,130180
,1,19856,130185
,1,19857,130190
,1,19858,130195
,1,19859,130200
,1,19860,130205
,1,19861,130210
,1,19862,130215
,1,19863,130220
,1,19864,130225
,1,19865,130230
,1,19866,130235
,1,19867,130240
,1,19868,130245
,1,19869,130250
,1,19870,130255
,1,19871,130260
,1,19872,130265
,1,19873,130270
,1,19874,130275
,1,19875,130280
,1,19876,130285
,1,19877,130290
,1,19878,130295
,1,19879,130300
,1,19880,130305
,1,19881,130310
,1,19882,130315
,1,19883,130320
,1,19884,130325
,1,19885,130330
,1,19886,130335
,1,19887,130340
,1,19888,130345
,1,19889,130350
,1,19890,130355
,1,19891,130360
,1,19892,130365
,1,19893,130370
,1,19894,130375
,1,19895,130380
,1,19896,130385
,1,19897,130390
,1,19898,130395
,1,19899,130400
,1,19900,130405
,1,19901,130410
,1,19902,130415
,1,19903,130420
,1,19904,130425
,1,19905,130430
,1,19906,130435
,1,19907,130440
,1,19908,130445
,1,19909,130450
,1,19910,130455
,1,19911,130460
,1,19912,130465
,1,19913,130470
,1,19914,130475
,1,19915,130480
,1,19916,130485
,1,19917,130490
,1,19918,130495
,1,19919,130500
,1,19920,130505
,1,19921,130510
,1,19922,130515
,1,19923,130520
,1,19924,130525
,1,19925,130530
,1,19926,130535
,1,19927,130540
,1,19928,130545
,1,19929,130550
,1,19930,130555
,1,19931,130560
,1,19932,130565
,1,19933,130570
,1,19934,130575
,1,19935,130580
,1,19936,130585
,1,19937,130590
,1,19938,130595
,1,19939,130600
,1,19940,130605
,1,19941,130610
,1,19942,130615
,1,19943,130620
,1,19944,130625
,1,19945,130630
,1,19946,130635
,1,19947,130640
,1,19948,130645
,1,19949,130650
,1,19950,130655
,1,19951,130660
,1,19952,130665
,1,19953,130670
,1,19954,130675
,1,19955,130680
,1,19956,130685
,1,19957,130690
,1,19958,130695
,1,19959,130700
,1,19960,130705
,1,19961,130710
,1,19962,130715
,1,19963,130720
,1,19964,130725
,1,19965,130730
,1,19966,130735
,1,19967,130740
,1,19968,130745
,1,19969,130750
,1,19970,130755
,1,19971,130760
,1,19972,130765
,1,19973,130770
,1,19974,130775
,1,19975,130780
,1,19976,130785
,1,19977,130790
,1,19978,130795
,1,19979,130800
,1,19980,130805
,1,19981,130810
,1,19982,130815
,1,19983,130820
,1,19984,130825
,1,19985,130830
,1,19986,130835
,1,19987,130840
,1,19988,130845
,1,19989,130850
,1,19990,130855
,1,19991,130860
,1,19992,130865
,1,19993,130870
,1,19994,130875
,1,19995,130880
,1,19996,130885
,1,19997,130890
,1,19998,130895
,1,19999,130900
,1,20000,130905
,1,20001,130910
,1,20002,130915
,1,20003,130920
,1,20004,130925
,1,20005,130930
,1,20006,130935
,1,20007,130940
,1,20008,130945
,1,20009,130950
,1,20010,130955
,1,20011,130960
,1,20012,130965
,1,20013,130970
,1,20014,130975
,1,20015,130980
,1,20016,130985
,1,20017,130990
,1,20018,130995
,1,20019,131000
,1,20020,131005
,1,20021,131010
,1,20022,131015
,1,20023,131020
,1,20024,131025
,1,20025,131030
,1,20026,131035
,1,20027,131040
,1,20028,131045
,1,20029,131050
,1,20030,131055
,1,20031,131060
,1,20032,131065
,1,20033,131070
,1,20034,131075
,1,20035,131080
,1,20036,131085
,1,20037,131090
,1,20038,131095
,1,20039,131100
,1,20040,131105
,1,20041,131110
,1,20042,131115
,1,20043,131120
,1,20044,131125
,1,20045,131130
,1,20046,131135
,1,20047,131140
,1,20048,131145
,1,20049,131150
,1,20050,131155
,1,20051,131160
,1,20052,131165
,1,20053,131170
,1,20054,131175
,1,20055,131180
,1,20056,131185
,1,20057,131190
,1,20058,131195
,1,20059,131200
,1,20060,131205
,1,20061,131210
,1,20062,131215
,1,20063,131220
,1,20064,131225
,1,20065,131230
,1,20066,131235
,1,20067,131240
,1,20068,131245
,1,20069,131250
,1,20070,131255
,1,20071,131260
,1,20072,131265
,1,20073,131270
,1,20074,131275
,1,20075,131280
,1,20076,131285
,1,20077,131290
,1,20078,131295
,1,20079,131300
,1,20080,131305
,1,20081,131310
,1,20082,131315
,1,20083,131320
,1,20084,131325
,1,20085,131330
,1,20086,131335
,1,20087,131340
,1,20088,131345
,1,20089,131350
,1,20090,131355
,1,20091,131360
,1,20092,131365
,1,20093,131370
,1,20094,131375
,1,20095,131380
,1,20096,131385
,1,20097,131390
,1,20098,131395
,1,20099,131400
,1,20100,131405
,1,20101,131410
,1,20102,131415
,1,20103,131420
,1,20104,131425
,1,20105,131430
,1,20106,131435
,1,20107,131440
,1,20108,131445
,1,20109,131450
,1,20110,131455
,1,20111,131460
,1,20112,131465
,1,20113,131470
,1,20114,131475
,1,20115,131480
,1,20116,131485
,1,20117,131490
,1,20118,131495
,1,20119,131500
,1,20120,131505
,1,20121,131510
,1,20122,131515
,1,20123,131520
,1,20124,131525
,1,20125,131530
,1,20126,131535
,1,20127,131540
,1,20128,131545
,1,20129,131550
,1,20130,131555
,1,20131,131560
,1,20132,131565
,1,20133,131570
,1,20134,131575
,1,20135,131580
,1,20136,131585
,1,20137,131590
,1,20138,131595
,1,20139,131600
,1,20140,131605
,1,20141,131610
,1,20142,131615
,1,20143,131620
,1,20144,131625
,1,20145,131630
,1,20146,131635
,1,20147,131640
,1,20148,131645
,1,20149,131650
,1,20150,131655
,1,20151,131660
,1,20152,131665
,1,20153,131670
,1,20154,131675
,1,20155,131680
,1,20156,131685
,1,20157,131690
,1,20158,131695
,1,20159,131700
,1,20160,131705
,1,20161,131710
,1,20162,131715
,1,20163,131720
,1,20164,131725
,1,20165,131730
,1,20166,131735
,1,20167,131740
,1,20168,131745
,1,20169,131750
,1,20170,131755
,1,20171,131760
,1,20172,131765
,1,20173,131770
,1,20174,131775
,1,20175,131780
,1,20176,131785
,1,20177,131790
,1,20178,131795
,1,20179,131800
,1,20180,131805
,1,20181,131810
,1,20182,131815
,1,20183,131820
,1,20184,131825
,1,20185,131830
,1,20186,131835
,1,20187,131840
,1,20188,131845
,1,20189,131850
,1,20190,131855
,1,20191,131860
,1,20192,131865
,1,20193,131870
,1,20194,131875
,1,20195,131880
,1,20196,131885
,1,20197,131890
,1,20198,131895
,1,20199,131900
,1,20200,131905
,1,20201,131910
,1,20202,131915
,1,20203,131920
,1,20204,131925
,1,20205,131930
,1,20206,131935
,1,20207,131940
,1,20208,131945
,1,20209,131950
,1,20210,131955
,1,20211,131960
,1,20212,131965
,1,20213,131970
,1,20214,131975
,1,20215,131980
,1,20216,131985
,1,20217,131990
,1,20218,131995
,1,20219,132000
,1,20220,132005
,1,20221,132010
,1,20222,132015
,1,20223,132020
,1,20224,132025
,1,20225,132030
,1,20226,132035
,1,20227,132040
,1,20228,132045
,1,20229,132050
,1,20230,132055
,1,20231,132060
,1,20232,132065
,1,20233,132070
,1,20234,132075
,1,20235,132080
,1,20236,132085
,1,20237,132090
,1,20238,132095
,1,20239,132100
,1,20240,132105
,1,20241,132110
,1,20242,132115
,1,20243,132120
,1,20244,132125
,1,20245,132130
,1,20246,132135
,1,20247,132140
,1,20248,132145
,1,20249,132150
,1,20250,132155
,1,20251,132160
,1,20252,132165
,1,20253,132170
,1,20254,132175
,1,20255,132180
,1,20256,132185
,1,20257,132190
,1,20258,132195
,1,20259,132200
,1,20260,132205
,1,20261,132210
,1,20262,132215
,1,20263,132220
,1,20264,132225
,1,20265,132230
,1,20266,132235
,1,20267,132240
,1,20268,132245
,1,20269,132250
,1,20270,132255
,1,20271,132260
,1,20272,132265
,1,20273,132270
,1,20274,132275
,1,20275,132280
,1,20276,132285
,1,20277,132290
,1,20278,132295
,1,20279,132300
,1,20280,132305
,1,20281,132310
,1,20282,132315
,1,20283,132320
,1,20284,132325
,1,20285,132330
,1,20286,132335
,1,20287,132340
,1,20288,132345
,1,20289,132350
,1,20290,132355
,1,20291,132360
,1,20292,132365
,1,20293,132370
,1,20294,132375
,1,20295,132380
,1,20296,132385
,1,20297,132390
,1,20298,132395
,1,20299,132400
,1,20300,132405
,1,20301,132410
,1,20302,132415
,1,20303,132420
,1,20304,132425
,1,20305,132430
,1,20306,132435
,1,20307,132440
,1,20308,132445
,1,20309,132450
,1,20310,132455
,1,20311,132460
,1,20312,132465
,1,20313,132470
,1,20314,132475
,1,20315,132480
,1,20316,132485
,1,20317,132490
,1,20318,132495
,1,20319,132500
,1,20320,132505
,1,20321,132510
,1,20322,132515
,1,20323,132520
,1,20324,132525
,1,20325,132530
,1,20326,132535
,1,20327,132540
,1,20328,132545
,1,20329,132550
,1,20330,132555
,1,20331,132560
,1,20332,132565
,1,20333,132570
,1,20334,132575
,1,20335,132580
,1,20336,132585
,1,20337,132590
,1,20338,132595
,1,20339,132600
,1,20340,132605
,1,20341,132610
,1,20342,132615
,1,20343,132620
,1,20344,132625
,1,20345,132630
,1,20346,132635
,1,20347,132640
,1,20348,132645
,1,20349,132650
,1,20350,132655
,1,20351,132660
,1,20352,132665
,1,20353,132670
,1,20354,132675
,1,20355,132680
,1,20356,132685
,1,20357,132690
,1,20358,132695
,1,20359,132700
,1,20360,132705
,1,20361,132710
,1,20362,132715
,1,20363,132720
,1,20364,132725
,1,20365,132730
,1,20366,132735
,1,20367,132740
,1,20368,132745
,1,20369,132750
,1,20370,132755
,1,20371,132760
,1,20372,132765
,1,20373,132770
,1,20374,132775
,1,20375,132780
,1,20376,132785
,1,20377,132790
,1,20378,132795
,1,20379,132800
,1,20380,132805
,1,20381,132810
,1,20382,132815
,1,20383,132820
,1,20384,132825
,1,20385,132830
,1,20386,132835
,1,20387,132840
,1,20388,132845
,1,20389,132850
,1,20390,132855
,1,20391,132860
,1,20392,132865
,1,20393,132870
,1,20394,132875
,1,20395,132880
,1,20396,132885
,1,20397,132890
,1,20398,132895
,1,20399,132900
,1,20400,132905
,1,20401,132910
,1,20402,132915
,1,20403,132920
,1,20404,132925
,1,20405,132930
,1,20406,132935
,1,20407,132940
,1,20408,132945
,1,20409,132950
,1,20410,132955
,1,20411,132960
,1,20412,132965
,1,20413,132970
,1,20414,132975
,1,20415,132980
,1,20416,132985
,1,20417,132990
,1,20418,132995
,1,20419,133000
,1,20420,133005
,1,20421,133010
,1,20422,133015
,1,20423,133020
,1,20424,133025
,1,20425,133030
,1,20426,133035
,1,20427,133040
,1,20428,133045
,1,20429,133050
,1,20430,133055
,1,20431,133060
,1,20432,133065
,1,20433,133070
,1,20434,133075
,1,20435,133080
,1,20436,133085
,1,20437,133090
,1,20438,133095
,1,20439,133100
,1,20440,133105
,1,20441,133110
,1,20442,133115
,1,20443,133120
,1,20444,133125
,1,20445,133130
,1,20446,133135
,1,20447,133140
,1,20448,133145
,1,20449,133150
,1,20450,133155
,1,20451,133160
,1,20452,133165
,1,20453,133170
,1,20454,133175
,1,20455,133180
,1,20456,133185
,1,20457,133190
,1,20458,133195
,1,20459,133200
,1,20460,133205
,1,20461,133210
,1,20462,133215
,1,20463,133220
,1,20464,133225
,1,20465,133230
,1,20466,133235
,1,20467,133240
,1,20468,133245
,1,20469,133250
,1,20470,133255
,1,20471,133260
,1,20472,133265
,1,20473,133270
,1,20474,133275
,1,20475,133280
,1,20476,133285
,1,20477,133290
,1,20478,133295
,1,20479,133300
,1,20480,133305
,1,20481,133310
,1,20482,133315
,1,20483,133320
,1,20484,133325
,1,20485,133330
,1,20486,133335
,1,20487,133340
,1,20488,133345
,1,20489,133350
,1,20490,133355
,1,20491,133360
,1,20492,133365
,1,20493,133370
,1,20494,133375
,1,20495,133380
,1,20496,133385
,1,20497,133390
,1,20498,133395
,1,20499,133400
,1,20500,133405
,1,20501,133410
,1,20502,133415
,1,20503,133420
,1,20504,133425
,1,20505,133430
,1,20506,133435
,1,20507,133440
,1,20508,133445
,1,20509,133450
,1,20510,133455
,1,20511,133460
,1,20512,133465
,1,20513,133470
,1,20514,133475
,1,20515,133480
,1,20516,133485
,1,20517,133490
,1,20518,133495
,1,20519,133500
,1,20520,133505
,1,20521,133510
,1,20522,133515
,1,20523,133520
,1,20524,133525
,1,20525,133530
,1,20526,133535
,1,20527,133540
,1,20528,133545
,1,20529,133550
,1,20530,133555
,1,20531,133560
,1,20532,133565
,1,20533,133570
,1,20534,133575
,1,20535,133580
,1,20536,133585
,1,20537,133590
,1,20538,133595
,1,20539,133600
,1,20540,133605
,1,20541,133610
,1,20542,133615
,1,20543,133620
,1,20544,133625
,1,20545,133630
,1,20546,133635
,1,20547,133640
,1,20548,133645
,1,20549,133650
,1,20550,133655
,1,20551,133660
,1,20552,133665
,1,20553,133670
,1,20554,133675
,1,20555,133680
,1,20556,133685
,1,20557,133690
,1,20558,133695
,1,20559,133700
,1,20560,133705
,1,20561,133710
,1,20562,133715
,1,20563,133720
,1,20564,133725
,1,20565,133730
,1,20566,133735
,1,20567,133740
,1,20568,133745
,1,20569,133750
,1,20570,133755
,1,20571,133760
,1,20572,133765
,1,20573,133770
,1,20574,133775
,1,20575,133780
,1,20576,133785
,1,20577,133790
,1,20578,133795
,1,20579,133800
,1,20580,133805
,1,20581,133810
,1,20582,133815
,1,20583,133820
,1,20584,133825
,1,20585,133830
,1,20586,133835
,1,20587,133840
,1,20588,133845
,1,20589,133850
,1,20590,133855
,1,20591,133860
,1,20592,133865
,1,20593,133870
,1,20594,133875
,1,20595,133880
,1,20596,133885
,1,20597,133890
,1,20598,133895
,1,20599,133900
,1,20600,133905
,1,20601,133910
,1,20602,133915
,1,20603,133920
,1,20604,133925
,1,20605,133930
,1,20606,133935
,1,20607,133940
,1,20608,133945
,1,20609,133950
,1,20610,133955
,1,20611,133960
,1,20612,133965
,1,20613,133970
,1,20614,133975
,1,20615,133980
,1,20616,133985
,1,20617,133990
,1,20618,133995
,1,20619,134000
,1,20620,134005
,1,20621,134010
,1,20622,134015
,1,20623,134020
,1,20624,134025
,1,20625,134030
,1,20626,134035
,1,20627,134040
,1,20628,134045
,1,20629,134050
,1,20630,134055
,1,20631,134060
,1,20632,134065
,1,20633,134070
,1,20634,134075
,1,20635,134080
,1,20636,134085
,1,20637,134090
,1,20638,134095
,1,20639,134100
,1,20640,134105
,1,20641,134110
,1,20642,134115
,1,20643,134120
,1,20644,134125
,1,20645,134130
,1,20646,134135
,1,20647,134140
,1,20648,134145
,1,20649,134150
,1,20650,134155
,1,20651,134160
,1,20652,134165
,1,20653,134170
,1,20654,134175
,1,20655,134180
,1,20656,134185
,1,20657,134190
,1,20658,134195
,1,20659,134200
,1,20660,134205
,1,20661,134210
,1,20662,134215
,1,20663,134220
,1,20664,134225
,1,20665,134230
,1,20666,134235
,1,20667,134240
,1,20668,134245
,1,20669,134250
,1,20670,134255
,1,20671,134260
,1,20672,134265
,1,20673,134270
,1,20674,134275
,1,20675,134280
,1,20676,134285
,1,20677,134290
,1,20678,134295
,1,20679,134300
,1,20680,134305
,1,20681,134310
,1,20682,134315
,1,20683,134320
,1,20684,134325
,1,20685,134330
,1,20686,134335
,1,20687,134340
,1,20688,134345
,1,20689,134350
,1,20690,134355
,1,20691,134360
,1,20692,134365
,1,20693,134370
,1,20694,134375
,1,20695,134380
,1,20696,134385
,1,20697,134390
,1,20698,134395
,1,20699,134400
,1,20700,134405
,1,20701,134410
,1,20702,134415
,1,20703,134420
,1,20704,134425
,1,20705,134430
,1,20706,134435
,1,20707,134440
,1,20708,134445
,1,20709,134450
,1,20710,134455
,1,20711,134460
,1,20712,134465
,1,20713,134470
,1,20714,134475
,1,20715,134480
,1,20716,134485
,1,20717,134490
,1,20718,134495
,1,20719,134500
,1,20720,134505
,1,20721,134510
,1,20722,134515
,1,20723,134520
,1,20724,134525
,1,20725,134530
,1,20726,134535
,1,20727,134540
,1,20728,134545
,1,20729,134550
,1,20730,134555
,1,20731,134560
,1,20732,134565
,1,20733,134570
,1,20734,134575
,1,20735,134580
,1,20736,134585
,1,20737,134590
,1,20738,134595
,1,20739,134600
,1,20740,134605
,1,20741,134610
,1,20742,134615
,1,20743,134620
,1,20744,134625
,1,20745,134630
,1,20746,134635
,1,20747,134640
,1,20748,134645
,1,20749,134650
,1,20750,134655
,1,20751,134660
,1,20752,134665
,1,20753,134670
,1,20754,134675
,1,20755,134680
,1,20756,134685
,1,20757,134690
,1,20758,134695
,1,20759,134700
,1,20760,134705
,1,20761,134710
,1,20762,134715
,1,20763,134720
,1,20764,134725
,1,20765,134730
,1,20766,134735
,1,20767,134740
,1,20768,134745
,1,20769,134750
,1,20770,134755
,1,20771,134760
,1,20772,134765
,1,20773,134770
,1,20774,134775
,1,20775,134780
,1,20776,134785
,1,20777,134790
,1,20778,134795
,1,20779,134800
,1,20780,134805
,1,20781,134810
,1,20782,134815
,1,20783,134820
,1,20784,134825
,1,20785,134830
,1,20786,134835
,1,20787,134840
,1,20788,134845
,1,20789,134850
,1,20790,134855
,1,20791,134860
,1,20792,134865
,1,20793,134870
,1,20794,134875
,1,20795,134880
,1,20796,134885
,1,20797,134890
,1,20798,134895
,1,20799,134900
,1,20800,134905
,1,20801,134910
,1,20802,134915
,1,20803,134920
,1,20804,134925
,1,20805,134930
,1,20806,134935
,1,20807,134940
,1,20808,134945
,1,20809,134950
,1,20810,134955
,1,20811,134960
,1,20812,134965
,1,20813,134970
,1,20814,134975
,1,20815,134980
,1,20816,134985
,1,20817,134990
,1,20818,134995
,1,20819,135000
,1,20820,135005
,1,20821,135010
,1,20822,135015
,1,20823,135020
,1,20824,135025
,1,20825,135030
,1,20826,135035
,1,20827,135040
,1,20828,135045
,1,20829,135050
,1,20830,135055
,1,20831,135060
,1,20832,135065
,1,20833,135070
,1,20834,135075
,1,20835,135080
,1,20836,135085
,1,20837,135090
,1,20838,135095
,1,20839,135100
,1,20840,135105
,1,20841,135110
,1,20842,135115
,1,20843,135120
,1,20844,135125
,1,20845,135130
,1,20846,135135
,1,20847,135140
,1,20848,135145
,1,20849,135150
,1,20850,135155
,1,20851,135160
,1,20852,135165
,1,20853,135170
,1,20854,135175
,1,20855,135180
,1,20856,135185
,1,20857,135190
,1,20858,135195
,1,20859,135200
,1,20860,135205
,1,20861,135210
,1,20862,135215
,1,20863,135220
,1,20864,135225
,1,20865,135230
,1,20866,135235
,1,20867,135240
,1,20868,135245
,1,20869,135250
,1,20870,135255
,1,20871,135260
,1,20872,135265
,1,20873,135270
,1,20874,135275
,1,20875,135280
,1,20876,135285
,1,20877,135290
,1,20878,135295
,1,20879,135300
,1,20880,135305
,1,20881,135310
,1,20882,135315
,1,20883,135320
,1,20884,135325
,1,20885,135330
,1,20886,135335
,1,20887,135340
,1,20888,135345
,1,20889,135350
,1,20890,135355
,1,20891,135360
,1,20892,135365
,1,20893,135370
,1,20894,135375
,1,20895,135380
,1,20896,135385
,1,20897,135390
,1,20898,135395
,1,20899,135400
,1,20900,135405
,1,20901,135410
,1,20902,135415
,1,20903,135420
,1,20904,135425
,1,20905,135430
,1,20906,135435
,1,20907,135440
,1,20908,135445
,1,20909,135450
,1,20910,135455
,1,20911,135460
,1,20912,135465
,1,20913,135470
,1,20914,135475
,1,20915,135480
,1,20916,135485
,1,20917,135490
,1,20918,135495
,1,20919,135500
,1,20920,135505
,1,20921,135510
,1,20922,135515
,1,20923,135520
,1,20924,135525
,1,20925,135530
,1,20926,135535
,1,20927,135540
,1,20928,135545
,1,20929,135550
,1,20930,135555
,1,20931,135560
,1,20932,135565
,1,20933,135570
,1,20934,135575
,1,20935,135580
,1,20936,135585
,1,20937,135590
,1,20938,135595
,1,20939,135600
,1,20940,135605
,1,20941,135610
,1,20942,135615
,1,20943,135620
,1,20944,135625
,1,20945,135630
,1,20946,135635
,1,20947,135640
,1,20948,135645
,1,20949,135650
,1,20950,135655
,1,20951,135660
,1,20952,135665
,1,20953,135670
,1,20954,135675
,1,20955,135680
,1,20956,135685
,1,20957,135690
,1,20958,135695
,1,20959,135700
,1,20960,135705
,1,20961,135710
,1,20962,135715
,1,20963,135720
,1,20964,135725
,1,20965,135730
,1,20966,135735
,1,20967,135740
,1,20968,135745
,1,20969,135750
,1,20970,135755
,1,20971,135760
,1,20972,135765
,1,20973,135770
,1,20974,135775
,1,20975,135780
,1,20976,135785
,1,20977,135790
,1,20978,135795
,1,20979,135800
,1,20980,135805
,1,20981,135810
,1,20982,135815
,1,20983,135820
,1,20984,135825
,1,20985,135830
,1,20986,135835
,1,20987,135840
,1,20988,135845
,1,20989,135850
,1,20990,135855
,1,20991,135860
,1,20992,135865
,1,20993,135870
,1,20994,135875
,1,20995,135880
,1,20996,135885
,1,20997,135890
,1,20998,135895
,1,20999,135900
,1,21000,135905
,1,21001,135910
,1,21002,135915
,1,21003,135920
,1,21004,135925
,1,21005,135930
,1,21006,135935
,1,21007,135940
,1,21008,135945
,1,21009,135950
,1,21010,135955
,1,21011,135960
,1,21012,135965
,1,21013,135970
,1,21014,135975
,1,21015,135980
,1,21016,135985
,1,21017,135990
,1,21018,135995
,1,21019,136000
,1,21020,136005
,1,21021,136010
,1,21022,136015
,1,21023,136020
,1,21024,136025
,1,21025,136030
,1,21026,136035
,1,21027,136040
,1,21028,136045
,1,21029,136050
,1,21030,136055
,1,21031,136060
,1,21032,136065
,1,21033,136070
,1,21034,136075
,1,21035,136080
,1,21036,136085
,1,21037,136090
,1,21038,136095
,1,21039,136100
,1,21040,136105
,1,21041,136110
,1,21042,136115
,1,21043,136120
,1,21044,136125
,1,21045,136130
,1,21046,136135
,1,21047,136140
,1,21048,136145
,1,21049,136150
,1,21050,136155
,1,21051,136160
,1,21052,136165
,1,21053,136170
,1,21054,136175
,1,21055,136180
,1,21056,136185
,1,21057,136190
,1,21058,136195
,1,21059,136200
,1,21060,136205
,1,21061,136210
,1,21062,136215
,1,21063,136220
,1,21064,136225
,1,21065,136230
,1,21066,136235
,1,21067,136240
,1,21068,136245
,1,21069,136250
,1,21070,136255
,1,21071,136260
,1,21072,136265
,1,21073,136270
,1,21074,136275
,1,21075,136280
,1,21076,136285
,1,21077,136290
,1,21078,136295
,1,21079,136300
,1,21080,136305
,1,21081,136310
,1,21082,136315
,1,21083,136320
,1,21084,136325
,1,21085,136330
,1,21086,136335
,1,21087,136340
,1,21088,136345
,1,21089,136350
,1,21090,136355
,1,21091,136360
,1,21092,136365
,1,21093,136370
,1,21094,136375
,1,21095,136380
,1,21096,136385
,1,21097,136390
,1,21098,136395
,1,21099,136400
,1,21100,136405
,1,21101,136410
,1,21102,136415
,1,21103,136420
,1,21104,136425
,1,21105,136430
,1,21106,136435
,1,21107,136440
,1,21108,136445
,1,21109,136450
,1,21110,136455
,1,21111,136460
,1,21112,136465
,1,21113,136470
,1,21114,136475
,1,21115,136480
,1,21116,136485
,1,21117,136490
,1,21118,136495
,1,21119,136500
,1,21120,136505
,1,21121,136510
,1,21122,136515
,1,21123,136520
,1,21124,136525
,1,21125,136530
,1,21126,136535
,1,21127,136540
,1,21128,136545
,1,21129,136550
,1,21130,136555
,1,21131,136560
,1,21132,136565
,1,21133,136570
,1,21134,136575
,1,21135,136580
,1,21136,136585
,1,21137,136590
,1,21138,136595
,1,21139,136600
,1,21140,136605
,1,21141,136610
,1,21142,136615
,1,21143,136620
,1,21144,136625
,1,21145,136630
,1,21146,136635
,1,21147,136640
,1,21148,136645
,1,21149,136650
,1,21150,136655
,1,21151,136660
,1,21152,136665
,1,21153,136670
,1,21154,136675
,1,21155,136680
,1,21156,136685
,1,21157,136690
,1,21158,136695
,1,21159,136700
,1,21160,136705
,1,21161,136710
,1,21162,136715
,1,21163,136720
,1,21164,136725
,1,21165,136730
,1,21166,136735
,1,21167,136740
,1,21168,136745
,1,21169,136750
,1,21170,136755
,1,21171,136760
,1,21172,136765
,1,21173,136770
,1,21174,136775
,1,21175,136780
,1,21176,136785
,1,21177,136790
,1,21178,136795
,1,21179,136800
,1,21180,136805
,1,21181,136810
,1,21182,136815
,1,21183,136820
,1,21184,136825
,1,21185,136830
,1,21186,136835
,1,21187,136840
,1,21188,136845
,1,21189,136850
,1,21190,136855
,1,21191,136860
,1,21192,136865
,1,21193,136870
,1,21194,136875
,1,21195,136880
,1,21196,136885
,1,21197,136890
,1,21198,136895
,1,21199,136900
,1,21200,136905
,1,21201,136910
,1,21202,136915
,1,21203,136920
,1,21204,136925
,1,21205,136930
,1,21206,136935
,1,21207,136940
,1,21208,136945
,1,21209,136950
,1,21210,136955
,1,21211,136960
,1,21212,136965
,1,21213,136970
,1,21214,136975
,1,21215,136980
,1,21216,136985
,1,21217,136990
,1,21218,136995
,1,21219,137000
,1,21220,137005
,1,21221,137010
,1,21222,137015
,1,21223,137020
,1,21224,137025
,1,21225,137030
,1,21226,137035
,1,21227,137040
,1,21228,137045
,1,21229,137050
,1,21230,137055
,1,21231,137060
,1,21232,137065
,1,21233,137070
,1,21234,137075
,1,21235,137080
,1,21236,137085
,1,21237,137090
,1,21238,137095
,1,21239,137100
,1,21240,137105
,1,21241,137110
,1,21242,137115
,1,21243,137120
,1,21244,137125
,1,21245,137130
,1,21246,137135
,1,21247,137140
,1,21248,137145
,1,21249,137150
,1,21250,137155
,1,21251,137160
,1,21252,137165
,1,21253,137170
,1,21254,137175
,1,21255,137180
,1,21256,137185
,1,21257,137190
,1,21258,137195
,1,21259,137200
,1,21260,137205
,1,21261,137210
,1,21262,137215
,1,21263,137220
,1,21264,137225
,1,21265,137230
,1,21266,137235
,1,21267,137240
,1,21268,137245
,1,21269,137250
,1,21270,137255
,1,21271,137260
,1,21272,137265
,1,21273,137270
,1,21274,137275
,1,21275,137280
,1,21276,137285
,1,21277,137290
,1,21278,137295
,1,21279,137300
,1,21280,137305
,1,21281,137310
,1,21282,137315
,1,21283,137320
,1,21284,137325
,1,21285,137330
,1,21286,137335
,1,21287,137340
,1,21288,137345
,1,21289,137350
,1,21290,137355
,1,21291,137360
,1,21292,137365
,1,21293,137370
,1,21294,137375
,1,21295,137380
,1,21296,137385
,1,21297,137390
,1,21298,137395
,1,21299,137400
,1,21300,137405
,1,21301,137410
,1,21302,137415
,1,21303,137420
,1,21304,137425
,1,21305,137430
,1,21306,137435
,1,21307,137440
,1,21308,137445
,1,21309,137450
,1,21310,137455
,1,21311,137460
,1,21312,137465
,1,21313,137470
,1,21314,137475
,1,21315,137480
,1,21316,137485
,1,21317,137490
,1,21318,137495
,1,21319,137500
,1,21320,137505
,1,21321,137510
,1,21322,137515
,1,21323,137520
,1,21324,137525
,1,21325,137530
,1,21326,137535
,1,21327,137540
,1,21328,137545
,1,21329,137550
,1,21330,137555
,1,21331,137560
,1,21332,137565
,1,21333,137570
,1,21334,137575
,1,21335,137580
,1,21336,137585
,1,21337,137590
,1,21338,137595
,1,21339,137600
,1,21340,137605
,1,21341,137610
,1,21342,137615
,1,21343,137620
,1,21344,137625
,1,21345,137630
,1,21346,137635
,1,21347,137640
,1,21348,137645
,1,21349,137650
,1,21350,137655
,1,21351,137660
,1,21352,137665
,1,21353,137670
,1,21354,137675
,1,21355,137680
,1,21356,137685
,1,21357,137690
,1,21358,137695
,1,21359,137700
,1,21360,137705
,1,21361,137710
,1,21362,137715
,1,21363,137720
,1,21364,137725
,1,21365,137730
,1,21366,137735
,1,21367,137740
,1,21368,137745
,1,21369,137750
,1,21370,137755
,1,21371,137760
,1,21372,137765
,1,21373,137770
,1,21374,137775
,1,21375,137780
,1,21376,137785
,1,21377,137790
,1,21378,137795
,1,21379,137800
,1,21380,137805
,1,21381,137810
,1,21382,137815
,1,21383,137820
,1,21384,137825
,1,21385,137830
,1,21386,137835
,1,21387,137840
,1,21388,137845
,1,21389,137850
,1,21390,137855
,1,21391,137860
,1,21392,137865
,1,21393,137870
,1,21394,137875
,1,21395,137880
,1,21396,137885
,1,21397,137890
,1,21398,137895
,1,21399,137900
,1,21400,137905
,1,21401,137910
,1,21402,137915
,1,21403,137920
,1,21404,137925
,1,21405,137930
,1,21406,137935
,1,21407,137940
,1,21408,137945
,1,21409,137950
,1,21410,137955
,1,21411,137960
,1,21412,137965
,1,21413,137970
,1,21414,137975
,1,21415,137980
,1,21416,137985
,1,21417,137990
,1,21418,137995
,1,21419,138000
,1,21420,138005
,1,21421,138010
,1,21422,138015
,1,21423,138020
,1,21424,138025
,1,21425,138030
,1,21426,138035
,1,21427,138040
,1,21428,138045
,1,21429,138050
,1,21430,138055
,1,21431,138060
,1,21432,138065
,1,21433,138070
,1,21434,138075
,1,21435,138080
,1,21436,138085
,1,21437,138090
,1,21438,138095
,1,21439,138100
,1,21440,138105
,1,21441,138110
,1,21442,138115
,1,21443,138120
,1,21444,138125
,1,21445,138130
,1,21446,138135
,1,21447,138140
,1,21448,138145
,1,21449,138150
,1,21450,138155
,1,21451,138160
,1,21452,138165
,1,21453,138170
,1,21454,138175
,1,21455,138180
,1,21456,138185
,1,21457,138190
,1,21458,138195
,1,21459,138200
,1,21460,138205
,1,21461,138210
,1,21462,138215
,1,21463,138220
,1,21464,138225
,1,21465,138230
,1,21466,138235
,1,21467,138240
,1,21468,138245
,1,21469,138250
,1,21470,138255
,1,21471,138260
,1,21472,138265
,1,21473,138270
,1,21474,138275
,1,21475,138280
,1,21476,138285
,1,21477,138290
,1,21478,138295
,1,21479,138300
,1,21480,138305
,1,21481,138310
,1,21482,138315
,1,21483,138320
,1,21484,138325
,1,21485,138330
,1,21486,138335
,1,21487,138340
,1,21488,138345
,1,21489,138350
,1,21490,138355
,1,21491,138360
,1,21492,138365
,1,21493,138370
,1,21494,138375
,1,21495,138380
,1,21496,138385
,1,21497,138390
,1,21498,138395
,1,21499,138400
,1,21500,138405
,1,21501,138410
,1,21502,138415
,1,21503,138420
,1,21504,138425
,1,21505,138430
,1,21506,138435
,1,21507,138440
,1,21508,138445
,1,21509,138450
,1,21510,138455
,1,21511,138460
,1,21512,138465
,1,21513,138470
,1,21514,138475
,1,21515,138480
,1,21516,138485
,1,21517,138490
,1,21518,138495
,1,21519,138500
,1,21520,138505
,1,21521,138510
,1,21522,138515
,1,21523,138520
,1,21524,138525
,1,21525,138530
,1,21526,138535
,1,21527,138540
,1,21528,138545
,1,21529,138550
,1,21530,138555
,1,21531,138560
,1,21532,138565
,1,21533,138570
,1,21534,138575
,1,21535,138580
,1,21536,138585
,1,21537,138590
,1,21538,138595
,1,21539,138600
,1,21540,138605
,1,21541,138610
,1,21542,138615
,1,21543,138620
,1,21544,138625
,1,21545,138630
,1,21546,138635
,1,21547,138640
,1,21548,138645
,1,21549,138650
,1,21550,138655
,1,21551,138660
,1,21552,138665
,1,21553,138670
,1,21554,138675
,1,21555,138680
,1,21556,138685
,1,21557,138690
,1,21558,138695
,1,21559,138700
,1,21560,138705
,1,21561,138710
,1,21562,138715
,1,21563,138720
,1,21564,138725
,1,21565,138730
,1,21566,138735
,1,21567,138740
,1,21568,138745
,1,21569,138750
,1,21570,138755
,1,21571,138760
,1,21572,138765
,1,21573,138770
,1,21574,138775
,1,21575,138780
,1,21576,138785
,1,21577,138790
,1,21578,138795
,1,21579,138800
,1,21580,138805
,1,21581,138810
,1,21582,138815
,1,21583,138820
,1,21584,138825
,1,21585,138830
,1,21586,138835
,1,21587,138840
,1,21588,138845
,1,21589,138850
,1,21590,138855
,1,21591,138860
,1,21592,138865
,1,21593,138870
,1,21594,138875
,1,21595,138880
,1,21596,138885
,1,21597,138890
,1,21598,138895
,1,21599,138900
,1,21600,138905
,1,21601,138910
,1,21602,138915
,1,21603,138920
,1,21604,138925
,1,21605,138930
,1,21606,138935
,1,21607,138940
,1,21608,138945
,1,21609,138950
,1,21610,138955
,1,21611,138960
,1,21612,138965
,1,21613,138970
,1,21614,138975
,1,21615,138980
,1,21616,138985
,1,21617,138990
,1,21618,138995
,1,21619,139000
,1,21620,139005
,1,21621,139010
,1,21622,139015
,1,21623,139020
,1,21624,139025
,1,21625,139030
,1,21626,139035
,1,21627,139040
,1,21628,139045
,1,21629,139050
,1,21630,139055
,1,21631,139060
,1,21632,139065
,1,21633,139070
,1,21634,139075
,1,21635,139080
,1,21636,139085
,1,21637,139090
,1,21638,139095
,1,21639,139100
,1,21640,139105
,1,21641,139110
,1,21642,139115
,1,21643,139120
,1,21644,139125
,1,21645,139130
,1,21646,139135
,1,21647,139140
,1,21648,139145
,1,21649,139150
,1,21650,139155
,1,21651,139160
,1,21652,139165
,1,21653,139170
,1,21654,139175
,1,21655,139180
,1,21656,139185
,1,21657,139190
,1,21658,139195
,1,21659,139200
,1,21660,139205
,1,21661,139210
,1,21662,139215
,1,21663,139220
,1,21664,139225
,1,21665,139230
,1,21666,139235
,1,21667,139240
,1,21668,139245
,1,21669,139250
,1,21670,139255
,1,21671,139260
,1,21672,139265
,1,21673,139270
,1,21674,139275
,1,21675,139280
,1,21676,139285
,1,21677,139290
,1,21678,139295
,1,21679,139300
,1,21680,139305
,1,21681,139310
,1,21682,139315
,1,21683,139320
,1,21684,139325
,1,21685,139330
,1,21686,139335
,1,21687,139340
,1,21688,139345
,1,21689,139350
,1,21690,139355
,1,21691,139360
,1,21692,139365
,1,21693,139370
,1,21694,139375
,1,21695,139380
,1,21696,139385
,1,21697,139390
,1,21698,139395
,1,21699,139400
,1,21700,139405
,1,21701,139410
,1,21702,139415
,1,21703,139420
,1,21704,139425
,1,21705,139430
,1,21706,139435
,1,21707,139440
,1,21708,139445
,1,21709,139450
,1,21710,139455
,1,21711,139460
,1,21712,139465
,1,21713,139470
,1,21714,139475
,1,21715,139480
,1,21716,139485
,1,21717,139490
,1,21718,139495
,1,21719,139500
,1,21720,139505
,1,21721,139510
,1,21722,139515
,1,21723,139520
,1,21724,139525
,1,21725,139530
,1,21726,139535
,1,21727,139540
,1,21728,139545
,1,21729,139550
,1,21730,139555
,1,21731,139560
,1,21732,139565
,1,21733,139570
,1,21734,139575
,1,21735,139580
,1,21736,139585
,1,21737,139590
,1,21738,139595
,1,21739,139600
,1,21740,139605
,1,21741,139610
,1,21742,139615
,1,21743,139620
,1,21744,139625
,1,21745,139630
,1,21746,139635
,1,21747,139640
,1,21748,139645
,1,21749,139650
,1,21750,139655
,1,21751,139660
,1,21752,139665
,1,21753,139670
,1,21754,139675
,1,21755,139680
,1,21756,139685
,1,21757,139690
,1,21758,139695
,1,21759,139700
,1,21760,139705
,1,21761,139710
,1,21762,139715
,1,21763,139720
,1,21764,139725
,1,21765,139730
,1,21766,139735
,1,21767,139740
,1,21768,139745
,1,21769,139750
,1,21770,139755
,1,21771,139760
,1,21772,139765
,1,21773,139770
,1,21774,139775
,1,21775,139780
,1,21776,139785
,1,21777,139790
,1,21778,139795
,1,21779,139800
,1,21780,139805
,1,21781,139810
,1,21782,139815
,1,21783,139820
,1,21784,139825
,1,21785,139830
,1,21786,139835
,1,21787,139840
,1,21788,139845
,1,21789,139850
,1,21790,139855
,1,21791,139860
,1,21792,139865
,1,21793,139870
,1,21794,139875
,1,21795,139880
,1,21796,139885
,1,21797,139890
,1,21798,139895
,1,21799,139900
,1,21800,139905
,1,21801,139910
,1,21802,139915
,1,21803,139920
,1,21804,139925
,1,21805,139930
,1,21806,139935
,1,21807,139940
,1,21808,139945
,1,21809,139950
,1,21810,139955
,1,21811,139960
,1,21812,139965
,1,21813,139970
,1,21814,139975
,1,21815,139980
,1,21816,139985
,1,21817,139990
,1,21818,139995
,1,21819,140000
,1,21820,140005
,1,21821,140010
,1,21822,140015
,1,21823,140020
,1,21824,140025
,1,21825,140030
,1,21826,140035
,1,21827,140040
,1,21828,140045
,1,21829,140050
,1,21830,140055
,1,21831,140060
,1,21832,140065
,1,21833,140070
,1,21834,140075
,1,21835,140080
,1,21836,140085
,1,21837,140090
,1,21838,140095
,1,21839,140100
,1,21840,140105
,1,21841,140110
,1,21842,140115
,1,21843,140120
,1,21844,140125
,1,21845,140130
,1,21846,140135
,1,21847,140140
,1,21848,140145
,1,21849,140150
,1,21850,140155
,1,21851,140160
,1,21852,140165
,1,21853,140170
,1,21854,140175
,1,21855,140180
,1,21856,140185
,1,21857,140190
,1,21858,140195
,1,21859,140200
,1,21860,140205
,1,21861,140210
,1,21862,140215
,1,21863,140220
,1,21864,140225
,1,21865,140230
,1,21866,140235
,1,21867,140240
,1,21868,140245
,1,21869,140250
,1,21870,140255
,1,21871,140260
,1,21872,140265
,1,21873,140270
,1,21874,140275
,1,21875,140280
,1,21876,140285
,1,21877,140290
,1,21878,140295
,1,21879,140300
,1,21880,140305
,1,21881,140310
,1,21882,140315
,1,21883,140320
,1,21884,140325
,1,21885,140330
,1,21886,140335
,1,21887,140340
,1,21888,140345
,1,21889,140350
,1,21890,140355
,1,21891,140360
,1,21892,140365
,1,21893,140370
,1,21894,140375
,1,21895,140380
,1,21896,140385
,1,21897,140390
,1,21898,140395
,1,21899,140400
,1,21900,140405
,1,21901,140410
,1,21902,140415
,1,21903,140420
,1,21904,140425
,1,21905,140430
,1,21906,140435
,1,21907,140440
,1,21908,140445
,1,21909,140450
,1,21910,140455
,1,21911,140460
,1,21912,140465
,1,21913,140470
,1,21914,140475
,1,21915,140480
,1,21916,140485
,1,21917,140490
,1,21918,140495
,1,21919,140500
,1,21920,140505
,1,21921,140510
,1,21922,140515
,1,21923,140520
,1,21924,140525
,1,21925,140530
,1,21926,140535
,1,21927,140540
,1,21928,140545
,1,21929,140550
,1,21930,140555
,1,21931,140560
,1,21932,140565
,1,21933,140570
,1,21934,140575
,1,21935,140580
,1,21936,140585
,1,21937,140590
,1,21938,140595
,1,21939,140600
,1,21940,140605
,1,21941,140610
,1,21942,140615
,1,21943,140620
,1,21944,140625
,1,21945,140630
,1,21946,140635
,1,21947,140640
,1,21948,140645
,1,21949,140650
,1,21950,140655
,1,21951,140660
,1,21952,140665
,1,21953,140670
,1,21954,140675
,1,21955,140680
,1,21956,140685
,1,21957,140690
,1,21958,140695
,1,21959,140700
,1,21960,140705
,1,21961,140710
,1,21962,140715
,1,21963,140720
,1,21964,140725
,1,21965,140730
,1,21966,140735
,1,21967,140740
,1,21968,140745
,1,21969,140750
,1,21970,140755
,1,21971,140760
,1,21972,140765
,1,21973,140770
,1,21974,140775
,1,21975,140780
,1,21976,140785
,1,21977,140790
,1,21978,140795
,1,21979,140800
,1,21980,140805
,1,21981,140810
,1,21982,140815
,1,21983,140820
,1,21984,140825
,1,21985,140830
,1,21986,140835
,1,21987,140840
,1,21988,140845
,1,21989,140850
,1,21990,140855
,1,21991,140860
,1,21992,140865
,1,21993,140870
,1,21994,140875
,1,21995,140880
,1,21996,140885
,1,21997,140890
,1,21998,140895
,1,21999,140900
,1,22000,140905
,1,22001,140910
,1,22002,140915
,1,22003,140920
,1,22004,140925
,1,22005,140930
,1,22006,140935
,1,22007,140940
,1,22008,140945
,1,22009,140950
,1,22010,140955
,1,22011,140960
,1,22012,140965
,1,22013,140970
,1,22014,140975
,1,22015,140980
,1,22016,140985
,1,22017,140990
,1,22018,140995
,1,22019,141000
,1,22020,141005
,1,22021,141010
,1,22022,141015
,1,22023,141020
,1,22024,141025
,1,22025,141030
,1,22026,141035
,1,22027,141040
,1,22028,141045
,1,22029,141050
,1,22030,141055
,1,22031,141060
,1,22032,141065
,1,22033,141070
,1,22034,141075
,1,22035,141080
,1,22036,141085
,1,22037,141090
,1,22038,141095
,1,22039,141100
,1,22040,141105
,1,22041,141110
,1,22042,141115
,1,22043,141120
,1,22044,141125
,1,22045,141130
,1,22046,141135
,1,22047,141140
,1,22048,141145
,1,22049,141150
,1,22050,141155
,1,22051,141160
,1,22052,141165
,1,22053,141170
,1,22054,141175
,1,22055,141180
,1,22056,141185
,1,22057,141190
,1,22058,141195
,1,22059,141200
,1,22060,141205
,1,22061,141210
,1,22062,141215
,1,22063,141220
,1,22064,141225
,1,22065,141230
,1,22066,141235
,1,22067,141240
,1,22068,141245
,1,22069,141250
,1,22070,141255
,1,22071,141260
,1,22072,141265
,1,22073,141270
,1,22074,141275
,1,22075,141280
,1,22076,141285
,1,22077,141290
,1,22078,141295
,1,22079,141300
,1,22080,141305
,1,22081,141310
,1,22082,141315
,1,22083,141320
,1,22084,141325
,1,22085,141330
,1,22086,141335
,1,22087,141340
,1,22088,141345
,1,22089,141350
,1,22090,141355
,1,22091,141360
,1,22092,141365
,1,22093,141370
,1,22094,141375
,1,22095,141380
,1,22096,141385
,1,22097,141390
,1,22098,141395
,1,22099,141400
,1,22100,141405
,1,22101,141410
,1,22102,141415
,1,22103,141420
,1,22104,141425
,1,22105,141430
,1,22106,141435
,1,22107,141440
,1,22108,141445
,1,22109,141450
,1,22110,141455
,1,22111,141460
,1,22112,141465
,1,22113,141470
,1,22114,141475
,1,22115,141480
,1,22116,141485
,1,22117,141490
,1,22118,141495
,1,22119,141500
,1,22120,141505
,1,22121,141510
,1,22122,141515
,1,22123,141520
,1,22124,141525
,1,22125,141530
,1,22126,141535
,1,22127,141540
,1,22128,141545
,1,22129,141550
,1,22130,141555
,1,22131,141560
,1,22132,141565
,1,22133,141570
,1,22134,141575
,1,22135,141580
,1,22136,141585
,1,22137,141590
,1,22138,141595
,1,22139,141600
,1,22140,141605
,1,22141,141610
,1,22142,141615
,1,22143,141620
,1,22144,141625
,1,22145,141630
,1,22146,141635
,1,22147,141640
,1,22148,141645
,1,22149,141650
,1,22150,141655
,1,22151,141660
,1,22152,141665
,1,22153,141670
,1,22154,141675
,1,22155,141680
,1,22156,141685
,1,22157,141690
,1,22158,141695
,1,22159,141700
,1,22160,141705
,1,22161,141710
,1,22162,141715
,1,22163,141720
,1,22164,141725
,1,22165,141730
,1,22166,141735
,1,22167,141740
,1,22168,141745
,1,22169,141750
,1,22170,141755
,1,22171,141760
,1,22172,141765
,1,22173,141770
,1,22174,141775
,1,22175,141780
,1,22176,141785
,1,22177,141790
,1,22178,141795
,1,22179,141800
,1,22180,141805
,1,22181,141810
,1,22182,141815
,1,22183,141820
,1,22184,141825
,1,22185,141830
,1,22186,141835
,1,22187,141840
,1,22188,141845
,1,22189,141850
,1,22190,141855
,1,22191,141860
,1,22192,141865
,1,22193,141870
,1,22194,141875
,1,22195,141880
,1,22196,141885
,1,22197,141890
,1,22198,141895
,1,22199,141900
,1,22200,141905
,1,22201,141910
,1,22202,141915
,1,22203,141920
,1,22204,141925
,1,22205,141930
,1,22206,141935
,1,22207,141940
,1,22208,141945
,1,22209,141950
,1,22210,141955
,1,22211,141960
,1,22212,141965
,1,22213,141970
,1,22214,141975
,1,22215,141980
,1,22216,141985
,1,22217,141990
,1,22218,141995
,1,22219,142000
,1,22220,142005
,1,22221,142010
,1,22222,142015
,1,22223,142020
,1,22224,142025
,1,22225,142030
,1,22226,142035
,1,22227,142040
,1,22228,142045
,1,22229,142050
,1,22230,142055
,1,22231,142060
,1,22232,142065
,1,22233,142070
,1,22234,142075
,1,22235,142080
,1,22236,142085
,1,22237,142090
,1,22238,142095
,1,22239,142100
,1,22240,142105
,1,22241,142110
,1,22242,142115
,1,22243,142120
,1,22244,142125
,1,22245,142130
,1,22246,142135
,1,22247,142140
,1,22248,142145
,1,22249,142150
,1,22250,142155
,1,22251,142160
,1,22252,142165
,1,22253,142170
,1,22254,142175
,1,22255,142180
,1,22256,142185
,1,22257,142190
,1,22258,142195
,1,22259,142200
,1,22260,142205
,1,22261,142210
,1,22262,142215
,1,22263,142220
,1,22264,142225
,1,22265,142230
,1,22266,142235
,1,22267,142240
,1,22268,142245
,1,22269,142250
,1,22270,142255
,1,22271,142260
,1,22272,142265
,1,22273,142270
,1,22274,142275
,1,22275,142280
,1,22276,142285
,1,22277,142290
,1,22278,142295
,1,22279,142300
,1,22280,142305
,1,22281,142310
,1,22282,142315
,1,22283,142320
,1,22284,142325
,1,22285,142330
,1,22286,142335
,1,22287,142340
,1,22288,142345
,1,22289,142350
,1,22290,142355
,1,22291,142360
,1,22292,142365
,1,22293,142370
,1,22294,142375
,1,22295,142380
,1,22296,142385
,1,22297,142390
,1,22298,142395
,1,22299,142400
,1,22300,142405
,1,22301,142410
,1,22302,142415
,1,22303,142420
,1,22304,142425
,1,22305,142430
,1,22306,142435
,1,22307,142440
,1,22308,142445
,1,22309,142450
,1,22310,142455
,1,22311,142460
,1,22312,142465
,1,22313,142470
,1,22314,142475
,1,22315,142480
,1,22316,142485
,1,22317,142490
,1,22318,142495
,1,22319,142500
,1,22320,142505
,1,22321,142510
,1,22322,142515
,1,22323,142520
,1,22324,142525
,1,22325,142530
,1,22326,142535
,1,22327,142540
,1,22328,142545
,1,22329,142550
,1,22330,142555
,1,22331,142560
,1,22332,142565
,1,22333,142570
,1,22334,142575
,1,22335,142580
,1,22336,142585
,1,22337,142590
,1,22338,142595
,1,22339,142600
,1,22340,142605
,1,22341,142610
,1,22342,142615
,1,22343,142620
,1,22344,142625
,1,22345,142630
,1,22346,142635
,1,22347,142640
,1,22348,142645
,1,22349,142650
,1,22350,142655
,1,22351,142660
,1,22352,142665
,1,22353,142670
,1,22354,142675
,1,22355,142680
,1,22356,142685
,1,22357,142690
,1,22358,142695
,1,22359,142700
,1,22360,142705
,1,22361,142710
,1,22362,142715
,1,22363,142720
,1,22364,142725
,1,22365,142730
,1,22366,142735
,1,22367,142740
,1,22368,142745
,1,22369,142750
,1,22370,142755
,1,22371,142760
,1,22372,142765
,1,22373,142770
,1,22374,142775
,1,22375,142780
,1,22376,142785
,1,22377,142790
,1,22378,142795
,1,22379,142800
,1,22380,142805
,1,22381,142810
,1,22382,142815
,1,22383,142820
,1,22384,142825
,1,22385,142830
,1,22386,142835
,1,22387,142840
,1,22388,142845
,1,22389,142850
,1,22390,142855
,1,22391,142860
,1,22392,142865
,1,22393,142870
,1,22394,142875
,1,22395,142880
,1,22396,142885
,1,22397,142890
,1,22398,142895
,1,22399,142900
,1,22400,142905
,1,22401,142910
,1,22402,142915
,1,22403,142920
,1,22404,142925
,1,22405,142930
,1,22406,142935
,1,22407,142940
,1,22408,142945
,1,22409,142950
,1,22410,142955
,1,22411,142960
,1,22412,142965
,1,22413,142970
,1,22414,142975
,1,22415,142980
,1,22416,142985
,1,22417,142990
,1,22418,142995
,1,22419,143000
,1,22420,143005
,1,22421,143010
,1,22422,143015
,1,22423,143020
,1,22424,143025
,1,22425,143030
,1,22426,143035
,1,22427,143040
,1,22428,143045
,1,22429,143050
,1,22430,143055
,1,22431,143060
,1,22432,143065
,1,22433,143070
,1,22434,143075
,1,22435,143080
,1,22436,143085
,1,22437,143090
,1,22438,143095
,1,22439,143100
,1,22440,143105
,1,22441,143110
,1,22442,143115
,1,22443,143120
,1,22444,143125
,1,22445,143130
,1,22446,143135
,1,22447,143140
,1,22448,143145
,1,22449,143150
,1,22450,143155
,1,22451,143160
,1,22452,143165
,1,22453,143170
,1,22454,143175
,1,22455,143180
,1,22456,143185
,1,22457,143190
,1,22458,143195
,1,22459,143200
,1,22460,143205
,1,22461,143210
,1,22462,143215
,1,22463,143220
,1,22464,143225
,1,22465,143230
,1,22466,143235
,1,22467,143240
,1,22468,143245
,1,22469,143250
,1,22470,143255
,1,22471,143260
,1,22472,143265
,1,22473,143270
,1,22474,143275
,1,22475,143280
,1,22476,143285
,1,22477,143290
,1,22478,143295
,1,22479,143300
,1,22480,143305
,1,22481,143310
,1,22482,143315
,1,22483,143320
,1,22484,143325
,1,22485,143330
,1,22486,143335
,1,22487,143340
,1,22488,143345
,1,22489,143350
,1,22490,143355
,1,22491,143360
,1,22492,143365
,1,22493,143370
,1,22494,143375
,1,22495,143380
,1,22496,143385
,1,22497,143390
,1,22498,143395
,1,22499,143400
,1,22500,143405
,1,22501,143410
,1,22502,143415
,1,22503,143420
,1,22504,143425
,1,22505,143430
,1,22506,143435
,1,22507,143440
,1,22508,143445
,1,22509,143450
,1,22510,143455
,1,22511,143460
,1,22512,143465
,1,22513,143470
,1,22514,143475
,1,22515,143480
,1,22516,143485
,1,22517,143490
,1,22518,143495
,1,22519,143500
,1,22520,143505
,1,22521,143510
,1,22522,143515
,1,22523,143520
,1,22524,143525
,1,22525,143530
,1,22526,143535
,1,22527,143540
,1,22528,143545
,1,22529,143550
,1,22530,143555
,1,22531,143560
,1,22532,143565
,1,22533,143570
,1,22534,143575
,1,22535,143580
,1,22536,143585
,1,22537,143590
,1,22538,143595
,1,22539,143600
,1,22540,143605
,1,22541,143610
,1,22542,143615
,1,22543,143620
,1,22544,143625
,1,22545,143630
,1,22546,143635
,1,22547,143640
,1,22548,143645
,1,22549,143650
,1,22550,143655
,1,22551,143660
,1,22552,143665
,1,22553,143670
,1,22554,143675
,1,22555,143680
,1,22556,143685
,1,22557,143690
,1,22558,143695
,1,22559,143700
,1,22560,143705
,1,22561,143710
,1,22562,143715
,1,22563,143720
,1,22564,143725
,1,22565,143730
,1,22566,143735
,1,22567,143740
,1,22568,143745
,1,22569,143750
,1,22570,143755
,1,22571,143760
,1,22572,143765
,1,22573,143770
,1,22574,143775
,1,22575,143780
,1,22576,143785
,1,22577,143790
,1,22578,143795
,1,22579,143800
,1,22580,143805
,1,22581,143810
,1,22582,143815
,1,22583,143820
,1,22584,143825
,1,22585,143830
,1,22586,143835
,1,22587,143840
,1,22588,143845
,1,22589,143850
,1,22590,143855
,1,22591,143860
,1,22592,143865
,1,22593,143870
,1,22594,143875
,1,22595,143880
,1,22596,143885
,1,22597,143890
,1,22598,143895
,1,22599,143900
,1,22600,143905
,1,22601,143910
,1,22602,143915
,1,22603,143920
,1,22604,143925
,1,22605,143930
,1,22606,143935
,1,22607,143940
,1,22608,143945
,1,22609,143950
,1,22610,143955
,1,22611,143960
,1,22612,143965
,1,22613,143970
,1,22614,143975
,1,22615,143980
,1,22616,143985
,1,22617,143990
,1,22618,143995
,1,22619,144000
,1,22620,144005
,1,22621,144010
,1,22622,144015
,1,22623,144020
,1,22624,144025
,1,22625,144030
,1,22626,144035
,1,22627,144040
,1,22628,144045
,1,22629,144050
,1,22630,144055
,1,22631,144060
,1,22632,144065
,1,22633,144070
,1,22634,144075
,1,22635,144080
,1,22636,144085
,1,22637,144090
,1,22638,144095
,1,22639,144100
,1,22640,144105
,1,22641,144110
,1,22642,144115
,1,22643,144120
,1,22644,144125
,1,22645,144130
,1,22646,144135
,1,22647,144140
,1,22648,144145
,1,22649,144150
,1,22650,144155
,1,22651,144160
,1,22652,144165
,1,22653,144170
,1,22654,144175
,1,22655,144180
,1,22656,144185
,1,22657,144190
,1,22658,144195
,1,22659,144200
,1,22660,144205
,1,22661,144210
,1,22662,144215
,1,22663,144220
,1,22664,144225
,1,22665,144230
,1,22666,144235
,1,22667,144240
,1,22668,144245
,1,22669,144250
,1,22670,144255
,1,22671,144260
,1,22672,144265
,1,22673,144270
,1,22674,144275
,1,22675,144280
,1,22676,144285
,1,22677,144290
,1,22678,144295
,1,22679,144300
,1,22680,144305
,1,22681,144310
,1,22682,144315
,1,22683,144320
,1,22684,144325
,1,22685,144330
,1,22686,144335
,1,22687,144340
,1,22688,144345
,1,22689,144350
,1,22690,144355
,1,22691,144360
,1,22692,144365
,1,22693,144370
,1,22694,144375
,1,22695,144380
,1,22696,144385
,1,22697,144390
,1,22698,144395
,1,22699,144400
,1,22700,144405
,1,22701,144410
,1,22702,144415
,1,22703,144420
,1,22704,144425
,1,22705,144430
,1,22706,144435
,1,22707,144440
,1,22708,144445
,1,22709,144450
,1,22710,144455
,1,22711,144460
,1,22712,144465
,1,22713,144470
,1,22714,144475
,1,22715,144480
,1,22716,144485
,1,22717,144490
,1,22718,144495
,1,22719,144500
,1,22720,144505
,1,22721,144510
,1,22722,144515
,1,22723,144520
,1,22724,144525
,1,22725,144530
,1,22726,144535
,1,22727,144540
,1,22728,144545
,1,22729,144550
,1,22730,144555
,1,22731,144560
,1,22732,144565
,1,22733,144570
,1,22734,144575
,1,22735,144580
,1,22736,144585
,1,22737,144590
,1,22738,144595
,1,22739,144600
,1,22740,144605
,1,22741,144610
,1,22742,144615
,1,22743,144620
,1,22744,144625
,1,22745,144630
,1,22746,144635
,1,22747,144640
,1,22748,144645
,1,22749,144650
,1,22750,144655
,1,22751,144660
,1,22752,144665
,1,22753,144670
,1,22754,144675
,1,22755,144680
,1,22756,144685
,1,22757,144690
,1,22758,144695
,1,22759,144700
,1,22760,144705
,1,22761,144710
,1,22762,144715
,1,22763,144720
,1,22764,144725
,1,22765,144730
,1,22766,144735
,1,22767,144740
,1,22768,144745
,1,22769,144750
,1,22770,144755
,1,22771,144760
,1,22772,144765
,1,22773,144770
,1,22774,144775
,1,22775,144780
,1,22776,144785
,1,22777,144790
,1,22778,144795
,1,22779,144800
,1,22780,144805
,1,22781,144810
,1,22782,144815
,1,22783,144820
,1,22784,144825
,1,22785,144830
,1,22786,144835
,1,22787,144840
,1,22788,144845
,1,22789,144850
,1,22790,144855
,1,22791,144860
,1,22792,144865
,1,22793,144870
,1,22794,144875
,1,22795,144880
,1,22796,144885
,1,22797,144890
,1,22798,144895
,1,22799,144900
,1,22800,144905
,1,22801,144910
,1,22802,144915
,1,22803,144920
,1,22804,144925
,1,22805,144930
,1,22806,144935
,1,22807,144940
,1,22808,144945
,1,22809,144950
,1,22810,144955
,1,22811,144960
,1,22812,144965
,1,22813,144970
,1,22814,144975
,1,22815,144980
,1,22816,144985
,1,22817,144990
,1,22818,144995
,1,22819,145000
,1,22820,145005
,1,22821,145010
,1,22822,145015
,1,22823,145020
,1,22824,145025
,1,22825,145030
,1,22826,145035
,1,22827,145040
,1,22828,145045
,1,22829,145050
,1,22830,145055
,1,22831,145060
,1,22832,145065
,1,22833,145070
,1,22834,145075
,1,22835,145080
,1,22836,145085
,1,22837,145090
,1,22838,145095
,1,22839,145100
,1,22840,145105
,1,22841,145110
,1,22842,145115
,1,22843,145120
,1,22844,145125
,1,22845,145130
,1,22846,145135
,1,22847,145140
,1,22848,145145
,1,22849,145150
,1,22850,145155
,1,22851,145160
,1,22852,145165
,1,22853,145170
,1,22854,145175
,1,22855,145180
,1,22856,145185
,1,22857,145190
,1,22858,145195
,1,22859,145200
,1,22860,145205
,1,22861,145210
,1,22862,145215
,1,22863,145220
,1,22864,145225
,1,22865,145230
,1,22866,145235
,1,22867,145240
,1,22868,145245
,1,22869,145250
,1,22870,145255
,1,22871,145260
,1,22872,145265
,1,22873,145270
,1,22874,145275
,1,22875,145280
,1,22876,145285
,1,22877,145290
,1,22878,145295
,1,22879,145300
,1,22880,145305
,1,22881,145310
,1,22882,145315
,1,22883,145320
,1,22884,145325
,1,22885,145330
,1,22886,145335
,1,22887,145340
,1,22888,145345
,1,22889,145350
,1,22890,145355
,1,22891,145360
,1,22892,145365
,1,22893,145370
,1,22894,145375
,1,22895,145380
,1,22896,145385
,1,22897,145390
,1,22898,145395
,1,22899,145400
,1,22900,145405
,1,22901,145410
,1,22902,145415
,1,22903,145420
,1,22904,145425
,1,22905,145430
,1,22906,145435
,1,22907,145440
,1,22908,145445
,1,22909,145450
,1,22910,145455
,1,22911,145460
,1,22912,145465
,1,22913,145470
,1,22914,145475
,1,22915,145480
,1,22916,145485
,1,22917,145490
,1,22918,145495
,1,22919,145500
,1,22920,145505
,1,22921,145510
,1,22922,145515
,1,22923,145520
,1,22924,145525
,1,22925,145530
,1,22926,145535
,1,22927,145540
,1,22928,145545
,1,22929,145550
,1,22930,145555
,1,22931,145560
,1,22932,145565
,1,22933,145570
,1,22934,145575
,1,22935,145580
,1,22936,145585
,1,22937,145590
,1,22938,145595
,1,22939,145600
,1,22940,145605
,1,22941,145610
,1,22942,145615
,1,22943,145620
,1,22944,145625
,1,22945,145630
,1,22946,145635
,1,22947,145640
,1,22948,145645
,1,22949,145650
,1,22950,145655
,1,22951,145660
,1,22952,145665
,1,22953,145670
,1,22954,145675
,1,22955,145680
,1,22956,145685
,1,22957,145690
,1,22958,145695
,1,22959,145700
,1,22960,145705
,1,22961,145710
,1,22962,145715
,1,22963,145720
,1,22964,145725
,1,22965,145730
,1,22966,145735
,1,22967,145740
,1,22968,145745
,1,22969,145750
,1,22970,145755
,1,22971,145760
,1,22972,145765
,1,22973,145770
,1,22974,145775
,1,22975,145780
,1,22976,145785
,1,22977,145790
,1,22978,145795
,1,22979,145800
,1,22980,145805
,1,22981,145810
,1,22982,145815
,1,22983,145820
,1,22984,145825
,1,22985,145830
,1,22986,145835
,1,22987,145840
,1,22988,145845
,1,22989,145850
,1,22990,145855
,1,22991,145860
,1,22992,145865
,1,22993,145870
,1,22994,145875
,1,22995,145880
,1,22996,145885
,1,22997,145890
,1,22998,145895
,1,22999,145900
,1,23000,145905
,1,23001,145910
,1,23002,145915
,1,23003,145920
,1,23004,145925
,1,23005,145930
,1,23006,145935
,1,23007,145940
,1,23008,145945
,1,23009,145950
,1,23010,145955
,1,23011,145960
,1,23012,145965
,1,23013,145970
,1,23014,145975
,1,23015,145980
,1,23016,145985
,1,23017,145990
,1,23018,145995
,1,23019,146000
,1,23020,146005
,1,23021,146010
,1,23022,146015
,1,23023,146020
,1,23024,146025
,1,23025,146030
,1,23026,146035
,1,23027,146040
,1,23028,146045
,1,23029,146050
,1,23030,146055
,1,23031,146060
,1,23032,146065
,1,23033,146070
,1,23034,146075
,1,23035,146080
,1,23036,146085
,1,23037,146090
,1,23038,146095
,1,23039,146100
,1,23040,146105
,1,23041,146110
,1,23042,146115
,1,23043,146120
,1,23044,146125
,1,23045,146130
,1,23046,146135
,1,23047,146140
,1,23048,146145
,1,23049,146150
,1,23050,146155
,1,23051,146160
,1,23052,146165
,1,23053,146170
,1,23054,146175
,1,23055,146180
,1,23056,146185
,1,23057,146190
,1,23058,146195
,1,23059,146200
,1,23060,146205
,1,23061,146210
,1,23062,146215
,1,23063,146220
,1,23064,146225
,1,23065,146230
,1,23066,146235
,1,23067,146240
,1,23068,146245
,1,23069,146250
,1,23070,146255
,1,23071,146260
,1,23072,146265
,1,23073,146270
,1,23074,146275
,1,23075,146280
,1,23076,146285
,1,23077,146290
,1,23078,146295
,1,23079,146300
,1,23080,146305
,1,23081,146310
,1,23082,146315
,1,23083,146320
,1,23084,146325
,1,23085,146330
,1,23086,146335
,1,23087,146340
,1,23088,146345
,1,23089,146350
,1,23090,146355
,1,23091,146360
,1,23092,146365
,1,23093,146370
,1,23094,146375
,1,23095,146380
,1,23096,146385
,1,23097,146390
,1,23098,146395
,1,23099,146400
,1,23100,146405
,1,23101,146410
,1,23102,146415
,1,23103,146420
,1,23104,146425
,1,23105,146430
,1,23106,146435
,1,23107,146440
,1,23108,146445
,1,23109,146450
,1,23110,146455
,1,23111,146460
,1,23112,146465
,1,23113,146470
,1,23114,146475
,1,23115,146480
,1,23116,146485
,1,23117,146490
,1,23118,146495
,1,23119,146500
,1,23120,146505
,1,23121,146510
,1,23122,146515
,1,23123,146520
,1,23124,146525
,1,23125,146530
,1,23126,146535
,1,23127,146540
,1,23128,146545
,1,23129,146550
,1,23130,146555
,1,23131,146560
,1,23132,146565
,1,23133,146570
,1,23134,146575
,1,23135,146580
,1,23136,146585
,1,23137,146590
,1,23138,146595
,1,23139,146600
,1,23140,146605
,1,23141,146610
,1,23142,146615
,1,23143,146620
,1,23144,146625
,1,23145,146630
,1,23146,146635
,1,23147,146640
,1,23148,146645
,1,23149,146650
,1,23150,146655
,1,23151,146660
,1,23152,146665
,1,23153,146670
,1,23154,146675
,1,23155,146680
,1,23156,146685
,1,23157,146690
,1,23158,146695
,1,23159,146700
,1,23160,146705
,1,23161,146710
,1,23162,146715
,1,23163,146720
,1,23164,146725
,1,23165,146730
,1,23166,146735
,1,23167,146740
,1,23168,146745
,1,23169,146750
,1,23170,146755
,1,23171,146760
,1,23172,146765
,1,23173,146770
,1,23174,146775
,1,23175,146780
,1,23176,146785
,1,23177,146790
,1,23178,146795
,1,23179,146800
,1,23180,146805
,1,23181,146810
,1,23182,146815
,1,23183,146820
,1,23184,146825
,1,23185,146830
,1,23186,146835
,1,23187,146840
,1,23188,146845
,1,23189,146850
,1,23190,146855
,1,23191,146860
,1,23192,146865
,1,23193,146870
,1,23194,146875
,1,23195,146880
,1,23196,146885
,1,23197,146890
,1,23198,146895
,1,23199,146900
,1,23200,146905
,1,23201,146910
,1,23202,146915
,1,23203,146920
,1,23204,146925
,1,23205,146930
,1,23206,146935
,1,23207,146940
,1,23208,146945
,1,23209,146950
,1,23210,146955
,1,23211,146960
,1,23212,146965
,1,23213,146970
,1,23214,146975
,1,23215,146980
,1,23216,146985
,1,23217,146990
,1,23218,146995
,1,23219,147000
,1,23220,147005
,1,23221,147010
,1,23222,147015
,1,23223,147020
,1,23224,147025
,1,23225,147030
,1,23226,147035
,1,23227,147040
,1,23228,147045
,1,23229,147050
,1,23230,147055
,1,23231,147060
,1,23232,147065
,1,23233,147070
,1,23234,147075
,1,23235,147080
,1,23236,147085
,1,23237,147090
,1,23238,147095
,1,23239,147100
,1,23240,147105
,1,23241,147110
,1,23242,147115
,1,23243,147120
,1,23244,147125
,1,23245,147130
,1,23246,147135
,1,23247,147140
,1,23248,147145
,1,23249,147150
,1,23250,147155
,1,23251,147160
,1,23252,147165
,1,23253,147170
,1,23254,147175
,1,23255,147180
,1,23256,147185
,1,23257,147190
,1,23258,147195
,1,23259,147200
,1,23260,147205
,1,23261,147210
,1,23262,147215
,1,23263,147220
,1,23264,147225
,1,23265,147230
,1,23266,147235
,1,23267,147240
,1,23268,147245
,1,23269,147250
,1,23270,147255
,1,23271,147260
,1,23272,147265
,1,23273,147270
,1,23274,147275
,1,23275,147280
,1,23276,147285
,1,23277,147290
,1,23278,147295
,1,23279,147300
,1,23280,147305
,1,23281,147310
,1,23282,147315
,1,23283,147320
,1,23284,147325
,1,23285,147330
,1,23286,147335
,1,23287,147340
,1,23288,147345
,1,23289,147350
,1,23290,147355
,1,23291,147360
,1,23292,147365
,1,23293,147370
,1,23294,147375
,1,23295,147380
,1,23296,147385
,1,23297,147390
,1,23298,147395
,1,23299,147400
,1,23300,147405
,1,23301,147410
,1,23302,147415
,1,23303,147420
,1,23304,147425
,1,23305,147430
,1,23306,147435
,1,23307,147440
,1,23308,147445
,1,23309,147450
,1,23310,147455
,1,23311,147460
,1,23312,147465
,1,23313,147470
,1,23314,147475
,1,23315,147480
,1,23316,147485
,1,23317,147490
,1,23318,147495
,1,23319,147500
,1,23320,147505
,1,23321,147510
,1,23322,147515
,1,23323,147520
,1,23324,147525
,1,23325,147530
,1,23326,147535
,1,23327,147540
,1,23328,147545
,1,23329,147550
,1,23330,147555
,1,23331,147560
,1,23332,147565
,1,23333,147570
,1,23334,147575
,1,23335,147580
,1,23336,147585
,1,23337,147590
,1,23338,147595
,1,23339,147600
,1,23340,147605
,1,23341,147610
,1,23342,147615
,1,23343,147620
,1,23344,147625
,1,23345,147630
,1,23346,147635
,1,23347,147640
,1,23348,147645
,1,23349,147650
,1,23350,147655
,1,23351,147660
,1,23352,147665
,1,23353,147670
,1,23354,147675
,1,23355,147680
,1,23356,147685
,1,23357,147690
,1,23358,147695
,1,23359,147700
,1,23360,147705
,1,23361,147710
,1,23362,147715
,1,23363,147720
,1,23364,147725
,1,23365,147730
,1,23366,147735
,1,23367,147740
,1,23368,147745
,1,23369,147750
,1,23370,147755
,1,23371,147760
,1,23372,147765
,1,23373,147770
,1,23374,147775
,1,23375,147780
,1,23376,147785
,1,23377,147790
,1,23378,147795
,1,23379,147800
,1,23380,147805
,1,23381,147810
,1,23382,147815
,1,23383,147820
,1,23384,147825
,1,23385,147830
,1,23386,147835
,1,23387,147840
,1,23388,147845
,1,23389,147850
,1,23390,147855
,1,23391,147860
,1,23392,147865
,1,23393,147870
,1,23394,147875
,1,23395,147880
,1,23396,147885
,1,23397,147890
,1,23398,147895
,1,23399,147900
,1,23400,147905
,1,23401,147910
,1,23402,147915
,1,23403,147920
,1,23404,147925
,1,23405,147930
,1,23406,147935
,1,23407,147940
,1,23408,147945
,1,23409,147950
,1,23410,147955
,1,23411,147960
,1,23412,147965
,1,23413,147970
,1,23414,147975
,1,23415,147980
,1,23416,147985
,1,23417,147990
,1,23418,147995
,1,23419,148000
,1,23420,148005
,1,23421,148010
,1,23422,148015
,1,23423,148020
,1,23424,148025
,1,23425,148030
,1,23426,148035
,1,23427,148040
,1,23428,148045
,1,23429,148050
,1,23430,148055
,1,23431,148060
,1,23432,148065
,1,23433,148070
,1,23434,148075
,1,23435,148080
,1,23436,148085
,1,23437,148090
,1,23438,148095
,1,23439,148100
,1,23440,148105
,1,23441,148110
,1,23442,148115
,1,23443,148120
,1,23444,148125
,1,23445,148130
,1,23446,148135
,1,23447,148140
,1,23448,148145
,1,23449,148150
,1,23450,148155
,1,23451,148160
,1,23452,148165
,1,23453,148170
,1,23454,148175
,1,23455,148180
,1,23456,148185
,1,23457,148190
,1,23458,148195
,1,23459,148200
,1,23460,148205
,1,23461,148210
,1,23462,148215
,1,23463,148220
,1,23464,148225
,1,23465,148230
,1,23466,148235
,1,23467,148240
,1,23468,148245
,1,23469,148250
,1,23470,148255
,1,23471,148260
,1,23472,148265
,1,23473,148270
,1,23474,148275
,1,23475,148280
,1,23476,148285
,1,23477,148290
,1,23478,148295
,1,23479,148300
,1,23480,148305
,1,23481,148310
,1,23482,148315
,1,23483,148320
,1,23484,148325
,1,23485,148330
,1,23486,148335
,1,23487,148340
,1,23488,148345
,1,23489,148350
,1,23490,148355
,1,23491,148360
,1,23492,148365
,1,23493,148370
,1,23494,148375
,1,23495,148380
,1,23496,148385
,1,23497,148390
,1,23498,148395
,1,23499,148400
,1,23500,148405
,1,23501,148410
,1,23502,148415
,1,23503,148420
,1,23504,148425
,1,23505,148430
,1,23506,148435
,1,23507,148440
,1,23508,148445
,1,23509,148450
,1,23510,148455
,1,23511,148460
,1,23512,148465
,1,23513,148470
,1,23514,148475
,1,23515,148480
,1,23516,148485
,1,23517,148490
,1,23518,148495
,1,23519,148500
,1,23520,148505
,1,23521,148510
,1,23522,148515
,1,23523,148520
,1,23524,148525
,1,23525,148530
,1,23526,148535
,1,23527,148540
,1,23528,148545
,1,23529,148550
,1,23530,148555
,1,23531,148560
,1,23532,148565
,1,23533,148570
,1,23534,148575
,1,23535,148580
,1,23536,148585
,1,23537,148590
,1,23538,148595
,1,23539,148600
,1,23540,148605
,1,23541,148610
,1,23542,148615
,1,23543,148620
,1,23544,148625
,1,23545,148630
,1,23546,148635
,1,23547,148640
,1,23548,148645
,1,23549,148650
,1,23550,148655
,1,23551,148660
,1,23552,148665
,1,23553,148670
,1,23554,148675
,1,23555,148680
,1,23556,148685
,1,23557,148690
,1,23558,148695
,1,23559,148700
,1,23560,148705
,1,23561,148710
,1,23562,148715
,1,23563,148720
,1,23564,148725
,1,23565,148730
,1,23566,148735
,1,23567,148740
,1,23568,148745
,1,23569,148750
,1,23570,148755
,1,23571,148760
,1,23572,148765
,1,23573,148770
,1,23574,148775
,1,23575,148780
,1,23576,148785
,1,23577,148790
,1,23578,148795
,1,23579,148800
,1,23580,148805
,1,23581,148810
,1,23582,148815
,1,23583,148820
,1,23584,148825
,1,23585,148830
,1,23586,148835
,1,23587,148840
,1,23588,148845
,1,23589,148850
,1,23590,148855
,1,23591,148860
,1,23592,148865
,1,23593,148870
,1,23594,148875
,1,23595,148880
,1,23596,148885
,1,23597,148890
,1,23598,148895
,1,23599,148900
,1,23600,148905
,1,23601,148910
,1,23602,148915
,1,23603,148920
,1,23604,148925
,1,23605,148930
,1,23606,148935
,1,23607,148940
,1,23608,148945
,1,23609,148950
,1,23610,148955
,1,23611,148960
,1,23612,148965
,1,23613,148970
,1,23614,148975
,1,23615,148980
,1,23616,148985
,1,23617,148990
,1,23618,148995
,1,23619,149000
,1,23620,149005
,1,23621,149010
,1,23622,149015
,1,23623,149020
,1,23624,149025
,1,23625,149030
,1,23626,149035
,1,23627,149040
,1,23628,149045
,1,23629,149050
,1,23630,149055
,1,23631,149060
,1,23632,149065
,1,23633,149070
,1,23634,149075
,1,23635,149080
,1,23636,149085
,1,23637,149090
,1,23638,149095
,1,23639,149100
,1,23640,149105
,1,23641,149110
,1,23642,149115
,1,23643,149120
,1,23644,149125
,1,23645,149130
,1,23646,149135
,1,23647,149140
,1,23648,149145
,1,23649,149150
,1,23650,149155
,1,23651,149160
,1,23652,149165
,1,23653,149170
,1,23654,149175
,1,23655,149180
,1,23656,149185
,1,23657,149190
,1,23658,149195
,1,23659,149200
,1,23660,149205
,1,23661,149210
,1,23662,149215
,1,23663,149220
,1,23664,149225
,1,23665,149230
,1,23666,149235
,1,23667,149240
,1,23668,149245
,1,23669,149250
,1,23670,149255
,1,23671,149260
,1,23672,149265
,1,23673,149270
,1,23674,149275
,1,23675,149280
,1,23676,149285
,1,23677,149290
,1,23678,149295
,1,23679,149300
,1,23680,149305
,1,23681,149310
,1,23682,149315
,1,23683,149320
,1,23684,149325
,1,23685,149330
,1,23686,149335
,1,23687,149340
,1,23688,149345
,1,23689,149350
,1,23690,149355
,1,23691,149360
,1,23692,149365
,1,23693,149370
,1,23694,149375
,1,23695,149380
,1,23696,149385
,1,23697,149390
,1,23698,149395
,1,23699,149400
,1,23700,149405
,1,23701,149410
,1,23702,149415
,1,23703,149420
,1,23704,149425
,1,23705,149430
,1,23706,149435
,1,23707,149440
,1,23708,149445
,1,23709,149450
,1,23710,149455
,1,23711,149460
,1,23712,149465
,1,23713,149470
,1,23714,149475
,1,23715,149480
,1,23716,149485
,1,23717,149490
,1,23718,149495
,1,23719,149500
,1,23720,149505
,1,23721,149510
,1,23722,149515
,1,23723,149520
,1,23724,149525
,1,23725,149530
,1,23726,149535
,1,23727,149540
,1,23728,149545
,1,23729,149550
,1,23730,149555
,1,23731,149560
,1,23732,149565
,1,23733,149570
,1,23734,149575
,1,23735,149580
,1,23736,149585
,1,23737,149590
,1,23738,149595
,1,23739,149600
,1,23740,149605
,1,23741,149610
,1,23742,149615
,1,23743,149620
,1,23744,149625
,1,23745,149630
,1,23746,149635
,1,23747,149640
,1,23748,149645
,1,23749,149650
,1,23750,149655
,1,23751,149660
,1,23752,149665
,1,23753,149670
,1,23754,149675
,1,23755,149680
,1,23756,149685
,1,23757,149690
,1,23758,149695
,1,23759,149700
,1,23760,149705
,1,23761,149710
,1,23762,149715
,1,23763,149720
,1,23764,149725
,1,23765,149730
,1,23766,149735
,1,23767,149740
,1,23768,149745
,1,23769,149750
,1,23770,149755
,1,23771,149760
,1,23772,149765
,1,23773,149770
,1,23774,149775
,1,23775,149780
,1,23776,149785
,1,23777,149790
,1,23778,149795
,1,23779,149800
,1,23780,149805
,1,23781,149810
,1,23782,149815
,1,23783,149820
,1,23784,149825
,1,23785,149830
,1,23786,149835
,1,23787,149840
,1,23788,149845
,1,23789,149850
,1,23790,149855
,1,23791,149860
,1,23792,149865
,1,23793,149870
,1,23794,149875
,1,23795,149880
,1,23796,149885
,1,23797,149890
,1,23798,149895
,1,23799,149900
,1,23800,149905
,1,23801,149910
,1,23802,149915
,1,23803,149920
,1,23804,149925
,1,23805,149930
,1,23806,149935
,1,23807,149940
,1,23808,149945
,1,23809,149950
,1,23810,149955
,1,23811,149960
,1,23812,149965
,1,23813,149970
,1,23814,149975
,1,23815,149980
,1,23816,149985
,1,23817,149990
,1,23818,149995
,1,23819,150000
,1,23820,150005
,1,23821,150010
,1,23822,150015
,1,23823,150020
,1,23824,150025
,1,23825,150030
,1,23826,150035
,1,23827,150040
,1,23828,150045
,1,23829,150050
,1,23830,150055
,1,23831,150060
,1,23832,150065
,1,23833,150070
,1,23834,150075
,1,23835,150080
,1,23836,150085
,1,23837,150090
,1,23838,150095
,1,23839,150100
,1,23840,150105
,1,23841,150110
,1,23842,150115
,1,23843,150120
,1,23844,150125
,1,23845,150130
,1,23846,150135
,1,23847,150140
,1,23848,150145
,1,23849,150150
,1,23850,150155
,1,23851,150160
,1,23852,150165
,1,23853,150170
,1,23854,150175
,1,23855,150180
,1,23856,150185
,1,23857,150190
,1,23858,150195
,1,23859,150200
,1,23860,150205
,1,23861,150210
,1,23862,150215
,1,23863,150220
,1,23864,150225
,1,23865,150230
,1,23866,150235
,1,23867,150240
,1,23868,150245
,1,23869,150250
,1,23870,150255
,1,23871,150260
,1,23872,150265
,1,23873,150270
,1,23874,150275
,1,23875,150280
,1,23876,150285
,1,23877,150290
,1,23878,150295
,1,23879,150300
,1,23880,150305
,1,23881,150310
,1,23882,150315
,1,23883,150320
,1,23884,150325
,1,23885,150330
,1,23886,150335
,1,23887,150340
,1,23888,150345
,1,23889,150350
,1,23890,150355
,1,23891,150360
,1,23892,150365
,1,23893,150370
,1,23894,150375
,1,23895,150380
,1,23896,150385
,1,23897,150390
,1,23898,150395
,1,23899,150400
,1,23900,150405
,1,23901,150410
,1,23902,150415
,1,23903,150420
,1,23904,150425
,1,23905,150430
,1,23906,150435
,1,23907,150440
,1,23908,150445
,1,23909,150450
,1,23910,150455
,1,23911,150460
,1,23912,150465
,1,23913,150470
,1,23914,150475
,1,23915,150480
,1,23916,150485
,1,23917,150490
,1,23918,150495
,1,23919,150500
,1,23920,150505
,1,23921,150510
,1,23922,150515
,1,23923,150520
,1,23924,150525
,1,23925,150530
,1,23926,150535
,1,23927,150540
,1,23928,150545
,1,23929,150550
,1,23930,150555
,1,23931,150560
,1,23932,150565
,1,23933,150570
,1,23934,150575
,1,23935,150580
,1,23936,150585
,1,23937,150590
,1,23938,150595
,1,23939,150600
,1,23940,150605
,1,23941,150610
,1,23942,150615
,1,23943,150620
,1,23944,150625
,1,23945,150630
,1,23946,150635
,1,23947,150640
,1,23948,150645
,1,23949,150650
,1,23950,150655
,1,23951,150660
,1,23952,150665
,1,23953,150670
,1,23954,150675
,1,23955,150680
,1,23956,150685
,1,23957,150690
,1,23958,150695
,1,23959,150700
,1,23960,150705
,1,23961,150710
,1,23962,150715
,1,23963,150720
,1,23964,150725
,1,23965,150730
,1,23966,150735
,1,23967,150740
,1,23968,150745
,1,23969,150750
,1,23970,150755
,1,23971,150760
,1,23972,150765
,1,23973,150770
,1,23974,150775
,1,23975,150780
,1,23976,150785
,1,23977,150790
,1,23978,150795
,1,23979,150800
,1,23980,150805
,1,23981,150810
,1,23982,150815
,1,23983,150820
,1,23984,150825
,1,23985,150830
,1,23986,150835
,1,23987,150840
,1,23988,150845
,1,23989,150850
,1,23990,150855
,1,23991,150860
,1,23992,150865
,1,23993,150870
,1,23994,150875
,1,23995,150880
,1,23996,150885
,1,23997,150890
,1,23998,150895
,1,23999,150900
,1,24000,150905
,1,24001,150910
,1,24002,150915
,1,24003,150920
,1,24004,150925
,1,24005,150930
,1,24006,150935
,1,24007,150940
,1,24008,150945
,1,24009,150950
,1,24010,150955
,1,24011,150960
,1,24012,150965
,1,24013,150970
,1,24014,150975
,1,24015,150980
,1,24016,150985
,1,24017,150990
,1,24018,150995
,1,24019,151000
,1,24020,151005
,1,24021,151010
,1,24022,151015
,1,24023,151020
,1,24024,151025
,1,24025,151030
,1,24026,151035
,1,24027,151040
,1,24028,151045
,1,24029,151050
,1,24030,151055
,1,24031,151060
,1,24032,151065
,1,24033,151070
,1,24034,151075
,1,24035,151080
,1,24036,151085
,1,24037,151090
,1,24038,151095
,1,24039,151100
,1,24040,151105
,1,24041,151110
,1,24042,151115
,1,24043,151120
,1,24044,151125
,1,24045,151130
,1,24046,151135
,1,24047,151140
,1,24048,151145
,1,24049,151150
,1,24050,151155
,1,24051,151160
,1,24052,151165
,1,24053,151170
,1,24054,151175
,1,24055,151180
,1,24056,151185
,1,24057,151190
,1,24058,151195
,1,24059,151200
,1,24060,151205
,1,24061,151210
,1,24062,151215
,1,24063,151220
,1,24064,151225
,1,24065,151230
,1,24066,151235
,1,24067,151240
,1,24068,151245
,1,24069,151250
,1,24070,151255
,1,24071,151260
,1,24072,151265
,1,24073,151270
,1,24074,151275
,1,24075,151280
,1,24076,151285
,1,24077,151290
,1,24078,151295
,1,24079,151300
,1,24080,151305
,1,24081,151310
,1,24082,151315
,1,24083,151320
,1,24084,151325
,1,24085,151330
,1,24086,151335
,1,24087,151340
,1,24088,151345
,1,24089,151350
,1,24090,151355
,1,24091,151360
,1,24092,151365
,1,24093,151370
,1,24094,151375
,1,24095,151380
,1,24096,151385
,1,24097,151390
,1,24098,151395
,1,24099,151400
,1,24100,151405
,1,24101,151410
,1,24102,151415
,1,24103,151420
,1,24104,151425
,1,24105,151430
,1,24106,151435
,1,24107,151440
,1,24108,151445
,1,24109,151450
,1,24110,151455
,1,24111,151460
,1,24112,151465
,1,24113,151470
,1,24114,151475
,1,24115,151480
,1,24116,151485
,1,24117,151490
,1,24118,151495
,1,24119,151500
,1,24120,151505
,1,24121,151510
,1,24122,151515
,1,24123,151520
,1,24124,151525
,1,24125,151530
,1,24126,151535
,1,24127,151540
,1,24128,151545
,1,24129,151550
,1,24130,151555
,1,24131,151560
,1,24132,151565
,1,24133,151570
,1,24134,151575
,1,24135,151580
,1,24136,151585
,1,24137,151590
,1,24138,151595
,1,24139,151600
,1,24140,151605
,1,24141,151610
,1,24142,151615
,1,24143,151620
,1,24144,151625
,1,24145,151630
,1,24146,151635
,1,24147,151640
,1,24148,151645
,1,24149,151650
,1,24150,151655
,1,24151,151660
,1,24152,151665
,1,24153,151670
,1,24154,151675
,1,24155,151680
,1,24156,151685
,1,24157,151690
,1,24158,151695
,1,24159,151700
,1,24160,151705
,1,24161,151710
,1,24162,151715
,1,24163,151720
,1,24164,151725
,1,24165,151730
,1,24166,151735
,1,24167,151740
,1,24168,151745
,1,24169,151750
,1,24170,151755
,1,24171,151760
,1,24172,151765
,1,24173,151770
,1,24174,151775
,1,24175,151780
,1,24176,151785
,1,24177,151790
,1,24178,151795
,1,24179,151800
,1,24180,151805
,1,24181,151810
,1,24182,151815
,1,24183,151820
,1,24184,151825
,1,24185,151830
,1,24186,151835
,1,24187,151840
,1,24188,151845
,1,24189,151850
,1,24190,151855
,1,24191,151860
,1,24192,151865
,1,24193,151870
,1,24194,151875
,1,24195,151880
,1,24196,151885
,1,24197,151890
,1,24198,151895
,1,24199,151900
,1,24200,151905
,1,24201,151910
,1,24202,151915
,1,24203,151920
,1,24204,151925
,1,24205,151930
,1,24206,151935
,1,24207,151940
,1,24208,151945
,1,24209,151950
,1,24210,151955
,1,24211,151960
,1,24212,151965
,1,24213,151970
,1,24214,151975
,1,24215,151980
,1,24216,151985
,1,24217,151990
,1,24218,151995
,1,24219,152000
,1,24220,152005
,1,24221,152010
,1,24222,152015
,1,24223,152020
,1,24224,152025
,1,24225,152030
,1,24226,152035
,1,24227,152040
,1,24228,152045
,1,24229,152050
,1,24230,152055
,1,24231,152060
,1,24232,152065
,1,24233,152070
,1,24234,152075
,1,24235,152080
,1,24236,152085
,1,24237,152090
,1,24238,152095
,1,24239,152100
,1,24240,152105
,1,24241,152110
,1,24242,152115
,1,24243,152120
,1,24244,152125
,1,24245,152130
,1,24246,152135
,1,24247,152140
,1,24248,152145
,1,24249,152150
,1,24250,152155
,1,24251,152160
,1,24252,152165
,1,24253,152170
,1,24254,152175
,1,24255,152180
,1,24256,152185
,1,24257,152190
,1,24258,152195
,1,24259,152200
,1,24260,152205
,1,24261,152210
,1,24262,152215
,1,24263,152220
,1,24264,152225
,1,24265,152230
,1,24266,152235
,1,24267,152240
,1,24268,152245
,1,24269,152250
,1,24270,152255
,1,24271,152260
,1,24272,152265
,1,24273,152270
,1,24274,152275
,1,24275,152280
,1,24276,152285
,1,24277,152290
,1,24278,152295
,1,24279,152300
,1,24280,152305
,1,24281,152310
,1,24282,152315
,1,24283,152320
,1,24284,152325
,1,24285,152330
,1,24286,152335
,1,24287,152340
,1,24288,152345
,1,24289,152350
,1,24290,152355
,1,24291,152360
,1,24292,152365
,1,24293,152370
,1,24294,152375
,1,24295,152380
,1,24296,152385
,1,24297,152390
,1,24298,152395
,1,24299,152400
,1,24300,152405
,1,24301,152410
,1,24302,152415
,1,24303,152420
,1,24304,152425
,1,24305,152430
,1,24306,152435
,1,24307,152440
,1,24308,152445
,1,24309,152450
,1,24310,152455
,1,24311,152460
,1,24312,152465
,1,24313,152470
,1,24314,152475
,1,24315,152480
,1,24316,152485
,1,24317,152490
,1,24318,152495
,1,24319,152500
,1,24320,152505
,1,24321,152510
,1,24322,152515
,1,24323,152520
,1,24324,152525
,1,24325,152530
,1,24326,152535
,1,24327,152540
,1,24328,152545
,1,24329,152550
,1,24330,152555
,1,24331,152560
,1,24332,152565
,1,24333,152570
,1,24334,152575
,1,24335,152580
,1,24336,152585
,1,24337,152590
,1,24338,152595
,1,24339,152600
,1,24340,152605
,1,24341,152610
,1,24342,152615
,1,24343,152620
,1,24344,152625
,1,24345,152630
,1,24346,152635
,1,24347,152640
,1,24348,152645
,1,24349,152650
,1,24350,152655
,1,24351,152660
,1,24352,152665
,1,24353,152670
,1,24354,152675
,1,24355,152680
,1,24356,152685
,1,24357,152690
,1,24358,152695
,1,24359,152700
,1,24360,152705
,1,24361,152710
,1,24362,152715
,1,24363,152720
,1,24364,152725
,1,24365,152730
,1,24366,152735
,1,24367,152740
,1,24368,152745
,1,24369,152750
,1,24370,152755
,1,24371,152760
,1,24372,152765
,1,24373,152770
,1,24374,152775
,1,24375,152780
,1,24376,152785
,1,24377,152790
,1,24378,152795
,1,24379,152800
,1,24380,152805
,1,24381,152810
,1,24382,152815
,1,24383,152820
,1,24384,152825
,1,24385,152830
,1,24386,152835
,1,24387,152840
,1,24388,152845
,1,24389,152850
,1,24390,152855
,1,24391,152860
,1,24392,152865
,1,24393,152870
,1,24394,152875
,1,24395,152880
,1,24396,152885
,1,24397,152890
,1,24398,152895
,1,24399,152900
,1,24400,152905
,1,24401,152910
,1,24402,152915
,1,24403,152920
,1,24404,152925
,1,24405,152930
,1,24406,152935
,1,24407,152940
,1,24408,152945
,1,24409,152950
,1,24410,152955
,1,24411,152960
,1,24412,152965
,1,24413,152970
,1,24414,152975
,1,24415,152980
,1,24416,152985
,1,24417,152990
,1,24418,152995
,1,24419,153000
,1,24420,153005
,1,24421,153010
,1,24422,153015
,1,24423,153020
,1,24424,153025
,1,24425,153030
,1,24426,153035
,1,24427,153040
,1,24428,153045
,1,24429,153050
,1,24430,153055
,1,24431,153060
,1,24432,153065
,1,24433,153070
,1,24434,153075
,1,24435,153080
,1,24436,153085
,1,24437,153090
,1,24438,153095
,1,24439,153100
,1,24440,153105
,1,24441,153110
,1,24442,153115
,1,24443,153120
,1,24444,153125
,1,24445,153130
,1,24446,153135
,1,24447,153140
,1,24448,153145
,1,24449,153150
,1,24450,153155
,1,24451,153160
,1,24452,153165
,1,24453,153170
,1,24454,153175
,1,24455,153180
,1,24456,153185
,1,24457,153190
,1,24458,153195
,1,24459,153200
,1,24460,153205
,1,24461,153210
,1,24462,153215
,1,24463,153220
,1,24464,153225
,1,24465,153230
,1,24466,153235
,1,24467,153240
,1,24468,153245
,1,24469,153250
,1,24470,153255
,1,24471,153260
,1,24472,153265
,1,24473,153270
,1,24474,153275
,1,24475,153280
,1,24476,153285
,1,24477,153290
,1,24478,153295
,1,24479,153300
,1,24480,153305
,1,24481,153310
,1,24482,153315
,1,24483,153320
,1,24484,153325
,1,24485,153330
,1,24486,153335
,1,24487,153340
,1,24488,153345
,1,24489,153350
,1,24490,153355
,1,24491,153360
,1,24492,153365
,1,24493,153370
,1,24494,153375
,1,24495,153380
,1,24496,153385
,1,24497,153390
,1,24498,153395
,1,24499,153400
,1,24500,153405
,1,24501,153410
,1,24502,153415
,1,24503,153420
,1,24504,153425
,1,24505,153430
,1,24506,153435
,1,24507,153440
,1,24508,153445
,1,24509,153450
,1,24510,153455
,1,24511,153460
,1,24512,153465
,1,24513,153470
,1,24514,153475
,1,24515,153480
,1,24516,153485
,1,24517,153490
,1,24518,153495
,1,24519,153500
,1,24520,153505
,1,24521,153510
,1,24522,153515
,1,24523,153520
,1,24524,153525
,1,24525,153530
,1,24526,153535
,1,24527,153540
,1,24528,153545
,1,24529,153550
,1,24530,153555
,1,24531,153560
,1,24532,153565
,1,24533,153570
,1,24534,153575
,1,24535,153580
,1,24536,153585
,1,24537,153590
,1,24538,153595
,1,24539,153600
,1,24540,153605
,1,24541,153610
,1,24542,153615
,1,24543,153620
,1,24544,153625
,1,24545,153630
,1,24546,153635
,1,24547,153640
,1,24548,153645
,1,24549,153650
,1,24550,153655
,1,24551,153660
,1,24552,153665
,1,24553,153670
,1,24554,153675
,1,24555,153680
,1,24556,153685
,1,24557,153690
,1,24558,153695
,1,24559,153700
,1,24560,153705
,1,24561,153710
,1,24562,153715
,1,24563,153720
,1,24564,153725
,1,24565,153730
,1,24566,153735
,1,24567,153740
,1,24568,153745
,1,24569,153750
,1,24570,153755
,1,24571,153760
,1,24572,153765
,1,24573,153770
,1,24574,153775
,1,24575,153780
,1,24576,153785
,1,24577,153790
,1,24578,153795
,1,24579,153800
,1,24580,153805
,1,24581,153810
,1,24582,153815
,1,24583,153820
,1,24584,153825
,1,24585,153830
,1,24586,153835
,1,24587,153840
,1,24588,153845
,1,24589,153850
,1,24590,153855
,1,24591,153860
,1,24592,153865
,1,24593,153870
,1,24594,153875
,1,24595,153880
,1,24596,153885
,1,24597,153890
,1,24598,153895
,1,24599,153900
,1,24600,153905
,1,24601,153910
,1,24602,153915
,1,24603,153920
,1,24604,153925
,1,24605,153930
,1,24606,153935
,1,24607,153940
,1,24608,153945
,1,24609,153950
,1,24610,153955
,1,24611,153960
,1,24612,153965
,1,24613,153970
,1,24614,153975
,1,24615,153980
,1,24616,153985
,1,24617,153990
,1,24618,153995
,1,24619,154000
,1,24620,154005
,1,24621,154010
,1,24622,154015
,1,24623,154020
,1,24624,154025
,1,24625,154030
,1,24626,154035
,1,24627,154040
,1,24628,154045
,1,24629,154050
,1,24630,154055
,1,24631,154060
,1,24632,154065
,1,24633,154070
,1,24634,154075
,1,24635,154080
,1,24636,154085
,1,24637,154090
,1,24638,154095
,1,24639,154100
,1,24640,154105
,1,24641,154110
,1,24642,154115
,1,24643,154120
,1,24644,154125
,1,24645,154130
,1,24646,154135
,1,24647,154140
,1,24648,154145
,1,24649,154150
,1,24650,154155
,1,24651,154160
,1,24652,154165
,1,24653,154170
,1,24654,154175
,1,24655,154180
,1,24656,154185
,1,24657,154190
,1,24658,154195
,1,24659,154200
,1,24660,154205
,1,24661,154210
,1,24662,154215
,1,24663,154220
,1,24664,154225
,1,24665,154230
,1,24666,154235
,1,24667,154240
,1,24668,154245
,1,24669,154250
,1,24670,154255
,1,24671,154260
,1,24672,154265
,1,24673,154270
,1,24674,154275
,1,24675,154280
,1,24676,154285
,1,24677,154290
,1,24678,154295
,1,24679,154300
,1,24680,154305
,1,24681,154310
,1,24682,154315
,1,24683,154320
,1,24684,154325
,1,24685,154330
,1,24686,154335
,1,24687,154340
,1,24688,154345
,1,24689,154350
,1,24690,154355
,1,24691,154360
,1,24692,154365
,1,24693,154370
,1,24694,154375
,1,24695,154380
,1,24696,154385
,1,24697,154390
,1,24698,154395
,1,24699,154400
,1,24700,154405
,1,24701,154410
,1,24702,154415
,1,24703,154420
,1,24704,154425
,1,24705,154430
,1,24706,154435
,1,24707,154440
,1,24708,154445
,1,24709,154450
,1,24710,154455
,1,24711,154460
,1,24712,154465
,1,24713,154470
,1,24714,154475
,1,24715,154480
,1,24716,154485
,1,24717,154490
,1,24718,154495
,1,24719,154500
,1,24720,154505
,1,24721,154510
,1,24722,154515
,1,24723,154520
,1,24724,154525
,1,24725,154530
,1,24726,154535
,1,24727,154540
,1,24728,154545
,1,24729,154550
,1,24730,154555
,1,24731,154560
,1,24732,154565
,1,24733,154570
,1,24734,154575
,1,24735,154580
,1,24736,154585
,1,24737,154590
,1,24738,154595
,1,24739,154600
,1,24740,154605
,1,24741,154610
,1,24742,154615
,1,24743,154620
,1,24744,154625
,1,24745,154630
,1,24746,154635
,1,24747,154640
,1,24748,154645
,1,24749,154650
,1,24750,154655
,1,24751,154660
,1,24752,154665
,1,24753,154670
,1,24754,154675
,1,24755,154680
,1,24756,154685
,1,24757,154690
,1,24758,154695
,1,24759,154700
,1,24760,154705
,1,24761,154710
,1,24762,154715
,1,24763,154720
,1,24764,154725
,1,24765,154730
,1,24766,154735
,1,24767,154740
,1,24768,154745
,1,24769,154750
,1,24770,154755
,1,24771,154760
,1,24772,154765
,1,24773,154770
,1,24774,154775
,1,24775,154780
,1,24776,154785
,1,24777,154790
,1,24778,154795
,1,24779,154800
,1,24780,154805
,1,24781,154810
,1,24782,154815
,1,24783,154820
,1,24784,154825
,1,24785,154830
,1,24786,154835
,1,24787,154840
,1,24788,154845
,1,24789,154850
,1,24790,154855
,1,24791,154860
,1,24792,154865
,1,24793,154870
,1,24794,154875
,1,24795,154880
,1,24796,154885
,1,24797,154890
,1,24798,154895
,1,24799,154900
,1,24800,154905
,1,24801,154910
,1,24802,154915
,1,24803,154920
,1,24804,154925
,1,24805,154930
,1,24806,154935
,1,24807,154940
,1,24808,154945
,1,24809,154950
,1,24810,154955
,1,24811,154960
,1,24812,154965
,1,24813,154970
,1,24814,154975
,1,24815,154980
,1,24816,154985
,1,24817,154990
,1,24818,154995
,1,24819,155000
,1,24820,155005
,1,24821,155010
,1,24822,155015
,1,24823,155020
,1,24824,155025
,1,24825,155030
,1,24826,155035
,1,24827,155040
,1,24828,155045
,1,24829,155050
,1,24830,155055
,1,24831,155060
,1,24832,155065
,1,24833,155070
,1,24834,155075
,1,24835,155080
,1,24836,155085
,1,24837,155090
,1,24838,155095
,1,24839,155100
,1,24840,155105
,1,24841,155110
,1,24842,155115
,1,24843,155120
,1,24844,155125
,1,24845,155130
,1,24846,155135
,1,24847,155140
,1,24848,155145
,1,24849,155150
,1,24850,155155
,1,24851,155160
,1,24852,155165
,1,24853,155170
,1,24854,155175
,1,24855,155180
,1,24856,155185
,1,24857,155190
,1,24858,155195
,1,24859,155200
,1,24860,155205
,1,24861,155210
,1,24862,155215
,1,24863,155220
,1,24864,155225
,1,24865,155230
,1,24866,155235
,1,24867,155240
,1,24868,155245
,1,24869,155250
,1,24870,155255
,1,24871,155260
,1,24872,155265
,1,24873,155270
,1,24874,155275
,1,24875,155280
,1,24876,155285
,1,24877,155290
,1,24878,155295
,1,24879,155300
,1,24880,155305
,1,24881,155310
,1,24882,155315
,1,24883,155320
,1,24884,155325
,1,24885,155330
,1,24886,155335
,1,24887,155340
,1,24888,155345
,1,24889,155350
,1,24890,155355
,1,24891,155360
,1,24892,155365
,1,24893,155370
,1,24894,155375
,1,24895,155380
,1,24896,155385
,1,24897,155390
,1,24898,155395
,1,24899,155400
,1,24900,155405
,1,24901,155410
,1,24902,155415
,1,24903,155420
,1,24904,155425
,1,24905,155430
,1,24906,155435
,1,24907,155440
,1,24908,155445
,1,24909,155450
,1,24910,155455
,1,24911,155460
,1,24912,155465
,1,24913,155470
,1,24914,155475
,1,24915,155480
,1,24916,155485
,1,24917,155490
,1,24918,155495
,1,24919,155500
,1,24920,155505
,1,24921,155510
,1,24922,155515
,1,24923,155520
,1,24924,155525
,1,24925,155530
,1,24926,155535
,1,24927,155540
,1,24928,155545
,1,24929,155550
,1,24930,155555
,1,24931,155560
,1,24932,155565
,1,24933,155570
,1,24934,155575
,1,24935,155580
,1,24936,155585
,1,24937,155590
,1,24938,155595
,1,24939,155600
,1,24940,155605
,1,24941,155610
,1,24942,155615
,1,24943,155620
,1,24944,155625
,1,24945,155630
,1,24946,155635
,1,24947,155640
,1,24948,155645
,1,24949,155650
,1,24950,155655
,1,24951,155660
,1,24952,155665
,1,24953,155670
,1,24954,155675
,1,24955,155680
,1,24956,155685
,1,24957,155690
,1,24958,155695
,1,24959,155700
,1,24960,155705
,1,24961,155710
,1,24962,155715
,1,24963,155720
,1,24964,155725
,1,24965,155730
,1,24966,155735
,1,24967,155740
,1,24968,155745
,1,24969,155750
,1,24970,155755
,1,24971,155760
,1,24972,155765
,1,24973,155770
,1,24974,155775
,1,24975,155780
,1,24976,155785
,1,24977,155790
,1,24978,155795
,1,24979,155800
,1,24980,155805
,1,24981,155810
,1,24982,155815
,1,24983,155820
,1,24984,155825
,1,24985,155830
,1,24986,155835
,1,24987,155840
,1,24988,155845
,1,24989,155850
,1,24990,155855
,1,24991,155860
,1,24992,155865
,1,24993,155870
,1,24994,155875
,1,24995,155880
,1,24996,155885
,1,24997,155890
,1,24998,155895
,1,24999,155900
,1,25000,155905
,1,25001,155910
,1,25002,155915
,1,25003,155920
,1,25004,155925
,1,25005,155930
,1,25006,155935
,1,25007,155940
,1,25008,155945
,1,25009,155950
,1,25010,155955
,1,25011,155960
,1,25012,155965
,1,25013,155970
,1,25014,155975
,1,25015,155980
,1,25016,155985
,1,25017,155990
,1,25018,155995
,1,25019,156000
,1,25020,156005
,1,25021,156010
,1,25022,156015
,1,25023,156020
,1,25024,156025
,1,25025,156030
,1,25026,156035
,1,25027,156040
,1,25028,156045
,1,25029,156050
,1,25030,156055
,1,25031,156060
,1,25032,156065
,1,25033,156070
,1,25034,156075
,1,25035,156080
,1,25036,156085
,1,25037,156090
,1,25038,156095
,1,25039,156100
,1,25040,156105
,1,25041,156110
,1,25042,156115
,1,25043,156120
,1,25044,156125
,1,25045,156130
,1,25046,156135
,1,25047,156140
,1,25048,156145
,1,25049,156150
,1,25050,156155
,1,25051,156160
,1,25052,156165
,1,25053,156170
,1,25054,156175
,1,25055,156180
,1,25056,156185
,1,25057,156190
,1,25058,156195
,1,25059,156200
,1,25060,156205
,1,25061,156210
,1,25062,156215
,1,25063,156220
,1,25064,156225
,1,25065,156230
,1,25066,156235
,1,25067,156240
,1,25068,156245
,1,25069,156250
,1,25070,156255
,1,25071,156260
,1,25072,156265
,1,25073,156270
,1,25074,156275
,1,25075,156280
,1,25076,156285
,1,25077,156290
,1,25078,156295
,1,25079,156300
,1,25080,156305
,1,25081,156310
,1,25082,156315
,1,25083,156320
,1,25084,156325
,1,25085,156330
,1,25086,156335
,1,25087,156340
,1,25088,156345
,1,25089,156350
,1,25090,156355
,1,25091,156360
,1,25092,156365
,1,25093,156370
,1,25094,156375
,1,25095,156380
,1,25096,156385
,1,25097,156390
,1,25098,156395
,1,25099,156400
,1,25100,156405
,1,25101,156410
,1,25102,156415
,1,25103,156420
,1,25104,156425
,1,25105,156430
,1,25106,156435
,1,25107,156440
,1,25108,156445
,1,25109,156450
,1,25110,156455
,1,25111,156460
,1,25112,156465
,1,25113,156470
,1,25114,156475
,1,25115,156480
,1,25116,156485
,1,25117,156490
,1,25118,156495
,1,25119,156500
,1,25120,156505
,1,25121,156510
,1,25122,156515
,1,25123,156520
,1,25124,156525
,1,25125,156530
,1,25126,156535
,1,25127,156540
,1,25128,156545
,1,25129,156550
,1,25130,156555
,1,25131,156560
,1,25132,156565
,1,25133,156570
,1,25134,156575
,1,25135,156580
,1,25136,156585
,1,25137,156590
,1,25138,156595
,1,25139,156600
,1,25140,156605
,1,25141,156610
,1,25142,156615
,1,25143,156620
,1,25144,156625
,1,25145,156630
,1,25146,156635
,1,25147,156640
,1,25148,156645
,1,25149,156650
,1,25150,156655
,1,25151,156660
,1,25152,156665
,1,25153,156670
,1,25154,156675
,1,25155,156680
,1,25156,156685
,1,25157,156690
,1,25158,156695
,1,25159,156700
,1,25160,156705
,1,25161,156710
,1,25162,156715
,1,25163,156720
,1,25164,156725
,1,25165,156730
,1,25166,156735
,1,25167,156740
,1,25168,156745
,1,25169,156750
,1,25170,156755
,1,25171,156760
,1,25172,156765
,1,25173,156770
,1,25174,156775
,1,25175,156780
,1,25176,156785
,1,25177,156790
,1,25178,156795
,1,25179,156800
,1,25180,156805
,1,25181,156810
,1,25182,156815
,1,25183,156820
,1,25184,156825
,1,25185,156830
,1,25186,156835
,1,25187,156840
,1,25188,156845
,1,25189,156850
,1,25190,156855
,1,25191,156860
,1,25192,156865
,1,25193,156870
,1,25194,156875
,1,25195,156880
,1,25196,156885
,1,25197,156890
,1,25198,156895
,1,25199,156900
,1,25200,156905
,1,25201,156910
,1,25202,156915
,1,25203,156920
,1,25204,156925
,1,25205,156930
,1,25206,156935
,1,25207,156940
,1,25208,156945
,1,25209,156950
,1,25210,156955
,1,25211,156960
,1,25212,156965
,1,25213,156970
,1,25214,156975
,1,25215,156980
,1,25216,156985
,1,25217,156990
,1,25218,156995
,1,25219,157000
,1,25220,157005
,1,25221,157010
,1,25222,157015
,1,25223,157020
,1,25224,157025
,1,25225,157030
,1,25226,157035
,1,25227,157040
,1,25228,157045
,1,25229,157050
,1,25230,157055
,1,25231,157060
,1,25232,157065
,1,25233,157070
,1,25234,157075
,1,25235,157080
,1,25236,157085
,1,25237,157090
,1,25238,157095
,1,25239,157100
,1,25240,157105
,1,25241,157110
,1,25242,157115
,1,25243,157120
,1,25244,157125
,1,25245,157130
,1,25246,157135
,1,25247,157140
,1,25248,157145
,1,25249,157150
,1,25250,157155
,1,25251,157160
,1,25252,157165
,1,25253,157170
,1,25254,157175
,1,25255,157180
,1,25256,157185
,1,25257,157190
,1,25258,157195
,1,25259,157200
,1,25260,157205
,1,25261,157210
,1,25262,157215
,1,25263,157220
,1,25264,157225
,1,25265,157230
,1,25266,157235
,1,25267,157240
,1,25268,157245
,1,25269,157250
,1,25270,157255
,1,25271,157260
,1,25272,157265
,1,25273,157270
,1,25274,157275
,1,25275,157280
,1,25276,157285
,1,25277,157290
,1,25278,157295
,1,25279,157300
,1,25280,157305
,1,25281,157310
,1,25282,157315
,1,25283,157320
,1,25284,157325
,1,25285,157330
,1,25286,157335
,1,25287,157340
,1,25288,157345
,1,25289,157350
,1,25290,157355
,1,25291,157360
,1,25292,157365
,1,25293,157370
,1,25294,157375
,1,25295,157380
,1,25296,157385
,1,25297,157390
,1,25298,157395
,1,25299,157400
,1,25300,157405
,1,25301,157410
,1,25302,157415
,1,25303,157420
,1,25304,157425
,1,25305,157430
,1,25306,157435
,1,25307,157440
,1,25308,157445
,1,25309,157450
,1,25310,157455
,1,25311,157460
,1,25312,157465
,1,25313,157470
,1,25314,157475
,1,25315,157480
,1,25316,157485
,1,25317,157490
,1,25318,157495
,1,25319,157500
,1,25320,157505
,1,25321,157510
,1,25322,157515
,1,25323,157520
,1,25324,157525
,1,25325,157530
,1,25326,157535
,1,25327,157540
,1,25328,157545
,1,25329,157550
,1,25330,157555
,1,25331,157560
,1,25332,157565
,1,25333,157570
,1,25334,157575
,1,25335,157580
,1,25336,157585
,1,25337,157590
,1,25338,157595
,1,25339,157600
,1,25340,157605
,1,25341,157610
,1,25342,157615
,1,25343,157620
,1,25344,157625
,1,25345,157630
,1,25346,157635
,1,25347,157640
,1,25348,157645
,1,25349,157650
,1,25350,157655
,1,25351,157660
,1,25352,157665
,1,25353,157670
,1,25354,157675
,1,25355,157680
,1,25356,157685
,1,25357,157690
,1,25358,157695
,1,25359,157700
,1,25360,157705
,1,25361,157710
,1,25362,157715
,1,25363,157720
,1,25364,157725
,1,25365,157730
,1,25366,157735
,1,25367,157740
,1,25368,157745
,1,25369,157750
,1,25370,157755
,1,25371,157760
,1,25372,157765
,1,25373,157770
,1,25374,157775
,1,25375,157780
,1,25376,157785
,1,25377,157790
,1,25378,157795
,1,25379,157800
,1,25380,157805
,1,25381,157810
,1,25382,157815
,1,25383,157820
,1,25384,157825
,1,25385,157830
,1,25386,157835
,1,25387,157840
,1,25388,157845
,1,25389,157850
,1,25390,157855
,1,25391,157860
,1,25392,157865
,1,25393,157870
,1,25394,157875
,1,25395,157880
,1,25396,157885
,1,25397,157890
,1,25398,157895
,1,25399,157900
,1,25400,157905
,1,25401,157910
,1,25402,157915
,1,25403,157920
,1,25404,157925
,1,25405,157930
,1,25406,157935
,1,25407,157940
,1,25408,157945
,1,25409,157950
,1,25410,157955
,1,25411,157960
,1,25412,157965
,1,25413,157970
,1,25414,157975
,1,25415,157980
,1,25416,157985
,1,25417,157990
,1,25418,157995
,1,25419,158000
,1,25420,158005
,1,25421,158010
,1,25422,158015
,1,25423,158020
,1,25424,158025
,1,25425,158030
,1,25426,158035
,1,25427,158040
,1,25428,158045
,1,25429,158050
,1,25430,158055
,1,25431,158060
,1,25432,158065
,1,25433,158070
,1,25434,158075
,1,25435,158080
,1,25436,158085
,1,25437,158090
,1,25438,158095
,1,25439,158100
,1,25440,158105
,1,25441,158110
,1,25442,158115
,1,25443,158120
,1,25444,158125
,1,25445,158130
,1,25446,158135
,1,25447,158140
,1,25448,158145
,1,25449,158150
,1,25450,158155
,1,25451,158160
,1,25452,158165
,1,25453,158170
,1,25454,158175
,1,25455,158180
,1,25456,158185
,1,25457,158190
,1,25458,158195
,1,25459,158200
,1,25460,158205
,1,25461,158210
,1,25462,158215
,1,25463,158220
,1,25464,158225
,1,25465,158230
,1,25466,158235
,1,25467,158240
,1,25468,158245
,1,25469,158250
,1,25470,158255
,1,25471,158260
,1,25472,158265
,1,25473,158270
,1,25474,158275
,1,25475,158280
,1,25476,158285
,1,25477,158290
,1,25478,158295
,1,25479,158300
,1,25480,158305
,1,25481,158310
,1,25482,158315
,1,25483,158320
,1,25484,158325
,1,25485,158330
,1,25486,158335
,1,25487,158340
,1,25488,158345
,1,25489,158350
,1,25490,158355
,1,25491,158360
,1,25492,158365
,1,25493,158370
,1,25494,158375
,1,25495,158380
,1,25496,158385
,1,25497,158390
,1,25498,158395
,1,25499,158400
,1,25500,158405
,1,25501,158410
,1,25502,158415
,1,25503,158420
,1,25504,158425
,1,25505,158430
,1,25506,158435
,1,25507,158440
,1,25508,158445
,1,25509,158450
,1,25510,158455
,1,25511,158460
,1,25512,158465
,1,25513,158470
,1,25514,158475
,1,25515,158480
,1,25516,158485
,1,25517,158490
,1,25518,158495
,1,25519,158500
,1,25520,158505
,1,25521,158510
,1,25522,158515
,1,25523,158520
,1,25524,158525
,1,25525,158530
,1,25526,158535
,1,25527,158540
,1,25528,158545
,1,25529,158550
,1,25530,158555
,1,25531,158560
,1,25532,158565
,1,25533,158570
,1,25534,158575
,1,25535,158580
,1,25536,158585
,1,25537,158590
,1,25538,158595
,1,25539,158600
,1,25540,158605
,1,25541,158610
,1,25542,158615
,1,25543,158620
,1,25544,158625
,1,25545,158630
,1,25546,158635
,1,25547,158640
,1,25548,158645
,1,25549,158650
,1,25550,158655
,1,25551,158660
,1,25552,158665
,1,25553,158670
,1,25554,158675
,1,25555,158680
,1,25556,158685
,1,25557,158690
,1,25558,158695
,1,25559,158700
,1,25560,158705
,1,25561,158710
,1,25562,158715
,1,25563,158720
,1,25564,158725
,1,25565,158730
,1,25566,158735
,1,25567,158740
,1,25568,158745
,1,25569,158750
,1,25570,158755
,1,25571,158760
,1,25572,158765
,1,25573,158770
,1,25574,158775
,1,25575,158780
,1,25576,158785
,1,25577,158790
,1,25578,158795
,1,25579,158800
,1,25580,158805
,1,25581,158810
,1,25582,158815
,1,25583,158820
,1,25584,158825
,1,25585,158830
,1,25586,158835
,1,25587,158840
,1,25588,158845
,1,25589,158850
,1,25590,158855
,1,25591,158860
,1,25592,158865
,1,25593,158870
,1,25594,158875
,1,25595,158880
,1,25596,158885
,1,25597,158890
,1,25598,158895
,1,25599,158900
,1,25600,158905
,1,25601,158910
,1,25602,158915
,1,25603,158920
,1,25604,158925
,1,25605,158930
,1,25606,158935
,1,25607,158940
,1,25608,158945
,1,25609,158950
,1,25610,158955
,1,25611,158960
,1,25612,158965
,1,25613,158970
,1,25614,158975
,1,25615,158980
,1,25616,158985
,1,25617,158990
,1,25618,158995
,1,25619,159000
,1,25620,159005
,1,25621,159010
,1,25622,159015
,1,25623,159020
,1,25624,159025
,1,25625,159030
,1,25626,159035
,1,25627,159040
,1,25628,159045
,1,25629,159050
,1,25630,159055
,1,25631,159060
,1,25632,159065
,1,25633,159070
,1,25634,159075
,1,25635,159080
,1,25636,159085
,1,25637,159090
,1,25638,159095
,1,25639,159100
,1,25640,159105
,1,25641,159110
,1,25642,159115
,1,25643,159120
,1,25644,159125
,1,25645,159130
,1,25646,159135
,1,25647,159140
,1,25648,159145
,1,25649,159150
,1,25650,159155
,1,25651,159160
,1,25652,159165
,1,25653,159170
,1,25654,159175
,1,25655,159180
,1,25656,159185
,1,25657,159190
,1,25658,159195
,1,25659,159200
,1,25660,159205
,1,25661,159210
,1,25662,159215
,1,25663,159220
,1,25664,159225
,1,25665,159230
,1,25666,159235
,1,25667,159240
,1,25668,159245
,1,25669,159250
,1,25670,159255
,1,25671,159260
,1,25672,159265
,1,25673,159270
,1,25674,159275
,1,25675,159280
,1,25676,159285
,1,25677,159290
,1,25678,159295
,1,25679,159300
,1,25680,159305
,1,25681,159310
,1,25682,159315
,1,25683,159320
,1,25684,159325
,1,25685,159330
,1,25686,159335
,1,25687,159340
,1,25688,159345
,1,25689,159350
,1,25690,159355
,1,25691,159360
,1,25692,159365
,1,25693,159370
,1,25694,159375
,1,25695,159380
,1,25696,159385
,1,25697,159390
,1,25698,159395
,1,25699,159400
,1,25700,159405
,1,25701,159410
,1,25702,159415
,1,25703,159420
,1,25704,159425
,1,25705,159430
,1,25706,159435
,1,25707,159440
,1,25708,159445
,1,25709,159450
,1,25710,159455
,1,25711,159460
,1,25712,159465
,1,25713,159470
,1,25714,159475
,1,25715,159480
,1,25716,159485
,1,25717,159490
,1,25718,159495
,1,25719,159500
,1,25720,159505
,1,25721,159510
,1,25722,159515
,1,25723,159520
,1,25724,159525
,1,25725,159530
,1,25726,159535
,1,25727,159540
,1,25728,159545
,1,25729,159550
,1,25730,159555
,1,25731,159560
,1,25732,159565
,1,25733,159570
,1,25734,159575
,1,25735,159580
,1,25736,159585
,1,25737,159590
,1,25738,159595
,1,25739,159600
,1,25740,159605
,1,25741,159610
,1,25742,159615
,1,25743,159620
,1,25744,159625
,1,25745,159630
,1,25746,159635
,1,25747,159640
,1,25748,159645
,1,25749,159650
,1,25750,159655
,1,25751,159660
,1,25752,159665
,1,25753,159670
,1,25754,159675
,1,25755,159680
,1,25756,159685
,1,25757,159690
,1,25758,159695
,1,25759,159700
,1,25760,159705
,1,25761,159710
,1,25762,159715
,1,25763,159720
,1,25764,159725
,1,25765,159730
,1,25766,159735
,1,25767,159740
,1,25768,159745
,1,25769,159750
,1,25770,159755
,1,25771,159760
,1,25772,159765
,1,25773,159770
,1,25774,159775
,1,25775,159780
,1,25776,159785
,1,25777,159790
,1,25778,159795
,1,25779,159800
,1,25780,159805
,1,25781,159810
,1,25782,159815
,1,25783,159820
,1,25784,159825
,1,25785,159830
,1,25786,159835
,1,25787,159840
,1,25788,159845
,1,25789,159850
,1,25790,159855
,1,25791,159860
,1,25792,159865
,1,25793,159870
,1,25794,159875
,1,25795,159880
,1,25796,159885
,1,25797,159890
,1,25798,159895
,1,25799,159900
,1,25800,159905
,1,25801,159910
,1,25802,159915
,1,25803,159920
,1,25804,159925
,1,25805,159930
,1,25806,159935
,1,25807,159940
,1,25808,159945
,1,25809,159950
,1,25810,159955
,1,25811,159960
,1,25812,159965
,1,25813,159970
,1,25814,159975
,1,25815,159980
,1,25816,159985
,1,25817,159990
,1,25818,159995
,1,25819,160000
,1,25820,160005
,1,25821,160010
,1,25822,160015
,1,25823,160020
,1,25824,160025
,1,25825,160030
,1,25826,160035
,1,25827,160040
,1,25828,160045
,1,25829,160050
,1,25830,160055
,1,25831,160060
,1,25832,160065
,1,25833,160070
,1,25834,160075
,1,25835,160080
,1,25836,160085
,1,25837,160090
,1,25838,160095
,1,25839,160100
,1,25840,160105
,1,25841,160110
,1,25842,160115
,1,25843,160120
,1,25844,160125
,1,25845,160130
,1,25846,160135
,1,25847,160140
,1,25848,160145
,1,25849,160150
,1,25850,160155
,1,25851,160160
,1,25852,160165
,1,25853,160170
,1,25854,160175
,1,25855,160180
,1,25856,160185
,1,25857,160190
,1,25858,160195
,1,25859,160200
,1,25860,160205
,1,25861,160210
,1,25862,160215
,1,25863,160220
,1,25864,160225
,1,25865,160230
,1,25866,160235
,1,25867,160240
,1,25868,160245
,1,25869,160250
,1,25870,160255
,1,25871,160260
,1,25872,160265
,1,25873,160270
,1,25874,160275
,1,25875,160280
,1,25876,160285
,1,25877,160290
,1,25878,160295
,1,25879,160300
,1,25880,160305
,1,25881,160310
,1,25882,160315
,1,25883,160320
,1,25884,160325
,1,25885,160330
,1,25886,160335
,1,25887,160340
,1,25888,160345
,1,25889,160350
,1,25890,160355
,1,25891,160360
,1,25892,160365
,1,25893,160370
,1,25894,160375
,1,25895,160380
,1,25896,160385
,1,25897,160390
,1,25898,160395
,1,25899,160400
,1,25900,160405
,1,25901,160410
,1,25902,160415
,1,25903,160420
,1,25904,160425
,1,25905,160430
,1,25906,160435
,1,25907,160440
,1,25908,160445
,1,25909,160450
,1,25910,160455
,1,25911,160460
,1,25912,160465
,1,25913,160470
,1,25914,160475
,1,25915,160480
,1,25916,160485
,1,25917,160490
,1,25918,160495
,1,25919,160500
,1,25920,160505
,1,25921,160510
,1,25922,160515
,1,25923,160520
,1,25924,160525
,1,25925,160530
,1,25926,160535
,1,25927,160540
,1,25928,160545
,1,25929,160550
,1,25930,160555
,1,25931,160560
,1,25932,160565
,1,25933,160570
,1,25934,160575
,1,25935,160580
,1,25936,160585
,1,25937,160590
,1,25938,160595
,1,25939,160600
,1,25940,160605
,1,25941,160610
,1,25942,160615
,1,25943,160620
,1,25944,160625
,1,25945,160630
,1,25946,160635
,1,25947,160640
,1,25948,160645
,1,25949,160650
,1,25950,160655
,1,25951,160660
,1,25952,160665
,1,25953,160670
,1,25954,160675
,1,25955,160680
,1,25956,160685
,1,25957,160690
,1,25958,160695
,1,25959,160700
,1,25960,160705
,1,25961,160710
,1,25962,160715
,1,25963,160720
,1,25964,160725
,1,25965,160730
,1,25966,160735
,1,25967,160740
,1,25968,160745
,1,25969,160750
,1,25970,160755
,1,25971,160760
,1,25972,160765
,1,25973,160770
,1,25974,160775
,1,25975,160780
,1,25976,160785
,1,25977,160790
,1,25978,160795
,1,25979,160800
,1,25980,160805
,1,25981,160810
,1,25982,160815
,1,25983,160820
,1,25984,160825
,1,25985,160830
,1,25986,160835
,1,25987,160840
,1,25988,160845
,1,25989,160850
,1,25990,160855
,1,25991,160860
,1,25992,160865
,1,25993,160870
,1,25994,160875
,1,25995,160880
,1,25996,160885
,1,25997,160890
,1,25998,160895
,1,25999,160900
,1,26000,160905
,1,26001,160910
,1,26002,160915
,1,26003,160920
,1,26004,160925
,1,26005,160930
,1,26006,160935
,1,26007,160940
,1,26008,160945
,1,26009,160950
,1,26010,160955
,1,26011,160960
,1,26012,160965
,1,26013,160970
,1,26014,160975
,1,26015,160980
,1,26016,160985
,1,26017,160990
,1,26018,160995
,1,26019,161000
,1,26020,161005
,1,26021,161010
,1,26022,161015
,1,26023,161020
,1,26024,161025
,1,26025,161030
,1,26026,161035
,1,26027,161040
,1,26028,161045
,1,26029,161050
,1,26030,161055
,1,26031,161060
,1,26032,161065
,1,26033,161070
,1,26034,161075
,1,26035,161080
,1,26036,161085
,1,26037,161090
,1,26038,161095
,1,26039,161100
,1,26040,161105
,1,26041,161110
,1,26042,161115
,1,26043,161120
,1,26044,161125
,1,26045,161130
,1,26046,161135
,1,26047,161140
,1,26048,161145
,1,26049,161150
,1,26050,161155
,1,26051,161160
,1,26052,161165
,1,26053,161170
,1,26054,161175
,1,26055,161180
,1,26056,161185
,1,26057,161190
,1,26058,161195
,1,26059,161200
,1,26060,161205
,1,26061,161210
,1,26062,161215
,1,26063,161220
,1,26064,161225
,1,26065,161230
,1,26066,161235
,1,26067,161240
,1,26068,161245
,1,26069,161250
,1,26070,161255
,1,26071,161260
,1,26072,161265
,1,26073,161270
,1,26074,161275
,1,26075,161280
,1,26076,161285
,1,26077,161290
,1,26078,161295
,1,26079,161300
,1,26080,161305
,1,26081,161310
,1,26082,161315
,1,26083,161320
,1,26084,161325
,1,26085,161330
,1,26086,161335
,1,26087,161340
,1,26088,161345
,1,26089,161350
,1,26090,161355
,1,26091,161360
,1,26092,161365
,1,26093,161370
,1,26094,161375
,1,26095,161380
,1,26096,161385
,1,26097,161390
,1,26098,161395
,1,26099,161400
,1,26100,161405
,1,26101,161410
,1,26102,161415
,1,26103,161420
,1,26104,161425
,1,26105,161430
,1,26106,161435
,1,26107,161440
,1,26108,161445
,1,26109,161450
,1,26110,161455
,1,26111,161460
,1,26112,161465
,1,26113,161470
,1,26114,161475
,1,26115,161480
,1,26116,161485
,1,26117,161490
,1,26118,161495
,1,26119,161500
,1,26120,161505
,1,26121,161510
,1,26122,161515
,1,26123,161520
,1,26124,161525
,1,26125,161530
,1,26126,161535
,1,26127,161540
,1,26128,161545
,1,26129,161550
,1,26130,161555
,1,26131,161560
,1,26132,161565
,1,26133,161570
,1,26134,161575
,1,26135,161580
,1,26136,161585
,1,26137,161590
,1,26138,161595
,1,26139,161600
,1,26140,161605
,1,26141,161610
,1,26142,161615
,1,26143,161620
,1,26144,161625
,1,26145,161630
,1,26146,161635
,1,26147,161640
,1,26148,161645
,1,26149,161650
,1,26150,161655
,1,26151,161660
,1,26152,161665
,1,26153,161670
,1,26154,161675
,1,26155,161680
,1,26156,161685
,1,26157,161690
,1,26158,161695
,1,26159,161700
,1,26160,161705
,1,26161,161710
,1,26162,161715
,1,26163,161720
,1,26164,161725
,1,26165,161730
,1,26166,161735
,1,26167,161740
,1,26168,161745
,1,26169,161750
,1,26170,161755
,1,26171,161760
,1,26172,161765
,1,26173,161770
,1,26174,161775
,1,26175,161780
,1,26176,161785
,1,26177,161790
,1,26178,161795
,1,26179,161800
,1,26180,161805
,1,26181,161810
,1,26182,161815
,1,26183,161820
,1,26184,161825
,1,26185,161830
,1,26186,161835
,1,26187,161840
,1,26188,161845
,1,26189,161850
,1,26190,161855
,1,26191,161860
,1,26192,161865
,1,26193,161870
,1,26194,161875
,1,26195,161880
,1,26196,161885
,1,26197,161890
,1,26198,161895
,1,26199,161900
,1,26200,161905
,1,26201,161910
,1,26202,161915
,1,26203,161920
,1,26204,161925
,1,26205,161930
,1,26206,161935
,1,26207,161940
,1,26208,161945
,1,26209,161950
,1,26210,161955
,1,26211,161960
,1,26212,161965
,1,26213,161970
,1,26214,161975
,1,26215,161980
,1,26216,161985
,1,26217,161990
,1,26218,161995
,1,26219,162000
,1,26220,162005
,1,26221,162010
,1,26222,162015
,1,26223,162020
,1,26224,162025
,1,26225,162030
,1,26226,162035
,1,26227,162040
,1,26228,162045
,1,26229,162050
,1,26230,162055
,1,26231,162060
,1,26232,162065
,1,26233,162070
,1,26234,162075
,1,26235,162080
,1,26236,162085
,1,26237,162090
,1,26238,162095
,1,26239,162100
,1,26240,162105
,1,26241,162110
,1,26242,162115
,1,26243,162120
,1,26244,162125
,1,26245,162130
,1,26246,162135
,1,26247,162140
,1,26248,162145
,1,26249,162150
,1,26250,162155
,1,26251,162160
,1,26252,162165
,1,26253,162170
,1,26254,162175
,1,26255,162180
,1,26256,162185
,1,26257,162190
,1,26258,162195
,1,26259,162200
,1,26260,162205
,1,26261,162210
,1,26262,162215
,1,26263,162220
,1,26264,162225
,1,26265,162230
,1,26266,162235
,1,26267,162240
,1,26268,162245
,1,26269,162250
,1,26270,162255
,1,26271,162260
,1,26272,162265
,1,26273,162270
,1,26274,162275
,1,26275,162280
,1,26276,162285
,1,26277,162290
,1,26278,162295
,1,26279,162300
,1,26280,162305
,1,26281,162310
,1,26282,162315
,1,26283,162320
,1,26284,162325
,1,26285,162330
,1,26286,162335
,1,26287,162340
,1,26288,162345
,1,26289,162350
,1,26290,162355
,1,26291,162360
,1,26292,162365
,1,26293,162370
,1,26294,162375
,1,26295,162380
,1,26296,162385
,1,26297,162390
,1,26298,162395
,1,26299,162400
,1,26300,162405
,1,26301,162410
,1,26302,162415
,1,26303,162420
,1,26304,162425
,1,26305,162430
,1,26306,162435
,1,26307,162440
,1,26308,162445
,1,26309,162450
,1,26310,162455
,1,26311,162460
,1,26312,162465
,1,26313,162470
,1,26314,162475
,1,26315,162480
,1,26316,162485
,1,26317,162490
,1,26318,162495
,1,26319,162500
,1,26320,162505
,1,26321,162510
,1,26322,162515
,1,26323,162520
,1,26324,162525
,1,26325,162530
,1,26326,162535
,1,26327,162540
,1,26328,162545
,1,26329,162550
,1,26330,162555
,1,26331,162560
,1,26332,162565
,1,26333,162570
,1,26334,162575
,1,26335,162580
,1,26336,162585
,1,26337,162590
,1,26338,162595
,1,26339,162600
,1,26340,162605
,1,26341,162610
,1,26342,162615
,1,26343,162620
,1,26344,162625
,1,26345,162630
,1,26346,162635
,1,26347,162640
,1,26348,162645
,1,26349,162650
,1,26350,162655
,1,26351,162660
,1,26352,162665
,1,26353,162670
,1,26354,162675
,1,26355,162680
,1,26356,162685
,1,26357,162690
,1,26358,162695
,1,26359,162700
,1,26360,162705
,1,26361,162710
,1,26362,162715
,1,26363,162720
,1,26364,162725
,1,26365,162730
,1,26366,162735
,1,26367,162740
,1,26368,162745
,1,26369,162750
,1,26370,162755
,1,26371,162760
,1,26372,162765
,1,26373,162770
,1,26374,162775
,1,26375,162780
,1,26376,162785
,1,26377,162790
,1,26378,162795
,1,26379,162800
,1,26380,162805
,1,26381,162810
,1,26382,162815
,1,26383,162820
,1,26384,162825
,1,26385,162830
,1,26386,162835
,1,26387,162840
,1,26388,162845
,1,26389,162850
,1,26390,162855
,1,26391,162860
,1,26392,162865
,1,26393,162870
,1,26394,162875
,1,26395,162880
,1,26396,162885
,1,26397,162890
,1,26398,162895
,1,26399,162900
,1,26400,162905
,1,26401,162910
,1,26402,162915
,1,26403,162920
,1,26404,162925
,1,26405,162930
,1,26406,162935
,1,26407,162940
,1,26408,162945
,1,26409,162950
,1,26410,162955
,1,26411,162960
,1,26412,162965
,1,26413,162970
,1,26414,162975
,1,26415,162980
,1,26416,162985
,1,26417,162990
,1,26418,162995
,1,26419,163000
,1,26420,163005
,1,26421,163010
,1,26422,163015
,1,26423,163020
,1,26424,163025
,1,26425,163030
,1,26426,163035
,1,26427,163040
,1,26428,163045
,1,26429,163050
,1,26430,163055
,1,26431,163060
,1,26432,163065
,1,26433,163070
,1,26434,163075
,1,26435,163080
,1,26436,163085
,1,26437,163090
,1,26438,163095
,1,26439,163100
,1,26440,163105
,1,26441,163110
,1,26442,163115
,1,26443,163120
,1,26444,163125
,1,26445,163130
,1,26446,163135
,1,26447,163140
,1,26448,163145
,1,26449,163150
,1,26450,163155
,1,26451,163160
,1,26452,163165
,1,26453,163170
,1,26454,163175
,1,26455,163180
,1,26456,163185
,1,26457,163190
,1,26458,163195
,1,26459,163200
,1,26460,163205
,1,26461,163210
,1,26462,163215
,1,26463,163220
,1,26464,163225
,1,26465,163230
,1,26466,163235
,1,26467,163240
,1,26468,163245
,1,26469,163250
,1,26470,163255
,1,26471,163260
,1,26472,163265
,1,26473,163270
,1,26474,163275
,1,26475,163280
,1,26476,163285
,1,26477,163290
,1,26478,163295
,1,26479,163300
,1,26480,163305
,1,26481,163310
,1,26482,163315
,1,26483,163320
,1,26484,163325
,1,26485,163330
,1,26486,163335
,1,26487,163340
,1,26488,163345
,1,26489,163350
,1,26490,163355
,1,26491,163360
,1,26492,163365
,1,26493,163370
,1,26494,163375
,1,26495,163380
,1,26496,163385
,1,26497,163390
,1,26498,163395
,1,26499,163400
,1,26500,163405
,1,26501,163410
,1,26502,163415
,1,26503,163420
,1,26504,163425
,1,26505,163430
,1,26506,163435
,1,26507,163440
,1,26508,163445
,1,26509,163450
,1,26510,163455
,1,26511,163460
,1,26512,163465
,1,26513,163470
,1,26514,163475
,1,26515,163480
,1,26516,163485
,1,26517,163490
,1,26518,163495
,1,26519,163500
,1,26520,163505
,1,26521,163510
,1,26522,163515
,1,26523,163520
,1,26524,163525
,1,26525,163530
,1,26526,163535
,1,26527,163540
,1,26528,163545
,1,26529,163550
,1,26530,163555
,1,26531,163560
,1,26532,163565
,1,26533,163570
,1,26534,163575
,1,26535,163580
,1,26536,163585
,1,26537,163590
,1,26538,163595
,1,26539,163600
,1,26540,163605
,1,26541,163610
,1,26542,163615
,1,26543,163620
,1,26544,163625
,1,26545,163630
,1,26546,163635
,1,26547,163640
,1,26548,163645
,1,26549,163650
,1,26550,163655
,1,26551,163660
,1,26552,163665
,1,26553,163670
,1,26554,163675
,1,26555,163680
,1,26556,163685
,1,26557,163690
,1,26558,163695
,1,26559,163700
,1,26560,163705
,1,26561,163710
,1,26562,163715
,1,26563,163720
,1,26564,163725
,1,26565,163730
,1,26566,163735
,1,26567,163740
,1,26568,163745
,1,26569,163750
,1,26570,163755
,1,26571,163760
,1,26572,163765
,1,26573,163770
,1,26574,163775
,1,26575,163780
,1,26576,163785
,1,26577,163790
,1,26578,163795
,1,26579,163800
,1,26580,163805
,1,26581,163810
,1,26582,163815
,1,26583,163820
,1,26584,163825
,1,26585,163830
,1,26586,163835
,1,26587,163840
,1,26588,163845
,1,26589,163850
,1,26590,163855
,1,26591,163860
,1,26592,163865
,1,26593,163870
,1,26594,163875
,1,26595,163880
,1,26596,163885
,1,26597,163890
,1,26598,163895
,1,26599,163900
,1,26600,163905
,1,26601,163910
,1,26602,163915
,1,26603,163920
,1,26604,163925
,1,26605,163930
,1,26606,163935
,1,26607,163940
,1,26608,163945
,1,26609,163950
,1,26610,163955
,1,26611,163960
,1,26612,163965
,1,26613,163970
,1,26614,163975
,1,26615,163980
,1,26616,163985
,1,26617,163990
,1,26618,163995
,1,26619,164000
,1,26620,164005
,1,26621,164010
,1,26622,164015
,1,26623,164020
,1,26624,164025
,1,26625,164030
,1,26626,164035
,1,26627,164040
,1,26628,164045
,1,26629,164050
,1,26630,164055
,1,26631,164060
,1,26632,164065
,1,26633,164070
,1,26634,164075
,1,26635,164080
,1,26636,164085
,1,26637,164090
,1,26638,164095
,1,26639,164100
,1,26640,164105
,1,26641,164110
,1,26642,164115
,1,26643,164120
,1,26644,164125
,1,26645,164130
,1,26646,164135
,1,26647,164140
,1,26648,164145
,1,26649,164150
,1,26650,164155
,1,26651,164160
,1,26652,164165
,1,26653,164170
,1,26654,164175
,1,26655,164180
,1,26656,164185
,1,26657,164190
,1,26658,164195
,1,26659,164200
,1,26660,164205
,1,26661,164210
,1,26662,164215
,1,26663,164220
,1,26664,164225
,1,26665,164230
,1,26666,164235
,1,26667,164240
,1,26668,164245
,1,26669,164250
,1,26670,164255
,1,26671,164260
,1,26672,164265
,1,26673,164270
,1,26674,164275
,1,26675,164280
,1,26676,164285
,1,26677,164290
,1,26678,164295
,1,26679,164300
,1,26680,164305
,1,26681,164310
,1,26682,164315
,1,26683,164320
,1,26684,164325
,1,26685,164330
,1,26686,164335
,1,26687,164340
,1,26688,164345
,1,26689,164350
,1,26690,164355
,1,26691,164360
,1,26692,164365
,1,26693,164370
,1,26694,164375
,1,26695,164380
,1,26696,164385
,1,26697,164390
,1,26698,164395
,1,26699,164400
,1,26700,164405
,1,26701,164410
,1,26702,164415
,1,26703,164420
,1,26704,164425
,1,26705,164430
,1,26706,164435
,1,26707,164440
,1,26708,164445
,1,26709,164450
,1,26710,164455
,1,26711,164460
,1,26712,164465
,1,26713,164470
,1,26714,164475
,1,26715,164480
,1,26716,164485
,1,26717,164490
,1,26718,164495
,1,26719,164500
,1,26720,164505
,1,26721,164510
,1,26722,164515
,1,26723,164520
,1,26724,164525
,1,26725,164530
,1,26726,164535
,1,26727,164540
,1,26728,164545
,1,26729,164550
,1,26730,164555
,1,26731,164560
,1,26732,164565
,1,26733,164570
,1,26734,164575
,1,26735,164580
,1,26736,164585
,1,26737,164590
,1,26738,164595
,1,26739,164600
,1,26740,164605
,1,26741,164610
,1,26742,164615
,1,26743,164620
,1,26744,164625
,1,26745,164630
,1,26746,164635
,1,26747,164640
,1,26748,164645
,1,26749,164650
,1,26750,164655
,1,26751,164660
,1,26752,164665
,1,26753,164670
,1,26754,164675
,1,26755,164680
,1,26756,164685
,1,26757,164690
,1,26758,164695
,1,26759,164700
,1,26760,164705
,1,26761,164710
,1,26762,164715
,1,26763,164720
,1,26764,164725
,1,26765,164730
,1,26766,164735
,1,26767,164740
,1,26768,164745
,1,26769,164750
,1,26770,164755
,1,26771,164760
,1,26772,164765
,1,26773,164770
,1,26774,164775
,1,26775,164780
,1,26776,164785
,1,26777,164790
,1,26778,164795
,1,26779,164800
,1,26780,164805
,1,26781,164810
,1,26782,164815
,1,26783,164820
,1,26784,164825
,1,26785,164830
,1,26786,164835
,1,26787,164840
,1,26788,164845
,1,26789,164850
,1,26790,164855
,1,26791,164860
,1,26792,164865
,1,26793,164870
,1,26794,164875
,1,26795,164880
,1,26796,164885
,1,26797,164890
,1,26798,164895
,1,26799,164900
,1,26800,164905
,1,26801,164910
,1,26802,164915
,1,26803,164920
,1,26804,164925
,1,26805,164930
,1,26806,164935
,1,26807,164940
,1,26808,164945
,1,26809,164950
,1,26810,164955
,1,26811,164960
,1,26812,164965
,1,26813,164970
,1,26814,164975
,1,26815,164980
,1,26816,164985
,1,26817,164990
,1,26818,164995
,1,26819,165000
,1,26820,165005
,1,26821,165010
,1,26822,165015
,1,26823,165020
,1,26824,165025
,1,26825,165030
,1,26826,165035
,1,26827,165040
,1,26828,165045
,1,26829,165050
,1,26830,165055
,1,26831,165060
,1,26832,165065
,1,26833,165070
,1,26834,165075
,1,26835,165080
,1,26836,165085
,1,26837,165090
,1,26838,165095
,1,26839,165100
,1,26840,165105
,1,26841,165110
,1,26842,165115
,1,26843,165120
,1,26844,165125
,1,26845,165130
,1,26846,165135
,1,26847,165140
,1,26848,165145
,1,26849,165150
,1,26850,165155
,1,26851,165160
,1,26852,165165
,1,26853,165170
,1,26854,165175
,1,26855,165180
,1,26856,165185
,1,26857,165190
,1,26858,165195
,1,26859,165200
,1,26860,165205
,1,26861,165210
,1,26862,165215
,1,26863,165220
,1,26864,165225
,1,26865,165230
,1,26866,165235
,1,26867,165240
,1,26868,165245
,1,26869,165250
,1,26870,165255
,1,26871,165260
,1,26872,165265
,1,26873,165270
,1,26874,165275
,1,26875,165280
,1,26876,165285
,1,26877,165290
,1,26878,165295
,1,26879,165300
,1,26880,165305
,1,26881,165310
,1,26882,165315
,1,26883,165320
,1,26884,165325
,1,26885,165330
,1,26886,165335
,1,26887,165340
,1,26888,165345
,1,26889,165350
,1,26890,165355
,1,26891,165360
,1,26892,165365
,1,26893,165370
,1,26894,165375
,1,26895,165380
,1,26896,165385
,1,26897,165390
,1,26898,165395
,1,26899,165400
,1,26900,165405
,1,26901,165410
,1,26902,165415
,1,26903,165420
,1,26904,165425
,1,26905,165430
,1,26906,165435
,1,26907,165440
,1,26908,165445
,1,26909,165450
,1,26910,165455
,1,26911,165460
,1,26912,165465
,1,26913,165470
,1,26914,165475
,1,26915,165480
,1,26916,165485
,1,26917,165490
,1,26918,165495
,1,26919,165500
,1,26920,165505
,1,26921,165510
,1,26922,165515
,1,26923,165520
,1,26924,165525
,1,26925,165530
,1,26926,165535
,1,26927,165540
,1,26928,165545
,1,26929,165550
,1,26930,165555
,1,26931,165560
,1,26932,165565
,1,26933,165570
,1,26934,165575
,1,26935,165580
,1,26936,165585
,1,26937,165590
,1,26938,165595
,1,26939,165600
,1,26940,165605
,1,26941,165610
,1,26942,165615
,1,26943,165620
,1,26944,165625
,1,26945,165630
,1,26946,165635
,1,26947,165640
,1,26948,165645
,1,26949,165650
,1,26950,165655
,1,26951,165660
,1,26952,165665
,1,26953,165670
,1,26954,165675
,1,26955,165680
,1,26956,165685
,1,26957,165690
,1,26958,165695
,1,26959,165700
,1,26960,165705
,1,26961,165710
,1,26962,165715
,1,26963,165720
,1,26964,165725
,1,26965,165730
,1,26966,165735
,1,26967,165740
,1,26968,165745
,1,26969,165750
,1,26970,165755
,1,26971,165760
,1,26972,165765
,1,26973,165770
,1,26974,165775
,1,26975,165780
,1,26976,165785
,1,26977,165790
,1,26978,165795
,1,26979,165800
,1,26980,165805
,1,26981,165810
,1,26982,165815
,1,26983,165820
,1,26984,165825
,1,26985,165830
,1,26986,165835
,1,26987,165840
,1,26988,165845
,1,26989,165850
,1,26990,165855
,1,26991,165860
,1,26992,165865
,1,26993,165870
,1,26994,165875
,1,26995,165880
,1,26996,165885
,1,26997,165890
,1,26998,165895
,1,26999,165900
,1,27000,165905
,1,27001,165910
,1,27002,165915
,1,27003,165920
,1,27004,165925
,1,27005,165930
,1,27006,165935
,1,27007,165940
,1,27008,165945
,1,27009,165950
,1,27010,165955
,1,27011,165960
,1,27012,165965
,1,27013,165970
,1,27014,165975
,1,27015,165980
,1,27016,165985
,1,27017,165990
,1,27018,165995
,1,27019,166000
,1,27020,166005
,1,27021,166010
,1,27022,166015
,1,27023,166020
,1,27024,166025
,1,27025,166030
,1,27026,166035
,1,27027,166040
,1,27028,166045
,1,27029,166050
,1,27030,166055
,1,27031,166060
,1,27032,166065
,1,27033,166070
,1,27034,166075
,1,27035,166080
,1,27036,166085
,1,27037,166090
,1,27038,166095
,1,27039,166100
,1,27040,166105
,1,27041,166110
,1,27042,166115
,1,27043,166120
,1,27044,166125
,1,27045,166130
,1,27046,166135
,1,27047,166140
,1,27048,166145
,1,27049,166150
,1,27050,166155
,1,27051,166160
,1,27052,166165
,1,27053,166170
,1,27054,166175
,1,27055,166180
,1,27056,166185
,1,27057,166190
,1,27058,166195
,1,27059,166200
,1,27060,166205
,1,27061,166210
,1,27062,166215
,1,27063,166220
,1,27064,166225
,1,27065,166230
,1,27066,166235
,1,27067,166240
,1,27068,166245
,1,27069,166250
,1,27070,166255
,1,27071,166260
,1,27072,166265
,1,27073,166270
,1,27074,166275
,1,27075,166280
,1,27076,166285
,1,27077,166290
,1,27078,166295
,1,27079,166300
,1,27080,166305
,1,27081,166310
,1,27082,166315
,1,27083,166320
,1,27084,166325
,1,27085,166330
,1,27086,166335
,1,27087,166340
,1,27088,166345
,1,27089,166350
,1,27090,166355
,1,27091,166360
,1,27092,166365
,1,27093,166370
,1,27094,166375
,1,27095,166380
,1,27096,166385
,1,27097,166390
,1,27098,166395
,1,27099,166400
,1,27100,166405
,1,27101,166410
,1,27102,166415
,1,27103,166420
,1,27104,166425
,1,27105,166430
,1,27106,166435
,1,27107,166440
,1,27108,166445
,1,27109,166450
,1,27110,166455
,1,27111,166460
,1,27112,166465
,1,27113,166470
,1,27114,166475
,1,27115,166480
,1,27116,166485
,1,27117,166490
,1,27118,166495
,1,27119,166500
,1,27120,166505
,1,27121,166510
,1,27122,166515
,1,27123,166520
,1,27124,166525
,1,27125,166530
,1,27126,166535
,1,27127,166540
,1,27128,166545
,1,27129,166550
,1,27130,166555
,1,27131,166560
,1,27132,166565
,1,27133,166570
,1,27134,166575
,1,27135,166580
,1,27136,166585
,1,27137,166590
,1,27138,166595
,1,27139,166600
,1,27140,166605
,1,27141,166610
,1,27142,166615
,1,27143,166620
,1,27144,166625
,1,27145,166630
,1,27146,166635
,1,27147,166640
,1,27148,166645
,1,27149,166650
,1,27150,166655
,1,27151,166660
,1,27152,166665
,1,27153,166670
,1,27154,166675
,1,27155,166680
,1,27156,166685
,1,27157,166690
,1,27158,166695
,1,27159,166700
,1,27160,166705
,1,27161,166710
,1,27162,166715
,1,27163,166720
,1,27164,166725
,1,27165,166730
,1,27166,166735
,1,27167,166740
,1,27168,166745
,1,27169,166750
,1,27170,166755
,1,27171,166760
,1,27172,166765
,1,27173,166770
,1,27174,166775
,1,27175,166780
,1,27176,166785
,1,27177,166790
,1,27178,166795
,1,27179,166800
,1,27180,166805
,1,27181,166810
,1,27182,166815
,1,27183,166820
,1,27184,166825
,1,27185,166830
,1,27186,166835
,1,27187,166840
,1,27188,166845
,1,27189,166850
,1,27190,166855
,1,27191,166860
,1,27192,166865
,1,27193,166870
,1,27194,166875
,1,27195,166880
,1,27196,166885
,1,27197,166890
,1,27198,166895
,1,27199,166900
,1,27200,166905
,1,27201,166910
,1,27202,166915
,1,27203,166920
,1,27204,166925
,1,27205,166930
,1,27206,166935
,1,27207,166940
,1,27208,166945
,1,27209,166950
,1,27210,166955
,1,27211,166960
,1,27212,166965
,1,27213,166970
,1,27214,166975
,1,27215,166980
,1,27216,166985
,1,27217,166990
,1,27218,166995
,1,27219,167000
,1,27220,167005
,1,27221,167010
,1,27222,167015
,1,27223,167020
,1,27224,167025
,1,27225,167030
,1,27226,167035
,1,27227,167040
,1,27228,167045
,1,27229,167050
,1,27230,167055
,1,27231,167060
,1,27232,167065
,1,27233,167070
,1,27234,167075
,1,27235,167080
,1,27236,167085
,1,27237,167090
,1,27238,167095
,1,27239,167100
,1,27240,167105
,1,27241,167110
,1,27242,167115
,1,27243,167120
,1,27244,167125
,1,27245,167130
,1,27246,167135
,1,27247,167140
,1,27248,167145
,1,27249,167150
,1,27250,167155
,1,27251,167160
,1,27252,167165
,1,27253,167170
,1,27254,167175
,1,27255,167180
,1,27256,167185
,1,27257,167190
,1,27258,167195
,1,27259,167200
,1,27260,167205
,1,27261,167210
,1,27262,167215
,1,27263,167220
,1,27264,167225
,1,27265,167230
,1,27266,167235
,1,27267,167240
,1,27268,167245
,1,27269,167250
,1,27270,167255
,1,27271,167260
,1,27272,167265
,1,27273,167270
,1,27274,167275
,1,27275,167280
,1,27276,167285
,1,27277,167290
,1,27278,167295
,1,27279,167300
,1,27280,167305
,1,27281,167310
,1,27282,167315
,1,27283,167320
,1,27284,167325
,1,27285,167330
,1,27286,167335
,1,27287,167340
,1,27288,167345
,1,27289,167350
,1,27290,167355
,1,27291,167360
,1,27292,167365
,1,27293,167370
,1,27294,167375
,1,27295,167380
,1,27296,167385
,1,27297,167390
,1,27298,167395
,1,27299,167400
,1,27300,167405
,1,27301,167410
,1,27302,167415
,1,27303,167420
,1,27304,167425
,1,27305,167430
,1,27306,167435
,1,27307,167440
,1,27308,167445
,1,27309,167450
,1,27310,167455
,1,27311,167460
,1,27312,167465
,1,27313,167470
,1,27314,167475
,1,27315,167480
,1,27316,167485
,1,27317,167490
,1,27318,167495
,1,27319,167500
,1,27320,167505
,1,27321,167510
,1,27322,167515
,1,27323,167520
,1,27324,167525
,1,27325,167530
,1,27326,167535
,1,27327,167540
,1,27328,167545
,1,27329,167550
,1,27330,167555
,1,27331,167560
,1,27332,167565
,1,27333,167570
,1,27334,167575
,1,27335,167580
,1,27336,167585
,1,27337,167590
,1,27338,167595
,1,27339,167600
,1,27340,167605
,1,27341,167610
,1,27342,167615
,1,27343,167620
,1,27344,167625
,1,27345,167630
,1,27346,167635
,1,27347,167640
,1,27348,167645
,1,27349,167650
,1,27350,167655
,1,27351,167660
,1,27352,167665
,1,27353,167670
,1,27354,167675
,1,27355,167680
,1,27356,167685
,1,27357,167690
,1,27358,167695
,1,27359,167700
,1,27360,167705
,1,27361,167710
,1,27362,167715
,1,27363,167720
,1,27364,167725
,1,27365,167730
,1,27366,167735
,1,27367,167740
,1,27368,167745
,1,27369,167750
,1,27370,167755
,1,27371,167760
,1,27372,167765
,1,27373,167770
,1,27374,167775
,1,27375,167780
,1,27376,167785
,1,27377,167790
,1,27378,167795
,1,27379,167800
,1,27380,167805
,1,27381,167810
,1,27382,167815
,1,27383,167820
,1,27384,167825
,1,27385,167830
,1,27386,167835
,1,27387,167840
,1,27388,167845
,1,27389,167850
,1,27390,167855
,1,27391,167860
,1,27392,167865
,1,27393,167870
,1,27394,167875
,1,27395,167880
,1,27396,167885
,1,27397,167890
,1,27398,167895
,1,27399,167900
,1,27400,167905
,1,27401,167910
,1,27402,167915
,1,27403,167920
,1,27404,167925
,1,27405,167930
,1,27406,167935
,1,27407,167940
,1,27408,167945
,1,27409,167950
,1,27410,167955
,1,27411,167960
,1,27412,167965
,1,27413,167970
,1,27414,167975
,1,27415,167980
,1,27416,167985
,1,27417,167990
,1,27418,167995
,1,27419,168000
,1,27420,168005
,1,27421,168010
,1,27422,168015
,1,27423,168020
,1,27424,168025
,1,27425,168030
,1,27426,168035
,1,27427,168040
,1,27428,168045
,1,27429,168050
,1,27430,168055
,1,27431,168060
,1,27432,168065
,1,27433,168070
,1,27434,168075
,1,27435,168080
,1,27436,168085
,1,27437,168090
,1,27438,168095
,1,27439,168100
,1,27440,168105
,1,27441,168110
,1,27442,168115
,1,27443,168120
,1,27444,168125
,1,27445,168130
,1,27446,168135
,1,27447,168140
,1,27448,168145
,1,27449,168150
,1,27450,168155
,1,27451,168160
,1,27452,168165
,1,27453,168170
,1,27454,168175
,1,27455,168180
,1,27456,168185
,1,27457,168190
,1,27458,168195
,1,27459,168200
,1,27460,168205
,1,27461,168210
,1,27462,168215
,1,27463,168220
,1,27464,168225
,1,27465,168230
,1,27466,168235
,1,27467,168240
,1,27468,168245
,1,27469,168250
,1,27470,168255
,1,27471,168260
,1,27472,168265
,1,27473,168270
,1,27474,168275
,1,27475,168280
,1,27476,168285
,1,27477,168290
,1,27478,168295
,1,27479,168300
,1,27480,168305
,1,27481,168310
,1,27482,168315
,1,27483,168320
,1,27484,168325
,1,27485,168330
,1,27486,168335
,1,27487,168340
,1,27488,168345
,1,27489,168350
,1,27490,168355
,1,27491,168360
,1,27492,168365
,1,27493,168370
,1,27494,168375
,1,27495,168380
,1,27496,168385
,1,27497,168390
,1,27498,168395
,1,27499,168400
,1,27500,168405
,1,27501,168410
,1,27502,168415
,1,27503,168420
,1,27504,168425
,1,27505,168430
,1,27506,168435
,1,27507,168440
,1,27508,168445
,1,27509,168450
,1,27510,168455
,1,27511,168460
,1,27512,168465
,1,27513,168470
,1,27514,168475
,1,27515,168480
,1,27516,168485
,1,27517,168490
,1,27518,168495
,1,27519,168500
,1,27520,168505
,1,27521,168510
,1,27522,168515
,1,27523,168520
,1,27524,168525
,1,27525,168530
,1,27526,168535
,1,27527,168540
,1,27528,168545
,1,27529,168550
,1,27530,168555
,1,27531,168560
,1,27532,168565
,1,27533,168570
,1,27534,168575
,1,27535,168580
,1,27536,168585
,1,27537,168590
,1,27538,168595
,1,27539,168600
,1,27540,168605
,1,27541,168610
,1,27542,168615
,1,27543,168620
,1,27544,168625
,1,27545,168630
,1,27546,168635
,1,27547,168640
,1,27548,168645
,1,27549,168650
,1,27550,168655
,1,27551,168660
,1,27552,168665
,1,27553,168670
,1,27554,168675
,1,27555,168680
,1,27556,168685
,1,27557,168690
,1,27558,168695
,1,27559,168700
,1,27560,168705
,1,27561,168710
,1,27562,168715
,1,27563,168720
,1,27564,168725
,1,27565,168730
,1,27566,168735
,1,27567,168740
,1,27568,168745
,1,27569,168750
,1,27570,168755
,1,27571,168760
,1,27572,168765
,1,27573,168770
,1,27574,168775
,1,27575,168780
,1,27576,168785
,1,27577,168790
,1,27578,168795
,1,27579,168800
,1,27580,168805
,1,27581,168810
,1,27582,168815
,1,27583,168820
,1,27584,168825
,1,27585,168830
,1,27586,168835
,1,27587,168840
,1,27588,168845
,1,27589,168850
,1,27590,168855
,1,27591,168860
,1,27592,168865
,1,27593,168870
,1,27594,168875
,1,27595,168880
,1,27596,168885
,1,27597,168890
,1,27598,168895
,1,27599,168900
,1,27600,168905
,1,27601,168910
,1,27602,168915
,1,27603,168920
,1,27604,168925
,1,27605,168930
,1,27606,168935
,1,27607,168940
,1,27608,168945
,1,27609,168950
,1,27610,168955
,1,27611,168960
,1,27612,168965
,1,27613,168970
,1,27614,168975
,1,27615,168980
,1,27616,168985
,1,27617,168990
,1,27618,168995
,1,27619,169000
,1,27620,169005
,1,27621,169010
,1,27622,169015
,1,27623,169020
,1,27624,169025
,1,27625,169030
,1,27626,169035
,1,27627,169040
,1,27628,169045
,1,27629,169050
,1,27630,169055
,1,27631,169060
,1,27632,169065
,1,27633,169070
,1,27634,169075
,1,27635,169080
,1,27636,169085
,1,27637,169090
,1,27638,169095
,1,27639,169100
,1,27640,169105
,1,27641,169110
,1,27642,169115
,1,27643,169120
,1,27644,169125
,1,27645,169130
,1,27646,169135
,1,27647,169140
,1,27648,169145
,1,27649,169150
,1,27650,169155
,1,27651,169160
,1,27652,169165
,1,27653,169170
,1,27654,169175
,1,27655,169180
,1,27656,169185
,1,27657,169190
,1,27658,169195
,1,27659,169200
,1,27660,169205
,1,27661,169210
,1,27662,169215
,1,27663,169220
,1,27664,169225
,1,27665,169230
,1,27666,169235
,1,27667,169240
,1,27668,169245
,1,27669,169250
,1,27670,169255
,1,27671,169260
,1,27672,169265
,1,27673,169270
,1,27674,169275
,1,27675,169280
,1,27676,169285
,1,27677,169290
,1,27678,169295
,1,27679,169300
,1,27680,169305
,1,27681,169310
,1,27682,169315
,1,27683,169320
,1,27684,169325
,1,27685,169330
,1,27686,169335
,1,27687,169340
,1,27688,169345
,1,27689,169350
,1,27690,169355
,1,27691,169360
,1,27692,169365
,1,27693,169370
,1,27694,169375
,1,27695,169380
,1,27696,169385
,1,27697,169390
,1,27698,169395
,1,27699,169400
,1,27700,169405
,1,27701,169410
,1,27702,169415
,1,27703,169420
,1,27704,169425
,1,27705,169430
,1,27706,169435
,1,27707,169440
,1,27708,169445
,1,27709,169450
,1,27710,169455
,1,27711,169460
,1,27712,169465
,1,27713,169470
,1,27714,169475
,1,27715,169480
,1,27716,169485
,1,27717,169490
,1,27718,169495
,1,27719,169500
,1,27720,169505
,1,27721,169510
,1,27722,169515
,1,27723,169520
,1,27724,169525
,1,27725,169530
,1,27726,169535
,1,27727,169540
,1,27728,169545
,1,27729,169550
,1,27730,169555
,1,27731,169560
,1,27732,169565
,1,27733,169570
,1,27734,169575
,1,27735,169580
,1,27736,169585
,1,27737,169590
,1,27738,169595
,1,27739,169600
,1,27740,169605
,1,27741,169610
,1,27742,169615
,1,27743,169620
,1,27744,169625
,1,27745,169630
,1,27746,169635
,1,27747,169640
,1,27748,169645
,1,27749,169650
,1,27750,169655
,1,27751,169660
,1,27752,169665
,1,27753,169670
,1,27754,169675
,1,27755,169680
,1,27756,169685
,1,27757,169690
,1,27758,169695
,1,27759,169700
,1,27760,169705
,1,27761,169710
,1,27762,169715
,1,27763,169720
,1,27764,169725
,1,27765,169730
,1,27766,169735
,1,27767,169740
,1,27768,169745
,1,27769,169750
,1,27770,169755
,1,27771,169760
,1,27772,169765
,1,27773,169770
,1,27774,169775
,1,27775,169780
,1,27776,169785
,1,27777,169790
,1,27778,169795
,1,27779,169800
,1,27780,169805
,1,27781,169810
,1,27782,169815
,1,27783,169820
,1,27784,169825
,1,27785,169830
,1,27786,169835
,1,27787,169840
,1,27788,169845
,1,27789,169850
,1,27790,169855
,1,27791,169860
,1,27792,169865
,1,27793,169870
,1,27794,169875
,1,27795,169880
,1,27796,169885
,1,27797,169890
,1,27798,169895
,1,27799,169900
,1,27800,169905
,1,27801,169910
,1,27802,169915
,1,27803,169920
,1,27804,169925
,1,27805,169930
,1,27806,169935
,1,27807,169940
,1,27808,169945
,1,27809,169950
,1,27810,169955
,1,27811,169960
,1,27812,169965
,1,27813,169970
,1,27814,169975
,1,27815,169980
,1,27816,169985
,1,27817,169990
,1,27818,169995
,1,27819,170000
,1,27820,170005
,1,27821,170010
,1,27822,170015
,1,27823,170020
,1,27824,170025
,1,27825,170030
,1,27826,170035
,1,27827,170040
,1,27828,170045
,1,27829,170050
,1,27830,170055
,1,27831,170060
,1,27832,170065
,1,27833,170070
,1,27834,170075
,1,27835,170080
,1,27836,170085
,1,27837,170090
,1,27838,170095
,1,27839,170100
,1,27840,170105
,1,27841,170110
,1,27842,170115
,1,27843,170120
,1,27844,170125
,1,27845,170130
,1,27846,170135
,1,27847,170140
,1,27848,170145
,1,27849,170150
,1,27850,170155
,1,27851,170160
,1,27852,170165
,1,27853,170170
,1,27854,170175
,1,27855,170180
,1,27856,170185
,1,27857,170190
,1,27858,170195
,1,27859,170200
,1,27860,170205
,1,27861,170210
,1,27862,170215
,1,27863,170220
,1,27864,170225
,1,27865,170230
,1,27866,170235
,1,27867,170240
,1,27868,170245
,1,27869,170250
,1,27870,170255
,1,27871,170260
,1,27872,170265
,1,27873,170270
,1,27874,170275
,1,27875,170280
,1,27876,170285
,1,27877,170290
,1,27878,170295
,1,27879,170300
,1,27880,170305
,1,27881,170310
,1,27882,170315
,1,27883,170320
,1,27884,170325
,1,27885,170330
,1,27886,170335
,1,27887,170340
,1,27888,170345
,1,27889,170350
,1,27890,170355
,1,27891,170360
,1,27892,170365
,1,27893,170370
,1,27894,170375
,1,27895,170380
,1,27896,170385
,1,27897,170390
,1,27898,170395
,1,27899,170400
,1,27900,170405
,1,27901,170410
,1,27902,170415
,1,27903,170420
,1,27904,170425
,1,27905,170430
,1,27906,170435
,1,27907,170440
,1,27908,170445
,1,27909,170450
,1,27910,170455
,1,27911,170460
,1,27912,170465
,1,27913,170470
,1,27914,170475
,1,27915,170480
,1,27916,170485
,1,27917,170490
,1,27918,170495
,1,27919,170500
,1,27920,170505
,1,27921,170510
,1,27922,170515
,1,27923,170520
,1,27924,170525
,1,27925,170530
,1,27926,170535
,1,27927,170540
,1,27928,170545
,1,27929,170550
,1,27930,170555
,1,27931,170560
,1,27932,170565
,1,27933,170570
,1,27934,170575
,1,27935,170580
,1,27936,170585
,1,27937,170590
,1,27938,170595
,1,27939,170600
,1,27940,170605
,1,27941,170610
,1,27942,170615
,1,27943,170620
,1,27944,170625
,1,27945,170630
,1,27946,170635
,1,27947,170640
,1,27948,170645
,1,27949,170650
,1,27950,170655
,1,27951,170660
,1,27952,170665
,1,27953,170670
,1,27954,170675
,1,27955,170680
,1,27956,170685
,1,27957,170690
,1,27958,170695
,1,27959,170700
,1,27960,170705
,1,27961,170710
,1,27962,170715
,1,27963,170720
,1,27964,170725
,1,27965,170730
,1,27966,170735
,1,27967,170740
,1,27968,170745
,1,27969,170750
,1,27970,170755
,1,27971,170760
,1,27972,170765
,1,27973,170770
,1,27974,170775
,1,27975,170780
,1,27976,170785
,1,27977,170790
,1,27978,170795
,1,27979,170800
,1,27980,170805
,1,27981,170810
,1,27982,170815
,1,27983,170820
,1,27984,170825
,1,27985,170830
,1,27986,170835
,1,27987,170840
,1,27988,170845
,1,27989,170850
,1,27990,170855
,1,27991,170860
,1,27992,170865
,1,27993,170870
,1,27994,170875
,1,27995,170880
,1,27996,170885
,1,27997,170890
,1,27998,170895
,1,27999,170900
,1,28000,170905
,1,28001,170910
,1,28002,170915
,1,28003,170920
,1,28004,170925
,1,28005,170930
,1,28006,170935
,1,28007,170940
,1,28008,170945
,1,28009,170950
,1,28010,170955
,1,28011,170960
,1,28012,170965
,1,28013,170970
,1,28014,170975
,1,28015,170980
,1,28016,170985
,1,28017,170990
,1,28018,170995
,1,28019,171000
,1,28020,171005
,1,28021,171010
,1,28022,171015
,1,28023,171020
,1,28024,171025
,1,28025,171030
,1,28026,171035
,1,28027,171040
,1,28028,171045
,1,28029,171050
,1,28030,171055
,1,28031,171060
,1,28032,171065
,1,28033,171070
,1,28034,171075
,1,28035,171080
,1,28036,171085
,1,28037,171090
,1,28038,171095
,1,28039,171100
,1,28040,171105
,1,28041,171110
,1,28042,171115
,1,28043,171120
,1,28044,171125
,1,28045,171130
,1,28046,171135
,1,28047,171140
,1,28048,171145
,1,28049,171150
,1,28050,171155
,1,28051,171160
,1,28052,171165
,1,28053,171170
,1,28054,171175
,1,28055,171180
,1,28056,171185
,1,28057,171190
,1,28058,171195
,1,28059,171200
,1,28060,171205
,1,28061,171210
,1,28062,171215
,1,28063,171220
,1,28064,171225
,1,28065,171230
,1,28066,171235
,1,28067,171240
,1,28068,171245
,1,28069,171250
,1,28070,171255
,1,28071,171260
,1,28072,171265
,1,28073,171270
,1,28074,171275
,1,28075,171280
,1,28076,171285
,1,28077,171290
,1,28078,171295
,1,28079,171300
,1,28080,171305
,1,28081,171310
,1,28082,171315
,1,28083,171320
,1,28084,171325
,1,28085,171330
,1,28086,171335
,1,28087,171340
,1,28088,171345
,1,28089,171350
,1,28090,171355
,1,28091,171360
,1,28092,171365
,1,28093,171370
,1,28094,171375
,1,28095,171380
,1,28096,171385
,1,28097,171390
,1,28098,171395
,1,28099,171400
,1,28100,171405
,1,28101,171410
,1,28102,171415
,1,28103,171420
,1,28104,171425
,1,28105,171430
,1,28106,171435
,1,28107,171440
,1,28108,171445
,1,28109,171450
,1,28110,171455
,1,28111,171460
,1,28112,171465
,1,28113,171470
,1,28114,171475
,1,28115,171480
,1,28116,171485
,1,28117,171490
,1,28118,171495
,1,28119,171500
,1,28120,171505
,1,28121,171510
,1,28122,171515
,1,28123,171520
,1,28124,171525
,1,28125,171530
,1,28126,171535
,1,28127,171540
,1,28128,171545
,1,28129,171550
,1,28130,171555
,1,28131,171560
,1,28132,171565
,1,28133,171570
,1,28134,171575
,1,28135,171580
,1,28136,171585
,1,28137,171590
,1,28138,171595
,1,28139,171600
,1,28140,171605
,1,28141,171610
,1,28142,171615
,1,28143,171620
,1,28144,171625
,1,28145,171630
,1,28146,171635
,1,28147,171640
,1,28148,171645
,1,28149,171650
,1,28150,171655
,1,28151,171660
,1,28152,171665
,1,28153,171670
,1,28154,171675
,1,28155,171680
,1,28156,171685
,1,28157,171690
,1,28158,171695
,1,28159,171700
,1,28160,171705
,1,28161,171710
,1,28162,171715
,1,28163,171720
,1,28164,171725
,1,28165,171730
,1,28166,171735
,1,28167,171740
,1,28168,171745
,1,28169,171750
,1,28170,171755
,1,28171,171760
,1,28172,171765
,1,28173,171770
,1,28174,171775
,1,28175,171780
,1,28176,171785
,1,28177,171790
,1,28178,171795
,1,28179,171800
,1,28180,171805
,1,28181,171810
,1,28182,171815
,1,28183,171820
,1,28184,171825
,1,28185,171830
,1,28186,171835
,1,28187,171840
,1,28188,171845
,1,28189,171850
,1,28190,171855
,1,28191,171860
,1,28192,171865
,1,28193,171870
,1,28194,171875
,1,28195,171880
,1,28196,171885
,1,28197,171890
,1,28198,171895
,1,28199,171900
,1,28200,171905
,1,28201,171910
,1,28202,171915
,1,28203,171920
,1,28204,171925
,1,28205,171930
,1,28206,171935
,1,28207,171940
,1,28208,171945
,1,28209,171950
,1,28210,171955
,1,28211,171960
,1,28212,171965
,1,28213,171970
,1,28214,171975
,1,28215,171980
,1,28216,171985
,1,28217,171990
,1,28218,171995
,1,28219,172000
,1,28220,172005
,1,28221,172010
,1,28222,172015
,1,28223,172020
,1,28224,172025
,1,28225,172030
,1,28226,172035
,1,28227,172040
,1,28228,172045
,1,28229,172050
,1,28230,172055
,1,28231,172060
,1,28232,172065
,1,28233,172070
,1,28234,172075
,1,28235,172080
,1,28236,172085
,1,28237,172090
,1,28238,172095
,1,28239,172100
,1,28240,172105
,1,28241,172110
,1,28242,172115
,1,28243,172120
,1,28244,172125
,1,28245,172130
,1,28246,172135
,1,28247,172140
,1,28248,172145
,1,28249,172150
,1,28250,172155
,1,28251,172160
,1,28252,172165
,1,28253,172170
,1,28254,172175
,1,28255,172180
,1,28256,172185
,1,28257,172190
,1,28258,172195
,1,28259,172200
,1,28260,172205
,1,28261,172210
,1,28262,172215
,1,28263,172220
,1,28264,172225
,1,28265,172230
,1,28266,172235
,1,28267,172240
,1,28268,172245
,1,28269,172250
,1,28270,172255
,1,28271,172260
,1,28272,172265
,1,28273,172270
,1,28274,172275
,1,28275,172280
,1,28276,172285
,1,28277,172290
,1,28278,172295
,1,28279,172300
,1,28280,172305
,1,28281,172310
,1,28282,172315
,1,28283,172320
,1,28284,172325
,1,28285,172330
,1,28286,172335
,1,28287,172340
,1,28288,172345
,1,28289,172350
,1,28290,172355
,1,28291,172360
,1,28292,172365
,1,28293,172370
,1,28294,172375
,1,28295,172380
,1,28296,172385
,1,28297,172390
,1,28298,172395
,1,28299,172400
,1,28300,172405
,1,28301,172410
,1,28302,172415
,1,28303,172420
,1,28304,172425
,1,28305,172430
,1,28306,172435
,1,28307,172440
,1,28308,172445
,1,28309,172450
,1,28310,172455
,1,28311,172460
,1,28312,172465
,1,28313,172470
,1,28314,172475
,1,28315,172480
,1,28316,172485
,1,28317,172490
,1,28318,172495
,1,28319,172500
,1,28320,172505
,1,28321,172510
,1,28322,172515
,1,28323,172520
,1,28324,172525
,1,28325,172530
,1,28326,172535
,1,28327,172540
,1,28328,172545
,1,28329,172550
,1,28330,172555
,1,28331,172560
,1,28332,172565
,1,28333,172570
,1,28334,172575
,1,28335,172580
,1,28336,172585
,1,28337,172590
,1,28338,172595
,1,28339,172600
,1,28340,172605
,1,28341,172610
,1,28342,172615
,1,28343,172620
,1,28344,172625
,1,28345,172630
,1,28346,172635
,1,28347,172640
,1,28348,172645
,1,28349,172650
,1,28350,172655
,1,28351,172660
,1,28352,172665
,1,28353,172670
,1,28354,172675
,1,28355,172680
,1,28356,172685
,1,28357,172690
,1,28358,172695
,1,28359,172700
,1,28360,172705
,1,28361,172710
,1,28362,172715
,1,28363,172720
,1,28364,172725
,1,28365,172730
,1,28366,172735
,1,28367,172740
,1,28368,172745
,1,28369,172750
,1,28370,172755
,1,28371,172760
,1,28372,172765
,1,28373,172770
,1,28374,172775
,1,28375,172780
,1,28376,172785
,1,28377,172790
,1,28378,172795
,1,28379,172800
,1,28380,172805
,1,28381,172810
,1,28382,172815
,1,28383,172820
,1,28384,172825
,1,28385,172830
,1,28386,172835
,1,28387,172840
,1,28388,172845
,1,28389,172850
,1,28390,172855
,1,28391,172860
,1,28392,172865
,1,28393,172870
,1,28394,172875
,1,28395,172880
,1,28396,172885
,1,28397,172890
,1,28398,172895
,1,28399,172900
,1,28400,172905
,1,28401,172910
,1,28402,172915
,1,28403,172920
,1,28404,172925
,1,28405,172930
,1,28406,172935
,1,28407,172940
,1,28408,172945
,1,28409,172950
,1,28410,172955
,1,28411,172960
,1,28412,172965
,1,28413,172970
,1,28414,172975
,1,28415,172980
,1,28416,172985
,1,28417,172990
,1,28418,172995
,1,28419,173000
,1,28420,173005
,1,28421,173010
,1,28422,173015
,1,28423,173020
,1,28424,173025
,1,28425,173030
,1,28426,173035
,1,28427,173040
,1,28428,173045
,1,28429,173050
,1,28430,173055
,1,28431,173060
,1,28432,173065
,1,28433,173070
,1,28434,173075
,1,28435,173080
,1,28436,173085
,1,28437,173090
,1,28438,173095
,1,28439,173100
,1,28440,173105
,1,28441,173110
,1,28442,173115
,1,28443,173120
,1,28444,173125
,1,28445,173130
,1,28446,173135
,1,28447,173140
,1,28448,173145
,1,28449,173150
,1,28450,173155
,1,28451,173160
,1,28452,173165
,1,28453,173170
,1,28454,173175
,1,28455,173180
,1,28456,173185
,1,28457,173190
,1,28458,173195
,1,28459,173200
,1,28460,173205
,1,28461,173210
,1,28462,173215
,1,28463,173220
,1,28464,173225
,1,28465,173230
,1,28466,173235
,1,28467,173240
,1,28468,173245
,1,28469,173250
,1,28470,173255
,1,28471,173260
,1,28472,173265
,1,28473,173270
,1,28474,173275
,1,28475,173280
,1,28476,173285
,1,28477,173290
,1,28478,173295
,1,28479,173300
,1,28480,173305
,1,28481,173310
,1,28482,173315
,1,28483,173320
,1,28484,173325
,1,28485,173330
,1,28486,173335
,1,28487,173340
,1,28488,173345
,1,28489,173350
,1,28490,173355
,1,28491,173360
,1,28492,173365
,1,28493,173370
,1,28494,173375
,1,28495,173380
,1,28496,173385
,1,28497,173390
,1,28498,173395
,1,28499,173400
,1,28500,173405
,1,28501,173410
,1,28502,173415
,1,28503,173420
,1,28504,173425
,1,28505,173430
,1,28506,173435
,1,28507,173440
,1,28508,173445
,1,28509,173450
,1,28510,173455
,1,28511,173460
,1,28512,173465
,1,28513,173470
,1,28514,173475
,1,28515,173480
,1,28516,173485
,1,28517,173490
,1,28518,173495
,1,28519,173500
,1,28520,173505
,1,28521,173510
,1,28522,173515
,1,28523,173520
,1,28524,173525
,1,28525,173530
,1,28526,173535
,1,28527,173540
,1,28528,173545
,1,28529,173550
,1,28530,173555
,1,28531,173560
,1,28532,173565
,1,28533,173570
,1,28534,173575
,1,28535,173580
,1,28536,173585
,1,28537,173590
,1,28538,173595
,1,28539,173600
,1,28540,173605
,1,28541,173610
,1,28542,173615
,1,28543,173620
,1,28544,173625
,1,28545,173630
,1,28546,173635
,1,28547,173640
,1,28548,173645
,1,28549,173650
,1,28550,173655
,1,28551,173660
,1,28552,173665
,1,28553,173670
,1,28554,173675
,1,28555,173680
,1,28556,173685
,1,28557,173690
,1,28558,173695
,1,28559,173700
,1,28560,173705
,1,28561,173710
,1,28562,173715
,1,28563,173720
,1,28564,173725
,1,28565,173730
,1,28566,173735
,1,28567,173740
,1,28568,173745
,1,28569,173750
,1,28570,173755
,1,28571,173760
,1,28572,173765
,1,28573,173770
,1,28574,173775
,1,28575,173780
,1,28576,173785
,1,28577,173790
,1,28578,173795
,1,28579,173800
,1,28580,173805
,1,28581,173810
,1,28582,173815
,1,28583,173820
,1,28584,173825
,1,28585,173830
,1,28586,173835
,1,28587,173840
,1,28588,173845
,1,28589,173850
,1,28590,173855
,1,28591,173860
,1,28592,173865
,1,28593,173870
,1,28594,173875
,1,28595,173880
,1,28596,173885
,1,28597,173890
,1,28598,173895
,1,28599,173900
,1,28600,173905
,1,28601,173910
,1,28602,173915
,1,28603,173920
,1,28604,173925
,1,28605,173930
,1,28606,173935
,1,28607,173940
,1,28608,173945
,1,28609,173950
,1,28610,173955
,1,28611,173960
,1,28612,173965
,1,28613,173970
,1,28614,173975
,1,28615,173980
,1,28616,173985
,1,28617,173990
,1,28618,173995
,1,28619,174000
,1,28620,174005
,1,28621,174010
,1,28622,174015
,1,28623,174020
,1,28624,174025
,1,28625,174030
,1,28626,174035
,1,28627,174040
,1,28628,174045
,1,28629,174050
,1,28630,174055
,1,28631,174060
,1,28632,174065
,1,28633,174070
,1,28634,174075
,1,28635,174080
,1,28636,174085
,1,28637,174090
,1,28638,174095
,1,28639,174100
,1,28640,174105
,1,28641,174110
,1,28642,174115
,1,28643,174120
,1,28644,174125
,1,28645,174130
,1,28646,174135
,1,28647,174140
,1,28648,174145
,1,28649,174150
,1,28650,174155
,1,28651,174160
,1,28652,174165
,1,28653,174170
,1,28654,174175
,1,28655,174180
,1,28656,174185
,1,28657,174190
,1,28658,174195
,1,28659,174200
,1,28660,174205
,1,28661,174210
,1,28662,174215
,1,28663,174220
,1,28664,174225
,1,28665,174230
,1,28666,174235
,1,28667,174240
,1,28668,174245
,1,28669,174250
,1,28670,174255
,1,28671,174260
,1,28672,174265
,1,28673,174270
,1,28674,174275
,1,28675,174280
,1,28676,174285
,1,28677,174290
,1,28678,174295
,1,28679,174300
,1,28680,174305
,1,28681,174310
,1,28682,174315
,1,28683,174320
,1,28684,174325
,1,28685,174330
,1,28686,174335
,1,28687,174340
,1,28688,174345
,1,28689,174350
,1,28690,174355
,1,28691,174360
,1,28692,174365
,1,28693,174370
,1,28694,174375
,1,28695,174380
,1,28696,174385
,1,28697,174390
,1,28698,174395
,1,28699,174400
,1,28700,174405
,1,28701,174410
,1,28702,174415
,1,28703,174420
,1,28704,174425
,1,28705,174430
,1,28706,174435
,1,28707,174440
,1,28708,174445
,1,28709,174450
,1,28710,174455
,1,28711,174460
,1,28712,174465
,1,28713,174470
,1,28714,174475
,1,28715,174480
,1,28716,174485
,1,28717,174490
,1,28718,174495
,1,28719,174500
,1,28720,174505
,1,28721,174510
,1,28722,174515
,1,28723,174520
,1,28724,174525
,1,28725,174530
,1,28726,174535
,1,28727,174540
,1,28728,174545
,1,28729,174550
,1,28730,174555
,1,28731,174560
,1,28732,174565
,1,28733,174570
,1,28734,174575
,1,28735,174580
,1,28736,174585
,1,28737,174590
,1,28738,174595
,1,28739,174600
,1,28740,174605
,1,28741,174610
,1,28742,174615
,1,28743,174620
,1,28744,174625
,1,28745,174630
,1,28746,174635
,1,28747,174640
,1,28748,174645
,1,28749,174650
,1,28750,174655
,1,28751,174660
,1,28752,174665
,1,28753,174670
,1,28754,174675
,1,28755,174680
,1,28756,174685
,1,28757,174690
,1,28758,174695
,1,28759,174700
,1,28760,174705
,1,28761,174710
,1,28762,174715
,1,28763,174720
,1,28764,174725
,1,28765,174730
,1,28766,174735
,1,28767,174740
,1,28768,174745
,1,28769,174750
,1,28770,174755
,1,28771,174760
,1,28772,174765
,1,28773,174770
,1,28774,174775
,1,28775,174780
,1,28776,174785
,1,28777,174790
,1,28778,174795
,1,28779,174800
,1,28780,174805
,1,28781,174810
,1,28782,174815
,1,28783,174820
,1,28784,174825
,1,28785,174830
,1,28786,174835
,1,28787,174840
,1,28788,174845
,1,28789,174850
,1,28790,174855
,1,28791,174860
,1,28792,174865
,1,28793,174870
,1,28794,174875
,1,28795,174880
,1,28796,174885
,1,28797,174890
,1,28798,174895
,1,28799,174900
,1,28800,174905
,1,28801,174910
,1,28802,174915
,1,28803,174920
,1,28804,174925
,1,28805,174930
,1,28806,174935
,1,28807,174940
,1,28808,174945
,1,28809,174950
,1,28810,174955
,1,28811,174960
,1,28812,174965
,1,28813,174970
,1,28814,174975
,1,28815,174980
,1,28816,174985
,1,28817,174990
,1,28818,174995
,1,28819,175000
,1,28820,175005
,1,28821,175010
,1,28822,175015
,1,28823,175020
,1,28824,175025
,1,28825,175030
,1,28826,175035
,1,28827,175040
,1,28828,175045
,1,28829,175050
,1,28830,175055
,1,28831,175060
,1,28832,175065
,1,28833,175070
,1,28834,175075
,1,28835,175080
,1,28836,175085
,1,28837,175090
,1,28838,175095
,1,28839,175100
,1,28840,175105
,1,28841,175110
,1,28842,175115
,1,28843,175120
,1,28844,175125
,1,28845,175130
,1,28846,175135
,1,28847,175140
,1,28848,175145
,1,28849,175150
,1,28850,175155
,1,28851,175160
,1,28852,175165
,1,28853,175170
,1,28854,175175
,1,28855,175180
,1,28856,175185
,1,28857,175190
,1,28858,175195
,1,28859,175200
,1,28860,175205
,1,28861,175210
,1,28862,175215
,1,28863,175220
,1,28864,175225
,1,28865,175230
,1,28866,175235
,1,28867,175240
,1,28868,175245
,1,28869,175250
,1,28870,175255
,1,28871,175260
,1,28872,175265
,1,28873,175270
,1,28874,175275
,1,28875,175280
,1,28876,175285
,1,28877,175290
,1,28878,175295
,1,28879,175300
,1,28880,175305
,1,28881,175310
,1,28882,175315
,1,28883,175320
,1,28884,175325
,1,28885,175330
,1,28886,175335
,1,28887,175340
,1,28888,175345
,1,28889,175350
,1,28890,175355
,1,28891,175360
,1,28892,175365
,1,28893,175370
,1,28894,175375
,1,28895,175380
,1,28896,175385
,1,28897,175390
,1,28898,175395
,1,28899,175400
,1,28900,175405
,1,28901,175410
,1,28902,175415
,1,28903,175420
,1,28904,175425
,1,28905,175430
,1,28906,175435
,1,28907,175440
,1,28908,175445
,1,28909,175450
,1,28910,175455
,1,28911,175460
,1,28912,175465
,1,28913,175470
,1,28914,175475
,1,28915,175480
,1,28916,175485
,1,28917,175490
,1,28918,175495
,1,28919,175500
,1,28920,175505
,1,28921,175510
,1,28922,175515
,1,28923,175520
,1,28924,175525
,1,28925,175530
,1,28926,175535
,1,28927,175540
,1,28928,175545
,1,28929,175550
,1,28930,175555
,1,28931,175560
,1,28932,175565
,1,28933,175570
,1,28934,175575
,1,28935,175580
,1,28936,175585
,1,28937,175590
,1,28938,175595
,1,28939,175600
,1,28940,175605
,1,28941,175610
,1,28942,175615
,1,28943,175620
,1,28944,175625
,1,28945,175630
,1,28946,175635
,1,28947,175640
,1,28948,175645
,1,28949,175650
,1,28950,175655
,1,28951,175660
,1,28952,175665
,1,28953,175670
,1,28954,175675
,1,28955,175680
,1,28956,175685
,1,28957,175690
,1,28958,175695
,1,28959,175700
,1,28960,175705
,1,28961,175710
,1,28962,175715
,1,28963,175720
,1,28964,175725
,1,28965,175730
,1,28966,175735
,1,28967,175740
,1,28968,175745
,1,28969,175750
,1,28970,175755
,1,28971,175760
,1,28972,175765
,1,28973,175770
,1,28974,175775
,1,28975,175780
,1,28976,175785
,1,28977,175790
,1,28978,175795
,1,28979,175800
,1,28980,175805
,1,28981,175810
,1,28982,175815
,1,28983,175820
,1,28984,175825
,1,28985,175830
,1,28986,175835
,1,28987,175840
,1,28988,175845
,1,28989,175850
,1,28990,175855
,1,28991,175860
,1,28992,175865
,1,28993,175870
,1,28994,175875
,1,28995,175880
,1,28996,175885
,1,28997,175890
,1,28998,175895
,1,28999,175900
,1,29000,175905
,1,29001,175910
,1,29002,175915
,1,29003,175920
,1,29004,175925
,1,29005,175930
,1,29006,175935
,1,29007,175940
,1,29008,175945
,1,29009,175950
,1,29010,175955
,1,29011,175960
,1,29012,175965
,1,29013,175970
,1,29014,175975
,1,29015,175980
,1,29016,175985
,1,29017,175990
,1,29018,175995
,1,29019,176000
,1,29020,176005
,1,29021,176010
,1,29022,176015
,1,29023,176020
,1,29024,176025
,1,29025,176030
,1,29026,176035
,1,29027,176040
,1,29028,176045
,1,29029,176050
,1,29030,176055
,1,29031,176060
,1,29032,176065
,1,29033,176070
,1,29034,176075
,1,29035,176080
,1,29036,176085
,1,29037,176090
,1,29038,176095
,1,29039,176100
,1,29040,176105
,1,29041,176110
,1,29042,176115
,1,29043,176120
,1,29044,176125
,1,29045,176130
,1,29046,176135
,1,29047,176140
,1,29048,176145
,1,29049,176150
,1,29050,176155
,1,29051,176160
,1,29052,176165
,1,29053,176170
,1,29054,176175
,1,29055,176180
,1,29056,176185
,1,29057,176190
,1,29058,176195
,1,29059,176200
,1,29060,176205
,1,29061,176210
,1,29062,176215
,1,29063,176220
,1,29064,176225
,1,29065,176230
,1,29066,176235
,1,29067,176240
,1,29068,176245
,1,29069,176250
,1,29070,176255
,1,29071,176260
,1,29072,176265
,1,29073,176270
,1,29074,176275
,1,29075,176280
,1,29076,176285
,1,29077,176290
,1,29078,176295
,1,29079,176300
,1,29080,176305
,1,29081,176310
,1,29082,176315
,1,29083,176320
,1,29084,176325
,1,29085,176330
,1,29086,176335
,1,29087,176340
,1,29088,176345
,1,29089,176350
,1,29090,176355
,1,29091,176360
,1,29092,176365
,1,29093,176370
,1,29094,176375
,1,29095,176380
,1,29096,176385
,1,29097,176390
,1,29098,176395
,1,29099,176400
,1,29100,176405
,1,29101,176410
,1,29102,176415
,1,29103,176420
,1,29104,176425
,1,29105,176430
,1,29106,176435
,1,29107,176440
,1,29108,176445
,1,29109,176450
,1,29110,176455
,1,29111,176460
,1,29112,176465
,1,29113,176470
,1,29114,176475
,1,29115,176480
,1,29116,176485
,1,29117,176490
,1,29118,176495
,1,29119,176500
,1,29120,176505
,1,29121,176510
,1,29122,176515
,1,29123,176520
,1,29124,176525
,1,29125,176530
,1,29126,176535
,1,29127,176540
,1,29128,176545
,1,29129,176550
,1,29130,176555
,1,29131,176560
,1,29132,176565
,1,29133,176570
,1,29134,176575
,1,29135,176580
,1,29136,176585
,1,29137,176590
,1,29138,176595
,1,29139,176600
,1,29140,176605
,1,29141,176610
,1,29142,176615
,1,29143,176620
,1,29144,176625
,1,29145,176630
,1,29146,176635
,1,29147,176640
,1,29148,176645
,1,29149,176650
,1,29150,176655
,1,29151,176660
,1,29152,176665
,1,29153,176670
,1,29154,176675
,1,29155,176680
,1,29156,176685
,1,29157,176690
,1,29158,176695
,1,29159,176700
,1,29160,176705
,1,29161,176710
,1,29162,176715
,1,29163,176720
,1,29164,176725
,1,29165,176730
,1,29166,176735
,1,29167,176740
,1,29168,176745
,1,29169,176750
,1,29170,176755
,1,29171,176760
,1,29172,176765
,1,29173,176770
,1,29174,176775
,1,29175,176780
,1,29176,176785
,1,29177,176790
,1,29178,176795
,1,29179,176800
,1,29180,176805
,1,29181,176810
,1,29182,176815
,1,29183,176820
,1,29184,176825
,1,29185,176830
,1,29186,176835
,1,29187,176840
,1,29188,176845
,1,29189,176850
,1,29190,176855
,1,29191,176860
,1,29192,176865
,1,29193,176870
,1,29194,176875
,1,29195,176880
,1,29196,176885
,1,29197,176890
,1,29198,176895
,1,29199,176900
,1,29200,176905
,1,29201,176910
,1,29202,176915
,1,29203,176920
,1,29204,176925
,1,29205,176930
,1,29206,176935
,1,29207,176940
,1,29208,176945
,1,29209,176950
,1,29210,176955
,1,29211,176960
,1,29212,176965
,1,29213,176970
,1,29214,176975
,1,29215,176980
,1,29216,176985
,1,29217,176990
,1,29218,176995
,1,29219,177000
,1,29220,177005
,1,29221,177010
,1,29222,177015
,1,29223,177020
,1,29224,177025
,1,29225,177030
,1,29226,177035
,1,29227,177040
,1,29228,177045
,1,29229,177050
,1,29230,177055
,1,29231,177060
,1,29232,177065
,1,29233,177070
,1,29234,177075
,1,29235,177080
,1,29236,177085
,1,29237,177090
,1,29238,177095
,1,29239,177100
,1,29240,177105
,1,29241,177110
,1,29242,177115
,1,29243,177120
,1,29244,177125
,1,29245,177130
,1,29246,177135
,1,29247,177140
,1,29248,177145
,1,29249,177150
,1,29250,177155
,1,29251,177160
,1,29252,177165
,1,29253,177170
,1,29254,177175
,1,29255,177180
,1,29256,177185
,1,29257,177190
,1,29258,177195
,1,29259,177200
,1,29260,177205
,1,29261,177210
,1,29262,177215
,1,29263,177220
,1,29264,177225
,1,29265,177230
,1,29266,177235
,1,29267,177240
,1,29268,177245
,1,29269,177250
,1,29270,177255
,1,29271,177260
,1,29272,177265
,1,29273,177270
,1,29274,177275
,1,29275,177280
,1,29276,177285
,1,29277,177290
,1,29278,177295
,1,29279,177300
,1,29280,177305
,1,29281,177310
,1,29282,177315
,1,29283,177320
,1,29284,177325
,1,29285,177330
,1,29286,177335
,1,29287,177340
,1,29288,177345
,1,29289,177350
,1,29290,177355
,1,29291,177360
,1,29292,177365
,1,29293,177370
,1,29294,177375
,1,29295,177380
,1,29296,177385
,1,29297,177390
,1,29298,177395
,1,29299,177400
,1,29300,177405
,1,29301,177410
,1,29302,177415
,1,29303,177420
,1,29304,177425
,1,29305,177430
,1,29306,177435
,1,29307,177440
,1,29308,177445
,1,29309,177450
,1,29310,177455
,1,29311,177460
,1,29312,177465
,1,29313,177470
,1,29314,177475
,1,29315,177480
,1,29316,177485
,1,29317,177490
,1,29318,177495
,1,29319,177500
,1,29320,177505
,1,29321,177510
,1,29322,177515
,1,29323,177520
,1,29324,177525
,1,29325,177530
,1,29326,177535
,1,29327,177540
,1,29328,177545
,1,29329,177550
,1,29330,177555
,1,29331,177560
,1,29332,177565
,1,29333,177570
,1,29334,177575
,1,29335,177580
,1,29336,177585
,1,29337,177590
,1,29338,177595
,1,29339,177600
,1,29340,177605
,1,29341,177610
,1,29342,177615
,1,29343,177620
,1,29344,177625
,1,29345,177630
,1,29346,177635
,1,29347,177640
,1,29348,177645
,1,29349,177650
,1,29350,177655
,1,29351,177660
,1,29352,177665
,1,29353,177670
,1,29354,177675
,1,29355,177680
,1,29356,177685
,1,29357,177690
,1,29358,177695
,1,29359,177700
,1,29360,177705
,1,29361,177710
,1,29362,177715
,1,29363,177720
,1,29364,177725
,1,29365,177730
,1,29366,177735
,1,29367,177740
,1,29368,177745
,1,29369,177750
,1,29370,177755
,1,29371,177760
,1,29372,177765
,1,29373,177770
,1,29374,177775
,1,29375,177780
,1,29376,177785
,1,29377,177790
,1,29378,177795
,1,29379,177800
,1,29380,177805
,1,29381,177810
,1,29382,177815
,1,29383,177820
,1,29384,177825
,1,29385,177830
,1,29386,177835
,1,29387,177840
,1,29388,177845
,1,29389,177850
,1,29390,177855
,1,29391,177860
,1,29392,177865
,1,29393,177870
,1,29394,177875
,1,29395,177880
,1,29396,177885
,1,29397,177890
,1,29398,177895
,1,29399,177900
,1,29400,177905
,1,29401,177910
,1,29402,177915
,1,29403,177920
,1,29404,177925
,1,29405,177930
,1,29406,177935
,1,29407,177940
,1,29408,177945
,1,29409,177950
,1,29410,177955
,1,29411,177960
,1,29412,177965
,1,29413,177970
,1,29414,177975
,1,29415,177980
,1,29416,177985
,1,29417,177990
,1,29418,177995
,1,29419,178000
,1,29420,178005
,1,29421,178010
,1,29422,178015
,1,29423,178020
,1,29424,178025
,1,29425,178030
,1,29426,178035
,1,29427,178040
,1,29428,178045
,1,29429,178050
,1,29430,178055
,1,29431,178060
,1,29432,178065
,1,29433,178070
,1,29434,178075
,1,29435,178080
,1,29436,178085
,1,29437,178090
,1,29438,178095
,1,29439,178100
,1,29440,178105
,1,29441,178110
,1,29442,178115
,1,29443,178120
,1,29444,178125
,1,29445,178130
,1,29446,178135
,1,29447,178140
,1,29448,178145
,1,29449,178150
,1,29450,178155
,1,29451,178160
,1,29452,178165
,1,29453,178170
,1,29454,178175
,1,29455,178180
,1,29456,178185
,1,29457,178190
,1,29458,178195
,1,29459,178200
,1,29460,178205
,1,29461,178210
,1,29462,178215
,1,29463,178220
,1,29464,178225
,1,29465,178230
,1,29466,178235
,1,29467,178240
,1,29468,178245
,1,29469,178250
,1,29470,178255
,1,29471,178260
,1,29472,178265
,1,29473,178270
,1,29474,178275
,1,29475,178280
,1,29476,178285
,1,29477,178290
,1,29478,178295
,1,29479,178300
,1,29480,178305
,1,29481,178310
,1,29482,178315
,1,29483,178320
,1,29484,178325
,1,29485,178330
,1,29486,178335
,1,29487,178340
,1,29488,178345
,1,29489,178350
,1,29490,178355
,1,29491,178360
,1,29492,178365
,1,29493,178370
,1,29494,178375
,1,29495,178380
,1,29496,178385
,1,29497,178390
,1,29498,178395
,1,29499,178400
,1,29500,178405
,1,29501,178410
,1,29502,178415
,1,29503,178420
,1,29504,178425
,1,29505,178430
,1,29506,178435
,1,29507,178440
,1,29508,178445
,1,29509,178450
,1,29510,178455
,1,29511,178460
,1,29512,178465
,1,29513,178470
,1,29514,178475
,1,29515,178480
,1,29516,178485
,1,29517,178490
,1,29518,178495
,1,29519,178500
,1,29520,178505
,1,29521,178510
,1,29522,178515
,1,29523,178520
,1,29524,178525
,1,29525,178530
,1,29526,178535
,1,29527,178540
,1,29528,178545
,1,29529,178550
,1,29530,178555
,1,29531,178560
,1,29532,178565
,1,29533,178570
,1,29534,178575
,1,29535,178580
,1,29536,178585
,1,29537,178590
,1,29538,178595
,1,29539,178600
,1,29540,178605
,1,29541,178610
,1,29542,178615
,1,29543,178620
,1,29544,178625
,1,29545,178630
,1,29546,178635
,1,29547,178640
,1,29548,178645
,1,29549,178650
,1,29550,178655
,1,29551,178660
,1,29552,178665
,1,29553,178670
,1,29554,178675
,1,29555,178680
,1,29556,178685
,1,29557,178690
,1,29558,178695
,1,29559,178700
,1,29560,178705
,1,29561,178710
,1,29562,178715
,1,29563,178720
,1,29564,178725
,1,29565,178730
,1,29566,178735
,1,29567,178740
,1,29568,178745
,1,29569,178750
,1,29570,178755
,1,29571,178760
,1,29572,178765
,1,29573,178770
,1,29574,178775
,1,29575,178780
,1,29576,178785
,1,29577,178790
,1,29578,178795
,1,29579,178800
,1,29580,178805
,1,29581,178810
,1,29582,178815
,1,29583,178820
,1,29584,178825
,1,29585,178830
,1,29586,178835
,1,29587,178840
,1,29588,178845
,1,29589,178850
,1,29590,178855
,1,29591,178860
,1,29592,178865
,1,29593,178870
,1,29594,178875
,1,29595,178880
,1,29596,178885
,1,29597,178890
,1,29598,178895
,1,29599,178900
,1,29600,178905
,1,29601,178910
,1,29602,178915
,1,29603,178920
,1,29604,178925
,1,29605,178930
,1,29606,178935
,1,29607,178940
,1,29608,178945
,1,29609,178950
,1,29610,178955
,1,29611,178960
,1,29612,178965
,1,29613,178970
,1,29614,178975
,1,29615,178980
,1,29616,178985
,1,29617,178990
,1,29618,178995
,1,29619,179000
,1,29620,179005
,1,29621,179010
,1,29622,179015
,1,29623,179020
,1,29624,179025
,1,29625,179030
,1,29626,179035
,1,29627,179040
,1,29628,179045
,1,29629,179050
,1,29630,179055
,1,29631,179060
,1,29632,179065
,1,29633,179070
,1,29634,179075
,1,29635,179080
,1,29636,179085
,1,29637,179090
,1,29638,179095
,1,29639,179100
,1,29640,179105
,1,29641,179110
,1,29642,179115
,1,29643,179120
,1,29644,179125
,1,29645,179130
,1,29646,179135
,1,29647,179140
,1,29648,179145
,1,29649,179150
,1,29650,179155
,1,29651,179160
,1,29652,179165
,1,29653,179170
,1,29654,179175
,1,29655,179180
,1,29656,179185
,1,29657,179190
,1,29658,179195
,1,29659,179200
,1,29660,179205
,1,29661,179210
,1,29662,179215
,1,29663,179220
,1,29664,179225
,1,29665,179230
,1,29666,179235
,1,29667,179240
,1,29668,179245
,1,29669,179250
,1,29670,179255
,1,29671,179260
,1,29672,179265
,1,29673,179270
,1,29674,179275
,1,29675,179280
,1,29676,179285
,1,29677,179290
,1,29678,179295
,1,29679,179300
,1,29680,179305
,1,29681,179310
,1,29682,179315
,1,29683,179320
,1,29684,179325
,1,29685,179330
,1,29686,179335
,1,29687,179340
,1,29688,179345
,1,29689,179350
,1,29690,179355
,1,29691,179360
,1,29692,179365
,1,29693,179370
,1,29694,179375
,1,29695,179380
,1,29696,179385
,1,29697,179390
,1,29698,179395
,1,29699,179400
,1,29700,179405
,1,29701,179410
,1,29702,179415
,1,29703,179420
,1,29704,179425
,1,29705,179430
,1,29706,179435
,1,29707,179440
,1,29708,179445
,1,29709,179450
,1,29710,179455
,1,29711,179460
,1,29712,179465
,1,29713,179470
,1,29714,179475
,1,29715,179480
,1,29716,179485
,1,29717,179490
,1,29718,179495
,1,29719,179500
,1,29720,179505
,1,29721,179510
,1,29722,179515
,1,29723,179520
,1,29724,179525
,1,29725,179530
,1,29726,179535
,1,29727,179540
,1,29728,179545
,1,29729,179550
,1,29730,179555
,1,29731,179560
,1,29732,179565
,1,29733,179570
,1,29734,179575
,1,29735,179580
,1,29736,179585
,1,29737,179590
,1,29738,179595
,1,29739,179600
,1,29740,179605
,1,29741,179610
,1,29742,179615
,1,29743,179620
,1,29744,179625
,1,29745,179630
,1,29746,179635
,1,29747,179640
,1,29748,179645
,1,29749,179650
,1,29750,179655
,1,29751,179660
,1,29752,179665
,1,29753,179670
,1,29754,179675
,1,29755,179680
,1,29756,179685
,1,29757,179690
,1,29758,179695
,1,29759,179700
,1,29760,179705
,1,29761,179710
,1,29762,179715
,1,29763,179720
,1,29764,179725
,1,29765,179730
,1,29766,179735
,1,29767,179740
,1,29768,179745
,1,29769,179750
,1,29770,179755
,1,29771,179760
,1,29772,179765
,1,29773,179770
,1,29774,179775
,1,29775,179780
,1,29776,179785
,1,29777,179790
,1,29778,179795
,1,29779,179800
,1,29780,179805
,1,29781,179810
,1,29782,179815
,1,29783,179820
,1,29784,179825
,1,29785,179830
,1,29786,179835
,1,29787,179840
,1,29788,179845
,1,29789,179850
,1,29790,179855
,1,29791,179860
,1,29792,179865
,1,29793,179870
,1,29794,179875
,1,29795,179880
,1,29796,179885
,1,29797,179890
,1,29798,179895
,1,29799,179900
,1,29800,179905
,1,29801,179910
,1,29802,179915
,1,29803,179920
,1,29804,179925
,1,29805,179930
,1,29806,179935
,1,29807,179940
,1,29808,179945
,1,29809,179950
,1,29810,179955
,1,29811,179960
,1,29812,179965
,1,29813,179970
,1,29814,179975
,1,29815,179980
,1,29816,179985
,1,29817,179990
,1,29818,179995
,1,29819,180000
,1,29820,180005
,1,29821,180010
,1,29822,180015
,1,29823,180020
,1,29824,180025
,1,29825,180030
,1,29826,180035
,1,29827,180040
,1,29828,180045
,1,29829,180050
,1,29830,180055
,1,29831,180060
,1,29832,180065
,1,29833,180070
,1,29834,180075
,1,29835,180080
,1,29836,180085
,1,29837,180090
,1,29838,180095
,1,29839,180100
,1,29840,180105
,1,29841,180110
,1,29842,180115
,1,29843,180120
,1,29844,180125
,1,29845,180130
,1,29846,180135
,1,29847,180140
,1,29848,180145
,1,29849,180150
,1,29850,180155
,1,29851,180160
,1,29852,180165
,1,29853,180170
,1,29854,180175
,1,29855,180180
,1,29856,180185
,1,29857,180190
,1,29858,180195
,1,29859,180200
,1,29860,180205
,1,29861,180210
,1,29862,180215
,1,29863,180220
,1,29864,180225
,1,29865,180230
,1,29866,180235
,1,29867,180240
,1,29868,180245
,1,29869,180250
,1,29870,180255
,1,29871,180260
,1,29872,180265
,1,29873,180270
,1,29874,180275
,1,29875,180280
,1,29876,180285
,1,29877,180290
,1,29878,180295
,1,29879,180300
,1,29880,180305
,1,29881,180310
,1,29882,180315
,1,29883,180320
,1,29884,180325
,1,29885,180330
,1,29886,180335
,1,29887,180340
,1,29888,180345
,1,29889,180350
,1,29890,180355
,1,29891,180360
,1,29892,180365
,1,29893,180370
,1,29894,180375
,1,29895,180380
,1,29896,180385
,1,29897,180390
,1,29898,180395
,1,29899,180400
,1,29900,180405
,1,29901,180410
,1,29902,180415
,1,29903,180420
,1,29904,180425
,1,29905,180430
,1,29906,180435
,1,29907,180440
,1,29908,180445
,1,29909,180450
,1,29910,180455
,1,29911,180460
,1,29912,180465
,1,29913,180470
,1,29914,180475
,1,29915,180480
,1,29916,180485
,1,29917,180490
,1,29918,180495
,1,29919,180500
,1,29920,180505
,1,29921,180510
,1,29922,180515
,1,29923,180520
,1,29924,180525
,1,29925,180530
,1,29926,180535
,1,29927,180540
,1,29928,180545
,1,29929,180550
,1,29930,180555
,1,29931,180560
,1,29932,180565
,1,29933,180570
,1,29934,180575
,1,29935,180580
,1,29936,180585
,1,29937,180590
,1,29938,180595
,1,29939,180600
,1,29940,180605
,1,29941,180610
,1,29942,180615
,1,29943,180620
,1,29944,180625
,1,29945,180630
,1,29946,180635
,1,29947,180640
,1,29948,180645
,1,29949,180650
,1,29950,180655
,1,29951,180660
,1,29952,180665
,1,29953,180670
,1,29954,180675
,1,29955,180680
,1,29956,180685
,1,29957,180690
,1,29958,180695
,1,29959,180700
,1,29960,180705
,1,29961,180710
,1,29962,180715
,1,29963,180720
,1,29964,180725
,1,29965,180730
,1,29966,180735
,1,29967,180740
,1,29968,180745
,1,29969,180750
,1,29970,180755
,1,29971,180760
,1,29972,180765
,1,29973,180770
,1,29974,180775
,1,29975,180780
,1,29976,180785
,1,29977,180790
,1,29978,180795
,1,29979,180800
,1,29980,180805
,1,29981,180810
,1,29982,180815
,1,29983,180820
,1,29984,180825
,1,29985,180830
,1,29986,180835
,1,29987,180840
,1,29988,180845
,1,29989,180850
,1,29990,180855
,1,29991,180860
,1,29992,180865
,1,29993,180870
,1,29994,180875
,1,29995,180880
,1,29996,180885
,1,29997,180890
,1,29998,180895
,1,29999,180900
,1,30000,180905
,1,30001,180910
,1,30002,180915
,1,30003,180920
,1,30004,180925
,1,30005,180930
,1,30006,180935
,1,30007,180940
,1,30008,180945
,1,30009,180950
,1,30010,180955
,1,30011,180960
,1,30012,180965
,1,30013,180970
,1,30014,180975
,1,30015,180980
,1,30016,180985
,1,30017,180990
,1,30018,180995
,1,30019,181000
,1,30020,181005
,1,30021,181010
,1,30022,181015
,1,30023,181020
,1,30024,181025
,1,30025,181030
,1,30026,181035
,1,30027,181040
,1,30028,181045
,1,30029,181050
,1,30030,181055
,1,30031,181060
,1,30032,181065
,1,30033,181070
,1,30034,181075
,1,30035,181080
,1,30036,181085
,1,30037,181090
,1,30038,181095
,1,30039,181100
,1,30040,181105
,1,30041,181110
,1,30042,181115
,1,30043,181120
,1,30044,181125
,1,30045,181130
,1,30046,181135
,1,30047,181140
,1,30048,181145
,1,30049,181150
,1,30050,181155
,1,30051,181160
,1,30052,181165
,1,30053,181170
,1,30054,181175
,1,30055,181180
,1,30056,181185
,1,30057,181190
,1,30058,181195
,1,30059,181200
,1,30060,181205
,1,30061,181210
,1,30062,181215
,1,30063,181220
,1,30064,181225
,1,30065,181230
,1,30066,181235
,1,30067,181240
,1,30068,181245
,1,30069,181250
,1,30070,181255
,1,30071,181260
,1,30072,181265
,1,30073,181270
,1,30074,181275
,1,30075,181280
,1,30076,181285
,1,30077,181290
,1,30078,181295
,1,30079,181300
,1,30080,181305
,1,30081,181310
,1,30082,181315
,1,30083,181320
,1,30084,181325
,1,30085,181330
,1,30086,181335
,1,30087,181340
,1,30088,181345
,1,30089,181350
,1,30090,181355
,1,30091,181360
,1,30092,181365
,1,30093,181370
,1,30094,181375
,1,30095,181380
,1,30096,181385
,1,30097,181390
,1,30098,181395
,1,30099,181400
,1,30100,181405
,1,30101,181410
,1,30102,181415
,1,30103,181420
,1,30104,181425
,1,30105,181430
,1,30106,181435
,1,30107,181440
,1,30108,181445
,1,30109,181450
,1,30110,181455
,1,30111,181460
,1,30112,181465
,1,30113,181470
,1,30114,181475
,1,30115,181480
,1,30116,181485
,1,30117,181490
,1,30118,181495
,1,30119,181500
,1,30120,181505
,1,30121,181510
,1,30122,181515
,1,30123,181520
,1,30124,181525
,1,30125,181530
,1,30126,181535
,1,30127,181540
,1,30128,181545
,1,30129,181550
,1,30130,181555
,1,30131,181560
,1,30132,181565
,1,30133,181570
,1,30134,181575
,1,30135,181580
,1,30136,181585
,1,30137,181590
,1,30138,181595
,1,30139,181600
,1,30140,181605
,1,30141,181610
,1,30142,181615
,1,30143,181620
,1,30144,181625
,1,30145,181630
,1,30146,181635
,1,30147,181640
,1,30148,181645
,1,30149,181650
,1,30150,181655
,1,30151,181660
,1,30152,181665
,1,30153,181670
,1,30154,181675
,1,30155,181680
,1,30156,181685
,1,30157,181690
,1,30158,181695
,1,30159,181700
,1,30160,181705
,1,30161,181710
,1,30162,181715
,1,30163,181720
,1,30164,181725
,1,30165,181730
,1,30166,181735
,1,30167,181740
,1,30168,181745
,1,30169,181750
,1,30170,181755
,1,30171,181760
,1,30172,181765
,1,30173,181770
,1,30174,181775
,1,30175,181780
,1,30176,181785
,1,30177,181790
,1,30178,181795
,1,30179,181800
,1,30180,181805
,1,30181,181810
,1,30182,181815
,1,30183,181820
,1,30184,181825
,1,30185,181830
,1,30186,181835
,1,30187,181840
,1,30188,181845
,1,30189,181850
,1,30190,181855
,1,30191,181860
,1,30192,181865
,1,30193,181870
,1,30194,181875
,1,30195,181880
,1,30196,181885
,1,30197,181890
,1,30198,181895
,1,30199,181900
,1,30200,181905
,1,30201,181910
,1,30202,181915
,1,30203,181920
,1,30204,181925
,1,30205,181930
,1,30206,181935
,1,30207,181940
,1,30208,181945
,1,30209,181950
,1,30210,181955
,1,30211,181960
,1,30212,181965
,1,30213,181970
,1,30214,181975
,1,30215,181980
,1,30216,181985
,1,30217,181990
,1,30218,181995
,1,30219,182000
,1,30220,182005
,1,30221,182010
,1,30222,182015
,1,30223,182020
,1,30224,182025
,1,30225,182030
,1,30226,182035
,1,30227,182040
,1,30228,182045
,1,30229,182050
,1,30230,182055
,1,30231,182060
,1,30232,182065
,1,30233,182070
,1,30234,182075
,1,30235,182080
,1,30236,182085
,1,30237,182090
,1,30238,182095
,1,30239,182100
,1,30240,182105
,1,30241,182110
,1,30242,182115
,1,30243,182120
,1,30244,182125
,1,30245,182130
,1,30246,182135
,1,30247,182140
,1,30248,182145
,1,30249,182150
,1,30250,182155
,1,30251,182160
,1,30252,182165
,1,30253,182170
,1,30254,182175
,1,30255,182180
,1,30256,182185
,1,30257,182190
,1,30258,182195
,1,30259,182200
,1,30260,182205
,1,30261,182210
,1,30262,182215
,1,30263,182220
,1,30264,182225
,1,30265,182230
,1,30266,182235
,1,30267,182240
,1,30268,182245
,1,30269,182250
,1,30270,182255
,1,30271,182260
,1,30272,182265
,1,30273,182270
,1,30274,182275
,1,30275,182280
,1,30276,182285
,1,30277,182290
,1,30278,182295
,1,30279,182300
,1,30280,182305
,1,30281,182310
,1,30282,182315
,1,30283,182320
,1,30284,182325
,1,30285,182330
,1,30286,182335
,1,30287,182340
,1,30288,182345
,1,30289,182350
,1,30290,182355
,1,30291,182360
,1,30292,182365
,1,30293,182370
,1,30294,182375
,1,30295,182380
,1,30296,182385
,1,30297,182390
,1,30298,182395
,1,30299,182400
,1,30300,182405
,1,30301,182410
,1,30302,182415
,1,30303,182420
,1,30304,182425
,1,30305,182430
,1,30306,182435
,1,30307,182440
,1,30308,182445
,1,30309,182450
,1,30310,182455
,1,30311,182460
,1,30312,182465
,1,30313,182470
,1,30314,182475
,1,30315,182480
,1,30316,182485
,1,30317,182490
,1,30318,182495
,1,30319,182500
,1,30320,182505
,1,30321,182510
,1,30322,182515
,1,30323,182520
,1,30324,182525
,1,30325,182530
,1,30326,182535
,1,30327,182540
,1,30328,182545
,1,30329,182550
,1,30330,182555
,1,30331,182560
,1,30332,182565
,1,30333,182570
,1,30334,182575
,1,30335,182580
,1,30336,182585
,1,30337,182590
,1,30338,182595
,1,30339,182600
,1,30340,182605
,1,30341,182610
,1,30342,182615
,1,30343,182620
,1,30344,182625
,1,30345,182630
,1,30346,182635
,1,30347,182640
,1,30348,182645
,1,30349,182650
,1,30350,182655
,1,30351,182660
,1,30352,182665
,1,30353,182670
,1,30354,182675
,1,30355,182680
,1,30356,182685
,1,30357,182690
,1,30358,182695
,1,30359,182700
,1,30360,182705
,1,30361,182710
,1,30362,182715
,1,30363,182720
,1,30364,182725
,1,30365,182730
,1,30366,182735
,1,30367,182740
,1,30368,182745
,1,30369,182750
,1,30370,182755
,1,30371,182760
,1,30372,182765
,1,30373,182770
,1,30374,182775
,1,30375,182780
,1,30376,182785
,1,30377,182790
,1,30378,182795
,1,30379,182800
,1,30380,182805
,1,30381,182810
,1,30382,182815
,1,30383,182820
,1,30384,182825
,1,30385,182830
,1,30386,182835
,1,30387,182840
,1,30388,182845
,1,30389,182850
,1,30390,182855
,1,30391,182860
,1,30392,182865
,1,30393,182870
,1,30394,182875
,1,30395,182880
,1,30396,182885
,1,30397,182890
,1,30398,182895
,1,30399,182900
,1,30400,182905
,1,30401,182910
,1,30402,182915
,1,30403,182920
,1,30404,182925
,1,30405,182930
,1,30406,182935
,1,30407,182940
,1,30408,182945
,1,30409,182950
,1,30410,182955
,1,30411,182960
,1,30412,182965
,1,30413,182970
,1,30414,182975
,1,30415,182980
,1,30416,182985
,1,30417,182990
,1,30418,182995
,1,30419,183000
,1,30420,183005
,1,30421,183010
,1,30422,183015
,1,30423,183020
,1,30424,183025
,1,30425,183030
,1,30426,183035
,1,30427,183040
,1,30428,183045
,1,30429,183050
,1,30430,183055
,1,30431,183060
,1,30432,183065
,1,30433,183070
,1,30434,183075
,1,30435,183080
,1,30436,183085
,1,30437,183090
,1,30438,183095
,1,30439,183100
,1,30440,183105
,1,30441,183110
,1,30442,183115
,1,30443,183120
,1,30444,183125
,1,30445,183130
,1,30446,183135
,1,30447,183140
,1,30448,183145
,1,30449,183150
,1,30450,183155
,1,30451,183160
,1,30452,183165
,1,30453,183170
,1,30454,183175
,1,30455,183180
,1,30456,183185
,1,30457,183190
,1,30458,183195
,1,30459,183200
,1,30460,183205
,1,30461,183210
,1,30462,183215
,1,30463,183220
,1,30464,183225
,1,30465,183230
,1,30466,183235
,1,30467,183240
,1,30468,183245
,1,30469,183250
,1,30470,183255
,1,30471,183260
,1,30472,183265
,1,30473,183270
,1,30474,183275
,1,30475,183280
,1,30476,183285
,1,30477,183290
,1,30478,183295
,1,30479,183300
,1,30480,183305
,1,30481,183310
,1,30482,183315
,1,30483,183320
,1,30484,183325
,1,30485,183330
,1,30486,183335
,1,30487,183340
,1,30488,183345
,1,30489,183350
,1,30490,183355
,1,30491,183360
,1,30492,183365
,1,30493,183370
,1,30494,183375
,1,30495,183380
,1,30496,183385
,1,30497,183390
,1,30498,183395
,1,30499,183400
,1,30500,183405
,1,30501,183410
,1,30502,183415
,1,30503,183420
,1,30504,183425
,1,30505,183430
,1,30506,183435
,1,30507,183440
,1,30508,183445
,1,30509,183450
,1,30510,183455
,1,30511,183460
,1,30512,183465
,1,30513,183470
,1,30514,183475
,1,30515,183480
,1,30516,183485
,1,30517,183490
,1,30518,183495
,1,30519,183500
,1,30520,183505
,1,30521,183510
,1,30522,183515
,1,30523,183520
,1,30524,183525
,1,30525,183530
,1,30526,183535
,1,30527,183540
,1,30528,183545
,1,30529,183550
,1,30530,183555
,1,30531,183560
,1,30532,183565
,1,30533,183570
,1,30534,183575
,1,30535,183580
,1,30536,183585
,1,30537,183590
,1,30538,183595
,1,30539,183600
,1,30540,183605
,1,30541,183610
,1,30542,183615
,1,30543,183620
,1,30544,183625
,1,30545,183630
,1,30546,183635
,1,30547,183640
,1,30548,183645
,1,30549,183650
,1,30550,183655
,1,30551,183660
,1,30552,183665
,1,30553,183670
,1,30554,183675
,1,30555,183680
,1,30556,183685
,1,30557,183690
,1,30558,183695
,1,30559,183700
,1,30560,183705
,1,30561,183710
,1,30562,183715
,1,30563,183720
,1,30564,183725
,1,30565,183730
,1,30566,183735
,1,30567,183740
,1,30568,183745
,1,30569,183750
,1,30570,183755
,1,30571,183760
,1,30572,183765
,1,30573,183770
,1,30574,183775
,1,30575,183780
,1,30576,183785
,1,30577,183790
,1,30578,183795
,1,30579,183800
,1,30580,183805
,1,30581,183810
,1,30582,183815
,1,30583,183820
,1,30584,183825
,1,30585,183830
,1,30586,183835
,1,30587,183840
,1,30588,183845
,1,30589,183850
,1,30590,183855
,1,30591,183860
,1,30592,183865
,1,30593,183870
,1,30594,183875
,1,30595,183880
,1,30596,183885
,1,30597,183890
,1,30598,183895
,1,30599,183900
,1,30600,183905
,1,30601,183910
,1,30602,183915
,1,30603,183920
,1,30604,183925
,1,30605,183930
,1,30606,183935
,1,30607,183940
,1,30608,183945
,1,30609,183950
,1,30610,183955
,1,30611,183960
,1,30612,183965
,1,30613,183970
,1,30614,183975
,1,30615,183980
,1,30616,183985
,1,30617,183990
,1,30618,183995
,1,30619,184000
,1,30620,184005
,1,30621,184010
,1,30622,184015
,1,30623,184020
,1,30624,184025
,1,30625,184030
,1,30626,184035
,1,30627,184040
,1,30628,184045
,1,30629,184050
,1,30630,184055
,1,30631,184060
,1,30632,184065
,1,30633,184070
,1,30634,184075
,1,30635,184080
,1,30636,184085
,1,30637,184090
,1,30638,184095
,1,30639,184100
,1,30640,184105
,1,30641,184110
,1,30642,184115
,1,30643,184120
,1,30644,184125
,1,30645,184130
,1,30646,184135
,1,30647,184140
,1,30648,184145
,1,30649,184150
,1,30650,184155
,1,30651,184160
,1,30652,184165
,1,30653,184170
,1,30654,184175
,1,30655,184180
,1,30656,184185
,1,30657,184190
,1,30658,184195
,1,30659,184200
,1,30660,184205
,1,30661,184210
,1,30662,184215
,1,30663,184220
,1,30664,184225
,1,30665,184230
,1,30666,184235
,1,30667,184240
,1,30668,184245
,1,30669,184250
,1,30670,184255
,1,30671,184260
,1,30672,184265
,1,30673,184270
,1,30674,184275
,1,30675,184280
,1,30676,184285
,1,30677,184290
,1,30678,184295
,1,30679,184300
,1,30680,184305
,1,30681,184310
,1,30682,184315
,1,30683,184320
,1,30684,184325
,1,30685,184330
,1,30686,184335
,1,30687,184340
,1,30688,184345
,1,30689,184350
,1,30690,184355
,1,30691,184360
,1,30692,184365
,1,30693,184370
,1,30694,184375
,1,30695,184380
,1,30696,184385
,1,30697,184390
,1,30698,184395
,1,30699,184400
,1,30700,184405
,1,30701,184410
,1,30702,184415
,1,30703,184420
,1,30704,184425
,1,30705,184430
,1,30706,184435
,1,30707,184440
,1,30708,184445
,1,30709,184450
,1,30710,184455
,1,30711,184460
,1,30712,184465
,1,30713,184470
,1,30714,184475
,1,30715,184480
,1,30716,184485
,1,30717,184490
,1,30718,184495
,1,30719,184500
,1,30720,184505
,1,30721,184510
,1,30722,184515
,1,30723,184520
,1,30724,184525
,1,30725,184530
,1,30726,184535
,1,30727,184540
,1,30728,184545
,1,30729,184550
,1,30730,184555
,1,30731,184560
,1,30732,184565
,1,30733,184570
,1,30734,184575
,1,30735,184580
,1,30736,184585
,1,30737,184590
,1,30738,184595
,1,30739,184600
,1,30740,184605
,1,30741,184610
,1,30742,184615
,1,30743,184620
,1,30744,184625
,1,30745,184630
,1,30746,184635
,1,30747,184640
,1,30748,184645
,1,30749,184650
,1,30750,184655
,1,30751,184660
,1,30752,184665
,1,30753,184670
,1,30754,184675
,1,30755,184680
,1,30756,184685
,1,30757,184690
,1,30758,184695
,1,30759,184700
,1,30760,184705
,1,30761,184710
,1,30762,184715
,1,30763,184720
,1,30764,184725
,1,30765,184730
,1,30766,184735
,1,30767,184740
,1,30768,184745
,1,30769,184750
,1,30770,184755
,1,30771,184760
,1,30772,184765
,1,30773,184770
,1,30774,184775
,1,30775,184780
,1,30776,184785
,1,30777,184790
,1,30778,184795
,1,30779,184800
,1,30780,184805
,1,30781,184810
,1,30782,184815
,1,30783,184820
,1,30784,184825
,1,30785,184830
,1,30786,184835
,1,30787,184840
,1,30788,184845
,1,30789,184850
,1,30790,184855
,1,30791,184860
,1,30792,184865
,1,30793,184870
,1,30794,184875
,1,30795,184880
,1,30796,184885
,1,30797,184890
,1,30798,184895
,1,30799,184900
,1,30800,184905
,1,30801,184910
,1,30802,184915
,1,30803,184920
,1,30804,184925
,1,30805,184930
,1,30806,184935
,1,30807,184940
,1,30808,184945
,1,30809,184950
,1,30810,184955
,1,30811,184960
,1,30812,184965
,1,30813,184970
,1,30814,184975
,1,30815,184980
,1,30816,184985
,1,30817,184990
,1,30818,184995
,1,30819,185000
,1,30820,185005
,1,30821,185010
,1,30822,185015
,1,30823,185020
,1,30824,185025
,1,30825,185030
,1,30826,185035
,1,30827,185040
,1,30828,185045
,1,30829,185050
,1,30830,185055
,1,30831,185060
,1,30832,185065
,1,30833,185070
,1,30834,185075
,1,30835,185080
,1,30836,185085
,1,30837,185090
,1,30838,185095
,1,30839,185100
,1,30840,185105
,1,30841,185110
,1,30842,185115
,1,30843,185120
,1,30844,185125
,1,30845,185130
,1,30846,185135
,1,30847,185140
,1,30848,185145
,1,30849,185150
,1,30850,185155
,1,30851,185160
,1,30852,185165
,1,30853,185170
,1,30854,185175
,1,30855,185180
,1,30856,185185
,1,30857,185190
,1,30858,185195
,1,30859,185200
,1,30860,185205
,1,30861,185210
,1,30862,185215
,1,30863,185220
,1,30864,185225
,1,30865,185230
,1,30866,185235
,1,30867,185240
,1,30868,185245
,1,30869,185250
,1,30870,185255
,1,30871,185260
,1,30872,185265
,1,30873,185270
,1,30874,185275
,1,30875,185280
,1,30876,185285
,1,30877,185290
,1,30878,185295
,1,30879,185300
,1,30880,185305
,1,30881,185310
,1,30882,185315
,1,30883,185320
,1,30884,185325
,1,30885,185330
,1,30886,185335
,1,30887,185340
,1,30888,185345
,1,30889,185350
,1,30890,185355
,1,30891,185360
,1,30892,185365
,1,30893,185370
,1,30894,185375
,1,30895,185380
,1,30896,185385
,1,30897,185390
,1,30898,185395
,1,30899,185400
,1,30900,185405
,1,30901,185410
,1,30902,185415
,1,30903,185420
,1,30904,185425
,1,30905,185430
,1,30906,185435
,1,30907,185440
,1,30908,185445
,1,30909,185450
,1,30910,185455
,1,30911,185460
,1,30912,185465
,1,30913,185470
,1,30914,185475
,1,30915,185480
,1,30916,185485
,1,30917,185490
,1,30918,185495
,1,30919,185500
,1,30920,185505
,1,30921,185510
,1,30922,185515
,1,30923,185520
,1,30924,185525
,1,30925,185530
,1,30926,185535
,1,30927,185540
,1,30928,185545
,1,30929,185550
,1,30930,185555
,1,30931,185560
,1,30932,185565
,1,30933,185570
,1,30934,185575
,1,30935,185580
,1,30936,185585
,1,30937,185590
,1,30938,185595
,1,30939,185600
,1,30940,185605
,1,30941,185610
,1,30942,185615
,1,30943,185620
,1,30944,185625
,1,30945,185630
,1,30946,185635
,1,30947,185640
,1,30948,185645
,1,30949,185650
,1,30950,185655
,1,30951,185660
,1,30952,185665
,1,30953,185670
,1,30954,185675
,1,30955,185680
,1,30956,185685
,1,30957,185690
,1,30958,185695
,1,30959,185700
,1,30960,185705
,1,30961,185710
,1,30962,185715
,1,30963,185720
,1,30964,185725
,1,30965,185730
,1,30966,185735
,1,30967,185740
,1,30968,185745
,1,30969,185750
,1,30970,185755
,1,30971,185760
,1,30972,185765
,1,30973,185770
,1,30974,185775
,1,30975,185780
,1,30976,185785
,1,30977,185790
,1,30978,185795
,1,30979,185800
,1,30980,185805
,1,30981,185810
,1,30982,185815
,1,30983,185820
,1,30984,185825
,1,30985,185830
,1,30986,185835
,1,30987,185840
,1,30988,185845
,1,30989,185850
,1,30990,185855
,1,30991,185860
,1,30992,185865
,1,30993,185870
,1,30994,185875
,1,30995,185880
,1,30996,185885
,1,30997,185890
,1,30998,185895
,1,30999,185900
,1,31000,185905
,1,31001,185910
,1,31002,185915
,1,31003,185920
,1,31004,185925
,1,31005,185930
,1,31006,185935
,1,31007,185940
,1,31008,185945
,1,31009,185950
,1,31010,185955
,1,31011,185960
,1,31012,185965
,1,31013,185970
,1,31014,185975
,1,31015,185980
,1,31016,185985
,1,31017,185990
,1,31018,185995
,1,31019,186000
,1,31020,186005
,1,31021,186010
,1,31022,186015
,1,31023,186020
,1,31024,186025
,1,31025,186030
,1,31026,186035
,1,31027,186040
,1,31028,186045
,1,31029,186050
,1,31030,186055
,1,31031,186060
,1,31032,186065
,1,31033,186070
,1,31034,186075
,1,31035,186080
,1,31036,186085
,1,31037,186090
,1,31038,186095
,1,31039,186100
,1,31040,186105
,1,31041,186110
,1,31042,186115
,1,31043,186120
,1,31044,186125
,1,31045,186130
,1,31046,186135
,1,31047,186140
,1,31048,186145
,1,31049,186150
,1,31050,186155
,1,31051,186160
,1,31052,186165
,1,31053,186170
,1,31054,186175
,1,31055,186180
,1,31056,186185
,1,31057,186190
,1,31058,186195
,1,31059,186200
,1,31060,186205
,1,31061,186210
,1,31062,186215
,1,31063,186220
,1,31064,186225
,1,31065,186230
,1,31066,186235
,1,31067,186240
,1,31068,186245
,1,31069,186250
,1,31070,186255
,1,31071,186260
,1,31072,186265
,1,31073,186270
,1,31074,186275
,1,31075,186280
,1,31076,186285
,1,31077,186290
,1,31078,186295
,1,31079,186300
,1,31080,186305
,1,31081,186310
,1,31082,186315
,1,31083,186320
,1,31084,186325
,1,31085,186330
,1,31086,186335
,1,31087,186340
,1,31088,186345
,1,31089,186350
,1,31090,186355
,1,31091,186360
,1,31092,186365
,1,31093,186370
,1,31094,186375
,1,31095,186380
,1,31096,186385
,1,31097,186390
,1,31098,186395
,1,31099,186400
,1,31100,186405
,1,31101,186410
,1,31102,186415
,1,31103,186420
,1,31104,186425
,1,31105,186430
,1,31106,186435
,1,31107,186440
,1,31108,186445
,1,31109,186450
,1,31110,186455
,1,31111,186460
,1,31112,186465
,1,31113,186470
,1,31114,186475
,1,31115,186480
,1,31116,186485
,1,31117,186490
,1,31118,186495
,1,31119,186500
,1,31120,186505
,1,31121,186510
,1,31122,186515
,1,31123,186520
,1,31124,186525
,1,31125,186530
,1,31126,186535
,1,31127,186540
,1,31128,186545
,1,31129,186550
,1,31130,186555
,1,31131,186560
,1,31132,186565
,1,31133,186570
,1,31134,186575
,1,31135,186580
,1,31136,186585
,1,31137,186590
,1,31138,186595
,1,31139,186600
,1,31140,186605
,1,31141,186610
,1,31142,186615
,1,31143,186620
,1,31144,186625
,1,31145,186630
,1,31146,186635
,1,31147,186640
,1,31148,186645
,1,31149,186650
,1,31150,186655
,1,31151,186660
,1,31152,186665
,1,31153,186670
,1,31154,186675
,1,31155,186680
,1,31156,186685
,1,31157,186690
,1,31158,186695
,1,31159,186700
,1,31160,186705
,1,31161,186710
,1,31162,186715
,1,31163,186720
,1,31164,186725
,1,31165,186730
,1,31166,186735
,1,31167,186740
,1,31168,186745
,1,31169,186750
,1,31170,186755
,1,31171,186760
,1,31172,186765
,1,31173,186770
,1,31174,186775
,1,31175,186780
,1,31176,186785
,1,31177,186790
,1,31178,186795
,1,31179,186800
,1,31180,186805
,1,31181,186810
,1,31182,186815
,1,31183,186820
,1,31184,186825
,1,31185,186830
,1,31186,186835
,1,31187,186840
,1,31188,186845
,1,31189,186850
,1,31190,186855
,1,31191,186860
,1,31192,186865
,1,31193,186870
,1,31194,186875
,1,31195,186880
,1,31196,186885
,1,31197,186890
,1,31198,186895
,1,31199,186900
,1,31200,186905
,1,31201,186910
,1,31202,186915
,1,31203,186920
,1,31204,186925
,1,31205,186930
,1,31206,186935
,1,31207,186940
,1,31208,186945
,1,31209,186950
,1,31210,186955
,1,31211,186960
,1,31212,186965
,1,31213,186970
,1,31214,186975
,1,31215,186980
,1,31216,186985
,1,31217,186990
,1,31218,186995
,1,31219,187000
,1,31220,187005
,1,31221,187010
,1,31222,187015
,1,31223,187020
,1,31224,187025
,1,31225,187030
,1,31226,187035
,1,31227,187040
,1,31228,187045
,1,31229,187050
,1,31230,187055
,1,31231,187060
,1,31232,187065
,1,31233,187070
,1,31234,187075
,1,31235,187080
,1,31236,187085
,1,31237,187090
,1,31238,187095
,1,31239,187100
,1,31240,187105
,1,31241,187110
,1,31242,187115
,1,31243,187120
,1,31244,187125
,1,31245,187130
,1,31246,187135
,1,31247,187140
,1,31248,187145
,1,31249,187150
,1,31250,187155
,1,31251,187160
,1,31252,187165
,1,31253,187170
,1,31254,187175
,1,31255,187180
,1,31256,187185
,1,31257,187190
,1,31258,187195
,1,31259,187200
,1,31260,187205
,1,31261,187210
,1,31262,187215
,1,31263,187220
,1,31264,187225
,1,31265,187230
,1,31266,187235
,1,31267,187240
,1,31268,187245
,1,31269,187250
,1,31270,187255
,1,31271,187260
,1,31272,187265
,1,31273,187270
,1,31274,187275
,1,31275,187280
,1,31276,187285
,1,31277,187290
,1,31278,187295
,1,31279,187300
,1,31280,187305
,1,31281,187310
,1,31282,187315
,1,31283,187320
,1,31284,187325
,1,31285,187330
,1,31286,187335
,1,31287,187340
,1,31288,187345
,1,31289,187350
,1,31290,187355
,1,31291,187360
,1,31292,187365
,1,31293,187370
,1,31294,187375
,1,31295,187380
,1,31296,187385
,1,31297,187390
,1,31298,187395
,1,31299,187400
,1,31300,187405
,1,31301,187410
,1,31302,187415
,1,31303,187420
,1,31304,187425
,1,31305,187430
,1,31306,187435
,1,31307,187440
,1,31308,187445
,1,31309,187450
,1,31310,187455
,1,31311,187460
,1,31312,187465
,1,31313,187470
,1,31314,187475
,1,31315,187480
,1,31316,187485
,1,31317,187490
,1,31318,187495
,1,31319,187500
,1,31320,187505
,1,31321,187510
,1,31322,187515
,1,31323,187520
,1,31324,187525
,1,31325,187530
,1,31326,187535
,1,31327,187540
,1,31328,187545
,1,31329,187550
,1,31330,187555
,1,31331,187560
,1,31332,187565
,1,31333,187570
,1,31334,187575
,1,31335,187580
,1,31336,187585
,1,31337,187590
,1,31338,187595
,1,31339,187600
,1,31340,187605
,1,31341,187610
,1,31342,187615
,1,31343,187620
,1,31344,187625
,1,31345,187630
,1,31346,187635
,1,31347,187640
,1,31348,187645
,1,31349,187650
,1,31350,187655
,1,31351,187660
,1,31352,187665
,1,31353,187670
,1,31354,187675
,1,31355,187680
,1,31356,187685
,1,31357,187690
,1,31358,187695
,1,31359,187700
,1,31360,187705
,1,31361,187710
,1,31362,187715
,1,31363,187720
,1,31364,187725
,1,31365,187730
,1,31366,187735
,1,31367,187740
,1,31368,187745
,1,31369,187750
,1,31370,187755
,1,31371,187760
,1,31372,187765
,1,31373,187770
,1,31374,187775
,1,31375,187780
,1,31376,187785
,1,31377,187790
,1,31378,187795
,1,31379,187800
,1,31380,187805
,1,31381,187810
,1,31382,187815
,1,31383,187820
,1,31384,187825
,1,31385,187830
,1,31386,187835
,1,31387,187840
,1,31388,187845
,1,31389,187850
,1,31390,187855
,1,31391,187860
,1,31392,187865
,1,31393,187870
,1,31394,187875
,1,31395,187880
,1,31396,187885
,1,31397,187890
,1,31398,187895
,1,31399,187900
,1,31400,187905
,1,31401,187910
,1,31402,187915
,1,31403,187920
,1,31404,187925
,1,31405,187930
,1,31406,187935
,1,31407,187940
,1,31408,187945
,1,31409,187950
,1,31410,187955
,1,31411,187960
,1,31412,187965
,1,31413,187970
,1,31414,187975
,1,31415,187980
,1,31416,187985
,1,31417,187990
,1,31418,187995
,1,31419,188000
,1,31420,188005
,1,31421,188010
,1,31422,188015
,1,31423,188020
,1,31424,188025
,1,31425,188030
,1,31426,188035
,1,31427,188040
,1,31428,188045
,1,31429,188050
,1,31430,188055
,1,31431,188060
,1,31432,188065
,1,31433,188070
,1,31434,188075
,1,31435,188080
,1,31436,188085
,1,31437,188090
,1,31438,188095
,1,31439,188100
,1,31440,188105
,1,31441,188110
,1,31442,188115
,1,31443,188120
,1,31444,188125
,1,31445,188130
,1,31446,188135
,1,31447,188140
,1,31448,188145
,1,31449,188150
,1,31450,188155
,1,31451,188160
,1,31452,188165
,1,31453,188170
,1,31454,188175
,1,31455,188180
,1,31456,188185
,1,31457,188190
,1,31458,188195
,1,31459,188200
,1,31460,188205
,1,31461,188210
,1,31462,188215
,1,31463,188220
,1,31464,188225
,1,31465,188230
,1,31466,188235
,1,31467,188240
,1,31468,188245
,1,31469,188250
,1,31470,188255
,1,31471,188260
,1,31472,188265
,1,31473,188270
,1,31474,188275
,1,31475,188280
,1,31476,188285
,1,31477,188290
,1,31478,188295
,1,31479,188300
,1,31480,188305
,1,31481,188310
,1,31482,188315
,1,31483,188320
,1,31484,188325
,1,31485,188330
,1,31486,188335
,1,31487,188340
,1,31488,188345
,1,31489,188350
,1,31490,188355
,1,31491,188360
,1,31492,188365
,1,31493,188370
,1,31494,188375
,1,31495,188380
,1,31496,188385
,1,31497,188390
,1,31498,188395
,1,31499,188400
,1,31500,188405
,1,31501,188410
,1,31502,188415
,1,31503,188420
,1,31504,188425
,1,31505,188430
,1,31506,188435
,1,31507,188440
,1,31508,188445
,1,31509,188450
,1,31510,188455
,1,31511,188460
,1,31512,188465
,1,31513,188470
,1,31514,188475
,1,31515,188480
,1,31516,188485
,1,31517,188490
,1,31518,188495
,1,31519,188500
,1,31520,188505
,1,31521,188510
,1,31522,188515
,1,31523,188520
,1,31524,188525
,1,31525,188530
,1,31526,188535
,1,31527,188540
,1,31528,188545
,1,31529,188550
,1,31530,188555
,1,31531,188560
,1,31532,188565
,1,31533,188570
,1,31534,188575
,1,31535,188580
,1,31536,188585
,1,31537,188590
,1,31538,188595
,1,31539,188600
,1,31540,188605
,1,31541,188610
,1,31542,188615
,1,31543,188620
,1,31544,188625
,1,31545,188630
,1,31546,188635
,1,31547,188640
,1,31548,188645
,1,31549,188650
,1,31550,188655
,1,31551,188660
,1,31552,188665
,1,31553,188670
,1,31554,188675
,1,31555,188680
,1,31556,188685
,1,31557,188690
,1,31558,188695
,1,31559,188700
,1,31560,188705
,1,31561,188710
,1,31562,188715
,1,31563,188720
,1,31564,188725
,1,31565,188730
,1,31566,188735
,1,31567,188740
,1,31568,188745
,1,31569,188750
,1,31570,188755
,1,31571,188760
,1,31572,188765
,1,31573,188770
,1,31574,188775
,1,31575,188780
,1,31576,188785
,1,31577,188790
,1,31578,188795
,1,31579,188800
,1,31580,188805
,1,31581,188810
,1,31582,188815
,1,31583,188820
,1,31584,188825
,1,31585,188830
,1,31586,188835
,1,31587,188840
,1,31588,188845
,1,31589,188850
,1,31590,188855
,1,31591,188860
,1,31592,188865
,1,31593,188870
,1,31594,188875
,1,31595,188880
,1,31596,188885
,1,31597,188890
,1,31598,188895
,1,31599,188900
,1,31600,188905
,1,31601,188910
,1,31602,188915
,1,31603,188920
,1,31604,188925
,1,31605,188930
,1,31606,188935
,1,31607,188940
,1,31608,188945
,1,31609,188950
,1,31610,188955
,1,31611,188960
,1,31612,188965
,1,31613,188970
,1,31614,188975
,1,31615,188980
,1,31616,188985
,1,31617,188990
,1,31618,188995
,1,31619,189000
,1,31620,189005
,1,31621,189010
,1,31622,189015
,1,31623,189020
,1,31624,189025
,1,31625,189030
,1,31626,189035
,1,31627,189040
,1,31628,189045
,1,31629,189050
,1,31630,189055
,1,31631,189060
,1,31632,189065
,1,31633,189070
,1,31634,189075
,1,31635,189080
,1,31636,189085
,1,31637,189090
,1,31638,189095
,1,31639,189100
,1,31640,189105
,1,31641,189110
,1,31642,189115
,1,31643,189120
,1,31644,189125
,1,31645,189130
,1,31646,189135
,1,31647,189140
,1,31648,189145
,1,31649,189150
,1,31650,189155
,1,31651,189160
,1,31652,189165
,1,31653,189170
,1,31654,189175
,1,31655,189180
,1,31656,189185
,1,31657,189190
,1,31658,189195
,1,31659,189200
,1,31660,189205
,1,31661,189210
,1,31662,189215
,1,31663,189220
,1,31664,189225
,1,31665,189230
,1,31666,189235
,1,31667,189240
,1,31668,189245
,1,31669,189250
,1,31670,189255
,1,31671,189260
,1,31672,189265
,1,31673,189270
,1,31674,189275
,1,31675,189280
,1,31676,189285
,1,31677,189290
,1,31678,189295
,1,31679,189300
,1,31680,189305
,1,31681,189310
,1,31682,189315
,1,31683,189320
,1,31684,189325
,1,31685,189330
,1,31686,189335
,1,31687,189340
,1,31688,189345
,1,31689,189350
,1,31690,189355
,1,31691,189360
,1,31692,189365
,1,31693,189370
,1,31694,189375
,1,31695,189380
,1,31696,189385
,1,31697,189390
,1,31698,189395
,1,31699,189400
,1,31700,189405
,1,31701,189410
,1,31702,189415
,1,31703,189420
,1,31704,189425
,1,31705,189430
,1,31706,189435
,1,31707,189440
,1,31708,189445
,1,31709,189450
,1,31710,189455
,1,31711,189460
,1,31712,189465
,1,31713,189470
,1,31714,189475
,1,31715,189480
,1,31716,189485
,1,31717,189490
,1,31718,189495
,1,31719,189500
,1,31720,189505
,1,31721,189510
,1,31722,189515
,1,31723,189520
,1,31724,189525
,1,31725,189530
,1,31726,189535
,1,31727,189540
,1,31728,189545
,1,31729,189550
,1,31730,189555
,1,31731,189560
,1,31732,189565
,1,31733,189570
,1,31734,189575
,1,31735,189580
,1,31736,189585
,1,31737,189590
,1,31738,189595
,1,31739,189600
,1,31740,189605
,1,31741,189610
,1,31742,189615
,1,31743,189620
,1,31744,189625
,1,31745,189630
,1,31746,189635
,1,31747,189640
,1,31748,189645
,1,31749,189650
,1,31750,189655
,1,31751,189660
,1,31752,189665
,1,31753,189670
,1,31754,189675
,1,31755,189680
,1,31756,189685
,1,31757,189690
,1,31758,189695
,1,31759,189700
,1,31760,189705
,1,31761,189710
,1,31762,189715
,1,31763,189720
,1,31764,189725
,1,31765,189730
,1,31766,189735
,1,31767,189740
,1,31768,189745
,1,31769,189750
,1,31770,189755
,1,31771,189760
,1,31772,189765
,1,31773,189770
,1,31774,189775
,1,31775,189780
,1,31776,189785
,1,31777,189790
,1,31778,189795
,1,31779,189800
,1,31780,189805
,1,31781,189810
,1,31782,189815
,1,31783,189820
,1,31784,189825
,1,31785,189830
,1,31786,189835
,1,31787,189840
,1,31788,189845
,1,31789,189850
,1,31790,189855
,1,31791,189860
,1,31792,189865
,1,31793,189870
,1,31794,189875
,1,31795,189880
,1,31796,189885
,1,31797,189890
,1,31798,189895
,1,31799,189900
,1,31800,189905
,1,31801,189910
,1,31802,189915
,1,31803,189920
,1,31804,189925
,1,31805,189930
,1,31806,189935
,1,31807,189940
,1,31808,189945
,1,31809,189950
,1,31810,189955
,1,31811,189960
,1,31812,189965
,1,31813,189970
,1,31814,189975
,1,31815,189980
,1,31816,189985
,1,31817,189990
,1,31818,189995
,1,31819,190000
,1,31820,190005
,1,31821,190010
,1,31822,190015
,1,31823,190020
,1,31824,190025
,1,31825,190030
,1,31826,190035
,1,31827,190040
,1,31828,190045
,1,31829,190050
,1,31830,190055
,1,31831,190060
,1,31832,190065
,1,31833,190070
,1,31834,190075
,1,31835,190080
,1,31836,190085
,1,31837,190090
,1,31838,190095
,1,31839,190100
,1,31840,190105
,1,31841,190110
,1,31842,190115
,1,31843,190120
,1,31844,190125
,1,31845,190130
,1,31846,190135
,1,31847,190140
,1,31848,190145
,1,31849,190150
,1,31850,190155
,1,31851,190160
,1,31852,190165
,1,31853,190170
,1,31854,190175
,1,31855,190180
,1,31856,190185
,1,31857,190190
,1,31858,190195
,1,31859,190200
,1,31860,190205
,1,31861,190210
,1,31862,190215
,1,31863,190220
,1,31864,190225
,1,31865,190230
,1,31866,190235
,1,31867,190240
,1,31868,190245
,1,31869,190250
,1,31870,190255
,1,31871,190260
,1,31872,190265
,1,31873,190270
,1,31874,190275
,1,31875,190280
,1,31876,190285
,1,31877,190290
,1,31878,190295
,1,31879,190300
,1,31880,190305
,1,31881,190310
,1,31882,190315
,1,31883,190320
,1,31884,190325
,1,31885,190330
,1,31886,190335
,1,31887,190340
,1,31888,190345
,1,31889,190350
,1,31890,190355
,1,31891,190360
,1,31892,190365
,1,31893,190370
,1,31894,190375
,1,31895,190380
,1,31896,190385
,1,31897,190390
,1,31898,190395
,1,31899,190400
,1,31900,190405
,1,31901,190410
,1,31902,190415
,1,31903,190420
,1,31904,190425
,1,31905,190430
,1,31906,190435
,1,31907,190440
,1,31908,190445
,1,31909,190450
,1,31910,190455
,1,31911,190460
,1,31912,190465
,1,31913,190470
,1,31914,190475
,1,31915,190480
,1,31916,190485
,1,31917,190490
,1,31918,190495
,1,31919,190500
,1,31920,190505
,1,31921,190510
,1,31922,190515
,1,31923,190520
,1,31924,190525
,1,31925,190530
,1,31926,190535
,1,31927,190540
,1,31928,190545
,1,31929,190550
,1,31930,190555
,1,31931,190560
,1,31932,190565
,1,31933,190570
,1,31934,190575
,1,31935,190580
,1,31936,190585
,1,31937,190590
,1,31938,190595
,1,31939,190600
,1,31940,190605
,1,31941,190610
,1,31942,190615
,1,31943,190620
,1,31944,190625
,1,31945,190630
,1,31946,190635
,1,31947,190640
,1,31948,190645
,1,31949,190650
,1,31950,190655
,1,31951,190660
,1,31952,190665
,1,31953,190670
,1,31954,190675
,1,31955,190680
,1,31956,190685
,1,31957,190690
,1,31958,190695
,1,31959,190700
,1,31960,190705
,1,31961,190710
,1,31962,190715
,1,31963,190720
,1,31964,190725
,1,31965,190730
,1,31966,190735
,1,31967,190740
,1,31968,190745
,1,31969,190750
,1,31970,190755
,1,31971,190760
,1,31972,190765
,1,31973,190770
,1,31974,190775
,1,31975,190780
,1,31976,190785
,1,31977,190790
,1,31978,190795
,1,31979,190800
,1,31980,190805
,1,31981,190810
,1,31982,190815
,1,31983,190820
,1,31984,190825
,1,31985,190830
,1,31986,190835
,1,31987,190840
,1,31988,190845
,1,31989,190850
,1,31990,190855
,1,31991,190860
,1,31992,190865
,1,31993,190870
,1,31994,190875
,1,31995,190880
,1,31996,190885
,1,31997,190890
,1,31998,190895
,1,31999,190900
,1,32000,190905
,1,32001,190910
,1,32002,190915
,1,32003,190920
,1,32004,190925
,1,32005,190930
,1,32006,190935
,1,32007,190940
,1,32008,190945
,1,32009,190950
,1,32010,190955
,1,32011,190960
,1,32012,190965
,1,32013,190970
,1,32014,190975
,1,32015,190980
,1,32016,190985
,1,32017,190990
,1,32018,190995
,1,32019,191000
,1,32020,191005
,1,32021,191010
,1,32022,191015
,1,32023,191020
,1,32024,191025
,1,32025,191030
,1,32026,191035
,1,32027,191040
,1,32028,191045
,1,32029,191050
,1,32030,191055
,1,32031,191060
,1,32032,191065
,1,32033,191070
,1,32034,191075
,1,32035,191080
,1,32036,191085
,1,32037,191090
,1,32038,191095
,1,32039,191100
,1,32040,191105
,1,32041,191110
,1,32042,191115
,1,32043,191120
,1,32044,191125
,1,32045,191130
,1,32046,191135
,1,32047,191140
,1,32048,191145
,1,32049,191150
,1,32050,191155
,1,32051,191160
,1,32052,191165
,1,32053,191170
,1,32054,191175
,1,32055,191180
,1,32056,191185
,1,32057,191190
,1,32058,191195
,1,32059,191200
,1,32060,191205
,1,32061,191210
,1,32062,191215
,1,32063,191220
,1,32064,191225
,1,32065,191230
,1,32066,191235
,1,32067,191240
,1,32068,191245
,1,32069,191250
,1,32070,191255
,1,32071,191260
,1,32072,191265
,1,32073,191270
,1,32074,191275
,1,32075,191280
,1,32076,191285
,1,32077,191290
,1,32078,191295
,1,32079,191300
,1,32080,191305
,1,32081,191310
,1,32082,191315
,1,32083,191320
,1,32084,191325
,1,32085,191330
,1,32086,191335
,1,32087,191340
,1,32088,191345
,1,32089,191350
,1,32090,191355
,1,32091,191360
,1,32092,191365
,1,32093,191370
,1,32094,191375
,1,32095,191380
,1,32096,191385
,1,32097,191390
,1,32098,191395
,1,32099,191400
,1,32100,191405
,1,32101,191410
,1,32102,191415
,1,32103,191420
,1,32104,191425
,1,32105,191430
,1,32106,191435
,1,32107,191440
,1,32108,191445
,1,32109,191450
,1,32110,191455
,1,32111,191460
,1,32112,191465
,1,32113,191470
,1,32114,191475
,1,32115,191480
,1,32116,191485
,1,32117,191490
,1,32118,191495
,1,32119,191500
,1,32120,191505
,1,32121,191510
,1,32122,191515
,1,32123,191520
,1,32124,191525
,1,32125,191530
,1,32126,191535
,1,32127,191540
,1,32128,191545
,1,32129,191550
,1,32130,191555
,1,32131,191560
,1,32132,191565
,1,32133,191570
,1,32134,191575
,1,32135,191580
,1,32136,191585
,1,32137,191590
,1,32138,191595
,1,32139,191600
,1,32140,191605
,1,32141,191610
,1,32142,191615
,1,32143,191620
,1,32144,191625
,1,32145,191630
,1,32146,191635
,1,32147,191640
,1,32148,191645
,1,32149,191650
,1,32150,191655
,1,32151,191660
,1,32152,191665
,1,32153,191670
,1,32154,191675
,1,32155,191680
,1,32156,191685
,1,32157,191690
,1,32158,191695
,1,32159,191700
,1,32160,191705
,1,32161,191710
,1,32162,191715
,1,32163,191720
,1,32164,191725
,1,32165,191730
,1,32166,191735
,1,32167,191740
,1,32168,191745
,1,32169,191750
,1,32170,191755
,1,32171,191760
,1,32172,191765
,1,32173,191770
,1,32174,191775
,1,32175,191780
,1,32176,191785
,1,32177,191790
,1,32178,191795
,1,32179,191800
,1,32180,191805
,1,32181,191810
,1,32182,191815
,1,32183,191820
,1,32184,191825
,1,32185,191830
,1,32186,191835
,1,32187,191840
,1,32188,191845
,1,32189,191850
,1,32190,191855
,1,32191,191860
,1,32192,191865
,1,32193,191870
,1,32194,191875
,1,32195,191880
,1,32196,191885
,1,32197,191890
,1,32198,191895
,1,32199,191900
,1,32200,191905
,1,32201,191910
,1,32202,191915
,1,32203,191920
,1,32204,191925
,1,32205,191930
,1,32206,191935
,1,32207,191940
,1,32208,191945
,1,32209,191950
,1,32210,191955
,1,32211,191960
,1,32212,191965
,1,32213,191970
,1,32214,191975
,1,32215,191980
,1,32216,191985
,1,32217,191990
,1,32218,191995
,1,32219,192000
,1,32220,192005
,1,32221,192010
,1,32222,192015
,1,32223,192020
,1,32224,192025
,1,32225,192030
,1,32226,192035
,1,32227,192040
,1,32228,192045
,1,32229,192050
,1,32230,192055
,1,32231,192060
,1,32232,192065
,1,32233,192070
,1,32234,192075
,1,32235,192080
,1,32236,192085
,1,32237,192090
,1,32238,192095
,1,32239,192100
,1,32240,192105
,1,32241,192110
,1,32242,192115
,1,32243,192120
,1,32244,192125
,1,32245,192130
,1,32246,192135
,1,32247,192140
,1,32248,192145
,1,32249,192150
,1,32250,192155
,1,32251,192160
,1,32252,192165
,1,32253,192170
,1,32254,192175
,1,32255,192180
,1,32256,192185
,1,32257,192190
,1,32258,192195
,1,32259,192200
,1,32260,192205
,1,32261,192210
,1,32262,192215
,1,32263,192220
,1,32264,192225
,1,32265,192230
,1,32266,192235
,1,32267,192240
,1,32268,192245
,1,32269,192250
,1,32270,192255
,1,32271,192260
,1,32272,192265
,1,32273,192270
,1,32274,192275
,1,32275,192280
,1,32276,192285
,1,32277,192290
,1,32278,192295
,1,32279,192300
,1,32280,192305
,1,32281,192310
,1,32282,192315
,1,32283,192320
,1,32284,192325
,1,32285,192330
,1,32286,192335
,1,32287,192340
,1,32288,192345
,1,32289,192350
,1,32290,192355
,1,32291,192360
,1,32292,192365
,1,32293,192370
,1,32294,192375
,1,32295,192380
,1,32296,192385
,1,32297,192390
,1,32298,192395
,1,32299,192400
,1,32300,192405
,1,32301,192410
,1,32302,192415
,1,32303,192420
,1,32304,192425
,1,32305,192430
,1,32306,192435
,1,32307,192440
,1,32308,192445
,1,32309,192450
,1,32310,192455
,1,32311,192460
,1,32312,192465
,1,32313,192470
,1,32314,192475
,1,32315,192480
,1,32316,192485
,1,32317,192490
,1,32318,192495
,1,32319,192500
,1,32320,192505
,1,32321,192510
,1,32322,192515
,1,32323,192520
,1,32324,192525
,1,32325,192530
,1,32326,192535
,1,32327,192540
,1,32328,192545
,1,32329,192550
,1,32330,192555
,1,32331,192560
,1,32332,192565
,1,32333,192570
,1,32334,192575
,1,32335,192580
,1,32336,192585
,1,32337,192590
,1,32338,192595
,1,32339,192600
,1,32340,192605
,1,32341,192610
,1,32342,192615
,1,32343,192620
,1,32344,192625
,1,32345,192630
,1,32346,192635
,1,32347,192640
,1,32348,192645
,1,32349,192650
,1,32350,192655
,1,32351,192660
,1,32352,192665
,1,32353,192670
,1,32354,192675
,1,32355,192680
,1,32356,192685
,1,32357,192690
,1,32358,192695
,1,32359,192700
,1,32360,192705
,1,32361,192710
,1,32362,192715
,1,32363,192720
,1,32364,192725
,1,32365,192730
,1,32366,192735
,1,32367,192740
,1,32368,192745
,1,32369,192750
,1,32370,192755
,1,32371,192760
,1,32372,192765
,1,32373,192770
,1,32374,192775
,1,32375,192780
,1,32376,192785
,1,32377,192790
,1,32378,192795
,1,32379,192800
,1,32380,192805
,1,32381,192810
,1,32382,192815
,1,32383,192820
,1,32384,192825
,1,32385,192830
,1,32386,192835
,1,32387,192840
,1,32388,192845
,1,32389,192850
,1,32390,192855
,1,32391,192860
,1,32392,192865
,1,32393,192870
,1,32394,192875
,1,32395,192880
,1,32396,192885
,1,32397,192890
,1,32398,192895
,1,32399,192900
,1,32400,192905
,1,32401,192910
,1,32402,192915
,1,32403,192920
,1,32404,192925
,1,32405,192930
,1,32406,192935
,1,32407,192940
,1,32408,192945
,1,32409,192950
,1,32410,192955
,1,32411,192960
,1,32412,192965
,1,32413,192970
,1,32414,192975
,1,32415,192980
,1,32416,192985
,1,32417,192990
,1,32418,192995
,1,32419,193000
,1,32420,193005
,1,32421,193010
,1,32422,193015
,1,32423,193020
,1,32424,193025
,1,32425,193030
,1,32426,193035
,1,32427,193040
,1,32428,193045
,1,32429,193050
,1,32430,193055
,1,32431,193060
,1,32432,193065
,1,32433,193070
,1,32434,193075
,1,32435,193080
,1,32436,193085
,1,32437,193090
,1,32438,193095
,1,32439,193100
,1,32440,193105
,1,32441,193110
,1,32442,193115
,1,32443,193120
,1,32444,193125
,1,32445,193130
,1,32446,193135
,1,32447,193140
,1,32448,193145
,1,32449,193150
,1,32450,193155
,1,32451,193160
,1,32452,193165
,1,32453,193170
,1,32454,193175
,1,32455,193180
,1,32456,193185
,1,32457,193190
,1,32458,193195
,1,32459,193200
,1,32460,193205
,1,32461,193210
,1,32462,193215
,1,32463,193220
,1,32464,193225
,1,32465,193230
,1,32466,193235
,1,32467,193240
,1,32468,193245
,1,32469,193250
,1,32470,193255
,1,32471,193260
,1,32472,193265
,1,32473,193270
,1,32474,193275
,1,32475,193280
,1,32476,193285
,1,32477,193290
,1,32478,193295
,1,32479,193300
,1,32480,193305
,1,32481,193310
,1,32482,193315
,1,32483,193320
,1,32484,193325
,1,32485,193330
,1,32486,193335
,1,32487,193340
,1,32488,193345
,1,32489,193350
,1,32490,193355
,1,32491,193360
,1,32492,193365
,1,32493,193370
,1,32494,193375
,1,32495,193380
,1,32496,193385
,1,32497,193390
,1,32498,193395
,1,32499,193400
,1,32500,193405
,1,32501,193410
,1,32502,193415
,1,32503,193420
,1,32504,193425
,1,32505,193430
,1,32506,193435
,1,32507,193440
,1,32508,193445
,1,32509,193450
,1,32510,193455
,1,32511,193460
,1,32512,193465
,1,32513,193470
,1,32514,193475
,1,32515,193480
,1,32516,193485
,1,32517,193490
,1,32518,193495
,1,32519,193500
,1,32520,193505
,1,32521,193510
,1,32522,193515
,1,32523,193520
,1,32524,193525
,1,32525,193530
,1,32526,193535
,1,32527,193540
,1,32528,193545
,1,32529,193550
,1,32530,193555
,1,32531,193560
,1,32532,193565
,1,32533,193570
,1,32534,193575
,1,32535,193580
,1,32536,193585
,1,32537,193590
,1,32538,193595
,1,32539,193600
,1,32540,193605
,1,32541,193610
,1,32542,193615
,1,32543,193620
,1,32544,193625
,1,32545,193630
,1,32546,193635
,1,32547,193640
,1,32548,193645
,1,32549,193650
,1,32550,193655
,1,32551,193660
,1,32552,193665
,1,32553,193670
,1,32554,193675
,1,32555,193680
,1,32556,193685
,1,32557,193690
,1,32558,193695
,1,32559,193700
,1,32560,193705
,1,32561,193710
,1,32562,193715
,1,32563,193720
,1,32564,193725
,1,32565,193730
,1,32566,193735
,1,32567,193740
,1,32568,193745
,1,32569,193750
,1,32570,193755
,1,32571,193760
,1,32572,193765
,1,32573,193770
,1,32574,193775
,1,32575,193780
,1,32576,193785
,1,32577,193790
,1,32578,193795
,1,32579,193800
,1,32580,193805
,1,32581,193810
,1,32582,193815
,1,32583,193820
,1,32584,193825
,1,32585,193830
,1,32586,193835
,1,32587,193840
,1,32588,193845
,1,32589,193850
,1,32590,193855
,1,32591,193860
,1,32592,193865
,1,32593,193870
,1,32594,193875
,1,32595,193880
,1,32596,193885
,1,32597,193890
,1,32598,193895
,1,32599,193900
,1,32600,193905
,1,32601,193910
,1,32602,193915
,1,32603,193920
,1,32604,193925
,1,32605,193930
,1,32606,193935
,1,32607,193940
,1,32608,193945
,1,32609,193950
,1,32610,193955
,1,32611,193960
,1,32612,193965
,1,32613,193970
,1,32614,193975
,1,32615,193980
,1,32616,193985
,1,32617,193990
,1,32618,193995
,1,32619,194000
,1,32620,194005
,1,32621,194010
,1,32622,194015
,1,32623,194020
,1,32624,194025
,1,32625,194030
,1,32626,194035
,1,32627,194040
,1,32628,194045
,1,32629,194050
,1,32630,194055
,1,32631,194060
,1,32632,194065
,1,32633,194070
,1,32634,194075
,1,32635,194080
,1,32636,194085
,1,32637,194090
,1,32638,194095
,1,32639,194100
,1,32640,194105
,1,32641,194110
,1,32642,194115
,1,32643,194120
,1,32644,194125
,1,32645,194130
,1,32646,194135
,1,32647,194140
,1,32648,194145
,1,32649,194150
,1,32650,194155
,1,32651,194160
,1,32652,194165
,1,32653,194170
,1,32654,194175
,1,32655,194180
,1,32656,194185
,1,32657,194190
,1,32658,194195
,1,32659,194200
,1,32660,194205
,1,32661,194210
,1,32662,194215
,1,32663,194220
,1,32664,194225
,1,32665,194230
,1,32666,194235
,1,32667,194240
,1,32668,194245
,1,32669,194250
,1,32670,194255
,1,32671,194260
,1,32672,194265
,1,32673,194270
,1,32674,194275
,1,32675,194280
,1,32676,194285
,1,32677,194290
,1,32678,194295
,1,32679,194300
,1,32680,194305
,1,32681,194310
,1,32682,194315
,1,32683,194320
,1,32684,194325
,1,32685,194330
,1,32686,194335
,1,32687,194340
,1,32688,194345
,1,32689,194350
,1,32690,194355
,1,32691,194360
,1,32692,194365
,1,32693,194370
,1,32694,194375
,1,32695,194380
,1,32696,194385
,1,32697,194390
,1,32698,194395
,1,32699,194400
,1,32700,194405
,1,32701,194410
,1,32702,194415
,1,32703,194420
,1,32704,194425
,1,32705,194430
,1,32706,194435
,1,32707,194440
,1,32708,194445
,1,32709,194450
,1,32710,194455
,1,32711,194460
,1,32712,194465
,1,32713,194470
,1,32714,194475
,1,32715,194480
,1,32716,194485
,1,32717,194490
,1,32718,194495
,1,32719,194500
,1,32720,194505
,1,32721,194510
,1,32722,194515
,1,32723,194520
,1,32724,194525
,1,32725,194530
,1,32726,194535
,1,32727,194540
,1,32728,194545
,1,32729,194550
,1,32730,194555
,1,32731,194560
,1,32732,194565
,1,32733,194570
,1,32734,194575
,1,32735,194580
,1,32736,194585
,1,32737,194590
,1,32738,194595
,1,32739,194600
,1,32740,194605
,1,32741,194610
,1,32742,194615
,1,32743,194620
,1,32744,194625
,1,32745,194630
,1,32746,194635
,1,32747,194640
,1,32748,194645
,1,32749,194650
,1,32750,194655
,1,32751,194660
,1,32752,194665
,1,32753,194670
,1,32754,194675
,1,32755,194680
,1,32756,194685
,1,32757,194690
,1,32758,194695
,1,32759,194700
,1,32760,194705
,1,32761,194710
,1,32762,194715
,1,32763,194720
,1,32764,194725
,1,32765,194730
,1,32766,194735
,1,32767,194740
,1,32768,194745
,1,32769,194750
,1,32770,194755
,1,32771,194760
,1,32772,194765
,1,32773,194770
,1,32774,194775
,1,32775,194780
,1,32776,194785
,1,32777,194790
,1,32778,194795
,1,32779,194800
,1,32780,194805
,1,32781,194810
,1,32782,194815
,1,32783,194820
,1,32784,194825
,1,32785,194830
,1,32786,194835
,1,32787,194840
,1,32788,194845
,1,32789,194850
,1,32790,194855
,1,32791,194860
,1,32792,194865
,1,32793,194870
,1,32794,194875
,1,32795,194880
,1,32796,194885
,1,32797,194890
,1,32798,194895
,1,32799,194900
,1,32800,194905
,1,32801,194910
,1,32802,194915
,1,32803,194920
,1,32804,194925
,1,32805,194930
,1,32806,194935
,1,32807,194940
,1,32808,194945
,1,32809,194950
,1,32810,194955
,1,32811,194960
,1,32812,194965
,1,32813,194970
,1,32814,194975
,2,35551,1070
,3,36314,30900
,3,36244,198805
,3,36256,204100
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,204110
,4,3,208110
,4,4,208115
,4,1,208125
,4,2,208130
,4,3,208135
,4,4,208140
,4,5,208145
,4,6,208150
,4,7,208155
,4,8,208160
,4,9,208165
,4,10,208170
,4,11,208175
,4,12,208180
,1,1,85
,2,35551,70
,3,36314,204090
,3,36244,195515
,3,36244,204190
,4,11,208205
,4,14,208210
,4,20,208215
,4,23,208220
,4,26,208225
,4,29,208230
,4,35,208235
,4,38,208240
,4,41,208245
,4,44,208250
,4,47,208255
,4,50,208260
,4,53,208265
,4,56,208270
,4,59,208275
,4,65,208280
,4,71,208285
,4,77,208290
,4,83,208295
,4,86,208300
,4,89,208305
,4,95,208310
,4,107,208315
,4,110,208320
,4,113,208325
,4,131,208330
,4,134,208335
,4,137,208340
,4,143,208345
,4,149,208350
,4,152,208355
,4,155,208360
,4,158,208365
,4,164,208370
,4,167,208375
,4,170,208380
,4,173,208385
,4,176,208390
,4,179,208395
,4,182,208400
,4,185,208405
,4,191,208410
,4,194,208415
,4,200,208420
,4,209,208425
,4,215,208430
,4,218,208435
,4,221,208440
,4,224,208445
,4,227,208450
,4,230,208455
,4,233,208460
,4,239,208465
,4,242,208470
,4,245,208475
,4,254,208480
,4,257,208485
,4,260,208490
,4,263,208495
,4,266,208500
,4,275,208505
,4,278,208510
,4,281,208515
,4,284,208520
,4,287,208525
,4,290,208530
,4,296,208535
,4,302,208540
,4,308,208545
,4,311,208550
,4,320,208555
,4,323,208560
,4,326,208565
,4,329,208570
,4,335,208575
,4,338,208580
,4,344,208585
,4,347,208590
,4,350,208595
,4,356,208600
,4,368,208605
,4,374,208610
,4,377,208615
,4,380,208620
,4,383,208625
,4,386,208630
,4,398,208635
,4,401,208640
,4,407,208645
,4,410,208650
,4,413,208655
,4,416,208660
,4,419,208665
,4,422,208670
,4,425,208675
,4,428,208680
,4,431,208685
,4,434,208690
,4,440,208695
,4,443,208700
,4,446,208705
,4,455,208710
,4,458,208715
,4,461,208720
,4,464,208725
,4,467,208730
,4,470,208735
,4,473,208740
,4,479,208745
,4,482,208750
,4,485,208755
,4,491,208760
,4,494,208765
,4,500,208770
,4,506,208775
,4,509,208780
,4,512,208785
,4,515,208790
,4,518,208795
,4,521,208800
,4,524,208805
,4,527,208810
,4,530,208815
,4,533,208820
,4,536,208825
,4,539,208830
,4,542,208835
,4,545,208840
,4,548,208845
,4,554,208850
,4,560,208855
,4,563,208860
,4,566,208865
,4,584,208870
,4,590,208875
,4,593,208880
,4,596,208885
,4,599,208890
,4,605,208895
,4,608,208900
,4,614,208905
,4,623,208910
,4,629,208915
,4,635,208920
,4,647,208925
,4,650,208930
,4,668,208935
,4,674,208940
,4,677,208945
,4,701,208950
,4,707,208955
,4,710,208960
,4,713,208965
,4,716,208970
,4,719,208975
,4,722,208980
,4,734,208985
,4,737,208990
,4,740,208995
,4,743,209000
,4,746,209005
,4,752,209010
,4,755,209015
,4,758,209020
,4,761,209025
,4,764,209030
,4,770,209035
,3,36251,228800
,3,36244,230605
,4,1,208590
,3,36251,228550
,3,36244,230605
,4,1,208590
,3,36251,228225
,3,36244,230605
,4,1,208590
,3,36251,225945
,3,36244,230605
,4,1,208220
,4,2,208590
,3,36251,227070
,3,36244,230605
,4,1,208590
,3,36251,229475
,3,36244,230605
,4,1,208375
,4,2,208810
,4,3,208590
,3,36251,225055
,3,36244,230605
,3,36251,225075
,3,36244,230605
,3,36251,225850
,3,36244,230605
,4,1,208245
,4,2,208590
,3,36251,225855
,3,36244,230605
,4,1,208590
,3,36251,227495
,3,36244,230605
,4,1,208590
,3,36251,228635
,3,36244,230605
,4,1,7530
,4,3,208590
,3,36251,229625
,3,36244,230605
,4,1,208445
,4,2,208445
,4,3,208445
,4,4,208445
,4,5,208445
,4,6,208445
,4,7,208445
,3,36251,229575
,3,36244,230605
,4,1,230625
,4,2,230625
,4,3,230625
,3,36251,230430
,3,36244,230605
,4,4,230625
,4,6,230625
,4,7,230625
,3,36251,226340
,3,36244,230605
,4,1,208280
,4,2,208590
,3,36251,225115
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,226915
,3,36244,230605
,3,36251,226585
,3,36244,230605
,4,1,225020
,4,2,208455
,4,3,230695
,4,4,230690
,4,6,208380
,4,7,230700
,3,36251,226375
,3,36244,230605
,4,1,208590
,3,36251,226005
,3,36244,230605
,3,36251,225760
,3,36244,230605
,4,1,208590
,3,36251,226690
,3,36244,230605
,4,1,208590
,3,36251,229060
,3,36244,230605
,4,1,208590
,3,36251,227110
,3,36244,230605
,4,1,208325
,4,2,208590
,3,36251,230320
,3,36244,230605
,4,1,208870
,4,2,208590
,3,36251,226595
,3,36244,230605
,4,1,225020
,4,2,208455
,4,3,230695
,4,4,230690
,3,36251,225085
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,229520
,3,36244,230605
,4,1,230680
,4,2,230675
,3,36251,225825
,3,36244,230605
,4,1,225020
,4,2,208590
,3,36251,225335
,3,36244,230605
,3,36251,225935
,3,36244,230605
,4,1,208360
,4,2,208590
,3,36251,227795
,3,36244,230605
,4,1,225020
,3,36251,225925
,3,36244,230605
,4,1,208590
,3,36251,226515
,3,36244,230605
,4,1,225020
,4,2,208590
,3,36251,225100
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,225940
,3,36244,230605
,4,1,208590
,3,36251,226685
,3,36244,230605
,4,1,208590
,3,36251,228585
,3,36244,230605
,4,1,208590
,3,36251,227085
,3,36244,230605
,4,1,208590
,3,36251,226605
,3,36244,230605
,4,1,208590
,3,36251,226860
,3,36244,230605
,4,1,208590
,3,36251,229420
,3,36244,230605
,4,1,225020
,4,2,230680
,4,3,230675
,3,36251,226410
,3,36244,230605
,4,1,208590
,3,36251,228490
,3,36244,230605
,3,36251,226610
,3,36244,230605
,4,1,208590
,3,36251,226955
,3,36244,230605
,3,36251,225840
,3,36244,230605
,4,1,208440
,4,2,208590
,3,36251,225060
,3,36244,230605
,3,36251,227530
,3,36244,230605
,4,1,208450
,4,2,208590
,3,36251,225095
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,229165
,3,36244,230605
,4,1,208590
,3,36251,228640
,3,36244,230605
,4,1,208590
,4,2,208950
,4,3,225020
,3,36251,229675
,3,36244,230605
,4,1,230625
,4,2,230625
,4,3,230625
,3,36251,229500
,3,36244,230605
,4,1,225020
,3,36251,226330
,3,36244,230605
,4,1,208590
,3,36251,226730
,3,36244,230605
,4,4,230625
,4,6,230625
,4,7,230625
,3,36251,227125
,3,36244,230605
,4,1,208590
,3,36251,227660
,3,36244,230605
,4,1,208590
,4,2,208495
,4,3,208590
,3,36251,229155
,3,36244,230605
,4,1,208590
,3,36251,230380
,3,36244,230605
,4,1,208590
,3,36251,227670
,3,36244,230605
,4,1,208590
,4,2,208510
,4,3,208590
,3,36251,225845
,3,36244,230605
,4,1,208515
,4,2,208590
,3,36251,228695
,3,36244,230605
,4,1,208590
,3,36251,225090
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,226130
,3,36244,230605
,4,4,230625
,4,6,230625
,4,7,230625
,3,36251,226570
,3,36244,230605
,4,1,208535
,4,2,208590
,3,36251,227960
,3,36244,230605
,4,1,208540
,4,2,208590
,3,36251,229705
,3,36244,230605
,4,1,208590
,3,36251,226620
,3,36244,230605
,4,1,225020
,4,2,230675
,3,36251,226115
,3,36244,230605
,4,1,208590
,3,36251,225750
,3,36244,230605
,4,1,208560
,4,2,208590
,3,36251,226975
,3,36244,230605
,3,36251,227515
,3,36244,230605
,4,1,208590
,3,36251,229505
,3,36244,230605
,4,1,208475
,4,4,208575
,4,5,208590
,3,36251,227800
,3,36244,230605
,4,1,208365
,4,4,208580
,4,5,208590
,3,36251,229610
,3,36244,230605
,3,36251,225045
,3,36244,230605
,4,1,208590
,3,36251,228145
,3,36244,230605
,4,1,208590
,3,36251,230370
,3,36244,230605
,4,1,208590
,3,36251,227505
,3,36244,230605
,4,1,208740
,4,2,208605
,4,3,208590
,3,36251,228390
,3,36244,230605
,4,4,230625
,4,6,230625
,4,7,230625
,3,36251,225620
,3,36244,230605
,4,1,208590
,3,36251,225775
,3,36244,230605
,4,3,208590
,3,36251,225385
,3,36244,230605
,3,36251,228565
,3,36244,230605
,4,1,208590
,3,36251,225540
,3,36244,230605
,4,1,208590
,3,36251,225740
,3,36244,230605
,4,1,208590
,3,36251,225655
,3,36244,230605
,4,1,208645
,4,2,208590
,3,36251,226125
,3,36244,230605
,4,4,230625
,4,6,230625
,4,7,230625
,3,36251,226435
,3,36244,230605
,4,1,208590
,3,36251,226015
,3,36244,230605
,4,1,208590
,3,36251,226645
,3,36244,230605
,4,1,208590
,3,36251,228240
,3,36244,230605
,4,1,208670
,4,2,208815
,4,3,208815
,4,4,208590
,3,36251,226960
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,225960
,3,36244,230605
,4,1,208590
,3,36251,228690
,3,36244,230605
,4,1,208590
,3,36251,225615
,3,36244,230605
,4,4,230625
,3,36251,229795
,3,36244,230605
,4,1,208590
,3,36251,229630
,3,36244,230605
,4,1,208445
,4,2,208445
,4,3,208445
,4,4,208445
,4,5,208445
,4,6,208445
,4,7,208445
,3,36251,226665
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,225050
,3,36244,230605
,4,1,208710
,3,36251,225120
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,226170
,3,36244,230605
,4,1,208590
,3,36251,229740
,3,36244,230605
,4,1,208590
,3,36251,226080
,3,36244,230605
,4,1,208730
,4,2,208590
,3,36251,226195
,3,36244,230605
,4,1,208590
,3,36251,226365
,3,36244,230605
,4,1,225020
,4,2,225020
,3,36251,226755
,3,36244,230605
,4,1,208590
,3,36251,225070
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,225080
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,228130
,3,36244,230605
,4,1,208590
,3,36251,228260
,3,36244,230605
,4,1,208590
,3,36251,227595
,3,36244,230605
,4,1,208590
,3,36251,226310
,3,36244,230605
,4,4,230625
,4,6,230625
,4,7,230625
,3,36251,225110
,3,36244,230605
,3,36251,228805
,3,36244,230605
,4,1,208590
,3,36251,226455
,3,36244,230605
,4,1,208790
,4,2,208590
,3,36251,225755
,3,36244,230605
,4,1,208590
,3,36251,226025
,3,36244,230605
,4,1,208590
,3,36251,226525
,3,36244,230605
,4,1,208375
,4,2,208810
,4,3,208590
,3,36251,226520
,3,36244,230605
,4,1,225020
,4,2,208590
,3,36251,225065
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,226575
,3,36244,230605
,4,1,208590
,3,36251,226670
,3,36244,230605
,4,4,230625
,4,6,230625
,4,7,230625
,3,36251,227540
,3,36244,230605
,4,1,208590
,3,36251,228090
,3,36244,230605
,4,1,208590
,3,36251,226660
,3,36244,230605
,4,1,208590
,3,36251,229220
,3,36244,230605
,4,1,225020
,4,2,208455
,4,3,230695
,4,4,230690
,3,36251,229260
,3,36244,230605
,4,1,208850
,4,2,208590
,3,36251,225650
,3,36244,230605
,4,1,208590
,3,36251,227675
,3,36244,230605
,4,1,208590
,3,36251,225105
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,225130
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,225665
,3,36244,230605
,4,1,208590
,3,36251,225920
,3,36244,230605
,4,1,208590
,3,36251,229640
,3,36244,230605
,4,1,208445
,4,2,208445
,4,3,208445
,4,4,208445
,4,5,208445
,4,6,208445
,4,7,208445
,3,36251,229460
,3,36244,230605
,4,1,208890
,4,2,208590
,3,36251,226000
,3,36244,230605
,4,1,208590
,3,36251,227040
,3,36244,230605
,4,1,208590
,3,36251,229785
,3,36244,230605
,4,1,208590
,3,36251,226965
,3,36244,230605
,3,36251,229635
,3,36244,230605
,4,1,208445
,4,2,208445
,4,3,208445
,4,4,208445
,4,5,208445
,4,6,208445
,4,7,208445
,3,36251,225790
,3,36244,230605
,4,1,208590
,3,36251,226120
,3,36244,230605
,4,1,208870
,4,2,208590
,3,36251,229800
,3,36244,230605
,4,1,208590
,3,36251,228025
,3,36244,230605
,4,1,208590
,3,36251,225420
,3,36244,230605
,3,36251,226320
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,225125
,3,36244,230605
,4,1,208235
,4,2,208235
,4,3,208235
,4,4,208235
,4,5,208235
,4,6,208235
,4,7,208235
,3,36251,225035
,3,36375,170
,3,36244,230605
,4,1,208955
,3,36251,225040
,3,36375,180
,3,36244,230605
,4,1,208960
,3,36251,225515
,3,36244,230605
,3,36251,226880
,3,36244,230605
,4,1,208590
,3,36251,229615
,3,36244,230605
,4,1,208445
,4,2,208445
,4,3,208445
,4,4,208445
,4,5,208445
,4,6,208445
,4,7,208445
,3,36251,229605
,3,36244,230605
,4,1,208445
,4,2,208445
,4,3,208445
,4,4,208445
,4,5,208445
,4,6,208445
,4,7,208445
,3,36251,225950
,3,36244,230605
,4,1,225020
,4,2,230675
,3,36251,226020
,3,36244,230605
,4,1,208590
,3,36251,227885
,3,36244,230605
,4,1,208590
,3,36251,225245
,3,36244,230605
,4,1,230625
,3,36251,225795
,3,36244,230605
,4,1,208590
,3,36251,226335
,3,36244,230605
,4,1,208480
,4,2,208590
,3,36251,226750
,3,36244,230605
,4,1,208480
,4,2,208590
,3,36251,228545
,3,36244,230605
,4,1,208590
,3,36251,229430
,3,36244,230605
,4,1,225020
,4,2,230700
,4,3,230695
,3,36251,227910
,3,36244,230605
,4,1,208590
,3,36251,229465
,3,36244,230605
,4,1,208590
,3,36244,204190
,4,5,209045
,4,8,209050
,4,11,209055
,4,14,209060
,4,35,209065
,4,38,209070
,4,41,209075
,4,59,209080
,4,71,209085
,4,77,209090
,4,83,209095
,4,86,209100
,4,89,209105
,4,92,209110
,4,95,209115
,4,101,209120
,4,104,209125
,4,107,209130
,4,110,209135
,4,113,209140
,4,116,209145
,4,119,209150
,4,122,209155
,4,125,209160
,4,128,209165
,4,131,209170
,4,134,209175
,4,137,209180
,4,140,209185
,4,143,209190
,4,146,209195
,4,155,209200
,4,158,209205
,4,167,209210
,4,188,209215
,4,191,209220
,4,194,209225
,4,200,209230
,4,206,209235
,4,212,209240
,4,227,209245
,4,230,209250
,4,239,209255
,4,242,209260
,4,245,209265
,4,254,209270
,4,257,209275
,4,263,209280
,4,266,209285
,4,269,209290
,4,278,209295
,4,302,209300
,4,305,209305
,4,311,209310
,4,314,209315
,4,332,209320
,4,335,209325
,4,338,209330
,4,341,209335
,4,344,209340
,4,353,209345
,4,362,209350
,4,371,209355
,4,380,209360
,4,383,209365
,3,36251,226390
,3,36244,230605
,4,1,209045
,4,2,208590
,4,3,230625
,3,36251,225900
,3,36244,230605
,4,1,209050
,4,2,208590
,4,3,230625
,3,36251,228595
,3,36244,230605
,4,1,209055
,4,2,208590
,4,3,230625
,3,36251,227865
,3,36244,230605
,4,1,209060
,4,2,208590
,4,3,230625
,3,36251,226050
,3,36244,230605
,4,1,209065
,4,2,208590
,4,3,230625
,3,36251,226055
,3,36244,230605
,4,1,209070
,4,2,208590
,4,3,230625
,3,36251,225995
,3,36244,230605
,4,1,209075
,4,2,208590
,4,3,230625
,3,36251,226270
,3,36244,230605
,4,1,209080
,4,2,208590
,4,3,230625
,3,36251,225885
,3,36244,230605
,4,1,209085
,4,2,208590
,4,3,230625
,3,36251,228940
,3,36244,230605
,4,1,209090
,4,2,208590
,4,3,230625
,3,36251,226290
,3,36244,230605
,4,1,209095
,4,2,208590
,4,3,230625
,3,36251,226265
,3,36244,230605
,4,1,209100
,4,2,208590
,4,3,230625
,3,36251,228505
,3,36244,230605
,4,1,209105
,4,2,208590
,4,3,230625
,3,36251,225975
,3,36244,230605
,4,1,209110
,4,2,208590
,4,3,230625
,3,36251,226070
,3,36244,230605
,4,1,209115
,4,2,208590
,4,3,230625
,3,36251,226300
,3,36244,230605
,4,1,209120
,4,2,208590
,4,3,230625
,3,36251,226305
,3,36244,230605
,4,1,209125
,4,2,208590
,4,3,230625
,3,36251,227000
,3,36244,230605
,4,1,209130
,4,2,208590
,4,3,230625
,3,36251,225630
,3,36244,230605
,4,1,209135
,4,2,208590
,4,3,230625
,3,36251,227815
,3,36244,230605
,4,1,209140
,4,2,208590
,4,3,230625
,3,36251,225910
,3,36244,230605
,4,1,209145
,4,2,208590
,4,3,230625
,3,36251,225895
,3,36244,230605
,4,1,209150
,4,2,208590
,4,3,230625
,3,36251,226465
,3,36244,230605
,4,1,209155
,4,2,208590
,4,3,230625
,3,36251,226095
,3,36244,230605
,4,1,209160
,4,2,208590
,4,3,230625
,3,36251,225990
,3,36244,230605
,4,1,209165
,4,2,208590
,4,3,230625
,3,36251,226040
,3,36244,230605
,4,1,209170
,4,2,208590
,4,3,230625
,3,36251,228960
,3,36244,230605
,4,1,209175
,4,2,208590
,4,3,230625
,3,36251,226510
,3,36244,230605
,4,1,209180
,4,2,208590
,4,3,230625
,3,36251,226150
,3,36244,230605
,4,1,209185
,4,2,208590
,4,3,230625
,3,36251,225965
,3,36244,230605
,4,1,209190
,4,2,208590
,4,3,230625
,3,36251,227325
,3,36244,230605
,4,1,209195
,4,2,208590
,4,3,230625
,3,36251,226260
,3,36244,230605
,4,1,209200
,4,2,208590
,4,3,230625
,3,36251,226295
,3,36244,230605
,4,1,209205
,4,2,208590
,4,3,230625
,3,36251,229325
,3,36244,230605
,4,1,209210
,4,2,208590
,4,3,230625
,3,36251,226210
,3,36244,230605
,4,1,209215
,4,2,208590
,4,3,230625
,3,36251,226060
,3,36244,230605
,4,1,209220
,4,2,208590
,4,3,230625
,3,36251,227845
,3,36244,230605
,4,1,209225
,4,2,208590
,4,3,230625
,3,36251,228855
,3,36244,230605
,4,1,209230
,4,2,208590
,4,3,230625
,3,36251,226035
,3,36244,230605
,4,1,209235
,4,2,208590
,4,3,230625
,3,36251,226135
,3,36244,230605
,4,1,209240
,4,2,208590
,4,3,230625
,3,36251,225915
,3,36244,230605
,4,1,209245
,4,2,208590
,4,3,230625
,3,36251,226275
,3,36244,230605
,4,1,209250
,4,2,208590
,4,3,230625
,3,36251,226185
,3,36244,230605
,4,1,209255
,4,2,208590
,4,3,230625
,3,36251,225880
,3,36244,230605
,4,1,209260
,4,2,208590
,4,3,230625
,3,36251,226450
,3,36244,230605
,4,1,209265
,4,2,208590
,4,3,230625
,3,36251,226190
,3,36244,230605
,4,1,209270
,4,2,208590
,4,3,230625
,3,36251,226720
,3,36244,230605
,4,1,209275
,4,2,208590
,4,3,230625
,3,36251,228495
,3,36244,230605
,4,1,230625
,4,2,209280
,4,3,208590
,4,4,208425
,4,5,209280
,4,6,208590
,4,7,230625
,3,36251,226475
,3,36244,230605
,4,1,209285
,4,2,208590
,4,3,230625
,3,36251,226555
,3,36244,230605
,4,1,209290
,4,2,208590
,4,3,230625
,3,36251,226220
,3,36244,230605
,4,1,209295
,4,2,208590
,4,3,230625
,3,36251,226175
,3,36244,230605
,4,1,209300
,4,2,208590
,4,3,230625
,3,36251,225635
,3,36244,230605
,4,1,209305
,4,2,208590
,4,3,230625
,3,36251,226495
,3,36244,230605
,4,1,209310
,4,2,208590
,4,3,230625
,3,36251,226530
,3,36244,230605
,4,1,209315
,4,2,208590
,4,3,230625
,3,36251,226255
,3,36244,230605
,4,1,209320
,4,2,208590
,4,3,230625
,3,36251,228380
,3,36244,230605
,4,1,209325
,4,2,208590
,4,3,230625
,3,36251,226245
,3,36244,230605
,4,1,209330
,4,2,208590
,4,3,230625
,3,36251,226160
,3,36244,230605
,4,1,209335
,4,2,208590
,4,3,230625
,3,36251,225875
,3,36244,230605
,4,1,209340
,4,2,208590
,4,3,230625
,3,36251,227875
,3,36244,230605
,4,1,209345
,4,2,208590
,4,3,230625
,3,36251,225870
,3,36244,230605
,4,1,209350
,4,2,208590
,4,3,230625
,3,36251,226140
,3,36244,230605
,4,1,209355
,4,2,208590
,4,3,230625
,3,36251,227550
,3,36244,230605
,4,1,209360
,4,2,208590
,4,3,230625
,3,36251,227805
,3,36244,230605
,4,1,209365
,4,2,208590
,4,3,230625
,4,4,3670
,4,5,4760
,4,6,6540
,4,7,7510
,4,8,8500
,4,9,8800
,4,10,9215
,4,11,10305
,4,12,10470
,4,13,11795
,4,14,12040
,3,36244,204190
,4,6,209380
,4,9,209385
,4,18,209390
,4,30,209395
,4,33,209400
,4,51,209405
,4,54,8130
,4,60,209410
,4,66,209415
,4,69,209420
,4,93,209425
,4,117,209430
,4,123,209435
,4,141,209440
,4,147,209445
,4,150,209450
,4,153,209455
,4,156,209460
,4,177,209465
,4,180,209470
,4,210,209475
,4,213,209480
,4,219,209485
,4,222,209490
,4,225,209495
,4,228,209500
,4,231,209505
,4,246,209510
,4,270,8750
,4,288,209515
,4,312,209520
,4,315,209525
,4,324,209530
,4,327,209535
,4,330,209540
,4,333,209545
,4,336,209550
,4,342,209555
,4,345,209560
,4,357,209565
,4,360,209570
,4,363,209575
,4,375,209580
,4,378,209585
,4,384,209590
,4,387,209595
,4,390,209600
,4,396,209605
,4,405,209610
,4,408,209615
,4,411,209620
,4,414,209625
,4,417,209630
,4,420,209635
,4,435,209640
,4,438,209645
,4,441,209650
,4,456,209655
,4,465,209660
,4,480,209665
,4,483,209670
,4,504,209675
,4,507,209680
,4,534,209685
,4,540,209690
,4,543,209695
,4,561,209700
,4,567,209705
,4,570,8180
,4,573,209710
,4,588,209715
,4,606,209720
,4,612,209725
,4,618,209730
,4,624,209735
,4,630,209740
,4,633,209745
,4,642,209750
,4,645,209755
,4,651,209760
,4,672,209765
,4,681,209770
,4,699,209775
,4,702,209780
,4,708,209785
,4,717,209790
,4,720,209795
,4,723,209800
,4,726,209805
,4,732,209810
,4,735,209815
,4,741,209820
,4,747,209825
,4,753,209830
,4,780,209835
,4,783,209840
,4,789,209845
,4,792,209850
,4,810,209855
,4,813,8755
,4,816,209860
,4,822,209865
,4,840,209870
,4,846,209875
,4,852,209880
,4,864,209885
,4,867,209890
,4,870,209895
,4,933,209900
,4,936,209905
,4,939,209910
,4,963,209915
,4,969,209920
,4,972,209925
,4,975,209930
,4,987,209935
,4,993,209940
,4,996,5895
,4,999,209945
,4,1002,209950
,4,1005,209955
,4,1014,209960
,4,1020,209965
,4,1026,209970
,4,1062,209975
,4,1071,209980
,4,1095,209985
,4,1098,209990
,4,1107,209995
,4,1110,210000
,4,1122,210005
,4,1125,210010
,4,1128,210015
,4,1149,210020
,4,1155,210025
,4,1164,210030
,4,1170,210035
,4,1176,210040
,4,1179,210045
,4,1185,210050
,4,1188,210055
,4,1191,210060
,4,1218,210065
,4,1230,210070
,4,1233,210075
,4,1236,210080
,4,1239,210085
,4,1242,210090
,4,1284,210095
,4,1287,210100
,4,1296,210105
,4,1299,210110
,4,1302,210115
,4,1305,8120
,4,1311,210120
,4,1314,210125
,4,1317,210130
,4,1320,210135
,4,1326,210140
,4,1329,210145
,4,1335,210150
,4,1338,210155
,4,1341,210160
,4,1347,210165
,4,1353,210170
,4,1356,12280
,4,1374,210175
,4,1386,210180
,4,1395,210185
,4,1401,210190
,4,1404,210195
,4,1422,210200
,4,1434,210205
,4,1437,210210
,4,1443,210215
,4,1446,210220
,4,1458,210225
,4,1461,210230
,4,1464,210235
,4,1467,210240
,4,1470,210245
,4,1476,210250
,4,1491,210255
,4,1497,8135
,4,1509,210260
,4,1512,210265
,4,1545,210270
,4,1548,210275
,4,1551,210280
,4,1569,210285
,4,1572,210290
,4,1578,210295
,4,1605,210300
,4,1608,210305
,4,1611,210310
,4,1617,210315
,4,1620,210320
,4,1644,210325
,4,1647,210330
,4,1650,210335
,4,1653,210340
,4,1671,8190
,4,1674,210345
,4,1677,210350
,4,1680,210355
,4,1683,210360
,4,1686,210365
,4,1692,210370
,4,1701,210375
,4,1743,210380
,4,1746,210385
,4,1755,210390
,4,1758,210395
,4,1776,210400
,4,1779,210405
,4,1782,210410
,4,1797,210415
,4,1824,210420
,4,1836,210425
,4,1848,210430
,4,1851,210435
,4,1854,210440
,4,1860,210445
,4,1878,210450
,4,1884,210455
,4,1887,210460
,4,1890,210465
,4,1911,5900
,4,1914,210470
,4,1917,210475
,4,1923,210480
,4,1929,210485
,4,1947,210490
,4,1959,5875
,4,1965,210495
,4,1980,210500
,4,1989,210505
,4,1992,210510
,4,2007,210515
,4,2016,210520
,4,2022,210525
,4,2028,210530
,4,2043,210535
,4,2052,210540
,4,2073,210545
,4,2097,210550
,4,2100,210555
,4,2106,210560
,4,2109,210565
,4,2115,210570
,4,2118,210575
,4,2121,210580
,4,2133,210585
,4,2145,210590
,4,2166,210595
,4,2169,8165
,4,2172,210600
,4,2181,210605
,4,2187,210610
,4,2202,210615
,4,2205,210620
,4,2208,210625
,4,2226,210630
,4,2235,210635
,4,2238,210640
,4,2241,210645
,4,2244,210650
,4,2253,210655
,4,2256,210660
,4,2259,210665
,4,2274,210670
,4,2286,210675
,4,2289,6570
,4,2292,210680
,4,2298,210685
,4,2343,210690
,4,2352,210695
,4,2358,210700
,4,2367,210705
,4,2370,210710
,4,2394,210715
,4,2397,210720
,4,2400,210725
,4,2412,210730
,4,2418,210735
,4,2421,210740
,4,2430,210745
,4,2433,210750
,4,2436,210755
,4,2439,210760
,4,2442,210765
,4,2445,210770
,4,2448,210775
,4,2451,210780
,4,2457,210785
,4,2460,210790
,4,2463,210795
,4,2466,210800
,4,2469,210805
,4,2475,210810
,4,2484,210815
,4,2487,210820
,4,2490,210825
,4,2502,210830
,4,2514,210835
,4,2520,5240
,4,2523,210840
,4,2529,210845
,4,2532,210850
,4,2535,210855
,4,2550,210860
,4,2559,210865
,4,2568,210870
,4,2586,210875
,4,2595,210880
,4,2607,210885
,4,2613,210890
,4,2619,210895
,4,2658,210900
,4,2661,210905
,4,2667,210910
,4,2676,210915
,4,2679,210920
,4,2682,210925
,4,2691,210930
,4,2718,8125
,4,2721,210935
,4,2727,210940
,4,2748,210945
,4,2751,210950
,4,2757,210955
,4,2760,210960
,4,2763,210965
,4,2766,210970
,4,2775,210975
,4,2778,210980
,4,2781,210985
,4,2808,210990
,4,2817,210995
,4,2820,211000
,4,2823,211005
,4,2826,211010
,4,2832,211015
,4,2835,211020
,4,2847,211025
,4,2850,211030
,4,2856,211035
,4,2859,211040
,4,2862,211045
,4,2868,211050
,4,2871,211055
,4,2877,211060
,4,2880,5890
,4,2889,6750
,4,2901,8110
,4,2919,211065
,4,2925,12285
,4,2931,211070
,4,2940,211075
,4,2943,211080
,4,2949,211085
,4,2958,211090
,4,2964,211095
,4,2967,211100
,4,2970,211105
,4,2973,211110
,4,2976,8200
,4,2982,211115
,4,2985,211120
,4,2988,7640
,4,2994,211125
,4,3000,211130
,4,3003,211135
,4,3009,211140
,4,3018,211145
,4,3021,211150
,4,3051,211155
,4,3063,211160
,4,3066,211165
,4,3069,211170
,4,3075,211175
,0,1361,8390
,0,1472,204295
,0,1417,211235
,2,35551,425
,3,36254,30640
,3,36255,211240
,6,64,203285
,3,36244,12670
,4,1,211245
,3,36251,229655
,3,36371,195175
,3,36244,230605
,4,1,208635
,4,2,233915
,4,3,215
,4,4,275
,4,5,208590
,4,6,208590
,4,7,7660
,4,8,233855
,4,9,7385
,4,10,233130
,3,36244,225020
,3,36259,430
,3,36261,840
,3,36260,217080
,3,36244,234750
,3,36259,425
,3,36260,214075
,3,36244,234750
,3,36259,425
,3,36260,214060
,3,36244,234750
,3,36259,425
,3,36260,213950
,3,36244,234750
,3,36259,425
,3,36260,214040
,3,36244,234750
,3,36259,1070
,3,36261,895
,3,36260,217410
,3,36244,234750
,3,36244,225010
,3,36244,234750
,2,35551,1070
,3,36244,198805
,3,36256,30580
,3,36257,30550
,3,36258,685
,3,36244,195240
,4,3,8390
,4,4,204295
,4,5,211235
,3,36251,229650
,3,36371,195160
,3,36244,230605
,4,1,208635
,4,2,12670
,4,3,425
,4,4,565
,4,5,555
,4,6,203655
,4,8,212605
,4,9,233810
,4,10,203655
,4,11,208265
,4,12,203560
,4,13,30560
,4,14,212605
,4,15,230705
,4,16,23245
,4,17,209305
,3,36244,204190
,4,4,204300
,4,5,16960
,4,6,204305
,4,7,12340
,4,10,204310
,4,11,22815
,4,16,204315
,4,17,26435
,4,48,204320
,4,49,30485
,4,66,211255
,4,67,211260
,4,84,204325
,4,85,19485
,4,86,204330
,4,87,27455
,4,90,204335
,4,91,15725
,4,98,204340
,4,99,4440
,4,100,204345
,4,101,24905
,4,102,211265
,4,103,211270
,4,108,204350
,4,109,9925
,4,110,204355
,4,111,9185
,4,112,204360
,4,113,27260
,4,120,211275
,4,121,211280
,4,128,204365
,4,129,26025
,4,132,204370
,4,133,7090
,4,136,204375
,4,137,29410
,4,144,204380
,4,145,27020
,4,150,204385
,4,151,20165
,4,160,204390
,4,161,6280
,4,162,204395
,4,163,12005
,4,168,204400
,4,169,11725
,4,172,204405
,4,173,29960
,4,208,204410
,4,209,8770
,4,218,204415
,4,219,27600
,4,242,204420
,4,243,18150
,4,244,204425
,4,245,22095
,4,254,204430
,4,255,8340
,4,258,204435
,4,259,10435
,4,1,515
,4,2,218025
,3,36245,655
,3,36246,218245
,3,36247,218240
,3,36248,320
,3,36263,218020
,3,36249,335
,3,36250,340
,6,1,85
,4,1,515
,4,2,218790
,3,36245,655
,3,36246,218985
,3,36247,218980
,3,36248,320
,3,36263,218785
,3,36249,335
,3,36250,340
,6,1,85
,4,1,515
,4,2,218995
,3,36245,655
,3,36246,219665
,3,36247,219660
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,204190
,3,36244,204190
,2,35589,206180
,2,35771,195825
,2,1395,206400
,2,1151,27640
,2,1267,27645
,2,35608,206410
,2,35674,211300
,2,35518,211305
,2,35690,211310
,2,35551,430
,3,36315,211315
,3,36244,211320
,2,35671,203935
,2,35723,203940
,2,34723,203880
,2,35551,430
,3,36315,222060
,3,36244,222040
,2,35898,203945
,2,35818,203950
,2,35541,203955
,2,35523,203960
,2,35829,203965
,2,35425,203970
,2,35643,203975
,2,35859,203980
,2,35679,203985
,2,35572,203990
,2,35428,203995
,2,35776,204000
,2,35551,430
,3,36315,224625
,3,36244,222520
,2,34732,204005
,2,35551,430
,3,36315,224630
,3,36244,221865
,4,1,206180
,4,2,195825
,4,3,206400
,4,4,27640
,4,5,27645
,4,6,206410
,4,7,211300
,4,8,211305
,4,9,211310
,3,36259,430
,3,36261,350
,3,36377,222530
,3,36260,222045
,3,36244,234750
,3,36244,204190
,4,4,210
,4,5,215
,4,6,220
,4,7,225
,4,8,230
,4,9,235
,4,10,240
,4,11,245
,4,12,250
,4,13,255
,4,16,11625
,4,22,11590
,4,26,21680
,4,35,8920
,4,41,211330
,4,43,209435
,4,44,29280
,4,45,30735
,4,53,209460
,4,54,211335
,4,56,196500
,4,63,196265
,4,70,10580
,4,80,10770
,4,93,203590
,4,104,4020
,4,110,209555
,4,111,21450
,4,127,209580
,4,131,211340
,4,147,209645
,4,148,211345
,4,152,18610
,4,160,199345
,4,164,211350
,4,176,4290
,4,182,209695
,4,183,29110
,4,191,211355
,4,202,211360
,4,235,209785
,4,245,211365
,4,251,209825
,4,277,11030
,4,278,198700
,4,280,211370
,4,282,9815
,4,285,199300
,4,286,209880
,4,300,10700
,4,311,12235
,4,313,23105
,4,321,4800
,4,332,195990
,4,341,207235
,4,344,12275
,4,351,1050
,4,354,211375
,4,356,211380
,4,359,207265
,4,370,211385
,4,371,211390
,4,379,207295
,4,385,28865
,4,401,211395
,4,413,210080
,4,427,8600
,4,428,4960
,4,434,10680
,4,435,195345
,4,439,210120
,4,449,210160
,4,457,211400
,4,458,211405
,4,462,24870
,4,467,6830
,4,501,28790
,4,504,207455
,4,505,8205
,4,518,23255
,4,532,205940
,4,535,20140
,4,547,211410
,4,567,4890
,4,585,17565
,4,591,17070
,4,594,21420
,4,596,210410
,4,627,10740
,4,643,196280
,4,644,211415
,4,658,211420
,4,669,10595
,4,671,210515
,4,673,211425
,4,686,10630
,4,687,10685
,4,688,206915
,4,694,7015
,4,697,3555
,4,724,210595
,4,725,207040
,4,728,11635
,4,732,12140
,4,734,207045
,4,742,16935
,4,749,9875
,4,751,135
,4,760,9615
,4,761,211430
,4,765,195690
,4,766,199095
,4,777,211435
,4,778,5090
,4,787,10365
,4,798,10275
,4,807,197995
,4,813,211440
,4,817,206170
,4,831,211445
,4,833,30610
,4,836,210830
,4,837,5910
,4,862,10075
,4,863,5760
,4,878,11050
,4,885,18785
,4,887,28795
,4,889,30890
,4,902,28475
,4,913,211450
,4,937,12225
,4,938,195350
,4,945,10790
,4,946,28485
,4,948,211455
,4,949,9090
,4,956,196655
,4,962,11475
,4,964,200775
,4,965,6750
,4,966,24840
,4,967,195705
,4,969,19240
,4,975,211065
,4,984,211460
,4,994,8200
,4,1011,211465
,4,1032,5835
,4,1046,196495
,4,1047,9310
,4,1075,9715
,4,1085,201620
,4,1087,17655
,4,1122,6930
,4,1130,6650
,4,1135,3915
,4,1136,196690
,4,1137,209545
,4,1143,17440
,4,1144,211470
,4,1148,211475
,4,1149,211480
,4,1152,211485
,4,1153,8220
,4,1155,209605
,4,1156,209600
,4,1157,28480
,4,1165,209630
,4,1166,10650
,4,1173,8950
,4,1179,211490
,4,1180,26130
,4,1190,22465
,4,1199,9625
,4,1200,211495
,4,1217,209710
,4,1218,201580
,4,1220,211500
,4,1224,211505
,4,1226,195290
,4,1227,211510
,4,1238,211515
,4,1240,5850
,4,1241,9870
,4,1243,209760
,4,1249,207060
,4,1256,6710
,4,1263,29495
,4,1266,209795
,4,1282,16575
,4,1287,21625
,4,1289,21400
,4,1306,209870
,4,1308,211520
,4,1309,10705
,4,1314,10980
,4,1324,8275
,4,1325,211525
,4,1326,211530
,4,1327,207140
,4,1338,196565
,4,1339,17645
,4,1358,200015
,4,1367,21520
,4,1371,207240
,4,1381,9075
,4,1384,211535
,4,1387,207275
,4,1400,210005
,4,1401,11010
,4,1415,211540
,4,1419,210045
,4,1420,8195
,4,1422,207330
,4,1424,211545
,4,1427,4330
,4,1440,5030
,4,1445,196485
,4,1467,16645
,4,1479,199970
,4,1482,200060
,4,1493,22065
,4,1502,211550
,4,1503,28900
,4,1511,211555
,4,1512,210225
,4,1513,210235
,4,1545,4520
,4,1549,210285
,4,1559,197700
,4,1561,195700
,4,1567,206700
,4,1569,206710
,4,1577,206735
,4,1579,26100
,4,1585,8960
,4,1591,207675
,4,1592,23260
,4,1602,12195
,4,1603,211560
,4,1604,206760
,4,1608,206765
,4,1611,211565
,4,1637,19845
,4,1655,210465
,4,1663,5900
,4,1664,210470
,4,1666,206825
,4,1678,5710
,4,1679,7995
,4,1681,26230
,4,1685,211570
,4,1690,206880
,4,1698,200945
,4,1717,210545
,4,1723,207005
,4,1725,210550
,4,1728,211575
,4,1741,28665
,4,1748,3990
,4,1763,200040
,4,1768,8850
,4,1769,211580
,4,1784,3690
,4,1785,9495
,4,1809,7035
,4,1810,211585
,4,1819,203810
,4,1825,197915
,4,1830,21140
,4,1846,10820
,4,1866,210840
,4,1872,8215
,4,1877,22060
,4,1880,6850
,4,1883,16690
,4,1885,207250
,4,1887,11020
,4,1896,211590
,4,1904,8870
,4,1936,22290
,4,1941,211595
,4,1943,210950
,4,1953,7795
,4,1965,4125
,4,1971,211020
,4,1972,203380
,4,1974,9105
,4,1976,1090
,4,1978,211035
,4,1979,8055
,4,1986,23110
,4,1998,24765
,4,2007,19300
,4,2014,211600
,4,2015,211605
,4,2016,11220
,4,2031,9880
,4,2032,201515
,4,2057,28945
,4,2061,196620
,4,2067,209405
,4,2068,209420
,4,2072,16655
,4,2074,15240
,4,2084,11450
,4,2085,11575
,4,2087,21445
,4,2096,199055
,4,2099,211610
,4,2121,209480
,4,2128,197935
,4,2149,5690
,4,2150,22445
,4,2165,11140
,4,2170,209570
,4,2185,209615
,4,2191,7055
,4,2192,11500
,4,2203,211615
,4,2206,211620
,4,2216,8185
,4,2221,211625
,4,2229,200090
,4,2240,28575
,4,2251,197940
,4,2253,211630
,4,2257,211635
,4,2262,190
,4,2268,11690
,4,2271,23380
,4,2277,211640
,4,2286,211645
,4,2291,211650
,4,2302,211655
,4,2306,207080
,4,2312,211660
,4,2313,207095
,4,2328,211665
,4,2332,209875
,4,2335,207130
,4,2364,211670
,4,2373,1285
,4,2374,26705
,4,2375,211675
,4,2381,209940
,4,2382,207220
,4,2392,211680
,4,2410,211685
,4,2425,211690
,4,2426,211695
,4,2430,9685
,4,2434,6960
,4,2437,207315
,4,2439,207310
,4,2444,211700
,4,2445,210050
,4,2455,11630
,4,2464,19800
,4,2492,210140
,4,2496,210155
,4,2505,202620
,4,2506,211705
,4,2507,195355
,4,2508,11210
,4,2514,200080
,4,2518,211710
,4,2529,211715
,4,2530,5450
,4,2534,211720
,4,2544,5000
,4,2545,211725
,4,2553,19725
,4,2557,198685
,4,2570,11645
,4,2574,12170
,4,2575,29275
,4,2576,17535
,4,2579,5810
,4,2590,19930
,4,2596,206725
,4,2601,211730
,4,2627,5150
,4,2644,211735
,4,2648,28855
,4,2670,210445
,4,2674,211740
,4,2693,29665
,4,2698,199510
,4,2703,211745
,4,2704,11060
,4,2709,211750
,4,2715,9410
,4,2724,7400
,4,2747,6810
,4,2748,9765
,4,2756,207695
,4,2762,3930
,4,2769,16625
,4,2773,210600
,4,2784,5200
,4,2785,207050
,4,2787,20525
,4,2791,19835
,4,2795,210655
,4,2808,210670
,4,2810,211755
,4,2813,6570
,4,2834,16915
,4,2835,210695
,4,2836,211760
,4,2843,207120
,4,2847,195330
,4,2860,210745
,4,2861,210795
,4,2862,4375
,4,2868,195305
,4,2873,11190
,4,2899,211765
,4,2906,4870
,4,2915,210880
,4,2923,211770
,4,2926,23620
,4,2944,211775
,4,2947,207305
,4,2953,197390
,4,2966,9860
,4,2970,211780
,4,2971,210965
,4,2972,211785
,4,2974,196275
,4,2975,210975
,4,2977,28440
,4,2978,211790
,4,2979,196530
,4,2981,11920
,4,2994,211015
,4,2995,8580
,4,2996,19980
,4,3011,16180
,4,3013,11340
,4,3030,211080
,4,3037,211795
,4,3038,211095
,4,3039,16680
,4,3040,28940
,4,3044,20545
,4,3049,19370
,4,3051,26220
,4,3078,211800
,4,3087,211805
,4,3090,211810
,4,3101,11460
,4,3104,16490
,4,3105,211815
,4,3116,211820
,4,3121,17665
,4,3123,209450
,4,3131,11815
,4,3136,8015
,4,3150,5780
,4,3159,9795
,4,3161,9450
,4,3170,24800
,4,3174,29385
,4,3176,211825
,4,3179,10600
,4,3191,9440
,4,3209,209610
,4,3217,211830
,4,3219,211835
,4,3221,4665
,4,3223,22425
,4,3225,199575
,4,3229,209660
,4,3230,211840
,4,3231,7855
,4,3232,211845
,4,3233,9890
,4,3238,26120
,4,3250,6610
,4,3253,206940
,4,3260,199350
,4,3261,10575
,4,3263,209705
,4,3284,209740
,4,3296,211850
,4,3306,19790
,4,3307,209775
,4,3309,8630
,4,3320,8930
,4,3342,26405
,4,3345,211855
,4,3346,10050
,4,3353,211860
,4,3358,7755
,4,3361,203665
,4,3373,211865
,4,3377,29910
,4,3384,200070
,4,3390,6690
,4,3392,211870
,4,3393,320
,4,3394,4530
,4,3398,207205
,4,3406,3795
,4,3414,211875
,4,3419,211880
,4,3422,207255
,4,3423,201130
,4,3435,28465
,4,3439,198130
,4,3444,210000
,4,3452,211885
,4,3455,211890
,4,3458,23640
,4,3470,9595
,4,3475,16420
,4,3488,207660
,4,3491,197970
,4,3516,210145
,4,3518,9725
,4,3526,11615
,4,3536,210180
,4,3545,8160
,4,3552,9250
,4,3559,5220
,4,3562,201510
,4,3563,210240
,4,3569,8970
,4,3578,196470
,4,3582,207465
,4,3610,211895
,4,3611,210310
,4,3617,29925
,4,3625,211900
,4,3626,19290
,4,3635,210360
,4,3643,11525
,4,3644,211905
,4,3661,10840
,4,3663,10525
,4,3686,210425
,4,3687,211910
,4,3693,11290
,4,3696,4380
,4,3697,16905
,4,3714,19010
,4,3721,206845
,4,3745,11670
,4,3749,211915
,4,3758,198085
,4,3764,22280
,4,3767,27275
,4,3769,203375
,4,3770,21260
,4,3774,210555
,4,3775,196260
,4,3779,8990
,4,3781,7905
,4,3788,24865
,4,3792,29585
,4,3801,11770
,4,3811,29290
,4,3818,9695
,4,3842,211920
,4,3845,211925
,4,3876,11595
,4,3877,211930
,4,3884,210790
,4,3886,8730
,4,3889,201525
,4,3893,4215
,4,3894,211935
,4,3895,211940
,4,3901,11610
,4,3923,200005
,4,3925,23530
,4,3930,3960
,4,3935,7030
,4,3944,28860
,4,3945,211945
,4,3947,23120
,4,3959,21755
,4,3992,7025
,4,4016,17475
,4,4017,10020
,4,4018,5830
,4,4044,203365
,4,4046,211950
,4,4057,8140
,4,4063,211955
,4,4068,16920
,4,4071,5825
,4,4087,3705
,4,4089,207740
,4,4095,211960
,4,4103,211965
,4,4120,211970
,4,4122,10750
,4,4142,11465
,4,4145,7420
,4,4147,7370
,4,4148,211975
,4,4152,5720
,4,4157,19970
,4,4167,12215
,4,4174,19340
,4,4186,195950
,4,4194,9665
,4,4214,5800
,4,4221,211980
,4,4231,10510
,4,4235,209620
,4,4243,211985
,4,4246,21435
,4,4251,23150
,4,4252,30670
,4,4258,209665
,4,4259,209670
,4,4260,5585
,4,4262,206890
,4,4268,8570
,4,4296,11640
,4,4297,207015
,4,4299,211990
,4,4301,18860
,4,4307,26655
,4,4313,22780
,4,4320,201495
,4,4322,209765
,4,4343,211995
,4,4349,207070
,4,4355,196580
,4,4375,212000
,4,4383,201640
,4,4386,11510
,4,4399,200010
,4,4419,212005
,4,4423,28595
,4,4428,11180
,4,4436,212010
,4,4438,202610
,4,4439,212015
,4,4454,212020
,4,4459,6900
,4,4464,209990
,4,4471,196560
,4,4474,210015
,4,4476,8700
,4,4480,5715
,4,4508,210070
,4,4509,6560
,4,4516,201575
,4,4519,212025
,4,4534,212030
,4,4539,212035
,4,4560,21320
,4,4564,212040
,4,4566,4080
,4,4576,210210
,4,4580,210220
,4,4587,210250
,4,4588,207445
,4,4601,210265
,4,4618,29655
,4,4637,210315
,4,4643,23475
,4,4648,210335
,4,4649,200730
,4,4654,206740
,4,4655,8190
,4,4658,210355
,4,4660,212045
,4,4663,212050
,4,4669,5330
,4,4680,1160
,4,4682,212055
,4,4695,7000
,4,4698,212060
,4,4700,199335
,4,4702,212065
,4,4705,19920
,4,4706,212070
,4,4717,200765
,4,4745,196525
,4,4760,196520
,4,4762,198135
,4,4769,10550
,4,4771,206885
,4,4774,11480
,4,4794,195980
,4,4798,212075
,4,4817,212080
,4,4822,212085
,4,4826,7680
,4,4830,19685
,4,4844,210640
,4,4845,212090
,4,4851,210665
,4,4860,196630
,4,4873,3735
,4,4879,210690
,4,4882,212095
,4,4893,195325
,4,4899,28450
,4,4900,206175
,4,4905,210740
,4,4923,210810
,4,4936,30400
,4,4938,210845
,4,4939,201170
,4,4971,198010
,4,4976,199515
,4,4985,210905
,4,4989,212100
,4,4992,210925
,4,5007,28470
,4,5014,210945
,4,5017,212105
,4,5030,197950
,4,5037,207375
,4,5042,200050
,4,5056,19735
,4,5059,28505
,4,5060,10860
,4,5065,212110
,4,5077,208050
,4,5087,22790
,4,5091,9430
,4,5094,10675
,4,5097,7690
,4,5100,195280
,4,5111,212115
,4,5122,11550
,4,5126,24835
,4,5128,209390
,4,5131,206675
,4,5135,199570
,4,5140,8130
,4,5148,4850
,4,5150,19795
,4,5170,17525
,4,5171,11420
,4,5173,209455
,4,5191,5010
,4,5195,202465
,4,5197,7050
,4,5198,212120
,4,5200,23035
,4,5201,206790
,4,5205,199050
,4,5207,206795
,4,5210,29155
,4,5215,212125
,4,5219,24805
,4,5228,6840
,4,5237,195335
,4,5249,23385
,4,5263,206860
,4,5265,5510
,4,5269,209650
,4,5272,20550
,4,5273,212130
,4,5279,5840
,4,5280,11410
,4,5281,19250
,4,5287,212135
,4,5288,212140
,4,5300,206925
,4,5301,5905
,4,5303,10085
,4,5311,212145
,4,5312,8180
,4,5313,212150
,4,5322,9020
,4,5330,209735
,4,5333,209745
,4,5346,9580
,4,5349,29535
,4,5353,199295
,4,5363,209800
,4,5365,212155
,4,5371,212160
,4,5374,212165
,4,5375,11850
,4,5376,212170
,4,5383,212175
,4,5384,212180
,4,5386,196575
,4,5392,209855
,4,5396,212185
,4,5397,199320
,4,5419,23090
,4,5437,4005
,4,5438,212190
,4,5439,23250
,4,5443,1190
,4,5444,26855
,4,5445,23675
,4,5454,195
,4,5468,21530
,4,5477,212195
,4,5484,208110
,4,5487,209985
,4,5491,209995
,4,5495,206160
,4,5500,4860
,4,5502,207755
,4,5505,10930
,4,5508,11515
,4,5512,212200
,4,5527,212205
,4,5536,155
,4,5550,210095
,4,5551,18685
,4,5561,210130
,4,5562,210135
,4,5568,207415
,4,5580,210175
,4,5582,11585
,4,5584,11775
,4,5587,197955
,4,5601,16560
,4,5606,12615
,4,5610,5270
,4,5615,195270
,4,5616,212210
,4,5619,210255
,4,5620,212215
,4,5628,20230
,4,5631,208085
,4,5637,212220
,4,5638,201540
,4,5640,206680
,4,5647,1445
,4,5649,17465
,4,5651,200075
,4,5657,210300
,4,5660,11430
,4,5662,21465
,4,5671,210330
,4,5675,29905
,4,5678,8280
,4,5681,210350
,4,5684,1020
,4,5687,29105
,4,5688,212225
,4,5695,201505
,4,5707,212230
,4,5712,9530
,4,5731,22225
,4,5750,212235
,4,5763,11350
,4,5765,8145
,4,5777,210495
,4,5778,7620
,4,5782,210500
,4,5786,210510
,4,5789,21305
,4,5790,212240
,4,5803,11330
,4,5806,206910
,4,5810,206920
,4,5817,201435
,4,5822,206970
,4,5825,206975
,4,5845,8165
,4,5870,30375
,4,5878,16550
,4,5889,4270
,4,5892,212245
,4,5895,212250
,4,5905,27305
,4,5906,207100
,4,5909,197975
,4,5911,210705
,4,5916,5260
,4,5926,212255
,4,5929,12300
,4,5933,201570
,4,5944,212260
,4,5946,11040
,4,5952,207185
,4,5954,207195
,4,5960,207215
,4,5967,3900
,4,5968,19745
,4,5983,201470
,4,5988,212265
,4,5990,202645
,4,6001,4110
,4,6003,207285
,4,6018,27540
,4,6023,280
,4,6028,210940
,4,6029,205575
,4,6031,24810
,4,6032,208030
,4,6041,8670
,4,6046,19380
,4,6048,20530
,4,6059,6790
,4,6074,16445
,4,6128,212270
,4,6139,211155
,4,6140,10665
,4,6141,30830
,4,6142,203360
,4,6147,209380
,4,6151,26170
,4,6152,212275
,4,6165,4350
,4,6176,11580
,4,6178,212280
,4,6185,212285
,4,6192,4950
,4,6198,8150
,4,6205,209465
,4,6213,9100
,4,6216,11200
,4,6220,203580
,4,6221,4390
,4,6226,206780
,4,6236,8750
,4,6237,8075
,4,6242,212290
,4,6243,201235
,4,6250,209520
,4,6256,26795
,4,6267,209575
,4,6274,209590
,4,6279,19705
,4,6287,212295
,4,6298,203385
,4,6302,17545
,4,6312,29615
,4,6324,209685
,4,6331,8620
,4,6333,206995
,4,6337,212300
,4,6342,209715
,4,6346,207020
,4,6355,195985
,4,6370,212305
,4,6378,24830
,4,6384,196640
,4,6385,18935
,4,6386,24825
,4,6390,209810
,4,6396,212310
,4,6397,209830
,4,6399,4980
,4,6402,16125
,4,6405,201545
,4,6407,8255
,4,6415,212315
,4,6416,7630
,4,6428,203395
,4,6435,209890
,4,6436,209895
,4,6439,29045
,4,6441,10850
,4,6448,8095
,4,6454,15200
,4,6458,209905
,4,6470,8835
,4,6471,202655
,4,6472,207210
,4,6475,209935
,4,6478,5895
,4,6480,11300
,4,6489,19885
,4,6492,10040
,4,6497,11940
,4,6499,8115
,4,6500,209975
,4,6504,212320
,4,6514,212325
,4,6516,212330
,4,6517,17715
,4,6525,18985
,4,6543,210060
,4,6549,7925
,4,6552,28490
,4,6554,212335
,4,6561,212340
,4,6569,201610
,4,6576,207385
,4,6588,210150
,4,6593,196605
,4,6594,9340
,4,6597,8650
,4,6601,7965
,4,6610,11870
,4,6613,210190
,4,6627,198765
,4,6628,10555
,4,6639,11540
,4,6640,207450
,4,6650,201475
,4,6651,18910
,4,6665,212345
,4,6666,8560
,4,6668,206670
,4,6670,19350
,4,6671,212350
,4,6675,212355
,4,6683,212360
,4,6707,7660
,4,6711,212365
,4,6713,11470
,4,6714,29935
,4,6744,11240
,4,6745,210415
,4,6747,197385
,4,6775,210460
,4,6776,212370
,4,6798,5380
,4,6812,28620
,4,6827,201425
,4,6833,5440
,4,6848,21760
,4,6849,212375
,4,6850,29930
,4,6869,16910
,4,6881,210620
,4,6898,210660
,4,6899,16570
,4,6904,5855
,4,6905,11520
,4,6906,196505
,4,6909,22070
,4,6913,5360
,4,6923,11110
,4,6940,207125
,4,6949,8260
,4,6957,210750
,4,6958,3605
,4,6965,210785
,4,6967,11600
,4,6981,11990
,4,6984,212380
,4,6987,26885
,4,6999,210865
,4,7011,11485
,4,7039,11960
,4,7049,11505
,4,7050,11860
,4,7051,19950
,4,7053,212385
,4,7059,10895
,4,7064,212390
,4,7073,210985
,4,7075,196515
,4,7076,196615
,4,7077,197965
,4,7087,211010
,4,7098,10715
,4,7103,8175
,4,7115,3870
,4,7121,12120
,4,7126,211075
,4,7140,211115
,4,7158,19230
,4,7164,212395
,4,7171,211175
,4,7173,212400
,4,7174,207655
,4,7181,9110
,4,7189,198705
,4,7190,200780
,4,7193,26060
,4,7198,206695
,4,7217,209440
,4,7224,11685
,4,7229,5420
,4,7233,208095
,4,7249,203390
,4,7255,195315
,4,7258,200065
,4,7275,212405
,4,7281,6920
,4,7285,209560
,4,7286,8045
,4,7326,11080
,4,7329,12295
,4,7339,209680
,4,7340,206900
,4,7346,212410
,4,7350,209690
,4,7351,9775
,4,7355,30685
,4,7389,195255
,4,7391,23630
,4,7392,212415
,4,7399,5735
,4,7414,212420
,4,7420,22275
,4,7422,8170
,4,7440,8755
,4,7442,209860
,4,7450,11170
,4,7460,212425
,4,7475,212430
,4,7480,207170
,4,7489,207190
,4,7493,209920
,4,7503,5595
,4,7504,212435
,4,7509,3885
,4,7510,8900
,4,7512,209970
,4,7526,18735
,4,7527,209980
,4,7528,27355
,4,7533,8880
,4,7534,25885
,4,7553,26815
,4,7565,5290
,4,7588,7885
,4,7599,207380
,4,7602,210105
,4,7605,8120
,4,7606,212440
,4,7608,212445
,4,7611,196595
,4,7617,17495
,4,7641,212450
,4,7642,212455
,4,7645,212460
,4,7647,212465
,4,7649,212470
,4,7651,210215
,4,7661,212475
,4,7676,8235
,4,7678,5805
,4,7685,270
,4,7705,210305
,4,7708,9000
,4,7724,9040
,4,7745,199340
,4,7751,197990
,4,7757,23045
,4,7762,4820
,4,7778,212480
,4,7789,21190
,4,7793,9480
,4,7803,212485
,4,7808,5470
,4,7846,210530
,4,7852,11765
,4,7858,7975
,4,7874,212490
,4,7875,212495
,4,7876,210580
,4,7877,199310
,4,7896,201530
,4,7906,7985
,4,7909,212500
,4,7910,30740
,4,7915,210635
,4,7918,210650
,4,7932,18635
,4,7933,212505
,4,7936,200
,4,7937,210685
,4,7938,8225
,4,7945,212510
,4,7957,23405
,4,7971,207135
,4,7976,21390
,4,7977,212515
,4,7995,26110
,4,8011,7935
,4,8012,23685
,4,8015,210855
,4,8018,212520
,4,8019,21735
,4,8026,212525
,4,8027,199315
,4,8028,207245
,4,8033,4155
,4,8035,10095
,4,8052,8640
,4,8055,520
,4,8056,9705
,4,8057,7700
,4,8067,212530
,4,8075,212535
,4,8092,212540
,4,8094,10990
,4,8095,207365
,4,8106,210990
,4,8109,212545
,4,8123,207405
,4,8129,201440
,4,8143,212550
,4,8149,212555
,4,8150,197355
,4,8155,23040
,4,8159,211105
,4,8163,24795
,4,8164,80
,4,8165,23560
,4,8168,212560
,4,8173,211140
,4,8176,211145
,4,8180,5660
,4,8191,201430
,4,8193,9605
,4,8218,208065
,4,8225,212565
,4,8230,8285
,4,8233,24860
,4,8248,212570
,4,8250,212575
,4,8300,22365
,4,8318,10325
,4,8320,29040
,4,8322,197225
,4,8326,212580
,4,8332,209625
,4,8334,209635
,4,8337,201615
,4,8344,4900
,4,8345,212585
,4,8346,19460
,4,8351,212590
,4,8352,9010
,4,8355,28775
,4,8360,212595
,4,8363,206895
,4,8378,206965
,4,8388,202650
,4,8409,209755
,4,8429,8520
,4,8440,11780
,4,8441,209820
,4,8443,11900
,4,8446,212600
,4,8453,212605
,4,8469,197710
,4,8472,200045
,4,8477,212610
,4,8484,195310
,4,8486,28350
,4,8488,20135
,4,8500,8590
,4,8501,201480
,4,8502,19035
,4,8519,209930
,4,8523,212615
,4,8524,29295
,4,8525,26180
,4,8528,265
,4,8529,11260
,4,8548,16755
,4,8558,9835
,4,8563,11565
,4,8569,210010
,4,8571,207300
,4,8580,196460
,4,8581,198690
,4,8582,210030
,4,8583,207320
,4,8586,210040
,4,8595,199330
,4,8599,199975
,4,8601,197930
,4,8605,210075
,4,8606,9350
,4,8607,6890
,4,8632,207400
,4,8645,12280
,4,8661,210195
,4,8662,8680
,4,8668,210200
,4,8683,17420
,4,8685,11555
,4,8686,655
,4,8692,11605
,4,8696,9380
,4,8698,29375
,4,8700,212620
,4,8705,5400
,4,8710,210275
,4,8711,210280
,4,8713,212625
,4,8722,212630
,4,8730,125
,4,8731,11620
,4,8736,12090
,4,8737,212635
,4,8752,210345
,4,8755,9635
,4,8761,210375
,4,8764,212640
,4,8767,212645
,4,8772,212650
,4,8775,210385
,4,8787,3750
,4,8804,200085
,4,8806,5785
,4,8810,206810
,4,8828,212655
,4,8833,210475
,4,8835,210480
,4,8836,12060
,4,8837,206820
,4,8838,22285
,4,8839,206830
,4,8840,196290
,4,8846,6730
,4,8850,23580
,4,8852,203595
,4,8856,5680
,4,8857,206875
,4,8864,212660
,4,8868,196600
,4,8881,17625
,4,8891,4095
,4,8898,16735
,4,8902,5520
,4,8908,212665
,4,8910,16685
,4,8921,212670
,4,8927,27205
,4,8965,212675
,4,8968,207090
,4,8971,5320
,4,8972,16925
,4,8979,29525
,4,8984,210710
,4,9000,210735
,4,9007,210760
,4,9009,21440
,4,9011,212680
,4,9013,210820
,4,9014,6910
,4,9016,210800
,4,9017,210815
,4,9025,212685
,4,9029,8210
,4,9035,212690
,4,9036,212695
,4,9037,196700
,4,9038,210850
,4,9044,210860
,4,9048,18120
,4,9063,201565
,4,9065,6870
,4,9073,212700
,4,9079,8690
,4,9083,210910
,4,9087,200025
,4,9088,199985
,4,9094,11695
,4,9095,19280
,4,9099,30310
,4,9101,7945
,4,9108,212705
,4,9113,212710
,4,9115,212715
,4,9123,6995
,4,9138,195340
,4,9147,211045
,4,9148,211060
,4,9161,8110
,4,9183,17515
,4,9184,211110
,4,9186,7040
,4,9194,211130
,4,9195,212720
,4,9196,9675
,4,9198,212725
,4,9202,212730
,4,9206,6800
,4,9214,212735
,4,9216,211165
,4,9219,10530
,4,9228,209395
,4,9235,209410
,4,9237,212740
,4,9241,212745
,4,9245,8660
,4,9248,206705
,4,9252,197470
,4,9257,209430
,4,9266,29520
,4,9278,7815
,4,9283,8005
,4,9297,206775
,4,9300,209510
,4,9303,200100
,4,9304,212750
,4,9321,5340
,4,9327,209550
,4,9342,212755
,4,9351,12255
,4,9353,206840
,4,9356,206850
,4,9360,212760
,4,9361,212765
,4,9380,208005
,4,9392,212770
,4,9394,212775
,4,9395,6660
,4,9397,28660
,4,9414,212780
,4,9419,6590
,4,9422,212785
,4,9426,4175
,4,9432,209750
,4,9433,10385
,4,9435,16740
,4,9450,212790
,4,9461,1570
,4,9466,10730
,4,9469,29460
,4,9496,23600
,4,9508,212795
,4,9514,212800
,4,9533,30420
,4,9542,209925
,4,9554,26875
,4,9563,200950
,4,9565,196490
,4,9567,21455
,4,9574,212805
,4,9575,201065
,4,9580,9095
,4,9582,5765
,4,9585,7575
,4,9597,29380
,4,9601,212810
,4,9618,11280
,4,9637,201455
,4,9644,196645
,4,9647,210100
,4,9652,4140
,4,9667,210165
,4,9683,212815
,4,9696,200000
,4,9701,212820
,4,9702,212825
,4,9705,210230
,4,9709,212830
,4,9738,5865
,4,9741,11320
,4,9752,28460
,4,9754,212835
,4,9756,212840
,4,9758,210320
,4,9782,212845
,4,9785,23510
,4,9787,26150
,4,9788,30145
,4,9792,212850
,4,9794,26725
,4,9804,199065
,4,9806,11435
,4,9807,4910
,4,9812,212855
,4,9819,9280
,4,9820,15700
,4,9821,5605
,4,9822,4385
,4,9831,11250
,4,9837,206815
,4,9844,212860
,4,9859,5230
,4,9866,212865
,4,9877,212870
,4,9880,6630
,4,9885,212875
,4,9886,199990
,4,9892,210525
,4,9903,212880
,4,9905,200785
,4,9909,206155
,4,9921,3630
,4,9924,12080
,4,9933,210590
,4,9940,196310
,4,9945,210605
,4,9953,207055
,4,9955,10645
,4,9961,22775
,4,9963,207730
,4,9966,16930
,4,9973,16650
,4,9981,210680
,4,9983,196590
,4,9987,10780
,4,9989,207085
,4,9995,11445
,4,9998,197985
,4,10003,195685
,4,10013,5745
,4,10032,207150
,4,10033,210770
,4,10034,29035
,4,10036,207165
,4,10037,212885
,4,10042,212890
,4,10051,6780
,4,10079,207260
,4,10085,212895
,4,10089,210890
,4,10091,210895
,4,10096,12580
,4,10097,7385
,4,10099,212900
,4,10108,23395
,4,10131,212905
,4,10134,8240
,4,10135,26410
,4,10140,207360
,4,10144,210980
,4,10157,210995
,4,10167,211030
,4,10168,10410
,4,10169,7775
,4,10185,5795
,4,10187,28850
,4,10200,8155
,4,10212,207425
,4,10213,11440
,4,10214,7640
,4,10216,211125
,4,10239,211160
,4,10242,28705
,4,10253,209400
,4,10255,212910
,4,10262,11880
,4,10264,209415
,4,10269,28720
,4,10291,209445
,4,10297,7460
,4,10314,197980
,4,10315,212915
,4,10319,209505
,4,10320,26190
,4,10330,197250
,4,10347,212920
,4,10350,209530
,4,10356,28445
,4,10365,212925
,4,10368,209585
,4,10375,212930
,4,10391,19665
,4,10402,212935
,4,10411,260
,4,10413,206905
,4,10424,206945
,4,10431,196295
,4,10436,9755
,4,10438,207010
,4,10439,19960
,4,10459,10760
,4,10467,195995
,4,10475,212940
,4,10505,209845
,4,10517,4395
,4,10548,212945
,4,10571,197350
,4,10574,212950
,4,10580,209960
,4,10593,203370
,4,10600,207270
,4,10601,212955
,4,10607,15230
,4,10622,9135
,4,10625,210020
,4,10632,210035
,4,10633,21740
,4,10638,4050
,4,10652,207355
,4,10655,210085
,4,10665,212960
,4,10669,4515
,4,10684,23270
,4,10685,21770
,4,10693,3825
,4,10695,196650
,4,10704,21685
,4,10709,9160
,4,10712,9330
,4,10714,6970
,4,10715,9145
,4,10720,210205
,4,10728,27365
,4,10731,5490
,4,10732,210245
,4,10734,207440
,4,10758,206660
,4,10766,10590
,4,10774,201535
,4,10781,212965
,4,10784,206720
,4,10788,212970
,4,10791,8230
,4,10793,210340
,4,10796,10945
,4,10804,285
,4,10808,212975
,4,10809,212980
,4,10815,206755
,4,10816,23665
,4,10819,202640
,4,10822,196095
,4,10825,9085
,4,10832,7060
,4,10837,198000
,4,10838,8820
,4,10840,212985
,4,10843,212990
,4,10846,21675
,4,10847,21840
,4,10850,212995
,4,10851,199360
,4,10852,213000
,4,10859,210440
,4,10860,26785
,4,10867,8725
,4,10868,210450
,4,10871,213005
,4,10879,11270
,4,10880,213010
,4,10887,206835
,4,10889,206865
,4,10893,206165
,4,10895,206855
,4,10898,196585
,4,10905,210505
,4,10918,7875
,4,10925,11360
,4,10935,213015
,4,10936,21810
,4,10948,210575
,4,10960,18560
,4,10963,213020
,4,10973,24615
,4,10980,213025
,4,10986,24845
,4,10988,8540
,4,10989,213030
,4,10990,207065
,4,10996,213035
,4,11005,213040
,4,11007,5880
,4,11014,16640
,4,11029,5160
,4,11033,201585
,4,11040,213045
,4,11044,213050
,4,11051,18125
,4,11052,26210
,4,11058,210780
,4,11061,196300
,4,11072,210825
,4,11073,202635
,4,11104,210875
,4,11108,199980
,4,11119,196625
,4,11120,21430
,4,11134,197945
,4,11139,208015
,4,11149,213055
,4,11150,213060
,4,11154,213065
,4,11157,4400
,4,11159,197365
,4,11161,210960
,4,11164,210970
,4,11179,199305
,4,11208,196480
,4,11217,12285
,4,11219,211070
,4,11220,213070
,4,11228,213075
,4,11243,11680
,4,11245,9370
,4,11247,213080
,4,11256,213085
,4,11258,213090
,4,11261,213095
,4,11270,5740
,4,11277,202660
,4,11278,203585
,4,11280,213100
,4,11284,213105
,4,11295,27165
,4,11297,10570
,4,11299,23095
,4,11301,11985
,4,11307,198695
,4,11327,206750
,4,11330,213110
,4,11336,209475
,4,11337,10405
,4,11351,199955
,4,11355,213115
,4,11365,213120
,4,11367,213125
,4,11385,209565
,4,11390,196465
,4,11395,209595
,4,11414,213130
,4,11417,213135
,4,11426,213140
,4,11438,213145
,4,11439,197690
,4,11442,17505
,4,11444,19825
,4,11445,26000
,4,11446,12100
,4,11450,206950
,4,11454,90
,4,11458,195975
,4,11468,209720
,4,11471,213150
,4,11472,7915
,4,11479,19905
,4,11480,202625
,4,11493,209770
,4,11497,213155
,4,11505,213160
,4,11521,213165
,4,11523,213170
,4,11524,213175
,4,11527,9390
,4,11534,9745
,4,11543,26745
,4,11554,209885
,4,11569,213180
,4,11577,28355
,4,11590,200020
,4,11599,209950
,4,11621,213185
,4,11625,205700
,4,11632,213190
,4,11655,18885
,4,11659,9080
,4,11665,9865
,4,11672,210065
,4,11673,196695
,4,11684,5180
,4,11687,4340
,4,11693,10495
,4,11697,203520
,4,11699,210110
,4,11700,210115
,4,11701,202370
,4,11702,9645
,4,11703,213195
,4,11731,213200
,4,11769,12150
,4,11782,105
,4,11793,206685
,4,11797,19320
,4,11810,12180
,4,11814,10490
,4,11815,28635
,4,11819,213205
,4,11839,23540
,4,11859,206785
,4,11862,9515
,4,11870,206805
,4,11874,210420
,4,11876,213210
,4,11878,9540
,4,11882,210435
,4,11890,213215
,4,11898,5725
,4,11915,210490
,4,11916,30440
,4,11918,213220
,4,11922,213225
,4,11924,630
,4,11928,213230
,4,11938,210520
,4,11939,3780
,4,11947,210535
,4,11968,210560
,4,11969,210565
,4,11971,28670
,4,11973,206990
,4,11975,7045
,4,11976,195680
,4,11982,26160
,4,11983,4250
,4,11984,207030
,4,11986,9125
,4,11990,199965
,4,12001,10635
,4,12002,210625
,4,12004,213235
,4,12011,213240
,4,12012,210645
,4,12014,11455
,4,12025,4990
,4,12035,199960
,4,12043,213245
,4,12051,10880
,4,12052,213250
,4,12064,210715
,4,12065,210720
,4,12066,195695
,4,12093,213255
,4,12096,207200
,4,12098,213260
,4,12100,203400
,4,12104,210835
,4,12105,5210
,4,12107,208020
,4,12108,29915
,4,12111,8735
,4,12112,207225
,4,12118,4920
,4,12122,213265
,4,12137,196570
,4,12156,196545
,4,12158,210915
,4,12163,210930
,4,12173,207335
,4,12194,11535
,4,12196,213270
,4,12204,199355
,4,12219,211040
,4,12220,201520
,4,12230,7065
,4,12231,213275
,4,12246,10560
,4,12253,28675
,4,12257,10585
,4,12260,4370
,4,12275,24770
,4,12286,22785
,4,12290,207470
,4,12292,213280
,4,12293,209385
,4,12294,206655
,4,12296,9130
,4,12297,206665
,4,12298,4230
,4,12326,23425
,4,12334,21830
,4,12344,22385
,4,12363,209490
,4,12367,10565
,4,12368,3720
,4,12381,9030
,4,12398,213285
,4,12399,209540
,4,12400,199325
,4,12414,4435
,4,12429,7440
,4,12436,201450
,4,12437,206870
,4,12445,11415
,4,12450,18810
,4,12453,195295
,4,12456,213290
,4,12469,207000
,4,12477,290
,4,12486,213295
,4,12489,213300
,4,12494,209725
,4,12496,209730
,4,12500,4525
,4,12509,197475
,4,12521,196540
,4,12523,19455
,4,12526,213305
,4,12537,8105
,4,12538,26915
,4,12545,12290
,4,12546,205545
,4,12548,9060
,4,12556,22405
,4,12559,213310
,4,12564,209865
,4,12573,19390
,4,12582,9420
,4,12596,205685
,4,12601,209900
,4,12609,3855
,4,12611,5920
,4,12621,213315
,4,12625,196550
,4,12628,196285
,4,12629,207230
,4,12630,209965
,4,12647,213320
,4,12648,5860
,4,12664,207290
,4,12666,213325
,4,12675,210025
,4,12682,196535
,4,12685,9735
,4,12689,5770
,4,12690,213330
,4,12693,29100
,4,12695,5870
,4,12697,207350
,4,12703,213335
,4,12704,210090
,4,12713,19785
,4,12728,19080
,4,12735,29920
,4,12741,210170
,4,12748,10625
,4,12751,207420
,4,12755,210185
,4,12757,23145
,4,12763,11675
,4,12767,213340
,4,12785,213345
,4,12789,8135
,4,12790,213350
,4,12805,210270
,4,12813,210295
,4,12830,7895
,4,12835,213355
,4,12839,5460
,4,12851,210365
,4,12852,213360
,4,12862,8860
,4,12863,206745
,4,12872,200665
,4,12877,3765
,4,12883,24785
,4,12891,9885
,4,12894,213365
,4,12904,10870
,4,12915,196705
,4,12916,9070
,4,12923,11370
,4,12924,9785
,4,12933,210485
,4,12934,10620
,4,12943,213370
,4,12945,28455
,4,12962,213375
,4,12965,199565
,4,12971,213380
,4,12974,210540
,4,12977,200035
,4,12996,213385
,4,13000,213390
,4,13003,207025
,4,13011,10970
,4,13012,11495
,4,13019,210610
,4,13021,21150
,4,13022,10505
,4,13024,210615
,4,13025,213395
,4,13027,208080
,4,13029,12315
,4,13035,8550
,4,13045,10515
,4,13069,196555
,4,13078,213400
,4,13079,207110
,4,13093,213405
,4,13097,7005
,4,13100,207145
,4,13126,300
,4,13133,7730
,4,13143,196305
,4,13150,201500
,4,13162,213410
,4,13168,213415
,4,13169,197220
,4,13177,3810
,4,13178,24775
,4,13180,213420
,4,13181,9270
,4,13185,213425
,4,13187,10605
,4,13189,19310
,4,13190,30885
,4,13205,195300
,4,13206,21525
,4,13207,213430
,4,13209,213435
,4,13214,205675
,4,13223,213440
,4,13229,211025
,4,13230,211000
,4,13231,211005
,4,13235,24820
,4,13244,24790
,4,13246,28965
,4,13253,1480
,4,13259,22210
,4,13272,1235
,4,13279,211100
,4,13291,18115
,4,13296,213445
,4,13302,3975
,4,13304,207460
,4,13317,10670
,4,13320,7010
,4,13332,8980
,4,13333,208045
,4,13337,8740
,4,13345,209425
,4,13346,213450
,4,13349,30195
,4,13352,16630
,4,13358,23470
,4,13360,6640
,4,13363,10065
,4,13373,209470
,4,13377,5250
,4,13387,209485
,4,13388,6670
,4,13390,209500
,4,13396,200670
,4,13397,213455
,4,13398,213460
,4,13403,7865
,4,13408,11150
,4,13417,6740
,4,13419,209525
,4,13430,10920
,4,13445,26640
,4,13466,209655
,4,13469,5625
,4,13472,29900
,4,13477,5500
,4,13482,209675
,4,13483,213465
,4,13484,19765
,4,13499,213470
,4,13504,11130
,4,13505,21340
,4,13515,11650
,4,13525,8940
,4,13530,4360
,4,13531,19865
,4,13539,15180
,4,13549,213475
,4,13559,209815
,4,13566,213480
,4,13570,202630
,4,13573,10800
,4,13574,10690
,4,13575,209840
,4,13584,28615
,4,13585,199070
,4,13595,207115
,4,13603,24855
,4,13607,213485
,4,13617,29795
,4,13619,207665
,4,13621,21370
,4,13628,213490
,4,13631,201590
,4,13640,29140
,4,13641,10535
,4,13645,213495
,4,13653,213500
,4,13654,28435
,4,13666,19360
,4,13668,5070
,4,13682,207280
,4,13688,213505
,4,13707,200995
,4,13710,210055
,4,13721,8530
,4,13751,210125
,4,13753,11570
,4,13754,200055
,4,13757,20410
,4,13758,12205
,4,13767,213510
,4,13772,10710
,4,13788,213515
,4,13793,5350
,4,13794,6950
,4,13802,207435
,4,13803,199075
,4,13811,30695
,4,13831,12310
,4,13866,213520
,4,13869,26140
,4,13874,8720
,4,13877,213525
,4,13878,210370
,4,13879,213530
,4,13895,210380
,4,13899,210395
,4,13900,195970
,4,13902,206770
,4,13903,7835
,4,13908,4840
,4,13916,18660
,4,13917,7720
,4,13930,210430
,4,13931,201630
,4,13946,213535
,4,13948,207745
,4,13955,5730
,4,13956,19260
,4,13967,5875
,4,13977,213540
,4,13978,17430
,4,14004,10810
,4,14005,201625
,4,14006,202845
,4,14008,213545
,4,14011,206960
,4,14013,10830
,4,14015,196660
,4,14016,210570
,4,14022,213550
,4,14026,22215
,4,14035,28785
,4,14040,15260
,4,14041,213555
,4,14048,19755
,4,14050,213560
,4,14059,5050
,4,14060,26250
,4,14068,201595
,4,14079,24880
,4,14081,207075
,4,14082,18960
,4,14083,23390
,4,14088,28845
,4,14101,23715
,4,14110,213565
,4,14114,210725
,4,14115,213570
,4,14116,19675
,4,14118,210730
,4,14120,8025
,4,14127,213575
,4,14130,210775
,4,14131,213580
,4,14135,213585
,4,14136,210805
,4,14140,213590
,4,14145,11490
,4,14147,5550
,4,14154,5240
,4,14196,197960
,4,14197,11980
,4,14200,210900
,4,14207,210920
,4,14226,207345
,4,14233,210955
,4,14234,213595
,4,14251,19895
,4,14257,207390
,4,14258,9400
,4,14270,211050
,4,14271,211055
,4,14274,5890
,4,14276,145
,4,14303,213600
,4,14311,18760
,4,14312,5120
,4,14314,213605
,4,14328,29635
,4,14351,11090
,4,14370,19780
,4,14376,4780
,4,14378,8265
,4,14379,15220
,4,14387,213610
,4,14393,213615
,4,14397,9655
,4,14399,201555
,4,14404,23655
,4,14410,201635
,4,14412,209495
,4,14415,19715
,4,14428,213620
,4,14433,213625
,4,14434,209515
,4,14435,5820
,4,14437,9470
,4,14444,21350
,4,14447,209535
,4,14468,213630
,4,14478,200030
,4,14480,11560
,4,14483,209640
,4,14498,23705
,4,14509,208025
,4,14512,15695
,4,14516,206930
,4,14520,8065
,4,14522,206980
,4,14523,5645
,4,14525,23115
,4,14539,5790
,4,14543,213635
,4,14553,27185
,4,14565,213640
,4,14572,209780
,4,14577,209790
,4,14592,213645
,4,14597,5815
,4,14602,15185
,4,14607,213650
,4,14608,11660
,4,14610,9290
,4,14611,207105
,4,14612,11655
,4,14619,8100
,4,14628,213655
,4,14633,26835
,4,14641,207155
,4,14642,207160
,4,14644,213660
,4,14650,209910
,4,14668,200770
,4,14670,209945
,4,14671,209955
,4,14672,213665
,4,14673,213670
,4,14681,29540
,4,14686,8745
,4,14687,5480
,4,14691,5755
,4,14703,213675
,4,14707,4065
,4,14734,213680
,4,14736,207340
,4,14740,24780
,4,14743,11310
,4,14744,201445
,4,14750,4940
,4,14754,213685
,4,14757,196610
,4,14758,197925
,4,14765,20130
,4,14771,213690
,4,14777,19330
,4,14784,19400
,4,14791,11100
,4,14795,26765
,4,14796,24595
,4,14807,10345
,4,14819,207720
,4,14821,201460
,4,14829,5845
,4,14831,18710
,4,14837,21460
,4,14841,210260
,4,14862,210290
,4,14871,12595
,4,14872,213695
,4,14875,205
,4,14884,4300
,4,14885,213700
,4,14911,197695
,4,14922,213705
,4,14923,210390
,4,14930,210400
,4,14936,196710
,4,14951,5300
,4,14959,213710
,4,14964,213715
,4,14974,213720
,4,14978,213725
,4,14980,198770
,4,14983,27835
,4,14988,11380
,4,14993,20395
,4,14997,28870
,4,14998,196635
,4,15005,7020
,4,15009,4035
,4,15016,4500
,4,15028,11230
,4,15029,10520
,4,15032,11390
,4,15035,206955
,4,15049,210585
,4,15080,210630
,4,15083,8250
,4,15088,27335
,4,15091,30170
,4,15093,213730
,4,15100,210675
,4,15111,9560
,4,15113,201465
,4,15117,7480
,4,15121,213735
,4,15124,210700
,4,15141,12305
,4,15142,5110
,4,15151,210765
,4,15152,9115
,4,15157,213740
,4,15161,24875
,4,15165,207175
,4,15167,207180
,4,15170,9260
,4,15183,213745
,4,15196,213750
,4,15201,23100
,4,15213,9150
,4,15228,195320
,4,15229,11120
,4,15231,200095
,4,15232,213755
,4,15233,203515
,4,15234,30285
,4,15242,207325
,4,15243,213760
,4,15244,8125
,4,15267,213765
,4,15269,207370
,4,15270,16635
,4,15277,10695
,4,15281,21750
,4,15286,29285
,4,15287,7955
,4,15312,201605
,4,15321,211085
,4,15325,26695
,4,15329,19695
,4,15332,17555
,4,15333,211120
,4,15337,27345
,4,15339,5885
,4,15344,211150
,4,15352,9155
,4,15360,211170
,4,15371,20520
,4,15395,990
,4,15396,275
,4,15397,213770
,4,15400,213775
,4,15443,213780
,4,15447,213785
,4,15452,23465
,4,15456,26240
,4,15459,201550
,4,15461,3945
,4,15462,213790
,4,15465,18835
,4,15472,213795
,4,15474,11070
,4,15482,295
,4,15484,213800
,4,15507,6940
,4,15509,29270
,4,15517,213805
,4,15523,208105
,4,15524,18585
,4,15541,206935
,4,15542,9120
,4,15545,30355
,4,15548,213810
,4,15549,209700
,4,15551,8035
,4,15552,199085
,4,15553,206985
,4,15565,9550
,4,15568,207035
,4,15569,5130
,4,15570,197920
,4,15577,3840
,4,15580,213815
,4,15581,213820
,4,15586,196270
,4,15601,209805
,4,15617,6770
,4,15622,209835
,4,15625,209850
,4,15647,213825
,4,15683,209915
,4,15706,198005
,4,15709,24850
,4,15730,203090
,4,15744,11665
,4,15766,197905
,4,15796,196255
,4,15806,19875
,4,15808,207410
,4,15809,4320
,4,15819,196510
,4,15821,213830
,4,15825,6990
,4,15863,4195
,4,15866,213835
,4,15867,8245
,4,15869,11545
,4,15871,5915
,4,15901,206690
,4,15904,9460
,4,15905,206730
,4,15906,206715
,4,15909,201560
,4,15910,210325
,4,15913,213840
,4,15924,26200
,4,15930,213845
,4,15933,213850
,4,15955,210405
,4,15960,206800
,4,15963,208070
,4,15982,23520
,4,15988,213855
,4,15989,8270
,4,15990,210455
,4,15992,115
,4,15999,213860
,4,16000,213865
,4,16001,213870
,4,16003,196475
,4,16007,213875
,4,16009,19655
,4,16010,26905
,4,16012,213880
,4,16013,9320
,4,16014,23245
,4,16018,28395
,4,16032,20405
,4,16037,24815
,4,16046,198015
,4,16052,201485
,4,16053,213885
,4,16071,7555
,4,16087,11425
,4,16088,213890
,4,16093,9065
,4,16104,213895
,4,16114,9140
,4,16115,201490
,4,16119,213900
,4,16120,19855
,4,16125,8610
,4,16150,4830
,4,16151,5775
,4,16160,10640
,4,16167,202615
,4,16173,210755
,4,16174,8890
,4,16176,213905
,4,16179,205560
,4,16195,30260
,4,16197,10955
,4,16207,195860
,4,16217,213910
,4,16218,210870
,4,16224,213915
,4,16231,210885
,4,16234,23375
,4,16240,199060
,4,16242,11000
,4,16247,213920
,4,16259,11530
,4,16267,30675
,4,16269,210935
,4,16271,201600
,4,16275,19940
,4,16299,5750
,4,16306,207395
,4,16313,213925
,4,16320,6580
,4,16321,9845
,4,16331,213930
,4,16343,23695
,4,16348,211090
,4,16354,9505
,4,16355,213935
,4,16356,213940
,4,16357,207430
,4,16362,19220
,4,16363,211135
,4,16371,16620
,4,16373,213945
,4,16374,197360
,4,3,21455
,4,5,213955
,4,6,195255
,4,8,213960
,4,9,4665
,4,11,213965
,4,12,195270
,4,14,213970
,4,15,195280
,4,17,213975
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,4,3,21455
,4,5,213985
,4,6,195255
,4,8,213990
,4,9,4665
,4,11,213995
,4,12,195270
,4,14,214000
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,4,3,21455
,4,5,214010
,4,6,195255
,4,8,214015
,4,9,4665
,4,11,214020
,4,12,195270
,4,14,214025
,4,15,195280
,4,17,214030
,4,18,9795
,4,20,1740
,4,21,212775
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,213505
,4,3,21455
,4,5,214045
,4,6,195255
,4,8,214050
,4,9,4665
,4,11,585
,4,12,195270
,4,14,600
,4,15,195280
,4,17,214055
,3,36244,225610
,3,36244,225610
,3,36244,225610
,4,3,21455
,4,5,214065
,4,6,195255
,4,8,214070
,4,9,4665
,4,11,605
,4,12,195270
,4,14,610
,3,36244,225610
,3,36244,225610
,4,3,21455
,4,5,214080
,4,6,195255
,4,8,214085
,4,9,4665
,4,11,615
,4,12,195270
,4,14,620
,4,15,195280
,4,17,214090
,3,36244,225610
,3,36244,225610
,3,36244,225610
,4,3,21455
,4,5,214010
,4,6,195255
,4,8,214015
,4,9,4665
,4,11,214020
,4,12,195270
,4,14,214025
,4,15,195280
,4,17,214030
,3,36259,430
,3,36261,350
,3,36260,214105
,3,36244,234750
,4,3,16560
,3,36383,690
,3,36383,695
,3,36383,700
,3,36383,705
,3,36383,710
,3,36383,715
,3,36383,720
,3,36383,725
,3,36383,730
,3,36383,735
,3,36383,740
,3,36383,745
,3,36383,750
,3,36383,755
,3,36383,95
,3,36383,760
,3,36383,725
,3,36383,765
,3,36383,770
,3,36383,775
,3,36383,780
,3,36383,785
,3,36383,790
,3,36383,795
,3,36383,800
,3,36383,535
,3,36383,805
,3,36383,810
,3,36383,815
,3,36383,820
,3,36383,825
,3,36383,830
,3,36383,350
,3,36383,835
,3,36383,840
,3,36383,845
,3,36383,850
,3,36383,855
,3,36383,860
,3,36383,865
,3,36383,870
,3,36383,875
,3,36383,880
,3,36383,885
,3,36383,890
,3,36383,895
,3,36383,900
,3,36383,905
,3,36383,910
,3,36383,915
,3,36383,920
,3,36383,925
,3,36383,930
,3,36383,935
,3,36383,940
,3,36383,945
,3,36383,950
,3,36383,955
,3,36383,960
,3,36383,965
,3,36383,725
,4,3,16560
,4,5,995
,3,36259,430
,3,36261,350
,3,36260,214475
,3,36244,234750
,4,3,16560
,4,3,16735
,4,6,990
,4,9,212565
,4,12,213855
,4,15,213860
,3,36259,430
,3,36261,845
,3,36260,217375
,3,36244,234750
,4,3,21455
,4,6,213585
,4,2,214510
,3,36259,430
,3,36261,1460
,3,36377,1455
,4,2,204125
,3,36262,214515
,3,36260,214500
,3,36244,234750
,4,1,1455
,4,2,204125
,4,3,21455
,4,6,213585
,4,3,21455
,4,6,213585
,4,8,1465
,4,9,195270
,4,11,1470
,4,3,16560
,4,5,1485
,3,36259,430
,3,36261,350
,3,36260,214530
,3,36244,234750
,4,3,16560
,4,5,1510
,3,36259,430
,3,36261,350
,3,36260,214540
,3,36244,234750
,4,3,16560
,4,5,1535
,3,36259,430
,3,36261,350
,3,36260,214550
,3,36244,234750
,3,36383,960
,3,36383,375
,3,36383,1585
,3,36383,1590
,3,36383,1595
,3,36383,1600
,3,36383,800
,3,36383,1605
,3,36383,1610
,3,36383,1615
,3,36383,1620
,3,36383,1625
,3,36383,935
,3,36383,1630
,3,36383,1635
,3,36383,1640
,3,36383,1250
,3,36383,1645
,3,36383,685
,3,36383,1650
,3,36383,1655
,3,36383,1660
,3,36383,1665
,3,36383,1670
,3,36383,1425
,3,36383,1260
,3,36383,1675
,3,36383,1680
,3,36383,1685
,3,36383,865
,3,36383,1690
,3,36383,1695
,3,36383,1700
,3,36383,1705
,3,36383,1710
,3,36383,1335
,3,36383,1715
,3,36383,1720
,3,36383,535
,3,36383,495
,3,36383,1725
,3,36383,1730
,3,36383,1735
,3,36383,1740
,3,36383,1745
,3,36383,875
,3,36383,1750
,3,36383,1755
,3,36383,365
,3,36383,1760
,3,36383,1765
,3,36383,1770
,3,36383,1775
,3,36383,1780
,3,36383,1785
,3,36383,1790
,3,36383,1795
,3,36383,380
,3,36383,1800
,3,36383,730
,3,36383,1805
,3,36383,1210
,3,36383,1810
,3,36383,1815
,3,36383,1820
,3,36383,1825
,3,36383,1830
,3,36383,95
,3,36383,415
,3,36383,880
,3,36383,1835
,3,36383,1840
,3,36383,885
,3,36383,1845
,3,36383,1850
,3,36383,1855
,3,36383,1860
,3,36383,1865
,3,36383,1125
,3,36383,1870
,3,36383,1875
,3,36383,1880
,3,36383,1885
,3,36383,1890
,3,36383,1895
,3,36383,1900
,3,36383,1905
,3,36383,1910
,3,36383,505
,3,36383,1915
,3,36383,1920
,3,36383,1925
,3,36383,1930
,3,36383,1935
,3,36383,405
,3,36383,1940
,3,36383,1945
,3,36383,1950
,3,36383,1955
,3,36383,1960
,3,36383,1965
,3,36383,750
,3,36383,1970
,3,36383,970
,3,36383,1975
,3,36383,1980
,3,36383,1985
,3,36383,1990
,3,36383,1995
,3,36383,2000
,3,36383,2005
,3,36383,360
,3,36383,2010
,3,36383,2015
,3,36383,2020
,3,36383,2025
,3,36383,945
,3,36383,2030
,3,36383,2035
,3,36383,2040
,3,36383,855
,3,36383,2045
,3,36383,2050
,3,36383,2055
,3,36383,2060
,3,36383,2065
,3,36383,2070
,3,36383,2075
,3,36383,2080
,3,36383,2085
,3,36383,2090
,3,36383,2095
,3,36383,2100
,3,36383,2105
,3,36383,540
,3,36383,2110
,3,36383,2115
,3,36383,2120
,3,36383,910
,3,36383,845
,3,36383,890
,3,36383,940
,3,36383,470
,3,36383,2125
,3,36383,2130
,3,36383,2135
,3,36383,395
,3,36383,2140
,3,36383,480
,3,36383,2145
,3,36383,2150
,3,36383,2155
,3,36383,2160
,3,36383,2165
,3,36383,2170
,3,36383,735
,3,36383,2175
,3,36383,2180
,3,36383,2185
,3,36383,2190
,3,36383,2195
,3,36383,2200
,3,36383,2205
,3,36383,2210
,3,36383,485
,3,36383,2215
,3,36383,2220
,3,36383,2225
,3,36383,2230
,3,36383,2235
,3,36383,2240
,3,36383,2245
,3,36383,2250
,3,36383,2255
,3,36383,2260
,3,36383,2265
,3,36383,2270
,3,36383,2275
,3,36383,2280
,3,36383,2285
,3,36383,1330
,3,36383,2290
,3,36383,2295
,3,36383,2300
,3,36383,2305
,3,36383,2310
,3,36383,2315
,3,36383,2320
,3,36383,2325
,3,36383,2330
,3,36383,2335
,3,36383,2340
,3,36383,2345
,3,36383,2350
,3,36383,2355
,3,36383,2360
,3,36383,2365
,3,36383,2370
,3,36383,2375
,3,36383,2380
,3,36383,2385
,3,36383,2390
,3,36383,410
,3,36383,2395
,3,36383,2400
,3,36383,2405
,3,36383,2410
,3,36383,2415
,3,36383,2420
,3,36383,2425
,3,36383,2430
,3,36383,2435
,3,36383,2440
,3,36383,385
,3,36383,545
,3,36383,2445
,3,36383,2450
,3,36383,2455
,3,36383,2460
,3,36383,2465
,3,36383,390
,3,36383,2470
,3,36383,2475
,3,36383,2480
,3,36383,2485
,3,36383,2490
,3,36383,2495
,3,36383,2500
,3,36383,2505
,3,36383,2510
,3,36383,2515
,3,36383,2520
,3,36383,2525
,3,36383,1320
,3,36383,2530
,3,36383,2535
,3,36383,2540
,3,36383,2545
,3,36383,2550
,3,36383,2555
,3,36383,2560
,3,36383,2565
,3,36383,2570
,3,36383,2575
,3,36383,2580
,3,36383,2585
,3,36383,2590
,3,36383,820
,3,36383,2595
,3,36383,500
,3,36383,2600
,3,36383,2605
,3,36383,2610
,3,36383,840
,3,36383,2615
,3,36383,2620
,3,36383,850
,3,36383,2625
,3,36383,735
,3,36383,2630
,3,36383,2635
,3,36383,870
,3,36383,2640
,3,36383,2645
,3,36383,2650
,3,36383,2655
,3,36383,2660
,3,36383,2665
,3,36383,865
,3,36383,2670
,3,36383,2675
,3,36383,2680
,3,36383,2685
,3,36383,2690
,3,36383,2695
,3,36383,2700
,3,36383,2705
,3,36383,2710
,3,36383,2715
,3,36383,2720
,3,36383,2725
,3,36383,2730
,3,36383,2735
,3,36383,2740
,3,36383,2745
,3,36383,2750
,3,36383,2755
,3,36383,2760
,3,36383,2765
,3,36383,2770
,3,36383,2775
,3,36383,2780
,3,36383,2785
,3,36383,2790
,3,36383,2795
,3,36383,2800
,3,36383,2805
,3,36383,2810
,3,36383,2815
,3,36383,2820
,3,36383,2825
,3,36383,2130
,3,36383,2830
,3,36383,2835
,3,36383,2840
,3,36383,2845
,3,36383,2850
,3,36383,2855
,3,36383,2860
,3,36383,1255
,3,36383,2865
,3,36383,2870
,3,36383,2875
,3,36383,400
,3,36383,2880
,3,36383,2885
,3,36383,2890
,3,36383,2895
,3,36383,2900
,3,36383,2905
,3,36383,2910
,3,36383,2915
,3,36383,2920
,3,36383,2925
,3,36383,2930
,3,36383,2935
,3,36383,2940
,3,36383,795
,3,36383,2945
,3,36383,2950
,3,36383,490
,3,36383,2955
,3,36383,460
,3,36383,2960
,3,36383,2965
,3,36383,2970
,3,36383,2975
,3,36383,2980
,3,36383,2985
,3,36383,895
,3,36383,2990
,3,36383,770
,3,36383,2005
,3,36383,2995
,3,36383,3000
,3,36383,3005
,3,36383,3010
,3,36383,3015
,3,36383,3020
,3,36383,3025
,3,36383,1130
,3,36383,3030
,3,36383,1430
,3,36383,3035
,3,36383,3040
,3,36383,3045
,3,36383,3050
,3,36383,965
,3,36383,3055
,3,36383,3060
,3,36383,475
,3,36383,3065
,3,36383,3070
,3,36383,3075
,3,36383,3080
,3,36383,3085
,3,36383,720
,3,36383,3090
,3,36383,3095
,3,36383,3100
,3,36383,3105
,3,36383,3110
,3,36383,3115
,3,36383,3120
,3,36383,3125
,3,36383,3130
,3,36383,3135
,3,36383,95
,3,36383,3140
,3,36383,3145
,3,36383,3150
,3,36383,3155
,3,36383,3160
,3,36383,3165
,3,36383,3170
,3,36383,1340
,3,36383,465
,3,36383,3175
,3,36383,3180
,3,36383,3185
,3,36383,420
,3,36383,3190
,3,36383,3195
,3,36383,3200
,3,36383,3205
,3,36383,1715
,3,36383,3210
,3,36383,3215
,3,36383,3220
,3,36383,3225
,3,36383,3230
,3,36383,3235
,3,36383,3240
,3,36383,3245
,3,36383,1065
,3,36383,355
,3,36383,3250
,3,36383,3255
,3,36383,3260
,3,36383,3265
,3,36383,3270
,3,36383,3275
,3,36383,3280
,3,36383,3285
,3,36383,350
,3,36383,3290
,3,36383,3295
,3,36383,370
,3,36383,3300
,3,36383,3305
,3,36383,3310
,3,36383,3315
,3,36383,3320
,3,36383,3325
,3,36383,3330
,3,36383,815
,3,36383,3335
,3,36383,3340
,3,36383,3345
,3,36383,3350
,3,36383,3355
,3,36383,3360
,3,36383,3365
,3,36383,3370
,4,3,16735
,4,5,216800
,4,6,195255
,4,8,216805
,4,9,16680
,4,11,216810
,4,12,212235
,4,14,216815
,4,15,211540
,4,17,216820
,4,18,211900
,4,20,216825
,4,21,29045
,4,23,216830
,4,24,211775
,4,26,216835
,4,27,213315
,4,29,216840
,4,30,212630
,4,32,216845
,4,33,212545
,4,35,216850
,4,36,212540
,4,38,216855
,4,39,212375
,4,41,216860
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,4,3,21455
,4,5,216870
,3,36244,225610
,4,3,21455
,4,5,216880
,3,36244,225610
,3,36259,430
,3,36261,895
,3,36260,217045
,3,36244,234750
,4,2,204050
,4,1,1080
,4,2,204165
,4,1,204050
,4,2,204170
,4,1,204165
,4,2,198805
,4,1,204170
,4,2,204160
,3,36259,430
,3,36261,855
,3,36260,216950
,3,36244,234750
,4,3,16560
,4,5,2950
,4,6,196255
,4,9,196260
,4,12,196265
,4,15,196270
,4,18,196275
,4,21,196280
,4,24,196285
,4,27,196290
,4,30,196295
,4,33,196300
,4,36,196305
,4,39,196310
,4,42,4890
,4,45,212145
,4,48,212730
,4,51,212255
,4,54,213930
,4,57,213105
,4,60,212365
,4,63,213030
,4,66,213735
,4,69,213540
,4,72,213755
,4,75,212430
,4,78,213910
,4,81,211555
,4,84,212000
,4,87,211705
,4,90,212290
,4,93,211735
,4,96,212830
,4,2,204790
,4,3,16560
,4,5,350
,4,6,4890
,4,8,460
,4,9,4900
,4,11,465
,4,12,4910
,4,14,470
,4,15,4920
,4,17,475
,4,18,4940
,4,20,480
,4,21,4950
,4,23,485
,4,24,4960
,4,26,490
,4,27,4980
,4,29,495
,4,30,4990
,4,32,500
,4,33,5000
,4,35,505
,4,3,21455
,4,5,214010
,4,6,195255
,4,8,214015
,4,9,4665
,4,11,214020
,4,12,195270
,4,14,214025
,4,15,195280
,4,17,214030
,4,18,5010
,4,20,355
,4,21,5360
,4,23,360
,4,24,5380
,4,26,365
,4,27,5420
,4,29,370
,4,30,5460
,4,32,375
,4,33,5320
,4,35,380
,4,36,5330
,4,38,385
,4,39,5350
,4,41,390
,4,42,5510
,4,44,395
,4,45,5500
,4,47,400
,4,48,5490
,4,50,405
,4,51,5480
,4,53,410
,4,54,5470
,4,56,415
,4,57,5450
,4,59,420
,4,3,16560
,4,5,855
,4,6,4890
,4,8,2455
,4,9,4910
,4,11,2225
,3,36259,430
,3,36261,820
,3,36260,216960
,3,36244,234750
,4,3,16560
,4,5,820
,4,6,4890
,4,8,2670
,4,9,4900
,4,11,2900
,4,12,4910
,4,14,3310
,4,15,5585
,4,17,3230
,4,18,5595
,4,20,2115
,4,21,5605
,4,23,2635
,4,3,21455
,4,5,214010
,4,6,195255
,4,8,214015
,4,9,4665
,4,11,214020
,4,12,195270
,4,14,214025
,4,15,195280
,4,17,214030
,4,18,212105
,4,21,211700
,4,24,212935
,4,27,213465
,4,30,212120
,4,33,4830
,4,35,1125
,4,36,4820
,4,38,1130
,4,3,21455
,4,5,214010
,4,6,195255
,4,8,214015
,4,9,4665
,4,11,214020
,4,12,195270
,4,14,214025
,4,15,195280
,4,17,214030
,4,18,6960
,4,20,1065
,4,3,7370
,4,5,3650
,4,6,7385
,4,8,3655
,4,9,7400
,4,11,7410
,4,12,7420
,4,14,7430
,4,15,7440
,4,17,7450
,4,18,7460
,4,20,7470
,4,21,7480
,4,23,7490
,4,1,195565
,4,2,216985
,3,36259,430
,3,36261,350
,3,36377,216995
,4,2,217000
,3,36262,216990
,3,36260,216975
,3,36244,234750
,4,1,216995
,4,2,217000
,3,36259,430
,3,36261,350
,3,36377,195565
,4,2,216985
,3,36262,216980
,3,36260,216975
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,216985
,4,2,217010
,3,36262,217005
,3,36260,216975
,3,36244,234750
,4,1,216985
,4,2,217010
,3,36259,430
,3,36261,350
,3,36377,217000
,4,2,217020
,3,36262,217015
,3,36260,216975
,3,36244,234750
,4,1,217000
,4,2,217020
,3,36259,430
,3,36261,350
,3,36377,217010
,4,2,217030
,3,36262,217025
,3,36260,216975
,3,36244,234750
,4,1,217010
,4,2,217030
,3,36259,430
,3,36261,350
,3,36377,217020
,4,2,217040
,3,36262,217035
,3,36260,216975
,3,36244,234750
,4,1,217020
,4,2,217040
,3,36259,430
,3,36261,350
,3,36377,217030
,3,36260,216975
,3,36244,234750
,4,3,21455
,4,5,216880
,4,6,16560
,4,8,895
,4,9,4890
,4,11,3165
,4,12,4900
,4,14,2570
,4,15,6710
,4,17,2980
,4,18,7370
,4,20,3650
,4,21,7385
,4,23,3655
,4,24,7480
,4,26,7490
,4,27,6780
,4,29,1585
,4,30,7400
,4,32,7410
,4,33,7420
,4,35,7430
,4,36,7440
,4,38,7450
,4,39,7460
,4,41,7470
,4,42,6840
,4,44,2730
,4,45,6850
,4,47,2695
,4,48,6870
,4,50,3150
,4,51,6890
,4,53,3065
,4,54,6900
,4,56,2940
,4,57,6910
,4,59,3280
,4,60,6920
,4,62,2780
,4,63,6930
,4,65,1735
,4,66,6940
,4,68,1815
,4,69,6950
,4,71,2550
,4,3,6710
,4,5,2980
,4,6,7370
,4,8,3650
,4,9,7385
,4,11,3655
,4,3,21455
,4,5,217060
,3,36244,225610
,3,36261,350
,3,36260,217070
,3,36244,234750
,4,3,16560
,4,5,1880
,4,6,211610
,4,9,213605
,4,12,213380
,4,15,213160
,4,18,212965
,4,3,21455
,4,5,214010
,4,6,195255
,4,8,214015
,4,9,4665
,4,11,214020
,4,12,195270
,4,14,214025
,4,15,195280
,4,17,214030
,4,18,7915
,4,20,1210
,4,3,21455
,4,5,217060
,4,6,16560
,4,8,840
,4,9,4910
,4,11,2050
,4,12,4890
,4,14,2075
,4,15,7555
,4,17,1980
,4,18,7575
,4,20,3250
,4,21,7480
,4,23,2135
,4,24,6920
,4,26,2275
,4,27,6930
,4,29,3135
,4,30,7620
,4,32,1610
,4,33,7630
,4,35,2410
,4,36,7660
,4,38,2645
,4,39,7730
,4,41,3270
,4,42,7440
,4,44,2360
,4,45,7755
,4,47,2805
,4,48,7795
,4,50,1990
,4,51,7815
,4,53,3215
,4,54,7835
,4,56,1900
,4,57,7855
,4,59,1840
,4,60,7865
,4,62,2510
,4,63,7875
,4,65,2185
,4,66,7885
,4,68,3285
,4,69,7895
,4,71,2420
,4,72,7905
,4,74,3030
,4,75,7935
,4,77,2910
,4,78,7945
,4,80,2495
,4,81,7955
,4,83,2435
,4,84,7965
,4,86,3140
,4,87,7975
,4,89,2430
,4,90,7985
,4,92,2850
,4,93,7995
,4,95,2015
,4,96,8005
,4,98,2965
,4,99,8015
,4,101,1670
,4,102,8025
,4,104,2620
,4,105,8035
,4,107,2070
,4,108,8045
,4,110,2505
,4,111,8055
,4,113,1660
,4,3,16560
,4,5,2565
,3,36259,430
,3,36261,350
,3,36260,217085
,3,36244,234750
,4,3,204820
,4,3,212515
,4,6,212590
,4,9,212065
,4,12,213625
,4,15,213570
,4,18,213850
,4,21,211965
,4,24,213425
,4,27,8990
,4,29,2870
,4,30,8850
,4,32,2130
,4,33,8860
,4,35,2190
,4,36,8870
,4,38,2535
,4,39,8880
,4,41,3195
,4,42,8900
,4,44,1710
,4,45,8920
,4,47,3205
,4,48,8930
,4,50,1600
,4,51,8940
,4,53,2005
,4,54,8950
,4,56,1870
,4,57,9000
,4,59,2370
,4,60,9010
,4,62,3080
,4,63,9020
,4,65,3355
,4,66,9030
,4,68,2340
,4,69,8890
,4,71,2140
,4,72,8980
,4,74,2165
,4,75,8960
,4,77,2795
,4,78,8970
,4,80,1595
,4,3,16560
,4,5,2740
,4,6,16735
,4,9,195255
,4,12,213315
,4,15,212235
,4,18,211540
,4,21,213715
,4,24,211910
,4,27,212810
,4,29,2690
,4,30,212300
,4,32,2060
,4,33,212970
,4,35,3335
,4,36,213530
,4,38,1800
,4,39,213330
,4,41,1745
,4,42,212020
,4,44,2480
,4,45,212755
,4,47,1755
,3,36261,350
,3,36260,217115
,3,36244,234750
,4,3,16560
,4,5,2615
,4,6,16755
,4,9,29100
,4,12,212260
,4,15,211590
,4,18,23245
,4,21,29140
,4,24,211860
,4,26,2885
,4,27,212520
,4,29,3290
,3,36261,350
,3,36260,217125
,3,36244,234750
,4,3,16560
,4,5,2575
,4,6,16755
,4,9,212770
,4,12,211845
,4,15,212465
,4,18,212525
,4,21,212520
,4,23,2555
,3,36261,350
,3,36260,217135
,3,36244,234750
,4,3,16560
,4,5,1965
,4,6,213870
,4,9,211400
,4,12,28475
,4,15,211755
,4,17,2205
,4,18,213230
,4,20,3365
,4,21,213155
,4,23,2895
,4,24,213595
,4,26,1850
,4,27,211335
,4,29,2515
,4,30,212195
,4,32,2265
,4,33,213550
,4,35,1700
,4,36,211640
,4,38,1795
,4,39,212480
,4,41,3315
,4,42,212790
,4,44,2170
,4,45,213745
,4,47,2840
,4,48,212860
,4,50,3090
,4,51,213795
,4,53,1680
,4,54,213920
,4,56,2285
,4,57,213140
,4,59,2210
,4,60,4890
,4,62,2025
,0,486,795
,2,35551,425
,2,34299,430
,3,36254,10145
,3,36255,204840
,6,64,85
,3,36244,675
,4,1,10150
,4,2,10160
,3,36259,430
,3,36261,217140
,3,36260,217240
,3,36244,234750
,3,36259,425
,3,36377,217235
,3,36260,214005
,3,36244,234750
,3,36259,197770
,3,36261,795
,3,36262,217160
,3,36244,234750
,4,3,213040
,4,6,4665
,4,9,29045
,4,12,16560
,4,14,885
,4,15,195255
,4,2,205990
,4,3,213040
,4,6,4665
,4,9,29045
,4,12,16560
,4,14,730
,4,15,195255
,4,2,217185
,3,36259,197770
,3,36261,795
,3,36377,234995
,3,36260,217175
,3,36244,234750
,4,3,213040
,4,6,4665
,4,9,29045
,4,12,16560
,4,14,800
,4,15,195255
,4,2,205995
,4,3,213040
,4,6,4665
,4,9,29045
,4,12,16560
,4,14,890
,4,15,195255
,4,2,206000
,4,3,213040
,4,6,4665
,4,9,29045
,4,12,16560
,4,14,815
,4,15,195255
,4,2,206005
,4,3,213040
,4,6,4665
,4,9,29045
,4,12,16560
,4,14,910
,4,15,195255
,4,2,206010
,4,2,217235
,3,36259,425
,3,36377,675
,4,2,217150
,3,36262,217415
,3,36260,214005
,3,36244,234750
,4,3,16560
,4,5,795
,4,6,195255
,4,9,28595
,4,12,4890
,4,14,2585
,4,3,213040
,4,6,4665
,4,9,29045
,4,12,28595
,4,14,10280
,4,2,217255
,3,36259,203815
,3,36261,730
,3,36377,10055
,4,2,217265
,3,36262,217260
,3,36260,217245
,3,36244,234750
,4,1,10055
,4,2,217265
,3,36259,203815
,3,36261,730
,3,36377,217255
,4,2,217275
,3,36262,217270
,3,36260,217245
,3,36244,234750
,4,1,217255
,4,2,217275
,3,36259,203815
,3,36261,730
,3,36377,217265
,4,2,217295
,3,36262,217290
,3,36260,217245
,3,36244,234750
,4,1,217265
,4,2,217295
,3,36259,203815
,3,36261,730
,3,36377,217275
,4,2,203820
,3,36262,217305
,3,36260,217245
,3,36244,234750
,4,3,213040
,4,6,4665
,4,9,29045
,4,12,28595
,4,14,10290
,4,1,217275
,4,2,203820
,4,3,10490
,4,6,10495
,4,2,217320
,3,36259,430
,3,36261,350
,3,36377,204220
,4,2,204040
,3,36262,217325
,3,36260,217310
,3,36244,234750
,4,1,204220
,4,2,204040
,3,36259,430
,3,36261,880
,3,36260,217340
,3,36244,234750
,4,3,21455
,4,5,214010
,4,6,195255
,4,8,214015
,4,9,4665
,4,11,214020
,4,12,195270
,4,14,214025
,4,15,195280
,4,17,214030
,4,18,10750
,4,20,1250
,4,21,10880
,4,23,1255
,4,24,10895
,4,26,1260
,4,3,16560
,4,5,880
,4,6,4890
,4,8,2520
,4,9,10920
,4,11,3235
,4,12,10930
,4,14,2715
,4,15,4900
,4,17,3075
,4,18,10945
,4,20,3015
,4,21,10955
,4,23,2830
,4,24,4910
,4,26,1820
,4,27,10970
,4,29,3125
,4,30,10980
,4,32,2055
,4,33,10990
,4,35,2180
,4,36,11000
,4,38,2880
,4,39,11010
,4,41,2525
,4,42,11020
,4,44,3115
,4,45,11030
,4,47,3160
,4,48,11040
,4,50,2400
,4,51,11050
,4,53,2440
,4,54,11060
,4,56,3370
,4,57,11070
,4,59,2395
,4,60,11080
,4,62,1825
,4,63,11090
,4,65,2155
,4,66,11100
,4,68,2280
,4,69,11110
,4,71,1655
,4,72,11120
,4,74,1645
,4,75,11130
,4,77,2320
,4,78,11140
,4,80,1620
,4,81,11150
,4,83,2960
,4,84,11170
,4,86,3005
,4,87,11180
,4,89,2405
,4,90,11190
,4,92,3010
,4,93,11200
,4,95,2310
,4,96,11210
,4,98,2470
,4,99,11220
,4,101,1605
,4,102,11230
,4,104,2230
,4,105,11240
,4,107,2815
,4,108,11250
,4,110,1910
,4,111,11260
,4,113,2465
,4,114,11270
,4,116,1925
,4,117,11280
,4,119,2040
,4,120,11290
,4,122,2030
,4,123,11300
,4,125,2175
,4,126,11340
,4,128,1690
,4,129,11310
,4,131,2705
,4,132,11320
,4,134,2375
,4,135,11330
,4,137,3325
,4,138,11360
,4,140,1955
,4,141,11370
,4,143,3120
,4,3,10880
,4,5,1425
,4,6,11940
,4,8,1430
,4,3,16735
,4,6,990
,4,9,212565
,4,12,213855
,4,15,213860
,4,18,16560
,4,20,845
,4,21,12150
,4,23,3265
,4,24,12170
,4,26,2985
,4,27,4890
,4,29,2975
,4,30,12090
,4,32,2315
,4,3,21455
,4,5,214010
,4,6,195255
,4,8,214015
,4,9,4665
,4,11,214020
,4,12,195270
,4,14,214025
,4,15,195280
,4,17,214030
,4,18,211740
,4,20,12445
,4,21,212395
,4,23,12450
,4,24,213225
,4,26,12455
,4,27,213855
,4,29,12460
,4,30,211625
,4,32,12465
,4,33,213880
,4,35,12470
,4,36,213825
,4,38,12475
,4,39,213255
,4,41,12480
,4,42,213580
,4,44,12485
,4,45,213815
,4,47,12490
,4,48,213535
,4,50,12495
,4,51,212870
,4,53,12500
,4,54,212335
,4,56,12505
,4,57,213810
,4,59,12530
,4,60,213450
,4,62,12535
,4,63,212025
,4,65,12540
,4,66,213245
,4,68,12545
,4,69,211620
,4,71,12550
,4,72,211430
,4,74,12555
,4,75,213270
,4,77,12560
,4,78,213830
,4,80,12565
,4,81,212320
,4,83,12570
,4,3,21455
,4,5,217390
,4,6,195255
,4,8,217395
,4,9,4665
,4,11,217400
,4,12,195270
,4,14,217405
,4,15,16560
,4,17,535
,4,18,5660
,4,20,540
,4,21,4890
,4,23,545
,4,24,12580
,4,26,550
,4,27,12595
,4,29,555
,3,36244,225610
,3,36244,225610
,3,36244,225610
,3,36244,225610
,4,3,21455
,4,5,216880
,4,6,21460
,4,9,211740
,4,1,675
,4,2,217150
,3,36259,430
,3,36261,350
,3,36260,217425
,3,36244,234750
,4,3,16560
,4,5,12660
,4,3,213900
,4,6,213075
,4,9,211710
,4,12,213915
,4,15,213650
,4,18,211600
,4,21,213490
,4,24,211525
,4,1,455
,4,2,217440
,3,36259,430
,3,36261,350
,3,36377,217450
,4,2,217455
,3,36262,217445
,3,36260,217430
,3,36244,234750
,4,1,217450
,4,2,217455
,3,36259,430
,3,36261,350
,3,36377,455
,4,2,217440
,3,36262,217435
,3,36260,217430
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,217440
,4,2,217465
,3,36262,217460
,3,36260,217430
,3,36244,234750
,4,1,217440
,4,2,217465
,3,36259,430
,3,36261,350
,3,36377,217455
,4,2,217475
,3,36262,217470
,3,36260,217430
,3,36244,234750
,4,1,217455
,4,2,217475
,3,36259,430
,3,36261,350
,3,36377,217465
,4,2,217485
,3,36262,217480
,3,36260,217430
,3,36244,234750
,4,1,217465
,4,2,217485
,3,36259,430
,3,36261,350
,3,36377,217475
,4,2,217495
,3,36262,217490
,3,36260,217430
,3,36244,234750
,4,1,217475
,4,2,217495
,3,36259,430
,3,36261,350
,3,36377,217485
,4,2,206105
,3,36262,217500
,3,36260,217430
,3,36244,234750
,4,1,217485
,4,2,206105
,3,36259,430
,3,36261,350
,3,36260,217510
,3,36244,234750
,4,3,16560
,4,5,12775
,4,3,22780
,4,6,213650
,4,9,212890
,4,12,212390
,4,15,211410
,4,18,212980
,4,1,455
,4,2,217525
,3,36259,430
,3,36261,350
,3,36377,217535
,4,2,217540
,3,36262,217530
,3,36260,217515
,3,36244,234750
,4,1,217535
,4,2,217540
,3,36259,430
,3,36261,350
,3,36377,455
,4,2,217525
,3,36262,217520
,3,36260,217515
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,217525
,4,2,217550
,3,36262,217545
,3,36260,217515
,3,36244,234750
,4,1,217525
,4,2,217550
,3,36259,430
,3,36261,350
,3,36377,217540
,4,2,217560
,3,36262,217555
,3,36260,217515
,3,36244,234750
,4,1,217540
,4,2,217560
,3,36259,430
,3,36261,350
,3,36377,217550
,4,2,206040
,3,36262,217565
,3,36260,217515
,3,36244,234750
,4,1,217550
,4,2,206040
,3,36259,430
,3,36261,350
,3,36260,217575
,3,36244,234750
,4,3,16560
,4,5,12855
,3,36259,430
,3,36261,350
,3,36260,217585
,3,36244,234750
,4,3,16560
,4,5,12890
,3,36259,430
,3,36261,350
,3,36260,217595
,3,36244,234750
,4,3,16560
,4,5,12925
,3,36259,430
,3,36261,350
,3,36260,217605
,3,36244,234750
,4,3,16560
,4,5,12960
,3,36259,430
,3,36261,350
,3,36260,217615
,3,36244,234750
,4,3,16560
,4,5,12995
,3,36259,430
,3,36261,350
,3,36260,217625
,3,36244,234750
,4,3,16560
,4,5,13030
,3,36259,430
,3,36261,350
,3,36260,217635
,3,36244,234750
,4,3,16560
,4,5,13065
,3,36259,430
,3,36261,350
,3,36260,217645
,3,36244,234750
,4,3,16560
,4,5,13100
,3,36259,430
,3,36261,350
,3,36260,217655
,3,36244,234750
,4,3,16560
,4,5,13135
,3,36259,430
,3,36261,350
,3,36260,217665
,3,36244,234750
,4,3,16560
,4,5,13170
,3,36259,430
,3,36261,350
,3,36260,217675
,3,36244,234750
,4,3,16560
,4,5,13205
,3,36259,430
,3,36261,350
,3,36260,217685
,3,36244,234750
,4,3,16560
,4,5,13240
,3,36259,430
,3,36261,350
,3,36260,217695
,3,36244,234750
,4,3,16560
,4,5,13275
,3,36259,430
,3,36261,350
,3,36260,217705
,3,36244,234750
,4,3,16560
,4,5,13310
,3,36259,430
,3,36261,350
,3,36260,217715
,3,36244,234750
,4,3,16560
,4,5,13345
,3,36259,430
,3,36261,350
,3,36260,217725
,3,36244,234750
,4,3,16560
,4,5,13380
,3,36259,430
,3,36261,350
,3,36260,217735
,3,36244,234750
,4,3,16560
,4,5,13415
,3,36259,430
,3,36261,350
,3,36260,217745
,3,36244,234750
,4,3,16560
,4,5,13450
,3,36259,430
,3,36261,350
,3,36260,217755
,3,36244,234750
,4,3,16560
,4,5,13485
,3,36259,430
,3,36261,350
,3,36260,217765
,3,36244,234750
,4,3,16560
,4,5,13520
,3,36259,430
,3,36261,350
,3,36260,217775
,3,36244,234750
,4,3,16560
,4,5,13555
,3,36259,430
,3,36261,350
,3,36260,217785
,3,36244,234750
,4,3,16560
,4,5,13590
,3,36259,430
,3,36261,350
,3,36260,217795
,3,36244,234750
,4,3,16560
,4,5,13625
,3,36259,430
,3,36261,350
,3,36260,217805
,3,36244,234750
,4,3,16560
,4,5,13660
,3,36259,430
,3,36261,350
,3,36260,217815
,3,36244,234750
,4,3,16560
,4,5,13695
,3,36259,430
,3,36261,350
,3,36260,217825
,3,36244,234750
,4,3,16560
,4,5,695
,3,36259,430
,3,36261,350
,3,36260,217835
,3,36244,234750
,4,3,16560
,4,5,775
,3,36259,430
,3,36261,350
,3,36260,217845
,3,36244,234750
,4,3,16560
,4,5,790
,3,36259,430
,3,36261,350
,3,36260,217855
,3,36244,234750
,4,3,16560
,4,5,705
,3,36259,430
,3,36261,350
,3,36260,217865
,3,36244,234750
,4,3,16560
,4,5,830
,3,36259,430
,3,36261,350
,3,36260,217875
,3,36244,234750
,4,3,16560
,4,5,925
,3,36259,430
,3,36261,350
,3,36260,217885
,3,36244,234750
,4,3,16560
,4,5,835
,3,36259,430
,3,36261,350
,3,36260,217895
,3,36244,234750
,4,3,16560
,4,5,920
,3,36259,430
,3,36261,350
,3,36260,217905
,3,36244,234750
,4,3,16560
,4,5,710
,3,36259,430
,3,36261,350
,3,36260,217915
,3,36244,234750
,4,3,16560
,4,5,700
,3,36259,430
,3,36261,350
,3,36260,217925
,3,36244,234750
,4,3,16560
,4,5,765
,3,36259,430
,3,36261,350
,3,36260,217970
,3,36244,234750
,4,3,16560
,4,5,780
,3,36259,430
,3,36261,350
,3,36260,217980
,3,36244,234750
,4,3,16560
,4,5,690
,3,36259,430
,3,36261,350
,3,36260,217990
,3,36244,234750
,4,3,16560
,4,5,955
,4,2,208110
,4,3,208110
,3,36244,7530
,4,1,21260
,3,36244,4410
,3,36244,4410
,3,36264,218025
,3,36245,218030
,3,36244,575
,4,3,218035
,3,36244,225610
,3,36245,213340
,3,36246,218045
,3,36247,218050
,3,36248,320
,3,36263,218020
,3,36249,1450
,3,36250,340
,6,1,218055
,3,36251,230305
,3,36252,221025
,3,36244,230605
,4,1,208635
,4,2,208290
,4,3,221035
,4,4,208690
,4,5,234510
,4,6,208615
,4,7,234510
,4,8,208660
,4,9,197915
,4,10,230710
,4,11,10040
,4,12,230705
,4,13,213635
,4,14,221040
,4,15,208690
,4,16,208590
,4,17,208660
,4,18,221005
,4,19,208545
,4,20,16550
,4,21,230780
,4,22,320
,4,23,230710
,4,24,211660
,4,25,5380
,4,26,209345
,4,27,16550
,4,28,234515
,4,29,320
,4,30,230710
,4,31,212910
,4,32,5380
,4,33,209345
,4,35,208800
,4,36,16550
,4,37,234515
,4,38,320
,4,39,230710
,4,40,212670
,4,41,5380
,4,42,209345
,4,43,320
,4,44,230710
,4,45,195280
,4,46,230710
,4,47,5010
,4,48,209335
,4,49,221010
,4,50,208925
,4,51,6870
,4,52,209315
,3,36244,4430
,4,5,21525
,4,6,21530
,4,7,29540
,3,36259,221660
,3,36261,218255
,4,2,224365
,3,36262,224360
,3,36244,234750
,3,36245,655
,3,36246,218065
,3,36247,218070
,3,36248,320
,3,36263,218020
,3,36249,335
,3,36250,218075
,6,1,85
,3,36251,230330
,3,36252,221080
,3,36244,230605
,4,1,208620
,4,2,208635
,4,3,211660
,4,4,230710
,4,5,197350
,4,6,230710
,4,7,12595
,4,8,209315
,4,9,212310
,4,10,209010
,4,11,197915
,4,12,209335
,4,13,234535
,4,14,208615
,4,15,234535
,3,36244,4430
,4,5,4665
,3,36245,655
,3,36246,218085
,3,36247,218090
,3,36248,320
,3,36263,218020
,3,36249,335
,3,36250,218095
,6,1,85
,3,36251,230340
,3,36252,221085
,3,36244,230605
,4,1,208620
,4,2,208635
,4,3,212910
,4,4,230705
,4,5,197350
,4,6,230705
,4,7,12595
,4,8,209305
,4,9,212310
,4,10,208370
,4,11,197915
,4,12,209135
,4,13,234540
,4,14,208615
,4,15,234540
,3,36244,4430
,4,5,4665
,3,36245,655
,3,36246,218105
,3,36247,218110
,3,36248,320
,3,36263,218020
,3,36249,335
,3,36250,218115
,6,1,85
,3,36251,230345
,3,36252,221090
,3,36244,230605
,4,1,208635
,4,2,211660
,4,3,230705
,4,4,17645
,4,5,209135
,4,6,212310
,4,7,208370
,4,8,197915
,4,9,209135
,4,10,234545
,4,11,208615
,4,12,234545
,3,36244,4430
,4,5,212345
,3,36245,655
,3,36246,218125
,3,36247,218130
,3,36248,320
,3,36263,218020
,3,36249,335
,3,36250,218135
,6,1,85
,3,36251,230350
,3,36252,221095
,3,36244,230605
,4,1,208635
,4,2,212670
,4,3,230705
,4,4,1235
,4,5,230705
,4,6,10895
,4,7,209265
,4,8,230835
,4,9,234550
,4,10,208615
,4,11,234550
,3,36244,4430
,4,5,212620
,3,36245,655
,3,36246,218145
,3,36247,218150
,3,36248,320
,3,36263,218020
,3,36249,335
,3,36250,218155
,6,1,85
,3,36251,230355
,3,36252,221100
,3,36244,230605
,4,1,208635
,4,2,212670
,4,3,230705
,4,4,230750
,4,5,208310
,4,6,10020
,4,7,230705
,4,8,211985
,4,9,208370
,4,10,221110
,4,11,208690
,4,12,208590
,4,13,1235
,4,14,230705
,4,15,10895
,4,16,209265
,4,17,208920
,4,18,212210
,4,19,8950
,4,20,209060
,4,21,234555
,4,22,208615
,4,23,234555
,3,36244,4430
,4,5,212620
,4,6,10490
,4,7,212850
,3,36372,213340
,3,36373,221700
,3,36245,655
,3,36246,218165
,3,36247,218170
,3,36248,320
,3,36263,218020
,3,36249,335
,3,36250,218175
,6,1,85
,3,36251,230360
,3,36252,221115
,3,36244,230605
,4,1,208620
,4,2,208635
,4,3,10020
,4,4,230705
,4,5,221125
,4,6,208690
,4,7,213385
,4,8,195255
,4,9,230780
,4,10,197350
,4,11,230705
,4,12,12595
,4,13,209305
,4,14,28595
,4,15,230780
,4,16,10020
,4,17,230705
,4,18,213585
,4,19,230705
,4,20,9795
,4,21,209305
,4,22,213040
,4,23,230705
,4,24,20135
,4,25,209135
,4,26,234560
,4,27,208615
,4,28,234560
,3,36244,4430
,4,5,4665
,4,6,23150
,3,36372,213340
,3,36373,221705
,3,36245,655
,3,36246,218185
,3,36247,218190
,3,36248,320
,3,36263,218020
,3,36249,335
,3,36250,218195
,6,1,85
,3,36251,230365
,3,36252,221130
,3,36244,230605
,4,1,208555
,4,2,208945
,4,3,208620
,4,4,208635
,4,5,208310
,4,6,1050
,4,7,230705
,4,8,195280
,4,9,230705
,4,10,7440
,4,11,230705
,4,12,12580
,4,13,209305
,4,14,15695
,4,15,221140
,4,16,208775
,4,18,197350
,4,19,230705
,4,20,12595
,4,21,209305
,4,22,19260
,4,23,209305
,4,24,234565
,4,25,208615
,4,26,234565
,3,36244,4430
,4,5,213265
,4,6,4665
,4,7,212580
,4,8,213265
,3,36372,213340
,3,36373,221710
,3,36244,4410
,4,3,218205
,4,1,218210
,4,3,218215
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,16910
,4,11,19455
,4,12,213340
,3,36245,655
,3,36246,218230
,3,36247,218220
,3,36248,320
,3,36263,218020
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229690
,3,36252,218200
,3,36244,230605
,4,1,208420
,4,2,208945
,4,3,218040
,4,5,208590
,4,6,208705
,4,7,208635
,4,8,19455
,4,9,218210
,4,10,208775
,4,11,208870
,4,12,195280
,4,13,230710
,4,14,218060
,4,16,208590
,4,17,8950
,4,18,230780
,4,19,195280
,4,20,230710
,4,21,195280
,4,22,230710
,4,23,8950
,4,24,230710
,4,25,212160
,4,26,230780
,4,27,195280
,4,28,230710
,4,29,218080
,4,31,208590
,4,32,212150
,4,33,230780
,4,34,195280
,4,35,230710
,4,36,195280
,4,37,230710
,4,38,212150
,4,39,230710
,4,40,20135
,4,41,230780
,4,42,195280
,4,43,230710
,4,44,218100
,4,46,208590
,4,47,28620
,4,48,230780
,4,49,195280
,4,50,230710
,4,51,218120
,4,53,208590
,4,54,10490
,4,55,230780
,4,56,195280
,4,57,230710
,4,58,218140
,4,60,208590
,4,61,213525
,4,62,230780
,4,63,195280
,4,64,230710
,4,65,218160
,4,67,208590
,4,68,211880
,4,69,230780
,4,70,195280
,4,71,230710
,4,72,218180
,4,74,208590
,4,75,15695
,4,76,230780
,4,77,12615
,4,78,230710
,4,79,21525
,4,80,230710
,4,81,12615
,4,82,230710
,4,83,21530
,4,84,230710
,4,85,218215
,4,86,208690
,4,87,16905
,4,88,232090
,4,89,16905
,4,90,230710
,4,91,213340
,4,92,230780
,4,93,233935
,4,94,208615
,4,95,233935
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36251,229695
,3,36252,218235
,3,36244,230605
,4,1,208635
,4,2,218225
,4,4,208590
,4,5,233940
,4,6,208615
,4,7,233940
,0,856,16510
,0,972,20250
,0,35813,218255
,2,35551,425
,3,36254,218060
,3,36255,218260
,6,64,85
,3,36244,12670
,4,1,218065
,0,856,16510
,0,972,20250
,0,35813,218255
,2,35551,425
,2,34299,221660
,3,36253,221665
,3,36254,218040
,3,36255,218260
,6,64,85
,3,36244,12670
,4,1,218045
,4,2,218055
,3,36256,221725
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,16510
,4,3,20250
,4,4,218255
,0,856,16510
,0,972,20250
,0,35813,218255
,2,35551,425
,3,36254,218080
,3,36255,218260
,6,64,85
,3,36244,12670
,4,1,218085
,0,856,16510
,0,972,20250
,0,35813,218255
,2,35551,425
,3,36254,218100
,3,36255,218260
,6,64,85
,3,36244,12670
,4,1,218105
,0,856,16510
,0,972,20250
,0,35813,218255
,2,35551,425
,3,36254,218120
,3,36255,218260
,6,64,85
,3,36244,12670
,4,1,218125
,0,856,16510
,0,972,20250
,0,35813,218255
,2,35551,425
,3,36254,218140
,3,36255,218260
,6,64,85
,3,36244,12670
,4,1,218145
,0,856,16510
,0,972,20250
,0,35813,218255
,2,35551,425
,3,36254,218160
,3,36255,218260
,6,64,85
,3,36244,12670
,4,1,218165
,0,856,16510
,0,972,20250
,0,35813,218255
,2,35551,425
,3,36254,218180
,3,36255,218260
,6,64,85
,3,36244,12670
,4,1,218185
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,218300
,6,1,85
,3,36372,221825
,3,36373,221830
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,218315
,4,1,218320
,4,1,21735
,4,3,27205
,4,5,20525
,3,36244,4410
,4,3,218335
,4,1,218340
,4,3,218345
,4,5,218350
,4,7,218355
,3,36244,12610
,4,4,218365
,4,5,218370
,4,6,218375
,4,10,218380
,4,11,211800
,3,36244,12840
,4,1,218385
,1,1,218390
,2,35551,70
,3,36314,221835
,3,36244,195515
,3,36244,12720
,4,2,218420
,3,36244,12720
,4,3,218360
,3,36244,225610
,3,36244,12695
,4,1,218395
,4,2,218400
,4,4,21735
,3,36244,225610
,3,36244,225610
,3,36244,12610
,4,4,218410
,3,36244,12840
,4,1,218415
,3,36244,225610
,1,1,30145
,1,2,218405
,1,4,30195
,1,5,218425
,1,7,213250
,1,8,218440
,1,10,211665
,1,11,218455
,1,13,212875
,1,14,218470
,1,16,213750
,1,17,218485
,1,19,211560
,1,20,218500
,1,22,213770
,1,23,218515
,1,25,212045
,1,26,218530
,1,28,213790
,1,29,218545
,1,31,85
,2,35551,70
,3,36314,221840
,3,36244,195515
,3,36244,12610
,4,4,218430
,3,36244,12840
,4,1,218435
,3,36244,225610
,3,36244,12610
,4,4,218445
,3,36244,12840
,4,1,218450
,3,36244,225610
,3,36244,12610
,4,4,218460
,3,36244,12840
,4,1,218465
,3,36244,225610
,3,36244,12610
,4,4,218475
,3,36244,12840
,4,1,218480
,3,36244,225610
,3,36244,12610
,4,4,218490
,3,36244,12840
,4,1,218495
,3,36244,225610
,3,36244,12610
,4,4,218505
,3,36244,12840
,4,1,218510
,3,36244,225610
,3,36244,12610
,4,4,218520
,3,36244,12840
,4,1,218525
,3,36244,225610
,3,36244,12610
,4,4,218535
,3,36244,12840
,4,1,218540
,3,36244,225610
,3,36244,12610
,4,4,218550
,3,36244,12840
,4,1,218555
,3,36244,225610
,3,36244,12610
,4,4,218565
,3,36244,12840
,4,1,218570
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,218560
,3,36250,340
,6,1,85
,2,828,203935
,2,35551,430
,3,36244,221845
,3,36259,218580
,3,36261,203935
,3,36244,234750
,3,36244,12610
,4,4,218595
,3,36244,12840
,4,1,218600
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,218590
,3,36250,340
,6,1,85
,2,828,203940
,2,35551,430
,3,36244,221895
,3,36259,218610
,3,36261,203940
,3,36244,234750
,3,36245,211800
,3,36246,12650
,3,36248,211800
,3,36249,12655
,3,36376,218360
,3,36250,340
,6,1,85
,2,1458,203885
,2,1460,203890
,2,34724,203895
,2,34725,203900
,2,34726,203905
,2,34727,203910
,2,34728,203915
,2,34729,203920
,2,34730,203925
,2,34731,203930
,2,828,203880
,2,35551,430
,3,36315,222015
,3,36244,222020
,3,36259,218625
,3,36261,203880
,4,2,223280
,3,36262,223275
,3,36260,222025
,3,36244,234750
,3,36245,30145
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,218405
,3,36250,340
,6,1,85
,2,828,203885
,2,35551,430
,3,36244,221915
,3,36259,218640
,3,36261,203885
,3,36244,234750
,3,36245,30195
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,218425
,3,36250,340
,6,1,85
,2,828,203890
,2,35551,430
,3,36244,221925
,3,36259,218655
,3,36261,203890
,3,36244,234750
,3,36245,213250
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,218440
,3,36250,340
,6,1,85
,2,828,203895
,2,35551,430
,3,36244,221935
,3,36259,218670
,3,36261,203895
,3,36244,234750
,3,36245,211665
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,218455
,3,36250,340
,6,1,85
,2,828,203900
,2,35551,430
,3,36244,221945
,3,36259,218685
,3,36261,203900
,3,36244,234750
,3,36245,212875
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,218470
,3,36250,340
,6,1,85
,2,828,203905
,2,35551,430
,3,36244,221955
,3,36259,218700
,3,36261,203905
,3,36244,234750
,3,36245,213750
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,218485
,3,36250,340
,6,1,85
,2,828,203910
,2,35551,430
,3,36244,221965
,3,36259,218715
,3,36261,203910
,3,36244,234750
,3,36245,211560
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,218500
,3,36250,340
,6,1,85
,2,828,203915
,2,35551,430
,3,36244,221975
,3,36259,218730
,3,36261,203915
,3,36244,234750
,3,36245,213770
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,218515
,3,36250,340
,6,1,85
,2,828,203920
,2,35551,430
,3,36244,221985
,3,36259,218745
,3,36261,203920
,3,36244,234750
,3,36245,212045
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,218530
,3,36250,340
,6,1,85
,2,828,203925
,2,35551,430
,3,36244,221995
,3,36259,218760
,3,36261,203925
,3,36244,234750
,3,36245,213790
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,218545
,3,36250,340
,6,1,85
,2,828,203930
,2,35551,430
,3,36244,222005
,3,36259,218775
,3,36261,203930
,3,36244,234750
,3,36264,218790
,3,36245,218795
,3,36244,575
,4,3,218800
,3,36244,225610
,3,36245,23695
,3,36246,4220
,3,36248,320
,3,36263,218785
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,23705
,3,36246,218815
,3,36247,218820
,3,36248,320
,3,36263,218785
,3,36249,1450
,3,36250,340
,6,1,218825
,3,36251,229760
,3,36252,220485
,3,36244,230605
,4,1,208635
,4,2,208290
,4,3,220495
,4,4,208690
,4,5,234020
,4,6,208615
,4,7,234020
,4,8,212585
,4,9,234025
,4,10,220480
,4,11,208545
,4,13,220500
,4,14,208690
,4,15,212225
,4,16,234030
,4,17,12580
,4,18,234035
,4,19,212605
,4,20,234040
,4,21,212045
,4,22,234045
,4,23,208660
,4,24,231515
,4,25,213305
,4,26,234050
,4,27,231515
,4,28,212330
,4,29,234055
,3,36244,4430
,4,5,21735
,4,6,211780
,3,36259,223220
,3,36261,220425
,4,2,223295
,3,36262,223290
,3,36244,234750
,3,36245,15230
,3,36246,4220
,3,36248,320
,3,36263,218785
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218785
,3,36249,335
,3,36250,218840
,6,1,85
,3,36372,16905
,3,36373,222065
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218785
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218785
,3,36249,335
,3,36250,218855
,6,1,85
,3,36372,23695
,3,36373,222070
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218785
,3,36249,335
,3,36250,218865
,6,1,85
,3,36372,23705
,3,36373,222075
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218785
,3,36249,335
,3,36250,218875
,6,1,85
,3,36372,23705
,3,36373,222080
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218785
,3,36249,335
,3,36250,218885
,6,1,85
,3,36372,23705
,3,36373,222085
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218785
,3,36249,335
,3,36250,218895
,6,1,85
,3,36372,23705
,3,36373,222090
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218785
,3,36249,335
,3,36250,218905
,6,1,85
,3,36372,23705
,3,36373,222095
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218785
,3,36249,335
,3,36250,218915
,6,1,85
,3,36372,23705
,3,36373,222100
,3,36244,4410
,4,3,218925
,4,1,218930
,4,3,218935
,4,5,218940
,4,7,218945
,4,9,218950
,4,11,218955
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,15695
,4,11,197385
,4,12,16910
,4,13,207740
,4,14,211800
,4,15,212600
,4,16,19455
,4,17,23695
,4,18,23705
,4,19,15230
,3,36245,655
,3,36246,218970
,3,36247,218960
,3,36248,320
,3,36263,218785
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229715
,3,36252,218920
,3,36244,230605
,4,1,208840
,4,2,208945
,4,3,218805
,4,5,208590
,4,6,208705
,4,7,218810
,4,9,208590
,4,10,208705
,4,11,218830
,4,12,208925
,4,13,208705
,4,14,208635
,4,15,15695
,4,16,218930
,4,17,208775
,4,18,19455
,4,19,218935
,4,20,208775
,4,21,197385
,4,22,230710
,4,23,207740
,4,24,218940
,4,25,208775
,4,26,208870
,4,27,12615
,4,28,230710
,4,29,212615
,4,30,24795
,4,31,209335
,4,32,211800
,4,33,230710
,4,34,208870
,4,35,12615
,4,36,230710
,4,37,212615
,4,38,24795
,4,39,209335
,4,40,212600
,4,41,230710
,4,42,208870
,4,43,19455
,4,44,218945
,4,45,208775
,4,46,208870
,4,47,218835
,4,49,208590
,4,50,211420
,4,51,230780
,4,52,218845
,4,53,208925
,4,54,212825
,4,55,197355
,4,56,209315
,4,57,213790
,4,58,230780
,4,59,212585
,4,60,230710
,4,61,218950
,4,62,208650
,4,63,23695
,4,64,230780
,4,65,195280
,4,66,230710
,4,67,218850
,4,69,208590
,4,70,213790
,4,71,230780
,4,72,212585
,4,73,230710
,4,74,218955
,4,75,208650
,4,76,23705
,4,77,230780
,4,78,195280
,4,79,230710
,4,81,212600
,4,82,230780
,4,83,195280
,4,84,230710
,4,85,218860
,4,87,208590
,4,88,211795
,4,89,230780
,4,90,195280
,4,91,230710
,4,92,218870
,4,94,208590
,4,95,212905
,4,96,230780
,4,97,195280
,4,98,230710
,4,99,218880
,4,101,208590
,4,102,212060
,4,103,230780
,4,104,195280
,4,105,230710
,4,106,218890
,4,108,208590
,4,109,212645
,4,110,230780
,4,111,195280
,4,112,230710
,4,113,218900
,4,115,208590
,4,116,213410
,4,117,230780
,4,118,195280
,4,119,230710
,4,120,218910
,4,122,208590
,4,123,212045
,4,124,230780
,4,125,234000
,4,126,208615
,4,127,234000
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36251,229720
,3,36252,218975
,3,36244,230605
,4,1,208635
,4,2,218965
,4,4,208590
,4,5,234005
,4,6,208615
,4,7,234005
,3,36264,218995
,3,36245,219000
,3,36244,575
,4,3,219005
,3,36244,225610
,4,1,17655
,4,1,17655
,3,36245,213020
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,211915
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,211765
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,212960
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,213310
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,213560
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,213480
,3,36246,219055
,3,36247,219060
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229875
,3,36252,220705
,3,36244,230605
,4,1,208635
,4,3,213620
,4,4,234435
,4,6,213445
,4,7,234440
,4,8,28870
,4,9,234445
,4,10,212920
,4,11,234450
,4,12,212605
,4,13,234455
,4,14,208660
,4,15,212605
,4,16,234455
,4,17,212010
,4,18,234460
,4,19,212605
,4,20,234455
,4,21,212940
,4,22,230780
,4,23,234465
,4,24,208615
,4,25,234465
,3,36244,4430
,4,5,29295
,3,36245,212585
,3,36246,219070
,3,36247,219075
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229770
,3,36252,220510
,3,36244,230605
,4,1,208635
,4,2,208290
,4,3,220520
,4,4,208690
,4,5,234060
,4,6,208615
,4,7,234060
,4,9,213555
,4,10,234065
,4,12,212605
,4,13,234070
,4,14,208590
,4,15,19785
,4,16,208325
,4,17,90
,4,18,208325
,4,19,220505
,4,20,208315
,4,21,21735
,4,22,230780
,4,24,208800
,4,25,27165
,4,26,234075
,4,27,12580
,4,28,234035
,4,29,212225
,4,30,234080
,4,31,208660
,4,32,212225
,4,33,234080
,4,34,212605
,4,35,234085
,4,36,21735
,4,37,230705
,4,38,21735
,4,39,230705
,4,40,220525
,4,41,208775
,4,42,212605
,4,43,230780
,4,44,212605
,4,45,230705
,4,46,21735
,4,47,230705
,4,48,200005
,4,49,209135
,4,50,27205
,4,51,230705
,4,53,208560
,4,54,27205
,4,55,230780
,4,56,20525
,4,57,230705
,4,59,208560
,4,60,20525
,4,61,230780
,4,63,20525
,4,64,230780
,4,65,27205
,4,66,230780
,4,68,27185
,4,69,234090
,4,70,211840
,4,71,195980
,4,72,234095
,4,73,213220
,4,74,195980
,4,75,234095
,4,76,220530
,4,77,208775
,4,79,211790
,4,80,234100
,4,81,655
,4,82,213275
,4,83,234105
,4,84,211715
,4,85,234110
,4,87,213945
,4,88,230780
,4,89,208660
,4,90,211505
,4,91,234115
,4,92,208300
,4,94,211505
,4,95,234120
,4,96,212605
,4,97,234040
,4,98,208660
,4,99,27205
,4,100,234125
,4,102,208740
,4,103,200010
,4,104,209135
,3,36244,4430
,4,5,28845
,3,36245,213240
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,212215
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,212815
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,212055
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,213350
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,212940
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,213190
,3,36246,219115
,3,36247,219120
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230495
,3,36252,221430
,3,36244,230605
,4,1,208635
,4,2,28860
,4,3,208325
,4,4,211945
,4,5,208325
,4,6,213705
,4,7,208560
,4,8,213100
,4,9,208560
,4,10,211635
,4,11,208560
,4,12,213820
,4,13,208560
,4,14,213370
,4,15,208560
,4,16,212760
,4,17,208560
,4,18,212875
,4,19,209135
,4,20,234675
,4,21,208615
,4,22,234675
,4,23,211560
,4,24,209335
,4,25,213750
,4,26,209135
,4,27,213770
,4,28,209135
,4,29,17440
,4,30,230705
,4,31,221440
,4,32,208690
,4,33,212875
,4,34,209135
,3,36244,4430
,4,5,212225
,4,6,211900
,4,7,28785
,3,36245,26835
,3,36246,219130
,3,36247,219135
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230570
,3,36252,221620
,3,36244,230605
,4,1,208635
,4,2,212010
,4,3,230710
,4,4,211715
,4,5,230710
,4,6,12615
,4,7,230710
,4,8,21530
,4,9,230710
,4,10,208850
,4,11,12615
,4,12,230710
,4,13,21525
,4,14,230710
,4,15,234740
,4,16,26835
,4,17,221630
,4,18,208530
,4,19,213620
,4,20,230710
,4,21,208720
,4,22,212005
,4,23,221635
,4,24,208775
,4,26,234745
,4,27,208615
,4,28,234745
,4,29,208430
,4,30,211435
,4,31,12615
,4,32,230705
,4,33,212360
,4,34,230705
,4,35,197915
,4,36,221640
,4,37,208650
,4,38,221645
,4,39,208650
,4,40,12615
,4,41,230705
,4,42,212360
,4,43,230705
,4,44,197915
,4,45,221650
,4,46,208650
,4,47,213545
,4,48,230705
,4,49,211495
,4,50,209305
,4,52,203400
,4,53,209335
,4,54,12615
,4,55,230710
,4,56,21530
,4,57,230710
,4,58,208850
,4,59,12615
,4,60,230710
,4,61,21525
,4,62,230710
,4,63,234740
,4,64,212090
,4,65,221655
,4,66,208775
,4,67,213545
,4,68,230710
,4,69,208300
,4,70,213545
,4,71,230705
,4,72,12580
,4,73,209135
,3,36244,4430
,4,5,213195
,4,6,212225
,4,7,212945
,4,8,29295
,4,9,211405
,3,36245,211415
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,212555
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,15230
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,211575
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,212050
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,213940
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,213015
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,22780
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,22780
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219190
,6,1,85
,3,36372,16905
,3,36373,222105
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219200
,6,1,85
,3,36372,222110
,3,36373,222115
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219210
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219220
,6,1,85
,3,36372,212585
,3,36373,222120
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219230
,6,1,85
,3,36372,212585
,3,36373,222125
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219240
,6,1,85
,3,36372,212585
,3,36373,222130
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219250
,6,1,85
,3,36372,212585
,3,36373,222135
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219260
,6,1,85
,3,36372,212585
,3,36373,222140
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219270
,6,1,85
,3,36372,212585
,3,36373,222145
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219280
,6,1,85
,3,36372,222150
,3,36373,222155
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219290
,6,1,85
,3,36372,222160
,3,36373,222165
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219300
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219310
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219320
,6,1,85
,3,36372,212585
,3,36373,222170
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219330
,6,1,85
,3,36372,212585
,3,36373,222175
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219340
,6,1,85
,3,36372,212585
,3,36373,222180
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219350
,6,1,85
,3,36372,212585
,3,36373,222185
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219360
,6,1,85
,3,36372,212585
,3,36373,222190
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219360
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219380
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219380
,6,1,85
,3,36245,655
,3,36246,219395
,3,36247,219400
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219380
,6,1,85
,3,36251,230415
,3,36252,221215
,3,36244,230605
,4,1,208420
,4,2,208945
,4,3,208945
,4,4,208945
,4,5,208620
,4,6,208635
,4,7,17440
,4,8,230705
,4,9,17625
,4,10,209135
,4,11,208310
,4,12,10040
,4,13,230705
,4,14,212270
,4,15,221225
,4,16,208690
,4,17,208590
,4,18,27165
,4,19,230710
,4,20,195280
,4,21,230710
,4,22,197915
,4,23,230710
,4,24,12595
,4,25,209315
,4,26,234590
,4,27,208615
,4,28,234590
,3,36244,4430
,4,5,200950
,4,6,28785
,4,7,213545
,4,8,4665
,4,9,213545
,4,10,28785
,4,11,200950
,3,36245,655
,3,36246,219410
,3,36247,219415
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219420
,6,1,85
,3,36251,230475
,3,36252,221340
,3,36244,230605
,4,1,208420
,4,2,208945
,4,3,208945
,4,4,208945
,4,5,208635
,4,6,213555
,4,7,230710
,4,8,208720
,4,9,211790
,4,10,230780
,4,11,213275
,4,12,230780
,4,13,211415
,4,14,221335
,4,15,208925
,4,16,195985
,4,17,209305
,4,19,234645
,4,20,208615
,4,21,234645
,4,23,211790
,4,24,234650
,4,25,655
,4,26,213275
,4,27,234655
,4,28,203400
,4,29,209335
,4,30,212605
,4,31,230710
,4,32,208660
,4,33,10020
,4,34,230705
,4,35,212230
,4,36,221350
,4,37,208690
,4,38,211495
,4,39,209305
,4,41,17440
,4,42,230710
,4,43,17625
,4,44,209335
,4,45,208720
,4,46,28860
,4,47,212605
,4,48,230710
,4,49,221355
,4,50,208530
,4,51,208660
,4,52,12615
,4,53,230705
,4,54,212360
,4,55,230705
,4,56,197915
,4,57,221360
,4,58,208650
,4,59,211495
,4,60,209305
,4,61,213095
,4,62,230780
,4,63,212920
,4,64,230710
,4,65,212990
,4,66,230710
,4,67,208680
,4,68,212920
,4,69,234660
,4,70,212605
,4,71,230710
,4,72,212080
,4,73,230710
,4,74,208535
,4,75,221365
,4,76,208825
,4,77,213545
,4,78,230780
,3,36244,4430
,4,5,211900
,4,6,28785
,4,7,213545
,4,8,212975
,4,9,211425
,4,10,213545
,4,11,28785
,4,12,211900
,3,36372,212585
,3,36373,222195
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,29295
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219435
,6,1,85
,3,36372,212585
,3,36373,222200
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219445
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219455
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219465
,6,1,85
,3,36372,16905
,3,36373,222205
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219475
,6,1,85
,3,36372,211575
,3,36373,222210
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219485
,6,1,85
,3,36372,211575
,3,36373,222215
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219495
,6,1,85
,3,36372,211575
,3,36373,222220
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219505
,6,1,85
,3,36372,211575
,3,36373,222225
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219515
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219525
,6,1,85
,3,36372,211575
,3,36373,222230
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219540
,6,1,85
,3,36372,211575
,3,36373,222235
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219550
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219560
,6,1,85
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219570
,6,1,85
,3,36372,16905
,3,36373,222240
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219580
,6,1,85
,3,36372,16905
,3,36373,222245
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219590
,6,1,85
,3,36372,16905
,3,36373,222250
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,219600
,6,1,85
,3,36372,16905
,3,36373,222255
,3,36244,4410
,4,3,219610
,4,1,219615
,4,3,219620
,4,5,219625
,4,7,219630
,4,9,219635
,3,36244,4430
,4,5,16905
,4,6,16910
,4,7,16915
,4,8,16920
,4,9,16925
,4,10,211960
,4,11,16910
,4,12,16905
,4,13,206160
,4,14,206165
,4,15,206170
,4,16,19455
,4,17,15695
,4,18,16630
,4,19,213020
,4,20,211915
,4,21,211765
,4,22,212960
,4,23,22780
,4,24,196505
,4,25,213310
,4,26,213560
,4,27,213480
,4,28,212585
,4,29,213240
,4,30,212215
,4,31,212815
,4,32,212055
,4,33,213350
,4,34,212940
,4,35,213190
,4,36,26835
,4,37,211415
,4,38,212555
,4,39,15230
,4,40,211575
,4,41,212050
,4,42,212560
,4,43,213940
,4,44,213015
,4,45,212245
,3,36245,655
,3,36246,219650
,3,36247,219640
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,229745
,3,36252,219605
,3,36244,230605
,4,1,208725
,4,2,208945
,4,3,208945
,4,4,219020
,4,5,208925
,4,6,208705
,4,7,219025
,4,8,208925
,4,9,208705
,4,10,219030
,4,11,208925
,4,12,208705
,4,13,219035
,4,14,208925
,4,15,208705
,4,16,219040
,4,17,208925
,4,18,208705
,4,19,219045
,4,21,208590
,4,22,208705
,4,23,219050
,4,24,208925
,4,25,208705
,4,26,219065
,4,28,208590
,4,29,208705
,4,30,219080
,4,31,208925
,4,32,208705
,4,33,219085
,4,34,208925
,4,35,208705
,4,36,219090
,4,37,208925
,4,38,208705
,4,39,219095
,4,40,208925
,4,41,208705
,4,42,219100
,4,43,208925
,4,44,208705
,4,45,219105
,4,46,208925
,4,47,208705
,4,48,219110
,4,49,208925
,4,50,208705
,4,51,219125
,4,52,208925
,4,53,208705
,4,54,219140
,4,55,208925
,4,56,208705
,4,57,219145
,4,58,208925
,4,59,208705
,4,60,219150
,4,61,208925
,4,62,208705
,4,63,219155
,4,65,208590
,4,66,208705
,4,67,219160
,4,68,208925
,4,69,208705
,4,70,219165
,4,71,208925
,4,72,208705
,4,73,219170
,4,75,208590
,4,76,208705
,4,77,208635
,4,78,206160
,4,79,219615
,4,80,208775
,4,81,208870
,4,82,206165
,4,83,219620
,4,84,208775
,4,85,208870
,4,86,206170
,4,87,219625
,4,88,208775
,4,89,208870
,4,90,19455
,4,91,219630
,4,92,208775
,4,93,208870
,4,94,15695
,4,95,219635
,4,96,208775
,4,97,208870
,4,98,12615
,4,99,230710
,4,100,211825
,4,101,24795
,4,102,209335
,4,103,12615
,4,104,230710
,4,105,196500
,4,106,230710
,4,107,212450
,4,108,230710
,4,109,208300
,4,110,229730
,4,111,229735
,4,112,208590
,4,113,208590
,4,114,12615
,4,115,230705
,4,116,196500
,4,117,230705
,4,118,212450
,4,119,230705
,4,120,12170
,4,121,209135
,4,122,208310
,4,123,12615
,4,124,230705
,4,125,196505
,4,126,230705
,4,127,208870
,4,128,219175
,4,129,208925
,4,130,208870
,4,131,219180
,4,132,208925
,4,133,208870
,4,134,219185
,4,136,208590
,4,137,211950
,4,138,230780
,4,139,219195
,4,141,208590
,4,142,211565
,4,143,230780
,4,144,211415
,4,145,230780
,4,146,212240
,4,147,230780
,4,148,27165
,4,149,230710
,4,150,197385
,4,151,209315
,4,152,212585
,4,153,230780
,4,154,24805
,4,155,230780
,4,156,195280
,4,157,230710
,4,158,219205
,4,160,208590
,4,161,200010
,4,162,230780
,4,163,195280
,4,164,230710
,4,165,219215
,4,167,208590
,4,168,213940
,4,169,230780
,4,170,195280
,4,171,230710
,4,172,219225
,4,174,208590
,4,175,203370
,4,176,230780
,4,177,195280
,4,178,230710
,4,179,219235
,4,181,208590
,4,182,203590
,4,183,230780
,4,184,195280
,4,185,230710
,4,186,219245
,4,188,208590
,4,189,213765
,4,190,230780
,4,191,195280
,4,192,230710
,4,193,219255
,4,195,208590
,4,196,212500
,4,197,230780
,4,198,195280
,4,199,230710
,4,200,219265
,4,202,208590
,4,203,212190
,4,204,230780
,4,205,320
,4,206,230710
,4,207,195280
,4,208,230710
,4,209,212385
,4,210,219010
,4,211,208315
,4,212,219275
,4,213,208925
,4,214,17655
,4,215,233430
,4,216,5380
,4,217,209345
,4,218,320
,4,219,230710
,4,220,195280
,4,221,230710
,4,222,213260
,4,223,219015
,4,224,208315
,4,225,219285
,4,226,208925
,4,227,17655
,4,228,233430
,4,229,5380
,4,230,209345
,4,231,195280
,4,232,230710
,4,233,219295
,4,235,208590
,4,236,200770
,4,237,230780
,4,238,195280
,4,239,230710
,4,240,219305
,4,242,208590
,4,243,29140
,4,244,230780
,4,245,195280
,4,246,230710
,4,247,219315
,4,249,208590
,4,250,202465
,4,251,230780
,4,252,195280
,4,253,230710
,4,254,219325
,4,256,208590
,4,257,211495
,4,258,230780
,4,259,195280
,4,260,230710
,4,261,219335
,4,263,208590
,4,264,202370
,4,265,230780
,4,266,195280
,4,267,230710
,4,268,219345
,4,270,208590
,4,271,213670
,4,272,230780
,4,273,195280
,4,274,230710
,4,275,213935
,4,276,219355
,4,277,208925
,4,278,4960
,4,279,209315
,4,280,195280
,4,281,230710
,4,282,212510
,4,283,219365
,4,284,208925
,4,285,4960
,4,286,209315
,4,287,195280
,4,288,230710
,4,289,219370
,4,291,208590
,4,292,213835
,4,293,230780
,4,294,195280
,4,295,230710
,4,296,213080
,4,297,219375
,4,298,208925
,4,299,4960
,4,300,209315
,4,301,195280
,4,302,230710
,4,303,212805
,4,304,219385
,4,305,208925
,4,306,4960
,4,307,209315
,4,308,195280
,4,309,230710
,4,310,219390
,4,312,208590
,4,313,197915
,4,314,230780
,4,315,195280
,4,316,230710
,4,317,219405
,4,319,208590
,4,320,200995
,4,321,230780
,4,322,195280
,4,323,230710
,4,324,212795
,4,325,219425
,4,326,208925
,4,327,4960
,4,328,209315
,4,329,195280
,4,330,230710
,4,331,219430
,4,333,208590
,4,334,211415
,4,335,230780
,4,336,195280
,4,337,230710
,4,338,219440
,4,340,208590
,4,341,30170
,4,342,230780
,4,343,195280
,4,344,230710
,4,345,219450
,4,347,208590
,4,348,30195
,4,349,230780
,4,350,16620
,4,351,230710
,4,352,197385
,4,353,209315
,4,354,211575
,4,355,230780
,4,356,219460
,4,358,208590
,4,359,211865
,4,360,230780
,4,361,208870
,4,362,195280
,4,363,230710
,4,364,219470
,4,366,208590
,4,367,211450
,4,368,230780
,4,369,195280
,4,370,230710
,4,371,219480
,4,373,208590
,4,374,213940
,4,375,230780
,4,376,195280
,4,377,230710
,4,378,219490
,4,380,208590
,4,381,212190
,4,382,230780
,4,383,195280
,4,384,230710
,4,385,219500
,4,387,208590
,4,388,213000
,4,389,230780
,4,390,195280
,4,391,230710
,4,392,219510
,4,394,208590
,4,395,30145
,4,396,230780
,4,397,195280
,4,398,230710
,4,399,219520
,4,401,208590
,4,402,211920
,4,403,230780
,4,404,195280
,4,405,230710
,4,406,219530
,4,408,208590
,4,409,211605
,4,410,197355
,4,411,209315
,4,412,213775
,4,413,230780
,4,414,195280
,4,415,230710
,4,416,219535
,4,418,208590
,4,419,211685
,4,420,230780
,4,421,195280
,4,422,230710
,4,423,219545
,4,425,208590
,4,426,30170
,4,427,230780
,4,428,195280
,4,429,230710
,4,430,219555
,4,432,208590
,4,433,30195
,4,434,230780
,4,435,213145
,4,436,230710
,4,437,213145
,4,438,230780
,4,439,219565
,4,441,208590
,4,442,211885
,4,443,230780
,4,444,219575
,4,446,208590
,4,447,213405
,4,448,230780
,4,449,12615
,4,450,230710
,4,451,196485
,4,452,230710
,4,453,212785
,4,454,208495
,4,455,219585
,4,457,208590
,4,458,213345
,4,459,230780
,4,460,219595
,4,462,208590
,4,463,213345
,4,464,230780
,4,465,234010
,4,466,208615
,4,467,234010
,3,36244,4410
,3,36244,4430
,4,5,4435
,3,36251,229750
,3,36252,219655
,3,36244,230605
,4,1,208635
,4,2,219645
,4,4,208590
,4,5,234015
,4,6,208615
,4,7,234015
,3,36244,12610
,4,4,219675
,3,36244,12840
,4,1,219680
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,219670
,3,36250,340
,6,1,85
,2,828,203945
,2,35551,430
,3,36244,222260
,3,36259,219690
,3,36261,203945
,3,36244,234750
,3,36244,12610
,4,4,219705
,3,36244,12840
,4,1,219710
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,219700
,3,36250,340
,6,1,85
,2,828,203950
,2,35551,430
,3,36244,222275
,3,36259,219720
,3,36261,203950
,3,36244,234750
,3,36244,12610
,4,4,219735
,3,36244,12840
,4,1,219740
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,219730
,3,36250,340
,6,1,85
,2,828,203955
,2,35551,430
,3,36244,222295
,3,36259,219750
,3,36261,203955
,3,36244,234750
,3,36244,12610
,4,4,219765
,3,36244,12840
,4,1,219770
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,219760
,3,36250,340
,6,1,85
,2,828,203960
,2,35551,430
,3,36244,222315
,3,36259,219780
,3,36261,203960
,3,36244,234750
,3,36244,12610
,4,4,219795
,3,36244,12840
,4,1,219800
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,219790
,3,36250,340
,6,1,85
,2,828,203965
,2,35551,430
,3,36244,222335
,3,36259,219810
,3,36261,203965
,3,36244,234750
,3,36244,12610
,4,4,219825
,3,36244,12840
,4,1,219830
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,219820
,3,36250,340
,6,1,85
,2,828,203970
,2,35551,430
,3,36244,222355
,3,36259,219840
,3,36261,203970
,3,36244,234750
,3,36244,12610
,4,4,219855
,3,36244,12840
,4,1,219860
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,219850
,3,36250,340
,6,1,85
,2,828,203975
,2,35551,430
,3,36244,222375
,3,36259,219870
,3,36261,203975
,3,36244,234750
,3,36244,12610
,4,4,219885
,3,36244,12840
,4,1,219890
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,219880
,3,36250,340
,6,1,85
,2,828,203980
,2,35551,430
,3,36244,222395
,3,36259,219900
,3,36261,203980
,3,36244,234750
,3,36244,12610
,4,4,219915
,3,36244,12840
,4,1,219920
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,219910
,3,36250,340
,6,1,85
,2,828,203985
,2,35551,430
,3,36244,222415
,3,36259,219930
,3,36261,203985
,3,36244,234750
,3,36244,12610
,4,4,219945
,3,36244,12840
,4,1,219950
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,219940
,3,36250,340
,6,1,85
,2,828,203990
,2,35551,430
,3,36244,222435
,3,36259,219960
,3,36261,203990
,3,36244,234750
,3,36244,12610
,4,4,219975
,3,36244,12840
,4,1,219980
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,219970
,3,36250,340
,6,1,85
,2,828,203995
,2,35551,430
,3,36244,222455
,3,36259,219990
,3,36261,203995
,3,36244,234750
,3,36244,12610
,4,4,220005
,3,36244,12840
,4,1,220010
,3,36244,225610
,3,36245,655
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,220000
,3,36250,340
,6,1,85
,2,828,204000
,2,35551,430
,3,36244,222475
,3,36259,220020
,3,36261,204000
,3,36244,234750
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219185
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,2,35543,220030
,2,35469,220170
,2,35440,220170
,2,35600,220070
,2,35668,220080
,2,1268,220080
,2,35471,220140
,2,35526,220150
,2,35776,204000
,2,35530,220400
,2,35826,220405
,2,35814,220410
,2,35551,430
,3,36244,223065
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219020
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219025
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219030
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219035
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219180
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219040
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36253,224640
,3,36254,219045
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219050
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,219055
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,34458,27470
,2,35551,425
,2,34299,223095
,3,36253,224560
,3,36254,219065
,3,36255,220165
,6,64,85
,3,36315,224565
,3,36244,201055
,4,1,219070
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219080
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219085
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219090
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219095
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219100
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219105
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219110
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,219115
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219125
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,219130
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219140
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219145
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219150
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,34458,26450
,2,35551,425
,2,34299,224645
,3,36253,224650
,3,36254,219155
,3,36255,220165
,6,64,85
,3,36315,224655
,3,36244,201055
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219160
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219460
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219165
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36253,224660
,3,36254,219170
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,222535
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,16510
,4,3,220035
,4,4,16975
,4,5,26455
,4,6,30500
,4,7,20250
,4,8,11735
,4,10,220040
,4,11,220045
,4,12,220050
,4,13,220055
,4,14,220060
,4,16,220065
,4,17,220070
,4,18,220075
,4,19,220080
,4,20,220085
,4,21,220090
,4,22,220095
,4,23,220100
,4,24,220105
,4,25,220110
,4,26,220115
,4,27,220120
,4,28,220125
,4,29,220130
,4,30,220135
,4,31,220140
,4,32,220145
,4,33,220150
,4,34,220155
,4,35,220160
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219195
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219205
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219215
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219225
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219235
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219245
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219255
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219265
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,3,36244,590
,4,1,220215
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219275
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,3,36244,590
,4,1,220225
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219285
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219295
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219305
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219315
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219325
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219335
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36253,220260
,3,36254,219345
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,3,36244,590
,4,1,220270
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219355
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,3,36244,590
,4,1,220280
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219365
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36253,220290
,3,36254,219370
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,3,36244,590
,4,1,220300
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219375
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,3,36244,590
,4,1,220310
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219385
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219390
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,219395
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219405
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,219410
,3,36244,590
,4,1,220330
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219425
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219430
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219440
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219450
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219470
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219480
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219490
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219500
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219510
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219520
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219535
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219545
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219555
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219565
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219575
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36254,219595
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,35029,220035
,0,34723,203880
,0,35671,203935
,0,972,20250
,0,1168,220420
,0,1061,220425
,0,797,220430
,2,35551,425
,3,36254,218835
,3,36255,220435
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,35029,220035
,0,34723,203880
,0,35671,203935
,0,972,20250
,0,1168,220420
,0,1061,220425
,0,797,220430
,2,34458,220080
,2,35551,425
,2,34299,224675
,3,36253,224680
,3,36254,218805
,3,36255,220435
,6,64,85
,3,36315,224685
,3,36244,201055
,4,1,4220
,0,856,16510
,0,35029,220035
,0,34723,203880
,0,35671,203935
,0,972,20250
,0,1168,220420
,0,1061,220425
,0,797,220430
,2,34458,220080
,2,35551,425
,2,34299,223220
,3,36253,223230
,3,36254,218810
,3,36255,220435
,6,64,85
,3,36315,223235
,3,36244,201055
,4,1,218815
,4,2,218825
,0,856,16510
,0,35029,220035
,0,34723,203880
,0,35671,203935
,0,972,20250
,0,1168,220420
,0,1061,220425
,0,797,220430
,2,35551,425
,3,36254,218830
,3,36255,220435
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,223070
,3,36257,560
,3,36258,685
,3,36244,195240
,4,2,16510
,4,3,220035
,4,4,203880
,4,5,203935
,4,6,20250
,4,7,220420
,4,8,220425
,4,9,220430
,0,856,16510
,0,35029,220035
,0,34723,203880
,0,35671,203935
,0,972,20250
,0,1168,220420
,0,1061,220425
,0,797,220430
,2,35551,425
,3,36254,218850
,3,36255,220435
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,35029,220035
,0,34723,203880
,0,35671,203935
,0,972,20250
,0,1168,220420
,0,1061,220425
,0,797,220430
,2,35551,425
,3,36254,218860
,3,36255,220435
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,35029,220035
,0,34723,203880
,0,35671,203935
,0,972,20250
,0,1168,220420
,0,1061,220425
,0,797,220430
,2,35551,425
,3,36254,218870
,3,36255,220435
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,35029,220035
,0,34723,203880
,0,35671,203935
,0,972,20250
,0,1168,220420
,0,1061,220425
,0,797,220430
,2,35551,425
,3,36254,218880
,3,36255,220435
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,35029,220035
,0,34723,203880
,0,35671,203935
,0,972,20250
,0,1168,220420
,0,1061,220425
,0,797,220430
,2,35551,425
,3,36254,218890
,3,36255,220435
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,35029,220035
,0,34723,203880
,0,35671,203935
,0,972,20250
,0,1168,220420
,0,1061,220425
,0,797,220430
,2,35551,425
,3,36254,218900
,3,36255,220435
,6,64,85
,3,36244,12670
,4,1,4220
,0,856,16510
,0,35029,220035
,0,34723,203880
,0,35671,203935
,0,972,20250
,0,1168,220420
,0,1061,220425
,0,797,220430
,2,35551,425
,3,36253,220475
,3,36254,218910
,3,36255,220435
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,560
,4,1,212225
,4,3,27205
,4,5,20525
,3,36244,4410
,4,3,220490
,4,1,220495
,4,3,220500
,4,1,21735
,3,36244,4410
,4,3,220515
,4,1,220520
,4,3,220525
,4,5,220530
,3,36244,4410
,4,3,220540
,4,1,220545
,3,36244,4410
,4,3,220555
,4,1,220560
,4,3,220565
,3,36244,4410
,4,3,220580
,4,1,220585
,4,3,220590
,3,36244,4410
,3,36244,4410
,4,3,220605
,4,1,220610
,4,3,220615
,3,36245,655
,3,36246,220630
,3,36247,220635
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,220640
,6,1,85
,3,36251,230505
,3,36252,221445
,3,36244,230605
,4,1,208635
,4,2,221455
,4,3,208650
,4,4,234680
,4,5,208615
,4,6,234680
,3,36244,4430
,4,5,28355
,3,36372,26655
,3,36373,223590
,3,36244,4410
,0,34822,21570
,2,35551,425
,3,36254,220625
,3,36255,220655
,6,64,85
,3,36244,12670
,4,1,220630
,3,36256,27040
,3,36257,27120
,3,36258,685
,3,36244,195240
,4,2,21570
,3,36245,275
,3,36246,4220
,3,36248,320
,3,36263,16760
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,3,36244,4410
,4,3,220675
,4,1,220680
,4,3,220685
,4,2,220690
,3,36244,4410
,3,36244,4410
,0,1058,85
,0,1059,21570
,0,1060,21575
,2,35551,425
,3,36254,218295
,3,36255,21580
,6,64,85
,3,36244,12670
,4,1,4220
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,220720
,6,1,85
,3,36372,195705
,3,36373,224060
,3,36244,4410
,4,3,220730
,4,1,220735
,4,3,220740
,4,5,220745
,3,36244,4410
,3,36244,4410
,3,36244,12610
,4,4,220765
,4,6,220770
,4,10,220775
,4,11,213210
,3,36244,12840
,4,1,220780
,3,36244,12720
,4,2,220800
,3,36244,12720
,4,3,220760
,3,36244,225610
,3,36244,12610
,4,4,220790
,3,36244,12840
,4,1,220795
,3,36244,225610
,1,1,30145
,1,2,220785
,1,4,30170
,1,5,220805
,1,7,30195
,1,8,220820
,1,10,23245
,1,11,220835
,1,13,25885
,1,14,220850
,2,35551,70
,3,36314,224065
,3,36244,195515
,3,36244,12610
,4,4,220810
,3,36244,12840
,4,1,220815
,3,36244,225610
,3,36244,12610
,4,4,220825
,3,36244,12840
,4,1,220830
,3,36244,225610
,3,36244,12610
,4,4,220840
,3,36244,12840
,4,1,220845
,3,36244,225610
,3,36244,12610
,4,4,220855
,3,36244,12840
,4,1,220860
,3,36244,225610
,3,36245,213210
,3,36246,12650
,3,36248,213210
,3,36249,12655
,3,36376,220760
,3,36250,340
,6,1,85
,2,1458,204010
,2,1459,204015
,2,1460,204020
,2,1138,204025
,2,1284,204030
,2,828,204005
,2,35551,430
,3,36315,224120
,3,36244,224125
,3,36259,220870
,3,36261,204005
,4,2,221685
,3,36262,224150
,3,36244,234750
,3,36245,30145
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,220785
,3,36250,340
,6,1,85
,2,828,204010
,2,35551,430
,3,36244,224070
,3,36259,220885
,3,36261,204010
,3,36244,234750
,3,36245,30170
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,220805
,3,36250,340
,6,1,85
,2,828,204015
,2,35551,430
,3,36244,224080
,3,36259,220900
,3,36261,204015
,3,36244,234750
,3,36245,30195
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,220820
,3,36250,340
,6,1,85
,2,828,204020
,2,35551,430
,3,36244,224090
,3,36259,220915
,3,36261,204020
,3,36244,234750
,3,36245,23245
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,220835
,3,36250,340
,6,1,85
,2,828,204025
,2,35551,430
,3,36244,224100
,3,36259,220930
,3,36261,204025
,3,36244,234750
,3,36245,25885
,3,36246,12650
,3,36248,320
,3,36249,12655
,3,36376,220850
,3,36250,340
,6,1,85
,2,828,204030
,2,35551,430
,3,36244,224110
,3,36259,220945
,3,36261,204030
,3,36244,234750
,0,35711,206125
,0,1404,207225
,2,35551,425
,3,36254,220715
,3,36255,220960
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,21690
,3,36257,21705
,3,36258,685
,3,36244,195240
,4,2,206125
,4,3,207225
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,15155
,3,36249,335
,3,36250,220970
,6,1,85
,3,36372,224165
,3,36373,224170
,3,36244,4410
,4,3,220980
,4,1,220985
,0,34822,21575
,2,35551,425
,3,36254,220625
,3,36255,220995
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,27040
,3,36257,27120
,3,36258,685
,3,36244,195240
,4,2,21575
,0,1058,85
,0,1059,21570
,0,1060,21575
,2,35551,425
,3,36254,220965
,3,36255,21580
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,20525
,4,3,20520
,4,5,20530
,3,36245,655
,3,36246,221015
,3,36247,221020
,3,36248,320
,3,36263,218020
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230315
,3,36252,221045
,3,36244,230605
,4,1,208635
,4,2,230750
,4,3,5660
,4,4,234520
,4,5,230835
,4,6,234525
,4,7,208615
,4,8,234525
,3,36244,4430
,4,5,11770
,3,36244,4410
,4,3,221030
,4,1,221035
,4,3,221040
,3,36244,4410
,3,36245,655
,3,36246,221055
,3,36247,221060
,3,36248,320
,3,36263,4755
,3,36249,335
,3,36250,4500
,6,1,85
,3,36251,230375
,3,36252,221145
,3,36244,230605
,4,1,208600
,4,2,208635
,4,3,208590
,4,4,234570
,4,5,208615
,4,6,234570
,4,7,208590
,4,8,208730
,4,9,230750
,4,10,230750
,4,11,21455
,4,12,230705
,4,13,208920
,4,14,208590
,4,15,21455
,4,16,230710
,4,17,208535
,4,18,231515
,4,19,231515
,4,20,208590
,4,21,21455
,4,22,230705
,4,23,208920
,4,24,3630
,4,25,230705
,4,26,208370
,4,27,221155
,4,28,208690
,4,29,208370
,4,30,230750
,4,31,230845
,4,32,208305
,4,33,208370
,4,34,234570
,4,35,208615
,4,36,234570
,4,37,208515
,4,38,208305
,4,39,208370
,4,40,209005
,4,41,230845
,4,42,208305
,4,43,208370
,4,44,234570
,4,45,208615
,4,46,234570
,4,47,208515
,4,48,230750
,4,49,230750
,4,50,208370
,4,51,208590
,3,36244,4430
,4,5,4665
,4,6,4515
,4,7,4520
,4,8,4525
,4,9,4530
,4,10,275
,4,11,280
,3,36244,4410
,4,3,221070
,4,1,221075
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,3,221105
,4,1,221110
,3,36244,4410
,4,3,221120
,4,1,221125
,3,36244,4410
,4,3,221135
,4,1,221140
,3,36244,4410
,4,3,221150
,4,1,221155
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,19495
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,221175
,4,1,221180
,4,3,221185
,3,36244,4410
,4,3,221195
,4,1,221200
,4,3,221205
,4,5,221210
,3,36244,4410
,4,3,221220
,4,1,221225
,3,36245,655
,3,36246,221235
,3,36247,221240
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,213545
,6,1,85
,3,36251,230550
,3,36252,221590
,3,36244,230605
,4,1,208635
,4,2,234725
,4,3,208615
,4,4,234725
,3,36244,4430
,3,36244,4410
,4,3,221250
,4,1,221255
,4,3,221260
,4,5,221265
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,221280
,4,1,221285
,3,36244,4410
,4,3,221295
,4,1,221300
,4,3,221305
,4,5,221310
,3,36244,4410
,4,3,221320
,4,1,221325
,3,36244,4410
,3,36245,655
,3,36246,4220
,3,36248,320
,3,36263,218990
,3,36249,335
,3,36250,340
,6,1,85
,3,36244,4410
,4,3,221345
,4,1,221350
,4,3,221355
,4,5,221360
,4,7,221365
,3,36244,4410
,4,3,221375
,4,1,221380
,4,3,221385
,4,5,221390
,4,7,221395
,4,9,221400
,4,11,221405
,4,13,221410
,4,15,221415
,4,17,221420
,4,19,221425
,3,36244,4410
,4,3,221435
,4,1,221440
,3,36244,4410
,4,3,221450
,4,1,221455
,3,36245,655
,3,36246,221465
,3,36247,221470
,3,36248,320
,3,36263,26615
,3,36249,335
,3,36250,340
,6,1,85
,3,36251,230535
,3,36252,221545
,3,36244,230605
,4,1,208635
,4,2,221555
,4,3,208485
,4,4,234710
,4,5,208615
,4,6,234710
,3,36244,4430
,3,36244,4410
,4,3,221480
,4,1,221485
,4,3,221490
,4,5,221495
,4,7,221500
,4,9,221505
,3,36244,4410
,3,36244,4410
,4,1,28350
,4,3,16930
,3,36244,4410
,4,3,221530
,4,1,221535
,4,3,221540
,3,36244,4410
,4,3,221550
,4,1,221555
,3,36244,4410
,4,3,221565
,4,1,221570
,4,3,221575
,4,5,221580
,3,36244,4410
,3,36244,4410
,3,36244,4410
,4,3,221605
,4,1,221610
,3,36244,4410
,3,36244,4410
,4,3,221625
,4,1,221630
,4,3,221635
,4,5,221640
,4,7,221645
,4,9,221650
,4,11,221655
,2,828,218255
,2,200,218250
,2,35584,218250
,2,35582,218265
,2,1018,218265
,2,1380,218270
,2,659,218275
,2,35849,218280
,2,35529,218285
,2,820,218290
,2,35551,430
,3,36315,224260
,3,36244,221820
,4,1,560
,4,2,224570
,4,3,224575
,2,35555,21570
,2,35737,220110
,2,35551,218625
,3,36315,221675
,3,36244,221680
,4,2,21570
,3,36259,218625
,3,36261,203880
,3,36377,223935
,3,36260,222025
,3,36244,234750
,3,36259,220870
,3,36261,204005
,3,36377,220875
,3,36260,224145
,3,36244,234750
,2,35555,21575
,2,35737,220110
,2,35551,218625
,3,36315,221695
,3,36244,221680
,4,2,21575
,4,2,221720
,4,3,16560
,4,5,218255
,4,6,8950
,4,8,218250
,4,9,212160
,4,11,218250
,4,12,212150
,4,14,218265
,4,15,20135
,4,17,218265
,4,18,28620
,4,20,218270
,4,21,10490
,4,23,218275
,4,24,213525
,4,26,218280
,4,27,211880
,4,29,218285
,4,30,15695
,4,32,218290
,4,1,224590
,2,35551,425
,3,36254,218225
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,218230
,4,2,221735
,3,36259,430
,3,36261,350
,3,36377,221745
,4,2,221750
,3,36262,221740
,3,36260,221715
,3,36244,234750
,4,1,221745
,4,2,221750
,3,36259,430
,3,36261,350
,4,2,221735
,3,36262,221730
,3,36260,221715
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,221735
,4,2,221760
,3,36262,221755
,3,36260,221715
,3,36244,234750
,4,1,221735
,4,2,221760
,3,36259,430
,3,36261,350
,3,36377,221750
,4,2,221770
,3,36262,221765
,3,36260,221715
,3,36244,234750
,4,1,221750
,4,2,221770
,3,36259,430
,3,36261,350
,3,36377,221760
,4,2,221780
,3,36262,221775
,3,36260,221715
,3,36244,234750
,4,1,221760
,4,2,221780
,3,36259,430
,3,36261,350
,3,36377,221770
,4,2,221790
,3,36262,221785
,3,36260,221715
,3,36244,234750
,4,1,221770
,4,2,221790
,3,36259,430
,3,36261,350
,3,36377,221780
,4,2,221800
,3,36262,221795
,3,36260,221715
,3,36244,234750
,4,1,221780
,4,2,221800
,3,36259,430
,3,36261,350
,3,36377,221790
,4,2,221810
,3,36262,221805
,3,36260,221715
,3,36244,234750
,4,1,221790
,4,2,221810
,3,36259,430
,3,36261,350
,3,36377,221800
,4,2,221820
,3,36262,221815
,3,36260,221715
,3,36244,234750
,4,1,221800
,4,2,221820
,3,36259,430
,3,36261,350
,3,36377,221810
,3,36260,221715
,3,36244,234750
,3,36372,224595
,3,36373,224600
,4,2,218390
,4,2,30145
,4,3,218405
,4,5,30195
,4,6,218425
,4,8,213250
,4,9,218440
,4,11,211665
,4,12,218455
,4,14,212875
,4,15,218470
,4,17,213750
,4,18,218485
,4,20,211560
,4,21,218500
,4,23,213770
,4,24,218515
,4,26,212045
,4,27,218530
,4,29,213790
,4,30,218545
,3,36259,430
,3,36261,350
,3,36260,221850
,3,36244,234750
,4,3,16560
,4,5,203935
,4,3,212600
,4,5,203935
,4,6,212865
,4,8,203940
,4,9,211800
,4,11,203880
,4,2,206120
,4,3,204915
,4,4,29900
,4,5,206420
,4,6,22780
,4,7,217535
,4,8,198685
,4,9,198725
,4,10,213900
,4,11,217450
,4,12,213210
,4,13,221865
,4,14,207225
,4,15,206135
,4,16,198765
,4,17,221870
,4,18,213780
,4,19,221875
,4,20,16125
,4,21,221880
,4,22,200000
,4,23,200140
,4,24,18115
,4,25,221885
,4,26,212600
,4,27,221890
,4,28,212185
,4,29,197280
,3,36259,430
,3,36261,350
,3,36377,455
,3,36260,224135
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,455
,4,2,198780
,3,36262,198775
,3,36260,198755
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,455
,4,2,222290
,3,36262,222285
,3,36260,222270
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,455
,4,2,195660
,3,36262,195655
,3,36260,195505
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,455
,4,2,197270
,3,36262,197265
,3,36260,197245
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,455
,4,2,221910
,3,36262,221905
,3,36260,221855
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,221900
,3,36244,234750
,4,3,16560
,4,5,203940
,4,1,455
,4,2,221910
,3,36259,430
,3,36261,350
,3,36377,221890
,4,2,222040
,3,36262,222035
,3,36260,221855
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,221920
,3,36244,234750
,4,3,16560
,4,5,203885
,3,36259,430
,3,36261,350
,3,36260,221930
,3,36244,234750
,4,3,16560
,4,5,203890
,3,36259,430
,3,36261,350
,3,36260,221940
,3,36244,234750
,4,3,16560
,4,5,203895
,3,36259,430
,3,36261,350
,3,36260,221950
,3,36244,234750
,4,3,16560
,4,5,203900
,3,36259,430
,3,36261,350
,3,36260,221960
,3,36244,234750
,4,3,16560
,4,5,203905
,3,36259,430
,3,36261,350
,3,36260,221970
,3,36244,234750
,4,3,16560
,4,5,203910
,3,36259,430
,3,36261,350
,3,36260,221980
,3,36244,234750
,4,3,16560
,4,5,203915
,3,36259,430
,3,36261,350
,3,36260,221990
,3,36244,234750
,4,3,16560
,4,5,203920
,3,36259,430
,3,36261,350
,3,36260,222000
,3,36244,234750
,4,3,16560
,4,5,203925
,3,36259,430
,3,36261,350
,3,36260,222010
,3,36244,234750
,4,3,16560
,4,5,203930
,4,1,203885
,3,36259,430
,3,36261,350
,3,36260,222030
,3,36244,234750
,4,3,21735
,4,5,218390
,4,6,212080
,4,9,212010
,4,12,212940
,4,14,220110
,4,3,30145
,4,6,30195
,4,8,203890
,4,9,213250
,4,11,203895
,4,12,211665
,4,14,203900
,4,15,212875
,4,17,203905
,4,18,213750
,4,20,203910
,4,21,211560
,4,23,203915
,4,24,213770
,4,26,203920
,4,27,212045
,4,29,203925
,4,30,213790
,4,32,203930
,4,33,16560
,4,35,203880
,4,1,221890
,4,2,222040
,3,36259,430
,3,36261,350
,3,36377,221910
,3,36260,221855
,3,36244,234750
,4,3,212185
,4,6,213120
,4,9,28860
,4,12,23470
,4,15,24800
,4,18,212280
,4,21,212615
,4,24,211825
,4,27,212695
,4,1,200650
,4,2,222055
,3,36259,430
,3,36261,350
,3,36377,203260
,4,2,222530
,3,36262,222525
,3,36260,222045
,3,36244,234750
,3,36372,200
,3,36373,211795
,3,36372,200
,3,36373,213410
,3,36372,200
,3,36373,212045
,3,36372,200
,3,36373,211950
,3,36372,224605
,3,36373,224610
,3,36372,200
,3,36373,211565
,3,36372,200
,3,36373,212500
,3,36372,320
,3,36373,224615
,3,36372,320
,3,36373,224620
,3,36372,200
,3,36373,213670
,3,36372,200
,3,36373,213835
,3,36372,200
,3,36373,211865
,3,36372,200
,3,36373,213000
,3,36372,200
,3,36373,211920
,3,36372,200
,3,36373,213345
,3,36372,200
,3,36373,213345
,3,36259,430
,3,36261,350
,3,36260,222265
,3,36244,234750
,4,3,16560
,4,5,203945
,4,3,213780
,4,5,203945
,4,6,213365
,4,8,203950
,4,9,211940
,4,11,203955
,4,12,211850
,4,14,203960
,4,15,213420
,4,17,203965
,4,18,211340
,4,20,203970
,4,21,212460
,4,23,203975
,4,24,213575
,4,26,203980
,4,27,212640
,4,29,203985
,4,30,212100
,4,32,203990
,4,33,211355
,4,35,203995
,4,36,213145
,4,38,204000
,4,39,211815
,4,42,211930
,4,45,211370
,3,36259,430
,3,36261,350
,3,36260,222280
,3,36244,234750
,4,3,16560
,4,5,203950
,4,1,455
,4,2,222290
,3,36259,430
,3,36261,350
,3,36377,221875
,4,2,222310
,3,36262,222305
,3,36260,222270
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,222300
,3,36244,234750
,4,3,16560
,4,5,203955
,4,1,221875
,4,2,222310
,3,36259,430
,3,36261,350
,3,36377,222290
,4,2,222330
,3,36262,222325
,3,36260,222270
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,222320
,3,36244,234750
,4,3,16560
,4,5,203960
,4,1,222290
,4,2,222330
,3,36259,430
,3,36261,350
,3,36377,222310
,4,2,222350
,3,36262,222345
,3,36260,222270
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,222340
,3,36244,234750
,4,3,16560
,4,5,203965
,4,1,222310
,4,2,222350
,3,36259,430
,3,36261,350
,3,36377,222330
,4,2,222370
,3,36262,222365
,3,36260,222270
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,222360
,3,36244,234750
,4,3,16560
,4,5,203970
,4,1,222330
,4,2,222370
,3,36259,430
,3,36261,350
,3,36377,222350
,4,2,222390
,3,36262,222385
,3,36260,222270
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,222380
,3,36244,234750
,4,3,16560
,4,5,203975
,4,1,222350
,4,2,222390
,3,36259,430
,3,36261,350
,3,36377,222370
,4,2,222410
,3,36262,222405
,3,36260,222270
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,222400
,3,36244,234750
,4,3,16560
,4,5,203980
,4,1,222370
,4,2,222410
,3,36259,430
,3,36261,350
,3,36377,222390
,4,2,222430
,3,36262,222425
,3,36260,222270
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,222420
,3,36244,234750
,4,3,16560
,4,5,203985
,4,1,222390
,4,2,222430
,3,36259,430
,3,36261,350
,3,36377,222410
,4,2,222450
,3,36262,222445
,3,36260,222270
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,222440
,3,36244,234750
,4,3,16560
,4,5,203990
,4,1,222410
,4,2,222450
,3,36259,430
,3,36261,350
,3,36377,222430
,4,2,222470
,3,36262,222465
,3,36260,222270
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,222460
,3,36244,234750
,4,3,16560
,4,5,203995
,4,1,222430
,4,2,222470
,3,36259,430
,3,36261,350
,3,36377,222450
,4,2,222490
,3,36262,222485
,3,36260,222270
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36260,222480
,3,36244,234750
,4,3,16560
,4,5,204000
,4,1,222450
,4,2,222490
,3,36259,430
,3,36261,350
,3,36377,222470
,4,2,222500
,3,36262,222495
,3,36260,222270
,3,36244,234750
,4,1,222470
,4,2,222500
,3,36259,430
,3,36261,350
,3,36377,222490
,4,2,222510
,3,36262,222505
,3,36260,222270
,3,36244,234750
,4,1,222490
,4,2,222510
,3,36259,430
,3,36261,350
,3,36377,222500
,4,2,222520
,3,36262,222515
,3,36260,222270
,3,36244,234750
,4,1,222500
,4,2,222520
,3,36259,430
,3,36261,350
,3,36377,222510
,3,36260,222270
,3,36244,234750
,4,1,203260
,4,2,222530
,3,36259,430
,3,36261,350
,3,36377,222055
,4,2,211320
,3,36262,224140
,3,36260,222045
,3,36244,234750
,2,35551,425
,3,36253,224635
,3,36254,219645
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,219650
,4,3,211950
,4,5,220030
,4,6,211565
,4,8,220170
,4,9,211415
,4,11,220170
,4,12,212240
,4,14,220070
,4,15,212585
,4,17,220080
,4,18,24805
,4,20,220080
,4,21,211575
,4,23,220140
,4,24,211865
,4,26,220150
,4,27,213145
,4,29,204000
,4,30,211885
,4,32,220400
,4,33,213405
,4,35,220405
,4,36,213345
,4,38,220410
,4,2,205975
,4,4,29140
,4,5,222550
,4,6,197350
,4,7,197410
,4,8,199565
,4,9,199595
,4,10,7370
,4,11,216995
,4,12,29920
,4,13,203420
,4,14,30355
,4,15,203310
,4,16,207225
,4,17,205665
,4,18,203090
,4,19,204115
,4,20,211950
,4,21,222555
,4,22,199050
,4,23,199115
,4,24,203515
,4,25,222560
,4,26,195950
,4,27,222565
,4,28,211420
,4,29,222570
,4,30,197905
,4,31,198115
,3,36259,430
,3,36261,350
,3,36377,195565
,4,2,224215
,3,36262,224210
,3,36260,224205
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,195565
,4,2,222580
,3,36262,222575
,3,36260,222540
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,195565
,4,2,203530
,3,36262,203525
,3,36260,203510
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,195565
,4,2,195960
,3,36262,195955
,3,36260,195945
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,195565
,4,2,223090
,3,36262,223085
,3,36260,223075
,3,36244,234750
,4,1,195565
,4,2,222580
,3,36259,430
,3,36261,350
,3,36377,222555
,4,2,222590
,3,36262,222585
,3,36260,222540
,3,36244,234750
,4,1,222555
,4,2,222590
,3,36259,430
,3,36261,350
,3,36377,222580
,4,2,222600
,3,36262,222595
,3,36260,222540
,3,36244,234750
,4,1,222580
,4,2,222600
,3,36259,430
,3,36261,350
,3,36377,222590
,4,2,222615
,3,36262,222610
,3,36260,222540
,3,36244,234750
,4,3,16560
,4,5,220080
,4,6,200010
,4,8,220175
,4,9,213940
,4,11,220180
,4,12,203370
,4,14,220185
,4,15,203590
,4,17,220190
,4,18,213765
,4,20,220195
,4,21,212500
,4,23,220200
,4,24,212190
,4,26,220205
,4,27,212385
,4,29,220210
,4,30,213260
,4,32,220220
,4,33,200770
,4,35,220230
,4,36,29140
,4,38,220235
,4,39,202465
,4,41,220240
,4,42,211495
,4,44,220245
,4,45,202370
,4,47,220250
,4,48,213670
,4,50,220255
,4,51,213935
,4,53,220265
,4,54,212510
,4,56,220275
,4,57,213835
,4,59,220285
,4,60,213080
,4,62,220295
,4,63,212805
,4,65,220305
,4,66,197915
,4,68,220315
,4,69,200995
,4,71,220320
,4,72,212795
,4,74,220325
,4,75,211415
,4,77,220335
,4,78,30170
,4,80,220340
,4,81,30195
,4,83,220345
,4,1,222590
,4,2,222615
,3,36259,430
,3,36261,350
,3,36377,222600
,4,2,222625
,3,36262,222620
,3,36260,222540
,3,36244,234750
,4,1,222600
,4,2,222625
,3,36259,430
,3,36261,350
,3,36377,222615
,4,2,222910
,3,36262,222905
,3,36260,222540
,3,36244,234750
,4,2,222635
,3,36259,201155
,3,36261,350
,3,36377,222645
,4,2,222650
,3,36262,222640
,3,36260,222605
,3,36244,234750
,4,1,222645
,4,2,222650
,3,36259,201155
,3,36261,350
,4,2,222635
,3,36262,222630
,3,36260,222605
,3,36244,234750
,3,36259,201155
,3,36261,350
,3,36377,222635
,4,2,222660
,3,36262,222655
,3,36260,222605
,3,36244,234750
,4,1,222635
,4,2,222660
,3,36259,201155
,3,36261,350
,3,36377,222650
,4,2,222670
,3,36262,222665
,3,36260,222605
,3,36244,234750
,4,1,222650
,4,2,222670
,3,36259,201155
,3,36261,350
,3,36377,222660
,4,2,222680
,3,36262,222675
,3,36260,222605
,3,36244,234750
,4,1,222660
,4,2,222680
,3,36259,201155
,3,36261,350
,3,36377,222670
,4,2,222690
,3,36262,222685
,3,36260,222605
,3,36244,234750
,4,1,222670
,4,2,222690
,3,36259,201155
,3,36261,350
,3,36377,222680
,4,2,222700
,3,36262,222695
,3,36260,222605
,3,36244,234750
,4,1,222680
,4,2,222700
,3,36259,201155
,3,36261,350
,3,36377,222690
,4,2,222710
,3,36262,222705
,3,36260,222605
,3,36244,234750
,4,1,222690
,4,2,222710
,3,36259,201155
,3,36261,350
,3,36377,222700
,4,2,222720
,3,36262,222715
,3,36260,222605
,3,36244,234750
,4,1,222700
,4,2,222720
,3,36259,201155
,3,36261,350
,3,36377,222710
,4,2,222730
,3,36262,222725
,3,36260,222605
,3,36244,234750
,4,1,222710
,4,2,222730
,3,36259,201155
,3,36261,350
,3,36377,222720
,4,2,222740
,3,36262,222735
,3,36260,222605
,3,36244,234750
,4,1,222720
,4,2,222740
,3,36259,201155
,3,36261,350
,3,36377,222730
,4,2,222750
,3,36262,222745
,3,36260,222605
,3,36244,234750
,4,1,222730
,4,2,222750
,3,36259,201155
,3,36261,350
,3,36377,222740
,4,2,222760
,3,36262,222755
,3,36260,222605
,3,36244,234750
,4,1,222740
,4,2,222760
,3,36259,201155
,3,36261,350
,3,36377,222750
,4,2,222770
,3,36262,222765
,3,36260,222605
,3,36244,234750
,4,1,222750
,4,2,222770
,3,36259,201155
,3,36261,350
,3,36377,222760
,4,2,222780
,3,36262,222775
,3,36260,222605
,3,36244,234750
,4,1,222760
,4,2,222780
,3,36259,201155
,3,36261,350
,3,36377,222770
,4,2,222790
,3,36262,222785
,3,36260,222605
,3,36244,234750
,4,1,222770
,4,2,222790
,3,36259,201155
,3,36261,350
,3,36377,222780
,4,2,222800
,3,36262,222795
,3,36260,222605
,3,36244,234750
,4,1,222780
,4,2,222800
,3,36259,201155
,3,36261,350
,3,36377,222790
,4,2,222810
,3,36262,222805
,3,36260,222605
,3,36244,234750
,4,1,222790
,4,2,222810
,3,36259,201155
,3,36261,350
,3,36377,222800
,4,2,222820
,3,36262,222815
,3,36260,222605
,3,36244,234750
,4,1,222800
,4,2,222820
,3,36259,201155
,3,36261,350
,3,36377,222810
,4,2,222830
,3,36262,222825
,3,36260,222605
,3,36244,234750
,4,1,222810
,4,2,222830
,3,36259,201155
,3,36261,350
,3,36377,222820
,4,2,222840
,3,36262,222835
,3,36260,222605
,3,36244,234750
,4,1,222820
,4,2,222840
,3,36259,201155
,3,36261,350
,3,36377,222830
,4,2,222850
,3,36262,222845
,3,36260,222605
,3,36244,234750
,4,1,222830
,4,2,222850
,3,36259,201155
,3,36261,350
,3,36377,222840
,4,2,222860
,3,36262,222855
,3,36260,222605
,3,36244,234750
,4,1,222840
,4,2,222860
,3,36259,201155
,3,36261,350
,3,36377,222850
,4,2,222870
,3,36262,222865
,3,36260,222605
,3,36244,234750
,4,1,222850
,4,2,222870
,3,36259,201155
,3,36261,350
,3,36377,222860
,4,2,222880
,3,36262,222875
,3,36260,222605
,3,36244,234750
,4,1,222860
,4,2,222880
,3,36259,201155
,3,36261,350
,3,36377,222870
,4,2,222890
,3,36262,222885
,3,36260,222605
,3,36244,234750
,4,1,222870
,4,2,222890
,3,36259,201155
,3,36261,350
,3,36377,222880
,3,36260,222605
,3,36244,234750
,4,3,16560
,4,5,220140
,4,6,211450
,4,8,220355
,4,9,213940
,4,11,220360
,4,12,212190
,4,14,220365
,4,15,213000
,4,17,220370
,4,18,30145
,4,20,220375
,4,21,211920
,4,23,220380
,4,24,213775
,4,26,222900
,4,27,211685
,4,29,220385
,4,30,30170
,4,32,220390
,4,33,30195
,4,35,220395
,0,1023,211605
,0,843,224665
,0,1024,110
,2,35551,425
,3,36254,20390
,3,36255,224670
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,222615
,4,2,222910
,3,36259,430
,3,36261,350
,3,36377,222625
,4,2,222920
,3,36262,222915
,3,36260,222540
,3,36244,234750
,4,1,222625
,4,2,222920
,3,36259,430
,3,36261,350
,3,36377,222910
,4,2,223035
,3,36262,223030
,3,36260,222540
,3,36244,234750
,4,2,222930
,3,36259,196135
,3,36261,350
,3,36377,222940
,4,2,222945
,3,36262,222935
,3,36260,222895
,3,36244,234750
,4,1,222940
,4,2,222945
,3,36259,196135
,3,36261,350
,4,2,222930
,3,36262,222925
,3,36260,222895
,3,36244,234750
,3,36259,196135
,3,36261,350
,3,36377,222930
,4,2,222955
,3,36262,222950
,3,36260,222895
,3,36244,234750
,4,1,222930
,4,2,222955
,3,36259,196135
,3,36261,350
,3,36377,222945
,4,2,222965
,3,36262,222960
,3,36260,222895
,3,36244,234750
,4,1,222945
,4,2,222965
,3,36259,196135
,3,36261,350
,3,36377,222955
,4,2,222975
,3,36262,222970
,3,36260,222895
,3,36244,234750
,4,1,222955
,4,2,222975
,3,36259,196135
,3,36261,350
,3,36377,222965
,4,2,222985
,3,36262,222980
,3,36260,222895
,3,36244,234750
,4,1,222965
,4,2,222985
,3,36259,196135
,3,36261,350
,3,36377,222975
,4,2,222995
,3,36262,222990
,3,36260,222895
,3,36244,234750
,4,1,222975
,4,2,222995
,3,36259,196135
,3,36261,350
,3,36377,222985
,4,2,223005
,3,36262,223000
,3,36260,222895
,3,36244,234750
,4,1,222985
,4,2,223005
,3,36259,196135
,3,36261,350
,3,36377,222995
,4,2,223015
,3,36262,223010
,3,36260,222895
,3,36244,234750
,4,1,222995
,4,2,223015
,3,36259,196135
,3,36261,350
,3,36377,223005
,4,2,223025
,3,36262,223020
,3,36260,222895
,3,36244,234750
,4,1,223005
,4,2,223025
,3,36259,196135
,3,36261,350
,3,36377,223015
,3,36260,222895
,3,36244,234750
,4,1,222910
,4,2,223035
,3,36259,430
,3,36261,350
,3,36377,222920
,4,2,223045
,3,36262,223040
,3,36260,222540
,3,36244,234750
,4,1,222920
,4,2,223045
,3,36259,430
,3,36261,350
,3,36377,223035
,4,2,223055
,3,36262,223050
,3,36260,222540
,3,36244,234750
,4,1,223035
,4,2,223055
,3,36259,430
,3,36261,350
,3,36377,223045
,4,2,223065
,3,36262,223060
,3,36260,222540
,3,36244,234750
,4,1,223045
,4,2,223065
,3,36259,430
,3,36261,350
,3,36377,223055
,3,36260,222540
,3,36244,234750
,2,35551,425
,3,36254,218965
,3,36255,560
,6,64,85
,3,36244,12670
,4,1,218970
,4,3,211420
,4,5,220415
,4,6,213790
,4,8,223080
,4,9,23695
,4,11,220420
,4,12,23705
,4,14,220425
,0,1023,212825
,0,843,224690
,0,1024,110
,2,35551,425
,3,36254,20390
,3,36255,224695
,6,64,85
,3,36244,12670
,4,1,4220
,4,1,195565
,4,2,223090
,3,36259,430
,3,36261,350
,3,36377,222570
,4,2,223115
,3,36262,223110
,3,36260,223075
,3,36244,234750
,2,828,220080
,2,34596,220175
,2,35928,220180
,2,34708,220185
,2,34719,220190
,2,35896,220195
,2,35651,220200
,2,35590,220205
,2,36384,220215
,2,36385,120
,2,36386,220225
,2,36387,120
,2,34628,220230
,2,1408,220235
,2,34685,220240
,2,35456,220245
,2,34684,220250
,2,35878,220255
,2,36388,220270
,2,36389,120
,2,36390,220280
,2,36391,120
,2,35908,220285
,2,36392,220300
,2,36393,120
,2,36394,220310
,2,36395,120
,2,34460,220315
,2,34634,220320
,2,36396,220330
,2,36397,120
,2,35440,220335
,2,1459,220340
,2,1460,220345
,2,35551,201155
,3,36315,223100
,3,36244,222890
,4,3,16560
,4,5,220420
,4,6,213790
,4,8,220440
,4,1,222570
,4,2,223115
,3,36259,430
,3,36261,350
,3,36377,223090
,4,2,223140
,3,36262,223135
,3,36260,223075
,3,36244,234750
,4,2,223125
,3,36259,223095
,3,36261,350
,3,36377,235030
,3,36260,223105
,3,36244,234750
,4,3,16560
,4,5,220425
,4,6,212600
,4,9,211795
,4,11,220445
,4,12,212905
,4,14,220450
,4,15,212060
,4,17,220455
,4,18,212645
,4,20,220460
,4,21,213410
,4,23,220465
,4,24,212045
,4,26,220470
,4,1,223090
,4,2,223140
,3,36259,430
,3,36261,350
,3,36377,223115
,3,36260,223075
,3,36244,234750
,4,2,223150
,3,36259,223095
,3,36261,350
,3,36377,223160
,4,2,223165
,3,36262,223155
,3,36260,223130
,3,36244,234750
,4,1,223160
,4,2,223165
,3,36259,223095
,3,36261,350
,4,2,223150
,3,36262,223145
,3,36260,223130
,3,36244,234750
,3,36259,223095
,3,36261,350
,3,36377,223150
,4,2,223175
,3,36262,223170
,3,36260,223130
,3,36244,234750
,4,1,223150
,4,2,223175
,3,36259,223095
,3,36261,350
,3,36377,223165
,4,2,223185
,3,36262,223180
,3,36260,223130
,3,36244,234750
,4,1,223165
,4,2,223185
,3,36259,223095
,3,36261,350
,3,36377,223175
,4,2,223195
,3,36262,223190
,3,36260,223130
,3,36244,234750
,4,1,223175
,4,2,223195
,3,36259,223095
,3,36261,350
,3,36377,223185
,4,2,223205
,3,36262,223200
,3,36260,223130
,3,36244,234750
,4,1,223185
,4,2,223205
,3,36259,223095
,3,36261,350
,3,36377,223195
,4,2,223215
,3,36262,223210
,3,36260,223130
,3,36244,234750
,4,1,223195
,4,2,223215
,3,36259,223095
,3,36261,350
,3,36377,223205
,3,36260,223130
,3,36244,234750
,2,828,220425
,2,35671,100
,2,35513,220445
,2,35730,220450
,2,35564,220455
,2,35680,220460
,2,35827,220465
,2,34730,220470
,2,35551,223095
,3,36315,223225
,3,36244,223215
,4,1,560
,4,2,224700
,4,1,220080
,4,3,212225
,4,6,27205
,4,9,20525
,4,2,223250
,3,36259,430
,3,36261,350
,3,36377,204270
,4,2,223260
,3,36262,223255
,3,36260,223240
,3,36244,234750
,4,1,204270
,4,2,223260
,3,36259,430
,3,36261,350
,3,36377,223250
,4,2,223270
,3,36262,223265
,3,36260,223240
,3,36244,234750
,4,1,223250
,4,2,223270
,3,36259,430
,3,36261,350
,3,36377,223260
,3,36260,223240
,3,36244,234750
,4,2,223280
,3,36259,218625
,3,36261,203880
,3,36377,218630
,4,2,223935
,3,36262,223930
,3,36260,222025
,3,36244,234750
,4,3,213555
,4,6,212605
,4,9,212530
,4,12,27205
,4,15,16930
,4,18,196645
,4,21,196650
,4,24,211715
,4,27,20525
,4,30,211505
,4,33,27185
,4,36,213620
,4,39,213445
,4,42,28870
,4,45,212920
,4,48,211790
,4,51,213275
,4,54,213305
,4,57,212330
,4,60,211835
,4,63,21735
,4,66,213740
,4,69,202465
,4,72,202370
,4,74,221000
,4,2,223295
,3,36259,223220
,3,36261,220425
,3,36377,218825
,4,2,223305
,3,36262,223300
,3,36260,223285
,3,36244,234750
,4,1,218825
,4,2,223305
,3,36259,223220
,3,36261,220425
,3,36377,223295
,4,2,223545
,3,36262,223540
,3,36260,223285
,3,36244,234750
,4,3,16560
,4,5,26460
,3,36259,430
,3,36261,350
,3,36260,223310
,3,36244,234750
,4,3,212690
,4,6,28860
,4,9,21455
,4,12,212780
,4,15,212490
,4,18,213455
,4,21,213495
,4,24,212135
,4,27,211570
,4,30,213180
,4,33,212915
,4,36,211650
,4,39,213630
,4,42,212765
,4,45,213890
,4,48,211480
,4,51,213390
,4,54,211490
,4,57,211690
,4,60,212750
,4,63,28785
,4,2,223335
,3,36259,205810
,3,36261,26460
,3,36377,26075
,4,2,223345
,3,36262,223340
,3,36260,223325
,3,36244,234750
,4,1,26075
,4,2,223345
,3,36259,205810
,3,36261,26460
,3,36377,223335
,4,2,223355
,3,36262,223350
,3,36260,223325
,3,36244,234750
,4,1,223335
,4,2,223355
,3,36259,205810
,3,36261,26460
,3,36377,223345
,4,2,223365
,3,36262,223360
,3,36260,223325
,3,36244,234750
,4,1,223345
,4,2,223365
,3,36259,205810
,3,36261,26460
,3,36377,223355
,4,2,223375
,3,36262,223370
,3,36260,223325
,3,36244,234750
,4,1,223355
,4,2,223375
,3,36259,205810
,3,36261,26460
,3,36377,223365
,4,2,223385
,3,36262,223380
,3,36260,223325
,3,36244,234750
,4,1,223365
,4,2,223385
,3,36259,205810
,3,36261,26460
,3,36377,223375
,4,2,223395
,3,36262,223390
,3,36260,223325
,3,36244,234750
,4,1,223375
,4,2,223395
,3,36259,205810
,3,36261,26460
,3,36377,223385
,4,2,223405
,3,36262,223400
,3,36260,223325
,3,36244,234750
,4,1,223385
,4,2,223405
,3,36259,205810
,3,36261,26460
,3,36377,223395
,4,2,223415
,3,36262,223410
,3,36260,223325
,3,36244,234750
,4,1,223395
,4,2,223415
,3,36259,205810
,3,36261,26460
,3,36377,223405
,4,2,223425
,3,36262,223420
,3,36260,223325
,3,36244,234750
,4,1,223405
,4,2,223425
,3,36259,205810
,3,36261,26460
,3,36377,223415
,4,2,223435
,3,36262,223430
,3,36260,223325
,3,36244,234750
,4,1,223415
,4,2,223435
,3,36259,205810
,3,36261,26460
,3,36377,223425
,4,2,223445
,3,36262,223440
,3,36260,223325
,3,36244,234750
,4,1,223425
,4,2,223445
,3,36259,205810
,3,36261,26460
,3,36377,223435
,4,2,223455
,3,36262,223450
,3,36260,223325
,3,36244,234750
,4,1,223435
,4,2,223455
,3,36259,205810
,3,36261,26460
,3,36377,223445
,4,2,223465
,3,36262,223460
,3,36260,223325
,3,36244,234750
,4,1,223445
,4,2,223465
,3,36259,205810
,3,36261,26460
,3,36377,223455
,4,2,223475
,3,36262,223470
,3,36260,223325
,3,36244,234750
,4,1,223455
,4,2,223475
,3,36259,205810
,3,36261,26460
,3,36377,223465
,4,2,223485
,3,36262,223480
,3,36260,223325
,3,36244,234750
,4,1,223465
,4,2,223485
,3,36259,205810
,3,36261,26460
,3,36377,223475
,4,2,223495
,3,36262,223490
,3,36260,223325
,3,36244,234750
,4,1,223475
,4,2,223495
,3,36259,205810
,3,36261,26460
,3,36377,223485
,4,2,223505
,3,36262,223500
,3,36260,223325
,3,36244,234750
,4,1,223485
,4,2,223505
,3,36259,205810
,3,36261,26460
,3,36377,223495
,4,2,223515
,3,36262,223510
,3,36260,223325
,3,36244,234750
,4,1,223495
,4,2,223515
,3,36259,205810
,3,36261,26460
,3,36377,223505
,4,2,223525
,3,36262,223520
,3,36260,223325
,3,36244,234750
,4,1,223505
,4,2,223525
,3,36259,205810
,3,36261,26460
,3,36377,223515
,4,2,223535
,3,36262,223530
,3,36260,223325
,3,36244,234750
,4,1,223515
,4,2,223535
,3,36259,205810
,3,36261,26460
,3,36377,223525
,3,36260,223325
,3,36244,234750
,4,1,223295
,4,2,223545
,3,36259,223220
,3,36261,220425
,3,36377,223305
,4,2,223555
,3,36262,223550
,3,36260,223285
,3,36244,234750
,4,1,223305
,4,2,223555
,3,36259,223220
,3,36261,220425
,3,36377,223545
,4,2,223565
,3,36262,223560
,3,36260,223285
,3,36244,234750
,4,1,223545
,4,2,223565
,3,36259,223220
,3,36261,220425
,3,36377,223555
,4,2,223575
,3,36262,223570
,3,36260,223285
,3,36244,234750
,4,1,223555
,4,2,223575
,3,36259,223220
,3,36261,220425
,3,36377,223565
,4,2,223585
,3,36262,223580
,3,36260,223285
,3,36244,234750
,4,1,223565
,4,2,223585
,3,36259,223220
,3,36261,220425
,3,36377,223575
,4,2,223790
,3,36262,223785
,3,36260,223285
,3,36244,234750
,4,3,16560
,4,5,27040
,3,36259,430
,3,36261,350
,3,36260,223595
,3,36244,234750
,4,3,212690
,4,6,213890
,4,9,213660
,4,12,213460
,4,15,213495
,4,18,213110
,4,21,213945
,4,24,211480
,4,27,21455
,4,30,213170
,4,33,212915
,4,36,212125
,4,39,26815
,4,42,211485
,4,45,213070
,4,48,28860
,4,2,223620
,3,36259,205820
,3,36261,27040
,3,36377,26670
,4,2,223630
,3,36262,223625
,3,36260,223610
,3,36244,234750
,4,1,26670
,4,2,223630
,3,36259,205820
,3,36261,27040
,3,36377,223620
,4,2,223640
,3,36262,223635
,3,36260,223610
,3,36244,234750
,4,1,223620
,4,2,223640
,3,36259,205820
,3,36261,27040
,3,36377,223630
,4,2,223650
,3,36262,223645
,3,36260,223610
,3,36244,234750
,4,1,223630
,4,2,223650
,3,36259,205820
,3,36261,27040
,3,36377,223640
,4,2,223660
,3,36262,223655
,3,36260,223610
,3,36244,234750
,4,1,223640
,4,2,223660
,3,36259,205820
,3,36261,27040
,3,36377,223650
,4,2,223670
,3,36262,223665
,3,36260,223610
,3,36244,234750
,4,1,223650
,4,2,223670
,3,36259,205820
,3,36261,27040
,3,36377,223660
,4,2,223680
,3,36262,223675
,3,36260,223610
,3,36244,234750
,4,1,223660
,4,2,223680
,3,36259,205820
,3,36261,27040
,3,36377,223670
,4,2,223690
,3,36262,223685
,3,36260,223610
,3,36244,234750
,4,1,223670
,4,2,223690
,3,36259,205820
,3,36261,27040
,3,36377,223680
,4,2,223700
,3,36262,223695
,3,36260,223610
,3,36244,234750
,4,1,223680
,4,2,223700
,3,36259,205820
,3,36261,27040
,3,36377,223690
,4,2,223710
,3,36262,223705
,3,36260,223610
,3,36244,234750
,4,1,223690
,4,2,223710
,3,36259,205820
,3,36261,27040
,3,36377,223700
,4,2,223720
,3,36262,223715
,3,36260,223610
,3,36244,234750
,4,1,223700
,4,2,223720
,3,36259,205820
,3,36261,27040
,3,36377,223710
,4,2,223730
,3,36262,223725
,3,36260,223610
,3,36244,234750
,4,1,223710
,4,2,223730
,3,36259,205820
,3,36261,27040
,3,36377,223720
,4,2,223745
,3,36262,223740
,3,36260,223610
,3,36244,234750
,4,3,212690
,4,6,213890
,4,9,213660
,4,12,213460
,4,15,213495
,4,18,213110
,4,21,213945
,4,24,211480
,4,27,21455
,4,30,213170
,4,33,212915
,4,36,212125
,4,39,26815
,4,41,220650
,4,42,211485
,4,45,213070
,4,48,28860
,4,1,223720
,4,2,223745
,3,36259,205820
,3,36261,27040
,3,36377,223730
,4,2,224180
,3,36262,224175
,3,36260,223610
,3,36244,234750
,4,1,223730
,4,2,223755
,3,36259,205820
,3,36261,27040
,3,36377,223765
,4,2,223770
,3,36262,223760
,3,36260,223735
,3,36244,234750
,4,1,223765
,4,2,223770
,3,36259,205820
,3,36261,27040
,3,36377,223730
,4,2,223755
,3,36262,223750
,3,36260,223735
,3,36244,234750
,3,36259,205820
,3,36261,27040
,3,36377,223755
,4,2,223780
,3,36262,223775
,3,36260,223735
,3,36244,234750
,4,1,223755
,4,2,223780
,3,36259,205820
,3,36261,27040
,3,36377,223770
,3,36260,223735
,3,36244,234750
,4,1,223575
,4,2,223790
,3,36259,223220
,3,36261,220425
,3,36377,223585
,4,2,223800
,3,36262,223795
,3,36260,223285
,3,36244,234750
,4,1,223585
,4,2,223800
,3,36259,223220
,3,36261,220425
,3,36377,223790
,4,2,223810
,3,36262,223805
,3,36260,223285
,3,36244,234750
,4,1,223790
,4,2,223810
,3,36259,223220
,3,36261,220425
,3,36377,223800
,4,2,223860
,3,36262,223855
,3,36260,223285
,3,36244,234750
,4,3,21455
,4,5,195250
,4,6,195255
,4,8,195260
,4,9,4665
,4,11,195265
,4,12,195270
,4,14,195275
,4,15,195280
,4,17,195285
,4,18,212800
,4,20,205775
,4,4,19340
,4,5,197800
,4,6,212800
,4,7,223825
,4,8,197220
,4,9,223830
,4,10,197470
,4,11,223835
,4,12,213505
,4,13,13895
,4,14,197710
,4,15,201055
,4,16,196095
,4,17,205460
,4,18,26655
,4,19,223840
,4,20,198130
,4,21,198155
,4,22,16420
,4,23,195640
,4,24,199295
,4,25,199380
,4,26,26060
,4,27,200925
,4,28,195290
,4,29,195375
,4,30,195680
,4,31,195725
,3,36259,425
,3,36377,12670
,3,36260,223815
,3,36244,234750
,3,36259,425
,3,36377,12670
,4,2,18545
,3,36262,197240
,3,36260,197215
,3,36244,234750
,3,36259,425
,3,36377,12670
,4,2,197575
,3,36262,197570
,3,36260,197465
,3,36244,234750
,3,36259,425
,3,36377,12670
,4,2,200980
,3,36262,200975
,3,36260,200970
,3,36244,234750
,4,3,29140
,4,5,223850
,4,6,211840
,4,8,220085
,4,9,213220
,4,11,220095
,0,35711,205775
,0,1404,29140
,0,35758,110
,0,44,223850
,2,35711,205775
,2,35551,425
,3,36254,220660
,3,36255,224705
,6,64,85
,3,36244,223825
,4,1,4220
,4,1,223800
,4,2,223860
,3,36259,223220
,3,36261,220425
,3,36377,223810
,4,2,223895
,3,36262,223890
,3,36260,223285
,3,36244,234750
,4,1,195565
,4,2,223870
,3,36259,430
,3,36261,350
,3,36377,223880
,4,2,223885
,3,36262,223875
,3,36260,223845
,3,36244,234750
,4,1,223880
,4,2,223885
,3,36259,430
,3,36261,350
,3,36377,195565
,4,2,223870
,3,36262,223865
,3,36260,223845
,3,36244,234750
,3,36259,430
,3,36261,350
,3,36377,223870
,3,36260,223845
,3,36244,234750
,4,1,223810
,4,2,223895
,3,36259,223220
,3,36261,220425
,3,36377,223860
,4,2,223905
,3,36262,223900
,3,36260,223285
,3,36244,234750
,4,1,223860
,4,2,223905
,3,36259,223220
,3,36261,220425
,3,36377,223895
,4,2,223915
,3,36262,223910
,3,36260,223285
,3,36244,234750
,4,1,223895
,4,2,223915
,3,36259,223220
,3,36261,220425
,3,36377,223905
,4,2,223925
,3,36262,223920
,3,36260,223285
,3,36244,234750
,4,1,223905
,4,2,223925
,3,36259,223220
,3,36261,220425
,3,36377,223915
,4,2,223950
,3,36262,223945
,3,36260,223285
,3,36244,234750
,4,1,218630
,4,2,223935
,3,36259,218625
,3,36261,203880
,3,36377,223280
,4,2,221680
,3,36262,223940
,3,36260,222025
,3,36244,234750
,4,1,223280
,4,2,221680
,4,1,223915
,4,2,223950
,3,36259,223220
,3,36261,220425
,3,36377,223925
,4,2,223960
,3,36262,223955
,3,36260,223285
,3,36244,234750
,4,1,223925
,4,2,223960
,3,36259,223220
,3,36261,220425
,3,36377,223950
,4,2,223970
,3,36262,223965
,3,36260,223285
,3,36244,234750
,4,1,223950
,4,2,223970
,3,36259,223220
,3,36261,220425
,3,36377,223960
,4,2,223980
,3,36262,223975
,3,36260,223285
,3,36244,234750
,4,1,223960
,4,2,223980
,3,36259,223220
,3,36261,220425
,3,36377,223970
,4,2,223990
,3,36262,223985
,3,36260,223285
,3,36244,234750
,4,1,223970
,4,2,223990
,3,36259,223220
,3,36261,220425
,3,36377,223980
,4,2,224000
,3,36262,223995
,3,36260,223285
,3,36244,234750
,4,1,223980
,4,2,224000
,3,36259,223220
,3,36261,220425
,3,36377,223990
,4,2,224010
,3,36262,224005
,3,36260,223285
,3,36244,234750
,4,1,223990
,4,2,224010
,3,36259,223220
,3,36261,220425
,3,36377,224000
,4,2,224050
,3,36262,224045
,3,36260,223285
,3,36244,234750
,2,1395,224710
,2,35707,70
,2,35836,110
,2,35844,110
,2,35579,110
,2,35470,110
,2,35783,110
,2,35732,100
,2,35485,110
,2,35870,110
,2,35704,110
,2,35918,110
,2,35453,211945
,2,35823,110
,2,35492,110
,2,35701,70
,2,1389,70
,2,35551,205810
,3,36244,223535
,2,1408,223850
,2,35521,220085
,2,35790,220095
,2,35551,430
,3,36244,223885
,2,35918,110
,2,35876,110
,2,35837,110
,2,35844,110
,2,35769,110
,2,35929,110
,2,35453,211945
,2,35781,110
,2,35732,110
,2,35577,110
,2,1329,220650
,2,35454,70
,2,1395,224715
,2,35551,205820
,3,36244,223780
,4,7,655
,4,10,207655
,3,36259,223220
,3,36261,220425
,3,36377,235035
,3,36260,224040
,3,36244,234750
,4,3,213555
,4,6,212605
,4,9,212530
,4,12,27205
,4,15,16930
,4,18,196645
,4,21,196650
,4,24,211715
,4,27,20525
,4,30,211505
,4,33,27185
,4,36,213620
,4,39,213445
,4,42,28870
,4,45,212920
,4,48,211790
,4,51,213275
,4,54,213305
,4,57,212330
,4,60,211835
,4,63,21735
,4,66,213740
,4,69,202465
,4,71,220710
,4,72,202370
,4,74,220710
,4,1,224000
,4,2,224050
,3,36259,223220
,3,36261,220425
,3,36377,224010
,4,2,224250
,3,36262,224255
,3,36260,223285
,3,36244,234750
,4,1,224010
,4,2,224035
,4,2,30145
,4,3,220785
,4,5,30170
,4,6,220805
,4,8,30195
,4,9,220820
,4,11,23245
,4,12,220835
,4,14,25885
,4,15,220850
,3,36259,430
,3,36261,350
,3,36260,224075
,3,36244,234750
,4,3,16560
,4,5,204010
,3,36259,430
,3,36261,350
,3,36260,224085
,3,36244,234750
,4,3,16560
,4,5,204015
,3,36259,430
,3,36261,350
,3,36260,224095
,3,36244,234750
,4,3,16560
,4,5,204020
,3,36259,430
,3,36261,350
,3,36260,224105
,3,36244,234750
,4,3,16560
,4,5,204025
,3,36259,430
,3,36261,350
,3,36260,224115
,3,36244,234750
,4,3,16560
,4,5,204030
,4,1,204010
,3,36259,430
,3,36261,350
,3,36260,224130
,3,36244,234750
,4,3,30145
,4,6,30170
,4,8,204015
,4,9,30195
,4,11,204020
,4,12,23245
,4,14,204025
,4,15,25885
,4,17,204030
,4,18,16560
,4,20,204005
,4,3,213210
,4,5,204005
,4,1,222055
,4,2,211320
,4,3,211550
,4,5,220955
,4,2,221685
,4,3,207225
,4,3,207225
,4,5,206125
,3,36372,224725
,3,36373,224730
,4,1,223730
,4,2,224180
,3,36259,205820
,3,36261,27040
,3,36377,223745
,4,2,224190
,3,36262,224185
,3,36260,223610
,3,36244,234750
,4,1,223745
,4,2,224190
,3,36259,205820
,3,36261,27040
,3,36377,224180
,4,2,224200
,3,36262,224195
,3,36260,223610
,3,36244,234750
,4,1,224180
,4,2,224200
,3,36259,205820
,3,36261,27040
,3,36377,224190
,3,36260,223610
,3,36244,234750
,4,3,29140
,4,6,211840
,4,8,220085
,4,9,213220
,4,11,220095
,4,1,195565
,4,2,224215
,3,36259,430
,3,36261,350
,3,36377,222550
,4,2,224225
,3,36262,224220
,3,36260,224205
,3,36244,234750
,4,1,222550
,4,2,224225
,3,36259,430
,3,36261,350
,3,36377,224215
,3,36260,224205
,3,36244,234750
,2,1395,224735
,2,35707,70
,2,35836,110
,2,35844,110
,2,35579,110
,2,35470,110
,2,35783,110
,2,35732,100
,2,35485,110
,2,35870,110
,2,35704,110
,2,35918,110
,2,35453,211945
,2,35823,110
,2,35492,110
,2,35701,70
,2,1389,70
,2,35551,205810
,3,36244,223535
,2,1408,224740
,2,35521,220085
,2,35790,220095
,2,35551,430
,3,36315,224745
,3,36244,224225
,2,35918,110
,2,35876,110
,2,35837,110
,2,35844,110
,2,35769,110
,2,35929,110
,2,35453,211945
,2,35781,110
,2,35732,100
,2,35577,110
,2,1329,220990
,2,35454,70
,2,1395,224750
,2,35551,205820
,3,36244,224200
,4,7,655
,4,10,207655
,4,13,221000
,3,36259,223220
,3,36261,220425
,3,36377,224050
,3,36260,223285
,3,36244,234750
,4,1,224010
,4,2,224250
,4,3,20525
,4,6,20520
,4,9,20530
,4,12,16550
,4,2,224275
,3,36259,430
,3,36261,350
,3,36377,204200
,4,2,224285
,3,36262,224280
,3,36260,224265
,3,36244,234750
,4,1,204200
,4,2,224285
,3,36259,430
,3,36261,350
,3,36377,224275
,4,2,224295
,3,36262,224290
,3,36260,224265
,3,36244,234750
,4,1,224275
,4,2,224295
,3,36259,430
,3,36261,350
,3,36377,224285
,4,2,224305
,3,36262,224300
,3,36260,224265
,3,36244,234750
,4,1,224285
,4,2,224305
,3,36259,430
,3,36261,350
,3,36377,224295
,3,36260,224265
,3,36244,234750
,4,3,211660
,4,6,212910
,4,9,212670
,4,12,8950
,4,14,224315
,4,15,212160
,4,17,224320
,4,18,212150
,4,20,224325
,4,21,20135
,4,23,224330
,4,24,28620
,4,26,224335
,4,27,10490
,4,29,224340
,4,30,213525
,4,32,224345
,4,33,211880
,4,35,224350
,4,36,15695
,4,38,224355
,4,39,213340
,4,41,218255
,5,36398,224585
,5,36399,218250
,2,36400,595
,2,36401,595
,2,36381,595
,2,36382,595
,2,35551,425
,3,36402,224755
,3,36254,221050
,3,36255,224760
,6,64,85
,3,36315,224765
,3,36244,224770
,4,1,221055
,5,36398,224585
,5,36399,218250
,2,36400,595
,2,36401,595
,2,36381,595
,2,36382,595
,2,35551,425
,3,36402,224775
,3,36254,221050
,3,36255,224780
,6,64,85
,3,36315,224785
,3,36244,224790
,4,1,4220
,5,36398,224585
,5,36399,218265
,2,36400,595
,2,36401,595
,2,36381,595
,2,36382,595
,2,35551,425
,3,36402,224795
,3,36254,221050
,3,36255,224800
,6,64,85
,3,36315,224805
,3,36244,224810
,4,1,4220
,5,36398,224585
,5,36399,218265
,2,36400,595
,2,36401,595
,2,36381,595
,2,36382,595
,2,35551,425
,3,36402,224815
,3,36254,221050
,3,36255,224820
,6,64,85
,3,36315,224825
,3,36244,224830
,4,1,4220
,5,36398,224585
,5,36399,218270
,2,36400,595
,2,36401,595
,2,36381,595
,2,36382,595
,2,35551,425
,3,36402,224835
,3,36254,221050
,3,36255,224840
,6,64,85
,3,36315,224845
,3,36244,224850
,4,1,4220
,5,36398,224585
,5,36399,218275
,2,36400,595
,2,36401,595
,2,36381,595
,2,36382,595
,2,35551,425
,3,36402,224855
,3,36254,221050
,3,36255,224860
,6,64,85
,3,36315,224865
,3,36244,224870
,4,1,4220
,5,36398,224585
,5,36399,218280
,2,36400,595
,2,36401,595
,2,36381,595
,2,36382,595
,2,35551,425
,3,36402,224875
,3,36254,221050
,3,36255,224880
,6,64,85
,3,36315,224885
,3,36244,224890
,4,1,4220
,5,36398,224585
,5,36399,218285
,2,36400,595
,2,36401,595
,2,36381,595
,2,36382,595
,2,35551,425
,3,36402,224895
,3,36254,221050
,3,36255,224900
,6,64,85
,3,36315,224905
,3,36244,224910
,4,1,4220
,5,36398,224585
,5,36399,218290
,2,36400,595
,2,36401,595
,2,36381,595
,2,36382,595
,2,35551,425
,3,36402,224915
,3,36254,221050
,3,36255,224920
,6,64,85
,3,36315,224925
,3,36244,224930
,4,1,4220
,4,2,224365
,3,36259,221660
,3,36261,218255
,3,36377,218055
,4,2,224375
,3,36262,224370
,3,36260,224310
,3,36244,234750
,4,1,218055
,4,2,224375
,3,36259,221660
,3,36261,218255
,3,36377,224365
,4,2,224385
,3,36262,224380
,3,36260,224310
,3,36244,234750
,4,1,224365
,4,2,224385
,3,36259,221660
,3,36261,218255
,3,36377,224375
,4,2,224400
,3,36262,224395
,3,36260,224310
,3,36244,234750
,4,3,21455
,4,6,195255
,4,8,214070
,4,9,4665
,4,11,605
,4,12,195270
,4,14,610
,4,1,224375
,4,2,224400
,3,36259,221660
,3,36261,218255
,3,36377,224385
,4,2,224415
,3,36262,224410
,3,36260,224310
,3,36244,234750
,4,3,21455
,4,6,195255
,4,8,214070
,4,9,4665
,4,11,605
,4,12,195270
,4,14,610
,4,1,224385
,4,2,224415
,3,36259,221660
,3,36261,218255
,3,36377,224400
,4,2,224430
,3,36262,224425
,3,36260,224310
,3,36244,234750
,4,3,21455
,4,6,195255
,4,8,214070
,4,9,4665
,4,11,605
,4,12,195270
,4,14,610
,4,1,224400
,4,2,224430
,3,36259,221660
,3,36261,218255
,3,36377,224415
,4,2,224445
,3,36262,224440
,3,36260,224310
,3,36244,234750
,4,3,21455
,4,6,195255
,4,8,214070
,4,9,4665
,4,11,605
,4,12,195270
,4,14,610
,4,1,224415
,4,2,224445
,3,36259,221660
,3,36261,218255
,3,36377,224430
,4,2,224460
,3,36262,224455
,3,36260,224310
,3,36244,234750
,4,3,21455
,4,6,195255
,4,8,214070
,4,9,4665
,4,11,605
,4,12,195270
,4,14,610
,4,1,224430
,4,2,224460
,3,36259,221660
,3,36261,218255
,3,36377,224445
,4,2,224475
,3,36262,224470
,3,36260,224310
,3,36244,234750
,4,3,21455
,4,6,195255
,4,8,214070
,4,9,4665
,4,11,605
,4,12,195270
,4,14,610
,4,1,224445
,4,2,224475
,3,36259,221660
,3,36261,218255
,3,36377,224460
,4,2,224490
,3,36262,224485
,3,36260,224310
,3,36244,234750
,4,3,21455
,4,6,195255
,4,8,214070
,4,9,4665
,4,11,605
,4,12,195270
,4,14,610
,4,1,224460
,4,2,224490
,3,36259,221660
,3,36261,218255
,3,36377,224475
,4,2,224505
,3,36262,224500
,3,36260,224310
,3,36244,234750
,4,3,21455
,4,6,195255
,4,8,214070
,4,9,4665
,4,11,605
,4,12,195270
,4,14,610
,4,1,224475
,4,2,224505
,3,36259,221660
,3,36261,218255
,3,36377,224490
,4,2,224520
,3,36262,224515
,3,36260,224310
,3,36244,234750
,4,3,21455
,4,6,195255
,4,8,214070
,4,9,4665
,4,11,605
,4,12,195270
,4,14,610
,4,1,224490
,4,2,224520
,3,36259,221660
,3,36261,218255
,3,36377,224505
,4,2,224530
,3,36262,224525
,3,36260,224310
,3,36244,234750
,4,1,224505
,4,2,224530
,3,36259,221660
,3,36261,218255
,3,36377,224520
,3,36260,224310
,3,36244,234750
,4,3,28350
,4,6,16930
,4,2,224545
,3,36259,430
,3,36261,350
,3,36377,204210
,4,2,224555
,3,36262,224550
,3,36260,224535
,3,36244,234750
,4,1,204210
,4,2,224555
,3,36259,430
,3,36261,350
,3,36377,224545
,3,36260,224535
,3,36244,234750
,4,1,560
,4,1,27470
,2,1026,100
,2,1025,110
,2,1027,100
,2,35551,430
,3,36244,224295
,2,35551,430
,3,36244,195565
,2,35441,220415
,2,34731,223080
,2,1168,220420
,2,1061,220425
,2,35551,430
,3,36244,223140
,2,35487,21570
,2,35731,21575
,2,35685,224935
,2,200,224315
,2,35584,224320
,2,35582,224325
,2,1018,224330
,2,1380,224335
,2,659,224340
,2,35849,224345
,2,35529,224350
,2,820,224355
,2,35813,218255
,2,35551,221660
,3,36244,224530
,4,1,8950
,4,2,212160
,4,3,212150
,4,4,20135
,4,5,28620
,4,6,10490
,4,7,213525
,4,8,211880
,4,9,15695
,3,36372,21525
,3,36373,224940
,3,36372,16905
,3,36373,224945
,3,36372,200
,3,36373,5380
,3,36372,200
,3,36373,5380
,4,1,560
,4,3,224950
,4,4,224955
,4,1,560
,2,828,220140
,2,35447,220355
,2,35928,220360
,2,35590,220365
,2,35748,220370
,2,1458,220375
,2,35537,220380
,2,35897,222900
,2,35491,220385
,2,1459,220390
,2,1460,220395
,2,35551,196135
,3,36315,224960
,3,36244,223025
,4,1,560
,4,1,26450
,4,1,560
,0,856,16510
,0,855,220035
,0,34821,16975
,0,34822,26455
,0,34823,30500
,0,972,20250
,0,820,11735
,0,833,85
,0,35752,220040
,0,35536,220045
,0,35507,220050
,0,35741,220055
,0,1121,220060
,0,34358,85
,0,35807,220065
,0,35856,220070
,0,35841,220075
,0,35668,220080
,0,35794,220085
,0,35595,220090
,0,35714,220095
,0,35563,220100
,0,35815,220105
,0,35737,220110
,0,35785,220115
,0,1330,220120
,0,35440,220125
,0,35662,220130
,0,797,220135
,0,35471,220140
,0,35562,220145
,0,35663,220150
,0,35928,220155
,0,35751,220160
,0,35601,85
,2,35551,425
,3,36253,224975
,3,36254,219530
,3,36255,220165
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,20370
,3,36257,20365
,3,36258,685
,3,36244,195240
,4,2,211605
,4,3,224665
,2,828,220420
,2,34731,220440
,2,35551,223095
,3,36315,224965
,3,36244,223125
,4,1,560
,4,1,220080
,0,856,16510
,0,35029,220035
,0,34723,203880
,0,35671,203935
,0,972,20250
,0,1168,220420
,0,1061,220425
,0,797,220430
,2,35551,425
,3,36254,218845
,3,36255,220435
,6,64,85
,3,36244,12670
,4,1,4220
,3,36256,20370
,3,36257,20365
,3,36258,685
,3,36244,195240
,4,2,212825
,4,3,224690
,2,35597,85
,2,1343,110
,2,1026,100
,2,35551,430
,3,36244,223270
,3,36256,17005
,3,36257,16980
,3,36258,685
,3,36244,195240
,4,2,205775
,4,3,29140
,4,5,223850
,2,35551,1070
,3,36244,198805
,2,35551,1070
,3,36244,198805
,3,36256,30525
,3,36257,30550
,3,36258,685
,3,36244,195240
,4,2,204750
,3,36372,21530
,3,36373,224970
,2,35551,1070
,3,36244,198805
,0,35711,205775
,0,1404,29140
,0,35758,110
,0,44,224740
,2,35711,205775
,2,35551,425
,3,36254,220660
,3,36255,224980
,6,64,85
,3,36244,223825
,4,1,4220
,4,1,224740
,2,35551,1070
,3,36244,198805
,3,36244,7530
,4,1,218250
,4,2,224585
,3,36256,540
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,224315
,3,36259,425
,3,36260,224390
,3,36244,234750
,3,36244,7530
,4,1,218250
,4,2,224585
,3,36256,540
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,224320
,3,36259,425
,3,36260,224405
,3,36244,234750
,3,36244,7530
,4,1,218265
,4,2,224585
,3,36256,540
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,224325
,3,36259,425
,3,36260,224420
,3,36244,234750
,3,36244,7530
,4,1,218265
,4,2,224585
,3,36256,540
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,224330
,3,36259,425
,3,36260,224435
,3,36244,234750
,3,36244,7530
,4,1,218270
,4,2,224585
,3,36256,540
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,224335
,3,36259,425
,3,36260,224450
,3,36244,234750
,3,36244,7530
,4,1,218275
,4,2,224585
,3,36256,540
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,224340
,3,36259,425
,3,36260,224465
,3,36244,234750
,3,36244,7530
,4,1,218280
,4,2,224585
,3,36256,540
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,224345
,3,36259,425
,3,36260,224480
,3,36244,234750
,3,36244,7530
,4,1,218285
,4,2,224585
,3,36256,540
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,224350
,3,36259,425
,3,36260,224495
,3,36244,234750
,3,36244,7530
,4,1,218290
,4,2,224585
,3,36256,540
,3,36257,440
,3,36258,970
,3,36244,195240
,4,2,224355
,3,36259,425
,3,36260,224510
,3,36244,234750
,2,35551,430
,3,36244,195565
,2,883,85
,2,35551,430
,3,36244,203065
,2,883,85
,2,35551,430
,3,36244,203065
,4,1,560
,3,36256,17005
,3,36257,16980
,3,36258,685
,3,36244,195240
,4,2,205775
,4,3,29140
,4,5,224740
,4,1,224990
,4,3,224995
,3,36244,225010
,3,36244,225010
,3,36244,234750
,3,36244,225020
,3,36244,234750
,3,36244,225020
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,234750
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225020
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,234750
,3,36244,234750
,3,36244,225610
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225010
,3,36244,225020
,3,36244,225020
,3,36244,234750
,3,36251,225145
,3,36244,230605
,4,1,208590
,3,36251,225150
,3,36244,230605
,4,1,208590
,3,36251,225195
,3,36244,230605
,4,1,208590
,3,36251,225215
,3,36244,230605
,3,36251,225220
,3,36244,230605
,3,36251,225240
,3,36244,230605
,4,1,230635
,4,2,230625
,3,36251,225250
,3,36244,230605
,4,1,230640
,4,2,209000
,3,36251,225265
,3,36244,230605
,4,1,230645
,4,2,208590
,3,36251,225270
,3,36244,230605
,4,1,230650
,4,2,208590
,4,3,208590
,3,36251,225275
,3,36244,230605
,4,1,230655
,4,2,208590
,4,3,208590
,3,36251,225280
,3,36244,230605
,4,1,230660
,4,2,208590
,3,36251,225285
,3,36244,230605
,4,1,208590
,3,36251,225290
,3,36244,230605
,4,1,208590
,3,36251,225295
,3,36244,230605
,4,1,208590
,3,36251,225300
,3,36244,230605
,4,1,208590
,3,36251,225305
,3,36244,230605
,4,1,208590
,3,36251,225310
,3,36244,230605
,4,1,208590
,3,36251,225315
,3,36244,230605
,4,1,208590
,3,36251,225320
,3,36244,230605
,4,1,208590
,3,36251,225325
,3,36244,230605
,4,1,208590
,3,36251,225330
,3,36244,230605
,4,1,208590
,3,36251,225340
,3,36244,230605
,4,1,208355
,4,2,208590
,3,36251,225345
,3,36244,230605
,4,1,230665
,3,36251,225350
,3,36244,230605
,4,1,230665
,3,36251,225355
,3,36244,230605
,4,1,230665
,3,36251,225360
,3,36244,230605
,4,1,230665
,3,36251,225365
,3,36244,230605
,4,1,230665
,3,36251,225370
,3,36244,230605
,4,1,230745
,3,36251,225375
,3,36244,230605
,4,1,208590
,3,36251,225380
,3,36244,230605
,4,1,208590
,3,36251,225390
,3,36244,230605
,4,1,208590
,4,2,208625
,3,36251,225395
,3,36244,230605
,4,1,208590
,4,2,225020
,4,3,230765
,4,4,208590
,4,5,230765
,4,6,208590
,4,7,208590
,4,8,208590
,4,9,230765
,4,10,208590
,4,11,208590
,4,12,208590
,3,36251,225400
,3,36244,230605
,4,1,208590
,4,2,208590
,3,36251,225405
,3,36244,230605
,4,1,206030
,4,3,208590
,3,36251,225410
,3,36244,230605
,4,1,208590
,3,36251,225415
,3,36244,230605
,4,1,208590
,4,2,208590
,3,36251,225425
,3,36244,230605
,4,1,208940
,4,2,208340
,4,3,208590
,3,36251,225430
,3,36244,230605
,4,1,208590
,3,36251,225435
,3,36244,230605
,4,1,208590
,3,36251,225440
,3,36244,230605
,4,1,208590
,3,36251,225445
,3,36244,230605
,4,1,208590
,4,2,208590
,3,36251,225450
,3,36244,230605
,4,1,208940
,4,2,208340
,4,3,208590
,3,36251,225455
,3,36244,230605
,4,1,208590
,3,36251,225460
,3,36244,230605
,4,1,208590
,3,36251,225465
,3,36244,230605
,4,1,230830
,3,36251,225470
,3,36244,230605
,4,1,208590
,3,36251,225475
,3,36244,230605
,4,1,208590
,4,2,208525
,4,3,225020
,4,4,208865
,4,5,208285
,4,6,208780
,4,7,208865
,4,8,208715
,4,9,208285
,4,10,208780
,4,11,208525
,4,12,225020
,4,13,208865
,4,14,208285
,4,15,208780
,4,16,208865
,4,17,208715
,4,18,208285
,4,19,208780
,3,36251,225480
,3,36244,230605
,4,1,208590
,3,36251,225485
,3,36244,230605
,4,1,208590
,4,2,208525
,4,3,225020
,4,4,208865
,4,5,208285
,4,6,208780
,4,7,208865
,4,8,208715
,4,9,208285
,4,10,208780
,4,11,208525
,4,12,225020
,4,13,208865
,4,14,208285
,4,15,208780
,4,16,208865
,4,17,208715
,4,18,208285
,4,19,208780
,3,36251,225490
,3,36244,230605
,4,1,206030
,4,2,208340
,4,4,208340
,4,5,208590
,3,36251,225495
,3,36244,230605
,4,1,208865
,4,2,208285
,4,3,208780
,4,4,208590
,3,36251,225500
,3,36244,230605
,4,1,208715
,4,2,208285
,4,3,208780
,4,4,208590
,3,36251,225545
,3,36244,230605
,4,1,230870
,4,2,208590
,4,3,208635
,3,36251,225550
,3,36244,230605
,4,1,230875
,4,2,208590
,3,36251,225555
,3,36244,230605
,4,1,230880
,4,2,208590
,3,36251,225560
,3,36244,230605
,4,1,230885
,4,2,208590
,3,36251,225565
,3,36244,230605
,4,1,230890
,4,2,208590
,3,36251,225570
,3,36244,230605
,4,1,230895
,4,2,208590
,3,36251,225575
,3,36244,230605
,4,1,230900
,4,2,208590
,3,36251,225580
,3,36244,230605
,4,1,230905
,4,2,208590
,3,36251,225585
,3,36244,230605
,4,1,230910
,4,2,208590
,3,36251,225590
,3,36244,230605
,4,1,230915
,4,2,208590
,3,36251,225595
,3,36244,230605
,4,1,230920
,4,2,208590
,3,36251,225600
,3,36244,230605
,3,36251,225605
,3,36244,230605
,3,36251,229445
,3,36244,230605
,4,1,3380
,4,2,216430
,4,3,3070
,4,4,209225
,3,36251,226815
,3,36244,230605
,4,1,3380
,4,2,214575
,4,3,1590
,4,4,209300
,3,36251,229275
,3,36244,230605
,4,1,3380
,4,2,215730
,4,3,2490
,4,4,209300
,3,36251,225985
,3,36244,230605
,4,1,231145
,4,2,208750
,4,3,230685
,3,36251,225955
,3,36244,230605
,4,1,198805
,4,2,208985
,4,3,230670
,3,36261,350
,3,36260,214485
,3,36244,234750
,3,36251,226180
,3,36244,230605
,4,1,217040
,4,2,430
,4,3,510
,4,4,475
,4,5,209300
,3,36251,226355
,3,36244,230605
,4,1,3380
,4,2,214655
,4,3,230665
,3,36251,226360
,3,36244,230605
,4,1,3380
,4,2,215100
,4,3,230665
,3,36251,226380
,3,36244,230605
,4,1,3380
,4,2,216255
,4,3,230665
,3,36251,226385
,3,36244,230605
,4,1,3380
,4,2,216515
,4,3,230665
,3,36251,227340
,3,36244,230605
,4,1,3380
,4,2,214575
,4,3,1590
,4,4,209290
,3,36251,226395
,3,36244,230605
,4,1,3380
,4,2,214785
,4,3,1740
,4,4,209045
,3,36251,228810
,3,36244,230605
,4,1,3380
,4,2,216230
,4,3,2920
,4,4,209360
,3,36251,226420
,3,36244,230605
,4,1,203820
,4,2,208755
,4,3,230685
,3,36251,226425
,3,36244,230605
,4,1,203820
,4,2,208755
,4,3,230685
,3,36251,226445
,3,36244,230605
,4,1,204040
,4,2,208755
,4,3,230685
,3,36251,226550
,3,36244,230605
,4,1,3380
,4,2,215290
,4,3,230665
,3,36251,226560
,3,36244,230605
,4,1,3380
,4,2,215235
,4,3,2085
,4,4,209290
,3,36251,227555
,3,36244,230605
,4,1,3380
,4,2,215940
,4,3,2655
,4,4,209360
,3,36251,226630
,3,36244,230605
,4,1,3380
,4,2,216260
,4,3,2945
,4,4,209045
,3,36251,226640
,3,36244,230605
,4,1,3380
,4,2,215065
,4,3,1950
,4,4,209045
,3,36251,226635
,3,36244,230605
,4,1,3380
,4,2,214750
,4,3,230665
,3,36251,226600
,3,36244,230605
,4,1,3645
,4,2,208335
,4,3,230690
,3,36251,227065
,3,36244,230605
,4,1,3380
,4,2,215570
,4,3,2350
,4,4,230625
,4,5,209290
,3,36251,226625
,3,36244,230605
,4,1,3645
,4,2,208550
,4,3,230670
,3,36251,226590
,3,36244,230605
,4,1,3645
,4,2,208295
,4,3,230690
,3,36251,226650
,3,36244,230605
,4,1,195515
,4,2,208550
,4,3,230670
,3,36251,226655
,3,36244,230605
,4,1,3380
,4,2,215570
,4,3,2350
,4,4,209045
,3,36251,226775
,3,36244,230605
,4,1,196130
,4,2,208755
,4,3,230685
,3,36251,226780
,3,36244,230605
,4,1,196115
,4,2,208755
,4,3,230685
,3,36251,227535
,3,36244,230605
,4,1,204160
,4,2,208550
,4,3,230670
,3,36251,227770
,3,36244,230605
,4,1,204160
,4,2,208335
,4,3,230690
,3,36251,226935
,3,36244,230605
,4,1,195780
,4,2,16515
,4,3,209300
,3,36251,227055
,3,36244,230605
,4,1,195900
,4,2,230665
,3,36251,226945
,3,36244,230605
,4,1,195780
,4,2,16520
,4,3,209300
,3,36251,226970
,3,36244,230605
,4,1,204160
,4,2,216885
,4,4,208865
,4,5,208865
,4,6,208675
,4,7,208910
,4,8,208590
,4,9,209300
,3,36251,227005
,3,36244,230605
,4,1,195900
,4,2,195810
,4,3,16540
,4,4,209130
,3,36251,227015
,3,36244,230605
,4,1,195900
,4,2,195810
,4,3,16535
,4,4,209130
,3,36251,226940
,3,36244,230605
,4,1,195780
,4,2,230665
,3,36251,226950
,3,36244,230605
,4,1,195780
,4,2,230665
,3,36251,229725
,3,36244,230605
,4,2,4920
,4,4,4920
,4,6,4920
,4,8,4920
,4,9,4920
,4,10,208435
,4,11,510
,4,12,475
,4,13,209300
,3,36251,226980
,3,36244,230605
,4,1,195850
,4,2,195850
,4,3,195810
,4,4,430
,4,5,510
,4,6,195870
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,226985
,3,36244,230605
,4,1,195870
,4,2,195870
,4,3,195810
,4,4,430
,4,5,510
,4,6,195880
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,226990
,3,36244,230605
,4,1,195880
,4,2,195880
,4,3,195810
,4,4,430
,4,5,510
,4,6,195890
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,226995
,3,36244,230605
,4,1,195890
,4,2,195890
,4,3,195810
,4,4,430
,4,5,510
,4,6,195900
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,227010
,3,36244,230605
,4,1,195900
,4,2,230665
,3,36251,227020
,3,36244,230605
,4,1,195780
,4,2,16525
,4,3,209300
,3,36251,227025
,3,36244,230605
,4,1,195780
,4,2,16530
,4,3,209300
,3,36251,227035
,3,36244,230605
,4,1,195900
,4,2,230665
,3,36251,227060
,3,36244,230605
,4,1,195780
,4,2,16510
,4,3,230665
,3,36251,226770
,3,36244,230605
,4,1,195900
,4,2,208755
,4,3,230685
,3,36251,227030
,3,36244,230605
,4,1,195780
,4,2,230665
,3,36251,227140
,3,36244,230605
,4,1,3380
,4,2,216690
,4,3,230665
,3,36251,227145
,3,36244,230605
,4,1,3380
,4,2,216705
,4,3,370
,4,4,209045
,3,36251,227150
,3,36244,230605
,4,1,3380
,4,2,216215
,4,3,2905
,4,4,209290
,3,36251,227155
,3,36244,230605
,4,1,3380
,4,2,215680
,4,3,2445
,4,4,209290
,3,36251,227160
,3,36244,230605
,4,1,3380
,4,2,216055
,4,3,230665
,3,36251,227170
,3,36244,230605
,4,1,16560
,4,2,196115
,4,3,230670
,3,36251,227175
,3,36244,230605
,4,1,3380
,4,2,215040
,4,3,1930
,4,4,209290
,3,36251,227165
,3,36244,230605
,4,1,3645
,4,2,3640
,4,3,3660
,4,5,208865
,4,6,208865
,4,7,208675
,4,8,208910
,4,9,208590
,4,10,209300
,3,36251,227330
,3,36244,230605
,4,1,3380
,4,2,215860
,4,3,2600
,4,4,209195
,3,36251,227180
,3,36244,230605
,4,1,3380
,4,2,216265
,4,3,230665
,3,36251,228060
,3,36244,230605
,4,1,3380
,4,2,215045
,4,3,1935
,4,4,209290
,3,36251,227615
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209300
,3,36251,227620
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209300
,3,36251,227275
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209300
,3,36251,228065
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209300
,3,36251,229755
,3,36244,230605
,4,1,203065
,4,2,230665
,3,36251,227610
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209300
,3,36251,227295
,3,36244,230605
,4,1,3380
,4,2,216240
,4,3,2930
,4,4,209290
,3,36251,227185
,3,36244,230605
,4,1,6325
,4,2,6325
,4,3,196245
,4,4,196320
,4,5,208565
,4,6,208755
,4,7,230685
,3,36251,227190
,3,36244,230605
,4,1,196320
,4,2,196320
,4,3,196245
,4,4,196330
,4,5,208565
,4,6,208755
,4,7,230685
,3,36251,227195
,3,36244,230605
,4,1,196330
,4,2,196330
,4,3,196245
,4,4,196340
,4,5,208565
,4,6,208755
,4,7,230685
,3,36251,227200
,3,36244,230605
,4,1,196340
,4,2,196340
,4,3,196245
,4,4,196350
,4,5,208565
,4,6,208755
,4,7,230685
,3,36251,227205
,3,36244,230605
,4,1,196350
,4,2,196350
,4,3,196245
,4,4,196360
,4,5,208565
,4,6,208755
,4,7,230685
,3,36251,227210
,3,36244,230605
,4,1,196360
,4,2,196360
,4,3,196245
,4,4,196370
,4,5,208565
,4,6,208755
,4,7,230685
,3,36251,227215
,3,36244,230605
,4,1,196370
,4,2,196370
,4,3,196245
,4,4,196380
,4,5,208565
,4,6,208755
,4,7,230685
,3,36251,227220
,3,36244,230605
,4,1,196380
,4,2,196380
,4,3,196245
,4,4,196390
,4,5,208565
,4,6,208755
,4,7,230685
,3,36251,227225
,3,36244,230605
,4,1,196390
,4,2,196390
,4,3,196245
,4,4,196400
,4,5,208565
,4,6,208755
,4,7,230685
,3,36251,227230
,3,36244,230605
,4,1,196400
,4,2,196400
,4,3,196245
,4,4,196410
,4,5,208565
,4,6,208755
,4,7,230685
,3,36251,227235
,3,36244,230605
,4,1,196410
,4,2,196410
,4,3,196245
,4,4,196420
,4,5,208565
,4,6,208755
,4,7,230685
,3,36251,227240
,3,36244,230605
,4,1,196420
,4,2,196420
,4,3,196245
,4,4,196430
,4,5,208565
,4,6,208755
,4,7,230685
,3,36251,226825
,3,36244,230605
,4,1,196430
,4,2,208755
,4,3,230685
,3,36251,226830
,3,36244,230605
,4,1,196430
,4,2,208755
,4,3,230685
,3,36251,227300
,3,36244,230605
,4,1,3380
,4,2,215465
,4,3,2250
,4,4,209290
,3,36251,227380
,3,36244,230605
,4,1,3380
,4,2,216145
,4,3,2845
,4,4,209290
,3,36251,227305
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209130
,3,36251,227315
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209130
,3,36251,227310
,3,36244,230605
,4,1,196430
,4,2,230665
,3,36251,227320
,3,36244,230605
,4,1,196430
,4,2,230665
,3,36251,227335
,3,36244,230605
,4,1,3380
,4,2,215610
,4,3,2390
,4,4,209195
,3,36251,227345
,3,36244,230605
,4,1,3380
,4,2,215470
,4,3,2255
,4,4,209290
,3,36251,227350
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209130
,3,36251,227450
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209130
,3,36251,227365
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209130
,3,36251,227460
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209130
,3,36251,227625
,3,36244,230605
,4,1,3380
,4,2,215315
,4,3,2125
,4,4,209290
,3,36251,227390
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209130
,3,36251,228070
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209130
,3,36251,227385
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209130
,3,36251,227405
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209130
,3,36251,227630
,3,36244,230605
,4,1,196430
,4,2,196245
,4,3,230625
,4,4,209130
,3,36251,227355
,3,36244,230605
,4,1,196430
,4,2,230665
,3,36251,227370
,3,36244,230605
,4,1,196430
,4,2,230665
,3,36251,226905
,3,36244,230605
,4,1,196430
,4,2,230665
,3,36251,227395
,3,36244,230605
,4,1,196430
,4,2,230665
,3,36251,227410
,3,36244,230605
,4,1,196430
,4,2,230665
,3,36251,229815
,3,36244,230605
,4,1,195960
,4,2,230665
,3,36251,227415
,3,36244,230605
,4,1,196760
,4,2,208750
,4,3,230685
,3,36251,227120
,3,36244,230605
,4,1,195900
,4,2,208755
,4,3,230685
,3,36251,227560
,3,36244,230605
,4,1,3380
,4,2,215110
,4,3,230665
,3,36251,228115
,3,36244,230605
,4,1,12670
,4,2,12670
,4,3,425
,4,4,565
,4,5,430
,4,6,510
,4,7,201055
,4,8,208590
,4,9,230685
,3,36251,228050
,3,36244,230605
,4,1,980
,4,2,214315
,4,3,230665
,3,36251,227135
,3,36244,230605
,4,1,197760
,4,2,208755
,4,3,230685
,3,36251,228055
,3,36244,230605
,4,1,450
,4,2,360
,4,3,209225
,3,36251,227250
,3,36244,230605
,4,1,196430
,4,2,208755
,4,3,230685
,3,36251,227255
,3,36244,230605
,4,1,196430
,4,2,208755
,4,3,230685
,3,36251,227265
,3,36244,230605
,4,1,196430
,4,2,208755
,4,3,230685
,3,36251,227270
,3,36244,230605
,4,1,196430
,4,2,208755
,4,3,230685
,3,36251,227285
,3,36244,230605
,4,1,196430
,4,2,208755
,4,3,230685
,3,36251,227290
,3,36244,230605
,4,1,196430
,4,2,208755
,4,3,230685
,3,36251,227455
,3,36244,230605
,4,1,196430
,4,2,230665
,3,36251,227465
,3,36244,230605
,4,1,196430
,4,2,230665
,3,36251,228075
,3,36244,230605
,4,1,196430
,4,2,230665
,3,36251,227440
,3,36244,230605
,4,1,196430
,4,2,208755
,4,3,230685
,3,36251,227445
,3,36244,230605
,4,1,196430
,4,2,208755
,4,3,230685
,3,36251,227635
,3,36244,230605
,4,1,196430
,4,2,230665
,3,36251,229095
,3,36244,230605
,4,1,3380
,4,2,216600
,4,3,3210
,4,4,209195
,3,36251,227750
,3,36244,230605
,4,1,3380
,4,2,215975
,4,3,230665
,3,36251,227755
,3,36244,230605
,4,1,3380
,4,2,214960
,4,3,1860
,4,4,209195
,3,36251,227760
,3,36244,230605
,4,1,3380
,4,2,215545
,4,3,230665
,3,36251,227765
,3,36244,230605
,4,1,3380
,4,2,215025
,4,3,1915
,4,4,209360
,3,36251,228650
,3,36244,230605
,4,1,3380
,4,2,216135
,4,3,230665
,3,36251,229560
,3,36244,230605
,4,1,3380
,4,2,216080
,4,3,2790
,4,4,209290
,3,36251,228295
,3,36244,230605
,4,1,3380
,4,2,215685
,4,3,230665
,3,36251,227580
,3,36244,230605
,4,1,3380
,4,2,216420
,4,3,230665
,3,36251,227585
,3,36244,230605
,4,1,3380
,4,2,214725
,4,3,1695
,4,4,209360
,3,36251,227715
,3,36244,230605
,4,1,980
,4,2,214405
,4,3,230665
,3,36251,227820
,3,36244,230605
,4,1,204125
,4,2,230665
,3,36251,227725
,3,36244,230605
,4,1,204125
,4,2,208550
,4,3,230670
,3,36251,227730
,3,36244,230605
,4,1,685
,4,2,1225
,4,3,211195
,4,4,208590
,4,5,225020
,4,6,232445
,4,7,208590
,4,8,232445
,4,9,208590
,4,10,208590
,4,11,208590
,4,12,232445
,4,13,208590
,4,14,208590
,4,15,7555
,4,16,209300
,3,36251,227825
,3,36244,230605
,4,1,685
,4,2,1225
,4,3,211195
,4,4,2805
,4,5,230625
,4,6,209300
,3,36251,227830
,3,36244,230605
,4,1,204160
,4,2,216885
,4,3,2695
,4,4,230625
,4,5,209300
,3,36251,227855
,3,36244,230605
,4,1,204160
,4,2,216885
,4,3,2980
,4,4,209300
,3,36251,227835
,3,36244,230605
,4,1,3380
,4,2,215730
,4,3,2490
,4,4,209290
,3,36251,227840
,3,36244,230605
,4,1,3380
,4,2,216315
,4,3,230665
,3,36251,227850
,3,36244,230605
,4,1,204160
,4,2,216885
,4,3,7470
,4,4,209225
,3,36251,227860
,3,36244,230605
,4,1,199630
,4,2,208750
,4,3,230685
,3,36251,228700
,3,36244,230605
,4,1,199645
,4,2,22945
,4,3,209225
,3,36251,229025
,3,36244,230605
,4,1,199645
,4,2,230665
,3,36251,228375
,3,36244,230605
,4,1,202905
,4,2,208755
,4,3,230685
,3,36251,229065
,3,36244,230605
,4,1,202905
,4,2,199550
,4,3,22950
,4,4,209300
,3,36251,229410
,3,36244,230605
,4,1,202935
,4,2,230665
,3,36251,228705
,3,36244,230605
,4,1,199645
,4,2,22925
,4,3,209225
,3,36251,228715
,3,36244,230605
,4,1,980
,4,2,214160
,4,3,230665
,3,36251,228720
,3,36244,230605
,4,1,1435
,4,2,1430
,4,3,230625
,4,4,209300
,3,36251,228730
,3,36244,230605
,4,1,199645
,4,2,22885
,4,3,209225
,3,36251,228710
,3,36244,230605
,4,1,685
,4,2,1225
,4,3,211195
,4,4,1990
,4,5,209225
,3,36251,227930
,3,36244,230605
,4,1,3380
,4,2,216540
,4,3,3170
,4,4,209195
,3,36251,227985
,3,36244,230605
,4,1,3380
,4,2,214635
,4,3,1635
,4,4,209360
,3,36251,228755
,3,36244,230605
,4,1,3380
,4,2,215105
,4,3,1975
,4,4,209360
,3,36251,228725
,3,36244,230605
,4,1,3645
,4,2,3640
,4,3,3660
,4,4,208590
,4,5,209130
,3,36251,228735
,3,36244,230605
,4,1,199645
,4,2,230665
,3,36251,228740
,3,36244,230605
,4,1,450
,4,2,355
,4,3,209300
,3,36251,228745
,3,36244,230605
,4,1,685
,4,2,1225
,4,3,211195
,4,4,2360
,4,5,230625
,4,6,209300
,3,36251,227970
,3,36244,230605
,4,1,199685
,4,2,208755
,4,3,230685
,3,36251,227975
,3,36244,230605
,4,1,199685
,4,2,208755
,4,3,230685
,3,36251,228765
,3,36244,230605
,4,1,199645
,4,2,230665
,3,36251,228770
,3,36244,230605
,4,1,199210
,4,2,22105
,4,3,230625
,4,4,209225
,3,36251,228750
,3,36244,230605
,4,1,3380
,4,2,216700
,4,3,3295
,4,4,209360
,3,36251,228760
,3,36244,230605
,4,1,3380
,4,2,216645
,4,3,355
,4,4,209300
,3,36251,228775
,3,36244,230605
,4,1,195780
,4,2,16510
,4,3,209300
,3,36251,228790
,3,36244,230605
,4,1,202790
,4,2,199945
,4,3,27760
,4,4,209130
,3,36251,229010
,3,36244,230605
,4,1,199645
,4,2,230665
,3,36251,229015
,3,36244,230605
,4,1,202555
,4,2,28220
,4,3,209225
,3,36251,228160
,3,36244,230605
,4,1,201415
,4,2,208755
,4,3,230685
,3,36251,228780
,3,36244,230605
,4,1,202555
,4,2,28010
,4,3,209300
,3,36251,228350
,3,36244,230605
,4,1,199210
,4,2,22170
,4,3,209300
,3,36251,228785
,3,36244,230605
,4,1,200630
,4,2,25310
,4,4,232835
,4,6,208590
,4,7,208590
,4,8,209300
,3,36251,228315
,3,36244,230605
,4,1,685
,4,2,1225
,4,3,211195
,4,4,2275
,4,5,209300
,3,36251,228200
,3,36244,230605
,4,1,3380
,4,2,214915
,4,3,230665
,3,36251,228205
,3,36244,230605
,4,1,1275
,4,2,217330
,4,3,2960
,4,4,209300
,3,36251,228210
,3,36244,230605
,4,1,3380
,4,2,215640
,4,3,2415
,4,4,209290
,3,36251,228365
,3,36244,230605
,4,1,202790
,4,2,199945
,4,3,27635
,4,4,209300
,3,36251,228325
,3,36244,230605
,4,1,202790
,4,2,230665
,3,36251,229020
,3,36244,230605
,4,1,199210
,4,2,22105
,4,3,230625
,4,4,209300
,3,36251,228335
,3,36244,230605
,4,1,510
,4,2,475
,4,3,230665
,3,36251,228340
,3,36244,230605
,4,1,6290
,4,2,425
,4,3,565
,4,4,550
,4,5,209225
,3,36251,228280
,3,36244,230605
,4,1,1400
,4,2,208755
,4,3,230685
,3,36251,228330
,3,36244,230605
,4,1,1400
,4,2,214495
,4,3,3265
,4,4,209300
,3,36251,228275
,3,36244,230605
,4,1,211220
,4,2,208550
,4,3,230670
,3,36251,228285
,3,36244,230605
,4,1,1400
,4,2,230665
,3,36251,228345
,3,36244,230605
,4,1,202555
,4,2,28005
,4,3,209300
,3,36251,228360
,3,36244,230605
,4,1,202790
,4,2,199945
,4,3,27780
,4,4,209130
,3,36251,228290
,3,36244,230605
,4,1,1400
,4,2,230665
,3,36251,228255
,3,36244,230605
,4,1,3380
,4,2,216135
,4,3,230685
,3,36251,228305
,3,36244,230605
,4,1,3380
,4,2,216660
,4,3,3260
,4,4,209045
,3,36251,228270
,3,36244,230605
,4,1,211220
,4,2,208335
,4,3,230690
,3,36251,228355
,3,36244,230605
,4,1,200630
,4,2,25345
,4,4,232990
,4,6,208590
,4,7,208590
,4,8,209300
,3,36251,229030
,3,36244,230605
,4,1,22355
,4,2,22355
,4,3,199550
,4,4,430
,4,5,510
,4,6,202855
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229035
,3,36244,230605
,4,1,202855
,4,2,202855
,4,3,199550
,4,4,430
,4,5,510
,4,6,202865
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229040
,3,36244,230605
,4,1,202865
,4,2,202865
,4,3,199550
,4,4,430
,4,5,510
,4,6,202875
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229045
,3,36244,230605
,4,1,202875
,4,2,202875
,4,3,199550
,4,4,430
,4,5,510
,4,6,202885
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229050
,3,36244,230605
,4,1,202885
,4,2,202885
,4,3,199550
,4,4,430
,4,5,510
,4,6,202895
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229055
,3,36244,230605
,4,1,202895
,4,2,202895
,4,3,199550
,4,4,430
,4,5,510
,4,6,202905
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229070
,3,36244,230605
,4,1,202905
,4,2,230665
,3,36251,229075
,3,36244,230605
,4,1,202905
,4,2,230665
,3,36251,228400
,3,36244,230605
,4,1,202905
,4,2,208755
,4,3,230685
,3,36251,229080
,3,36244,230605
,4,1,199210
,4,2,22155
,4,3,209300
,3,36251,229085
,3,36244,230605
,4,1,199645
,4,2,22905
,4,3,209300
,3,36251,229100
,3,36244,230605
,4,1,202905
,4,2,202905
,4,3,199550
,4,4,430
,4,5,510
,4,6,202935
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229105
,3,36244,230605
,4,1,199210
,4,2,22165
,4,3,209300
,3,36251,229110
,3,36244,230605
,4,1,202935
,4,2,208755
,4,3,230685
,3,36251,228665
,3,36244,230605
,4,1,685
,4,2,1225
,4,3,211195
,4,4,3215
,4,5,209225
,3,36251,228485
,3,36244,230605
,4,1,211220
,4,2,216885
,4,3,7450
,4,4,209300
,3,36251,229090
,3,36244,230605
,4,1,202915
,4,2,230665
,3,36251,228470
,3,36244,230605
,4,1,198805
,4,2,216885
,4,3,7450
,4,4,209225
,3,36251,228475
,3,36244,230605
,4,1,198805
,4,2,216885
,4,3,7490
,4,4,209300
,3,36251,228460
,3,36244,230605
,4,1,198805
,4,2,216885
,4,4,208865
,4,5,208865
,4,6,208675
,4,7,208910
,4,8,208590
,4,9,209300
,3,36251,228455
,3,36244,230605
,4,1,3380
,4,2,214990
,4,3,1885
,4,4,209360
,3,36251,228515
,3,36244,230605
,4,1,202965
,4,2,208755
,4,3,230685
,3,36251,228830
,3,36244,230605
,4,1,202965
,4,2,230665
,3,36251,228850
,3,36244,230605
,4,1,202965
,4,2,230665
,3,36251,228860
,3,36244,230605
,4,1,202555
,4,2,27875
,4,3,209230
,3,36251,228870
,3,36244,230605
,4,1,202555
,4,2,28000
,4,3,209300
,3,36251,228880
,3,36244,230605
,4,1,202790
,4,2,230665
,3,36251,228835
,3,36244,230605
,4,1,980
,4,2,214450
,4,3,230665
,3,36251,228950
,3,36244,230605
,4,1,202555
,4,2,27885
,4,3,230625
,4,4,209090
,3,36251,228970
,3,36244,230605
,4,1,202555
,4,2,27865
,4,3,209300
,3,36251,228980
,3,36244,230605
,4,1,203020
,4,2,198030
,4,3,20775
,4,4,230625
,4,5,209300
,3,36251,228840
,3,36244,230605
,4,1,198255
,4,2,20735
,4,3,209300
,3,36251,228845
,3,36244,230605
,4,1,685
,4,2,1225
,4,3,211195
,4,4,1900
,4,5,209130
,3,36251,228865
,3,36244,230605
,4,1,200630
,4,2,24995
,4,4,233250
,4,6,208590
,4,7,208590
,4,8,209230
,3,36251,228875
,3,36244,230605
,4,1,200630
,4,2,25380
,4,4,233270
,4,6,208590
,4,7,208590
,4,8,209300
,3,36251,228885
,3,36244,230605
,4,1,980
,4,2,214340
,4,3,230665
,3,36251,228890
,3,36244,230605
,4,1,203785
,4,2,1710
,4,3,209300
,3,36251,228895
,3,36244,230605
,4,1,17455
,4,2,17455
,4,3,198030
,4,4,430
,4,5,510
,4,6,202980
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,228900
,3,36244,230605
,4,1,202980
,4,2,230665
,3,36251,228905
,3,36244,230605
,4,1,198255
,4,2,230665
,3,36251,228910
,3,36244,230605
,4,1,202980
,4,2,202980
,4,3,198030
,4,4,430
,4,5,510
,4,6,203000
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,228915
,3,36244,230605
,4,1,202990
,4,2,230665
,3,36251,228920
,3,36244,230605
,4,1,203000
,4,2,203000
,4,3,198030
,4,4,430
,4,5,510
,4,6,203010
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,228925
,3,36244,230605
,4,1,203010
,4,2,230665
,3,36251,228590
,3,36244,230605
,4,1,202990
,4,2,208750
,4,3,230685
,3,36251,228930
,3,36244,230605
,4,1,203010
,4,2,230665
,3,36251,228935
,3,36244,230605
,4,1,203010
,4,2,230665
,3,36251,228945
,3,36244,230605
,4,1,18545
,4,2,18535
,4,4,233345
,4,6,208590
,4,7,208590
,4,8,209090
,3,36251,228955
,3,36244,230605
,4,1,198255
,4,2,20740
,4,3,209300
,3,36251,228965
,3,36244,230605
,4,1,200630
,4,2,25030
,4,4,233365
,4,6,208590
,4,7,208590
,4,8,209175
,3,36251,228975
,3,36244,230605
,4,1,200630
,4,2,24960
,4,4,233380
,4,6,208590
,4,7,208590
,4,8,209300
,3,36251,228985
,3,36244,230605
,4,1,980
,4,2,214330
,4,3,840
,4,4,209290
,3,36251,228990
,3,36244,230605
,4,1,203020
,4,2,230665
,3,36251,228995
,3,36244,230605
,4,1,203020
,4,2,230665
,3,36251,229000
,3,36244,230605
,4,1,203020
,4,2,230665
,3,36251,229005
,3,36244,230605
,4,1,202990
,4,2,197200
,4,3,18690
,4,5,233415
,4,7,208590
,4,8,208590
,4,9,209225
,3,36251,228660
,3,36244,230605
,4,1,203065
,4,2,208755
,4,3,230685
,3,36251,229265
,3,36244,230605
,4,1,203560
,4,2,30580
,4,3,230665
,3,36251,229270
,3,36244,230605
,4,1,12670
,4,2,425
,4,3,565
,4,4,555
,4,5,209225
,3,36251,229370
,3,36244,230605
,4,1,30135
,4,2,30135
,4,3,203240
,4,4,430
,4,5,510
,4,6,203675
,4,7,208590
,4,8,230685
,3,36251,229375
,3,36244,230605
,4,1,203675
,4,2,203675
,4,3,203240
,4,4,430
,4,5,510
,4,6,203685
,4,7,208565
,4,8,208750
,4,9,230685
,3,36251,229310
,3,36244,230605
,4,1,980
,4,2,214385
,4,3,230665
,3,36251,229315
,3,36244,230605
,4,1,216885
,4,2,7450
,4,3,230665
,3,36251,229185
,3,36244,230605
,4,1,203655
,4,2,208755
,4,3,230685
,3,36251,229190
,3,36244,230605
,4,1,203655
,4,2,208755
,4,3,230685
,3,36251,229335
,3,36244,230605
,4,1,202915
,4,2,230665
,3,36251,229340
,3,36244,230605
,4,1,203560
,4,2,30560
,4,3,209300
,3,36251,229280
,3,36244,230605
,4,1,29800
,4,2,29800
,4,3,203505
,4,4,430
,4,5,510
,4,6,203605
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229285
,3,36244,230605
,4,1,203605
,4,2,203605
,4,3,203505
,4,4,430
,4,5,510
,4,6,203615
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229290
,3,36244,230605
,4,1,203615
,4,2,203615
,4,3,203505
,4,4,430
,4,5,510
,4,6,203625
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229295
,3,36244,230605
,4,1,203625
,4,2,203625
,4,3,203505
,4,4,430
,4,5,510
,4,6,203635
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229300
,3,36244,230605
,4,1,203635
,4,2,203635
,4,3,203505
,4,4,430
,4,5,510
,4,6,203645
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229305
,3,36244,230605
,4,1,203645
,4,2,203645
,4,3,203505
,4,4,430
,4,5,510
,4,6,203655
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229320
,3,36244,230605
,4,1,204140
,4,2,230665
,3,36251,229330
,3,36244,230605
,4,1,3380
,4,2,214755
,4,3,1720
,4,4,209210
,3,36251,229345
,3,36244,230605
,4,1,203655
,4,2,230665
,3,36251,229405
,3,36244,230605
,4,1,203345
,4,2,233750
,4,3,209300
,3,36251,229350
,3,36244,230605
,4,1,980
,4,2,214370
,4,3,230665
,3,36251,229355
,3,36244,230605
,4,1,1270
,4,2,1260
,4,3,209130
,3,36251,229210
,3,36244,230605
,4,1,203655
,4,2,208755
,4,3,230685
,3,36251,229215
,3,36244,230605
,4,1,203655
,4,2,208755
,4,3,230685
,3,36251,229525
,3,36244,230605
,4,1,205975
,4,2,208345
,4,3,230670
,3,36251,229360
,3,36244,230605
,4,1,30135
,4,2,203240
,4,3,30220
,4,5,233665
,4,7,208590
,4,8,208590
,4,9,209225
,3,36251,229365
,3,36244,230605
,4,1,203345
,4,2,233740
,4,3,209300
,3,36251,229380
,3,36244,230605
,4,1,203685
,4,2,203685
,4,3,203240
,4,4,430
,4,5,510
,4,6,203695
,4,7,208565
,4,8,208750
,4,9,230685
,3,36251,229385
,3,36244,230605
,4,1,203345
,4,2,233745
,4,3,209225
,3,36251,229400
,3,36244,230605
,4,1,203705
,4,2,230665
,3,36251,229240
,3,36244,230605
,4,1,203655
,4,2,208755
,4,3,230685
,3,36251,229245
,3,36244,230605
,4,1,203705
,4,2,208750
,4,3,230685
,3,36251,229235
,3,36244,230605
,4,1,203655
,4,2,208755
,4,3,230685
,3,36251,229250
,3,36244,230605
,4,1,203705
,4,2,208750
,4,3,230685
,3,36251,229390
,3,36244,230605
,4,1,203655
,4,2,230665
,3,36251,229395
,3,36244,230605
,4,1,203655
,4,2,230665
,3,36383,203270
,3,36383,203285
,3,36383,203290
,3,36251,229425
,3,36244,230605
,4,1,206120
,4,2,208415
,4,3,230670
,3,36251,229435
,3,36244,230605
,4,1,206120
,4,2,209025
,4,3,230690
,3,36251,230555
,3,36244,230605
,4,1,202915
,4,2,230665
,3,36251,229480
,3,36244,230605
,4,1,203705
,4,2,230665
,3,36251,229495
,3,36244,230605
,4,1,203655
,4,2,230665
,3,36251,229530
,3,36244,230605
,4,1,203705
,4,2,203240
,4,3,30220
,4,5,233785
,4,7,208590
,4,8,208590
,4,9,209225
,3,36251,229535
,3,36244,230605
,4,1,203345
,4,2,233865
,4,3,209300
,3,36251,229485
,3,36244,230605
,4,1,203345
,4,2,233840
,4,3,209300
,3,36251,229540
,3,36244,230605
,4,1,203655
,4,2,230665
,3,36251,229545
,3,36244,230605
,4,1,203655
,4,2,203505
,4,3,430
,4,4,510
,4,5,230665
,3,36251,229550
,3,36244,230605
,4,1,203655
,4,2,230625
,4,3,209130
,3,36251,229490
,3,36244,230605
,4,1,203705
,4,2,230665
,3,36383,203275
,3,36251,229565
,3,36244,230605
,4,1,203655
,4,2,230665
,3,36251,229555
,3,36244,230605
,4,1,685
,4,2,1225
,4,3,211195
,4,4,2645
,4,5,209225
,3,36383,195145
,3,36383,203290
,3,36383,30520
,3,36383,203270
,3,36383,30130
,3,36383,203285
,3,36383,203290
,3,36383,11735
,3,36383,11735
,3,36383,195145
,3,36383,204080
,3,36251,230590
,3,36244,230605
,4,1,204115
,4,2,29565
,4,4,233920
,4,6,208590
,4,7,208590
,4,8,209130
,3,36251,229915
,3,36244,230605
,4,1,202915
,4,2,13660
,4,4,233950
,4,6,208590
,4,7,208590
,4,8,209300
,3,36251,229920
,3,36244,230605
,4,1,222040
,4,2,203940
,4,4,233955
,4,6,208590
,4,7,208590
,4,8,209300
,3,36251,229925
,3,36244,230605
,4,1,223140
,4,2,234500
,4,3,230665
,3,36251,230275
,3,36244,230605
,4,1,223980
,4,2,223980
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223990
,4,16,208590
,4,17,230685
,3,36251,230280
,3,36244,230605
,4,1,223990
,4,2,230665
,3,36251,230285
,3,36244,230605
,4,1,221680
,4,2,222020
,4,3,203890
,4,4,230665
,3,36251,230290
,3,36244,230605
,4,1,221680
,4,2,222020
,4,3,203890
,4,5,233980
,4,7,208590
,4,8,208590
,4,9,209130
,3,36251,230295
,3,36244,230605
,4,1,223990
,4,2,223990
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,224000
,4,16,208565
,4,17,208750
,4,18,230685
,3,36251,230300
,3,36244,230605
,4,1,224000
,4,2,224000
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,224010
,4,16,208565
,4,17,208750
,4,18,230685
,3,36251,229930
,3,36244,230605
,4,1,223065
,4,2,234505
,4,3,230665
,3,36251,229765
,3,36244,230605
,4,1,223270
,4,2,208755
,4,3,230685
,3,36251,229935
,3,36244,230605
,4,1,201055
,4,2,425
,4,3,565
,4,4,550
,4,5,209225
,3,36251,230255
,3,36244,230605
,4,1,223960
,4,2,230665
,3,36251,230260
,3,36244,230605
,4,1,221680
,4,2,222020
,4,3,203925
,4,5,234045
,4,7,208590
,4,8,208590
,4,9,209130
,3,36251,230265
,3,36244,230605
,4,1,223960
,4,2,223960
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223970
,4,16,208565
,4,17,208750
,4,18,230685
,3,36251,230270
,3,36244,230605
,4,1,223970
,4,2,223970
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223980
,4,16,208565
,4,17,208750
,4,18,230685
,3,36251,229940
,3,36244,230605
,4,1,218825
,4,2,218825
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223295
,4,16,208565
,4,17,208755
,4,18,230685
,3,36251,229945
,3,36244,230605
,4,1,223295
,4,2,223295
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223305
,4,16,208565
,4,17,208755
,4,18,230685
,3,36251,229950
,3,36244,230605
,4,1,201290
,4,2,27470
,4,3,230665
,3,36251,230195
,3,36244,230605
,4,1,223270
,4,2,230665
,3,36251,229860
,3,36244,230605
,4,1,223810
,4,2,208755
,4,3,230685
,3,36251,230200
,3,36244,230605
,4,1,223810
,4,2,223810
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223860
,4,16,208590
,4,17,230685
,3,36251,230205
,3,36244,230605
,4,1,223860
,4,2,223215
,4,3,222890
,4,4,201155
,4,5,201115
,4,6,201070
,4,7,200915
,4,8,26590
,4,9,209225
,3,36251,230240
,3,36244,230605
,4,1,223925
,4,2,223925
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223950
,4,16,208565
,4,17,208750
,4,18,230685
,3,36251,230245
,3,36244,230605
,4,1,223950
,4,2,223950
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223960
,4,16,208590
,4,17,230685
,3,36251,230250
,3,36244,230605
,4,1,223960
,4,2,230665
,3,36251,229960
,3,36244,230605
,4,1,223270
,4,2,430
,4,3,510
,4,4,230665
,3,36251,229880
,3,36244,230605
,4,1,223960
,4,2,208755
,4,3,230685
,3,36251,230170
,3,36244,230605
,4,1,223270
,4,2,230665
,3,36251,229955
,3,36244,230605
,4,1,200930
,4,2,425
,4,3,565
,4,4,550
,4,5,209225
,3,36251,230090
,3,36244,230605
,4,1,200980
,4,2,425
,4,3,565
,4,4,550
,4,5,209225
,3,36251,229840
,3,36244,230605
,4,1,223800
,4,2,208755
,4,3,230685
,3,36251,230175
,3,36244,230605
,4,1,223270
,4,2,230665
,3,36251,230180
,3,36244,230605
,4,1,223800
,4,2,223800
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223810
,4,16,208565
,4,17,208755
,4,18,230685
,3,36251,230185
,3,36244,230605
,4,1,223810
,4,2,223215
,4,3,222890
,4,4,201155
,4,5,201115
,4,6,201070
,4,7,200915
,4,8,200745
,4,9,200755
,4,10,196135
,4,11,196085
,4,12,17005
,4,13,209225
,3,36251,230075
,3,36244,230605
,4,1,223305
,4,2,223305
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223545
,4,16,208565
,4,17,208755
,4,18,230685
,3,36251,230080
,3,36244,230605
,4,1,223545
,4,2,223545
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223555
,4,16,208565
,4,17,208755
,4,18,230685
,3,36251,230085
,3,36244,230605
,4,1,201290
,4,2,425
,4,3,565
,4,4,550
,4,5,209300
,3,36251,229965
,3,36244,230605
,4,1,26075
,4,2,26075
,4,3,223320
,4,4,430
,4,5,510
,4,6,223335
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229970
,3,36244,230605
,4,1,223335
,4,2,230665
,3,36251,229805
,3,36244,230605
,4,1,223335
,4,2,208755
,4,3,230685
,3,36251,229975
,3,36244,230605
,4,1,223335
,4,2,223335
,4,3,223320
,4,4,430
,4,5,510
,4,6,223345
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229980
,3,36244,230605
,4,1,223345
,4,2,223345
,4,3,223320
,4,4,430
,4,5,510
,4,6,223355
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229985
,3,36244,230605
,4,1,223355
,4,2,223355
,4,3,223320
,4,4,430
,4,5,510
,4,6,223365
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229990
,3,36244,230605
,4,1,223365
,4,2,223365
,4,3,223320
,4,4,430
,4,5,510
,4,6,223375
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229995
,3,36244,230605
,4,1,223375
,4,2,223375
,4,3,223320
,4,4,430
,4,5,510
,4,6,223385
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230000
,3,36244,230605
,4,1,223385
,4,2,223385
,4,3,223320
,4,4,430
,4,5,510
,4,6,223395
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230005
,3,36244,230605
,4,1,223395
,4,2,223395
,4,3,223320
,4,4,430
,4,5,510
,4,6,223405
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230010
,3,36244,230605
,4,1,223405
,4,2,223405
,4,3,223320
,4,4,430
,4,5,510
,4,6,223415
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230015
,3,36244,230605
,4,1,223415
,4,2,223415
,4,3,223320
,4,4,430
,4,5,510
,4,6,223425
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230020
,3,36244,230605
,4,1,223425
,4,2,223425
,4,3,223320
,4,4,430
,4,5,510
,4,6,223435
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230025
,3,36244,230605
,4,1,223435
,4,2,223435
,4,3,223320
,4,4,430
,4,5,510
,4,6,223445
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230030
,3,36244,230605
,4,1,223445
,4,2,223445
,4,3,223320
,4,4,430
,4,5,510
,4,6,223455
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230035
,3,36244,230605
,4,1,223455
,4,2,223455
,4,3,223320
,4,4,430
,4,5,510
,4,6,223465
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230040
,3,36244,230605
,4,1,223465
,4,2,223465
,4,3,223320
,4,4,430
,4,5,510
,4,6,223475
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230045
,3,36244,230605
,4,1,223475
,4,2,223475
,4,3,223320
,4,4,430
,4,5,510
,4,6,223485
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230050
,3,36244,230605
,4,1,223485
,4,2,223485
,4,3,223320
,4,4,430
,4,5,510
,4,6,223495
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230055
,3,36244,230605
,4,1,223495
,4,2,223495
,4,3,223320
,4,4,430
,4,5,510
,4,6,223505
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230060
,3,36244,230605
,4,1,223505
,4,2,223505
,4,3,223320
,4,4,430
,4,5,510
,4,6,223515
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230065
,3,36244,230605
,4,1,223515
,4,2,223515
,4,3,223320
,4,4,430
,4,5,510
,4,6,223525
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230070
,3,36244,230605
,4,1,223525
,4,2,223525
,4,3,223320
,4,4,430
,4,5,510
,4,6,223535
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,229835
,3,36244,230605
,4,1,205460
,4,2,425
,4,3,565
,4,4,550
,4,5,209300
,3,36251,230160
,3,36244,230605
,4,1,223585
,4,2,223585
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223790
,4,16,208565
,4,17,208755
,4,18,230685
,3,36251,230165
,3,36244,230605
,4,1,223790
,4,2,223790
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223800
,4,16,208565
,4,17,208755
,4,18,230685
,3,36251,230095
,3,36244,230605
,4,1,26670
,4,2,26670
,4,3,223605
,4,4,430
,4,5,510
,4,6,223620
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230100
,3,36244,230605
,4,1,223620
,4,2,223620
,4,3,223605
,4,4,430
,4,5,510
,4,6,223630
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230105
,3,36244,230605
,4,1,223630
,4,2,230665
,3,36251,229830
,3,36244,230605
,4,1,223630
,4,2,208755
,4,3,230685
,3,36251,230110
,3,36244,230605
,4,1,223630
,4,2,223630
,4,3,223605
,4,4,430
,4,5,510
,4,6,223640
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230115
,3,36244,230605
,4,1,223640
,4,2,223640
,4,3,223605
,4,4,430
,4,5,510
,4,6,223650
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230120
,3,36244,230605
,4,1,223650
,4,2,223650
,4,3,223605
,4,4,430
,4,5,510
,4,6,223660
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230125
,3,36244,230605
,4,1,223660
,4,2,223660
,4,3,223605
,4,4,430
,4,5,510
,4,6,223670
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230130
,3,36244,230605
,4,1,223670
,4,2,223670
,4,3,223605
,4,4,430
,4,5,510
,4,6,223680
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230135
,3,36244,230605
,4,1,223680
,4,2,223680
,4,3,223605
,4,4,430
,4,5,510
,4,6,223690
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230140
,3,36244,230605
,4,1,223690
,4,2,223690
,4,3,223605
,4,4,430
,4,5,510
,4,6,223700
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230145
,3,36244,230605
,4,1,223700
,4,2,223700
,4,3,223605
,4,4,430
,4,5,510
,4,6,223710
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230150
,3,36244,230605
,4,1,223710
,4,2,223710
,4,3,223605
,4,4,430
,4,5,510
,4,6,223720
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230155
,3,36244,230605
,4,1,223720
,4,2,223720
,4,3,223605
,4,4,430
,4,5,510
,4,6,223730
,4,7,208565
,4,8,208755
,4,9,230685
,3,36251,230190
,3,36244,230605
,4,1,223810
,4,2,223215
,4,3,222890
,4,4,201155
,4,5,201115
,4,6,201070
,4,7,200915
,4,8,26590
,4,9,209225
,3,36251,229865
,3,36244,230605
,4,1,200755
,4,2,196135
,4,3,196085
,4,4,16995
,4,5,230665
,3,36251,229870
,3,36244,230605
,4,1,12670
,4,2,425
,4,3,565
,4,4,550
,4,5,209230
,3,36251,230210
,3,36244,230605
,4,1,223860
,4,2,223860
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223895
,4,16,208565
,4,17,208750
,4,18,230685
,3,36251,230215
,3,36244,230605
,4,1,223895
,4,2,223895
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223905
,4,16,208565
,4,17,208750
,4,18,230685
,3,36251,230220
,3,36244,230605
,4,1,223905
,4,2,223905
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223915
,4,16,208590
,4,17,230685
,3,36251,230225
,3,36244,230605
,4,1,223915
,4,2,223915
,4,3,223215
,4,4,222890
,4,5,201155
,4,6,201115
,4,7,201070
,4,8,200915
,4,9,200745
,4,10,200755
,4,11,196135
,4,12,196085
,4,13,430
,4,14,510
,4,15,223925
,4,16,208565
,4,17,208750
,4,18,230685
,3,36251,230230
,3,36244,230605
,4,1,223925
,4,2,230665
,3,36251,230235
,3,36244,230605
,4,1,223280
,4,2,223280
,4,3,222020
,4,4,430
,4,5,510
,4,6,223935
,4,7,208565
,4,8,208750
,4,9,230685
,3,36251,229905
,3,36244,230605
,4,1,195490
,4,2,230665
,3,36251,229900
,3,36244,230605
,4,1,195490
,4,2,208750
,4,3,230685
,3,36383,220425
,3,36383,220080
,3,36251,230310
,3,36244,230605
,4,1,224305
,4,2,208750
,4,3,230685
,3,36251,230335
,3,36244,230605
,4,1,12670
,4,2,425
,4,3,565
,4,4,540
,4,5,209300
,3,36251,230395
,3,36244,230605
,4,1,3380
,4,2,214710
,4,3,230685
,3,36251,230445
,3,36244,230605
,4,1,223780
,4,2,208755
,4,3,230685
,3,36251,230455
,3,36244,230605
,4,1,223780
,4,2,208755
,4,3,230685
,3,36251,230460
,3,36244,230605
,4,1,223780
,4,2,208755
,4,3,230685
,3,36251,230465
,3,36244,230605
,4,1,223780
,4,2,208755
,4,3,230685
,3,36251,230470
,3,36244,230605
,4,1,223780
,4,2,208755
,4,3,230685
,3,36251,230480
,3,36244,230605
,4,1,224035
,4,2,208750
,4,3,230685
,3,36251,230485
,3,36244,230605
,4,1,224035
,4,2,208750
,4,3,230685
,3,36251,230500
,3,36244,230605
,4,1,224035
,4,2,208750
,4,3,230685
,3,36251,230580
,3,36244,230605
,4,1,224035
,4,2,223215
,4,3,222890
,4,4,201155
,4,5,201115
,4,6,201070
,4,7,200915
,4,8,200745
,4,9,200755
,4,10,196135
,4,11,196085
,4,12,430
,4,13,510
,4,14,230665
,3,36251,230530
,3,36244,230605
,4,1,224555
,4,2,208755
,4,3,230685
,3,36251,230575
,3,36244,230605
,4,1,224035
,4,2,224035
,4,3,234740
,4,4,208590
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36244,234750
,3,36259,197770
,3,36261,795
,4,2,205990
,3,36262,217170
,3,36260,217165
,3,36244,234750
,3,36259,197770
,3,36261,795
,4,2,217185
,3,36262,217180
,3,36260,217175
,3,36244,234750
,3,36259,197770
,3,36261,795
,4,2,205995
,3,36262,217195
,3,36260,217190
,3,36244,234750
,3,36259,197770
,3,36261,795
,4,2,206000
,3,36262,217205
,3,36260,217200
,3,36244,234750
,3,36259,197770
,3,36261,795
,4,2,206005
,3,36262,217215
,3,36260,217210
,3,36244,234750
,3,36259,197770
,3,36261,795
,4,2,206010
,3,36262,217225
,3,36260,217220
,3,36244,234750
,3,36259,196135
,3,36261,350
,4,2,200755
,3,36262,201300
,3,36260,200660
,3,36244,234750
,3,36259,201245
,3,36261,350
,4,2,201270
,3,36262,201265
,3,36260,201255
,3,36244,234750
,3,36259,223095
,3,36261,350
,4,2,223125
,3,36262,223120
,3,36260,223105
,3,36244,234750
,3,36259,223220
,3,36261,220425
,3,36377,224010
,4,2,224035
,3,36262,224055
,3,36260,224040
,3,36244,234750
,1,1,20660
,3,32,235040
,3,33,235050
,1,1,20670
],
"strings":["",
"",
"(GC roots)",
"(Strong roots)",
"(Symbol)",
"(Extensions)",
"(Isolate)",
"(Relocatable)",
"(Debugger)",
"(Compilation cache)",
"(Handle scope)",
"(Builtins)",
"(Global handles)",
"(Symbols)",
"(External strings)",
"system / Oddball",
"system / Map",
"null",
"undefined",
"number",
"true",
"false",
"hole",
"arguments_marker",
"no_interceptor_result_sentinel",
"termination_exception",
"system / PolymorphicCodeCache",
"\"",
"'",
".",
"/",
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"<",
">",
"a",
"g",
"h",
"l",
"n",
"p",
"s",
"Object",
"(code)",
"(function scope info)",
"",
"keys",
"create",
"defineProperty",
"defineProperties",
"freeze",
"getPrototypeOf",
"getOwnPropertyDescriptor",
"getOwnPropertyNames",
"is",
"isExtensible",
"isFrozen",
"isSealed",
"preventExtensions",
"seal",
"Empty",
"(function literals)",
"system / Context",
"toString",
"toLocaleString",
"valueOf",
"hasOwnProperty",
"isPrototypeOf",
"propertyIsEnumerable",
"__defineGetter__",
"__lookupGetter__",
"__defineSetter__",
"__lookupSetter__",
"Function",
"bind",
"call",
"apply",
"system / NativeContext",
"() {}",
"system / Foreign",
"system / AccessorPair",
"ThrowTypeError",
"(object elements)",
"(shared function info)",
"ArrayBuffer",
"Float64Array",
"Uint8ClampedArray",
"Float32Array",
"JSON",
"RangeError",
"isFinite",
"parseFloat",
"DataView",
"decodeURI",
"Int8Array",
"Uint8Array",
"Error",
"SyntaxError",
"EvalError",
"Number",
"Int16Array",
"Int32Array",
"String",
"RegExp",
"MathConstructor",
"Boolean",
"isNaN",
"parseInt",
"escape",
"Date",
"TypeError",
"ReferenceError",
"Array",
"URIError",
"process",
"Uint32Array",
"Uint16Array",
"encodeURI",
"encodeURIComponent",
"unescape",
"Buffer",
"eval",
"decodeURIComponent",
"(object properties)",
"global",
"isArray",
"fromCharCode",
"UTC",
"parse",
"now",
"RegExpGetLastMatch",
"RegExpGetLastParen",
"RegExpGetLeftContext",
"RegExpGetRightContext",
"stringify",
"Arguments",
"context_extension",
"(context func. result caches)",
"(context norm. map cache)",
"builtins",
"reverse",
"ToString",
"min",
"exp",
"setUTCMinutes",
"localeCompare",
"DefaultNumber",
"getTimezoneOffset",
"FormatMessage",
"BasicSerializeArray",
"CharCodeToHex4Str",
"getMilliseconds",
"getUTCSeconds",
"sup",
"InstallFunctions",
"italics",
"ConvertToLocaleString",
"CallSiteIsNative",
"InternalArray",
"toGMTString",
"Revive",
"CallSiteGetFunction",
"Delete",
"ceil",
"SimpleSlice",
"COMPARE",
"TimeInYear",
"lastIndexOf",
"captureStackTrace",
"ScriptSourceLine",
"SetUpString",
"ScriptNameOrSourceURL",
"SHR",
"SetUpFunction",
"CALL_NON_FUNCTION",
"ToStringArray",
"SmartSlice",
"ArrayPush",
"SHL",
"CallSiteGetFunctionName",
"ScriptSourceSlice",
"CreateDate",
"SetUpRegExp",
"reduce",
"getMinutes",
"SetUpNumber",
"toLocaleLowerCase",
"URIDecodeOctets",
"CallSiteIsEval",
"ToInteger",
"Join",
"SmartMove",
"log",
"FormatRawStackTrace",
"ReplaceResultBuilder",
"DoRegExpExec",
"FunctionSourceString",
"isAlphaNumeric",
"toLowerCase",
"FormatEvalOrigin",
"setDate",
"UseSparseVariant",
"GetStackTraceLine",
"setMonth",
"ToPropertyDescriptor",
"ToBoolean",
"BIT_OR",
"DefaultString",
"ConfigureTemplateInstance",
"toISOString",
"MakeTime",
"CallSite",
"URIAddEncodedOctetToBuffer",
"BasicSerializeObject",
"charAt",
"ThrowDateTypeError",
"substring",
"SerializeArray",
"SparseReverse",
"floor",
"TimeClip",
"bold",
"MakeEvalError",
"CallSiteToString",
"setFullYear",
"MakeGenericError",
"setUTCMonth",
"SetUpError",
"getFullYear",
"ScriptLocationFromPosition",
"TimeStringUTC",
"strike",
"Decode",
"RegExpMakeCaptureGetter",
"FILTER_KEY",
"SimpleMove",
"BIT_AND",
"SetUpLockedPrototype",
"MUL",
"toExponential",
"UNARY_MINUS",
"IsGenericDescriptor",
"abs",
"concat",
"atan2",
"GetPropertyWithoutInvokingMonkeyGetters",
"CALL_FUNCTION_PROXY_AS_CONSTRUCTOR",
"getUTCMinutes",
"SetUpUri",
"pow",
"CallSiteGetFileName",
"setUTCFullYear",
"getUTCFullYear",
"toLocaleUpperCase",
"acos",
"DefineArrayProperty",
"CALL_FUNCTION_PROXY",
"CallSiteGetThis",
"CallSiteIsConstructor",
"SameValue",
"HtmlEscape",
"setHours",
"URIEncodeOctets",
"GetSortedArrayKeys",
"MakeRangeError",
"IsAccessorDescriptor",
"ConvertDescriptorArrayToDescriptor",
"IsPrimitive",
"CallSiteGetScriptNameOrSourceURL",
"TO_STRING",
"indexOf",
"getSeconds",
"CallSiteGetPosition",
"ToInt32",
"MakeTypeError",
"MOD",
"HexValueOf",
"setUTCSeconds",
"compile",
"getUTCMilliseconds",
"JSONSerialize",
"ArraySplice",
"tan",
"APPLY_PREPARE",
"Instantiate",
"GetSourceLine",
"slice",
"SetUpArray",
"round",
"getYear",
"FormatString",
"CallTrap1",
"DefineObjectProperty",
"getUTCHours",
"getDay",
"setUTCMilliseconds",
"match",
"ToNumber",
"trimLeft",
"MakeReferenceError",
"big",
"fontcolor",
"getUTCDay",
"GetOwnEnumerablePropertyNames",
"URIHexCharsToCharCode",
"setUTCDate",
"setMinutes",
"ScriptLineCount",
"TrimRegExp",
"ToUint32",
"anchor",
"SetUpMath",
"sub",
"toUpperCase",
"CallSiteGetEvalOrigin",
"getUTCMonth",
"ToCompletePropertyDescriptor",
"asin",
"STRING_ADD_RIGHT",
"reduceRight",
"SourceSliceSourceText",
"STRING_ADD_LEFT",
"SourceSlice",
"ToDetailString",
"StringReplaceNonGlobalRegExpWithFunction",
"TimeString",
"DefineOwnProperty",
"DatePrintString",
"GetPositionInLine",
"SourceLocation",
"small",
"LocalTimezone",
"GetTypeName",
"toPrecision",
"CallTrap2",
"replace",
"PadInt",
"DoConstructRegExp",
"ResetDateCache",
"GetLineNumber",
"ArrayPop",
"NewFunction",
"ConvertToString",
"ScriptLineFromPosition",
"filter",
"CALL_NON_FUNCTION_AS_CONSTRUCTOR",
"toUTCString",
"SUB",
"toTimeString",
"ProxyFix",
"TwoDigitString",
"sort",
"SetUpDate",
"Script",
"APPLY_OVERFLOW",
"ArraySlice",
"FormatStackTrace",
"LongDateString",
"RegExpConstructor",
"SetUpObject",
"SAR",
"NonStringToString",
"max",
"INSTANCE_OF",
"split",
"setUTCHours",
"ExpandReplacement",
"RegExpExecNoTests",
"toLocaleTimeString",
"GetTrap",
"CallSiteGetLineNumber",
"IsDataDescriptor",
"blink",
"URIEncodeSingle",
"URIEncodePair",
"random",
"EQUALS",
"getMonth",
"SourceLocationRestrict",
"SparseJoinWithSeparator",
"CallSiteIsToplevel",
"ToObject",
"link",
"MakeDay",
"DefineOneShotAccessor",
"ADD",
"IsInconsistentDescriptor",
"every",
"InstantiateFunction",
"PropertyDescriptor",
"DefineProxyProperty",
"setTime",
"fixed",
"FromPropertyDescriptor",
"join",
"test",
"OpaqueReference",
"NonNumberToNumber",
"DateString",
"setMilliseconds",
"setSeconds",
"toLocaleDateString",
"IsNativeErrorObject",
"SetUpBoolean",
"trimRight",
"CallTrap0",
"GetOwnProperty",
"BIT_NOT",
"DELETE",
"SetUpGlobal",
"some",
"ToPrimitive",
"sin",
"TO_OBJECT",
"CallSiteGetColumnNumber",
"DIV",
"StringReplaceGlobalRegExpWithFunction",
"ToStringCheckErrorObject",
"SetUpJSON",
"getDate",
"toJSON",
"getTime",
"SerializeObject",
"fontsize",
"forEach",
"IsValidHex",
"getUTCDate",
"BasicJSONSerialize",
"ArrayShift",
"TO_NUMBER",
"MakeDate",
"Encode",
"atan",
"MakeError",
"cos",
"StringSplitOnRegExp",
"substr",
"SparseJoin",
"ErrorToStringDetectCycle",
"toFixed",
"toDateString",
"LocalTimezoneString",
"ArrayConcat",
"charCodeAt",
"BIT_XOR",
"BuildResultFromMatchInfo",
"exec",
"search",
"map",
"trim",
"SourceLocationSourceText",
"SubString",
"FromGenericPropertyDescriptor",
"CaptureString",
"CallSiteGetMethodName",
"MakeSyntaxError",
"setYear",
"ScriptLocationFromLine",
"IN",
"STRICT_EQUALS",
"sqrt",
"ArrayUnshift",
"CallSiteGetTypeName",
"getHours",
"pop",
"push",
"native runtime.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar $Object=global.Object;\nvar $Array=global.Array;\nvar $String=global.String;\nvar $Number=global.Number;\nvar $Function=global.Function;\nvar $Boolean=global.Boolean;\nvar $NaN=%GetRootNaN();\nvar builtins=this;\n\n\nfunction EQUALS(a){\nif((typeof(this)==='string')&&(typeof(a)==='string'))return %StringEquals(this,a);\nvar b=this;\n\nwhile(true){\nif((typeof(b)==='number')){\nwhile(true){\nif((typeof(a)==='number'))return %NumberEquals(b,a);\nif((a==null))return 1;\nif(!(%_IsSpecObject(a))){\n\nreturn %NumberEquals(b,%ToNumber(a));\n}\na=%ToPrimitive(a,0);\n}\n}else if((typeof(b)==='string')){\nwhile(true){\nif((typeof(a)==='string'))return %StringEquals(b,a);\nif((typeof(a)==='number'))return %NumberEquals(%ToNumber(b),a);\nif((typeof(a)==='boolean'))return %NumberEquals(%ToNumber(b),%ToNumber(a));\nif((a==null))return 1;\na=%ToPrimitive(a,0);\n}\n}else if((typeof(b)==='boolean')){\nif((typeof(a)==='boolean'))return %_ObjectEquals(b,a)?0:1;\nif((a==null))return 1;\nif((typeof(a)==='number'))retur",
"$Object",
"$Array",
"$String",
"$Number",
"$Function",
"$Boolean",
"$NaN",
"system / TypeFeedbackInfo",
"system / JSGlobalPropertyCell",
".result",
"b",
"c",
"d",
"e",
"f",
"arguments",
"native v8natives.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar $isNaN=GlobalIsNaN;\nvar $isFinite=GlobalIsFinite;\n\n\n\n\n\nfunction InstallFunctions(a,b,c){\nif(c.length>=8){\n%OptimizeObjectForAddingMultipleProperties(a,c.length>>1);\n}\nfor(var d=0;d>1)+(b?b.length:0);\nif(e>=4){\n%OptimizeObjectForAddingMultipleProperties(d,e);\n}\nif(b){\nfor(var f=0;f>4];\nb[c++]=hexCharCodeArray[a&0x0F];\nreturn c;\n}\n\n\nfunction URIEncodeOctets(a,b,c){\nif(hexCharCodeArray===0){\nhexCharCodeArray=[48,49,50,51,52,53,54,55,56,57,\n65,66,67,68,69,70];\n}\nc=URIAddEncodedOctetToBuffer(a[0],b,c);\nif(a[1])c=URIAddEncodedOctetToBuffer(a[1],b,c);\nif(a[2])c=URIAddEncodedOctetToBuffer(a[2],b,c);\nif(a[3])c=URIAddEncodedOctetToBuffer(a[3],b,c);\nreturn c;\n}\n\n\nfunction URIEncodeSingle(a,b,c){\nvar d=(a>>12)&0xF;\nvar g=(a>>6)&63;\nvar h=a&63;\nvar i=new $Array(3);\nif(a<=0x007F){\ni[0]=a;\n}else if(a<=0x07FF){\ni[0]=g+192;\ni[1]=h+128;\n}else{\ni[0]=d+224;\ni[1]=g+128;\ni[2]=h+128;\n}\nreturn URIEncodeOctets(i,b,c);\n}\n\n\nfunction URIEncodePair(a,b,c,d){\nvar g=((a>>6)&0xF)+1;\nvar h=(a>>2)&0xF;\nvar i=a&3;\nvar j=(b>>6)&0xF;\nvar k=b&63;\nvar l=new $Array(4);\nl[0]=(g>>2)+240;\nl[1]=(((g&3)<<4)|h)+128;\nl[2]=((i<<4)|j)+128;\nl[3]=k+128;\nreturn URIEncodeOctets(l",
"hexCharArray",
"hexCharCodeArray",
"URIDecode",
"URIDecodeComponent",
"URIEncode",
"URIEncodeComponent",
"URIEscape",
"URIUnescape",
"native math.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar $floor=MathFloor;\nvar $abs=MathAbs;\n\n\n\nfunction MathConstructor(){}\n%FunctionSetInstanceClassName(MathConstructor,'Math');\nvar $Math=new MathConstructor();\n$Math.__proto__=$Object.prototype;\n%SetProperty(global,\"Math\",$Math,2);\n\n\nfunction MathAbs(a){\nif(%_IsSmi(a))return a>=0?a:-a;\nif(!(typeof(a)==='number'))a=NonNumberToNumber(a);\nif(a===0)return 0;\nreturn a>0?a:-a;\n}\n\n\nfunction MathAcos(a){\nif(!(typeof(a)==='number'))a=NonNumberToNumber(a);\nreturn %Math_acos(a);\n}\n\n\nfunction MathAsin(a){\nif(!(typeof(a)==='number'))a=NonNumberToNumber(a);\nreturn %Math_asin(a);\n}\n\n\nfunction MathAtan(a){\nif(!(typeof(a)==='number'))a=NonNumberToNumber(a);\nreturn %Math_atan(a);\n}\n\n\n\n\nfunction MathAtan2(a,b){\nif(!(typeof(a)==='number'))a=NonNumberToNumber(a);\nif(!(typeof(b)==='number'))b=NonNumberToNumber(b);\nreturn %Math_atan2(a,b);\n}\n\n\nfunction MathCeil(a){\nif(!(typeof(a)==='number'))a=NonNumberToNumber(a);\nreturn %Math_ceil(a);\n}\n\n\nfunction MathCos(a){\nif(!(typeof(a)==='number'))a=NonNumberTo",
"Math",
"$floor",
"$abs",
"$Math",
"MathAbs",
"MathAcos",
"MathAsin",
"MathAtan",
"MathAtan2",
"MathCeil",
"MathCos",
"MathExp",
"MathFloor",
"MathLog",
"MathMax",
"MathMin",
"MathPow",
"MathRandom",
"MathRound",
"MathSin",
"MathSqrt",
"MathTan",
"native messages.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar kAddMessageAccessorsMarker={};\n\n\n\nvar kMessages=0;\n\nfunction FormatString(a,b){\nvar c=%MessageGetArguments(b);\nvar d=\"\";\nvar g=0;\nfor(var h=0;h>>0;\nif(g<4){\n\ntry{\ni=ToDetailString(c[g]);\n}catch(e){\nif(%IsJSModule(c[g]))\ni=\"module\";\nelse if((%_IsSpecObject(c[g])))\ni=\"object\";\nelse\ni=\"#\";\n}\n}\n}\nd+=i;\n}\nreturn d;\n}\n\n\n\n\n\n\nfunction IsNativeErrorObject(a){\nswitch(%_ClassOf(a)){\ncase'Error':\ncase'EvalError':\ncase'RangeError':\ncase'ReferenceError':\ncase'SyntaxError':\ncase'TypeError':\ncase'URIError':\nreturn true;\n}\nreturn false;\n}\n\n\n\n\n\n\nfunction ToStringCheckErrorObject(a){\nif(IsNativeErrorObject(a)){\nreturn %_CallFunction(a,ErrorToString);\n}else{\nreturn ToString(a);\n}\n}\n\n\nfunction ToDetailString(a){\nif(a!=null&&(%_IsObject(a))&&a.toString===ObjectToString){\nvar b=a.constructor;\nif(typeof b==\"function\"){\nvar c=b.name;\nif((typeof(c)==='string')&&c!==\"\"){\nreturn\"#<\"",
"kAddMessageAccessorsMarker",
"kMessages",
"kLineLengthLimit",
"visited_errors",
"cyclic_error_marker",
"ErrorToString",
"kStackOverflowBoilerplate",
"SetUpError.a",
"DefineOneShotAccessor.h",
"DefineOneShotAccessor.i",
"i",
"native apinatives.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nfunction CreateDate(a){\nvar b=new $Date();\nb.setTime(a);\nreturn b;\n}\n\n\nvar kApiFunctionCache=new InternalArray();\nvar functionCache=kApiFunctionCache;\n\n\nfunction Instantiate(a,b){\nif(!%IsTemplate(a))return a;\nvar c=%GetTemplateField(a,0);\nswitch(c){\ncase 0:\nreturn InstantiateFunction(a,b);\ncase 1:\nvar d=%GetTemplateField(a,2);\n\n\nvar g=typeof d==='undefined'?\n{}:new(Instantiate(d))();\nConfigureTemplateInstance(g,a);\ng=%ToFastProperties(g);\nreturn g;\ndefault:\nthrow'Unknown API tag <'+c+'>';\n}\n}\n\n\nfunction InstantiateFunction(a,b){\n\n\nvar c=kApiFunctionCache;\nvar d=%GetTemplateField(a,2);\nvar g=\n(d in c)&&(c[d]!=-1);\nif(!g){\ntry{\nc[d]=null;\nvar h=%CreateApiFunction(a);\nif(b)%FunctionSetName(h,b);\nc[d]=h;\nvar i=%GetTemplateField(a,5);\nvar j=%GetTemplateField(a,14);\n\n\nh.prototype=typeof i==='undefined'?\n{}:Instantiate(i);\nif(j&(1<<3)){\n%FunctionSetReadOnlyPrototype(h);\n}\n%SetProperty(h.prototype,\"constructor\",h,2);\nvar k=%GetTemplateField(a,6);\n\n\nif(!(typeof k==='undefined')){\nvar l=",
"kApiFunctionCache",
"functionCache",
"native date.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar $Date=global.Date;\n\n\nfunction ThrowDateTypeError(){\nthrow new $TypeError('this is not a Date object.');\n}\n\n\nvar timezone_cache_time=$NaN;\nvar timezone_cache_timezone;\n\nfunction LocalTimezone(a){\nif((!%_IsSmi(%IS_VAR(a))&&!(a==a)))return\"\";\nif(a==timezone_cache_time){\nreturn timezone_cache_timezone;\n}\nvar b=%DateLocalTimezone(a);\ntimezone_cache_time=a;\ntimezone_cache_timezone=b;\nreturn b;\n}\n\n\nfunction UTC(a){\nif((!%_IsSmi(%IS_VAR(a))&&!(a==a)))return a;\n\n\nreturn %DateToUTC(a);\n}\n\n\n\nfunction MakeTime(a,b,c,d){\nif(!$isFinite(a))return $NaN;\nif(!$isFinite(b))return $NaN;\nif(!$isFinite(c))return $NaN;\nif(!$isFinite(d))return $NaN;\nreturn(%_IsSmi(%IS_VAR(a))?a:%NumberToInteger(ToNumber(a)))*3600000\n+(%_IsSmi(%IS_VAR(b))?b:%NumberToInteger(ToNumber(b)))*60000\n+(%_IsSmi(%IS_VAR(c))?c:%NumberToInteger(ToNumber(c)))*1000\n+(%_IsSmi(%IS_VAR(d))?d:%NumberToInteger(ToNumber(d)));\n}\n\n\n\nfunction TimeInYear(a){\nreturn DaysInYear(a)*86400000;\n}\n\n\n\n\n\n\n\n\nfunction MakeDay(a,b,c){\nif(!$is",
"time",
"string",
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Sat",
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec",
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"January",
"February",
"March",
"April",
"June",
"July",
"August",
"September",
"October",
"November",
"December",
"$Date",
"timezone_cache_time",
"timezone_cache_timezone",
"Date_cache",
"WeekDays",
"Months",
"LongWeekDays",
"LongMonths",
"parse_buffer",
"DateParse",
"DateUTC",
"DateNow",
"DateToString",
"DateToDateString",
"DateToTimeString",
"DateToLocaleString",
"DateToLocaleDateString",
"DateToLocaleTimeString",
"DateValueOf",
"DateGetTime",
"DateGetFullYear",
"DateGetUTCFullYear",
"DateGetMonth",
"DateGetUTCMonth",
"DateGetDate",
"DateGetUTCDate",
"DateGetDay",
"DateGetUTCDay",
"DateGetHours",
"DateGetUTCHours",
"DateGetMinutes",
"DateGetUTCMinutes",
"DateGetSeconds",
"DateGetUTCSeconds",
"DateGetMilliseconds",
"DateGetUTCMilliseconds",
"DateGetTimezoneOffset",
"DateSetTime",
"DateSetMilliseconds",
"DateSetUTCMilliseconds",
"DateSetSeconds",
"DateSetUTCSeconds",
"DateSetMinutes",
"DateSetUTCMinutes",
"DateSetHours",
"DateSetUTCHours",
"DateSetDate",
"DateSetUTCDate",
"DateSetMonth",
"DateSetUTCMonth",
"DateSetFullYear",
"DateSetUTCFullYear",
"DateToUTCString",
"DateGetYear",
"DateSetYear",
"DateToGMTString",
"DateToISOString",
"DateToJSON",
"ok",
"j",
"k",
"m",
"o",
"native json.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar $JSON=global.JSON;\n\nfunction Revive(a,b,c){\nvar d=a[b];\nif((%_IsObject(d))){\nif((%_IsArray(d))){\nvar g=d.length;\nfor(var h=0;h0){\nvar o=\",\\n\"+d;\nm=\"[\\n\"+d+i.join(o)+\"\\n\"+\nh+\"]\";\n}else{\nm=\"[]\";\n}\nc.pop();\nreturn ",
"$JSON",
"JSONParse",
"JSONStringify",
"native regexp.js",
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar $RegExp=global.RegExp;\n\n\n\nfunction DoConstructRegExp(a,b,c){\n\nif((%_IsRegExp(b))){\nif(!(typeof(c)==='undefined')){\nthrow MakeTypeError('regexp_flags',[]);\n}\nc=(b.global?'g':'')\n+(b.ignoreCase?'i':'')\n+(b.multiline?'m':'');\nb=b.source;\n}\n\nb=(typeof(b)==='undefined')?'':ToString(b);\nc=(typeof(c)==='undefined')?'':ToString(c);\n\nvar d=false;\nvar g=false;\nvar h=false;\nfor(var i=0;i\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the 'Software'), to\n// deal in the Software without restriction, including without limitation the\n// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n// sell copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n",
"replacer",
"truncate",
"getMessage",
"fail",
"_deepEqual",
"isUndefinedOrNull",
"isArguments",
"objEquiv",
"expectedException",
"_throws",
"AssertionError",
"equal",
"notEqual",
"deepEqual",
"notDeepEqual",
"strictEqual",
"notStrictEqual",
"assert.throws",
"assert.doesNotThrow",
"assert.ifError",
"util",
"pSlice",
"util.js",
"italic",
"underline",
"inverse",
"white",
"grey",
"black",
"blue",
"cyan",
"green",
"magenta",
"red",
"yellow",
"special",
"number",
"boolean",
"date",
"regexp",
"stylizeWithColor",
"stylizeNoColor",
"arrayToHash",
"formatValue",
"formatPrimitive",
"formatError",
"formatArray",
"formatProperty",
"reduceToSingleString",
"isRegExp",
"isDate",
"isError",
"objectToString",
"pad",
"timestamp",
"pump",
"exports.format",
"exports.deprecate",
"exports.print",
"exports.puts",
"exports.debug",
"exports.error",
"exports.log",
"exports.inherits",
"exports._extend",
"formatRegExp",
"error",
"months",
"String.prototype.charAt",
"%[sdj%]",
"deprecated",
"msg",
"warned",
"enumerable",
"writable",
"configurable",
"ctor",
"superCtor",
"global.setTimeout",
"global.setInterval",
"global.clearTimeout",
"global.clearInterval",
"global.setImmediate",
"global.clearImmediate",
"process.assert",
"config",
"String.prototype.split",
"Array.prototype.join",
"String.prototype.replace",
"key",
"tickDone",
"maxTickWarn",
"_tickFromSpinner",
"_tickCallback",
"_tickDomainCallback",
"nextTick",
"_nextDomainTick",
"_needTickCallback",
"nextTickQueue",
"needSpinner",
"inTick",
"infoBox",
"length",
"index",
"depth",
"process.openStdin",
"stdin",
"stdout",
"stderr",
"WriteStream",
"process.exit",
"process.kill",
"isSignal",
"process.on.process.addListener",
"process.removeListener",
"signalWraps",
"addListener",
"removeListener",
"fd",
"cp",
"cwd",
"isWindows",
"argv0",
"String.prototype.indexOf",
"path.js",
"normalizeArray",
"splitPath",
"normalizeUNCRoot",
"exports.resolve",
"exports.normalize",
"exports.join",
"exports.relative",
"exports.dirname",
"exports.basename",
"exports.extname",
"exports._makeLong",
"splitDeviceRe",
"splitTailRe",
"splitPathRe",
"^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$",
"resolvedPath",
"resolvedAbsolute",
"Array.prototype.filter",
"parts",
"allowAboveRoot",
"up",
"last",
"module.js",
"statPath",
"readPackage",
"tryPackage",
"tryFile",
"tryExtensions",
"stripBOM",
"Module._debug",
"Module._findPath",
"Module._nodeModulePaths",
"Module._resolveLookupPaths",
"Module._load",
"Module._resolveFilename",
"Module.load",
"Module.require",
"Module._compile",
"Module._extensions..js",
"Module._extensions..json",
"Module.runMain",
"Module._initPaths",
"Module.requireRepl",
"modulePaths",
"debug",
"packageMainCache",
"resolvedArgv",
"\\/",
"^\\#\\!.*",
"homeDir",
"paths",
"splitter",
"request",
"parent",
"isMain",
"filename",
"cachedModule",
"replModule",
"hadException",
"resolvedModule",
"err",
"start",
"mainPaths",
"isIndex",
"parentIdPath",
"String.prototype.subString",
"exts",
"trailingSlash",
"cacheKey",
"PL",
"basePath",
"Object.keys",
"String.prototype.slice",
"requestPath",
"fs",
"stats",
"fs.js",
"rethrow",
"maybeCallback",
"makeCallback",
"assertEncoding",
"nullCheck",
"stringToFlags",
"modeNum",
"preprocessSymlinkDestination",
"toUnixTimestamp",
"writeAll",
"FSWatcher",
"StatWatcher",
"inStatWatchers",
"allocNewPool",
"ReadStream",
"SyncWriteStream",
"fs.Stats._checkModeProperty",
"fs.Stats.isDirectory",
"fs.Stats.isFile",
"fs.Stats.isBlockDevice",
"fs.Stats.isCharacterDevice",
"fs.Stats.isSymbolicLink",
"fs.Stats.isFIFO",
"fs.Stats.isSocket",
"fs.exists",
"fs.existsSync",
"fs.readFile",
"fs.readFileSync",
"fs.close",
"fs.closeSync",
"fs.open",
"fs.openSync",
"fs.read",
"fs.readSync",
"fs.write",
"fs.writeSync",
"fs.rename",
"fs.renameSync",
"fs.truncate",
"fs.truncateSync",
"fs.ftruncate",
"fs.ftruncateSync",
"fs.rmdir",
"fs.rmdirSync",
"fs.fdatasync",
"fs.fdatasyncSync",
"fs.fsync",
"fs.fsyncSync",
"fs.mkdir",
"fs.mkdirSync",
"fs.readdir",
"fs.readdirSync",
"fs.fstat",
"fs.lstat",
"fs.stat",
"fs.fstatSync",
"fs.lstatSync",
"fs.statSync",
"fs.readlink",
"fs.readlinkSync",
"fs.symlink",
"fs.symlinkSync",
"fs.link",
"fs.linkSync",
"fs.unlink",
"fs.unlinkSync",
"fs.fchmod",
"fs.fchmodSync",
"fs.lchmod",
"fs.lchmodSync",
"fs.chmod",
"fs.chmodSync",
"fs.lchown",
"fs.lchownSync",
"fs.fchown",
"fs.fchownSync",
"fs.chown",
"fs.chownSync",
"fs.utimes",
"fs.utimesSync",
"fs.futimes",
"fs.futimesSync",
"fs.writeFile",
"fs.writeFileSync",
"fs.appendFile",
"fs.appendFileSync",
"FSWatcher.start",
"FSWatcher.close",
"fs.watch",
"StatWatcher.start",
"StatWatcher.stop",
"fs.watchFile",
"fs.unwatchFile",
"realpathSync",
"realpath",
"fs.createReadStream",
"ReadStream.open",
"ReadStream._read",
"ReadStream.destroy",
"ReadStream.close",
"fs.createWriteStream",
"WriteStream.open",
"WriteStream._write",
"SyncWriteStream.write",
"SyncWriteStream.end",
"SyncWriteStream.destroy",
"O_DIRECTORY",
"O_NOCTTY",
"O_NOFOLLOW",
"O_SYMLINK",
"normalize",
"pathModule",
"binding",
"constants",
"Stream",
"Readable",
"Writable",
"kMinPoolSpace",
"O_APPEND",
"O_CREAT",
"O_EXCL",
"O_RDONLY",
"O_RDWR",
"O_SYNC",
"O_TRUNC",
"O_WRONLY",
"DEBUG",
"statWatchers",
"nextPartRe",
"splitRootRe",
"stop",
"stream.js",
"Stream.pipe",
"EE",
"_stream_readable.js",
"ReadableState",
"readableAddChunk",
"needMoreData",
"roundUpToNextPowerOf2",
"howMuchToRead",
"chunkInvalid",
"onEofChunk",
"emitReadable",
"emitReadable_",
"maybeReadMore",
"maybeReadMore_",
"pipeOnDrain",
"flow",
"pipeOnReadable",
"emitDataEvents",
"fromList",
"endReadable",
"Readable.push",
"Readable.unshift",
"Readable.setEncoding",
"Readable.read",
"Readable._read",
"Readable.pipe",
"Readable.unpipe",
"Readable.on",
"Readable.resume",
"Readable.pause",
"Readable.wrap",
"StringDecoder",
"MAX_HWM",
"_stream_writable.js",
"WriteReq",
"WritableState",
"writeAfterEnd",
"validChunk",
"decodeChunk",
"writeOrBuffer",
"doWrite",
"onwriteError",
"onwriteStateUpdate",
"onwrite",
"afterWrite",
"onwriteDrain",
"clearBuffer",
"needFinish",
"finishMaybe",
"endWritable",
"Writable.pipe",
"Writable.write",
"Writable._write",
"Writable.end",
"_stream_duplex.js",
"Duplex",
"onend",
"readable",
"Array.prototype.forEach",
"method",
"_stream_transform.js",
"TransformState",
"afterTransform",
"Transform",
"done",
"Transform.push",
"Transform._transform",
"Transform._write",
"Transform._read",
"_stream_passthrough.js",
"PassThrough",
"PassThrough._transform",
"(.*?)(?:[\\/]+|$)",
"^[\\/]*",
"Object.defineProperty",
"callback",
"er",
"property",
"cache",
"original",
"seenLinks",
"result",
"resolvedLink",
"stat",
"linkTarget",
"knownHard",
"pos",
"current",
"base",
"previous",
"RegExp.prototype.exec",
"extension",
"message",
"root",
"dir",
"String.prototype.substr",
"from",
"splitRe",
"joiner",
"tip",
"q",
"Array.prototype.concat",
"content",
"encoding",
"flag",
"r",
"options",
"size",
"threw",
"buffer",
"buffers",
"bytesRead",
"String.prototype.toLowerCase",
"flags",
"mode",
"def",
"subject",
"offset",
"type",
"position",
"legacy",
"str",
"end",
"String.prototype.charCodeAt",
"require.resolve",
"Object.defineProperty.get",
"require.registerExtension",
"dirname",
"sandbox",
"wrapper",
"compiledWrapper",
"args",
"self",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/leak3.js",
"(function (exports, require, module, __filename, __dirname) { var heapdump = require('heapdump')\nvar string = '1 string to rule them all'\n\nvar leakyArr = []\nvar count = 2\nsetInterval(function () {\n leakyArr.push(string.replace(/1/g, count++))\n}, 0)\n\nsetInterval(function () {\n if (heapdump.writeSnapshot()) console.log('wrote snapshot')\n}, 20000)\n\n});",
"heapdump",
"leakyArr",
"count",
"EL",
"pkg",
"jsonPath",
"json",
"obj",
"prop",
"t",
"timers.js",
"insert",
"listOnTimeout",
"processImmediate",
"unrefTimeout",
"exports.unenroll",
"exports.enroll",
"exports.active",
"exports.setTimeout",
"exports.clearTimeout",
"exports.setInterval",
"exports.clearInterval",
"Timeout",
"Timeout.unref",
"Timeout.ref",
"Timeout.close",
"exports.setImmediate",
"exports.clearImmediate",
"exports._unrefActive",
"Timer",
"L",
"TIMEOUT_MAX",
"lists",
"unenroll",
"immediateQueue",
"unrefList",
"unrefTimer",
"close",
"ref",
"unref",
"setRepeat",
"getRepeat",
"again",
"_linklist.js",
"init",
"peek",
"remove",
"append",
"isEmpty",
"list",
"repeat",
"timer",
"after",
"Array.prototype.slice",
"item",
"msecs",
"nextTickLength",
"first",
"diff",
"2 string to rule them all",
"3 string to rule them all",
"4 string to rule them all",
"5 string to rule them all",
"6 string to rule them all",
"7 string to rule them all",
"8 string to rule them all",
"9 string to rule them all",
"10 string to rule them all",
"11 string to rule them all",
"12 string to rule them all",
"13 string to rule them all",
"14 string to rule them all",
"15 string to rule them all",
"16 string to rule them all",
"17 string to rule them all",
"18 string to rule them all",
"19 string to rule them all",
"20 string to rule them all",
"21 string to rule them all",
"22 string to rule them all",
"23 string to rule them all",
"24 string to rule them all",
"25 string to rule them all",
"26 string to rule them all",
"27 string to rule them all",
"28 string to rule them all",
"29 string to rule them all",
"30 string to rule them all",
"31 string to rule them all",
"32 string to rule them all",
"33 string to rule them all",
"34 string to rule them all",
"35 string to rule them all",
"36 string to rule them all",
"37 string to rule them all",
"38 string to rule them all",
"39 string to rule them all",
"40 string to rule them all",
"41 string to rule them all",
"42 string to rule them all",
"43 string to rule them all",
"44 string to rule them all",
"45 string to rule them all",
"46 string to rule them all",
"47 string to rule them all",
"48 string to rule them all",
"49 string to rule them all",
"50 string to rule them all",
"51 string to rule them all",
"52 string to rule them all",
"53 string to rule them all",
"54 string to rule them all",
"55 string to rule them all",
"56 string to rule them all",
"57 string to rule them all",
"58 string to rule them all",
"59 string to rule them all",
"60 string to rule them all",
"61 string to rule them all",
"62 string to rule them all",
"63 string to rule them all",
"64 string to rule them all",
"65 string to rule them all",
"66 string to rule them all",
"67 string to rule them all",
"68 string to rule them all",
"69 string to rule them all",
"70 string to rule them all",
"71 string to rule them all",
"72 string to rule them all",
"73 string to rule them all",
"74 string to rule them all",
"75 string to rule them all",
"76 string to rule them all",
"77 string to rule them all",
"78 string to rule them all",
"79 string to rule them all",
"80 string to rule them all",
"81 string to rule them all",
"82 string to rule them all",
"83 string to rule them all",
"84 string to rule them all",
"85 string to rule them all",
"86 string to rule them all",
"87 string to rule them all",
"88 string to rule them all",
"89 string to rule them all",
"90 string to rule them all",
"91 string to rule them all",
"92 string to rule them all",
"93 string to rule them all",
"94 string to rule them all",
"95 string to rule them all",
"96 string to rule them all",
"97 string to rule them all",
"98 string to rule them all",
"99 string to rule them all",
"100 string to rule them all",
"101 string to rule them all",
"102 string to rule them all",
"103 string to rule them all",
"104 string to rule them all",
"105 string to rule them all",
"106 string to rule them all",
"107 string to rule them all",
"108 string to rule them all",
"109 string to rule them all",
"110 string to rule them all",
"111 string to rule them all",
"112 string to rule them all",
"113 string to rule them all",
"114 string to rule them all",
"115 string to rule them all",
"116 string to rule them all",
"117 string to rule them all",
"118 string to rule them all",
"119 string to rule them all",
"120 string to rule them all",
"121 string to rule them all",
"122 string to rule them all",
"123 string to rule them all",
"124 string to rule them all",
"125 string to rule them all",
"126 string to rule them all",
"127 string to rule them all",
"128 string to rule them all",
"129 string to rule them all",
"130 string to rule them all",
"131 string to rule them all",
"132 string to rule them all",
"133 string to rule them all",
"134 string to rule them all",
"135 string to rule them all",
"136 string to rule them all",
"137 string to rule them all",
"138 string to rule them all",
"139 string to rule them all",
"140 string to rule them all",
"141 string to rule them all",
"142 string to rule them all",
"143 string to rule them all",
"144 string to rule them all",
"145 string to rule them all",
"146 string to rule them all",
"147 string to rule them all",
"148 string to rule them all",
"149 string to rule them all",
"150 string to rule them all",
"151 string to rule them all",
"152 string to rule them all",
"153 string to rule them all",
"154 string to rule them all",
"155 string to rule them all",
"156 string to rule them all",
"157 string to rule them all",
"158 string to rule them all",
"159 string to rule them all",
"160 string to rule them all",
"161 string to rule them all",
"162 string to rule them all",
"163 string to rule them all",
"164 string to rule them all",
"165 string to rule them all",
"166 string to rule them all",
"167 string to rule them all",
"168 string to rule them all",
"169 string to rule them all",
"170 string to rule them all",
"171 string to rule them all",
"172 string to rule them all",
"173 string to rule them all",
"174 string to rule them all",
"175 string to rule them all",
"176 string to rule them all",
"177 string to rule them all",
"178 string to rule them all",
"179 string to rule them all",
"180 string to rule them all",
"181 string to rule them all",
"182 string to rule them all",
"183 string to rule them all",
"184 string to rule them all",
"185 string to rule them all",
"186 string to rule them all",
"187 string to rule them all",
"188 string to rule them all",
"189 string to rule them all",
"190 string to rule them all",
"191 string to rule them all",
"192 string to rule them all",
"193 string to rule them all",
"194 string to rule them all",
"195 string to rule them all",
"196 string to rule them all",
"197 string to rule them all",
"198 string to rule them all",
"199 string to rule them all",
"200 string to rule them all",
"201 string to rule them all",
"202 string to rule them all",
"203 string to rule them all",
"204 string to rule them all",
"205 string to rule them all",
"206 string to rule them all",
"207 string to rule them all",
"208 string to rule them all",
"209 string to rule them all",
"210 string to rule them all",
"211 string to rule them all",
"212 string to rule them all",
"213 string to rule them all",
"214 string to rule them all",
"215 string to rule them all",
"216 string to rule them all",
"217 string to rule them all",
"218 string to rule them all",
"219 string to rule them all",
"220 string to rule them all",
"221 string to rule them all",
"222 string to rule them all",
"223 string to rule them all",
"224 string to rule them all",
"225 string to rule them all",
"226 string to rule them all",
"227 string to rule them all",
"228 string to rule them all",
"229 string to rule them all",
"230 string to rule them all",
"231 string to rule them all",
"232 string to rule them all",
"233 string to rule them all",
"234 string to rule them all",
"235 string to rule them all",
"236 string to rule them all",
"237 string to rule them all",
"238 string to rule them all",
"239 string to rule them all",
"240 string to rule them all",
"241 string to rule them all",
"242 string to rule them all",
"243 string to rule them all",
"244 string to rule them all",
"245 string to rule them all",
"246 string to rule them all",
"247 string to rule them all",
"248 string to rule them all",
"249 string to rule them all",
"250 string to rule them all",
"251 string to rule them all",
"252 string to rule them all",
"253 string to rule them all",
"254 string to rule them all",
"255 string to rule them all",
"256 string to rule them all",
"257 string to rule them all",
"258 string to rule them all",
"259 string to rule them all",
"260 string to rule them all",
"261 string to rule them all",
"262 string to rule them all",
"263 string to rule them all",
"264 string to rule them all",
"265 string to rule them all",
"266 string to rule them all",
"267 string to rule them all",
"268 string to rule them all",
"269 string to rule them all",
"270 string to rule them all",
"271 string to rule them all",
"272 string to rule them all",
"273 string to rule them all",
"274 string to rule them all",
"275 string to rule them all",
"276 string to rule them all",
"277 string to rule them all",
"278 string to rule them all",
"279 string to rule them all",
"280 string to rule them all",
"281 string to rule them all",
"282 string to rule them all",
"283 string to rule them all",
"284 string to rule them all",
"285 string to rule them all",
"286 string to rule them all",
"287 string to rule them all",
"288 string to rule them all",
"289 string to rule them all",
"290 string to rule them all",
"291 string to rule them all",
"292 string to rule them all",
"293 string to rule them all",
"294 string to rule them all",
"295 string to rule them all",
"296 string to rule them all",
"297 string to rule them all",
"298 string to rule them all",
"299 string to rule them all",
"300 string to rule them all",
"301 string to rule them all",
"302 string to rule them all",
"303 string to rule them all",
"304 string to rule them all",
"305 string to rule them all",
"306 string to rule them all",
"307 string to rule them all",
"308 string to rule them all",
"309 string to rule them all",
"310 string to rule them all",
"311 string to rule them all",
"312 string to rule them all",
"313 string to rule them all",
"314 string to rule them all",
"315 string to rule them all",
"316 string to rule them all",
"317 string to rule them all",
"318 string to rule them all",
"319 string to rule them all",
"320 string to rule them all",
"321 string to rule them all",
"322 string to rule them all",
"323 string to rule them all",
"324 string to rule them all",
"325 string to rule them all",
"326 string to rule them all",
"327 string to rule them all",
"328 string to rule them all",
"329 string to rule them all",
"330 string to rule them all",
"331 string to rule them all",
"332 string to rule them all",
"333 string to rule them all",
"334 string to rule them all",
"335 string to rule them all",
"336 string to rule them all",
"337 string to rule them all",
"338 string to rule them all",
"339 string to rule them all",
"340 string to rule them all",
"341 string to rule them all",
"342 string to rule them all",
"343 string to rule them all",
"344 string to rule them all",
"345 string to rule them all",
"346 string to rule them all",
"347 string to rule them all",
"348 string to rule them all",
"349 string to rule them all",
"350 string to rule them all",
"351 string to rule them all",
"352 string to rule them all",
"353 string to rule them all",
"354 string to rule them all",
"355 string to rule them all",
"356 string to rule them all",
"357 string to rule them all",
"358 string to rule them all",
"359 string to rule them all",
"360 string to rule them all",
"361 string to rule them all",
"362 string to rule them all",
"363 string to rule them all",
"364 string to rule them all",
"365 string to rule them all",
"366 string to rule them all",
"367 string to rule them all",
"368 string to rule them all",
"369 string to rule them all",
"370 string to rule them all",
"371 string to rule them all",
"372 string to rule them all",
"373 string to rule them all",
"374 string to rule them all",
"375 string to rule them all",
"376 string to rule them all",
"377 string to rule them all",
"378 string to rule them all",
"379 string to rule them all",
"380 string to rule them all",
"381 string to rule them all",
"382 string to rule them all",
"383 string to rule them all",
"384 string to rule them all",
"385 string to rule them all",
"386 string to rule them all",
"387 string to rule them all",
"388 string to rule them all",
"389 string to rule them all",
"390 string to rule them all",
"391 string to rule them all",
"392 string to rule them all",
"393 string to rule them all",
"394 string to rule them all",
"395 string to rule them all",
"396 string to rule them all",
"397 string to rule them all",
"398 string to rule them all",
"399 string to rule them all",
"400 string to rule them all",
"401 string to rule them all",
"402 string to rule them all",
"403 string to rule them all",
"404 string to rule them all",
"405 string to rule them all",
"406 string to rule them all",
"407 string to rule them all",
"408 string to rule them all",
"409 string to rule them all",
"410 string to rule them all",
"411 string to rule them all",
"412 string to rule them all",
"413 string to rule them all",
"414 string to rule them all",
"415 string to rule them all",
"416 string to rule them all",
"417 string to rule them all",
"418 string to rule them all",
"419 string to rule them all",
"420 string to rule them all",
"421 string to rule them all",
"422 string to rule them all",
"423 string to rule them all",
"424 string to rule them all",
"425 string to rule them all",
"426 string to rule them all",
"427 string to rule them all",
"428 string to rule them all",
"429 string to rule them all",
"430 string to rule them all",
"431 string to rule them all",
"432 string to rule them all",
"433 string to rule them all",
"434 string to rule them all",
"435 string to rule them all",
"436 string to rule them all",
"437 string to rule them all",
"438 string to rule them all",
"439 string to rule them all",
"440 string to rule them all",
"441 string to rule them all",
"442 string to rule them all",
"443 string to rule them all",
"444 string to rule them all",
"445 string to rule them all",
"446 string to rule them all",
"447 string to rule them all",
"448 string to rule them all",
"449 string to rule them all",
"450 string to rule them all",
"451 string to rule them all",
"452 string to rule them all",
"453 string to rule them all",
"454 string to rule them all",
"455 string to rule them all",
"456 string to rule them all",
"457 string to rule them all",
"458 string to rule them all",
"459 string to rule them all",
"460 string to rule them all",
"461 string to rule them all",
"462 string to rule them all",
"463 string to rule them all",
"464 string to rule them all",
"465 string to rule them all",
"466 string to rule them all",
"467 string to rule them all",
"468 string to rule them all",
"469 string to rule them all",
"470 string to rule them all",
"471 string to rule them all",
"472 string to rule them all",
"473 string to rule them all",
"474 string to rule them all",
"475 string to rule them all",
"476 string to rule them all",
"477 string to rule them all",
"478 string to rule them all",
"479 string to rule them all",
"480 string to rule them all",
"481 string to rule them all",
"482 string to rule them all",
"483 string to rule them all",
"484 string to rule them all",
"485 string to rule them all",
"486 string to rule them all",
"487 string to rule them all",
"488 string to rule them all",
"489 string to rule them all",
"490 string to rule them all",
"491 string to rule them all",
"492 string to rule them all",
"493 string to rule them all",
"494 string to rule them all",
"495 string to rule them all",
"496 string to rule them all",
"497 string to rule them all",
"498 string to rule them all",
"499 string to rule them all",
"500 string to rule them all",
"501 string to rule them all",
"502 string to rule them all",
"503 string to rule them all",
"504 string to rule them all",
"505 string to rule them all",
"506 string to rule them all",
"507 string to rule them all",
"508 string to rule them all",
"509 string to rule them all",
"510 string to rule them all",
"511 string to rule them all",
"512 string to rule them all",
"513 string to rule them all",
"514 string to rule them all",
"515 string to rule them all",
"516 string to rule them all",
"517 string to rule them all",
"518 string to rule them all",
"519 string to rule them all",
"520 string to rule them all",
"521 string to rule them all",
"522 string to rule them all",
"523 string to rule them all",
"524 string to rule them all",
"525 string to rule them all",
"526 string to rule them all",
"527 string to rule them all",
"528 string to rule them all",
"529 string to rule them all",
"530 string to rule them all",
"531 string to rule them all",
"532 string to rule them all",
"533 string to rule them all",
"534 string to rule them all",
"535 string to rule them all",
"536 string to rule them all",
"537 string to rule them all",
"538 string to rule them all",
"539 string to rule them all",
"540 string to rule them all",
"541 string to rule them all",
"542 string to rule them all",
"543 string to rule them all",
"544 string to rule them all",
"545 string to rule them all",
"546 string to rule them all",
"547 string to rule them all",
"548 string to rule them all",
"549 string to rule them all",
"550 string to rule them all",
"551 string to rule them all",
"552 string to rule them all",
"553 string to rule them all",
"554 string to rule them all",
"555 string to rule them all",
"556 string to rule them all",
"557 string to rule them all",
"558 string to rule them all",
"559 string to rule them all",
"560 string to rule them all",
"561 string to rule them all",
"562 string to rule them all",
"563 string to rule them all",
"564 string to rule them all",
"565 string to rule them all",
"566 string to rule them all",
"567 string to rule them all",
"568 string to rule them all",
"569 string to rule them all",
"570 string to rule them all",
"571 string to rule them all",
"572 string to rule them all",
"573 string to rule them all",
"574 string to rule them all",
"575 string to rule them all",
"576 string to rule them all",
"577 string to rule them all",
"578 string to rule them all",
"579 string to rule them all",
"580 string to rule them all",
"581 string to rule them all",
"582 string to rule them all",
"583 string to rule them all",
"584 string to rule them all",
"585 string to rule them all",
"586 string to rule them all",
"587 string to rule them all",
"588 string to rule them all",
"589 string to rule them all",
"590 string to rule them all",
"591 string to rule them all",
"592 string to rule them all",
"593 string to rule them all",
"594 string to rule them all",
"595 string to rule them all",
"596 string to rule them all",
"597 string to rule them all",
"598 string to rule them all",
"599 string to rule them all",
"600 string to rule them all",
"601 string to rule them all",
"602 string to rule them all",
"603 string to rule them all",
"604 string to rule them all",
"605 string to rule them all",
"606 string to rule them all",
"607 string to rule them all",
"608 string to rule them all",
"609 string to rule them all",
"610 string to rule them all",
"611 string to rule them all",
"612 string to rule them all",
"613 string to rule them all",
"614 string to rule them all",
"615 string to rule them all",
"616 string to rule them all",
"617 string to rule them all",
"618 string to rule them all",
"619 string to rule them all",
"620 string to rule them all",
"621 string to rule them all",
"622 string to rule them all",
"623 string to rule them all",
"624 string to rule them all",
"625 string to rule them all",
"626 string to rule them all",
"627 string to rule them all",
"628 string to rule them all",
"629 string to rule them all",
"630 string to rule them all",
"631 string to rule them all",
"632 string to rule them all",
"633 string to rule them all",
"634 string to rule them all",
"635 string to rule them all",
"636 string to rule them all",
"637 string to rule them all",
"638 string to rule them all",
"639 string to rule them all",
"640 string to rule them all",
"641 string to rule them all",
"642 string to rule them all",
"643 string to rule them all",
"644 string to rule them all",
"645 string to rule them all",
"646 string to rule them all",
"647 string to rule them all",
"648 string to rule them all",
"649 string to rule them all",
"650 string to rule them all",
"651 string to rule them all",
"652 string to rule them all",
"653 string to rule them all",
"654 string to rule them all",
"655 string to rule them all",
"656 string to rule them all",
"657 string to rule them all",
"658 string to rule them all",
"659 string to rule them all",
"660 string to rule them all",
"661 string to rule them all",
"662 string to rule them all",
"663 string to rule them all",
"664 string to rule them all",
"665 string to rule them all",
"666 string to rule them all",
"667 string to rule them all",
"668 string to rule them all",
"669 string to rule them all",
"670 string to rule them all",
"671 string to rule them all",
"672 string to rule them all",
"673 string to rule them all",
"674 string to rule them all",
"675 string to rule them all",
"676 string to rule them all",
"677 string to rule them all",
"678 string to rule them all",
"679 string to rule them all",
"680 string to rule them all",
"681 string to rule them all",
"682 string to rule them all",
"683 string to rule them all",
"684 string to rule them all",
"685 string to rule them all",
"686 string to rule them all",
"687 string to rule them all",
"688 string to rule them all",
"689 string to rule them all",
"690 string to rule them all",
"691 string to rule them all",
"692 string to rule them all",
"693 string to rule them all",
"694 string to rule them all",
"695 string to rule them all",
"696 string to rule them all",
"697 string to rule them all",
"698 string to rule them all",
"699 string to rule them all",
"700 string to rule them all",
"701 string to rule them all",
"702 string to rule them all",
"703 string to rule them all",
"704 string to rule them all",
"705 string to rule them all",
"706 string to rule them all",
"707 string to rule them all",
"708 string to rule them all",
"709 string to rule them all",
"710 string to rule them all",
"711 string to rule them all",
"712 string to rule them all",
"713 string to rule them all",
"714 string to rule them all",
"715 string to rule them all",
"716 string to rule them all",
"717 string to rule them all",
"718 string to rule them all",
"719 string to rule them all",
"720 string to rule them all",
"721 string to rule them all",
"722 string to rule them all",
"723 string to rule them all",
"724 string to rule them all",
"725 string to rule them all",
"726 string to rule them all",
"727 string to rule them all",
"728 string to rule them all",
"729 string to rule them all",
"730 string to rule them all",
"731 string to rule them all",
"732 string to rule them all",
"733 string to rule them all",
"734 string to rule them all",
"735 string to rule them all",
"736 string to rule them all",
"737 string to rule them all",
"738 string to rule them all",
"739 string to rule them all",
"740 string to rule them all",
"741 string to rule them all",
"742 string to rule them all",
"743 string to rule them all",
"744 string to rule them all",
"745 string to rule them all",
"746 string to rule them all",
"747 string to rule them all",
"748 string to rule them all",
"749 string to rule them all",
"750 string to rule them all",
"751 string to rule them all",
"752 string to rule them all",
"753 string to rule them all",
"754 string to rule them all",
"755 string to rule them all",
"756 string to rule them all",
"757 string to rule them all",
"758 string to rule them all",
"759 string to rule them all",
"760 string to rule them all",
"761 string to rule them all",
"762 string to rule them all",
"763 string to rule them all",
"764 string to rule them all",
"765 string to rule them all",
"766 string to rule them all",
"767 string to rule them all",
"768 string to rule them all",
"769 string to rule them all",
"770 string to rule them all",
"771 string to rule them all",
"772 string to rule them all",
"773 string to rule them all",
"774 string to rule them all",
"775 string to rule them all",
"776 string to rule them all",
"777 string to rule them all",
"778 string to rule them all",
"779 string to rule them all",
"780 string to rule them all",
"781 string to rule them all",
"782 string to rule them all",
"783 string to rule them all",
"784 string to rule them all",
"785 string to rule them all",
"786 string to rule them all",
"787 string to rule them all",
"788 string to rule them all",
"789 string to rule them all",
"790 string to rule them all",
"791 string to rule them all",
"792 string to rule them all",
"793 string to rule them all",
"794 string to rule them all",
"795 string to rule them all",
"796 string to rule them all",
"797 string to rule them all",
"798 string to rule them all",
"799 string to rule them all",
"800 string to rule them all",
"801 string to rule them all",
"802 string to rule them all",
"803 string to rule them all",
"804 string to rule them all",
"805 string to rule them all",
"806 string to rule them all",
"807 string to rule them all",
"808 string to rule them all",
"809 string to rule them all",
"810 string to rule them all",
"811 string to rule them all",
"812 string to rule them all",
"813 string to rule them all",
"814 string to rule them all",
"815 string to rule them all",
"816 string to rule them all",
"817 string to rule them all",
"818 string to rule them all",
"819 string to rule them all",
"820 string to rule them all",
"821 string to rule them all",
"822 string to rule them all",
"823 string to rule them all",
"824 string to rule them all",
"825 string to rule them all",
"826 string to rule them all",
"827 string to rule them all",
"828 string to rule them all",
"829 string to rule them all",
"830 string to rule them all",
"831 string to rule them all",
"832 string to rule them all",
"833 string to rule them all",
"834 string to rule them all",
"835 string to rule them all",
"836 string to rule them all",
"837 string to rule them all",
"838 string to rule them all",
"839 string to rule them all",
"840 string to rule them all",
"841 string to rule them all",
"842 string to rule them all",
"843 string to rule them all",
"844 string to rule them all",
"845 string to rule them all",
"846 string to rule them all",
"847 string to rule them all",
"848 string to rule them all",
"849 string to rule them all",
"850 string to rule them all",
"851 string to rule them all",
"852 string to rule them all",
"853 string to rule them all",
"854 string to rule them all",
"855 string to rule them all",
"856 string to rule them all",
"857 string to rule them all",
"858 string to rule them all",
"859 string to rule them all",
"860 string to rule them all",
"861 string to rule them all",
"862 string to rule them all",
"863 string to rule them all",
"864 string to rule them all",
"865 string to rule them all",
"866 string to rule them all",
"867 string to rule them all",
"868 string to rule them all",
"869 string to rule them all",
"870 string to rule them all",
"871 string to rule them all",
"872 string to rule them all",
"873 string to rule them all",
"874 string to rule them all",
"875 string to rule them all",
"876 string to rule them all",
"877 string to rule them all",
"878 string to rule them all",
"879 string to rule them all",
"880 string to rule them all",
"881 string to rule them all",
"882 string to rule them all",
"883 string to rule them all",
"884 string to rule them all",
"885 string to rule them all",
"886 string to rule them all",
"887 string to rule them all",
"888 string to rule them all",
"889 string to rule them all",
"890 string to rule them all",
"891 string to rule them all",
"892 string to rule them all",
"893 string to rule them all",
"894 string to rule them all",
"895 string to rule them all",
"896 string to rule them all",
"897 string to rule them all",
"898 string to rule them all",
"899 string to rule them all",
"900 string to rule them all",
"901 string to rule them all",
"902 string to rule them all",
"903 string to rule them all",
"904 string to rule them all",
"905 string to rule them all",
"906 string to rule them all",
"907 string to rule them all",
"908 string to rule them all",
"909 string to rule them all",
"910 string to rule them all",
"911 string to rule them all",
"912 string to rule them all",
"913 string to rule them all",
"914 string to rule them all",
"915 string to rule them all",
"916 string to rule them all",
"917 string to rule them all",
"918 string to rule them all",
"919 string to rule them all",
"920 string to rule them all",
"921 string to rule them all",
"922 string to rule them all",
"923 string to rule them all",
"924 string to rule them all",
"925 string to rule them all",
"926 string to rule them all",
"927 string to rule them all",
"928 string to rule them all",
"929 string to rule them all",
"930 string to rule them all",
"931 string to rule them all",
"932 string to rule them all",
"933 string to rule them all",
"934 string to rule them all",
"935 string to rule them all",
"936 string to rule them all",
"937 string to rule them all",
"938 string to rule them all",
"939 string to rule them all",
"940 string to rule them all",
"941 string to rule them all",
"942 string to rule them all",
"943 string to rule them all",
"944 string to rule them all",
"945 string to rule them all",
"946 string to rule them all",
"947 string to rule them all",
"948 string to rule them all",
"949 string to rule them all",
"950 string to rule them all",
"951 string to rule them all",
"952 string to rule them all",
"953 string to rule them all",
"954 string to rule them all",
"955 string to rule them all",
"956 string to rule them all",
"957 string to rule them all",
"958 string to rule them all",
"959 string to rule them all",
"960 string to rule them all",
"961 string to rule them all",
"962 string to rule them all",
"963 string to rule them all",
"964 string to rule them all",
"965 string to rule them all",
"966 string to rule them all",
"967 string to rule them all",
"968 string to rule them all",
"969 string to rule them all",
"970 string to rule them all",
"971 string to rule them all",
"972 string to rule them all",
"973 string to rule them all",
"974 string to rule them all",
"975 string to rule them all",
"976 string to rule them all",
"977 string to rule them all",
"978 string to rule them all",
"979 string to rule them all",
"980 string to rule them all",
"981 string to rule them all",
"982 string to rule them all",
"983 string to rule them all",
"984 string to rule them all",
"985 string to rule them all",
"986 string to rule them all",
"987 string to rule them all",
"988 string to rule them all",
"989 string to rule them all",
"990 string to rule them all",
"991 string to rule them all",
"992 string to rule them all",
"993 string to rule them all",
"994 string to rule them all",
"995 string to rule them all",
"996 string to rule them all",
"997 string to rule them all",
"998 string to rule them all",
"999 string to rule them all",
"1000 string to rule them all",
"1001 string to rule them all",
"1002 string to rule them all",
"1003 string to rule them all",
"1004 string to rule them all",
"1005 string to rule them all",
"1006 string to rule them all",
"1007 string to rule them all",
"1008 string to rule them all",
"1009 string to rule them all",
"1010 string to rule them all",
"1011 string to rule them all",
"1012 string to rule them all",
"1013 string to rule them all",
"1014 string to rule them all",
"1015 string to rule them all",
"1016 string to rule them all",
"1017 string to rule them all",
"1018 string to rule them all",
"1019 string to rule them all",
"1020 string to rule them all",
"1021 string to rule them all",
"1022 string to rule them all",
"1023 string to rule them all",
"1024 string to rule them all",
"1025 string to rule them all",
"1026 string to rule them all",
"1027 string to rule them all",
"1028 string to rule them all",
"1029 string to rule them all",
"1030 string to rule them all",
"1031 string to rule them all",
"1032 string to rule them all",
"1033 string to rule them all",
"1034 string to rule them all",
"1035 string to rule them all",
"1036 string to rule them all",
"1037 string to rule them all",
"1038 string to rule them all",
"1039 string to rule them all",
"1040 string to rule them all",
"1041 string to rule them all",
"1042 string to rule them all",
"1043 string to rule them all",
"1044 string to rule them all",
"1045 string to rule them all",
"1046 string to rule them all",
"1047 string to rule them all",
"1048 string to rule them all",
"1049 string to rule them all",
"1050 string to rule them all",
"1051 string to rule them all",
"1052 string to rule them all",
"1053 string to rule them all",
"1054 string to rule them all",
"1055 string to rule them all",
"1056 string to rule them all",
"1057 string to rule them all",
"1058 string to rule them all",
"1059 string to rule them all",
"1060 string to rule them all",
"1061 string to rule them all",
"1062 string to rule them all",
"1063 string to rule them all",
"1064 string to rule them all",
"1065 string to rule them all",
"1066 string to rule them all",
"1067 string to rule them all",
"1068 string to rule them all",
"1069 string to rule them all",
"1070 string to rule them all",
"1071 string to rule them all",
"1072 string to rule them all",
"1073 string to rule them all",
"1074 string to rule them all",
"1075 string to rule them all",
"1076 string to rule them all",
"1077 string to rule them all",
"1078 string to rule them all",
"1079 string to rule them all",
"1080 string to rule them all",
"1081 string to rule them all",
"1082 string to rule them all",
"1083 string to rule them all",
"1084 string to rule them all",
"1085 string to rule them all",
"1086 string to rule them all",
"1087 string to rule them all",
"1088 string to rule them all",
"1089 string to rule them all",
"1090 string to rule them all",
"1091 string to rule them all",
"1092 string to rule them all",
"1093 string to rule them all",
"1094 string to rule them all",
"1095 string to rule them all",
"1096 string to rule them all",
"1097 string to rule them all",
"1098 string to rule them all",
"1099 string to rule them all",
"1100 string to rule them all",
"1101 string to rule them all",
"1102 string to rule them all",
"1103 string to rule them all",
"1104 string to rule them all",
"1105 string to rule them all",
"1106 string to rule them all",
"1107 string to rule them all",
"1108 string to rule them all",
"1109 string to rule them all",
"1110 string to rule them all",
"1111 string to rule them all",
"1112 string to rule them all",
"1113 string to rule them all",
"1114 string to rule them all",
"1115 string to rule them all",
"1116 string to rule them all",
"1117 string to rule them all",
"1118 string to rule them all",
"1119 string to rule them all",
"1120 string to rule them all",
"1121 string to rule them all",
"1122 string to rule them all",
"1123 string to rule them all",
"1124 string to rule them all",
"1125 string to rule them all",
"1126 string to rule them all",
"1127 string to rule them all",
"1128 string to rule them all",
"1129 string to rule them all",
"1130 string to rule them all",
"1131 string to rule them all",
"1132 string to rule them all",
"1133 string to rule them all",
"1134 string to rule them all",
"1135 string to rule them all",
"1136 string to rule them all",
"1137 string to rule them all",
"1138 string to rule them all",
"1139 string to rule them all",
"1140 string to rule them all",
"1141 string to rule them all",
"1142 string to rule them all",
"1143 string to rule them all",
"1144 string to rule them all",
"1145 string to rule them all",
"1146 string to rule them all",
"1147 string to rule them all",
"1148 string to rule them all",
"1149 string to rule them all",
"1150 string to rule them all",
"1151 string to rule them all",
"1152 string to rule them all",
"1153 string to rule them all",
"1154 string to rule them all",
"1155 string to rule them all",
"1156 string to rule them all",
"1157 string to rule them all",
"1158 string to rule them all",
"1159 string to rule them all",
"1160 string to rule them all",
"1161 string to rule them all",
"1162 string to rule them all",
"1163 string to rule them all",
"1164 string to rule them all",
"1165 string to rule them all",
"1166 string to rule them all",
"1167 string to rule them all",
"1168 string to rule them all",
"1169 string to rule them all",
"1170 string to rule them all",
"1171 string to rule them all",
"1172 string to rule them all",
"1173 string to rule them all",
"1174 string to rule them all",
"1175 string to rule them all",
"1176 string to rule them all",
"1177 string to rule them all",
"1178 string to rule them all",
"1179 string to rule them all",
"1180 string to rule them all",
"1181 string to rule them all",
"1182 string to rule them all",
"1183 string to rule them all",
"1184 string to rule them all",
"1185 string to rule them all",
"1186 string to rule them all",
"1187 string to rule them all",
"1188 string to rule them all",
"1189 string to rule them all",
"1190 string to rule them all",
"1191 string to rule them all",
"1192 string to rule them all",
"1193 string to rule them all",
"1194 string to rule them all",
"1195 string to rule them all",
"1196 string to rule them all",
"1197 string to rule them all",
"1198 string to rule them all",
"1199 string to rule them all",
"1200 string to rule them all",
"1201 string to rule them all",
"1202 string to rule them all",
"1203 string to rule them all",
"1204 string to rule them all",
"1205 string to rule them all",
"1206 string to rule them all",
"1207 string to rule them all",
"1208 string to rule them all",
"1209 string to rule them all",
"1210 string to rule them all",
"1211 string to rule them all",
"1212 string to rule them all",
"1213 string to rule them all",
"1214 string to rule them all",
"1215 string to rule them all",
"1216 string to rule them all",
"1217 string to rule them all",
"1218 string to rule them all",
"1219 string to rule them all",
"1220 string to rule them all",
"1221 string to rule them all",
"1222 string to rule them all",
"1223 string to rule them all",
"1224 string to rule them all",
"1225 string to rule them all",
"1226 string to rule them all",
"1227 string to rule them all",
"1228 string to rule them all",
"1229 string to rule them all",
"1230 string to rule them all",
"1231 string to rule them all",
"1232 string to rule them all",
"1233 string to rule them all",
"1234 string to rule them all",
"1235 string to rule them all",
"1236 string to rule them all",
"1237 string to rule them all",
"1238 string to rule them all",
"1239 string to rule them all",
"1240 string to rule them all",
"1241 string to rule them all",
"1242 string to rule them all",
"1243 string to rule them all",
"1244 string to rule them all",
"1245 string to rule them all",
"1246 string to rule them all",
"1247 string to rule them all",
"1248 string to rule them all",
"1249 string to rule them all",
"1250 string to rule them all",
"1251 string to rule them all",
"1252 string to rule them all",
"1253 string to rule them all",
"1254 string to rule them all",
"1255 string to rule them all",
"1256 string to rule them all",
"1257 string to rule them all",
"1258 string to rule them all",
"1259 string to rule them all",
"1260 string to rule them all",
"1261 string to rule them all",
"1262 string to rule them all",
"1263 string to rule them all",
"1264 string to rule them all",
"1265 string to rule them all",
"1266 string to rule them all",
"1267 string to rule them all",
"1268 string to rule them all",
"1269 string to rule them all",
"1270 string to rule them all",
"1271 string to rule them all",
"1272 string to rule them all",
"1273 string to rule them all",
"1274 string to rule them all",
"1275 string to rule them all",
"1276 string to rule them all",
"1277 string to rule them all",
"1278 string to rule them all",
"1279 string to rule them all",
"1280 string to rule them all",
"1281 string to rule them all",
"1282 string to rule them all",
"1283 string to rule them all",
"1284 string to rule them all",
"1285 string to rule them all",
"1286 string to rule them all",
"1287 string to rule them all",
"1288 string to rule them all",
"1289 string to rule them all",
"1290 string to rule them all",
"1291 string to rule them all",
"1292 string to rule them all",
"1293 string to rule them all",
"1294 string to rule them all",
"1295 string to rule them all",
"1296 string to rule them all",
"1297 string to rule them all",
"1298 string to rule them all",
"1299 string to rule them all",
"1300 string to rule them all",
"1301 string to rule them all",
"1302 string to rule them all",
"1303 string to rule them all",
"1304 string to rule them all",
"1305 string to rule them all",
"1306 string to rule them all",
"1307 string to rule them all",
"1308 string to rule them all",
"1309 string to rule them all",
"1310 string to rule them all",
"1311 string to rule them all",
"1312 string to rule them all",
"1313 string to rule them all",
"1314 string to rule them all",
"1315 string to rule them all",
"1316 string to rule them all",
"1317 string to rule them all",
"1318 string to rule them all",
"1319 string to rule them all",
"1320 string to rule them all",
"1321 string to rule them all",
"1322 string to rule them all",
"1323 string to rule them all",
"1324 string to rule them all",
"1325 string to rule them all",
"1326 string to rule them all",
"1327 string to rule them all",
"1328 string to rule them all",
"1329 string to rule them all",
"1330 string to rule them all",
"1331 string to rule them all",
"1332 string to rule them all",
"1333 string to rule them all",
"1334 string to rule them all",
"1335 string to rule them all",
"1336 string to rule them all",
"1337 string to rule them all",
"1338 string to rule them all",
"1339 string to rule them all",
"1340 string to rule them all",
"1341 string to rule them all",
"1342 string to rule them all",
"1343 string to rule them all",
"1344 string to rule them all",
"1345 string to rule them all",
"1346 string to rule them all",
"1347 string to rule them all",
"1348 string to rule them all",
"1349 string to rule them all",
"1350 string to rule them all",
"1351 string to rule them all",
"1352 string to rule them all",
"1353 string to rule them all",
"1354 string to rule them all",
"1355 string to rule them all",
"1356 string to rule them all",
"1357 string to rule them all",
"1358 string to rule them all",
"1359 string to rule them all",
"1360 string to rule them all",
"1361 string to rule them all",
"1362 string to rule them all",
"1363 string to rule them all",
"1364 string to rule them all",
"1365 string to rule them all",
"1366 string to rule them all",
"1367 string to rule them all",
"1368 string to rule them all",
"1369 string to rule them all",
"1370 string to rule them all",
"1371 string to rule them all",
"1372 string to rule them all",
"1373 string to rule them all",
"1374 string to rule them all",
"1375 string to rule them all",
"1376 string to rule them all",
"1377 string to rule them all",
"1378 string to rule them all",
"1379 string to rule them all",
"1380 string to rule them all",
"1381 string to rule them all",
"1382 string to rule them all",
"1383 string to rule them all",
"1384 string to rule them all",
"1385 string to rule them all",
"1386 string to rule them all",
"1387 string to rule them all",
"1388 string to rule them all",
"1389 string to rule them all",
"1390 string to rule them all",
"1391 string to rule them all",
"1392 string to rule them all",
"1393 string to rule them all",
"1394 string to rule them all",
"1395 string to rule them all",
"1396 string to rule them all",
"1397 string to rule them all",
"1398 string to rule them all",
"1399 string to rule them all",
"1400 string to rule them all",
"1401 string to rule them all",
"1402 string to rule them all",
"1403 string to rule them all",
"1404 string to rule them all",
"1405 string to rule them all",
"1406 string to rule them all",
"1407 string to rule them all",
"1408 string to rule them all",
"1409 string to rule them all",
"1410 string to rule them all",
"1411 string to rule them all",
"1412 string to rule them all",
"1413 string to rule them all",
"1414 string to rule them all",
"1415 string to rule them all",
"1416 string to rule them all",
"1417 string to rule them all",
"1418 string to rule them all",
"1419 string to rule them all",
"1420 string to rule them all",
"1421 string to rule them all",
"1422 string to rule them all",
"1423 string to rule them all",
"1424 string to rule them all",
"1425 string to rule them all",
"1426 string to rule them all",
"1427 string to rule them all",
"1428 string to rule them all",
"1429 string to rule them all",
"1430 string to rule them all",
"1431 string to rule them all",
"1432 string to rule them all",
"1433 string to rule them all",
"1434 string to rule them all",
"1435 string to rule them all",
"1436 string to rule them all",
"1437 string to rule them all",
"1438 string to rule them all",
"1439 string to rule them all",
"1440 string to rule them all",
"1441 string to rule them all",
"1442 string to rule them all",
"1443 string to rule them all",
"1444 string to rule them all",
"1445 string to rule them all",
"1446 string to rule them all",
"1447 string to rule them all",
"1448 string to rule them all",
"1449 string to rule them all",
"1450 string to rule them all",
"1451 string to rule them all",
"1452 string to rule them all",
"1453 string to rule them all",
"1454 string to rule them all",
"1455 string to rule them all",
"1456 string to rule them all",
"1457 string to rule them all",
"1458 string to rule them all",
"1459 string to rule them all",
"1460 string to rule them all",
"1461 string to rule them all",
"1462 string to rule them all",
"1463 string to rule them all",
"1464 string to rule them all",
"1465 string to rule them all",
"1466 string to rule them all",
"1467 string to rule them all",
"1468 string to rule them all",
"1469 string to rule them all",
"1470 string to rule them all",
"1471 string to rule them all",
"1472 string to rule them all",
"1473 string to rule them all",
"1474 string to rule them all",
"1475 string to rule them all",
"1476 string to rule them all",
"1477 string to rule them all",
"1478 string to rule them all",
"1479 string to rule them all",
"1480 string to rule them all",
"1481 string to rule them all",
"1482 string to rule them all",
"1483 string to rule them all",
"1484 string to rule them all",
"1485 string to rule them all",
"1486 string to rule them all",
"1487 string to rule them all",
"1488 string to rule them all",
"1489 string to rule them all",
"1490 string to rule them all",
"1491 string to rule them all",
"1492 string to rule them all",
"1493 string to rule them all",
"1494 string to rule them all",
"1495 string to rule them all",
"1496 string to rule them all",
"1497 string to rule them all",
"1498 string to rule them all",
"1499 string to rule them all",
"1500 string to rule them all",
"1501 string to rule them all",
"1502 string to rule them all",
"1503 string to rule them all",
"1504 string to rule them all",
"1505 string to rule them all",
"1506 string to rule them all",
"1507 string to rule them all",
"1508 string to rule them all",
"1509 string to rule them all",
"1510 string to rule them all",
"1511 string to rule them all",
"1512 string to rule them all",
"1513 string to rule them all",
"1514 string to rule them all",
"1515 string to rule them all",
"1516 string to rule them all",
"1517 string to rule them all",
"1518 string to rule them all",
"1519 string to rule them all",
"1520 string to rule them all",
"1521 string to rule them all",
"1522 string to rule them all",
"1523 string to rule them all",
"1524 string to rule them all",
"1525 string to rule them all",
"1526 string to rule them all",
"1527 string to rule them all",
"1528 string to rule them all",
"1529 string to rule them all",
"1530 string to rule them all",
"1531 string to rule them all",
"1532 string to rule them all",
"1533 string to rule them all",
"1534 string to rule them all",
"1535 string to rule them all",
"1536 string to rule them all",
"1537 string to rule them all",
"1538 string to rule them all",
"1539 string to rule them all",
"1540 string to rule them all",
"1541 string to rule them all",
"1542 string to rule them all",
"1543 string to rule them all",
"1544 string to rule them all",
"1545 string to rule them all",
"1546 string to rule them all",
"1547 string to rule them all",
"1548 string to rule them all",
"1549 string to rule them all",
"1550 string to rule them all",
"1551 string to rule them all",
"1552 string to rule them all",
"1553 string to rule them all",
"1554 string to rule them all",
"1555 string to rule them all",
"1556 string to rule them all",
"1557 string to rule them all",
"1558 string to rule them all",
"1559 string to rule them all",
"1560 string to rule them all",
"1561 string to rule them all",
"1562 string to rule them all",
"1563 string to rule them all",
"1564 string to rule them all",
"1565 string to rule them all",
"1566 string to rule them all",
"1567 string to rule them all",
"1568 string to rule them all",
"1569 string to rule them all",
"1570 string to rule them all",
"1571 string to rule them all",
"1572 string to rule them all",
"1573 string to rule them all",
"1574 string to rule them all",
"1575 string to rule them all",
"1576 string to rule them all",
"1577 string to rule them all",
"1578 string to rule them all",
"1579 string to rule them all",
"1580 string to rule them all",
"1581 string to rule them all",
"1582 string to rule them all",
"1583 string to rule them all",
"1584 string to rule them all",
"1585 string to rule them all",
"1586 string to rule them all",
"1587 string to rule them all",
"1588 string to rule them all",
"1589 string to rule them all",
"1590 string to rule them all",
"1591 string to rule them all",
"1592 string to rule them all",
"1593 string to rule them all",
"1594 string to rule them all",
"1595 string to rule them all",
"1596 string to rule them all",
"1597 string to rule them all",
"1598 string to rule them all",
"1599 string to rule them all",
"1600 string to rule them all",
"1601 string to rule them all",
"1602 string to rule them all",
"1603 string to rule them all",
"1604 string to rule them all",
"1605 string to rule them all",
"1606 string to rule them all",
"1607 string to rule them all",
"1608 string to rule them all",
"1609 string to rule them all",
"1610 string to rule them all",
"1611 string to rule them all",
"1612 string to rule them all",
"1613 string to rule them all",
"1614 string to rule them all",
"1615 string to rule them all",
"1616 string to rule them all",
"1617 string to rule them all",
"1618 string to rule them all",
"1619 string to rule them all",
"1620 string to rule them all",
"1621 string to rule them all",
"1622 string to rule them all",
"1623 string to rule them all",
"1624 string to rule them all",
"1625 string to rule them all",
"1626 string to rule them all",
"1627 string to rule them all",
"1628 string to rule them all",
"1629 string to rule them all",
"1630 string to rule them all",
"1631 string to rule them all",
"1632 string to rule them all",
"1633 string to rule them all",
"1634 string to rule them all",
"1635 string to rule them all",
"1636 string to rule them all",
"1637 string to rule them all",
"1638 string to rule them all",
"1639 string to rule them all",
"1640 string to rule them all",
"1641 string to rule them all",
"1642 string to rule them all",
"1643 string to rule them all",
"1644 string to rule them all",
"1645 string to rule them all",
"1646 string to rule them all",
"1647 string to rule them all",
"1648 string to rule them all",
"1649 string to rule them all",
"1650 string to rule them all",
"1651 string to rule them all",
"1652 string to rule them all",
"1653 string to rule them all",
"1654 string to rule them all",
"1655 string to rule them all",
"1656 string to rule them all",
"1657 string to rule them all",
"1658 string to rule them all",
"1659 string to rule them all",
"1660 string to rule them all",
"1661 string to rule them all",
"1662 string to rule them all",
"1663 string to rule them all",
"1664 string to rule them all",
"1665 string to rule them all",
"1666 string to rule them all",
"1667 string to rule them all",
"1668 string to rule them all",
"1669 string to rule them all",
"1670 string to rule them all",
"1671 string to rule them all",
"1672 string to rule them all",
"1673 string to rule them all",
"1674 string to rule them all",
"1675 string to rule them all",
"1676 string to rule them all",
"1677 string to rule them all",
"1678 string to rule them all",
"1679 string to rule them all",
"1680 string to rule them all",
"1681 string to rule them all",
"1682 string to rule them all",
"1683 string to rule them all",
"1684 string to rule them all",
"1685 string to rule them all",
"1686 string to rule them all",
"1687 string to rule them all",
"1688 string to rule them all",
"1689 string to rule them all",
"1690 string to rule them all",
"1691 string to rule them all",
"1692 string to rule them all",
"1693 string to rule them all",
"1694 string to rule them all",
"1695 string to rule them all",
"1696 string to rule them all",
"1697 string to rule them all",
"1698 string to rule them all",
"1699 string to rule them all",
"1700 string to rule them all",
"1701 string to rule them all",
"1702 string to rule them all",
"1703 string to rule them all",
"1704 string to rule them all",
"1705 string to rule them all",
"1706 string to rule them all",
"1707 string to rule them all",
"1708 string to rule them all",
"1709 string to rule them all",
"1710 string to rule them all",
"1711 string to rule them all",
"1712 string to rule them all",
"1713 string to rule them all",
"1714 string to rule them all",
"1715 string to rule them all",
"1716 string to rule them all",
"1717 string to rule them all",
"1718 string to rule them all",
"1719 string to rule them all",
"1720 string to rule them all",
"1721 string to rule them all",
"1722 string to rule them all",
"1723 string to rule them all",
"1724 string to rule them all",
"1725 string to rule them all",
"1726 string to rule them all",
"1727 string to rule them all",
"1728 string to rule them all",
"1729 string to rule them all",
"1730 string to rule them all",
"1731 string to rule them all",
"1732 string to rule them all",
"1733 string to rule them all",
"1734 string to rule them all",
"1735 string to rule them all",
"1736 string to rule them all",
"1737 string to rule them all",
"1738 string to rule them all",
"1739 string to rule them all",
"1740 string to rule them all",
"1741 string to rule them all",
"1742 string to rule them all",
"1743 string to rule them all",
"1744 string to rule them all",
"1745 string to rule them all",
"1746 string to rule them all",
"1747 string to rule them all",
"1748 string to rule them all",
"1749 string to rule them all",
"1750 string to rule them all",
"1751 string to rule them all",
"1752 string to rule them all",
"1753 string to rule them all",
"1754 string to rule them all",
"1755 string to rule them all",
"1756 string to rule them all",
"1757 string to rule them all",
"1758 string to rule them all",
"1759 string to rule them all",
"1760 string to rule them all",
"1761 string to rule them all",
"1762 string to rule them all",
"1763 string to rule them all",
"1764 string to rule them all",
"1765 string to rule them all",
"1766 string to rule them all",
"1767 string to rule them all",
"1768 string to rule them all",
"1769 string to rule them all",
"1770 string to rule them all",
"1771 string to rule them all",
"1772 string to rule them all",
"1773 string to rule them all",
"1774 string to rule them all",
"1775 string to rule them all",
"1776 string to rule them all",
"1777 string to rule them all",
"1778 string to rule them all",
"1779 string to rule them all",
"1780 string to rule them all",
"1781 string to rule them all",
"1782 string to rule them all",
"1783 string to rule them all",
"1784 string to rule them all",
"1785 string to rule them all",
"1786 string to rule them all",
"1787 string to rule them all",
"1788 string to rule them all",
"1789 string to rule them all",
"1790 string to rule them all",
"1791 string to rule them all",
"1792 string to rule them all",
"1793 string to rule them all",
"1794 string to rule them all",
"1795 string to rule them all",
"1796 string to rule them all",
"1797 string to rule them all",
"1798 string to rule them all",
"1799 string to rule them all",
"1800 string to rule them all",
"1801 string to rule them all",
"1802 string to rule them all",
"1803 string to rule them all",
"1804 string to rule them all",
"1805 string to rule them all",
"1806 string to rule them all",
"1807 string to rule them all",
"1808 string to rule them all",
"1809 string to rule them all",
"1810 string to rule them all",
"1811 string to rule them all",
"1812 string to rule them all",
"1813 string to rule them all",
"1814 string to rule them all",
"1815 string to rule them all",
"1816 string to rule them all",
"1817 string to rule them all",
"1818 string to rule them all",
"1819 string to rule them all",
"1820 string to rule them all",
"1821 string to rule them all",
"1822 string to rule them all",
"1823 string to rule them all",
"1824 string to rule them all",
"1825 string to rule them all",
"1826 string to rule them all",
"1827 string to rule them all",
"1828 string to rule them all",
"1829 string to rule them all",
"1830 string to rule them all",
"1831 string to rule them all",
"1832 string to rule them all",
"1833 string to rule them all",
"1834 string to rule them all",
"1835 string to rule them all",
"1836 string to rule them all",
"1837 string to rule them all",
"1838 string to rule them all",
"1839 string to rule them all",
"1840 string to rule them all",
"1841 string to rule them all",
"1842 string to rule them all",
"1843 string to rule them all",
"1844 string to rule them all",
"1845 string to rule them all",
"1846 string to rule them all",
"1847 string to rule them all",
"1848 string to rule them all",
"1849 string to rule them all",
"1850 string to rule them all",
"1851 string to rule them all",
"1852 string to rule them all",
"1853 string to rule them all",
"1854 string to rule them all",
"1855 string to rule them all",
"1856 string to rule them all",
"1857 string to rule them all",
"1858 string to rule them all",
"1859 string to rule them all",
"1860 string to rule them all",
"1861 string to rule them all",
"1862 string to rule them all",
"1863 string to rule them all",
"1864 string to rule them all",
"1865 string to rule them all",
"1866 string to rule them all",
"1867 string to rule them all",
"1868 string to rule them all",
"1869 string to rule them all",
"1870 string to rule them all",
"1871 string to rule them all",
"1872 string to rule them all",
"1873 string to rule them all",
"1874 string to rule them all",
"1875 string to rule them all",
"1876 string to rule them all",
"1877 string to rule them all",
"1878 string to rule them all",
"1879 string to rule them all",
"1880 string to rule them all",
"1881 string to rule them all",
"1882 string to rule them all",
"1883 string to rule them all",
"1884 string to rule them all",
"1885 string to rule them all",
"1886 string to rule them all",
"1887 string to rule them all",
"1888 string to rule them all",
"1889 string to rule them all",
"1890 string to rule them all",
"1891 string to rule them all",
"1892 string to rule them all",
"1893 string to rule them all",
"1894 string to rule them all",
"1895 string to rule them all",
"1896 string to rule them all",
"1897 string to rule them all",
"1898 string to rule them all",
"1899 string to rule them all",
"1900 string to rule them all",
"1901 string to rule them all",
"1902 string to rule them all",
"1903 string to rule them all",
"1904 string to rule them all",
"1905 string to rule them all",
"1906 string to rule them all",
"1907 string to rule them all",
"1908 string to rule them all",
"1909 string to rule them all",
"1910 string to rule them all",
"1911 string to rule them all",
"1912 string to rule them all",
"1913 string to rule them all",
"1914 string to rule them all",
"1915 string to rule them all",
"1916 string to rule them all",
"1917 string to rule them all",
"1918 string to rule them all",
"1919 string to rule them all",
"1920 string to rule them all",
"1921 string to rule them all",
"1922 string to rule them all",
"1923 string to rule them all",
"1924 string to rule them all",
"1925 string to rule them all",
"1926 string to rule them all",
"1927 string to rule them all",
"1928 string to rule them all",
"1929 string to rule them all",
"1930 string to rule them all",
"1931 string to rule them all",
"1932 string to rule them all",
"1933 string to rule them all",
"1934 string to rule them all",
"1935 string to rule them all",
"1936 string to rule them all",
"1937 string to rule them all",
"1938 string to rule them all",
"1939 string to rule them all",
"1940 string to rule them all",
"1941 string to rule them all",
"1942 string to rule them all",
"1943 string to rule them all",
"1944 string to rule them all",
"1945 string to rule them all",
"1946 string to rule them all",
"1947 string to rule them all",
"1948 string to rule them all",
"1949 string to rule them all",
"1950 string to rule them all",
"1951 string to rule them all",
"1952 string to rule them all",
"1953 string to rule them all",
"1954 string to rule them all",
"1955 string to rule them all",
"1956 string to rule them all",
"1957 string to rule them all",
"1958 string to rule them all",
"1959 string to rule them all",
"1960 string to rule them all",
"1961 string to rule them all",
"1962 string to rule them all",
"1963 string to rule them all",
"1964 string to rule them all",
"1965 string to rule them all",
"1966 string to rule them all",
"1967 string to rule them all",
"1968 string to rule them all",
"1969 string to rule them all",
"1970 string to rule them all",
"1971 string to rule them all",
"1972 string to rule them all",
"1973 string to rule them all",
"1974 string to rule them all",
"1975 string to rule them all",
"1976 string to rule them all",
"1977 string to rule them all",
"1978 string to rule them all",
"1979 string to rule them all",
"1980 string to rule them all",
"1981 string to rule them all",
"1982 string to rule them all",
"1983 string to rule them all",
"1984 string to rule them all",
"1985 string to rule them all",
"1986 string to rule them all",
"1987 string to rule them all",
"1988 string to rule them all",
"1989 string to rule them all",
"1990 string to rule them all",
"1991 string to rule them all",
"1992 string to rule them all",
"1993 string to rule them all",
"1994 string to rule them all",
"1995 string to rule them all",
"1996 string to rule them all",
"1997 string to rule them all",
"1998 string to rule them all",
"1999 string to rule them all",
"2000 string to rule them all",
"2001 string to rule them all",
"2002 string to rule them all",
"2003 string to rule them all",
"2004 string to rule them all",
"2005 string to rule them all",
"2006 string to rule them all",
"2007 string to rule them all",
"2008 string to rule them all",
"2009 string to rule them all",
"2010 string to rule them all",
"2011 string to rule them all",
"2012 string to rule them all",
"2013 string to rule them all",
"2014 string to rule them all",
"2015 string to rule them all",
"2016 string to rule them all",
"2017 string to rule them all",
"2018 string to rule them all",
"2019 string to rule them all",
"2020 string to rule them all",
"2021 string to rule them all",
"2022 string to rule them all",
"2023 string to rule them all",
"2024 string to rule them all",
"2025 string to rule them all",
"2026 string to rule them all",
"2027 string to rule them all",
"2028 string to rule them all",
"2029 string to rule them all",
"2030 string to rule them all",
"2031 string to rule them all",
"2032 string to rule them all",
"2033 string to rule them all",
"2034 string to rule them all",
"2035 string to rule them all",
"2036 string to rule them all",
"2037 string to rule them all",
"2038 string to rule them all",
"2039 string to rule them all",
"2040 string to rule them all",
"2041 string to rule them all",
"2042 string to rule them all",
"2043 string to rule them all",
"2044 string to rule them all",
"2045 string to rule them all",
"2046 string to rule them all",
"2047 string to rule them all",
"2048 string to rule them all",
"2049 string to rule them all",
"2050 string to rule them all",
"2051 string to rule them all",
"2052 string to rule them all",
"2053 string to rule them all",
"2054 string to rule them all",
"2055 string to rule them all",
"2056 string to rule them all",
"2057 string to rule them all",
"2058 string to rule them all",
"2059 string to rule them all",
"2060 string to rule them all",
"2061 string to rule them all",
"2062 string to rule them all",
"2063 string to rule them all",
"2064 string to rule them all",
"2065 string to rule them all",
"2066 string to rule them all",
"2067 string to rule them all",
"2068 string to rule them all",
"2069 string to rule them all",
"2070 string to rule them all",
"2071 string to rule them all",
"2072 string to rule them all",
"2073 string to rule them all",
"2074 string to rule them all",
"2075 string to rule them all",
"2076 string to rule them all",
"2077 string to rule them all",
"2078 string to rule them all",
"2079 string to rule them all",
"2080 string to rule them all",
"2081 string to rule them all",
"2082 string to rule them all",
"2083 string to rule them all",
"2084 string to rule them all",
"2085 string to rule them all",
"2086 string to rule them all",
"2087 string to rule them all",
"2088 string to rule them all",
"2089 string to rule them all",
"2090 string to rule them all",
"2091 string to rule them all",
"2092 string to rule them all",
"2093 string to rule them all",
"2094 string to rule them all",
"2095 string to rule them all",
"2096 string to rule them all",
"2097 string to rule them all",
"2098 string to rule them all",
"2099 string to rule them all",
"2100 string to rule them all",
"2101 string to rule them all",
"2102 string to rule them all",
"2103 string to rule them all",
"2104 string to rule them all",
"2105 string to rule them all",
"2106 string to rule them all",
"2107 string to rule them all",
"2108 string to rule them all",
"2109 string to rule them all",
"2110 string to rule them all",
"2111 string to rule them all",
"2112 string to rule them all",
"2113 string to rule them all",
"2114 string to rule them all",
"2115 string to rule them all",
"2116 string to rule them all",
"2117 string to rule them all",
"2118 string to rule them all",
"2119 string to rule them all",
"2120 string to rule them all",
"2121 string to rule them all",
"2122 string to rule them all",
"2123 string to rule them all",
"2124 string to rule them all",
"2125 string to rule them all",
"2126 string to rule them all",
"2127 string to rule them all",
"2128 string to rule them all",
"2129 string to rule them all",
"2130 string to rule them all",
"2131 string to rule them all",
"2132 string to rule them all",
"2133 string to rule them all",
"2134 string to rule them all",
"2135 string to rule them all",
"2136 string to rule them all",
"2137 string to rule them all",
"2138 string to rule them all",
"2139 string to rule them all",
"2140 string to rule them all",
"2141 string to rule them all",
"2142 string to rule them all",
"2143 string to rule them all",
"2144 string to rule them all",
"2145 string to rule them all",
"2146 string to rule them all",
"2147 string to rule them all",
"2148 string to rule them all",
"2149 string to rule them all",
"2150 string to rule them all",
"2151 string to rule them all",
"2152 string to rule them all",
"2153 string to rule them all",
"2154 string to rule them all",
"2155 string to rule them all",
"2156 string to rule them all",
"2157 string to rule them all",
"2158 string to rule them all",
"2159 string to rule them all",
"2160 string to rule them all",
"2161 string to rule them all",
"2162 string to rule them all",
"2163 string to rule them all",
"2164 string to rule them all",
"2165 string to rule them all",
"2166 string to rule them all",
"2167 string to rule them all",
"2168 string to rule them all",
"2169 string to rule them all",
"2170 string to rule them all",
"2171 string to rule them all",
"2172 string to rule them all",
"2173 string to rule them all",
"2174 string to rule them all",
"2175 string to rule them all",
"2176 string to rule them all",
"2177 string to rule them all",
"2178 string to rule them all",
"2179 string to rule them all",
"2180 string to rule them all",
"2181 string to rule them all",
"2182 string to rule them all",
"2183 string to rule them all",
"2184 string to rule them all",
"2185 string to rule them all",
"2186 string to rule them all",
"2187 string to rule them all",
"2188 string to rule them all",
"2189 string to rule them all",
"2190 string to rule them all",
"2191 string to rule them all",
"2192 string to rule them all",
"2193 string to rule them all",
"2194 string to rule them all",
"2195 string to rule them all",
"2196 string to rule them all",
"2197 string to rule them all",
"2198 string to rule them all",
"2199 string to rule them all",
"2200 string to rule them all",
"2201 string to rule them all",
"2202 string to rule them all",
"2203 string to rule them all",
"2204 string to rule them all",
"2205 string to rule them all",
"2206 string to rule them all",
"2207 string to rule them all",
"2208 string to rule them all",
"2209 string to rule them all",
"2210 string to rule them all",
"2211 string to rule them all",
"2212 string to rule them all",
"2213 string to rule them all",
"2214 string to rule them all",
"2215 string to rule them all",
"2216 string to rule them all",
"2217 string to rule them all",
"2218 string to rule them all",
"2219 string to rule them all",
"2220 string to rule them all",
"2221 string to rule them all",
"2222 string to rule them all",
"2223 string to rule them all",
"2224 string to rule them all",
"2225 string to rule them all",
"2226 string to rule them all",
"2227 string to rule them all",
"2228 string to rule them all",
"2229 string to rule them all",
"2230 string to rule them all",
"2231 string to rule them all",
"2232 string to rule them all",
"2233 string to rule them all",
"2234 string to rule them all",
"2235 string to rule them all",
"2236 string to rule them all",
"2237 string to rule them all",
"2238 string to rule them all",
"2239 string to rule them all",
"2240 string to rule them all",
"2241 string to rule them all",
"2242 string to rule them all",
"2243 string to rule them all",
"2244 string to rule them all",
"2245 string to rule them all",
"2246 string to rule them all",
"2247 string to rule them all",
"2248 string to rule them all",
"2249 string to rule them all",
"2250 string to rule them all",
"2251 string to rule them all",
"2252 string to rule them all",
"2253 string to rule them all",
"2254 string to rule them all",
"2255 string to rule them all",
"2256 string to rule them all",
"2257 string to rule them all",
"2258 string to rule them all",
"2259 string to rule them all",
"2260 string to rule them all",
"2261 string to rule them all",
"2262 string to rule them all",
"2263 string to rule them all",
"2264 string to rule them all",
"2265 string to rule them all",
"2266 string to rule them all",
"2267 string to rule them all",
"2268 string to rule them all",
"2269 string to rule them all",
"2270 string to rule them all",
"2271 string to rule them all",
"2272 string to rule them all",
"2273 string to rule them all",
"2274 string to rule them all",
"2275 string to rule them all",
"2276 string to rule them all",
"2277 string to rule them all",
"2278 string to rule them all",
"2279 string to rule them all",
"2280 string to rule them all",
"2281 string to rule them all",
"2282 string to rule them all",
"2283 string to rule them all",
"2284 string to rule them all",
"2285 string to rule them all",
"2286 string to rule them all",
"2287 string to rule them all",
"2288 string to rule them all",
"2289 string to rule them all",
"2290 string to rule them all",
"2291 string to rule them all",
"2292 string to rule them all",
"2293 string to rule them all",
"2294 string to rule them all",
"2295 string to rule them all",
"2296 string to rule them all",
"2297 string to rule them all",
"2298 string to rule them all",
"2299 string to rule them all",
"2300 string to rule them all",
"2301 string to rule them all",
"2302 string to rule them all",
"2303 string to rule them all",
"2304 string to rule them all",
"2305 string to rule them all",
"2306 string to rule them all",
"2307 string to rule them all",
"2308 string to rule them all",
"2309 string to rule them all",
"2310 string to rule them all",
"2311 string to rule them all",
"2312 string to rule them all",
"2313 string to rule them all",
"2314 string to rule them all",
"2315 string to rule them all",
"2316 string to rule them all",
"2317 string to rule them all",
"2318 string to rule them all",
"2319 string to rule them all",
"2320 string to rule them all",
"2321 string to rule them all",
"2322 string to rule them all",
"2323 string to rule them all",
"2324 string to rule them all",
"2325 string to rule them all",
"2326 string to rule them all",
"2327 string to rule them all",
"2328 string to rule them all",
"2329 string to rule them all",
"2330 string to rule them all",
"2331 string to rule them all",
"2332 string to rule them all",
"2333 string to rule them all",
"2334 string to rule them all",
"2335 string to rule them all",
"2336 string to rule them all",
"2337 string to rule them all",
"2338 string to rule them all",
"2339 string to rule them all",
"2340 string to rule them all",
"2341 string to rule them all",
"2342 string to rule them all",
"2343 string to rule them all",
"2344 string to rule them all",
"2345 string to rule them all",
"2346 string to rule them all",
"2347 string to rule them all",
"2348 string to rule them all",
"2349 string to rule them all",
"2350 string to rule them all",
"2351 string to rule them all",
"2352 string to rule them all",
"2353 string to rule them all",
"2354 string to rule them all",
"2355 string to rule them all",
"2356 string to rule them all",
"2357 string to rule them all",
"2358 string to rule them all",
"2359 string to rule them all",
"2360 string to rule them all",
"2361 string to rule them all",
"2362 string to rule them all",
"2363 string to rule them all",
"2364 string to rule them all",
"2365 string to rule them all",
"2366 string to rule them all",
"2367 string to rule them all",
"2368 string to rule them all",
"2369 string to rule them all",
"2370 string to rule them all",
"2371 string to rule them all",
"2372 string to rule them all",
"2373 string to rule them all",
"2374 string to rule them all",
"2375 string to rule them all",
"2376 string to rule them all",
"2377 string to rule them all",
"2378 string to rule them all",
"2379 string to rule them all",
"2380 string to rule them all",
"2381 string to rule them all",
"2382 string to rule them all",
"2383 string to rule them all",
"2384 string to rule them all",
"2385 string to rule them all",
"2386 string to rule them all",
"2387 string to rule them all",
"2388 string to rule them all",
"2389 string to rule them all",
"2390 string to rule them all",
"2391 string to rule them all",
"2392 string to rule them all",
"2393 string to rule them all",
"2394 string to rule them all",
"2395 string to rule them all",
"2396 string to rule them all",
"2397 string to rule them all",
"2398 string to rule them all",
"2399 string to rule them all",
"2400 string to rule them all",
"2401 string to rule them all",
"2402 string to rule them all",
"2403 string to rule them all",
"2404 string to rule them all",
"2405 string to rule them all",
"2406 string to rule them all",
"2407 string to rule them all",
"2408 string to rule them all",
"2409 string to rule them all",
"2410 string to rule them all",
"2411 string to rule them all",
"2412 string to rule them all",
"2413 string to rule them all",
"2414 string to rule them all",
"2415 string to rule them all",
"2416 string to rule them all",
"2417 string to rule them all",
"2418 string to rule them all",
"2419 string to rule them all",
"2420 string to rule them all",
"2421 string to rule them all",
"2422 string to rule them all",
"2423 string to rule them all",
"2424 string to rule them all",
"2425 string to rule them all",
"2426 string to rule them all",
"2427 string to rule them all",
"2428 string to rule them all",
"2429 string to rule them all",
"2430 string to rule them all",
"2431 string to rule them all",
"2432 string to rule them all",
"2433 string to rule them all",
"2434 string to rule them all",
"2435 string to rule them all",
"2436 string to rule them all",
"2437 string to rule them all",
"2438 string to rule them all",
"2439 string to rule them all",
"2440 string to rule them all",
"2441 string to rule them all",
"2442 string to rule them all",
"2443 string to rule them all",
"2444 string to rule them all",
"2445 string to rule them all",
"2446 string to rule them all",
"2447 string to rule them all",
"2448 string to rule them all",
"2449 string to rule them all",
"2450 string to rule them all",
"2451 string to rule them all",
"2452 string to rule them all",
"2453 string to rule them all",
"2454 string to rule them all",
"2455 string to rule them all",
"2456 string to rule them all",
"2457 string to rule them all",
"2458 string to rule them all",
"2459 string to rule them all",
"2460 string to rule them all",
"2461 string to rule them all",
"2462 string to rule them all",
"2463 string to rule them all",
"2464 string to rule them all",
"2465 string to rule them all",
"2466 string to rule them all",
"2467 string to rule them all",
"2468 string to rule them all",
"2469 string to rule them all",
"2470 string to rule them all",
"2471 string to rule them all",
"2472 string to rule them all",
"2473 string to rule them all",
"2474 string to rule them all",
"2475 string to rule them all",
"2476 string to rule them all",
"2477 string to rule them all",
"2478 string to rule them all",
"2479 string to rule them all",
"2480 string to rule them all",
"2481 string to rule them all",
"2482 string to rule them all",
"2483 string to rule them all",
"2484 string to rule them all",
"2485 string to rule them all",
"2486 string to rule them all",
"2487 string to rule them all",
"2488 string to rule them all",
"2489 string to rule them all",
"2490 string to rule them all",
"2491 string to rule them all",
"2492 string to rule them all",
"2493 string to rule them all",
"2494 string to rule them all",
"2495 string to rule them all",
"2496 string to rule them all",
"2497 string to rule them all",
"2498 string to rule them all",
"2499 string to rule them all",
"2500 string to rule them all",
"2501 string to rule them all",
"2502 string to rule them all",
"2503 string to rule them all",
"2504 string to rule them all",
"2505 string to rule them all",
"2506 string to rule them all",
"2507 string to rule them all",
"2508 string to rule them all",
"2509 string to rule them all",
"2510 string to rule them all",
"2511 string to rule them all",
"2512 string to rule them all",
"2513 string to rule them all",
"2514 string to rule them all",
"2515 string to rule them all",
"2516 string to rule them all",
"2517 string to rule them all",
"2518 string to rule them all",
"2519 string to rule them all",
"2520 string to rule them all",
"2521 string to rule them all",
"2522 string to rule them all",
"2523 string to rule them all",
"2524 string to rule them all",
"2525 string to rule them all",
"2526 string to rule them all",
"2527 string to rule them all",
"2528 string to rule them all",
"2529 string to rule them all",
"2530 string to rule them all",
"2531 string to rule them all",
"2532 string to rule them all",
"2533 string to rule them all",
"2534 string to rule them all",
"2535 string to rule them all",
"2536 string to rule them all",
"2537 string to rule them all",
"2538 string to rule them all",
"2539 string to rule them all",
"2540 string to rule them all",
"2541 string to rule them all",
"2542 string to rule them all",
"2543 string to rule them all",
"2544 string to rule them all",
"2545 string to rule them all",
"2546 string to rule them all",
"2547 string to rule them all",
"2548 string to rule them all",
"2549 string to rule them all",
"2550 string to rule them all",
"2551 string to rule them all",
"2552 string to rule them all",
"2553 string to rule them all",
"2554 string to rule them all",
"2555 string to rule them all",
"2556 string to rule them all",
"2557 string to rule them all",
"2558 string to rule them all",
"2559 string to rule them all",
"2560 string to rule them all",
"2561 string to rule them all",
"2562 string to rule them all",
"2563 string to rule them all",
"2564 string to rule them all",
"2565 string to rule them all",
"2566 string to rule them all",
"2567 string to rule them all",
"2568 string to rule them all",
"2569 string to rule them all",
"2570 string to rule them all",
"2571 string to rule them all",
"2572 string to rule them all",
"2573 string to rule them all",
"2574 string to rule them all",
"2575 string to rule them all",
"2576 string to rule them all",
"2577 string to rule them all",
"2578 string to rule them all",
"2579 string to rule them all",
"2580 string to rule them all",
"2581 string to rule them all",
"2582 string to rule them all",
"2583 string to rule them all",
"2584 string to rule them all",
"2585 string to rule them all",
"2586 string to rule them all",
"2587 string to rule them all",
"2588 string to rule them all",
"2589 string to rule them all",
"2590 string to rule them all",
"2591 string to rule them all",
"2592 string to rule them all",
"2593 string to rule them all",
"2594 string to rule them all",
"2595 string to rule them all",
"2596 string to rule them all",
"2597 string to rule them all",
"2598 string to rule them all",
"2599 string to rule them all",
"2600 string to rule them all",
"2601 string to rule them all",
"2602 string to rule them all",
"2603 string to rule them all",
"2604 string to rule them all",
"2605 string to rule them all",
"2606 string to rule them all",
"2607 string to rule them all",
"2608 string to rule them all",
"2609 string to rule them all",
"2610 string to rule them all",
"2611 string to rule them all",
"2612 string to rule them all",
"2613 string to rule them all",
"2614 string to rule them all",
"2615 string to rule them all",
"2616 string to rule them all",
"2617 string to rule them all",
"2618 string to rule them all",
"2619 string to rule them all",
"2620 string to rule them all",
"2621 string to rule them all",
"2622 string to rule them all",
"2623 string to rule them all",
"2624 string to rule them all",
"2625 string to rule them all",
"2626 string to rule them all",
"2627 string to rule them all",
"2628 string to rule them all",
"2629 string to rule them all",
"2630 string to rule them all",
"2631 string to rule them all",
"2632 string to rule them all",
"2633 string to rule them all",
"2634 string to rule them all",
"2635 string to rule them all",
"2636 string to rule them all",
"2637 string to rule them all",
"2638 string to rule them all",
"2639 string to rule them all",
"2640 string to rule them all",
"2641 string to rule them all",
"2642 string to rule them all",
"2643 string to rule them all",
"2644 string to rule them all",
"2645 string to rule them all",
"2646 string to rule them all",
"2647 string to rule them all",
"2648 string to rule them all",
"2649 string to rule them all",
"2650 string to rule them all",
"2651 string to rule them all",
"2652 string to rule them all",
"2653 string to rule them all",
"2654 string to rule them all",
"2655 string to rule them all",
"2656 string to rule them all",
"2657 string to rule them all",
"2658 string to rule them all",
"2659 string to rule them all",
"2660 string to rule them all",
"2661 string to rule them all",
"2662 string to rule them all",
"2663 string to rule them all",
"2664 string to rule them all",
"2665 string to rule them all",
"2666 string to rule them all",
"2667 string to rule them all",
"2668 string to rule them all",
"2669 string to rule them all",
"2670 string to rule them all",
"2671 string to rule them all",
"2672 string to rule them all",
"2673 string to rule them all",
"2674 string to rule them all",
"2675 string to rule them all",
"2676 string to rule them all",
"2677 string to rule them all",
"2678 string to rule them all",
"2679 string to rule them all",
"2680 string to rule them all",
"2681 string to rule them all",
"2682 string to rule them all",
"2683 string to rule them all",
"2684 string to rule them all",
"2685 string to rule them all",
"2686 string to rule them all",
"2687 string to rule them all",
"2688 string to rule them all",
"2689 string to rule them all",
"2690 string to rule them all",
"2691 string to rule them all",
"2692 string to rule them all",
"2693 string to rule them all",
"2694 string to rule them all",
"2695 string to rule them all",
"2696 string to rule them all",
"2697 string to rule them all",
"2698 string to rule them all",
"2699 string to rule them all",
"2700 string to rule them all",
"2701 string to rule them all",
"2702 string to rule them all",
"2703 string to rule them all",
"2704 string to rule them all",
"2705 string to rule them all",
"2706 string to rule them all",
"2707 string to rule them all",
"2708 string to rule them all",
"2709 string to rule them all",
"2710 string to rule them all",
"2711 string to rule them all",
"2712 string to rule them all",
"2713 string to rule them all",
"2714 string to rule them all",
"2715 string to rule them all",
"2716 string to rule them all",
"2717 string to rule them all",
"2718 string to rule them all",
"2719 string to rule them all",
"2720 string to rule them all",
"2721 string to rule them all",
"2722 string to rule them all",
"2723 string to rule them all",
"2724 string to rule them all",
"2725 string to rule them all",
"2726 string to rule them all",
"2727 string to rule them all",
"2728 string to rule them all",
"2729 string to rule them all",
"2730 string to rule them all",
"2731 string to rule them all",
"2732 string to rule them all",
"2733 string to rule them all",
"2734 string to rule them all",
"2735 string to rule them all",
"2736 string to rule them all",
"2737 string to rule them all",
"2738 string to rule them all",
"2739 string to rule them all",
"2740 string to rule them all",
"2741 string to rule them all",
"2742 string to rule them all",
"2743 string to rule them all",
"2744 string to rule them all",
"2745 string to rule them all",
"2746 string to rule them all",
"2747 string to rule them all",
"2748 string to rule them all",
"2749 string to rule them all",
"2750 string to rule them all",
"2751 string to rule them all",
"2752 string to rule them all",
"2753 string to rule them all",
"2754 string to rule them all",
"2755 string to rule them all",
"2756 string to rule them all",
"2757 string to rule them all",
"2758 string to rule them all",
"2759 string to rule them all",
"2760 string to rule them all",
"2761 string to rule them all",
"2762 string to rule them all",
"2763 string to rule them all",
"2764 string to rule them all",
"2765 string to rule them all",
"2766 string to rule them all",
"2767 string to rule them all",
"2768 string to rule them all",
"2769 string to rule them all",
"2770 string to rule them all",
"2771 string to rule them all",
"2772 string to rule them all",
"2773 string to rule them all",
"2774 string to rule them all",
"2775 string to rule them all",
"2776 string to rule them all",
"2777 string to rule them all",
"2778 string to rule them all",
"2779 string to rule them all",
"2780 string to rule them all",
"2781 string to rule them all",
"2782 string to rule them all",
"2783 string to rule them all",
"2784 string to rule them all",
"2785 string to rule them all",
"2786 string to rule them all",
"2787 string to rule them all",
"2788 string to rule them all",
"2789 string to rule them all",
"2790 string to rule them all",
"2791 string to rule them all",
"2792 string to rule them all",
"2793 string to rule them all",
"2794 string to rule them all",
"2795 string to rule them all",
"2796 string to rule them all",
"2797 string to rule them all",
"2798 string to rule them all",
"2799 string to rule them all",
"2800 string to rule them all",
"2801 string to rule them all",
"2802 string to rule them all",
"2803 string to rule them all",
"2804 string to rule them all",
"2805 string to rule them all",
"2806 string to rule them all",
"2807 string to rule them all",
"2808 string to rule them all",
"2809 string to rule them all",
"2810 string to rule them all",
"2811 string to rule them all",
"2812 string to rule them all",
"2813 string to rule them all",
"2814 string to rule them all",
"2815 string to rule them all",
"2816 string to rule them all",
"2817 string to rule them all",
"2818 string to rule them all",
"2819 string to rule them all",
"2820 string to rule them all",
"2821 string to rule them all",
"2822 string to rule them all",
"2823 string to rule them all",
"2824 string to rule them all",
"2825 string to rule them all",
"2826 string to rule them all",
"2827 string to rule them all",
"2828 string to rule them all",
"2829 string to rule them all",
"2830 string to rule them all",
"2831 string to rule them all",
"2832 string to rule them all",
"2833 string to rule them all",
"2834 string to rule them all",
"2835 string to rule them all",
"2836 string to rule them all",
"2837 string to rule them all",
"2838 string to rule them all",
"2839 string to rule them all",
"2840 string to rule them all",
"2841 string to rule them all",
"2842 string to rule them all",
"2843 string to rule them all",
"2844 string to rule them all",
"2845 string to rule them all",
"2846 string to rule them all",
"2847 string to rule them all",
"2848 string to rule them all",
"2849 string to rule them all",
"2850 string to rule them all",
"2851 string to rule them all",
"2852 string to rule them all",
"2853 string to rule them all",
"2854 string to rule them all",
"2855 string to rule them all",
"2856 string to rule them all",
"2857 string to rule them all",
"2858 string to rule them all",
"2859 string to rule them all",
"2860 string to rule them all",
"2861 string to rule them all",
"2862 string to rule them all",
"2863 string to rule them all",
"2864 string to rule them all",
"2865 string to rule them all",
"2866 string to rule them all",
"2867 string to rule them all",
"2868 string to rule them all",
"2869 string to rule them all",
"2870 string to rule them all",
"2871 string to rule them all",
"2872 string to rule them all",
"2873 string to rule them all",
"2874 string to rule them all",
"2875 string to rule them all",
"2876 string to rule them all",
"2877 string to rule them all",
"2878 string to rule them all",
"2879 string to rule them all",
"2880 string to rule them all",
"2881 string to rule them all",
"2882 string to rule them all",
"2883 string to rule them all",
"2884 string to rule them all",
"2885 string to rule them all",
"2886 string to rule them all",
"2887 string to rule them all",
"2888 string to rule them all",
"2889 string to rule them all",
"2890 string to rule them all",
"2891 string to rule them all",
"2892 string to rule them all",
"2893 string to rule them all",
"2894 string to rule them all",
"2895 string to rule them all",
"2896 string to rule them all",
"2897 string to rule them all",
"2898 string to rule them all",
"2899 string to rule them all",
"2900 string to rule them all",
"2901 string to rule them all",
"2902 string to rule them all",
"2903 string to rule them all",
"2904 string to rule them all",
"2905 string to rule them all",
"2906 string to rule them all",
"2907 string to rule them all",
"2908 string to rule them all",
"2909 string to rule them all",
"2910 string to rule them all",
"2911 string to rule them all",
"2912 string to rule them all",
"2913 string to rule them all",
"2914 string to rule them all",
"2915 string to rule them all",
"2916 string to rule them all",
"2917 string to rule them all",
"2918 string to rule them all",
"2919 string to rule them all",
"2920 string to rule them all",
"2921 string to rule them all",
"2922 string to rule them all",
"2923 string to rule them all",
"2924 string to rule them all",
"2925 string to rule them all",
"2926 string to rule them all",
"2927 string to rule them all",
"2928 string to rule them all",
"2929 string to rule them all",
"2930 string to rule them all",
"2931 string to rule them all",
"2932 string to rule them all",
"2933 string to rule them all",
"2934 string to rule them all",
"2935 string to rule them all",
"2936 string to rule them all",
"2937 string to rule them all",
"2938 string to rule them all",
"2939 string to rule them all",
"2940 string to rule them all",
"2941 string to rule them all",
"2942 string to rule them all",
"2943 string to rule them all",
"2944 string to rule them all",
"2945 string to rule them all",
"2946 string to rule them all",
"2947 string to rule them all",
"2948 string to rule them all",
"2949 string to rule them all",
"2950 string to rule them all",
"2951 string to rule them all",
"2952 string to rule them all",
"2953 string to rule them all",
"2954 string to rule them all",
"2955 string to rule them all",
"2956 string to rule them all",
"2957 string to rule them all",
"2958 string to rule them all",
"2959 string to rule them all",
"2960 string to rule them all",
"2961 string to rule them all",
"2962 string to rule them all",
"2963 string to rule them all",
"2964 string to rule them all",
"2965 string to rule them all",
"2966 string to rule them all",
"2967 string to rule them all",
"2968 string to rule them all",
"2969 string to rule them all",
"2970 string to rule them all",
"2971 string to rule them all",
"2972 string to rule them all",
"2973 string to rule them all",
"2974 string to rule them all",
"2975 string to rule them all",
"2976 string to rule them all",
"2977 string to rule them all",
"2978 string to rule them all",
"2979 string to rule them all",
"2980 string to rule them all",
"2981 string to rule them all",
"2982 string to rule them all",
"2983 string to rule them all",
"2984 string to rule them all",
"2985 string to rule them all",
"2986 string to rule them all",
"2987 string to rule them all",
"2988 string to rule them all",
"2989 string to rule them all",
"2990 string to rule them all",
"2991 string to rule them all",
"2992 string to rule them all",
"2993 string to rule them all",
"2994 string to rule them all",
"2995 string to rule them all",
"2996 string to rule them all",
"2997 string to rule them all",
"2998 string to rule them all",
"2999 string to rule them all",
"3000 string to rule them all",
"3001 string to rule them all",
"3002 string to rule them all",
"3003 string to rule them all",
"3004 string to rule them all",
"3005 string to rule them all",
"3006 string to rule them all",
"3007 string to rule them all",
"3008 string to rule them all",
"3009 string to rule them all",
"3010 string to rule them all",
"3011 string to rule them all",
"3012 string to rule them all",
"3013 string to rule them all",
"3014 string to rule them all",
"3015 string to rule them all",
"3016 string to rule them all",
"3017 string to rule them all",
"3018 string to rule them all",
"3019 string to rule them all",
"3020 string to rule them all",
"3021 string to rule them all",
"3022 string to rule them all",
"3023 string to rule them all",
"3024 string to rule them all",
"3025 string to rule them all",
"3026 string to rule them all",
"3027 string to rule them all",
"3028 string to rule them all",
"3029 string to rule them all",
"3030 string to rule them all",
"3031 string to rule them all",
"3032 string to rule them all",
"3033 string to rule them all",
"3034 string to rule them all",
"3035 string to rule them all",
"3036 string to rule them all",
"3037 string to rule them all",
"3038 string to rule them all",
"3039 string to rule them all",
"3040 string to rule them all",
"3041 string to rule them all",
"3042 string to rule them all",
"3043 string to rule them all",
"3044 string to rule them all",
"3045 string to rule them all",
"3046 string to rule them all",
"3047 string to rule them all",
"3048 string to rule them all",
"3049 string to rule them all",
"3050 string to rule them all",
"3051 string to rule them all",
"3052 string to rule them all",
"3053 string to rule them all",
"3054 string to rule them all",
"3055 string to rule them all",
"3056 string to rule them all",
"3057 string to rule them all",
"3058 string to rule them all",
"3059 string to rule them all",
"3060 string to rule them all",
"3061 string to rule them all",
"3062 string to rule them all",
"3063 string to rule them all",
"3064 string to rule them all",
"3065 string to rule them all",
"3066 string to rule them all",
"3067 string to rule them all",
"3068 string to rule them all",
"3069 string to rule them all",
"3070 string to rule them all",
"3071 string to rule them all",
"3072 string to rule them all",
"3073 string to rule them all",
"3074 string to rule them all",
"3075 string to rule them all",
"3076 string to rule them all",
"3077 string to rule them all",
"3078 string to rule them all",
"3079 string to rule them all",
"3080 string to rule them all",
"3081 string to rule them all",
"3082 string to rule them all",
"3083 string to rule them all",
"3084 string to rule them all",
"3085 string to rule them all",
"3086 string to rule them all",
"3087 string to rule them all",
"3088 string to rule them all",
"3089 string to rule them all",
"3090 string to rule them all",
"3091 string to rule them all",
"3092 string to rule them all",
"3093 string to rule them all",
"3094 string to rule them all",
"3095 string to rule them all",
"3096 string to rule them all",
"3097 string to rule them all",
"3098 string to rule them all",
"3099 string to rule them all",
"3100 string to rule them all",
"3101 string to rule them all",
"3102 string to rule them all",
"3103 string to rule them all",
"3104 string to rule them all",
"3105 string to rule them all",
"3106 string to rule them all",
"3107 string to rule them all",
"3108 string to rule them all",
"3109 string to rule them all",
"3110 string to rule them all",
"3111 string to rule them all",
"3112 string to rule them all",
"3113 string to rule them all",
"3114 string to rule them all",
"3115 string to rule them all",
"3116 string to rule them all",
"3117 string to rule them all",
"3118 string to rule them all",
"3119 string to rule them all",
"3120 string to rule them all",
"3121 string to rule them all",
"3122 string to rule them all",
"3123 string to rule them all",
"3124 string to rule them all",
"3125 string to rule them all",
"3126 string to rule them all",
"3127 string to rule them all",
"3128 string to rule them all",
"3129 string to rule them all",
"3130 string to rule them all",
"3131 string to rule them all",
"3132 string to rule them all",
"3133 string to rule them all",
"3134 string to rule them all",
"3135 string to rule them all",
"3136 string to rule them all",
"3137 string to rule them all",
"3138 string to rule them all",
"3139 string to rule them all",
"3140 string to rule them all",
"3141 string to rule them all",
"3142 string to rule them all",
"3143 string to rule them all",
"3144 string to rule them all",
"3145 string to rule them all",
"3146 string to rule them all",
"3147 string to rule them all",
"3148 string to rule them all",
"3149 string to rule them all",
"3150 string to rule them all",
"3151 string to rule them all",
"3152 string to rule them all",
"3153 string to rule them all",
"3154 string to rule them all",
"3155 string to rule them all",
"3156 string to rule them all",
"3157 string to rule them all",
"3158 string to rule them all",
"3159 string to rule them all",
"3160 string to rule them all",
"3161 string to rule them all",
"3162 string to rule them all",
"3163 string to rule them all",
"3164 string to rule them all",
"3165 string to rule them all",
"3166 string to rule them all",
"3167 string to rule them all",
"3168 string to rule them all",
"3169 string to rule them all",
"3170 string to rule them all",
"3171 string to rule them all",
"3172 string to rule them all",
"3173 string to rule them all",
"3174 string to rule them all",
"3175 string to rule them all",
"3176 string to rule them all",
"3177 string to rule them all",
"3178 string to rule them all",
"3179 string to rule them all",
"3180 string to rule them all",
"3181 string to rule them all",
"3182 string to rule them all",
"3183 string to rule them all",
"3184 string to rule them all",
"3185 string to rule them all",
"3186 string to rule them all",
"3187 string to rule them all",
"3188 string to rule them all",
"3189 string to rule them all",
"3190 string to rule them all",
"3191 string to rule them all",
"3192 string to rule them all",
"3193 string to rule them all",
"3194 string to rule them all",
"3195 string to rule them all",
"3196 string to rule them all",
"3197 string to rule them all",
"3198 string to rule them all",
"3199 string to rule them all",
"3200 string to rule them all",
"3201 string to rule them all",
"3202 string to rule them all",
"3203 string to rule them all",
"3204 string to rule them all",
"3205 string to rule them all",
"3206 string to rule them all",
"3207 string to rule them all",
"3208 string to rule them all",
"3209 string to rule them all",
"3210 string to rule them all",
"3211 string to rule them all",
"3212 string to rule them all",
"3213 string to rule them all",
"3214 string to rule them all",
"3215 string to rule them all",
"3216 string to rule them all",
"3217 string to rule them all",
"3218 string to rule them all",
"3219 string to rule them all",
"3220 string to rule them all",
"3221 string to rule them all",
"3222 string to rule them all",
"3223 string to rule them all",
"3224 string to rule them all",
"3225 string to rule them all",
"3226 string to rule them all",
"3227 string to rule them all",
"3228 string to rule them all",
"3229 string to rule them all",
"3230 string to rule them all",
"3231 string to rule them all",
"3232 string to rule them all",
"3233 string to rule them all",
"3234 string to rule them all",
"3235 string to rule them all",
"3236 string to rule them all",
"3237 string to rule them all",
"3238 string to rule them all",
"3239 string to rule them all",
"3240 string to rule them all",
"3241 string to rule them all",
"3242 string to rule them all",
"3243 string to rule them all",
"3244 string to rule them all",
"3245 string to rule them all",
"3246 string to rule them all",
"3247 string to rule them all",
"3248 string to rule them all",
"3249 string to rule them all",
"3250 string to rule them all",
"3251 string to rule them all",
"3252 string to rule them all",
"3253 string to rule them all",
"3254 string to rule them all",
"3255 string to rule them all",
"3256 string to rule them all",
"3257 string to rule them all",
"3258 string to rule them all",
"3259 string to rule them all",
"3260 string to rule them all",
"3261 string to rule them all",
"3262 string to rule them all",
"3263 string to rule them all",
"3264 string to rule them all",
"3265 string to rule them all",
"3266 string to rule them all",
"3267 string to rule them all",
"3268 string to rule them all",
"3269 string to rule them all",
"3270 string to rule them all",
"3271 string to rule them all",
"3272 string to rule them all",
"3273 string to rule them all",
"3274 string to rule them all",
"3275 string to rule them all",
"3276 string to rule them all",
"3277 string to rule them all",
"3278 string to rule them all",
"3279 string to rule them all",
"3280 string to rule them all",
"3281 string to rule them all",
"3282 string to rule them all",
"3283 string to rule them all",
"3284 string to rule them all",
"3285 string to rule them all",
"3286 string to rule them all",
"3287 string to rule them all",
"3288 string to rule them all",
"3289 string to rule them all",
"3290 string to rule them all",
"3291 string to rule them all",
"3292 string to rule them all",
"3293 string to rule them all",
"3294 string to rule them all",
"3295 string to rule them all",
"3296 string to rule them all",
"3297 string to rule them all",
"3298 string to rule them all",
"3299 string to rule them all",
"3300 string to rule them all",
"3301 string to rule them all",
"3302 string to rule them all",
"3303 string to rule them all",
"3304 string to rule them all",
"3305 string to rule them all",
"3306 string to rule them all",
"3307 string to rule them all",
"3308 string to rule them all",
"3309 string to rule them all",
"3310 string to rule them all",
"3311 string to rule them all",
"3312 string to rule them all",
"3313 string to rule them all",
"3314 string to rule them all",
"3315 string to rule them all",
"3316 string to rule them all",
"3317 string to rule them all",
"3318 string to rule them all",
"3319 string to rule them all",
"3320 string to rule them all",
"3321 string to rule them all",
"3322 string to rule them all",
"3323 string to rule them all",
"3324 string to rule them all",
"3325 string to rule them all",
"3326 string to rule them all",
"3327 string to rule them all",
"3328 string to rule them all",
"3329 string to rule them all",
"3330 string to rule them all",
"3331 string to rule them all",
"3332 string to rule them all",
"3333 string to rule them all",
"3334 string to rule them all",
"3335 string to rule them all",
"3336 string to rule them all",
"3337 string to rule them all",
"3338 string to rule them all",
"3339 string to rule them all",
"3340 string to rule them all",
"3341 string to rule them all",
"3342 string to rule them all",
"3343 string to rule them all",
"3344 string to rule them all",
"3345 string to rule them all",
"3346 string to rule them all",
"3347 string to rule them all",
"3348 string to rule them all",
"3349 string to rule them all",
"3350 string to rule them all",
"3351 string to rule them all",
"3352 string to rule them all",
"3353 string to rule them all",
"3354 string to rule them all",
"3355 string to rule them all",
"3356 string to rule them all",
"3357 string to rule them all",
"3358 string to rule them all",
"3359 string to rule them all",
"3360 string to rule them all",
"3361 string to rule them all",
"3362 string to rule them all",
"3363 string to rule them all",
"3364 string to rule them all",
"3365 string to rule them all",
"3366 string to rule them all",
"3367 string to rule them all",
"3368 string to rule them all",
"3369 string to rule them all",
"3370 string to rule them all",
"3371 string to rule them all",
"3372 string to rule them all",
"3373 string to rule them all",
"3374 string to rule them all",
"3375 string to rule them all",
"3376 string to rule them all",
"3377 string to rule them all",
"3378 string to rule them all",
"3379 string to rule them all",
"3380 string to rule them all",
"3381 string to rule them all",
"3382 string to rule them all",
"3383 string to rule them all",
"3384 string to rule them all",
"3385 string to rule them all",
"3386 string to rule them all",
"3387 string to rule them all",
"3388 string to rule them all",
"3389 string to rule them all",
"3390 string to rule them all",
"3391 string to rule them all",
"3392 string to rule them all",
"3393 string to rule them all",
"3394 string to rule them all",
"3395 string to rule them all",
"3396 string to rule them all",
"3397 string to rule them all",
"3398 string to rule them all",
"3399 string to rule them all",
"3400 string to rule them all",
"3401 string to rule them all",
"3402 string to rule them all",
"3403 string to rule them all",
"3404 string to rule them all",
"3405 string to rule them all",
"3406 string to rule them all",
"3407 string to rule them all",
"3408 string to rule them all",
"3409 string to rule them all",
"3410 string to rule them all",
"3411 string to rule them all",
"3412 string to rule them all",
"3413 string to rule them all",
"3414 string to rule them all",
"3415 string to rule them all",
"3416 string to rule them all",
"3417 string to rule them all",
"3418 string to rule them all",
"3419 string to rule them all",
"3420 string to rule them all",
"3421 string to rule them all",
"3422 string to rule them all",
"3423 string to rule them all",
"3424 string to rule them all",
"3425 string to rule them all",
"3426 string to rule them all",
"3427 string to rule them all",
"3428 string to rule them all",
"3429 string to rule them all",
"3430 string to rule them all",
"3431 string to rule them all",
"3432 string to rule them all",
"3433 string to rule them all",
"3434 string to rule them all",
"3435 string to rule them all",
"3436 string to rule them all",
"3437 string to rule them all",
"3438 string to rule them all",
"3439 string to rule them all",
"3440 string to rule them all",
"3441 string to rule them all",
"3442 string to rule them all",
"3443 string to rule them all",
"3444 string to rule them all",
"3445 string to rule them all",
"3446 string to rule them all",
"3447 string to rule them all",
"3448 string to rule them all",
"3449 string to rule them all",
"3450 string to rule them all",
"3451 string to rule them all",
"3452 string to rule them all",
"3453 string to rule them all",
"3454 string to rule them all",
"3455 string to rule them all",
"3456 string to rule them all",
"3457 string to rule them all",
"3458 string to rule them all",
"3459 string to rule them all",
"3460 string to rule them all",
"3461 string to rule them all",
"3462 string to rule them all",
"3463 string to rule them all",
"3464 string to rule them all",
"3465 string to rule them all",
"3466 string to rule them all",
"3467 string to rule them all",
"3468 string to rule them all",
"3469 string to rule them all",
"3470 string to rule them all",
"3471 string to rule them all",
"3472 string to rule them all",
"3473 string to rule them all",
"3474 string to rule them all",
"3475 string to rule them all",
"3476 string to rule them all",
"3477 string to rule them all",
"3478 string to rule them all",
"3479 string to rule them all",
"3480 string to rule them all",
"3481 string to rule them all",
"3482 string to rule them all",
"3483 string to rule them all",
"3484 string to rule them all",
"3485 string to rule them all",
"3486 string to rule them all",
"3487 string to rule them all",
"3488 string to rule them all",
"3489 string to rule them all",
"3490 string to rule them all",
"3491 string to rule them all",
"3492 string to rule them all",
"3493 string to rule them all",
"3494 string to rule them all",
"3495 string to rule them all",
"3496 string to rule them all",
"3497 string to rule them all",
"3498 string to rule them all",
"3499 string to rule them all",
"3500 string to rule them all",
"3501 string to rule them all",
"3502 string to rule them all",
"3503 string to rule them all",
"3504 string to rule them all",
"3505 string to rule them all",
"3506 string to rule them all",
"3507 string to rule them all",
"3508 string to rule them all",
"3509 string to rule them all",
"3510 string to rule them all",
"3511 string to rule them all",
"3512 string to rule them all",
"3513 string to rule them all",
"3514 string to rule them all",
"3515 string to rule them all",
"3516 string to rule them all",
"3517 string to rule them all",
"3518 string to rule them all",
"3519 string to rule them all",
"3520 string to rule them all",
"3521 string to rule them all",
"3522 string to rule them all",
"3523 string to rule them all",
"3524 string to rule them all",
"3525 string to rule them all",
"3526 string to rule them all",
"3527 string to rule them all",
"3528 string to rule them all",
"3529 string to rule them all",
"3530 string to rule them all",
"3531 string to rule them all",
"3532 string to rule them all",
"3533 string to rule them all",
"3534 string to rule them all",
"3535 string to rule them all",
"3536 string to rule them all",
"3537 string to rule them all",
"3538 string to rule them all",
"3539 string to rule them all",
"3540 string to rule them all",
"3541 string to rule them all",
"3542 string to rule them all",
"3543 string to rule them all",
"3544 string to rule them all",
"3545 string to rule them all",
"3546 string to rule them all",
"3547 string to rule them all",
"3548 string to rule them all",
"3549 string to rule them all",
"3550 string to rule them all",
"3551 string to rule them all",
"3552 string to rule them all",
"3553 string to rule them all",
"3554 string to rule them all",
"3555 string to rule them all",
"3556 string to rule them all",
"3557 string to rule them all",
"3558 string to rule them all",
"3559 string to rule them all",
"3560 string to rule them all",
"3561 string to rule them all",
"3562 string to rule them all",
"3563 string to rule them all",
"3564 string to rule them all",
"3565 string to rule them all",
"3566 string to rule them all",
"3567 string to rule them all",
"3568 string to rule them all",
"3569 string to rule them all",
"3570 string to rule them all",
"3571 string to rule them all",
"3572 string to rule them all",
"3573 string to rule them all",
"3574 string to rule them all",
"3575 string to rule them all",
"3576 string to rule them all",
"3577 string to rule them all",
"3578 string to rule them all",
"3579 string to rule them all",
"3580 string to rule them all",
"3581 string to rule them all",
"3582 string to rule them all",
"3583 string to rule them all",
"3584 string to rule them all",
"3585 string to rule them all",
"3586 string to rule them all",
"3587 string to rule them all",
"3588 string to rule them all",
"3589 string to rule them all",
"3590 string to rule them all",
"3591 string to rule them all",
"3592 string to rule them all",
"3593 string to rule them all",
"3594 string to rule them all",
"3595 string to rule them all",
"3596 string to rule them all",
"3597 string to rule them all",
"3598 string to rule them all",
"3599 string to rule them all",
"3600 string to rule them all",
"3601 string to rule them all",
"3602 string to rule them all",
"3603 string to rule them all",
"3604 string to rule them all",
"3605 string to rule them all",
"3606 string to rule them all",
"3607 string to rule them all",
"3608 string to rule them all",
"3609 string to rule them all",
"3610 string to rule them all",
"3611 string to rule them all",
"3612 string to rule them all",
"3613 string to rule them all",
"3614 string to rule them all",
"3615 string to rule them all",
"3616 string to rule them all",
"3617 string to rule them all",
"3618 string to rule them all",
"3619 string to rule them all",
"3620 string to rule them all",
"3621 string to rule them all",
"3622 string to rule them all",
"3623 string to rule them all",
"3624 string to rule them all",
"3625 string to rule them all",
"3626 string to rule them all",
"3627 string to rule them all",
"3628 string to rule them all",
"3629 string to rule them all",
"3630 string to rule them all",
"3631 string to rule them all",
"3632 string to rule them all",
"3633 string to rule them all",
"3634 string to rule them all",
"3635 string to rule them all",
"3636 string to rule them all",
"3637 string to rule them all",
"3638 string to rule them all",
"3639 string to rule them all",
"3640 string to rule them all",
"3641 string to rule them all",
"3642 string to rule them all",
"3643 string to rule them all",
"3644 string to rule them all",
"3645 string to rule them all",
"3646 string to rule them all",
"3647 string to rule them all",
"3648 string to rule them all",
"3649 string to rule them all",
"3650 string to rule them all",
"3651 string to rule them all",
"3652 string to rule them all",
"3653 string to rule them all",
"3654 string to rule them all",
"3655 string to rule them all",
"3656 string to rule them all",
"3657 string to rule them all",
"3658 string to rule them all",
"3659 string to rule them all",
"3660 string to rule them all",
"3661 string to rule them all",
"3662 string to rule them all",
"3663 string to rule them all",
"3664 string to rule them all",
"3665 string to rule them all",
"3666 string to rule them all",
"3667 string to rule them all",
"3668 string to rule them all",
"3669 string to rule them all",
"3670 string to rule them all",
"3671 string to rule them all",
"3672 string to rule them all",
"3673 string to rule them all",
"3674 string to rule them all",
"3675 string to rule them all",
"3676 string to rule them all",
"3677 string to rule them all",
"3678 string to rule them all",
"3679 string to rule them all",
"3680 string to rule them all",
"3681 string to rule them all",
"3682 string to rule them all",
"3683 string to rule them all",
"3684 string to rule them all",
"3685 string to rule them all",
"3686 string to rule them all",
"3687 string to rule them all",
"3688 string to rule them all",
"3689 string to rule them all",
"3690 string to rule them all",
"3691 string to rule them all",
"3692 string to rule them all",
"3693 string to rule them all",
"3694 string to rule them all",
"3695 string to rule them all",
"3696 string to rule them all",
"3697 string to rule them all",
"3698 string to rule them all",
"3699 string to rule them all",
"3700 string to rule them all",
"3701 string to rule them all",
"3702 string to rule them all",
"3703 string to rule them all",
"3704 string to rule them all",
"3705 string to rule them all",
"3706 string to rule them all",
"3707 string to rule them all",
"3708 string to rule them all",
"3709 string to rule them all",
"3710 string to rule them all",
"3711 string to rule them all",
"3712 string to rule them all",
"3713 string to rule them all",
"3714 string to rule them all",
"3715 string to rule them all",
"3716 string to rule them all",
"3717 string to rule them all",
"3718 string to rule them all",
"3719 string to rule them all",
"3720 string to rule them all",
"3721 string to rule them all",
"3722 string to rule them all",
"3723 string to rule them all",
"3724 string to rule them all",
"3725 string to rule them all",
"3726 string to rule them all",
"3727 string to rule them all",
"3728 string to rule them all",
"3729 string to rule them all",
"3730 string to rule them all",
"3731 string to rule them all",
"3732 string to rule them all",
"3733 string to rule them all",
"3734 string to rule them all",
"3735 string to rule them all",
"3736 string to rule them all",
"3737 string to rule them all",
"3738 string to rule them all",
"3739 string to rule them all",
"3740 string to rule them all",
"3741 string to rule them all",
"3742 string to rule them all",
"3743 string to rule them all",
"3744 string to rule them all",
"3745 string to rule them all",
"3746 string to rule them all",
"3747 string to rule them all",
"3748 string to rule them all",
"3749 string to rule them all",
"3750 string to rule them all",
"3751 string to rule them all",
"3752 string to rule them all",
"3753 string to rule them all",
"3754 string to rule them all",
"3755 string to rule them all",
"3756 string to rule them all",
"3757 string to rule them all",
"3758 string to rule them all",
"3759 string to rule them all",
"3760 string to rule them all",
"3761 string to rule them all",
"3762 string to rule them all",
"3763 string to rule them all",
"3764 string to rule them all",
"3765 string to rule them all",
"3766 string to rule them all",
"3767 string to rule them all",
"3768 string to rule them all",
"3769 string to rule them all",
"3770 string to rule them all",
"3771 string to rule them all",
"3772 string to rule them all",
"3773 string to rule them all",
"3774 string to rule them all",
"3775 string to rule them all",
"3776 string to rule them all",
"3777 string to rule them all",
"3778 string to rule them all",
"3779 string to rule them all",
"3780 string to rule them all",
"3781 string to rule them all",
"3782 string to rule them all",
"3783 string to rule them all",
"3784 string to rule them all",
"3785 string to rule them all",
"3786 string to rule them all",
"3787 string to rule them all",
"3788 string to rule them all",
"3789 string to rule them all",
"3790 string to rule them all",
"3791 string to rule them all",
"3792 string to rule them all",
"3793 string to rule them all",
"3794 string to rule them all",
"3795 string to rule them all",
"3796 string to rule them all",
"3797 string to rule them all",
"3798 string to rule them all",
"3799 string to rule them all",
"3800 string to rule them all",
"3801 string to rule them all",
"3802 string to rule them all",
"3803 string to rule them all",
"3804 string to rule them all",
"3805 string to rule them all",
"3806 string to rule them all",
"3807 string to rule them all",
"3808 string to rule them all",
"3809 string to rule them all",
"3810 string to rule them all",
"3811 string to rule them all",
"3812 string to rule them all",
"3813 string to rule them all",
"3814 string to rule them all",
"3815 string to rule them all",
"3816 string to rule them all",
"3817 string to rule them all",
"3818 string to rule them all",
"3819 string to rule them all",
"3820 string to rule them all",
"3821 string to rule them all",
"3822 string to rule them all",
"3823 string to rule them all",
"3824 string to rule them all",
"3825 string to rule them all",
"3826 string to rule them all",
"3827 string to rule them all",
"3828 string to rule them all",
"3829 string to rule them all",
"3830 string to rule them all",
"3831 string to rule them all",
"3832 string to rule them all",
"3833 string to rule them all",
"3834 string to rule them all",
"3835 string to rule them all",
"3836 string to rule them all",
"3837 string to rule them all",
"3838 string to rule them all",
"3839 string to rule them all",
"3840 string to rule them all",
"3841 string to rule them all",
"3842 string to rule them all",
"3843 string to rule them all",
"3844 string to rule them all",
"3845 string to rule them all",
"3846 string to rule them all",
"3847 string to rule them all",
"3848 string to rule them all",
"3849 string to rule them all",
"3850 string to rule them all",
"3851 string to rule them all",
"3852 string to rule them all",
"3853 string to rule them all",
"3854 string to rule them all",
"3855 string to rule them all",
"3856 string to rule them all",
"3857 string to rule them all",
"3858 string to rule them all",
"3859 string to rule them all",
"3860 string to rule them all",
"3861 string to rule them all",
"3862 string to rule them all",
"3863 string to rule them all",
"3864 string to rule them all",
"3865 string to rule them all",
"3866 string to rule them all",
"3867 string to rule them all",
"3868 string to rule them all",
"3869 string to rule them all",
"3870 string to rule them all",
"3871 string to rule them all",
"3872 string to rule them all",
"3873 string to rule them all",
"3874 string to rule them all",
"3875 string to rule them all",
"3876 string to rule them all",
"3877 string to rule them all",
"3878 string to rule them all",
"3879 string to rule them all",
"3880 string to rule them all",
"3881 string to rule them all",
"3882 string to rule them all",
"3883 string to rule them all",
"3884 string to rule them all",
"3885 string to rule them all",
"3886 string to rule them all",
"3887 string to rule them all",
"3888 string to rule them all",
"3889 string to rule them all",
"3890 string to rule them all",
"3891 string to rule them all",
"3892 string to rule them all",
"3893 string to rule them all",
"3894 string to rule them all",
"3895 string to rule them all",
"3896 string to rule them all",
"3897 string to rule them all",
"3898 string to rule them all",
"3899 string to rule them all",
"3900 string to rule them all",
"3901 string to rule them all",
"3902 string to rule them all",
"3903 string to rule them all",
"3904 string to rule them all",
"3905 string to rule them all",
"3906 string to rule them all",
"3907 string to rule them all",
"3908 string to rule them all",
"3909 string to rule them all",
"3910 string to rule them all",
"3911 string to rule them all",
"3912 string to rule them all",
"3913 string to rule them all",
"3914 string to rule them all",
"3915 string to rule them all",
"3916 string to rule them all",
"3917 string to rule them all",
"3918 string to rule them all",
"3919 string to rule them all",
"3920 string to rule them all",
"3921 string to rule them all",
"3922 string to rule them all",
"3923 string to rule them all",
"3924 string to rule them all",
"3925 string to rule them all",
"3926 string to rule them all",
"3927 string to rule them all",
"3928 string to rule them all",
"3929 string to rule them all",
"3930 string to rule them all",
"3931 string to rule them all",
"3932 string to rule them all",
"3933 string to rule them all",
"3934 string to rule them all",
"3935 string to rule them all",
"3936 string to rule them all",
"3937 string to rule them all",
"3938 string to rule them all",
"3939 string to rule them all",
"3940 string to rule them all",
"3941 string to rule them all",
"3942 string to rule them all",
"3943 string to rule them all",
"3944 string to rule them all",
"3945 string to rule them all",
"3946 string to rule them all",
"3947 string to rule them all",
"3948 string to rule them all",
"3949 string to rule them all",
"3950 string to rule them all",
"3951 string to rule them all",
"3952 string to rule them all",
"3953 string to rule them all",
"3954 string to rule them all",
"3955 string to rule them all",
"3956 string to rule them all",
"3957 string to rule them all",
"3958 string to rule them all",
"3959 string to rule them all",
"3960 string to rule them all",
"3961 string to rule them all",
"3962 string to rule them all",
"3963 string to rule them all",
"3964 string to rule them all",
"3965 string to rule them all",
"3966 string to rule them all",
"3967 string to rule them all",
"3968 string to rule them all",
"3969 string to rule them all",
"3970 string to rule them all",
"3971 string to rule them all",
"3972 string to rule them all",
"3973 string to rule them all",
"3974 string to rule them all",
"3975 string to rule them all",
"3976 string to rule them all",
"3977 string to rule them all",
"3978 string to rule them all",
"3979 string to rule them all",
"3980 string to rule them all",
"3981 string to rule them all",
"3982 string to rule them all",
"3983 string to rule them all",
"3984 string to rule them all",
"3985 string to rule them all",
"3986 string to rule them all",
"3987 string to rule them all",
"3988 string to rule them all",
"3989 string to rule them all",
"3990 string to rule them all",
"3991 string to rule them all",
"3992 string to rule them all",
"3993 string to rule them all",
"3994 string to rule them all",
"3995 string to rule them all",
"3996 string to rule them all",
"3997 string to rule them all",
"3998 string to rule them all",
"3999 string to rule them all",
"4000 string to rule them all",
"4001 string to rule them all",
"4002 string to rule them all",
"4003 string to rule them all",
"4004 string to rule them all",
"4005 string to rule them all",
"4006 string to rule them all",
"4007 string to rule them all",
"4008 string to rule them all",
"4009 string to rule them all",
"4010 string to rule them all",
"4011 string to rule them all",
"4012 string to rule them all",
"4013 string to rule them all",
"4014 string to rule them all",
"4015 string to rule them all",
"4016 string to rule them all",
"4017 string to rule them all",
"4018 string to rule them all",
"4019 string to rule them all",
"4020 string to rule them all",
"4021 string to rule them all",
"4022 string to rule them all",
"4023 string to rule them all",
"4024 string to rule them all",
"4025 string to rule them all",
"4026 string to rule them all",
"4027 string to rule them all",
"4028 string to rule them all",
"4029 string to rule them all",
"4030 string to rule them all",
"4031 string to rule them all",
"4032 string to rule them all",
"4033 string to rule them all",
"4034 string to rule them all",
"4035 string to rule them all",
"4036 string to rule them all",
"4037 string to rule them all",
"4038 string to rule them all",
"4039 string to rule them all",
"4040 string to rule them all",
"4041 string to rule them all",
"4042 string to rule them all",
"4043 string to rule them all",
"4044 string to rule them all",
"4045 string to rule them all",
"4046 string to rule them all",
"4047 string to rule them all",
"4048 string to rule them all",
"4049 string to rule them all",
"4050 string to rule them all",
"4051 string to rule them all",
"4052 string to rule them all",
"4053 string to rule them all",
"4054 string to rule them all",
"4055 string to rule them all",
"4056 string to rule them all",
"4057 string to rule them all",
"4058 string to rule them all",
"4059 string to rule them all",
"4060 string to rule them all",
"4061 string to rule them all",
"4062 string to rule them all",
"4063 string to rule them all",
"4064 string to rule them all",
"4065 string to rule them all",
"4066 string to rule them all",
"4067 string to rule them all",
"4068 string to rule them all",
"4069 string to rule them all",
"4070 string to rule them all",
"4071 string to rule them all",
"4072 string to rule them all",
"4073 string to rule them all",
"4074 string to rule them all",
"4075 string to rule them all",
"4076 string to rule them all",
"4077 string to rule them all",
"4078 string to rule them all",
"4079 string to rule them all",
"4080 string to rule them all",
"4081 string to rule them all",
"4082 string to rule them all",
"4083 string to rule them all",
"4084 string to rule them all",
"4085 string to rule them all",
"4086 string to rule them all",
"4087 string to rule them all",
"4088 string to rule them all",
"4089 string to rule them all",
"4090 string to rule them all",
"4091 string to rule them all",
"4092 string to rule them all",
"4093 string to rule them all",
"4094 string to rule them all",
"4095 string to rule them all",
"4096 string to rule them all",
"4097 string to rule them all",
"4098 string to rule them all",
"4099 string to rule them all",
"4100 string to rule them all",
"4101 string to rule them all",
"4102 string to rule them all",
"4103 string to rule them all",
"4104 string to rule them all",
"4105 string to rule them all",
"4106 string to rule them all",
"4107 string to rule them all",
"4108 string to rule them all",
"4109 string to rule them all",
"4110 string to rule them all",
"4111 string to rule them all",
"4112 string to rule them all",
"4113 string to rule them all",
"4114 string to rule them all",
"4115 string to rule them all",
"4116 string to rule them all",
"4117 string to rule them all",
"4118 string to rule them all",
"4119 string to rule them all",
"4120 string to rule them all",
"4121 string to rule them all",
"4122 string to rule them all",
"4123 string to rule them all",
"4124 string to rule them all",
"4125 string to rule them all",
"4126 string to rule them all",
"4127 string to rule them all",
"4128 string to rule them all",
"4129 string to rule them all",
"4130 string to rule them all",
"4131 string to rule them all",
"4132 string to rule them all",
"4133 string to rule them all",
"4134 string to rule them all",
"4135 string to rule them all",
"4136 string to rule them all",
"4137 string to rule them all",
"4138 string to rule them all",
"4139 string to rule them all",
"4140 string to rule them all",
"4141 string to rule them all",
"4142 string to rule them all",
"4143 string to rule them all",
"4144 string to rule them all",
"4145 string to rule them all",
"4146 string to rule them all",
"4147 string to rule them all",
"4148 string to rule them all",
"4149 string to rule them all",
"4150 string to rule them all",
"4151 string to rule them all",
"4152 string to rule them all",
"4153 string to rule them all",
"4154 string to rule them all",
"4155 string to rule them all",
"4156 string to rule them all",
"4157 string to rule them all",
"4158 string to rule them all",
"4159 string to rule them all",
"4160 string to rule them all",
"4161 string to rule them all",
"4162 string to rule them all",
"4163 string to rule them all",
"4164 string to rule them all",
"4165 string to rule them all",
"4166 string to rule them all",
"4167 string to rule them all",
"4168 string to rule them all",
"4169 string to rule them all",
"4170 string to rule them all",
"4171 string to rule them all",
"4172 string to rule them all",
"4173 string to rule them all",
"4174 string to rule them all",
"4175 string to rule them all",
"4176 string to rule them all",
"4177 string to rule them all",
"4178 string to rule them all",
"4179 string to rule them all",
"4180 string to rule them all",
"4181 string to rule them all",
"4182 string to rule them all",
"4183 string to rule them all",
"4184 string to rule them all",
"4185 string to rule them all",
"4186 string to rule them all",
"4187 string to rule them all",
"4188 string to rule them all",
"4189 string to rule them all",
"4190 string to rule them all",
"4191 string to rule them all",
"4192 string to rule them all",
"4193 string to rule them all",
"4194 string to rule them all",
"4195 string to rule them all",
"4196 string to rule them all",
"4197 string to rule them all",
"4198 string to rule them all",
"4199 string to rule them all",
"4200 string to rule them all",
"4201 string to rule them all",
"4202 string to rule them all",
"4203 string to rule them all",
"4204 string to rule them all",
"4205 string to rule them all",
"4206 string to rule them all",
"4207 string to rule them all",
"4208 string to rule them all",
"4209 string to rule them all",
"4210 string to rule them all",
"4211 string to rule them all",
"4212 string to rule them all",
"4213 string to rule them all",
"4214 string to rule them all",
"4215 string to rule them all",
"4216 string to rule them all",
"4217 string to rule them all",
"4218 string to rule them all",
"4219 string to rule them all",
"4220 string to rule them all",
"4221 string to rule them all",
"4222 string to rule them all",
"4223 string to rule them all",
"4224 string to rule them all",
"4225 string to rule them all",
"4226 string to rule them all",
"4227 string to rule them all",
"4228 string to rule them all",
"4229 string to rule them all",
"4230 string to rule them all",
"4231 string to rule them all",
"4232 string to rule them all",
"4233 string to rule them all",
"4234 string to rule them all",
"4235 string to rule them all",
"4236 string to rule them all",
"4237 string to rule them all",
"4238 string to rule them all",
"4239 string to rule them all",
"4240 string to rule them all",
"4241 string to rule them all",
"4242 string to rule them all",
"4243 string to rule them all",
"4244 string to rule them all",
"4245 string to rule them all",
"4246 string to rule them all",
"4247 string to rule them all",
"4248 string to rule them all",
"4249 string to rule them all",
"4250 string to rule them all",
"4251 string to rule them all",
"4252 string to rule them all",
"4253 string to rule them all",
"4254 string to rule them all",
"4255 string to rule them all",
"4256 string to rule them all",
"4257 string to rule them all",
"4258 string to rule them all",
"4259 string to rule them all",
"4260 string to rule them all",
"4261 string to rule them all",
"4262 string to rule them all",
"4263 string to rule them all",
"4264 string to rule them all",
"4265 string to rule them all",
"4266 string to rule them all",
"4267 string to rule them all",
"4268 string to rule them all",
"4269 string to rule them all",
"4270 string to rule them all",
"4271 string to rule them all",
"4272 string to rule them all",
"4273 string to rule them all",
"4274 string to rule them all",
"4275 string to rule them all",
"4276 string to rule them all",
"4277 string to rule them all",
"4278 string to rule them all",
"4279 string to rule them all",
"4280 string to rule them all",
"4281 string to rule them all",
"4282 string to rule them all",
"4283 string to rule them all",
"4284 string to rule them all",
"4285 string to rule them all",
"4286 string to rule them all",
"4287 string to rule them all",
"4288 string to rule them all",
"4289 string to rule them all",
"4290 string to rule them all",
"4291 string to rule them all",
"4292 string to rule them all",
"4293 string to rule them all",
"4294 string to rule them all",
"4295 string to rule them all",
"4296 string to rule them all",
"4297 string to rule them all",
"4298 string to rule them all",
"4299 string to rule them all",
"4300 string to rule them all",
"4301 string to rule them all",
"4302 string to rule them all",
"4303 string to rule them all",
"4304 string to rule them all",
"4305 string to rule them all",
"4306 string to rule them all",
"4307 string to rule them all",
"4308 string to rule them all",
"4309 string to rule them all",
"4310 string to rule them all",
"4311 string to rule them all",
"4312 string to rule them all",
"4313 string to rule them all",
"4314 string to rule them all",
"4315 string to rule them all",
"4316 string to rule them all",
"4317 string to rule them all",
"4318 string to rule them all",
"4319 string to rule them all",
"4320 string to rule them all",
"4321 string to rule them all",
"4322 string to rule them all",
"4323 string to rule them all",
"4324 string to rule them all",
"4325 string to rule them all",
"4326 string to rule them all",
"4327 string to rule them all",
"4328 string to rule them all",
"4329 string to rule them all",
"4330 string to rule them all",
"4331 string to rule them all",
"4332 string to rule them all",
"4333 string to rule them all",
"4334 string to rule them all",
"4335 string to rule them all",
"4336 string to rule them all",
"4337 string to rule them all",
"4338 string to rule them all",
"4339 string to rule them all",
"4340 string to rule them all",
"4341 string to rule them all",
"4342 string to rule them all",
"4343 string to rule them all",
"4344 string to rule them all",
"4345 string to rule them all",
"4346 string to rule them all",
"4347 string to rule them all",
"4348 string to rule them all",
"4349 string to rule them all",
"4350 string to rule them all",
"4351 string to rule them all",
"4352 string to rule them all",
"4353 string to rule them all",
"4354 string to rule them all",
"4355 string to rule them all",
"4356 string to rule them all",
"4357 string to rule them all",
"4358 string to rule them all",
"4359 string to rule them all",
"4360 string to rule them all",
"4361 string to rule them all",
"4362 string to rule them all",
"4363 string to rule them all",
"4364 string to rule them all",
"4365 string to rule them all",
"4366 string to rule them all",
"4367 string to rule them all",
"4368 string to rule them all",
"4369 string to rule them all",
"4370 string to rule them all",
"4371 string to rule them all",
"4372 string to rule them all",
"4373 string to rule them all",
"4374 string to rule them all",
"4375 string to rule them all",
"4376 string to rule them all",
"4377 string to rule them all",
"4378 string to rule them all",
"4379 string to rule them all",
"4380 string to rule them all",
"4381 string to rule them all",
"4382 string to rule them all",
"4383 string to rule them all",
"4384 string to rule them all",
"4385 string to rule them all",
"4386 string to rule them all",
"4387 string to rule them all",
"4388 string to rule them all",
"4389 string to rule them all",
"4390 string to rule them all",
"4391 string to rule them all",
"4392 string to rule them all",
"4393 string to rule them all",
"4394 string to rule them all",
"4395 string to rule them all",
"4396 string to rule them all",
"4397 string to rule them all",
"4398 string to rule them all",
"4399 string to rule them all",
"4400 string to rule them all",
"4401 string to rule them all",
"4402 string to rule them all",
"4403 string to rule them all",
"4404 string to rule them all",
"4405 string to rule them all",
"4406 string to rule them all",
"4407 string to rule them all",
"4408 string to rule them all",
"4409 string to rule them all",
"4410 string to rule them all",
"4411 string to rule them all",
"4412 string to rule them all",
"4413 string to rule them all",
"4414 string to rule them all",
"4415 string to rule them all",
"4416 string to rule them all",
"4417 string to rule them all",
"4418 string to rule them all",
"4419 string to rule them all",
"4420 string to rule them all",
"4421 string to rule them all",
"4422 string to rule them all",
"4423 string to rule them all",
"4424 string to rule them all",
"4425 string to rule them all",
"4426 string to rule them all",
"4427 string to rule them all",
"4428 string to rule them all",
"4429 string to rule them all",
"4430 string to rule them all",
"4431 string to rule them all",
"4432 string to rule them all",
"4433 string to rule them all",
"4434 string to rule them all",
"4435 string to rule them all",
"4436 string to rule them all",
"4437 string to rule them all",
"4438 string to rule them all",
"4439 string to rule them all",
"4440 string to rule them all",
"4441 string to rule them all",
"4442 string to rule them all",
"4443 string to rule them all",
"4444 string to rule them all",
"4445 string to rule them all",
"4446 string to rule them all",
"4447 string to rule them all",
"4448 string to rule them all",
"4449 string to rule them all",
"4450 string to rule them all",
"4451 string to rule them all",
"4452 string to rule them all",
"4453 string to rule them all",
"4454 string to rule them all",
"4455 string to rule them all",
"4456 string to rule them all",
"4457 string to rule them all",
"4458 string to rule them all",
"4459 string to rule them all",
"4460 string to rule them all",
"4461 string to rule them all",
"4462 string to rule them all",
"4463 string to rule them all",
"4464 string to rule them all",
"4465 string to rule them all",
"4466 string to rule them all",
"4467 string to rule them all",
"4468 string to rule them all",
"4469 string to rule them all",
"4470 string to rule them all",
"4471 string to rule them all",
"4472 string to rule them all",
"4473 string to rule them all",
"4474 string to rule them all",
"4475 string to rule them all",
"4476 string to rule them all",
"4477 string to rule them all",
"4478 string to rule them all",
"4479 string to rule them all",
"4480 string to rule them all",
"4481 string to rule them all",
"4482 string to rule them all",
"4483 string to rule them all",
"4484 string to rule them all",
"4485 string to rule them all",
"4486 string to rule them all",
"4487 string to rule them all",
"4488 string to rule them all",
"4489 string to rule them all",
"4490 string to rule them all",
"4491 string to rule them all",
"4492 string to rule them all",
"4493 string to rule them all",
"4494 string to rule them all",
"4495 string to rule them all",
"4496 string to rule them all",
"4497 string to rule them all",
"4498 string to rule them all",
"4499 string to rule them all",
"4500 string to rule them all",
"4501 string to rule them all",
"4502 string to rule them all",
"4503 string to rule them all",
"4504 string to rule them all",
"4505 string to rule them all",
"4506 string to rule them all",
"4507 string to rule them all",
"4508 string to rule them all",
"4509 string to rule them all",
"4510 string to rule them all",
"4511 string to rule them all",
"4512 string to rule them all",
"4513 string to rule them all",
"4514 string to rule them all",
"4515 string to rule them all",
"4516 string to rule them all",
"4517 string to rule them all",
"4518 string to rule them all",
"4519 string to rule them all",
"4520 string to rule them all",
"4521 string to rule them all",
"4522 string to rule them all",
"4523 string to rule them all",
"4524 string to rule them all",
"4525 string to rule them all",
"4526 string to rule them all",
"4527 string to rule them all",
"4528 string to rule them all",
"4529 string to rule them all",
"4530 string to rule them all",
"4531 string to rule them all",
"4532 string to rule them all",
"4533 string to rule them all",
"4534 string to rule them all",
"4535 string to rule them all",
"4536 string to rule them all",
"4537 string to rule them all",
"4538 string to rule them all",
"4539 string to rule them all",
"4540 string to rule them all",
"4541 string to rule them all",
"4542 string to rule them all",
"4543 string to rule them all",
"4544 string to rule them all",
"4545 string to rule them all",
"4546 string to rule them all",
"4547 string to rule them all",
"4548 string to rule them all",
"4549 string to rule them all",
"4550 string to rule them all",
"4551 string to rule them all",
"4552 string to rule them all",
"4553 string to rule them all",
"4554 string to rule them all",
"4555 string to rule them all",
"4556 string to rule them all",
"4557 string to rule them all",
"4558 string to rule them all",
"4559 string to rule them all",
"4560 string to rule them all",
"4561 string to rule them all",
"4562 string to rule them all",
"4563 string to rule them all",
"4564 string to rule them all",
"4565 string to rule them all",
"4566 string to rule them all",
"4567 string to rule them all",
"4568 string to rule them all",
"4569 string to rule them all",
"4570 string to rule them all",
"4571 string to rule them all",
"4572 string to rule them all",
"4573 string to rule them all",
"4574 string to rule them all",
"4575 string to rule them all",
"4576 string to rule them all",
"4577 string to rule them all",
"4578 string to rule them all",
"4579 string to rule them all",
"4580 string to rule them all",
"4581 string to rule them all",
"4582 string to rule them all",
"4583 string to rule them all",
"4584 string to rule them all",
"4585 string to rule them all",
"4586 string to rule them all",
"4587 string to rule them all",
"4588 string to rule them all",
"4589 string to rule them all",
"4590 string to rule them all",
"4591 string to rule them all",
"4592 string to rule them all",
"4593 string to rule them all",
"4594 string to rule them all",
"4595 string to rule them all",
"4596 string to rule them all",
"4597 string to rule them all",
"4598 string to rule them all",
"4599 string to rule them all",
"4600 string to rule them all",
"4601 string to rule them all",
"4602 string to rule them all",
"4603 string to rule them all",
"4604 string to rule them all",
"4605 string to rule them all",
"4606 string to rule them all",
"4607 string to rule them all",
"4608 string to rule them all",
"4609 string to rule them all",
"4610 string to rule them all",
"4611 string to rule them all",
"4612 string to rule them all",
"4613 string to rule them all",
"4614 string to rule them all",
"4615 string to rule them all",
"4616 string to rule them all",
"4617 string to rule them all",
"4618 string to rule them all",
"4619 string to rule them all",
"4620 string to rule them all",
"4621 string to rule them all",
"4622 string to rule them all",
"4623 string to rule them all",
"4624 string to rule them all",
"4625 string to rule them all",
"4626 string to rule them all",
"4627 string to rule them all",
"4628 string to rule them all",
"4629 string to rule them all",
"4630 string to rule them all",
"4631 string to rule them all",
"4632 string to rule them all",
"4633 string to rule them all",
"4634 string to rule them all",
"4635 string to rule them all",
"4636 string to rule them all",
"4637 string to rule them all",
"4638 string to rule them all",
"4639 string to rule them all",
"4640 string to rule them all",
"4641 string to rule them all",
"4642 string to rule them all",
"4643 string to rule them all",
"4644 string to rule them all",
"4645 string to rule them all",
"4646 string to rule them all",
"4647 string to rule them all",
"4648 string to rule them all",
"4649 string to rule them all",
"4650 string to rule them all",
"4651 string to rule them all",
"4652 string to rule them all",
"4653 string to rule them all",
"4654 string to rule them all",
"4655 string to rule them all",
"4656 string to rule them all",
"4657 string to rule them all",
"4658 string to rule them all",
"4659 string to rule them all",
"4660 string to rule them all",
"4661 string to rule them all",
"4662 string to rule them all",
"4663 string to rule them all",
"4664 string to rule them all",
"4665 string to rule them all",
"4666 string to rule them all",
"4667 string to rule them all",
"4668 string to rule them all",
"4669 string to rule them all",
"4670 string to rule them all",
"4671 string to rule them all",
"4672 string to rule them all",
"4673 string to rule them all",
"4674 string to rule them all",
"4675 string to rule them all",
"4676 string to rule them all",
"4677 string to rule them all",
"4678 string to rule them all",
"4679 string to rule them all",
"4680 string to rule them all",
"4681 string to rule them all",
"4682 string to rule them all",
"4683 string to rule them all",
"4684 string to rule them all",
"4685 string to rule them all",
"4686 string to rule them all",
"4687 string to rule them all",
"4688 string to rule them all",
"4689 string to rule them all",
"4690 string to rule them all",
"4691 string to rule them all",
"4692 string to rule them all",
"4693 string to rule them all",
"4694 string to rule them all",
"4695 string to rule them all",
"4696 string to rule them all",
"4697 string to rule them all",
"4698 string to rule them all",
"4699 string to rule them all",
"4700 string to rule them all",
"4701 string to rule them all",
"4702 string to rule them all",
"4703 string to rule them all",
"4704 string to rule them all",
"4705 string to rule them all",
"4706 string to rule them all",
"4707 string to rule them all",
"4708 string to rule them all",
"4709 string to rule them all",
"4710 string to rule them all",
"4711 string to rule them all",
"4712 string to rule them all",
"4713 string to rule them all",
"4714 string to rule them all",
"4715 string to rule them all",
"4716 string to rule them all",
"4717 string to rule them all",
"4718 string to rule them all",
"4719 string to rule them all",
"4720 string to rule them all",
"4721 string to rule them all",
"4722 string to rule them all",
"4723 string to rule them all",
"4724 string to rule them all",
"4725 string to rule them all",
"4726 string to rule them all",
"4727 string to rule them all",
"4728 string to rule them all",
"4729 string to rule them all",
"4730 string to rule them all",
"4731 string to rule them all",
"4732 string to rule them all",
"4733 string to rule them all",
"4734 string to rule them all",
"4735 string to rule them all",
"4736 string to rule them all",
"4737 string to rule them all",
"4738 string to rule them all",
"4739 string to rule them all",
"4740 string to rule them all",
"4741 string to rule them all",
"4742 string to rule them all",
"4743 string to rule them all",
"4744 string to rule them all",
"4745 string to rule them all",
"4746 string to rule them all",
"4747 string to rule them all",
"4748 string to rule them all",
"4749 string to rule them all",
"4750 string to rule them all",
"4751 string to rule them all",
"4752 string to rule them all",
"4753 string to rule them all",
"4754 string to rule them all",
"4755 string to rule them all",
"4756 string to rule them all",
"4757 string to rule them all",
"4758 string to rule them all",
"4759 string to rule them all",
"4760 string to rule them all",
"4761 string to rule them all",
"4762 string to rule them all",
"4763 string to rule them all",
"4764 string to rule them all",
"4765 string to rule them all",
"4766 string to rule them all",
"4767 string to rule them all",
"4768 string to rule them all",
"4769 string to rule them all",
"4770 string to rule them all",
"4771 string to rule them all",
"4772 string to rule them all",
"4773 string to rule them all",
"4774 string to rule them all",
"4775 string to rule them all",
"4776 string to rule them all",
"4777 string to rule them all",
"4778 string to rule them all",
"4779 string to rule them all",
"4780 string to rule them all",
"4781 string to rule them all",
"4782 string to rule them all",
"4783 string to rule them all",
"4784 string to rule them all",
"4785 string to rule them all",
"4786 string to rule them all",
"4787 string to rule them all",
"4788 string to rule them all",
"4789 string to rule them all",
"4790 string to rule them all",
"4791 string to rule them all",
"4792 string to rule them all",
"4793 string to rule them all",
"4794 string to rule them all",
"4795 string to rule them all",
"4796 string to rule them all",
"4797 string to rule them all",
"4798 string to rule them all",
"4799 string to rule them all",
"4800 string to rule them all",
"4801 string to rule them all",
"4802 string to rule them all",
"4803 string to rule them all",
"4804 string to rule them all",
"4805 string to rule them all",
"4806 string to rule them all",
"4807 string to rule them all",
"4808 string to rule them all",
"4809 string to rule them all",
"4810 string to rule them all",
"4811 string to rule them all",
"4812 string to rule them all",
"4813 string to rule them all",
"4814 string to rule them all",
"4815 string to rule them all",
"4816 string to rule them all",
"4817 string to rule them all",
"4818 string to rule them all",
"4819 string to rule them all",
"4820 string to rule them all",
"4821 string to rule them all",
"4822 string to rule them all",
"4823 string to rule them all",
"4824 string to rule them all",
"4825 string to rule them all",
"4826 string to rule them all",
"4827 string to rule them all",
"4828 string to rule them all",
"4829 string to rule them all",
"4830 string to rule them all",
"4831 string to rule them all",
"4832 string to rule them all",
"4833 string to rule them all",
"4834 string to rule them all",
"4835 string to rule them all",
"4836 string to rule them all",
"4837 string to rule them all",
"4838 string to rule them all",
"4839 string to rule them all",
"4840 string to rule them all",
"4841 string to rule them all",
"4842 string to rule them all",
"4843 string to rule them all",
"4844 string to rule them all",
"4845 string to rule them all",
"4846 string to rule them all",
"4847 string to rule them all",
"4848 string to rule them all",
"4849 string to rule them all",
"4850 string to rule them all",
"4851 string to rule them all",
"4852 string to rule them all",
"4853 string to rule them all",
"4854 string to rule them all",
"4855 string to rule them all",
"4856 string to rule them all",
"4857 string to rule them all",
"4858 string to rule them all",
"4859 string to rule them all",
"4860 string to rule them all",
"4861 string to rule them all",
"4862 string to rule them all",
"4863 string to rule them all",
"4864 string to rule them all",
"4865 string to rule them all",
"4866 string to rule them all",
"4867 string to rule them all",
"4868 string to rule them all",
"4869 string to rule them all",
"4870 string to rule them all",
"4871 string to rule them all",
"4872 string to rule them all",
"4873 string to rule them all",
"4874 string to rule them all",
"4875 string to rule them all",
"4876 string to rule them all",
"4877 string to rule them all",
"4878 string to rule them all",
"4879 string to rule them all",
"4880 string to rule them all",
"4881 string to rule them all",
"4882 string to rule them all",
"4883 string to rule them all",
"4884 string to rule them all",
"4885 string to rule them all",
"4886 string to rule them all",
"4887 string to rule them all",
"4888 string to rule them all",
"4889 string to rule them all",
"4890 string to rule them all",
"4891 string to rule them all",
"4892 string to rule them all",
"4893 string to rule them all",
"4894 string to rule them all",
"4895 string to rule them all",
"4896 string to rule them all",
"4897 string to rule them all",
"4898 string to rule them all",
"4899 string to rule them all",
"4900 string to rule them all",
"4901 string to rule them all",
"4902 string to rule them all",
"4903 string to rule them all",
"4904 string to rule them all",
"4905 string to rule them all",
"4906 string to rule them all",
"4907 string to rule them all",
"4908 string to rule them all",
"4909 string to rule them all",
"4910 string to rule them all",
"4911 string to rule them all",
"4912 string to rule them all",
"4913 string to rule them all",
"4914 string to rule them all",
"4915 string to rule them all",
"4916 string to rule them all",
"4917 string to rule them all",
"4918 string to rule them all",
"4919 string to rule them all",
"4920 string to rule them all",
"4921 string to rule them all",
"4922 string to rule them all",
"4923 string to rule them all",
"4924 string to rule them all",
"4925 string to rule them all",
"4926 string to rule them all",
"4927 string to rule them all",
"4928 string to rule them all",
"4929 string to rule them all",
"4930 string to rule them all",
"4931 string to rule them all",
"4932 string to rule them all",
"4933 string to rule them all",
"4934 string to rule them all",
"4935 string to rule them all",
"4936 string to rule them all",
"4937 string to rule them all",
"4938 string to rule them all",
"4939 string to rule them all",
"4940 string to rule them all",
"4941 string to rule them all",
"4942 string to rule them all",
"4943 string to rule them all",
"4944 string to rule them all",
"4945 string to rule them all",
"4946 string to rule them all",
"4947 string to rule them all",
"4948 string to rule them all",
"4949 string to rule them all",
"4950 string to rule them all",
"4951 string to rule them all",
"4952 string to rule them all",
"4953 string to rule them all",
"4954 string to rule them all",
"4955 string to rule them all",
"4956 string to rule them all",
"4957 string to rule them all",
"4958 string to rule them all",
"4959 string to rule them all",
"4960 string to rule them all",
"4961 string to rule them all",
"4962 string to rule them all",
"4963 string to rule them all",
"4964 string to rule them all",
"4965 string to rule them all",
"4966 string to rule them all",
"4967 string to rule them all",
"4968 string to rule them all",
"4969 string to rule them all",
"4970 string to rule them all",
"4971 string to rule them all",
"4972 string to rule them all",
"4973 string to rule them all",
"4974 string to rule them all",
"4975 string to rule them all",
"4976 string to rule them all",
"4977 string to rule them all",
"4978 string to rule them all",
"4979 string to rule them all",
"4980 string to rule them all",
"4981 string to rule them all",
"4982 string to rule them all",
"4983 string to rule them all",
"4984 string to rule them all",
"4985 string to rule them all",
"4986 string to rule them all",
"4987 string to rule them all",
"4988 string to rule them all",
"4989 string to rule them all",
"4990 string to rule them all",
"4991 string to rule them all",
"4992 string to rule them all",
"4993 string to rule them all",
"4994 string to rule them all",
"4995 string to rule them all",
"4996 string to rule them all",
"4997 string to rule them all",
"4998 string to rule them all",
"4999 string to rule them all",
"5000 string to rule them all",
"5001 string to rule them all",
"5002 string to rule them all",
"5003 string to rule them all",
"5004 string to rule them all",
"5005 string to rule them all",
"5006 string to rule them all",
"5007 string to rule them all",
"5008 string to rule them all",
"5009 string to rule them all",
"5010 string to rule them all",
"5011 string to rule them all",
"5012 string to rule them all",
"5013 string to rule them all",
"5014 string to rule them all",
"5015 string to rule them all",
"5016 string to rule them all",
"5017 string to rule them all",
"5018 string to rule them all",
"5019 string to rule them all",
"5020 string to rule them all",
"5021 string to rule them all",
"5022 string to rule them all",
"5023 string to rule them all",
"5024 string to rule them all",
"5025 string to rule them all",
"5026 string to rule them all",
"5027 string to rule them all",
"5028 string to rule them all",
"5029 string to rule them all",
"5030 string to rule them all",
"5031 string to rule them all",
"5032 string to rule them all",
"5033 string to rule them all",
"5034 string to rule them all",
"5035 string to rule them all",
"5036 string to rule them all",
"5037 string to rule them all",
"5038 string to rule them all",
"5039 string to rule them all",
"5040 string to rule them all",
"5041 string to rule them all",
"5042 string to rule them all",
"5043 string to rule them all",
"5044 string to rule them all",
"5045 string to rule them all",
"5046 string to rule them all",
"5047 string to rule them all",
"5048 string to rule them all",
"5049 string to rule them all",
"5050 string to rule them all",
"5051 string to rule them all",
"5052 string to rule them all",
"5053 string to rule them all",
"5054 string to rule them all",
"5055 string to rule them all",
"5056 string to rule them all",
"5057 string to rule them all",
"5058 string to rule them all",
"5059 string to rule them all",
"5060 string to rule them all",
"5061 string to rule them all",
"5062 string to rule them all",
"5063 string to rule them all",
"5064 string to rule them all",
"5065 string to rule them all",
"5066 string to rule them all",
"5067 string to rule them all",
"5068 string to rule them all",
"5069 string to rule them all",
"5070 string to rule them all",
"5071 string to rule them all",
"5072 string to rule them all",
"5073 string to rule them all",
"5074 string to rule them all",
"5075 string to rule them all",
"5076 string to rule them all",
"5077 string to rule them all",
"5078 string to rule them all",
"5079 string to rule them all",
"5080 string to rule them all",
"5081 string to rule them all",
"5082 string to rule them all",
"5083 string to rule them all",
"5084 string to rule them all",
"5085 string to rule them all",
"5086 string to rule them all",
"5087 string to rule them all",
"5088 string to rule them all",
"5089 string to rule them all",
"5090 string to rule them all",
"5091 string to rule them all",
"5092 string to rule them all",
"5093 string to rule them all",
"5094 string to rule them all",
"5095 string to rule them all",
"5096 string to rule them all",
"5097 string to rule them all",
"5098 string to rule them all",
"5099 string to rule them all",
"5100 string to rule them all",
"5101 string to rule them all",
"5102 string to rule them all",
"5103 string to rule them all",
"5104 string to rule them all",
"5105 string to rule them all",
"5106 string to rule them all",
"5107 string to rule them all",
"5108 string to rule them all",
"5109 string to rule them all",
"5110 string to rule them all",
"5111 string to rule them all",
"5112 string to rule them all",
"5113 string to rule them all",
"5114 string to rule them all",
"5115 string to rule them all",
"5116 string to rule them all",
"5117 string to rule them all",
"5118 string to rule them all",
"5119 string to rule them all",
"5120 string to rule them all",
"5121 string to rule them all",
"5122 string to rule them all",
"5123 string to rule them all",
"5124 string to rule them all",
"5125 string to rule them all",
"5126 string to rule them all",
"5127 string to rule them all",
"5128 string to rule them all",
"5129 string to rule them all",
"5130 string to rule them all",
"5131 string to rule them all",
"5132 string to rule them all",
"5133 string to rule them all",
"5134 string to rule them all",
"5135 string to rule them all",
"5136 string to rule them all",
"5137 string to rule them all",
"5138 string to rule them all",
"5139 string to rule them all",
"5140 string to rule them all",
"5141 string to rule them all",
"5142 string to rule them all",
"5143 string to rule them all",
"5144 string to rule them all",
"5145 string to rule them all",
"5146 string to rule them all",
"5147 string to rule them all",
"5148 string to rule them all",
"5149 string to rule them all",
"5150 string to rule them all",
"5151 string to rule them all",
"5152 string to rule them all",
"5153 string to rule them all",
"5154 string to rule them all",
"5155 string to rule them all",
"5156 string to rule them all",
"5157 string to rule them all",
"5158 string to rule them all",
"5159 string to rule them all",
"5160 string to rule them all",
"5161 string to rule them all",
"5162 string to rule them all",
"5163 string to rule them all",
"5164 string to rule them all",
"5165 string to rule them all",
"5166 string to rule them all",
"5167 string to rule them all",
"5168 string to rule them all",
"5169 string to rule them all",
"5170 string to rule them all",
"5171 string to rule them all",
"5172 string to rule them all",
"5173 string to rule them all",
"5174 string to rule them all",
"5175 string to rule them all",
"5176 string to rule them all",
"5177 string to rule them all",
"5178 string to rule them all",
"5179 string to rule them all",
"5180 string to rule them all",
"5181 string to rule them all",
"5182 string to rule them all",
"5183 string to rule them all",
"5184 string to rule them all",
"5185 string to rule them all",
"5186 string to rule them all",
"5187 string to rule them all",
"5188 string to rule them all",
"5189 string to rule them all",
"5190 string to rule them all",
"5191 string to rule them all",
"5192 string to rule them all",
"5193 string to rule them all",
"5194 string to rule them all",
"5195 string to rule them all",
"5196 string to rule them all",
"5197 string to rule them all",
"5198 string to rule them all",
"5199 string to rule them all",
"5200 string to rule them all",
"5201 string to rule them all",
"5202 string to rule them all",
"5203 string to rule them all",
"5204 string to rule them all",
"5205 string to rule them all",
"5206 string to rule them all",
"5207 string to rule them all",
"5208 string to rule them all",
"5209 string to rule them all",
"5210 string to rule them all",
"5211 string to rule them all",
"5212 string to rule them all",
"5213 string to rule them all",
"5214 string to rule them all",
"5215 string to rule them all",
"5216 string to rule them all",
"5217 string to rule them all",
"5218 string to rule them all",
"5219 string to rule them all",
"5220 string to rule them all",
"5221 string to rule them all",
"5222 string to rule them all",
"5223 string to rule them all",
"5224 string to rule them all",
"5225 string to rule them all",
"5226 string to rule them all",
"5227 string to rule them all",
"5228 string to rule them all",
"5229 string to rule them all",
"5230 string to rule them all",
"5231 string to rule them all",
"5232 string to rule them all",
"5233 string to rule them all",
"5234 string to rule them all",
"5235 string to rule them all",
"5236 string to rule them all",
"5237 string to rule them all",
"5238 string to rule them all",
"5239 string to rule them all",
"5240 string to rule them all",
"5241 string to rule them all",
"5242 string to rule them all",
"5243 string to rule them all",
"5244 string to rule them all",
"5245 string to rule them all",
"5246 string to rule them all",
"5247 string to rule them all",
"5248 string to rule them all",
"5249 string to rule them all",
"5250 string to rule them all",
"5251 string to rule them all",
"5252 string to rule them all",
"5253 string to rule them all",
"5254 string to rule them all",
"5255 string to rule them all",
"5256 string to rule them all",
"5257 string to rule them all",
"5258 string to rule them all",
"5259 string to rule them all",
"5260 string to rule them all",
"5261 string to rule them all",
"5262 string to rule them all",
"5263 string to rule them all",
"5264 string to rule them all",
"5265 string to rule them all",
"5266 string to rule them all",
"5267 string to rule them all",
"5268 string to rule them all",
"5269 string to rule them all",
"5270 string to rule them all",
"5271 string to rule them all",
"5272 string to rule them all",
"5273 string to rule them all",
"5274 string to rule them all",
"5275 string to rule them all",
"5276 string to rule them all",
"5277 string to rule them all",
"5278 string to rule them all",
"5279 string to rule them all",
"5280 string to rule them all",
"5281 string to rule them all",
"5282 string to rule them all",
"5283 string to rule them all",
"5284 string to rule them all",
"5285 string to rule them all",
"5286 string to rule them all",
"5287 string to rule them all",
"5288 string to rule them all",
"5289 string to rule them all",
"5290 string to rule them all",
"5291 string to rule them all",
"5292 string to rule them all",
"5293 string to rule them all",
"5294 string to rule them all",
"5295 string to rule them all",
"5296 string to rule them all",
"5297 string to rule them all",
"5298 string to rule them all",
"5299 string to rule them all",
"5300 string to rule them all",
"5301 string to rule them all",
"5302 string to rule them all",
"5303 string to rule them all",
"5304 string to rule them all",
"5305 string to rule them all",
"5306 string to rule them all",
"5307 string to rule them all",
"5308 string to rule them all",
"5309 string to rule them all",
"5310 string to rule them all",
"5311 string to rule them all",
"5312 string to rule them all",
"5313 string to rule them all",
"5314 string to rule them all",
"5315 string to rule them all",
"5316 string to rule them all",
"5317 string to rule them all",
"5318 string to rule them all",
"5319 string to rule them all",
"5320 string to rule them all",
"5321 string to rule them all",
"5322 string to rule them all",
"5323 string to rule them all",
"5324 string to rule them all",
"5325 string to rule them all",
"5326 string to rule them all",
"5327 string to rule them all",
"5328 string to rule them all",
"5329 string to rule them all",
"5330 string to rule them all",
"5331 string to rule them all",
"5332 string to rule them all",
"5333 string to rule them all",
"5334 string to rule them all",
"5335 string to rule them all",
"5336 string to rule them all",
"5337 string to rule them all",
"5338 string to rule them all",
"5339 string to rule them all",
"5340 string to rule them all",
"5341 string to rule them all",
"5342 string to rule them all",
"5343 string to rule them all",
"5344 string to rule them all",
"5345 string to rule them all",
"5346 string to rule them all",
"5347 string to rule them all",
"5348 string to rule them all",
"5349 string to rule them all",
"5350 string to rule them all",
"5351 string to rule them all",
"5352 string to rule them all",
"5353 string to rule them all",
"5354 string to rule them all",
"5355 string to rule them all",
"5356 string to rule them all",
"5357 string to rule them all",
"5358 string to rule them all",
"5359 string to rule them all",
"5360 string to rule them all",
"5361 string to rule them all",
"5362 string to rule them all",
"5363 string to rule them all",
"5364 string to rule them all",
"5365 string to rule them all",
"5366 string to rule them all",
"5367 string to rule them all",
"5368 string to rule them all",
"5369 string to rule them all",
"5370 string to rule them all",
"5371 string to rule them all",
"5372 string to rule them all",
"5373 string to rule them all",
"5374 string to rule them all",
"5375 string to rule them all",
"5376 string to rule them all",
"5377 string to rule them all",
"5378 string to rule them all",
"5379 string to rule them all",
"5380 string to rule them all",
"5381 string to rule them all",
"5382 string to rule them all",
"5383 string to rule them all",
"5384 string to rule them all",
"5385 string to rule them all",
"5386 string to rule them all",
"5387 string to rule them all",
"5388 string to rule them all",
"5389 string to rule them all",
"5390 string to rule them all",
"5391 string to rule them all",
"5392 string to rule them all",
"5393 string to rule them all",
"5394 string to rule them all",
"5395 string to rule them all",
"5396 string to rule them all",
"5397 string to rule them all",
"5398 string to rule them all",
"5399 string to rule them all",
"5400 string to rule them all",
"5401 string to rule them all",
"5402 string to rule them all",
"5403 string to rule them all",
"5404 string to rule them all",
"5405 string to rule them all",
"5406 string to rule them all",
"5407 string to rule them all",
"5408 string to rule them all",
"5409 string to rule them all",
"5410 string to rule them all",
"5411 string to rule them all",
"5412 string to rule them all",
"5413 string to rule them all",
"5414 string to rule them all",
"5415 string to rule them all",
"5416 string to rule them all",
"5417 string to rule them all",
"5418 string to rule them all",
"5419 string to rule them all",
"5420 string to rule them all",
"5421 string to rule them all",
"5422 string to rule them all",
"5423 string to rule them all",
"5424 string to rule them all",
"5425 string to rule them all",
"5426 string to rule them all",
"5427 string to rule them all",
"5428 string to rule them all",
"5429 string to rule them all",
"5430 string to rule them all",
"5431 string to rule them all",
"5432 string to rule them all",
"5433 string to rule them all",
"5434 string to rule them all",
"5435 string to rule them all",
"5436 string to rule them all",
"5437 string to rule them all",
"5438 string to rule them all",
"5439 string to rule them all",
"5440 string to rule them all",
"5441 string to rule them all",
"5442 string to rule them all",
"5443 string to rule them all",
"5444 string to rule them all",
"5445 string to rule them all",
"5446 string to rule them all",
"5447 string to rule them all",
"5448 string to rule them all",
"5449 string to rule them all",
"5450 string to rule them all",
"5451 string to rule them all",
"5452 string to rule them all",
"5453 string to rule them all",
"5454 string to rule them all",
"5455 string to rule them all",
"5456 string to rule them all",
"5457 string to rule them all",
"5458 string to rule them all",
"5459 string to rule them all",
"5460 string to rule them all",
"5461 string to rule them all",
"5462 string to rule them all",
"5463 string to rule them all",
"5464 string to rule them all",
"5465 string to rule them all",
"5466 string to rule them all",
"5467 string to rule them all",
"5468 string to rule them all",
"5469 string to rule them all",
"5470 string to rule them all",
"5471 string to rule them all",
"5472 string to rule them all",
"5473 string to rule them all",
"5474 string to rule them all",
"5475 string to rule them all",
"5476 string to rule them all",
"5477 string to rule them all",
"5478 string to rule them all",
"5479 string to rule them all",
"5480 string to rule them all",
"5481 string to rule them all",
"5482 string to rule them all",
"5483 string to rule them all",
"5484 string to rule them all",
"5485 string to rule them all",
"5486 string to rule them all",
"5487 string to rule them all",
"5488 string to rule them all",
"5489 string to rule them all",
"5490 string to rule them all",
"5491 string to rule them all",
"5492 string to rule them all",
"5493 string to rule them all",
"5494 string to rule them all",
"5495 string to rule them all",
"5496 string to rule them all",
"5497 string to rule them all",
"5498 string to rule them all",
"5499 string to rule them all",
"5500 string to rule them all",
"5501 string to rule them all",
"5502 string to rule them all",
"5503 string to rule them all",
"5504 string to rule them all",
"5505 string to rule them all",
"5506 string to rule them all",
"5507 string to rule them all",
"5508 string to rule them all",
"5509 string to rule them all",
"5510 string to rule them all",
"5511 string to rule them all",
"5512 string to rule them all",
"5513 string to rule them all",
"5514 string to rule them all",
"5515 string to rule them all",
"5516 string to rule them all",
"5517 string to rule them all",
"5518 string to rule them all",
"5519 string to rule them all",
"5520 string to rule them all",
"5521 string to rule them all",
"5522 string to rule them all",
"5523 string to rule them all",
"5524 string to rule them all",
"5525 string to rule them all",
"5526 string to rule them all",
"5527 string to rule them all",
"5528 string to rule them all",
"5529 string to rule them all",
"5530 string to rule them all",
"5531 string to rule them all",
"5532 string to rule them all",
"5533 string to rule them all",
"5534 string to rule them all",
"5535 string to rule them all",
"5536 string to rule them all",
"5537 string to rule them all",
"5538 string to rule them all",
"5539 string to rule them all",
"5540 string to rule them all",
"5541 string to rule them all",
"5542 string to rule them all",
"5543 string to rule them all",
"5544 string to rule them all",
"5545 string to rule them all",
"5546 string to rule them all",
"5547 string to rule them all",
"5548 string to rule them all",
"5549 string to rule them all",
"5550 string to rule them all",
"5551 string to rule them all",
"5552 string to rule them all",
"5553 string to rule them all",
"5554 string to rule them all",
"5555 string to rule them all",
"5556 string to rule them all",
"5557 string to rule them all",
"5558 string to rule them all",
"5559 string to rule them all",
"5560 string to rule them all",
"5561 string to rule them all",
"5562 string to rule them all",
"5563 string to rule them all",
"5564 string to rule them all",
"5565 string to rule them all",
"5566 string to rule them all",
"5567 string to rule them all",
"5568 string to rule them all",
"5569 string to rule them all",
"5570 string to rule them all",
"5571 string to rule them all",
"5572 string to rule them all",
"5573 string to rule them all",
"5574 string to rule them all",
"5575 string to rule them all",
"5576 string to rule them all",
"5577 string to rule them all",
"5578 string to rule them all",
"5579 string to rule them all",
"5580 string to rule them all",
"5581 string to rule them all",
"5582 string to rule them all",
"5583 string to rule them all",
"5584 string to rule them all",
"5585 string to rule them all",
"5586 string to rule them all",
"5587 string to rule them all",
"5588 string to rule them all",
"5589 string to rule them all",
"5590 string to rule them all",
"5591 string to rule them all",
"5592 string to rule them all",
"5593 string to rule them all",
"5594 string to rule them all",
"5595 string to rule them all",
"5596 string to rule them all",
"5597 string to rule them all",
"5598 string to rule them all",
"5599 string to rule them all",
"5600 string to rule them all",
"5601 string to rule them all",
"5602 string to rule them all",
"5603 string to rule them all",
"5604 string to rule them all",
"5605 string to rule them all",
"5606 string to rule them all",
"5607 string to rule them all",
"5608 string to rule them all",
"5609 string to rule them all",
"5610 string to rule them all",
"5611 string to rule them all",
"5612 string to rule them all",
"5613 string to rule them all",
"5614 string to rule them all",
"5615 string to rule them all",
"5616 string to rule them all",
"5617 string to rule them all",
"5618 string to rule them all",
"5619 string to rule them all",
"5620 string to rule them all",
"5621 string to rule them all",
"5622 string to rule them all",
"5623 string to rule them all",
"5624 string to rule them all",
"5625 string to rule them all",
"5626 string to rule them all",
"5627 string to rule them all",
"5628 string to rule them all",
"5629 string to rule them all",
"5630 string to rule them all",
"5631 string to rule them all",
"5632 string to rule them all",
"5633 string to rule them all",
"5634 string to rule them all",
"5635 string to rule them all",
"5636 string to rule them all",
"5637 string to rule them all",
"5638 string to rule them all",
"5639 string to rule them all",
"5640 string to rule them all",
"5641 string to rule them all",
"5642 string to rule them all",
"5643 string to rule them all",
"5644 string to rule them all",
"5645 string to rule them all",
"5646 string to rule them all",
"5647 string to rule them all",
"5648 string to rule them all",
"5649 string to rule them all",
"5650 string to rule them all",
"5651 string to rule them all",
"5652 string to rule them all",
"5653 string to rule them all",
"5654 string to rule them all",
"5655 string to rule them all",
"5656 string to rule them all",
"5657 string to rule them all",
"5658 string to rule them all",
"5659 string to rule them all",
"5660 string to rule them all",
"5661 string to rule them all",
"5662 string to rule them all",
"5663 string to rule them all",
"5664 string to rule them all",
"5665 string to rule them all",
"5666 string to rule them all",
"5667 string to rule them all",
"5668 string to rule them all",
"5669 string to rule them all",
"5670 string to rule them all",
"5671 string to rule them all",
"5672 string to rule them all",
"5673 string to rule them all",
"5674 string to rule them all",
"5675 string to rule them all",
"5676 string to rule them all",
"5677 string to rule them all",
"5678 string to rule them all",
"5679 string to rule them all",
"5680 string to rule them all",
"5681 string to rule them all",
"5682 string to rule them all",
"5683 string to rule them all",
"5684 string to rule them all",
"5685 string to rule them all",
"5686 string to rule them all",
"5687 string to rule them all",
"5688 string to rule them all",
"5689 string to rule them all",
"5690 string to rule them all",
"5691 string to rule them all",
"5692 string to rule them all",
"5693 string to rule them all",
"5694 string to rule them all",
"5695 string to rule them all",
"5696 string to rule them all",
"5697 string to rule them all",
"5698 string to rule them all",
"5699 string to rule them all",
"5700 string to rule them all",
"5701 string to rule them all",
"5702 string to rule them all",
"5703 string to rule them all",
"5704 string to rule them all",
"5705 string to rule them all",
"5706 string to rule them all",
"5707 string to rule them all",
"5708 string to rule them all",
"5709 string to rule them all",
"5710 string to rule them all",
"5711 string to rule them all",
"5712 string to rule them all",
"5713 string to rule them all",
"5714 string to rule them all",
"5715 string to rule them all",
"5716 string to rule them all",
"5717 string to rule them all",
"5718 string to rule them all",
"5719 string to rule them all",
"5720 string to rule them all",
"5721 string to rule them all",
"5722 string to rule them all",
"5723 string to rule them all",
"5724 string to rule them all",
"5725 string to rule them all",
"5726 string to rule them all",
"5727 string to rule them all",
"5728 string to rule them all",
"5729 string to rule them all",
"5730 string to rule them all",
"5731 string to rule them all",
"5732 string to rule them all",
"5733 string to rule them all",
"5734 string to rule them all",
"5735 string to rule them all",
"5736 string to rule them all",
"5737 string to rule them all",
"5738 string to rule them all",
"5739 string to rule them all",
"5740 string to rule them all",
"5741 string to rule them all",
"5742 string to rule them all",
"5743 string to rule them all",
"5744 string to rule them all",
"5745 string to rule them all",
"5746 string to rule them all",
"5747 string to rule them all",
"5748 string to rule them all",
"5749 string to rule them all",
"5750 string to rule them all",
"5751 string to rule them all",
"5752 string to rule them all",
"5753 string to rule them all",
"5754 string to rule them all",
"5755 string to rule them all",
"5756 string to rule them all",
"5757 string to rule them all",
"5758 string to rule them all",
"5759 string to rule them all",
"5760 string to rule them all",
"5761 string to rule them all",
"5762 string to rule them all",
"5763 string to rule them all",
"5764 string to rule them all",
"5765 string to rule them all",
"5766 string to rule them all",
"5767 string to rule them all",
"5768 string to rule them all",
"5769 string to rule them all",
"5770 string to rule them all",
"5771 string to rule them all",
"5772 string to rule them all",
"5773 string to rule them all",
"5774 string to rule them all",
"5775 string to rule them all",
"5776 string to rule them all",
"5777 string to rule them all",
"5778 string to rule them all",
"5779 string to rule them all",
"5780 string to rule them all",
"5781 string to rule them all",
"5782 string to rule them all",
"5783 string to rule them all",
"5784 string to rule them all",
"5785 string to rule them all",
"5786 string to rule them all",
"5787 string to rule them all",
"5788 string to rule them all",
"5789 string to rule them all",
"5790 string to rule them all",
"5791 string to rule them all",
"5792 string to rule them all",
"5793 string to rule them all",
"5794 string to rule them all",
"5795 string to rule them all",
"5796 string to rule them all",
"5797 string to rule them all",
"5798 string to rule them all",
"5799 string to rule them all",
"5800 string to rule them all",
"5801 string to rule them all",
"5802 string to rule them all",
"5803 string to rule them all",
"5804 string to rule them all",
"5805 string to rule them all",
"5806 string to rule them all",
"5807 string to rule them all",
"5808 string to rule them all",
"5809 string to rule them all",
"5810 string to rule them all",
"5811 string to rule them all",
"5812 string to rule them all",
"5813 string to rule them all",
"5814 string to rule them all",
"5815 string to rule them all",
"5816 string to rule them all",
"5817 string to rule them all",
"5818 string to rule them all",
"5819 string to rule them all",
"5820 string to rule them all",
"5821 string to rule them all",
"5822 string to rule them all",
"5823 string to rule them all",
"5824 string to rule them all",
"5825 string to rule them all",
"5826 string to rule them all",
"5827 string to rule them all",
"5828 string to rule them all",
"5829 string to rule them all",
"5830 string to rule them all",
"5831 string to rule them all",
"5832 string to rule them all",
"5833 string to rule them all",
"5834 string to rule them all",
"5835 string to rule them all",
"5836 string to rule them all",
"5837 string to rule them all",
"5838 string to rule them all",
"5839 string to rule them all",
"5840 string to rule them all",
"5841 string to rule them all",
"5842 string to rule them all",
"5843 string to rule them all",
"5844 string to rule them all",
"5845 string to rule them all",
"5846 string to rule them all",
"5847 string to rule them all",
"5848 string to rule them all",
"5849 string to rule them all",
"5850 string to rule them all",
"5851 string to rule them all",
"5852 string to rule them all",
"5853 string to rule them all",
"5854 string to rule them all",
"5855 string to rule them all",
"5856 string to rule them all",
"5857 string to rule them all",
"5858 string to rule them all",
"5859 string to rule them all",
"5860 string to rule them all",
"5861 string to rule them all",
"5862 string to rule them all",
"5863 string to rule them all",
"5864 string to rule them all",
"5865 string to rule them all",
"5866 string to rule them all",
"5867 string to rule them all",
"5868 string to rule them all",
"5869 string to rule them all",
"5870 string to rule them all",
"5871 string to rule them all",
"5872 string to rule them all",
"5873 string to rule them all",
"5874 string to rule them all",
"5875 string to rule them all",
"5876 string to rule them all",
"5877 string to rule them all",
"5878 string to rule them all",
"5879 string to rule them all",
"5880 string to rule them all",
"5881 string to rule them all",
"5882 string to rule them all",
"5883 string to rule them all",
"5884 string to rule them all",
"5885 string to rule them all",
"5886 string to rule them all",
"5887 string to rule them all",
"5888 string to rule them all",
"5889 string to rule them all",
"5890 string to rule them all",
"5891 string to rule them all",
"5892 string to rule them all",
"5893 string to rule them all",
"5894 string to rule them all",
"5895 string to rule them all",
"5896 string to rule them all",
"5897 string to rule them all",
"5898 string to rule them all",
"5899 string to rule them all",
"5900 string to rule them all",
"5901 string to rule them all",
"5902 string to rule them all",
"5903 string to rule them all",
"5904 string to rule them all",
"5905 string to rule them all",
"5906 string to rule them all",
"5907 string to rule them all",
"5908 string to rule them all",
"5909 string to rule them all",
"5910 string to rule them all",
"5911 string to rule them all",
"5912 string to rule them all",
"5913 string to rule them all",
"5914 string to rule them all",
"5915 string to rule them all",
"5916 string to rule them all",
"5917 string to rule them all",
"5918 string to rule them all",
"5919 string to rule them all",
"5920 string to rule them all",
"5921 string to rule them all",
"5922 string to rule them all",
"5923 string to rule them all",
"5924 string to rule them all",
"5925 string to rule them all",
"5926 string to rule them all",
"5927 string to rule them all",
"5928 string to rule them all",
"5929 string to rule them all",
"5930 string to rule them all",
"5931 string to rule them all",
"5932 string to rule them all",
"5933 string to rule them all",
"5934 string to rule them all",
"5935 string to rule them all",
"5936 string to rule them all",
"5937 string to rule them all",
"5938 string to rule them all",
"5939 string to rule them all",
"5940 string to rule them all",
"5941 string to rule them all",
"5942 string to rule them all",
"5943 string to rule them all",
"5944 string to rule them all",
"5945 string to rule them all",
"5946 string to rule them all",
"5947 string to rule them all",
"5948 string to rule them all",
"5949 string to rule them all",
"5950 string to rule them all",
"5951 string to rule them all",
"5952 string to rule them all",
"5953 string to rule them all",
"5954 string to rule them all",
"5955 string to rule them all",
"5956 string to rule them all",
"5957 string to rule them all",
"5958 string to rule them all",
"5959 string to rule them all",
"5960 string to rule them all",
"5961 string to rule them all",
"5962 string to rule them all",
"5963 string to rule them all",
"5964 string to rule them all",
"5965 string to rule them all",
"5966 string to rule them all",
"5967 string to rule them all",
"5968 string to rule them all",
"5969 string to rule them all",
"5970 string to rule them all",
"5971 string to rule them all",
"5972 string to rule them all",
"5973 string to rule them all",
"5974 string to rule them all",
"5975 string to rule them all",
"5976 string to rule them all",
"5977 string to rule them all",
"5978 string to rule them all",
"5979 string to rule them all",
"5980 string to rule them all",
"5981 string to rule them all",
"5982 string to rule them all",
"5983 string to rule them all",
"5984 string to rule them all",
"5985 string to rule them all",
"5986 string to rule them all",
"5987 string to rule them all",
"5988 string to rule them all",
"5989 string to rule them all",
"5990 string to rule them all",
"5991 string to rule them all",
"5992 string to rule them all",
"5993 string to rule them all",
"5994 string to rule them all",
"5995 string to rule them all",
"5996 string to rule them all",
"5997 string to rule them all",
"5998 string to rule them all",
"5999 string to rule them all",
"6000 string to rule them all",
"6001 string to rule them all",
"6002 string to rule them all",
"6003 string to rule them all",
"6004 string to rule them all",
"6005 string to rule them all",
"6006 string to rule them all",
"6007 string to rule them all",
"6008 string to rule them all",
"6009 string to rule them all",
"6010 string to rule them all",
"6011 string to rule them all",
"6012 string to rule them all",
"6013 string to rule them all",
"6014 string to rule them all",
"6015 string to rule them all",
"6016 string to rule them all",
"6017 string to rule them all",
"6018 string to rule them all",
"6019 string to rule them all",
"6020 string to rule them all",
"6021 string to rule them all",
"6022 string to rule them all",
"6023 string to rule them all",
"6024 string to rule them all",
"6025 string to rule them all",
"6026 string to rule them all",
"6027 string to rule them all",
"6028 string to rule them all",
"6029 string to rule them all",
"6030 string to rule them all",
"6031 string to rule them all",
"6032 string to rule them all",
"6033 string to rule them all",
"6034 string to rule them all",
"6035 string to rule them all",
"6036 string to rule them all",
"6037 string to rule them all",
"6038 string to rule them all",
"6039 string to rule them all",
"6040 string to rule them all",
"6041 string to rule them all",
"6042 string to rule them all",
"6043 string to rule them all",
"6044 string to rule them all",
"6045 string to rule them all",
"6046 string to rule them all",
"6047 string to rule them all",
"6048 string to rule them all",
"6049 string to rule them all",
"6050 string to rule them all",
"6051 string to rule them all",
"6052 string to rule them all",
"6053 string to rule them all",
"6054 string to rule them all",
"6055 string to rule them all",
"6056 string to rule them all",
"6057 string to rule them all",
"6058 string to rule them all",
"6059 string to rule them all",
"6060 string to rule them all",
"6061 string to rule them all",
"6062 string to rule them all",
"6063 string to rule them all",
"6064 string to rule them all",
"6065 string to rule them all",
"6066 string to rule them all",
"6067 string to rule them all",
"6068 string to rule them all",
"6069 string to rule them all",
"6070 string to rule them all",
"6071 string to rule them all",
"6072 string to rule them all",
"6073 string to rule them all",
"6074 string to rule them all",
"6075 string to rule them all",
"6076 string to rule them all",
"6077 string to rule them all",
"6078 string to rule them all",
"6079 string to rule them all",
"6080 string to rule them all",
"6081 string to rule them all",
"6082 string to rule them all",
"6083 string to rule them all",
"6084 string to rule them all",
"6085 string to rule them all",
"6086 string to rule them all",
"6087 string to rule them all",
"6088 string to rule them all",
"6089 string to rule them all",
"6090 string to rule them all",
"6091 string to rule them all",
"6092 string to rule them all",
"6093 string to rule them all",
"6094 string to rule them all",
"6095 string to rule them all",
"6096 string to rule them all",
"6097 string to rule them all",
"6098 string to rule them all",
"6099 string to rule them all",
"6100 string to rule them all",
"6101 string to rule them all",
"6102 string to rule them all",
"6103 string to rule them all",
"6104 string to rule them all",
"6105 string to rule them all",
"6106 string to rule them all",
"6107 string to rule them all",
"6108 string to rule them all",
"6109 string to rule them all",
"6110 string to rule them all",
"6111 string to rule them all",
"6112 string to rule them all",
"6113 string to rule them all",
"6114 string to rule them all",
"6115 string to rule them all",
"6116 string to rule them all",
"6117 string to rule them all",
"6118 string to rule them all",
"6119 string to rule them all",
"6120 string to rule them all",
"6121 string to rule them all",
"6122 string to rule them all",
"6123 string to rule them all",
"6124 string to rule them all",
"6125 string to rule them all",
"6126 string to rule them all",
"6127 string to rule them all",
"6128 string to rule them all",
"6129 string to rule them all",
"6130 string to rule them all",
"6131 string to rule them all",
"6132 string to rule them all",
"6133 string to rule them all",
"6134 string to rule them all",
"6135 string to rule them all",
"6136 string to rule them all",
"6137 string to rule them all",
"6138 string to rule them all",
"6139 string to rule them all",
"6140 string to rule them all",
"6141 string to rule them all",
"6142 string to rule them all",
"6143 string to rule them all",
"6144 string to rule them all",
"6145 string to rule them all",
"6146 string to rule them all",
"6147 string to rule them all",
"6148 string to rule them all",
"6149 string to rule them all",
"6150 string to rule them all",
"6151 string to rule them all",
"6152 string to rule them all",
"6153 string to rule them all",
"6154 string to rule them all",
"6155 string to rule them all",
"6156 string to rule them all",
"6157 string to rule them all",
"6158 string to rule them all",
"6159 string to rule them all",
"6160 string to rule them all",
"6161 string to rule them all",
"6162 string to rule them all",
"6163 string to rule them all",
"6164 string to rule them all",
"6165 string to rule them all",
"6166 string to rule them all",
"6167 string to rule them all",
"6168 string to rule them all",
"6169 string to rule them all",
"6170 string to rule them all",
"6171 string to rule them all",
"6172 string to rule them all",
"6173 string to rule them all",
"6174 string to rule them all",
"6175 string to rule them all",
"6176 string to rule them all",
"6177 string to rule them all",
"6178 string to rule them all",
"6179 string to rule them all",
"6180 string to rule them all",
"6181 string to rule them all",
"6182 string to rule them all",
"6183 string to rule them all",
"6184 string to rule them all",
"6185 string to rule them all",
"6186 string to rule them all",
"6187 string to rule them all",
"6188 string to rule them all",
"6189 string to rule them all",
"6190 string to rule them all",
"6191 string to rule them all",
"6192 string to rule them all",
"6193 string to rule them all",
"6194 string to rule them all",
"6195 string to rule them all",
"6196 string to rule them all",
"6197 string to rule them all",
"6198 string to rule them all",
"6199 string to rule them all",
"6200 string to rule them all",
"6201 string to rule them all",
"6202 string to rule them all",
"6203 string to rule them all",
"6204 string to rule them all",
"6205 string to rule them all",
"6206 string to rule them all",
"6207 string to rule them all",
"6208 string to rule them all",
"6209 string to rule them all",
"6210 string to rule them all",
"6211 string to rule them all",
"6212 string to rule them all",
"6213 string to rule them all",
"6214 string to rule them all",
"6215 string to rule them all",
"6216 string to rule them all",
"6217 string to rule them all",
"6218 string to rule them all",
"6219 string to rule them all",
"6220 string to rule them all",
"6221 string to rule them all",
"6222 string to rule them all",
"6223 string to rule them all",
"6224 string to rule them all",
"6225 string to rule them all",
"6226 string to rule them all",
"6227 string to rule them all",
"6228 string to rule them all",
"6229 string to rule them all",
"6230 string to rule them all",
"6231 string to rule them all",
"6232 string to rule them all",
"6233 string to rule them all",
"6234 string to rule them all",
"6235 string to rule them all",
"6236 string to rule them all",
"6237 string to rule them all",
"6238 string to rule them all",
"6239 string to rule them all",
"6240 string to rule them all",
"6241 string to rule them all",
"6242 string to rule them all",
"6243 string to rule them all",
"6244 string to rule them all",
"6245 string to rule them all",
"6246 string to rule them all",
"6247 string to rule them all",
"6248 string to rule them all",
"6249 string to rule them all",
"6250 string to rule them all",
"6251 string to rule them all",
"6252 string to rule them all",
"6253 string to rule them all",
"6254 string to rule them all",
"6255 string to rule them all",
"6256 string to rule them all",
"6257 string to rule them all",
"6258 string to rule them all",
"6259 string to rule them all",
"6260 string to rule them all",
"6261 string to rule them all",
"6262 string to rule them all",
"6263 string to rule them all",
"6264 string to rule them all",
"6265 string to rule them all",
"6266 string to rule them all",
"6267 string to rule them all",
"6268 string to rule them all",
"6269 string to rule them all",
"6270 string to rule them all",
"6271 string to rule them all",
"6272 string to rule them all",
"6273 string to rule them all",
"6274 string to rule them all",
"6275 string to rule them all",
"6276 string to rule them all",
"6277 string to rule them all",
"6278 string to rule them all",
"6279 string to rule them all",
"6280 string to rule them all",
"6281 string to rule them all",
"6282 string to rule them all",
"6283 string to rule them all",
"6284 string to rule them all",
"6285 string to rule them all",
"6286 string to rule them all",
"6287 string to rule them all",
"6288 string to rule them all",
"6289 string to rule them all",
"6290 string to rule them all",
"6291 string to rule them all",
"6292 string to rule them all",
"6293 string to rule them all",
"6294 string to rule them all",
"6295 string to rule them all",
"6296 string to rule them all",
"6297 string to rule them all",
"6298 string to rule them all",
"6299 string to rule them all",
"6300 string to rule them all",
"6301 string to rule them all",
"6302 string to rule them all",
"6303 string to rule them all",
"6304 string to rule them all",
"6305 string to rule them all",
"6306 string to rule them all",
"6307 string to rule them all",
"6308 string to rule them all",
"6309 string to rule them all",
"6310 string to rule them all",
"6311 string to rule them all",
"6312 string to rule them all",
"6313 string to rule them all",
"6314 string to rule them all",
"6315 string to rule them all",
"6316 string to rule them all",
"6317 string to rule them all",
"6318 string to rule them all",
"6319 string to rule them all",
"6320 string to rule them all",
"6321 string to rule them all",
"6322 string to rule them all",
"6323 string to rule them all",
"6324 string to rule them all",
"6325 string to rule them all",
"6326 string to rule them all",
"6327 string to rule them all",
"6328 string to rule them all",
"6329 string to rule them all",
"6330 string to rule them all",
"6331 string to rule them all",
"6332 string to rule them all",
"6333 string to rule them all",
"6334 string to rule them all",
"6335 string to rule them all",
"6336 string to rule them all",
"6337 string to rule them all",
"6338 string to rule them all",
"6339 string to rule them all",
"6340 string to rule them all",
"6341 string to rule them all",
"6342 string to rule them all",
"6343 string to rule them all",
"6344 string to rule them all",
"6345 string to rule them all",
"6346 string to rule them all",
"6347 string to rule them all",
"6348 string to rule them all",
"6349 string to rule them all",
"6350 string to rule them all",
"6351 string to rule them all",
"6352 string to rule them all",
"6353 string to rule them all",
"6354 string to rule them all",
"6355 string to rule them all",
"6356 string to rule them all",
"6357 string to rule them all",
"6358 string to rule them all",
"6359 string to rule them all",
"6360 string to rule them all",
"6361 string to rule them all",
"6362 string to rule them all",
"6363 string to rule them all",
"6364 string to rule them all",
"6365 string to rule them all",
"6366 string to rule them all",
"6367 string to rule them all",
"6368 string to rule them all",
"6369 string to rule them all",
"6370 string to rule them all",
"6371 string to rule them all",
"6372 string to rule them all",
"6373 string to rule them all",
"6374 string to rule them all",
"6375 string to rule them all",
"6376 string to rule them all",
"6377 string to rule them all",
"6378 string to rule them all",
"6379 string to rule them all",
"6380 string to rule them all",
"6381 string to rule them all",
"6382 string to rule them all",
"6383 string to rule them all",
"6384 string to rule them all",
"6385 string to rule them all",
"6386 string to rule them all",
"6387 string to rule them all",
"6388 string to rule them all",
"6389 string to rule them all",
"6390 string to rule them all",
"6391 string to rule them all",
"6392 string to rule them all",
"6393 string to rule them all",
"6394 string to rule them all",
"6395 string to rule them all",
"6396 string to rule them all",
"6397 string to rule them all",
"6398 string to rule them all",
"6399 string to rule them all",
"6400 string to rule them all",
"6401 string to rule them all",
"6402 string to rule them all",
"6403 string to rule them all",
"6404 string to rule them all",
"6405 string to rule them all",
"6406 string to rule them all",
"6407 string to rule them all",
"6408 string to rule them all",
"6409 string to rule them all",
"6410 string to rule them all",
"6411 string to rule them all",
"6412 string to rule them all",
"6413 string to rule them all",
"6414 string to rule them all",
"6415 string to rule them all",
"6416 string to rule them all",
"6417 string to rule them all",
"6418 string to rule them all",
"6419 string to rule them all",
"6420 string to rule them all",
"6421 string to rule them all",
"6422 string to rule them all",
"6423 string to rule them all",
"6424 string to rule them all",
"6425 string to rule them all",
"6426 string to rule them all",
"6427 string to rule them all",
"6428 string to rule them all",
"6429 string to rule them all",
"6430 string to rule them all",
"6431 string to rule them all",
"6432 string to rule them all",
"6433 string to rule them all",
"6434 string to rule them all",
"6435 string to rule them all",
"6436 string to rule them all",
"6437 string to rule them all",
"6438 string to rule them all",
"6439 string to rule them all",
"6440 string to rule them all",
"6441 string to rule them all",
"6442 string to rule them all",
"6443 string to rule them all",
"6444 string to rule them all",
"6445 string to rule them all",
"6446 string to rule them all",
"6447 string to rule them all",
"6448 string to rule them all",
"6449 string to rule them all",
"6450 string to rule them all",
"6451 string to rule them all",
"6452 string to rule them all",
"6453 string to rule them all",
"6454 string to rule them all",
"6455 string to rule them all",
"6456 string to rule them all",
"6457 string to rule them all",
"6458 string to rule them all",
"6459 string to rule them all",
"6460 string to rule them all",
"6461 string to rule them all",
"6462 string to rule them all",
"6463 string to rule them all",
"6464 string to rule them all",
"6465 string to rule them all",
"6466 string to rule them all",
"6467 string to rule them all",
"6468 string to rule them all",
"6469 string to rule them all",
"6470 string to rule them all",
"6471 string to rule them all",
"6472 string to rule them all",
"6473 string to rule them all",
"6474 string to rule them all",
"6475 string to rule them all",
"6476 string to rule them all",
"6477 string to rule them all",
"6478 string to rule them all",
"6479 string to rule them all",
"6480 string to rule them all",
"6481 string to rule them all",
"6482 string to rule them all",
"6483 string to rule them all",
"6484 string to rule them all",
"6485 string to rule them all",
"6486 string to rule them all",
"6487 string to rule them all",
"6488 string to rule them all",
"6489 string to rule them all",
"6490 string to rule them all",
"6491 string to rule them all",
"6492 string to rule them all",
"6493 string to rule them all",
"6494 string to rule them all",
"6495 string to rule them all",
"6496 string to rule them all",
"6497 string to rule them all",
"6498 string to rule them all",
"6499 string to rule them all",
"6500 string to rule them all",
"6501 string to rule them all",
"6502 string to rule them all",
"6503 string to rule them all",
"6504 string to rule them all",
"6505 string to rule them all",
"6506 string to rule them all",
"6507 string to rule them all",
"6508 string to rule them all",
"6509 string to rule them all",
"6510 string to rule them all",
"6511 string to rule them all",
"6512 string to rule them all",
"6513 string to rule them all",
"6514 string to rule them all",
"6515 string to rule them all",
"6516 string to rule them all",
"6517 string to rule them all",
"6518 string to rule them all",
"6519 string to rule them all",
"6520 string to rule them all",
"6521 string to rule them all",
"6522 string to rule them all",
"6523 string to rule them all",
"6524 string to rule them all",
"6525 string to rule them all",
"6526 string to rule them all",
"6527 string to rule them all",
"6528 string to rule them all",
"6529 string to rule them all",
"6530 string to rule them all",
"6531 string to rule them all",
"6532 string to rule them all",
"6533 string to rule them all",
"6534 string to rule them all",
"6535 string to rule them all",
"6536 string to rule them all",
"6537 string to rule them all",
"6538 string to rule them all",
"6539 string to rule them all",
"6540 string to rule them all",
"6541 string to rule them all",
"6542 string to rule them all",
"6543 string to rule them all",
"6544 string to rule them all",
"6545 string to rule them all",
"6546 string to rule them all",
"6547 string to rule them all",
"6548 string to rule them all",
"6549 string to rule them all",
"6550 string to rule them all",
"6551 string to rule them all",
"6552 string to rule them all",
"6553 string to rule them all",
"6554 string to rule them all",
"6555 string to rule them all",
"6556 string to rule them all",
"6557 string to rule them all",
"6558 string to rule them all",
"6559 string to rule them all",
"6560 string to rule them all",
"6561 string to rule them all",
"6562 string to rule them all",
"6563 string to rule them all",
"6564 string to rule them all",
"6565 string to rule them all",
"6566 string to rule them all",
"6567 string to rule them all",
"6568 string to rule them all",
"6569 string to rule them all",
"6570 string to rule them all",
"6571 string to rule them all",
"6572 string to rule them all",
"6573 string to rule them all",
"6574 string to rule them all",
"6575 string to rule them all",
"6576 string to rule them all",
"6577 string to rule them all",
"6578 string to rule them all",
"6579 string to rule them all",
"6580 string to rule them all",
"6581 string to rule them all",
"6582 string to rule them all",
"6583 string to rule them all",
"6584 string to rule them all",
"6585 string to rule them all",
"6586 string to rule them all",
"6587 string to rule them all",
"6588 string to rule them all",
"6589 string to rule them all",
"6590 string to rule them all",
"6591 string to rule them all",
"6592 string to rule them all",
"6593 string to rule them all",
"6594 string to rule them all",
"6595 string to rule them all",
"6596 string to rule them all",
"6597 string to rule them all",
"6598 string to rule them all",
"6599 string to rule them all",
"6600 string to rule them all",
"6601 string to rule them all",
"6602 string to rule them all",
"6603 string to rule them all",
"6604 string to rule them all",
"6605 string to rule them all",
"6606 string to rule them all",
"6607 string to rule them all",
"6608 string to rule them all",
"6609 string to rule them all",
"6610 string to rule them all",
"6611 string to rule them all",
"6612 string to rule them all",
"6613 string to rule them all",
"6614 string to rule them all",
"6615 string to rule them all",
"6616 string to rule them all",
"6617 string to rule them all",
"6618 string to rule them all",
"6619 string to rule them all",
"6620 string to rule them all",
"6621 string to rule them all",
"6622 string to rule them all",
"6623 string to rule them all",
"6624 string to rule them all",
"6625 string to rule them all",
"6626 string to rule them all",
"6627 string to rule them all",
"6628 string to rule them all",
"6629 string to rule them all",
"6630 string to rule them all",
"6631 string to rule them all",
"6632 string to rule them all",
"6633 string to rule them all",
"6634 string to rule them all",
"6635 string to rule them all",
"6636 string to rule them all",
"6637 string to rule them all",
"6638 string to rule them all",
"6639 string to rule them all",
"6640 string to rule them all",
"6641 string to rule them all",
"6642 string to rule them all",
"6643 string to rule them all",
"6644 string to rule them all",
"6645 string to rule them all",
"6646 string to rule them all",
"6647 string to rule them all",
"6648 string to rule them all",
"6649 string to rule them all",
"6650 string to rule them all",
"6651 string to rule them all",
"6652 string to rule them all",
"6653 string to rule them all",
"6654 string to rule them all",
"6655 string to rule them all",
"6656 string to rule them all",
"6657 string to rule them all",
"6658 string to rule them all",
"6659 string to rule them all",
"6660 string to rule them all",
"6661 string to rule them all",
"6662 string to rule them all",
"6663 string to rule them all",
"6664 string to rule them all",
"6665 string to rule them all",
"6666 string to rule them all",
"6667 string to rule them all",
"6668 string to rule them all",
"6669 string to rule them all",
"6670 string to rule them all",
"6671 string to rule them all",
"6672 string to rule them all",
"6673 string to rule them all",
"6674 string to rule them all",
"6675 string to rule them all",
"6676 string to rule them all",
"6677 string to rule them all",
"6678 string to rule them all",
"6679 string to rule them all",
"6680 string to rule them all",
"6681 string to rule them all",
"6682 string to rule them all",
"6683 string to rule them all",
"6684 string to rule them all",
"6685 string to rule them all",
"6686 string to rule them all",
"6687 string to rule them all",
"6688 string to rule them all",
"6689 string to rule them all",
"6690 string to rule them all",
"6691 string to rule them all",
"6692 string to rule them all",
"6693 string to rule them all",
"6694 string to rule them all",
"6695 string to rule them all",
"6696 string to rule them all",
"6697 string to rule them all",
"6698 string to rule them all",
"6699 string to rule them all",
"6700 string to rule them all",
"6701 string to rule them all",
"6702 string to rule them all",
"6703 string to rule them all",
"6704 string to rule them all",
"6705 string to rule them all",
"6706 string to rule them all",
"6707 string to rule them all",
"6708 string to rule them all",
"6709 string to rule them all",
"6710 string to rule them all",
"6711 string to rule them all",
"6712 string to rule them all",
"6713 string to rule them all",
"6714 string to rule them all",
"6715 string to rule them all",
"6716 string to rule them all",
"6717 string to rule them all",
"6718 string to rule them all",
"6719 string to rule them all",
"6720 string to rule them all",
"6721 string to rule them all",
"6722 string to rule them all",
"6723 string to rule them all",
"6724 string to rule them all",
"6725 string to rule them all",
"6726 string to rule them all",
"6727 string to rule them all",
"6728 string to rule them all",
"6729 string to rule them all",
"6730 string to rule them all",
"6731 string to rule them all",
"6732 string to rule them all",
"6733 string to rule them all",
"6734 string to rule them all",
"6735 string to rule them all",
"6736 string to rule them all",
"6737 string to rule them all",
"6738 string to rule them all",
"6739 string to rule them all",
"6740 string to rule them all",
"6741 string to rule them all",
"6742 string to rule them all",
"6743 string to rule them all",
"6744 string to rule them all",
"6745 string to rule them all",
"6746 string to rule them all",
"6747 string to rule them all",
"6748 string to rule them all",
"6749 string to rule them all",
"6750 string to rule them all",
"6751 string to rule them all",
"6752 string to rule them all",
"6753 string to rule them all",
"6754 string to rule them all",
"6755 string to rule them all",
"6756 string to rule them all",
"6757 string to rule them all",
"6758 string to rule them all",
"6759 string to rule them all",
"6760 string to rule them all",
"6761 string to rule them all",
"6762 string to rule them all",
"6763 string to rule them all",
"6764 string to rule them all",
"6765 string to rule them all",
"6766 string to rule them all",
"6767 string to rule them all",
"6768 string to rule them all",
"6769 string to rule them all",
"6770 string to rule them all",
"6771 string to rule them all",
"6772 string to rule them all",
"6773 string to rule them all",
"6774 string to rule them all",
"6775 string to rule them all",
"6776 string to rule them all",
"6777 string to rule them all",
"6778 string to rule them all",
"6779 string to rule them all",
"6780 string to rule them all",
"6781 string to rule them all",
"6782 string to rule them all",
"6783 string to rule them all",
"6784 string to rule them all",
"6785 string to rule them all",
"6786 string to rule them all",
"6787 string to rule them all",
"6788 string to rule them all",
"6789 string to rule them all",
"6790 string to rule them all",
"6791 string to rule them all",
"6792 string to rule them all",
"6793 string to rule them all",
"6794 string to rule them all",
"6795 string to rule them all",
"6796 string to rule them all",
"6797 string to rule them all",
"6798 string to rule them all",
"6799 string to rule them all",
"6800 string to rule them all",
"6801 string to rule them all",
"6802 string to rule them all",
"6803 string to rule them all",
"6804 string to rule them all",
"6805 string to rule them all",
"6806 string to rule them all",
"6807 string to rule them all",
"6808 string to rule them all",
"6809 string to rule them all",
"6810 string to rule them all",
"6811 string to rule them all",
"6812 string to rule them all",
"6813 string to rule them all",
"6814 string to rule them all",
"6815 string to rule them all",
"6816 string to rule them all",
"6817 string to rule them all",
"6818 string to rule them all",
"6819 string to rule them all",
"6820 string to rule them all",
"6821 string to rule them all",
"6822 string to rule them all",
"6823 string to rule them all",
"6824 string to rule them all",
"6825 string to rule them all",
"6826 string to rule them all",
"6827 string to rule them all",
"6828 string to rule them all",
"6829 string to rule them all",
"6830 string to rule them all",
"6831 string to rule them all",
"6832 string to rule them all",
"6833 string to rule them all",
"6834 string to rule them all",
"6835 string to rule them all",
"6836 string to rule them all",
"6837 string to rule them all",
"6838 string to rule them all",
"6839 string to rule them all",
"6840 string to rule them all",
"6841 string to rule them all",
"6842 string to rule them all",
"6843 string to rule them all",
"6844 string to rule them all",
"6845 string to rule them all",
"6846 string to rule them all",
"6847 string to rule them all",
"6848 string to rule them all",
"6849 string to rule them all",
"6850 string to rule them all",
"6851 string to rule them all",
"6852 string to rule them all",
"6853 string to rule them all",
"6854 string to rule them all",
"6855 string to rule them all",
"6856 string to rule them all",
"6857 string to rule them all",
"6858 string to rule them all",
"6859 string to rule them all",
"6860 string to rule them all",
"6861 string to rule them all",
"6862 string to rule them all",
"6863 string to rule them all",
"6864 string to rule them all",
"6865 string to rule them all",
"6866 string to rule them all",
"6867 string to rule them all",
"6868 string to rule them all",
"6869 string to rule them all",
"6870 string to rule them all",
"6871 string to rule them all",
"6872 string to rule them all",
"6873 string to rule them all",
"6874 string to rule them all",
"6875 string to rule them all",
"6876 string to rule them all",
"6877 string to rule them all",
"6878 string to rule them all",
"6879 string to rule them all",
"6880 string to rule them all",
"6881 string to rule them all",
"6882 string to rule them all",
"6883 string to rule them all",
"6884 string to rule them all",
"6885 string to rule them all",
"6886 string to rule them all",
"6887 string to rule them all",
"6888 string to rule them all",
"6889 string to rule them all",
"6890 string to rule them all",
"6891 string to rule them all",
"6892 string to rule them all",
"6893 string to rule them all",
"6894 string to rule them all",
"6895 string to rule them all",
"6896 string to rule them all",
"6897 string to rule them all",
"6898 string to rule them all",
"6899 string to rule them all",
"6900 string to rule them all",
"6901 string to rule them all",
"6902 string to rule them all",
"6903 string to rule them all",
"6904 string to rule them all",
"6905 string to rule them all",
"6906 string to rule them all",
"6907 string to rule them all",
"6908 string to rule them all",
"6909 string to rule them all",
"6910 string to rule them all",
"6911 string to rule them all",
"6912 string to rule them all",
"6913 string to rule them all",
"6914 string to rule them all",
"6915 string to rule them all",
"6916 string to rule them all",
"6917 string to rule them all",
"6918 string to rule them all",
"6919 string to rule them all",
"6920 string to rule them all",
"6921 string to rule them all",
"6922 string to rule them all",
"6923 string to rule them all",
"6924 string to rule them all",
"6925 string to rule them all",
"6926 string to rule them all",
"6927 string to rule them all",
"6928 string to rule them all",
"6929 string to rule them all",
"6930 string to rule them all",
"6931 string to rule them all",
"6932 string to rule them all",
"6933 string to rule them all",
"6934 string to rule them all",
"6935 string to rule them all",
"6936 string to rule them all",
"6937 string to rule them all",
"6938 string to rule them all",
"6939 string to rule them all",
"6940 string to rule them all",
"6941 string to rule them all",
"6942 string to rule them all",
"6943 string to rule them all",
"6944 string to rule them all",
"6945 string to rule them all",
"6946 string to rule them all",
"6947 string to rule them all",
"6948 string to rule them all",
"6949 string to rule them all",
"6950 string to rule them all",
"6951 string to rule them all",
"6952 string to rule them all",
"6953 string to rule them all",
"6954 string to rule them all",
"6955 string to rule them all",
"6956 string to rule them all",
"6957 string to rule them all",
"6958 string to rule them all",
"6959 string to rule them all",
"6960 string to rule them all",
"6961 string to rule them all",
"6962 string to rule them all",
"6963 string to rule them all",
"6964 string to rule them all",
"6965 string to rule them all",
"6966 string to rule them all",
"6967 string to rule them all",
"6968 string to rule them all",
"6969 string to rule them all",
"6970 string to rule them all",
"6971 string to rule them all",
"6972 string to rule them all",
"6973 string to rule them all",
"6974 string to rule them all",
"6975 string to rule them all",
"6976 string to rule them all",
"6977 string to rule them all",
"6978 string to rule them all",
"6979 string to rule them all",
"6980 string to rule them all",
"6981 string to rule them all",
"6982 string to rule them all",
"6983 string to rule them all",
"6984 string to rule them all",
"6985 string to rule them all",
"6986 string to rule them all",
"6987 string to rule them all",
"6988 string to rule them all",
"6989 string to rule them all",
"6990 string to rule them all",
"6991 string to rule them all",
"6992 string to rule them all",
"6993 string to rule them all",
"6994 string to rule them all",
"6995 string to rule them all",
"6996 string to rule them all",
"6997 string to rule them all",
"6998 string to rule them all",
"6999 string to rule them all",
"7000 string to rule them all",
"7001 string to rule them all",
"7002 string to rule them all",
"7003 string to rule them all",
"7004 string to rule them all",
"7005 string to rule them all",
"7006 string to rule them all",
"7007 string to rule them all",
"7008 string to rule them all",
"7009 string to rule them all",
"7010 string to rule them all",
"7011 string to rule them all",
"7012 string to rule them all",
"7013 string to rule them all",
"7014 string to rule them all",
"7015 string to rule them all",
"7016 string to rule them all",
"7017 string to rule them all",
"7018 string to rule them all",
"7019 string to rule them all",
"7020 string to rule them all",
"7021 string to rule them all",
"7022 string to rule them all",
"7023 string to rule them all",
"7024 string to rule them all",
"7025 string to rule them all",
"7026 string to rule them all",
"7027 string to rule them all",
"7028 string to rule them all",
"7029 string to rule them all",
"7030 string to rule them all",
"7031 string to rule them all",
"7032 string to rule them all",
"7033 string to rule them all",
"7034 string to rule them all",
"7035 string to rule them all",
"7036 string to rule them all",
"7037 string to rule them all",
"7038 string to rule them all",
"7039 string to rule them all",
"7040 string to rule them all",
"7041 string to rule them all",
"7042 string to rule them all",
"7043 string to rule them all",
"7044 string to rule them all",
"7045 string to rule them all",
"7046 string to rule them all",
"7047 string to rule them all",
"7048 string to rule them all",
"7049 string to rule them all",
"7050 string to rule them all",
"7051 string to rule them all",
"7052 string to rule them all",
"7053 string to rule them all",
"7054 string to rule them all",
"7055 string to rule them all",
"7056 string to rule them all",
"7057 string to rule them all",
"7058 string to rule them all",
"7059 string to rule them all",
"7060 string to rule them all",
"7061 string to rule them all",
"7062 string to rule them all",
"7063 string to rule them all",
"7064 string to rule them all",
"7065 string to rule them all",
"7066 string to rule them all",
"7067 string to rule them all",
"7068 string to rule them all",
"7069 string to rule them all",
"7070 string to rule them all",
"7071 string to rule them all",
"7072 string to rule them all",
"7073 string to rule them all",
"7074 string to rule them all",
"7075 string to rule them all",
"7076 string to rule them all",
"7077 string to rule them all",
"7078 string to rule them all",
"7079 string to rule them all",
"7080 string to rule them all",
"7081 string to rule them all",
"7082 string to rule them all",
"7083 string to rule them all",
"7084 string to rule them all",
"7085 string to rule them all",
"7086 string to rule them all",
"7087 string to rule them all",
"7088 string to rule them all",
"7089 string to rule them all",
"7090 string to rule them all",
"7091 string to rule them all",
"7092 string to rule them all",
"7093 string to rule them all",
"7094 string to rule them all",
"7095 string to rule them all",
"7096 string to rule them all",
"7097 string to rule them all",
"7098 string to rule them all",
"7099 string to rule them all",
"7100 string to rule them all",
"7101 string to rule them all",
"7102 string to rule them all",
"7103 string to rule them all",
"7104 string to rule them all",
"7105 string to rule them all",
"7106 string to rule them all",
"7107 string to rule them all",
"7108 string to rule them all",
"7109 string to rule them all",
"7110 string to rule them all",
"7111 string to rule them all",
"7112 string to rule them all",
"7113 string to rule them all",
"7114 string to rule them all",
"7115 string to rule them all",
"7116 string to rule them all",
"7117 string to rule them all",
"7118 string to rule them all",
"7119 string to rule them all",
"7120 string to rule them all",
"7121 string to rule them all",
"7122 string to rule them all",
"7123 string to rule them all",
"7124 string to rule them all",
"7125 string to rule them all",
"7126 string to rule them all",
"7127 string to rule them all",
"7128 string to rule them all",
"7129 string to rule them all",
"7130 string to rule them all",
"7131 string to rule them all",
"7132 string to rule them all",
"7133 string to rule them all",
"7134 string to rule them all",
"7135 string to rule them all",
"7136 string to rule them all",
"7137 string to rule them all",
"7138 string to rule them all",
"7139 string to rule them all",
"7140 string to rule them all",
"7141 string to rule them all",
"7142 string to rule them all",
"7143 string to rule them all",
"7144 string to rule them all",
"7145 string to rule them all",
"7146 string to rule them all",
"7147 string to rule them all",
"7148 string to rule them all",
"7149 string to rule them all",
"7150 string to rule them all",
"7151 string to rule them all",
"7152 string to rule them all",
"7153 string to rule them all",
"7154 string to rule them all",
"7155 string to rule them all",
"7156 string to rule them all",
"7157 string to rule them all",
"7158 string to rule them all",
"7159 string to rule them all",
"7160 string to rule them all",
"7161 string to rule them all",
"7162 string to rule them all",
"7163 string to rule them all",
"7164 string to rule them all",
"7165 string to rule them all",
"7166 string to rule them all",
"7167 string to rule them all",
"7168 string to rule them all",
"7169 string to rule them all",
"7170 string to rule them all",
"7171 string to rule them all",
"7172 string to rule them all",
"7173 string to rule them all",
"7174 string to rule them all",
"7175 string to rule them all",
"7176 string to rule them all",
"7177 string to rule them all",
"7178 string to rule them all",
"7179 string to rule them all",
"7180 string to rule them all",
"7181 string to rule them all",
"7182 string to rule them all",
"7183 string to rule them all",
"7184 string to rule them all",
"7185 string to rule them all",
"7186 string to rule them all",
"7187 string to rule them all",
"7188 string to rule them all",
"7189 string to rule them all",
"7190 string to rule them all",
"7191 string to rule them all",
"7192 string to rule them all",
"7193 string to rule them all",
"7194 string to rule them all",
"7195 string to rule them all",
"7196 string to rule them all",
"7197 string to rule them all",
"7198 string to rule them all",
"7199 string to rule them all",
"7200 string to rule them all",
"7201 string to rule them all",
"7202 string to rule them all",
"7203 string to rule them all",
"7204 string to rule them all",
"7205 string to rule them all",
"7206 string to rule them all",
"7207 string to rule them all",
"7208 string to rule them all",
"7209 string to rule them all",
"7210 string to rule them all",
"7211 string to rule them all",
"7212 string to rule them all",
"7213 string to rule them all",
"7214 string to rule them all",
"7215 string to rule them all",
"7216 string to rule them all",
"7217 string to rule them all",
"7218 string to rule them all",
"7219 string to rule them all",
"7220 string to rule them all",
"7221 string to rule them all",
"7222 string to rule them all",
"7223 string to rule them all",
"7224 string to rule them all",
"7225 string to rule them all",
"7226 string to rule them all",
"7227 string to rule them all",
"7228 string to rule them all",
"7229 string to rule them all",
"7230 string to rule them all",
"7231 string to rule them all",
"7232 string to rule them all",
"7233 string to rule them all",
"7234 string to rule them all",
"7235 string to rule them all",
"7236 string to rule them all",
"7237 string to rule them all",
"7238 string to rule them all",
"7239 string to rule them all",
"7240 string to rule them all",
"7241 string to rule them all",
"7242 string to rule them all",
"7243 string to rule them all",
"7244 string to rule them all",
"7245 string to rule them all",
"7246 string to rule them all",
"7247 string to rule them all",
"7248 string to rule them all",
"7249 string to rule them all",
"7250 string to rule them all",
"7251 string to rule them all",
"7252 string to rule them all",
"7253 string to rule them all",
"7254 string to rule them all",
"7255 string to rule them all",
"7256 string to rule them all",
"7257 string to rule them all",
"7258 string to rule them all",
"7259 string to rule them all",
"7260 string to rule them all",
"7261 string to rule them all",
"7262 string to rule them all",
"7263 string to rule them all",
"7264 string to rule them all",
"7265 string to rule them all",
"7266 string to rule them all",
"7267 string to rule them all",
"7268 string to rule them all",
"7269 string to rule them all",
"7270 string to rule them all",
"7271 string to rule them all",
"7272 string to rule them all",
"7273 string to rule them all",
"7274 string to rule them all",
"7275 string to rule them all",
"7276 string to rule them all",
"7277 string to rule them all",
"7278 string to rule them all",
"7279 string to rule them all",
"7280 string to rule them all",
"7281 string to rule them all",
"7282 string to rule them all",
"7283 string to rule them all",
"7284 string to rule them all",
"7285 string to rule them all",
"7286 string to rule them all",
"7287 string to rule them all",
"7288 string to rule them all",
"7289 string to rule them all",
"7290 string to rule them all",
"7291 string to rule them all",
"7292 string to rule them all",
"7293 string to rule them all",
"7294 string to rule them all",
"7295 string to rule them all",
"7296 string to rule them all",
"7297 string to rule them all",
"7298 string to rule them all",
"7299 string to rule them all",
"7300 string to rule them all",
"7301 string to rule them all",
"7302 string to rule them all",
"7303 string to rule them all",
"7304 string to rule them all",
"7305 string to rule them all",
"7306 string to rule them all",
"7307 string to rule them all",
"7308 string to rule them all",
"7309 string to rule them all",
"7310 string to rule them all",
"7311 string to rule them all",
"7312 string to rule them all",
"7313 string to rule them all",
"7314 string to rule them all",
"7315 string to rule them all",
"7316 string to rule them all",
"7317 string to rule them all",
"7318 string to rule them all",
"7319 string to rule them all",
"7320 string to rule them all",
"7321 string to rule them all",
"7322 string to rule them all",
"7323 string to rule them all",
"7324 string to rule them all",
"7325 string to rule them all",
"7326 string to rule them all",
"7327 string to rule them all",
"7328 string to rule them all",
"7329 string to rule them all",
"7330 string to rule them all",
"7331 string to rule them all",
"7332 string to rule them all",
"7333 string to rule them all",
"7334 string to rule them all",
"7335 string to rule them all",
"7336 string to rule them all",
"7337 string to rule them all",
"7338 string to rule them all",
"7339 string to rule them all",
"7340 string to rule them all",
"7341 string to rule them all",
"7342 string to rule them all",
"7343 string to rule them all",
"7344 string to rule them all",
"7345 string to rule them all",
"7346 string to rule them all",
"7347 string to rule them all",
"7348 string to rule them all",
"7349 string to rule them all",
"7350 string to rule them all",
"7351 string to rule them all",
"7352 string to rule them all",
"7353 string to rule them all",
"7354 string to rule them all",
"7355 string to rule them all",
"7356 string to rule them all",
"7357 string to rule them all",
"7358 string to rule them all",
"7359 string to rule them all",
"7360 string to rule them all",
"7361 string to rule them all",
"7362 string to rule them all",
"7363 string to rule them all",
"7364 string to rule them all",
"7365 string to rule them all",
"7366 string to rule them all",
"7367 string to rule them all",
"7368 string to rule them all",
"7369 string to rule them all",
"7370 string to rule them all",
"7371 string to rule them all",
"7372 string to rule them all",
"7373 string to rule them all",
"7374 string to rule them all",
"7375 string to rule them all",
"7376 string to rule them all",
"7377 string to rule them all",
"7378 string to rule them all",
"7379 string to rule them all",
"7380 string to rule them all",
"7381 string to rule them all",
"7382 string to rule them all",
"7383 string to rule them all",
"7384 string to rule them all",
"7385 string to rule them all",
"7386 string to rule them all",
"7387 string to rule them all",
"7388 string to rule them all",
"7389 string to rule them all",
"7390 string to rule them all",
"7391 string to rule them all",
"7392 string to rule them all",
"7393 string to rule them all",
"7394 string to rule them all",
"7395 string to rule them all",
"7396 string to rule them all",
"7397 string to rule them all",
"7398 string to rule them all",
"7399 string to rule them all",
"7400 string to rule them all",
"7401 string to rule them all",
"7402 string to rule them all",
"7403 string to rule them all",
"7404 string to rule them all",
"7405 string to rule them all",
"7406 string to rule them all",
"7407 string to rule them all",
"7408 string to rule them all",
"7409 string to rule them all",
"7410 string to rule them all",
"7411 string to rule them all",
"7412 string to rule them all",
"7413 string to rule them all",
"7414 string to rule them all",
"7415 string to rule them all",
"7416 string to rule them all",
"7417 string to rule them all",
"7418 string to rule them all",
"7419 string to rule them all",
"7420 string to rule them all",
"7421 string to rule them all",
"7422 string to rule them all",
"7423 string to rule them all",
"7424 string to rule them all",
"7425 string to rule them all",
"7426 string to rule them all",
"7427 string to rule them all",
"7428 string to rule them all",
"7429 string to rule them all",
"7430 string to rule them all",
"7431 string to rule them all",
"7432 string to rule them all",
"7433 string to rule them all",
"7434 string to rule them all",
"7435 string to rule them all",
"7436 string to rule them all",
"7437 string to rule them all",
"7438 string to rule them all",
"7439 string to rule them all",
"7440 string to rule them all",
"7441 string to rule them all",
"7442 string to rule them all",
"7443 string to rule them all",
"7444 string to rule them all",
"7445 string to rule them all",
"7446 string to rule them all",
"7447 string to rule them all",
"7448 string to rule them all",
"7449 string to rule them all",
"7450 string to rule them all",
"7451 string to rule them all",
"7452 string to rule them all",
"7453 string to rule them all",
"7454 string to rule them all",
"7455 string to rule them all",
"7456 string to rule them all",
"7457 string to rule them all",
"7458 string to rule them all",
"7459 string to rule them all",
"7460 string to rule them all",
"7461 string to rule them all",
"7462 string to rule them all",
"7463 string to rule them all",
"7464 string to rule them all",
"7465 string to rule them all",
"7466 string to rule them all",
"7467 string to rule them all",
"7468 string to rule them all",
"7469 string to rule them all",
"7470 string to rule them all",
"7471 string to rule them all",
"7472 string to rule them all",
"7473 string to rule them all",
"7474 string to rule them all",
"7475 string to rule them all",
"7476 string to rule them all",
"7477 string to rule them all",
"7478 string to rule them all",
"7479 string to rule them all",
"7480 string to rule them all",
"7481 string to rule them all",
"7482 string to rule them all",
"7483 string to rule them all",
"7484 string to rule them all",
"7485 string to rule them all",
"7486 string to rule them all",
"7487 string to rule them all",
"7488 string to rule them all",
"7489 string to rule them all",
"7490 string to rule them all",
"7491 string to rule them all",
"7492 string to rule them all",
"7493 string to rule them all",
"7494 string to rule them all",
"7495 string to rule them all",
"7496 string to rule them all",
"7497 string to rule them all",
"7498 string to rule them all",
"7499 string to rule them all",
"7500 string to rule them all",
"7501 string to rule them all",
"7502 string to rule them all",
"7503 string to rule them all",
"7504 string to rule them all",
"7505 string to rule them all",
"7506 string to rule them all",
"7507 string to rule them all",
"7508 string to rule them all",
"7509 string to rule them all",
"7510 string to rule them all",
"7511 string to rule them all",
"7512 string to rule them all",
"7513 string to rule them all",
"7514 string to rule them all",
"7515 string to rule them all",
"7516 string to rule them all",
"7517 string to rule them all",
"7518 string to rule them all",
"7519 string to rule them all",
"7520 string to rule them all",
"7521 string to rule them all",
"7522 string to rule them all",
"7523 string to rule them all",
"7524 string to rule them all",
"7525 string to rule them all",
"7526 string to rule them all",
"7527 string to rule them all",
"7528 string to rule them all",
"7529 string to rule them all",
"7530 string to rule them all",
"7531 string to rule them all",
"7532 string to rule them all",
"7533 string to rule them all",
"7534 string to rule them all",
"7535 string to rule them all",
"7536 string to rule them all",
"7537 string to rule them all",
"7538 string to rule them all",
"7539 string to rule them all",
"7540 string to rule them all",
"7541 string to rule them all",
"7542 string to rule them all",
"7543 string to rule them all",
"7544 string to rule them all",
"7545 string to rule them all",
"7546 string to rule them all",
"7547 string to rule them all",
"7548 string to rule them all",
"7549 string to rule them all",
"7550 string to rule them all",
"7551 string to rule them all",
"7552 string to rule them all",
"7553 string to rule them all",
"7554 string to rule them all",
"7555 string to rule them all",
"7556 string to rule them all",
"7557 string to rule them all",
"7558 string to rule them all",
"7559 string to rule them all",
"7560 string to rule them all",
"7561 string to rule them all",
"7562 string to rule them all",
"7563 string to rule them all",
"7564 string to rule them all",
"7565 string to rule them all",
"7566 string to rule them all",
"7567 string to rule them all",
"7568 string to rule them all",
"7569 string to rule them all",
"7570 string to rule them all",
"7571 string to rule them all",
"7572 string to rule them all",
"7573 string to rule them all",
"7574 string to rule them all",
"7575 string to rule them all",
"7576 string to rule them all",
"7577 string to rule them all",
"7578 string to rule them all",
"7579 string to rule them all",
"7580 string to rule them all",
"7581 string to rule them all",
"7582 string to rule them all",
"7583 string to rule them all",
"7584 string to rule them all",
"7585 string to rule them all",
"7586 string to rule them all",
"7587 string to rule them all",
"7588 string to rule them all",
"7589 string to rule them all",
"7590 string to rule them all",
"7591 string to rule them all",
"7592 string to rule them all",
"7593 string to rule them all",
"7594 string to rule them all",
"7595 string to rule them all",
"7596 string to rule them all",
"7597 string to rule them all",
"7598 string to rule them all",
"7599 string to rule them all",
"7600 string to rule them all",
"7601 string to rule them all",
"7602 string to rule them all",
"7603 string to rule them all",
"7604 string to rule them all",
"7605 string to rule them all",
"7606 string to rule them all",
"7607 string to rule them all",
"7608 string to rule them all",
"7609 string to rule them all",
"7610 string to rule them all",
"7611 string to rule them all",
"7612 string to rule them all",
"7613 string to rule them all",
"7614 string to rule them all",
"7615 string to rule them all",
"7616 string to rule them all",
"7617 string to rule them all",
"7618 string to rule them all",
"7619 string to rule them all",
"7620 string to rule them all",
"7621 string to rule them all",
"7622 string to rule them all",
"7623 string to rule them all",
"7624 string to rule them all",
"7625 string to rule them all",
"7626 string to rule them all",
"7627 string to rule them all",
"7628 string to rule them all",
"7629 string to rule them all",
"7630 string to rule them all",
"7631 string to rule them all",
"7632 string to rule them all",
"7633 string to rule them all",
"7634 string to rule them all",
"7635 string to rule them all",
"7636 string to rule them all",
"7637 string to rule them all",
"7638 string to rule them all",
"7639 string to rule them all",
"7640 string to rule them all",
"7641 string to rule them all",
"7642 string to rule them all",
"7643 string to rule them all",
"7644 string to rule them all",
"7645 string to rule them all",
"7646 string to rule them all",
"7647 string to rule them all",
"7648 string to rule them all",
"7649 string to rule them all",
"7650 string to rule them all",
"7651 string to rule them all",
"7652 string to rule them all",
"7653 string to rule them all",
"7654 string to rule them all",
"7655 string to rule them all",
"7656 string to rule them all",
"7657 string to rule them all",
"7658 string to rule them all",
"7659 string to rule them all",
"7660 string to rule them all",
"7661 string to rule them all",
"7662 string to rule them all",
"7663 string to rule them all",
"7664 string to rule them all",
"7665 string to rule them all",
"7666 string to rule them all",
"7667 string to rule them all",
"7668 string to rule them all",
"7669 string to rule them all",
"7670 string to rule them all",
"7671 string to rule them all",
"7672 string to rule them all",
"7673 string to rule them all",
"7674 string to rule them all",
"7675 string to rule them all",
"7676 string to rule them all",
"7677 string to rule them all",
"7678 string to rule them all",
"7679 string to rule them all",
"7680 string to rule them all",
"7681 string to rule them all",
"7682 string to rule them all",
"7683 string to rule them all",
"7684 string to rule them all",
"7685 string to rule them all",
"7686 string to rule them all",
"7687 string to rule them all",
"7688 string to rule them all",
"7689 string to rule them all",
"7690 string to rule them all",
"7691 string to rule them all",
"7692 string to rule them all",
"7693 string to rule them all",
"7694 string to rule them all",
"7695 string to rule them all",
"7696 string to rule them all",
"7697 string to rule them all",
"7698 string to rule them all",
"7699 string to rule them all",
"7700 string to rule them all",
"7701 string to rule them all",
"7702 string to rule them all",
"7703 string to rule them all",
"7704 string to rule them all",
"7705 string to rule them all",
"7706 string to rule them all",
"7707 string to rule them all",
"7708 string to rule them all",
"7709 string to rule them all",
"7710 string to rule them all",
"7711 string to rule them all",
"7712 string to rule them all",
"7713 string to rule them all",
"7714 string to rule them all",
"7715 string to rule them all",
"7716 string to rule them all",
"7717 string to rule them all",
"7718 string to rule them all",
"7719 string to rule them all",
"7720 string to rule them all",
"7721 string to rule them all",
"7722 string to rule them all",
"7723 string to rule them all",
"7724 string to rule them all",
"7725 string to rule them all",
"7726 string to rule them all",
"7727 string to rule them all",
"7728 string to rule them all",
"7729 string to rule them all",
"7730 string to rule them all",
"7731 string to rule them all",
"7732 string to rule them all",
"7733 string to rule them all",
"7734 string to rule them all",
"7735 string to rule them all",
"7736 string to rule them all",
"7737 string to rule them all",
"7738 string to rule them all",
"7739 string to rule them all",
"7740 string to rule them all",
"7741 string to rule them all",
"7742 string to rule them all",
"7743 string to rule them all",
"7744 string to rule them all",
"7745 string to rule them all",
"7746 string to rule them all",
"7747 string to rule them all",
"7748 string to rule them all",
"7749 string to rule them all",
"7750 string to rule them all",
"7751 string to rule them all",
"7752 string to rule them all",
"7753 string to rule them all",
"7754 string to rule them all",
"7755 string to rule them all",
"7756 string to rule them all",
"7757 string to rule them all",
"7758 string to rule them all",
"7759 string to rule them all",
"7760 string to rule them all",
"7761 string to rule them all",
"7762 string to rule them all",
"7763 string to rule them all",
"7764 string to rule them all",
"7765 string to rule them all",
"7766 string to rule them all",
"7767 string to rule them all",
"7768 string to rule them all",
"7769 string to rule them all",
"7770 string to rule them all",
"7771 string to rule them all",
"7772 string to rule them all",
"7773 string to rule them all",
"7774 string to rule them all",
"7775 string to rule them all",
"7776 string to rule them all",
"7777 string to rule them all",
"7778 string to rule them all",
"7779 string to rule them all",
"7780 string to rule them all",
"7781 string to rule them all",
"7782 string to rule them all",
"7783 string to rule them all",
"7784 string to rule them all",
"7785 string to rule them all",
"7786 string to rule them all",
"7787 string to rule them all",
"7788 string to rule them all",
"7789 string to rule them all",
"7790 string to rule them all",
"7791 string to rule them all",
"7792 string to rule them all",
"7793 string to rule them all",
"7794 string to rule them all",
"7795 string to rule them all",
"7796 string to rule them all",
"7797 string to rule them all",
"7798 string to rule them all",
"7799 string to rule them all",
"7800 string to rule them all",
"7801 string to rule them all",
"7802 string to rule them all",
"7803 string to rule them all",
"7804 string to rule them all",
"7805 string to rule them all",
"7806 string to rule them all",
"7807 string to rule them all",
"7808 string to rule them all",
"7809 string to rule them all",
"7810 string to rule them all",
"7811 string to rule them all",
"7812 string to rule them all",
"7813 string to rule them all",
"7814 string to rule them all",
"7815 string to rule them all",
"7816 string to rule them all",
"7817 string to rule them all",
"7818 string to rule them all",
"7819 string to rule them all",
"7820 string to rule them all",
"7821 string to rule them all",
"7822 string to rule them all",
"7823 string to rule them all",
"7824 string to rule them all",
"7825 string to rule them all",
"7826 string to rule them all",
"7827 string to rule them all",
"7828 string to rule them all",
"7829 string to rule them all",
"7830 string to rule them all",
"7831 string to rule them all",
"7832 string to rule them all",
"7833 string to rule them all",
"7834 string to rule them all",
"7835 string to rule them all",
"7836 string to rule them all",
"7837 string to rule them all",
"7838 string to rule them all",
"7839 string to rule them all",
"7840 string to rule them all",
"7841 string to rule them all",
"7842 string to rule them all",
"7843 string to rule them all",
"7844 string to rule them all",
"7845 string to rule them all",
"7846 string to rule them all",
"7847 string to rule them all",
"7848 string to rule them all",
"7849 string to rule them all",
"7850 string to rule them all",
"7851 string to rule them all",
"7852 string to rule them all",
"7853 string to rule them all",
"7854 string to rule them all",
"7855 string to rule them all",
"7856 string to rule them all",
"7857 string to rule them all",
"7858 string to rule them all",
"7859 string to rule them all",
"7860 string to rule them all",
"7861 string to rule them all",
"7862 string to rule them all",
"7863 string to rule them all",
"7864 string to rule them all",
"7865 string to rule them all",
"7866 string to rule them all",
"7867 string to rule them all",
"7868 string to rule them all",
"7869 string to rule them all",
"7870 string to rule them all",
"7871 string to rule them all",
"7872 string to rule them all",
"7873 string to rule them all",
"7874 string to rule them all",
"7875 string to rule them all",
"7876 string to rule them all",
"7877 string to rule them all",
"7878 string to rule them all",
"7879 string to rule them all",
"7880 string to rule them all",
"7881 string to rule them all",
"7882 string to rule them all",
"7883 string to rule them all",
"7884 string to rule them all",
"7885 string to rule them all",
"7886 string to rule them all",
"7887 string to rule them all",
"7888 string to rule them all",
"7889 string to rule them all",
"7890 string to rule them all",
"7891 string to rule them all",
"7892 string to rule them all",
"7893 string to rule them all",
"7894 string to rule them all",
"7895 string to rule them all",
"7896 string to rule them all",
"7897 string to rule them all",
"7898 string to rule them all",
"7899 string to rule them all",
"7900 string to rule them all",
"7901 string to rule them all",
"7902 string to rule them all",
"7903 string to rule them all",
"7904 string to rule them all",
"7905 string to rule them all",
"7906 string to rule them all",
"7907 string to rule them all",
"7908 string to rule them all",
"7909 string to rule them all",
"7910 string to rule them all",
"7911 string to rule them all",
"7912 string to rule them all",
"7913 string to rule them all",
"7914 string to rule them all",
"7915 string to rule them all",
"7916 string to rule them all",
"7917 string to rule them all",
"7918 string to rule them all",
"7919 string to rule them all",
"7920 string to rule them all",
"7921 string to rule them all",
"7922 string to rule them all",
"7923 string to rule them all",
"7924 string to rule them all",
"7925 string to rule them all",
"7926 string to rule them all",
"7927 string to rule them all",
"7928 string to rule them all",
"7929 string to rule them all",
"7930 string to rule them all",
"7931 string to rule them all",
"7932 string to rule them all",
"7933 string to rule them all",
"7934 string to rule them all",
"7935 string to rule them all",
"7936 string to rule them all",
"7937 string to rule them all",
"7938 string to rule them all",
"7939 string to rule them all",
"7940 string to rule them all",
"7941 string to rule them all",
"7942 string to rule them all",
"7943 string to rule them all",
"7944 string to rule them all",
"7945 string to rule them all",
"7946 string to rule them all",
"7947 string to rule them all",
"7948 string to rule them all",
"7949 string to rule them all",
"7950 string to rule them all",
"7951 string to rule them all",
"7952 string to rule them all",
"7953 string to rule them all",
"7954 string to rule them all",
"7955 string to rule them all",
"7956 string to rule them all",
"7957 string to rule them all",
"7958 string to rule them all",
"7959 string to rule them all",
"7960 string to rule them all",
"7961 string to rule them all",
"7962 string to rule them all",
"7963 string to rule them all",
"7964 string to rule them all",
"7965 string to rule them all",
"7966 string to rule them all",
"7967 string to rule them all",
"7968 string to rule them all",
"7969 string to rule them all",
"7970 string to rule them all",
"7971 string to rule them all",
"7972 string to rule them all",
"7973 string to rule them all",
"7974 string to rule them all",
"7975 string to rule them all",
"7976 string to rule them all",
"7977 string to rule them all",
"7978 string to rule them all",
"7979 string to rule them all",
"7980 string to rule them all",
"7981 string to rule them all",
"7982 string to rule them all",
"7983 string to rule them all",
"7984 string to rule them all",
"7985 string to rule them all",
"7986 string to rule them all",
"7987 string to rule them all",
"7988 string to rule them all",
"7989 string to rule them all",
"7990 string to rule them all",
"7991 string to rule them all",
"7992 string to rule them all",
"7993 string to rule them all",
"7994 string to rule them all",
"7995 string to rule them all",
"7996 string to rule them all",
"7997 string to rule them all",
"7998 string to rule them all",
"7999 string to rule them all",
"8000 string to rule them all",
"8001 string to rule them all",
"8002 string to rule them all",
"8003 string to rule them all",
"8004 string to rule them all",
"8005 string to rule them all",
"8006 string to rule them all",
"8007 string to rule them all",
"8008 string to rule them all",
"8009 string to rule them all",
"8010 string to rule them all",
"8011 string to rule them all",
"8012 string to rule them all",
"8013 string to rule them all",
"8014 string to rule them all",
"8015 string to rule them all",
"8016 string to rule them all",
"8017 string to rule them all",
"8018 string to rule them all",
"8019 string to rule them all",
"8020 string to rule them all",
"8021 string to rule them all",
"8022 string to rule them all",
"8023 string to rule them all",
"8024 string to rule them all",
"8025 string to rule them all",
"8026 string to rule them all",
"8027 string to rule them all",
"8028 string to rule them all",
"8029 string to rule them all",
"8030 string to rule them all",
"8031 string to rule them all",
"8032 string to rule them all",
"8033 string to rule them all",
"8034 string to rule them all",
"8035 string to rule them all",
"8036 string to rule them all",
"8037 string to rule them all",
"8038 string to rule them all",
"8039 string to rule them all",
"8040 string to rule them all",
"8041 string to rule them all",
"8042 string to rule them all",
"8043 string to rule them all",
"8044 string to rule them all",
"8045 string to rule them all",
"8046 string to rule them all",
"8047 string to rule them all",
"8048 string to rule them all",
"8049 string to rule them all",
"8050 string to rule them all",
"8051 string to rule them all",
"8052 string to rule them all",
"8053 string to rule them all",
"8054 string to rule them all",
"8055 string to rule them all",
"8056 string to rule them all",
"8057 string to rule them all",
"8058 string to rule them all",
"8059 string to rule them all",
"8060 string to rule them all",
"8061 string to rule them all",
"8062 string to rule them all",
"8063 string to rule them all",
"8064 string to rule them all",
"8065 string to rule them all",
"8066 string to rule them all",
"8067 string to rule them all",
"8068 string to rule them all",
"8069 string to rule them all",
"8070 string to rule them all",
"8071 string to rule them all",
"8072 string to rule them all",
"8073 string to rule them all",
"8074 string to rule them all",
"8075 string to rule them all",
"8076 string to rule them all",
"8077 string to rule them all",
"8078 string to rule them all",
"8079 string to rule them all",
"8080 string to rule them all",
"8081 string to rule them all",
"8082 string to rule them all",
"8083 string to rule them all",
"8084 string to rule them all",
"8085 string to rule them all",
"8086 string to rule them all",
"8087 string to rule them all",
"8088 string to rule them all",
"8089 string to rule them all",
"8090 string to rule them all",
"8091 string to rule them all",
"8092 string to rule them all",
"8093 string to rule them all",
"8094 string to rule them all",
"8095 string to rule them all",
"8096 string to rule them all",
"8097 string to rule them all",
"8098 string to rule them all",
"8099 string to rule them all",
"8100 string to rule them all",
"8101 string to rule them all",
"8102 string to rule them all",
"8103 string to rule them all",
"8104 string to rule them all",
"8105 string to rule them all",
"8106 string to rule them all",
"8107 string to rule them all",
"8108 string to rule them all",
"8109 string to rule them all",
"8110 string to rule them all",
"8111 string to rule them all",
"8112 string to rule them all",
"8113 string to rule them all",
"8114 string to rule them all",
"8115 string to rule them all",
"8116 string to rule them all",
"8117 string to rule them all",
"8118 string to rule them all",
"8119 string to rule them all",
"8120 string to rule them all",
"8121 string to rule them all",
"8122 string to rule them all",
"8123 string to rule them all",
"8124 string to rule them all",
"8125 string to rule them all",
"8126 string to rule them all",
"8127 string to rule them all",
"8128 string to rule them all",
"8129 string to rule them all",
"8130 string to rule them all",
"8131 string to rule them all",
"8132 string to rule them all",
"8133 string to rule them all",
"8134 string to rule them all",
"8135 string to rule them all",
"8136 string to rule them all",
"8137 string to rule them all",
"8138 string to rule them all",
"8139 string to rule them all",
"8140 string to rule them all",
"8141 string to rule them all",
"8142 string to rule them all",
"8143 string to rule them all",
"8144 string to rule them all",
"8145 string to rule them all",
"8146 string to rule them all",
"8147 string to rule them all",
"8148 string to rule them all",
"8149 string to rule them all",
"8150 string to rule them all",
"8151 string to rule them all",
"8152 string to rule them all",
"8153 string to rule them all",
"8154 string to rule them all",
"8155 string to rule them all",
"8156 string to rule them all",
"8157 string to rule them all",
"8158 string to rule them all",
"8159 string to rule them all",
"8160 string to rule them all",
"8161 string to rule them all",
"8162 string to rule them all",
"8163 string to rule them all",
"8164 string to rule them all",
"8165 string to rule them all",
"8166 string to rule them all",
"8167 string to rule them all",
"8168 string to rule them all",
"8169 string to rule them all",
"8170 string to rule them all",
"8171 string to rule them all",
"8172 string to rule them all",
"8173 string to rule them all",
"8174 string to rule them all",
"8175 string to rule them all",
"8176 string to rule them all",
"8177 string to rule them all",
"8178 string to rule them all",
"8179 string to rule them all",
"8180 string to rule them all",
"8181 string to rule them all",
"8182 string to rule them all",
"8183 string to rule them all",
"8184 string to rule them all",
"8185 string to rule them all",
"8186 string to rule them all",
"8187 string to rule them all",
"8188 string to rule them all",
"8189 string to rule them all",
"8190 string to rule them all",
"8191 string to rule them all",
"8192 string to rule them all",
"8193 string to rule them all",
"8194 string to rule them all",
"8195 string to rule them all",
"8196 string to rule them all",
"8197 string to rule them all",
"8198 string to rule them all",
"8199 string to rule them all",
"8200 string to rule them all",
"8201 string to rule them all",
"8202 string to rule them all",
"8203 string to rule them all",
"8204 string to rule them all",
"8205 string to rule them all",
"8206 string to rule them all",
"8207 string to rule them all",
"8208 string to rule them all",
"8209 string to rule them all",
"8210 string to rule them all",
"8211 string to rule them all",
"8212 string to rule them all",
"8213 string to rule them all",
"8214 string to rule them all",
"8215 string to rule them all",
"8216 string to rule them all",
"8217 string to rule them all",
"8218 string to rule them all",
"8219 string to rule them all",
"8220 string to rule them all",
"8221 string to rule them all",
"8222 string to rule them all",
"8223 string to rule them all",
"8224 string to rule them all",
"8225 string to rule them all",
"8226 string to rule them all",
"8227 string to rule them all",
"8228 string to rule them all",
"8229 string to rule them all",
"8230 string to rule them all",
"8231 string to rule them all",
"8232 string to rule them all",
"8233 string to rule them all",
"8234 string to rule them all",
"8235 string to rule them all",
"8236 string to rule them all",
"8237 string to rule them all",
"8238 string to rule them all",
"8239 string to rule them all",
"8240 string to rule them all",
"8241 string to rule them all",
"8242 string to rule them all",
"8243 string to rule them all",
"8244 string to rule them all",
"8245 string to rule them all",
"8246 string to rule them all",
"8247 string to rule them all",
"8248 string to rule them all",
"8249 string to rule them all",
"8250 string to rule them all",
"8251 string to rule them all",
"8252 string to rule them all",
"8253 string to rule them all",
"8254 string to rule them all",
"8255 string to rule them all",
"8256 string to rule them all",
"8257 string to rule them all",
"8258 string to rule them all",
"8259 string to rule them all",
"8260 string to rule them all",
"8261 string to rule them all",
"8262 string to rule them all",
"8263 string to rule them all",
"8264 string to rule them all",
"8265 string to rule them all",
"8266 string to rule them all",
"8267 string to rule them all",
"8268 string to rule them all",
"8269 string to rule them all",
"8270 string to rule them all",
"8271 string to rule them all",
"8272 string to rule them all",
"8273 string to rule them all",
"8274 string to rule them all",
"8275 string to rule them all",
"8276 string to rule them all",
"8277 string to rule them all",
"8278 string to rule them all",
"8279 string to rule them all",
"8280 string to rule them all",
"8281 string to rule them all",
"8282 string to rule them all",
"8283 string to rule them all",
"8284 string to rule them all",
"8285 string to rule them all",
"8286 string to rule them all",
"8287 string to rule them all",
"8288 string to rule them all",
"8289 string to rule them all",
"8290 string to rule them all",
"8291 string to rule them all",
"8292 string to rule them all",
"8293 string to rule them all",
"8294 string to rule them all",
"8295 string to rule them all",
"8296 string to rule them all",
"8297 string to rule them all",
"8298 string to rule them all",
"8299 string to rule them all",
"8300 string to rule them all",
"8301 string to rule them all",
"8302 string to rule them all",
"8303 string to rule them all",
"8304 string to rule them all",
"8305 string to rule them all",
"8306 string to rule them all",
"8307 string to rule them all",
"8308 string to rule them all",
"8309 string to rule them all",
"8310 string to rule them all",
"8311 string to rule them all",
"8312 string to rule them all",
"8313 string to rule them all",
"8314 string to rule them all",
"8315 string to rule them all",
"8316 string to rule them all",
"8317 string to rule them all",
"8318 string to rule them all",
"8319 string to rule them all",
"8320 string to rule them all",
"8321 string to rule them all",
"8322 string to rule them all",
"8323 string to rule them all",
"8324 string to rule them all",
"8325 string to rule them all",
"8326 string to rule them all",
"8327 string to rule them all",
"8328 string to rule them all",
"8329 string to rule them all",
"8330 string to rule them all",
"8331 string to rule them all",
"8332 string to rule them all",
"8333 string to rule them all",
"8334 string to rule them all",
"8335 string to rule them all",
"8336 string to rule them all",
"8337 string to rule them all",
"8338 string to rule them all",
"8339 string to rule them all",
"8340 string to rule them all",
"8341 string to rule them all",
"8342 string to rule them all",
"8343 string to rule them all",
"8344 string to rule them all",
"8345 string to rule them all",
"8346 string to rule them all",
"8347 string to rule them all",
"8348 string to rule them all",
"8349 string to rule them all",
"8350 string to rule them all",
"8351 string to rule them all",
"8352 string to rule them all",
"8353 string to rule them all",
"8354 string to rule them all",
"8355 string to rule them all",
"8356 string to rule them all",
"8357 string to rule them all",
"8358 string to rule them all",
"8359 string to rule them all",
"8360 string to rule them all",
"8361 string to rule them all",
"8362 string to rule them all",
"8363 string to rule them all",
"8364 string to rule them all",
"8365 string to rule them all",
"8366 string to rule them all",
"8367 string to rule them all",
"8368 string to rule them all",
"8369 string to rule them all",
"8370 string to rule them all",
"8371 string to rule them all",
"8372 string to rule them all",
"8373 string to rule them all",
"8374 string to rule them all",
"8375 string to rule them all",
"8376 string to rule them all",
"8377 string to rule them all",
"8378 string to rule them all",
"8379 string to rule them all",
"8380 string to rule them all",
"8381 string to rule them all",
"8382 string to rule them all",
"8383 string to rule them all",
"8384 string to rule them all",
"8385 string to rule them all",
"8386 string to rule them all",
"8387 string to rule them all",
"8388 string to rule them all",
"8389 string to rule them all",
"8390 string to rule them all",
"8391 string to rule them all",
"8392 string to rule them all",
"8393 string to rule them all",
"8394 string to rule them all",
"8395 string to rule them all",
"8396 string to rule them all",
"8397 string to rule them all",
"8398 string to rule them all",
"8399 string to rule them all",
"8400 string to rule them all",
"8401 string to rule them all",
"8402 string to rule them all",
"8403 string to rule them all",
"8404 string to rule them all",
"8405 string to rule them all",
"8406 string to rule them all",
"8407 string to rule them all",
"8408 string to rule them all",
"8409 string to rule them all",
"8410 string to rule them all",
"8411 string to rule them all",
"8412 string to rule them all",
"8413 string to rule them all",
"8414 string to rule them all",
"8415 string to rule them all",
"8416 string to rule them all",
"8417 string to rule them all",
"8418 string to rule them all",
"8419 string to rule them all",
"8420 string to rule them all",
"8421 string to rule them all",
"8422 string to rule them all",
"8423 string to rule them all",
"8424 string to rule them all",
"8425 string to rule them all",
"8426 string to rule them all",
"8427 string to rule them all",
"8428 string to rule them all",
"8429 string to rule them all",
"8430 string to rule them all",
"8431 string to rule them all",
"8432 string to rule them all",
"8433 string to rule them all",
"8434 string to rule them all",
"8435 string to rule them all",
"8436 string to rule them all",
"8437 string to rule them all",
"8438 string to rule them all",
"8439 string to rule them all",
"8440 string to rule them all",
"8441 string to rule them all",
"8442 string to rule them all",
"8443 string to rule them all",
"8444 string to rule them all",
"8445 string to rule them all",
"8446 string to rule them all",
"8447 string to rule them all",
"8448 string to rule them all",
"8449 string to rule them all",
"8450 string to rule them all",
"8451 string to rule them all",
"8452 string to rule them all",
"8453 string to rule them all",
"8454 string to rule them all",
"8455 string to rule them all",
"8456 string to rule them all",
"8457 string to rule them all",
"8458 string to rule them all",
"8459 string to rule them all",
"8460 string to rule them all",
"8461 string to rule them all",
"8462 string to rule them all",
"8463 string to rule them all",
"8464 string to rule them all",
"8465 string to rule them all",
"8466 string to rule them all",
"8467 string to rule them all",
"8468 string to rule them all",
"8469 string to rule them all",
"8470 string to rule them all",
"8471 string to rule them all",
"8472 string to rule them all",
"8473 string to rule them all",
"8474 string to rule them all",
"8475 string to rule them all",
"8476 string to rule them all",
"8477 string to rule them all",
"8478 string to rule them all",
"8479 string to rule them all",
"8480 string to rule them all",
"8481 string to rule them all",
"8482 string to rule them all",
"8483 string to rule them all",
"8484 string to rule them all",
"8485 string to rule them all",
"8486 string to rule them all",
"8487 string to rule them all",
"8488 string to rule them all",
"8489 string to rule them all",
"8490 string to rule them all",
"8491 string to rule them all",
"8492 string to rule them all",
"8493 string to rule them all",
"8494 string to rule them all",
"8495 string to rule them all",
"8496 string to rule them all",
"8497 string to rule them all",
"8498 string to rule them all",
"8499 string to rule them all",
"8500 string to rule them all",
"8501 string to rule them all",
"8502 string to rule them all",
"8503 string to rule them all",
"8504 string to rule them all",
"8505 string to rule them all",
"8506 string to rule them all",
"8507 string to rule them all",
"8508 string to rule them all",
"8509 string to rule them all",
"8510 string to rule them all",
"8511 string to rule them all",
"8512 string to rule them all",
"8513 string to rule them all",
"8514 string to rule them all",
"8515 string to rule them all",
"8516 string to rule them all",
"8517 string to rule them all",
"8518 string to rule them all",
"8519 string to rule them all",
"8520 string to rule them all",
"8521 string to rule them all",
"8522 string to rule them all",
"8523 string to rule them all",
"8524 string to rule them all",
"8525 string to rule them all",
"8526 string to rule them all",
"8527 string to rule them all",
"8528 string to rule them all",
"8529 string to rule them all",
"8530 string to rule them all",
"8531 string to rule them all",
"8532 string to rule them all",
"8533 string to rule them all",
"8534 string to rule them all",
"8535 string to rule them all",
"8536 string to rule them all",
"8537 string to rule them all",
"8538 string to rule them all",
"8539 string to rule them all",
"8540 string to rule them all",
"8541 string to rule them all",
"8542 string to rule them all",
"8543 string to rule them all",
"8544 string to rule them all",
"8545 string to rule them all",
"8546 string to rule them all",
"8547 string to rule them all",
"8548 string to rule them all",
"8549 string to rule them all",
"8550 string to rule them all",
"8551 string to rule them all",
"8552 string to rule them all",
"8553 string to rule them all",
"8554 string to rule them all",
"8555 string to rule them all",
"8556 string to rule them all",
"8557 string to rule them all",
"8558 string to rule them all",
"8559 string to rule them all",
"8560 string to rule them all",
"8561 string to rule them all",
"8562 string to rule them all",
"8563 string to rule them all",
"8564 string to rule them all",
"8565 string to rule them all",
"8566 string to rule them all",
"8567 string to rule them all",
"8568 string to rule them all",
"8569 string to rule them all",
"8570 string to rule them all",
"8571 string to rule them all",
"8572 string to rule them all",
"8573 string to rule them all",
"8574 string to rule them all",
"8575 string to rule them all",
"8576 string to rule them all",
"8577 string to rule them all",
"8578 string to rule them all",
"8579 string to rule them all",
"8580 string to rule them all",
"8581 string to rule them all",
"8582 string to rule them all",
"8583 string to rule them all",
"8584 string to rule them all",
"8585 string to rule them all",
"8586 string to rule them all",
"8587 string to rule them all",
"8588 string to rule them all",
"8589 string to rule them all",
"8590 string to rule them all",
"8591 string to rule them all",
"8592 string to rule them all",
"8593 string to rule them all",
"8594 string to rule them all",
"8595 string to rule them all",
"8596 string to rule them all",
"8597 string to rule them all",
"8598 string to rule them all",
"8599 string to rule them all",
"8600 string to rule them all",
"8601 string to rule them all",
"8602 string to rule them all",
"8603 string to rule them all",
"8604 string to rule them all",
"8605 string to rule them all",
"8606 string to rule them all",
"8607 string to rule them all",
"8608 string to rule them all",
"8609 string to rule them all",
"8610 string to rule them all",
"8611 string to rule them all",
"8612 string to rule them all",
"8613 string to rule them all",
"8614 string to rule them all",
"8615 string to rule them all",
"8616 string to rule them all",
"8617 string to rule them all",
"8618 string to rule them all",
"8619 string to rule them all",
"8620 string to rule them all",
"8621 string to rule them all",
"8622 string to rule them all",
"8623 string to rule them all",
"8624 string to rule them all",
"8625 string to rule them all",
"8626 string to rule them all",
"8627 string to rule them all",
"8628 string to rule them all",
"8629 string to rule them all",
"8630 string to rule them all",
"8631 string to rule them all",
"8632 string to rule them all",
"8633 string to rule them all",
"8634 string to rule them all",
"8635 string to rule them all",
"8636 string to rule them all",
"8637 string to rule them all",
"8638 string to rule them all",
"8639 string to rule them all",
"8640 string to rule them all",
"8641 string to rule them all",
"8642 string to rule them all",
"8643 string to rule them all",
"8644 string to rule them all",
"8645 string to rule them all",
"8646 string to rule them all",
"8647 string to rule them all",
"8648 string to rule them all",
"8649 string to rule them all",
"8650 string to rule them all",
"8651 string to rule them all",
"8652 string to rule them all",
"8653 string to rule them all",
"8654 string to rule them all",
"8655 string to rule them all",
"8656 string to rule them all",
"8657 string to rule them all",
"8658 string to rule them all",
"8659 string to rule them all",
"8660 string to rule them all",
"8661 string to rule them all",
"8662 string to rule them all",
"8663 string to rule them all",
"8664 string to rule them all",
"8665 string to rule them all",
"8666 string to rule them all",
"8667 string to rule them all",
"8668 string to rule them all",
"8669 string to rule them all",
"8670 string to rule them all",
"8671 string to rule them all",
"8672 string to rule them all",
"8673 string to rule them all",
"8674 string to rule them all",
"8675 string to rule them all",
"8676 string to rule them all",
"8677 string to rule them all",
"8678 string to rule them all",
"8679 string to rule them all",
"8680 string to rule them all",
"8681 string to rule them all",
"8682 string to rule them all",
"8683 string to rule them all",
"8684 string to rule them all",
"8685 string to rule them all",
"8686 string to rule them all",
"8687 string to rule them all",
"8688 string to rule them all",
"8689 string to rule them all",
"8690 string to rule them all",
"8691 string to rule them all",
"8692 string to rule them all",
"8693 string to rule them all",
"8694 string to rule them all",
"8695 string to rule them all",
"8696 string to rule them all",
"8697 string to rule them all",
"8698 string to rule them all",
"8699 string to rule them all",
"8700 string to rule them all",
"8701 string to rule them all",
"8702 string to rule them all",
"8703 string to rule them all",
"8704 string to rule them all",
"8705 string to rule them all",
"8706 string to rule them all",
"8707 string to rule them all",
"8708 string to rule them all",
"8709 string to rule them all",
"8710 string to rule them all",
"8711 string to rule them all",
"8712 string to rule them all",
"8713 string to rule them all",
"8714 string to rule them all",
"8715 string to rule them all",
"8716 string to rule them all",
"8717 string to rule them all",
"8718 string to rule them all",
"8719 string to rule them all",
"8720 string to rule them all",
"8721 string to rule them all",
"8722 string to rule them all",
"8723 string to rule them all",
"8724 string to rule them all",
"8725 string to rule them all",
"8726 string to rule them all",
"8727 string to rule them all",
"8728 string to rule them all",
"8729 string to rule them all",
"8730 string to rule them all",
"8731 string to rule them all",
"8732 string to rule them all",
"8733 string to rule them all",
"8734 string to rule them all",
"8735 string to rule them all",
"8736 string to rule them all",
"8737 string to rule them all",
"8738 string to rule them all",
"8739 string to rule them all",
"8740 string to rule them all",
"8741 string to rule them all",
"8742 string to rule them all",
"8743 string to rule them all",
"8744 string to rule them all",
"8745 string to rule them all",
"8746 string to rule them all",
"8747 string to rule them all",
"8748 string to rule them all",
"8749 string to rule them all",
"8750 string to rule them all",
"8751 string to rule them all",
"8752 string to rule them all",
"8753 string to rule them all",
"8754 string to rule them all",
"8755 string to rule them all",
"8756 string to rule them all",
"8757 string to rule them all",
"8758 string to rule them all",
"8759 string to rule them all",
"8760 string to rule them all",
"8761 string to rule them all",
"8762 string to rule them all",
"8763 string to rule them all",
"8764 string to rule them all",
"8765 string to rule them all",
"8766 string to rule them all",
"8767 string to rule them all",
"8768 string to rule them all",
"8769 string to rule them all",
"8770 string to rule them all",
"8771 string to rule them all",
"8772 string to rule them all",
"8773 string to rule them all",
"8774 string to rule them all",
"8775 string to rule them all",
"8776 string to rule them all",
"8777 string to rule them all",
"8778 string to rule them all",
"8779 string to rule them all",
"8780 string to rule them all",
"8781 string to rule them all",
"8782 string to rule them all",
"8783 string to rule them all",
"8784 string to rule them all",
"8785 string to rule them all",
"8786 string to rule them all",
"8787 string to rule them all",
"8788 string to rule them all",
"8789 string to rule them all",
"8790 string to rule them all",
"8791 string to rule them all",
"8792 string to rule them all",
"8793 string to rule them all",
"8794 string to rule them all",
"8795 string to rule them all",
"8796 string to rule them all",
"8797 string to rule them all",
"8798 string to rule them all",
"8799 string to rule them all",
"8800 string to rule them all",
"8801 string to rule them all",
"8802 string to rule them all",
"8803 string to rule them all",
"8804 string to rule them all",
"8805 string to rule them all",
"8806 string to rule them all",
"8807 string to rule them all",
"8808 string to rule them all",
"8809 string to rule them all",
"8810 string to rule them all",
"8811 string to rule them all",
"8812 string to rule them all",
"8813 string to rule them all",
"8814 string to rule them all",
"8815 string to rule them all",
"8816 string to rule them all",
"8817 string to rule them all",
"8818 string to rule them all",
"8819 string to rule them all",
"8820 string to rule them all",
"8821 string to rule them all",
"8822 string to rule them all",
"8823 string to rule them all",
"8824 string to rule them all",
"8825 string to rule them all",
"8826 string to rule them all",
"8827 string to rule them all",
"8828 string to rule them all",
"8829 string to rule them all",
"8830 string to rule them all",
"8831 string to rule them all",
"8832 string to rule them all",
"8833 string to rule them all",
"8834 string to rule them all",
"8835 string to rule them all",
"8836 string to rule them all",
"8837 string to rule them all",
"8838 string to rule them all",
"8839 string to rule them all",
"8840 string to rule them all",
"8841 string to rule them all",
"8842 string to rule them all",
"8843 string to rule them all",
"8844 string to rule them all",
"8845 string to rule them all",
"8846 string to rule them all",
"8847 string to rule them all",
"8848 string to rule them all",
"8849 string to rule them all",
"8850 string to rule them all",
"8851 string to rule them all",
"8852 string to rule them all",
"8853 string to rule them all",
"8854 string to rule them all",
"8855 string to rule them all",
"8856 string to rule them all",
"8857 string to rule them all",
"8858 string to rule them all",
"8859 string to rule them all",
"8860 string to rule them all",
"8861 string to rule them all",
"8862 string to rule them all",
"8863 string to rule them all",
"8864 string to rule them all",
"8865 string to rule them all",
"8866 string to rule them all",
"8867 string to rule them all",
"8868 string to rule them all",
"8869 string to rule them all",
"8870 string to rule them all",
"8871 string to rule them all",
"8872 string to rule them all",
"8873 string to rule them all",
"8874 string to rule them all",
"8875 string to rule them all",
"8876 string to rule them all",
"8877 string to rule them all",
"8878 string to rule them all",
"8879 string to rule them all",
"8880 string to rule them all",
"8881 string to rule them all",
"8882 string to rule them all",
"8883 string to rule them all",
"8884 string to rule them all",
"8885 string to rule them all",
"8886 string to rule them all",
"8887 string to rule them all",
"8888 string to rule them all",
"8889 string to rule them all",
"8890 string to rule them all",
"8891 string to rule them all",
"8892 string to rule them all",
"8893 string to rule them all",
"8894 string to rule them all",
"8895 string to rule them all",
"8896 string to rule them all",
"8897 string to rule them all",
"8898 string to rule them all",
"8899 string to rule them all",
"8900 string to rule them all",
"8901 string to rule them all",
"8902 string to rule them all",
"8903 string to rule them all",
"8904 string to rule them all",
"8905 string to rule them all",
"8906 string to rule them all",
"8907 string to rule them all",
"8908 string to rule them all",
"8909 string to rule them all",
"8910 string to rule them all",
"8911 string to rule them all",
"8912 string to rule them all",
"8913 string to rule them all",
"8914 string to rule them all",
"8915 string to rule them all",
"8916 string to rule them all",
"8917 string to rule them all",
"8918 string to rule them all",
"8919 string to rule them all",
"8920 string to rule them all",
"8921 string to rule them all",
"8922 string to rule them all",
"8923 string to rule them all",
"8924 string to rule them all",
"8925 string to rule them all",
"8926 string to rule them all",
"8927 string to rule them all",
"8928 string to rule them all",
"8929 string to rule them all",
"8930 string to rule them all",
"8931 string to rule them all",
"8932 string to rule them all",
"8933 string to rule them all",
"8934 string to rule them all",
"8935 string to rule them all",
"8936 string to rule them all",
"8937 string to rule them all",
"8938 string to rule them all",
"8939 string to rule them all",
"8940 string to rule them all",
"8941 string to rule them all",
"8942 string to rule them all",
"8943 string to rule them all",
"8944 string to rule them all",
"8945 string to rule them all",
"8946 string to rule them all",
"8947 string to rule them all",
"8948 string to rule them all",
"8949 string to rule them all",
"8950 string to rule them all",
"8951 string to rule them all",
"8952 string to rule them all",
"8953 string to rule them all",
"8954 string to rule them all",
"8955 string to rule them all",
"8956 string to rule them all",
"8957 string to rule them all",
"8958 string to rule them all",
"8959 string to rule them all",
"8960 string to rule them all",
"8961 string to rule them all",
"8962 string to rule them all",
"8963 string to rule them all",
"8964 string to rule them all",
"8965 string to rule them all",
"8966 string to rule them all",
"8967 string to rule them all",
"8968 string to rule them all",
"8969 string to rule them all",
"8970 string to rule them all",
"8971 string to rule them all",
"8972 string to rule them all",
"8973 string to rule them all",
"8974 string to rule them all",
"8975 string to rule them all",
"8976 string to rule them all",
"8977 string to rule them all",
"8978 string to rule them all",
"8979 string to rule them all",
"8980 string to rule them all",
"8981 string to rule them all",
"8982 string to rule them all",
"8983 string to rule them all",
"8984 string to rule them all",
"8985 string to rule them all",
"8986 string to rule them all",
"8987 string to rule them all",
"8988 string to rule them all",
"8989 string to rule them all",
"8990 string to rule them all",
"8991 string to rule them all",
"8992 string to rule them all",
"8993 string to rule them all",
"8994 string to rule them all",
"8995 string to rule them all",
"8996 string to rule them all",
"8997 string to rule them all",
"8998 string to rule them all",
"8999 string to rule them all",
"9000 string to rule them all",
"9001 string to rule them all",
"9002 string to rule them all",
"9003 string to rule them all",
"9004 string to rule them all",
"9005 string to rule them all",
"9006 string to rule them all",
"9007 string to rule them all",
"9008 string to rule them all",
"9009 string to rule them all",
"9010 string to rule them all",
"9011 string to rule them all",
"9012 string to rule them all",
"9013 string to rule them all",
"9014 string to rule them all",
"9015 string to rule them all",
"9016 string to rule them all",
"9017 string to rule them all",
"9018 string to rule them all",
"9019 string to rule them all",
"9020 string to rule them all",
"9021 string to rule them all",
"9022 string to rule them all",
"9023 string to rule them all",
"9024 string to rule them all",
"9025 string to rule them all",
"9026 string to rule them all",
"9027 string to rule them all",
"9028 string to rule them all",
"9029 string to rule them all",
"9030 string to rule them all",
"9031 string to rule them all",
"9032 string to rule them all",
"9033 string to rule them all",
"9034 string to rule them all",
"9035 string to rule them all",
"9036 string to rule them all",
"9037 string to rule them all",
"9038 string to rule them all",
"9039 string to rule them all",
"9040 string to rule them all",
"9041 string to rule them all",
"9042 string to rule them all",
"9043 string to rule them all",
"9044 string to rule them all",
"9045 string to rule them all",
"9046 string to rule them all",
"9047 string to rule them all",
"9048 string to rule them all",
"9049 string to rule them all",
"9050 string to rule them all",
"9051 string to rule them all",
"9052 string to rule them all",
"9053 string to rule them all",
"9054 string to rule them all",
"9055 string to rule them all",
"9056 string to rule them all",
"9057 string to rule them all",
"9058 string to rule them all",
"9059 string to rule them all",
"9060 string to rule them all",
"9061 string to rule them all",
"9062 string to rule them all",
"9063 string to rule them all",
"9064 string to rule them all",
"9065 string to rule them all",
"9066 string to rule them all",
"9067 string to rule them all",
"9068 string to rule them all",
"9069 string to rule them all",
"9070 string to rule them all",
"9071 string to rule them all",
"9072 string to rule them all",
"9073 string to rule them all",
"9074 string to rule them all",
"9075 string to rule them all",
"9076 string to rule them all",
"9077 string to rule them all",
"9078 string to rule them all",
"9079 string to rule them all",
"9080 string to rule them all",
"9081 string to rule them all",
"9082 string to rule them all",
"9083 string to rule them all",
"9084 string to rule them all",
"9085 string to rule them all",
"9086 string to rule them all",
"9087 string to rule them all",
"9088 string to rule them all",
"9089 string to rule them all",
"9090 string to rule them all",
"9091 string to rule them all",
"9092 string to rule them all",
"9093 string to rule them all",
"9094 string to rule them all",
"9095 string to rule them all",
"9096 string to rule them all",
"9097 string to rule them all",
"9098 string to rule them all",
"9099 string to rule them all",
"9100 string to rule them all",
"9101 string to rule them all",
"9102 string to rule them all",
"9103 string to rule them all",
"9104 string to rule them all",
"9105 string to rule them all",
"9106 string to rule them all",
"9107 string to rule them all",
"9108 string to rule them all",
"9109 string to rule them all",
"9110 string to rule them all",
"9111 string to rule them all",
"9112 string to rule them all",
"9113 string to rule them all",
"9114 string to rule them all",
"9115 string to rule them all",
"9116 string to rule them all",
"9117 string to rule them all",
"9118 string to rule them all",
"9119 string to rule them all",
"9120 string to rule them all",
"9121 string to rule them all",
"9122 string to rule them all",
"9123 string to rule them all",
"9124 string to rule them all",
"9125 string to rule them all",
"9126 string to rule them all",
"9127 string to rule them all",
"9128 string to rule them all",
"9129 string to rule them all",
"9130 string to rule them all",
"9131 string to rule them all",
"9132 string to rule them all",
"9133 string to rule them all",
"9134 string to rule them all",
"9135 string to rule them all",
"9136 string to rule them all",
"9137 string to rule them all",
"9138 string to rule them all",
"9139 string to rule them all",
"9140 string to rule them all",
"9141 string to rule them all",
"9142 string to rule them all",
"9143 string to rule them all",
"9144 string to rule them all",
"9145 string to rule them all",
"9146 string to rule them all",
"9147 string to rule them all",
"9148 string to rule them all",
"9149 string to rule them all",
"9150 string to rule them all",
"9151 string to rule them all",
"9152 string to rule them all",
"9153 string to rule them all",
"9154 string to rule them all",
"9155 string to rule them all",
"9156 string to rule them all",
"9157 string to rule them all",
"9158 string to rule them all",
"9159 string to rule them all",
"9160 string to rule them all",
"9161 string to rule them all",
"9162 string to rule them all",
"9163 string to rule them all",
"9164 string to rule them all",
"9165 string to rule them all",
"9166 string to rule them all",
"9167 string to rule them all",
"9168 string to rule them all",
"9169 string to rule them all",
"9170 string to rule them all",
"9171 string to rule them all",
"9172 string to rule them all",
"9173 string to rule them all",
"9174 string to rule them all",
"9175 string to rule them all",
"9176 string to rule them all",
"9177 string to rule them all",
"9178 string to rule them all",
"9179 string to rule them all",
"9180 string to rule them all",
"9181 string to rule them all",
"9182 string to rule them all",
"9183 string to rule them all",
"9184 string to rule them all",
"9185 string to rule them all",
"9186 string to rule them all",
"9187 string to rule them all",
"9188 string to rule them all",
"9189 string to rule them all",
"9190 string to rule them all",
"9191 string to rule them all",
"9192 string to rule them all",
"9193 string to rule them all",
"9194 string to rule them all",
"9195 string to rule them all",
"9196 string to rule them all",
"9197 string to rule them all",
"9198 string to rule them all",
"9199 string to rule them all",
"9200 string to rule them all",
"9201 string to rule them all",
"9202 string to rule them all",
"9203 string to rule them all",
"9204 string to rule them all",
"9205 string to rule them all",
"9206 string to rule them all",
"9207 string to rule them all",
"9208 string to rule them all",
"9209 string to rule them all",
"9210 string to rule them all",
"9211 string to rule them all",
"9212 string to rule them all",
"9213 string to rule them all",
"9214 string to rule them all",
"9215 string to rule them all",
"9216 string to rule them all",
"9217 string to rule them all",
"9218 string to rule them all",
"9219 string to rule them all",
"9220 string to rule them all",
"9221 string to rule them all",
"9222 string to rule them all",
"9223 string to rule them all",
"9224 string to rule them all",
"9225 string to rule them all",
"9226 string to rule them all",
"9227 string to rule them all",
"9228 string to rule them all",
"9229 string to rule them all",
"9230 string to rule them all",
"9231 string to rule them all",
"9232 string to rule them all",
"9233 string to rule them all",
"9234 string to rule them all",
"9235 string to rule them all",
"9236 string to rule them all",
"9237 string to rule them all",
"9238 string to rule them all",
"9239 string to rule them all",
"9240 string to rule them all",
"9241 string to rule them all",
"9242 string to rule them all",
"9243 string to rule them all",
"9244 string to rule them all",
"9245 string to rule them all",
"9246 string to rule them all",
"9247 string to rule them all",
"9248 string to rule them all",
"9249 string to rule them all",
"9250 string to rule them all",
"9251 string to rule them all",
"9252 string to rule them all",
"9253 string to rule them all",
"9254 string to rule them all",
"9255 string to rule them all",
"9256 string to rule them all",
"9257 string to rule them all",
"9258 string to rule them all",
"9259 string to rule them all",
"9260 string to rule them all",
"9261 string to rule them all",
"9262 string to rule them all",
"9263 string to rule them all",
"9264 string to rule them all",
"9265 string to rule them all",
"9266 string to rule them all",
"9267 string to rule them all",
"9268 string to rule them all",
"9269 string to rule them all",
"9270 string to rule them all",
"9271 string to rule them all",
"9272 string to rule them all",
"9273 string to rule them all",
"9274 string to rule them all",
"9275 string to rule them all",
"9276 string to rule them all",
"9277 string to rule them all",
"9278 string to rule them all",
"9279 string to rule them all",
"9280 string to rule them all",
"9281 string to rule them all",
"9282 string to rule them all",
"9283 string to rule them all",
"9284 string to rule them all",
"9285 string to rule them all",
"9286 string to rule them all",
"9287 string to rule them all",
"9288 string to rule them all",
"9289 string to rule them all",
"9290 string to rule them all",
"9291 string to rule them all",
"9292 string to rule them all",
"9293 string to rule them all",
"9294 string to rule them all",
"9295 string to rule them all",
"9296 string to rule them all",
"9297 string to rule them all",
"9298 string to rule them all",
"9299 string to rule them all",
"9300 string to rule them all",
"9301 string to rule them all",
"9302 string to rule them all",
"9303 string to rule them all",
"9304 string to rule them all",
"9305 string to rule them all",
"9306 string to rule them all",
"9307 string to rule them all",
"9308 string to rule them all",
"9309 string to rule them all",
"9310 string to rule them all",
"9311 string to rule them all",
"9312 string to rule them all",
"9313 string to rule them all",
"9314 string to rule them all",
"9315 string to rule them all",
"9316 string to rule them all",
"9317 string to rule them all",
"9318 string to rule them all",
"9319 string to rule them all",
"9320 string to rule them all",
"9321 string to rule them all",
"9322 string to rule them all",
"9323 string to rule them all",
"9324 string to rule them all",
"9325 string to rule them all",
"9326 string to rule them all",
"9327 string to rule them all",
"9328 string to rule them all",
"9329 string to rule them all",
"9330 string to rule them all",
"9331 string to rule them all",
"9332 string to rule them all",
"9333 string to rule them all",
"9334 string to rule them all",
"9335 string to rule them all",
"9336 string to rule them all",
"9337 string to rule them all",
"9338 string to rule them all",
"9339 string to rule them all",
"9340 string to rule them all",
"9341 string to rule them all",
"9342 string to rule them all",
"9343 string to rule them all",
"9344 string to rule them all",
"9345 string to rule them all",
"9346 string to rule them all",
"9347 string to rule them all",
"9348 string to rule them all",
"9349 string to rule them all",
"9350 string to rule them all",
"9351 string to rule them all",
"9352 string to rule them all",
"9353 string to rule them all",
"9354 string to rule them all",
"9355 string to rule them all",
"9356 string to rule them all",
"9357 string to rule them all",
"9358 string to rule them all",
"9359 string to rule them all",
"9360 string to rule them all",
"9361 string to rule them all",
"9362 string to rule them all",
"9363 string to rule them all",
"9364 string to rule them all",
"9365 string to rule them all",
"9366 string to rule them all",
"9367 string to rule them all",
"9368 string to rule them all",
"9369 string to rule them all",
"9370 string to rule them all",
"9371 string to rule them all",
"9372 string to rule them all",
"9373 string to rule them all",
"9374 string to rule them all",
"9375 string to rule them all",
"9376 string to rule them all",
"9377 string to rule them all",
"9378 string to rule them all",
"9379 string to rule them all",
"9380 string to rule them all",
"9381 string to rule them all",
"9382 string to rule them all",
"9383 string to rule them all",
"9384 string to rule them all",
"9385 string to rule them all",
"9386 string to rule them all",
"9387 string to rule them all",
"9388 string to rule them all",
"9389 string to rule them all",
"9390 string to rule them all",
"9391 string to rule them all",
"9392 string to rule them all",
"9393 string to rule them all",
"9394 string to rule them all",
"9395 string to rule them all",
"9396 string to rule them all",
"9397 string to rule them all",
"9398 string to rule them all",
"9399 string to rule them all",
"9400 string to rule them all",
"9401 string to rule them all",
"9402 string to rule them all",
"9403 string to rule them all",
"9404 string to rule them all",
"9405 string to rule them all",
"9406 string to rule them all",
"9407 string to rule them all",
"9408 string to rule them all",
"9409 string to rule them all",
"9410 string to rule them all",
"9411 string to rule them all",
"9412 string to rule them all",
"9413 string to rule them all",
"9414 string to rule them all",
"9415 string to rule them all",
"9416 string to rule them all",
"9417 string to rule them all",
"9418 string to rule them all",
"9419 string to rule them all",
"9420 string to rule them all",
"9421 string to rule them all",
"9422 string to rule them all",
"9423 string to rule them all",
"9424 string to rule them all",
"9425 string to rule them all",
"9426 string to rule them all",
"9427 string to rule them all",
"9428 string to rule them all",
"9429 string to rule them all",
"9430 string to rule them all",
"9431 string to rule them all",
"9432 string to rule them all",
"9433 string to rule them all",
"9434 string to rule them all",
"9435 string to rule them all",
"9436 string to rule them all",
"9437 string to rule them all",
"9438 string to rule them all",
"9439 string to rule them all",
"9440 string to rule them all",
"9441 string to rule them all",
"9442 string to rule them all",
"9443 string to rule them all",
"9444 string to rule them all",
"9445 string to rule them all",
"9446 string to rule them all",
"9447 string to rule them all",
"9448 string to rule them all",
"9449 string to rule them all",
"9450 string to rule them all",
"9451 string to rule them all",
"9452 string to rule them all",
"9453 string to rule them all",
"9454 string to rule them all",
"9455 string to rule them all",
"9456 string to rule them all",
"9457 string to rule them all",
"9458 string to rule them all",
"9459 string to rule them all",
"9460 string to rule them all",
"9461 string to rule them all",
"9462 string to rule them all",
"9463 string to rule them all",
"9464 string to rule them all",
"9465 string to rule them all",
"9466 string to rule them all",
"9467 string to rule them all",
"9468 string to rule them all",
"9469 string to rule them all",
"9470 string to rule them all",
"9471 string to rule them all",
"9472 string to rule them all",
"9473 string to rule them all",
"9474 string to rule them all",
"9475 string to rule them all",
"9476 string to rule them all",
"9477 string to rule them all",
"9478 string to rule them all",
"9479 string to rule them all",
"9480 string to rule them all",
"9481 string to rule them all",
"9482 string to rule them all",
"9483 string to rule them all",
"9484 string to rule them all",
"9485 string to rule them all",
"9486 string to rule them all",
"9487 string to rule them all",
"9488 string to rule them all",
"9489 string to rule them all",
"9490 string to rule them all",
"9491 string to rule them all",
"9492 string to rule them all",
"9493 string to rule them all",
"9494 string to rule them all",
"9495 string to rule them all",
"9496 string to rule them all",
"9497 string to rule them all",
"9498 string to rule them all",
"9499 string to rule them all",
"9500 string to rule them all",
"9501 string to rule them all",
"9502 string to rule them all",
"9503 string to rule them all",
"9504 string to rule them all",
"9505 string to rule them all",
"9506 string to rule them all",
"9507 string to rule them all",
"9508 string to rule them all",
"9509 string to rule them all",
"9510 string to rule them all",
"9511 string to rule them all",
"9512 string to rule them all",
"9513 string to rule them all",
"9514 string to rule them all",
"9515 string to rule them all",
"9516 string to rule them all",
"9517 string to rule them all",
"9518 string to rule them all",
"9519 string to rule them all",
"9520 string to rule them all",
"9521 string to rule them all",
"9522 string to rule them all",
"9523 string to rule them all",
"9524 string to rule them all",
"9525 string to rule them all",
"9526 string to rule them all",
"9527 string to rule them all",
"9528 string to rule them all",
"9529 string to rule them all",
"9530 string to rule them all",
"9531 string to rule them all",
"9532 string to rule them all",
"9533 string to rule them all",
"9534 string to rule them all",
"9535 string to rule them all",
"9536 string to rule them all",
"9537 string to rule them all",
"9538 string to rule them all",
"9539 string to rule them all",
"9540 string to rule them all",
"9541 string to rule them all",
"9542 string to rule them all",
"9543 string to rule them all",
"9544 string to rule them all",
"9545 string to rule them all",
"9546 string to rule them all",
"9547 string to rule them all",
"9548 string to rule them all",
"9549 string to rule them all",
"9550 string to rule them all",
"9551 string to rule them all",
"9552 string to rule them all",
"9553 string to rule them all",
"9554 string to rule them all",
"9555 string to rule them all",
"9556 string to rule them all",
"9557 string to rule them all",
"9558 string to rule them all",
"9559 string to rule them all",
"9560 string to rule them all",
"9561 string to rule them all",
"9562 string to rule them all",
"9563 string to rule them all",
"9564 string to rule them all",
"9565 string to rule them all",
"9566 string to rule them all",
"9567 string to rule them all",
"9568 string to rule them all",
"9569 string to rule them all",
"9570 string to rule them all",
"9571 string to rule them all",
"9572 string to rule them all",
"9573 string to rule them all",
"9574 string to rule them all",
"9575 string to rule them all",
"9576 string to rule them all",
"9577 string to rule them all",
"9578 string to rule them all",
"9579 string to rule them all",
"9580 string to rule them all",
"9581 string to rule them all",
"9582 string to rule them all",
"9583 string to rule them all",
"9584 string to rule them all",
"9585 string to rule them all",
"9586 string to rule them all",
"9587 string to rule them all",
"9588 string to rule them all",
"9589 string to rule them all",
"9590 string to rule them all",
"9591 string to rule them all",
"9592 string to rule them all",
"9593 string to rule them all",
"9594 string to rule them all",
"9595 string to rule them all",
"9596 string to rule them all",
"9597 string to rule them all",
"9598 string to rule them all",
"9599 string to rule them all",
"9600 string to rule them all",
"9601 string to rule them all",
"9602 string to rule them all",
"9603 string to rule them all",
"9604 string to rule them all",
"9605 string to rule them all",
"9606 string to rule them all",
"9607 string to rule them all",
"9608 string to rule them all",
"9609 string to rule them all",
"9610 string to rule them all",
"9611 string to rule them all",
"9612 string to rule them all",
"9613 string to rule them all",
"9614 string to rule them all",
"9615 string to rule them all",
"9616 string to rule them all",
"9617 string to rule them all",
"9618 string to rule them all",
"9619 string to rule them all",
"9620 string to rule them all",
"9621 string to rule them all",
"9622 string to rule them all",
"9623 string to rule them all",
"9624 string to rule them all",
"9625 string to rule them all",
"9626 string to rule them all",
"9627 string to rule them all",
"9628 string to rule them all",
"9629 string to rule them all",
"9630 string to rule them all",
"9631 string to rule them all",
"9632 string to rule them all",
"9633 string to rule them all",
"9634 string to rule them all",
"9635 string to rule them all",
"9636 string to rule them all",
"9637 string to rule them all",
"9638 string to rule them all",
"9639 string to rule them all",
"9640 string to rule them all",
"9641 string to rule them all",
"9642 string to rule them all",
"9643 string to rule them all",
"9644 string to rule them all",
"9645 string to rule them all",
"9646 string to rule them all",
"9647 string to rule them all",
"9648 string to rule them all",
"9649 string to rule them all",
"9650 string to rule them all",
"9651 string to rule them all",
"9652 string to rule them all",
"9653 string to rule them all",
"9654 string to rule them all",
"9655 string to rule them all",
"9656 string to rule them all",
"9657 string to rule them all",
"9658 string to rule them all",
"9659 string to rule them all",
"9660 string to rule them all",
"9661 string to rule them all",
"9662 string to rule them all",
"9663 string to rule them all",
"9664 string to rule them all",
"9665 string to rule them all",
"9666 string to rule them all",
"9667 string to rule them all",
"9668 string to rule them all",
"9669 string to rule them all",
"9670 string to rule them all",
"9671 string to rule them all",
"9672 string to rule them all",
"9673 string to rule them all",
"9674 string to rule them all",
"9675 string to rule them all",
"9676 string to rule them all",
"9677 string to rule them all",
"9678 string to rule them all",
"9679 string to rule them all",
"9680 string to rule them all",
"9681 string to rule them all",
"9682 string to rule them all",
"9683 string to rule them all",
"9684 string to rule them all",
"9685 string to rule them all",
"9686 string to rule them all",
"9687 string to rule them all",
"9688 string to rule them all",
"9689 string to rule them all",
"9690 string to rule them all",
"9691 string to rule them all",
"9692 string to rule them all",
"9693 string to rule them all",
"9694 string to rule them all",
"9695 string to rule them all",
"9696 string to rule them all",
"9697 string to rule them all",
"9698 string to rule them all",
"9699 string to rule them all",
"9700 string to rule them all",
"9701 string to rule them all",
"9702 string to rule them all",
"9703 string to rule them all",
"9704 string to rule them all",
"9705 string to rule them all",
"9706 string to rule them all",
"9707 string to rule them all",
"9708 string to rule them all",
"9709 string to rule them all",
"9710 string to rule them all",
"9711 string to rule them all",
"9712 string to rule them all",
"9713 string to rule them all",
"9714 string to rule them all",
"9715 string to rule them all",
"9716 string to rule them all",
"9717 string to rule them all",
"9718 string to rule them all",
"9719 string to rule them all",
"9720 string to rule them all",
"9721 string to rule them all",
"9722 string to rule them all",
"9723 string to rule them all",
"9724 string to rule them all",
"9725 string to rule them all",
"9726 string to rule them all",
"9727 string to rule them all",
"9728 string to rule them all",
"9729 string to rule them all",
"9730 string to rule them all",
"9731 string to rule them all",
"9732 string to rule them all",
"9733 string to rule them all",
"9734 string to rule them all",
"9735 string to rule them all",
"9736 string to rule them all",
"9737 string to rule them all",
"9738 string to rule them all",
"9739 string to rule them all",
"9740 string to rule them all",
"9741 string to rule them all",
"9742 string to rule them all",
"9743 string to rule them all",
"9744 string to rule them all",
"9745 string to rule them all",
"9746 string to rule them all",
"9747 string to rule them all",
"9748 string to rule them all",
"9749 string to rule them all",
"9750 string to rule them all",
"9751 string to rule them all",
"9752 string to rule them all",
"9753 string to rule them all",
"9754 string to rule them all",
"9755 string to rule them all",
"9756 string to rule them all",
"9757 string to rule them all",
"9758 string to rule them all",
"9759 string to rule them all",
"9760 string to rule them all",
"9761 string to rule them all",
"9762 string to rule them all",
"9763 string to rule them all",
"9764 string to rule them all",
"9765 string to rule them all",
"9766 string to rule them all",
"9767 string to rule them all",
"9768 string to rule them all",
"9769 string to rule them all",
"9770 string to rule them all",
"9771 string to rule them all",
"9772 string to rule them all",
"9773 string to rule them all",
"9774 string to rule them all",
"9775 string to rule them all",
"9776 string to rule them all",
"9777 string to rule them all",
"9778 string to rule them all",
"9779 string to rule them all",
"9780 string to rule them all",
"9781 string to rule them all",
"9782 string to rule them all",
"9783 string to rule them all",
"9784 string to rule them all",
"9785 string to rule them all",
"9786 string to rule them all",
"9787 string to rule them all",
"9788 string to rule them all",
"9789 string to rule them all",
"9790 string to rule them all",
"9791 string to rule them all",
"9792 string to rule them all",
"9793 string to rule them all",
"9794 string to rule them all",
"9795 string to rule them all",
"9796 string to rule them all",
"9797 string to rule them all",
"9798 string to rule them all",
"9799 string to rule them all",
"9800 string to rule them all",
"9801 string to rule them all",
"9802 string to rule them all",
"9803 string to rule them all",
"9804 string to rule them all",
"9805 string to rule them all",
"9806 string to rule them all",
"9807 string to rule them all",
"9808 string to rule them all",
"9809 string to rule them all",
"9810 string to rule them all",
"9811 string to rule them all",
"9812 string to rule them all",
"9813 string to rule them all",
"9814 string to rule them all",
"9815 string to rule them all",
"9816 string to rule them all",
"9817 string to rule them all",
"9818 string to rule them all",
"9819 string to rule them all",
"9820 string to rule them all",
"9821 string to rule them all",
"9822 string to rule them all",
"9823 string to rule them all",
"9824 string to rule them all",
"9825 string to rule them all",
"9826 string to rule them all",
"9827 string to rule them all",
"9828 string to rule them all",
"9829 string to rule them all",
"9830 string to rule them all",
"9831 string to rule them all",
"9832 string to rule them all",
"9833 string to rule them all",
"9834 string to rule them all",
"9835 string to rule them all",
"9836 string to rule them all",
"9837 string to rule them all",
"9838 string to rule them all",
"9839 string to rule them all",
"9840 string to rule them all",
"9841 string to rule them all",
"9842 string to rule them all",
"9843 string to rule them all",
"9844 string to rule them all",
"9845 string to rule them all",
"9846 string to rule them all",
"9847 string to rule them all",
"9848 string to rule them all",
"9849 string to rule them all",
"9850 string to rule them all",
"9851 string to rule them all",
"9852 string to rule them all",
"9853 string to rule them all",
"9854 string to rule them all",
"9855 string to rule them all",
"9856 string to rule them all",
"9857 string to rule them all",
"9858 string to rule them all",
"9859 string to rule them all",
"9860 string to rule them all",
"9861 string to rule them all",
"9862 string to rule them all",
"9863 string to rule them all",
"9864 string to rule them all",
"9865 string to rule them all",
"9866 string to rule them all",
"9867 string to rule them all",
"9868 string to rule them all",
"9869 string to rule them all",
"9870 string to rule them all",
"9871 string to rule them all",
"9872 string to rule them all",
"9873 string to rule them all",
"9874 string to rule them all",
"9875 string to rule them all",
"9876 string to rule them all",
"9877 string to rule them all",
"9878 string to rule them all",
"9879 string to rule them all",
"9880 string to rule them all",
"9881 string to rule them all",
"9882 string to rule them all",
"9883 string to rule them all",
"9884 string to rule them all",
"9885 string to rule them all",
"9886 string to rule them all",
"9887 string to rule them all",
"9888 string to rule them all",
"9889 string to rule them all",
"9890 string to rule them all",
"9891 string to rule them all",
"9892 string to rule them all",
"9893 string to rule them all",
"9894 string to rule them all",
"9895 string to rule them all",
"9896 string to rule them all",
"9897 string to rule them all",
"9898 string to rule them all",
"9899 string to rule them all",
"9900 string to rule them all",
"9901 string to rule them all",
"9902 string to rule them all",
"9903 string to rule them all",
"9904 string to rule them all",
"9905 string to rule them all",
"9906 string to rule them all",
"9907 string to rule them all",
"9908 string to rule them all",
"9909 string to rule them all",
"9910 string to rule them all",
"9911 string to rule them all",
"9912 string to rule them all",
"9913 string to rule them all",
"9914 string to rule them all",
"9915 string to rule them all",
"9916 string to rule them all",
"9917 string to rule them all",
"9918 string to rule them all",
"9919 string to rule them all",
"9920 string to rule them all",
"9921 string to rule them all",
"9922 string to rule them all",
"9923 string to rule them all",
"9924 string to rule them all",
"9925 string to rule them all",
"9926 string to rule them all",
"9927 string to rule them all",
"9928 string to rule them all",
"9929 string to rule them all",
"9930 string to rule them all",
"9931 string to rule them all",
"9932 string to rule them all",
"9933 string to rule them all",
"9934 string to rule them all",
"9935 string to rule them all",
"9936 string to rule them all",
"9937 string to rule them all",
"9938 string to rule them all",
"9939 string to rule them all",
"9940 string to rule them all",
"9941 string to rule them all",
"9942 string to rule them all",
"9943 string to rule them all",
"9944 string to rule them all",
"9945 string to rule them all",
"9946 string to rule them all",
"9947 string to rule them all",
"9948 string to rule them all",
"9949 string to rule them all",
"9950 string to rule them all",
"9951 string to rule them all",
"9952 string to rule them all",
"9953 string to rule them all",
"9954 string to rule them all",
"9955 string to rule them all",
"9956 string to rule them all",
"9957 string to rule them all",
"9958 string to rule them all",
"9959 string to rule them all",
"9960 string to rule them all",
"9961 string to rule them all",
"9962 string to rule them all",
"9963 string to rule them all",
"9964 string to rule them all",
"9965 string to rule them all",
"9966 string to rule them all",
"9967 string to rule them all",
"9968 string to rule them all",
"9969 string to rule them all",
"9970 string to rule them all",
"9971 string to rule them all",
"9972 string to rule them all",
"9973 string to rule them all",
"9974 string to rule them all",
"9975 string to rule them all",
"9976 string to rule them all",
"9977 string to rule them all",
"9978 string to rule them all",
"9979 string to rule them all",
"9980 string to rule them all",
"9981 string to rule them all",
"9982 string to rule them all",
"9983 string to rule them all",
"9984 string to rule them all",
"9985 string to rule them all",
"9986 string to rule them all",
"9987 string to rule them all",
"9988 string to rule them all",
"9989 string to rule them all",
"9990 string to rule them all",
"9991 string to rule them all",
"9992 string to rule them all",
"9993 string to rule them all",
"9994 string to rule them all",
"9995 string to rule them all",
"9996 string to rule them all",
"9997 string to rule them all",
"9998 string to rule them all",
"9999 string to rule them all",
"10000 string to rule them all",
"10001 string to rule them all",
"10002 string to rule them all",
"10003 string to rule them all",
"10004 string to rule them all",
"10005 string to rule them all",
"10006 string to rule them all",
"10007 string to rule them all",
"10008 string to rule them all",
"10009 string to rule them all",
"10010 string to rule them all",
"10011 string to rule them all",
"10012 string to rule them all",
"10013 string to rule them all",
"10014 string to rule them all",
"10015 string to rule them all",
"10016 string to rule them all",
"10017 string to rule them all",
"10018 string to rule them all",
"10019 string to rule them all",
"10020 string to rule them all",
"10021 string to rule them all",
"10022 string to rule them all",
"10023 string to rule them all",
"10024 string to rule them all",
"10025 string to rule them all",
"10026 string to rule them all",
"10027 string to rule them all",
"10028 string to rule them all",
"10029 string to rule them all",
"10030 string to rule them all",
"10031 string to rule them all",
"10032 string to rule them all",
"10033 string to rule them all",
"10034 string to rule them all",
"10035 string to rule them all",
"10036 string to rule them all",
"10037 string to rule them all",
"10038 string to rule them all",
"10039 string to rule them all",
"10040 string to rule them all",
"10041 string to rule them all",
"10042 string to rule them all",
"10043 string to rule them all",
"10044 string to rule them all",
"10045 string to rule them all",
"10046 string to rule them all",
"10047 string to rule them all",
"10048 string to rule them all",
"10049 string to rule them all",
"10050 string to rule them all",
"10051 string to rule them all",
"10052 string to rule them all",
"10053 string to rule them all",
"10054 string to rule them all",
"10055 string to rule them all",
"10056 string to rule them all",
"10057 string to rule them all",
"10058 string to rule them all",
"10059 string to rule them all",
"10060 string to rule them all",
"10061 string to rule them all",
"10062 string to rule them all",
"10063 string to rule them all",
"10064 string to rule them all",
"10065 string to rule them all",
"10066 string to rule them all",
"10067 string to rule them all",
"10068 string to rule them all",
"10069 string to rule them all",
"10070 string to rule them all",
"10071 string to rule them all",
"10072 string to rule them all",
"10073 string to rule them all",
"10074 string to rule them all",
"10075 string to rule them all",
"10076 string to rule them all",
"10077 string to rule them all",
"10078 string to rule them all",
"10079 string to rule them all",
"10080 string to rule them all",
"10081 string to rule them all",
"10082 string to rule them all",
"10083 string to rule them all",
"10084 string to rule them all",
"10085 string to rule them all",
"10086 string to rule them all",
"10087 string to rule them all",
"10088 string to rule them all",
"10089 string to rule them all",
"10090 string to rule them all",
"10091 string to rule them all",
"10092 string to rule them all",
"10093 string to rule them all",
"10094 string to rule them all",
"10095 string to rule them all",
"10096 string to rule them all",
"10097 string to rule them all",
"10098 string to rule them all",
"10099 string to rule them all",
"10100 string to rule them all",
"10101 string to rule them all",
"10102 string to rule them all",
"10103 string to rule them all",
"10104 string to rule them all",
"10105 string to rule them all",
"10106 string to rule them all",
"10107 string to rule them all",
"10108 string to rule them all",
"10109 string to rule them all",
"10110 string to rule them all",
"10111 string to rule them all",
"10112 string to rule them all",
"10113 string to rule them all",
"10114 string to rule them all",
"10115 string to rule them all",
"10116 string to rule them all",
"10117 string to rule them all",
"10118 string to rule them all",
"10119 string to rule them all",
"10120 string to rule them all",
"10121 string to rule them all",
"10122 string to rule them all",
"10123 string to rule them all",
"10124 string to rule them all",
"10125 string to rule them all",
"10126 string to rule them all",
"10127 string to rule them all",
"10128 string to rule them all",
"10129 string to rule them all",
"10130 string to rule them all",
"10131 string to rule them all",
"10132 string to rule them all",
"10133 string to rule them all",
"10134 string to rule them all",
"10135 string to rule them all",
"10136 string to rule them all",
"10137 string to rule them all",
"10138 string to rule them all",
"10139 string to rule them all",
"10140 string to rule them all",
"10141 string to rule them all",
"10142 string to rule them all",
"10143 string to rule them all",
"10144 string to rule them all",
"10145 string to rule them all",
"10146 string to rule them all",
"10147 string to rule them all",
"10148 string to rule them all",
"10149 string to rule them all",
"10150 string to rule them all",
"10151 string to rule them all",
"10152 string to rule them all",
"10153 string to rule them all",
"10154 string to rule them all",
"10155 string to rule them all",
"10156 string to rule them all",
"10157 string to rule them all",
"10158 string to rule them all",
"10159 string to rule them all",
"10160 string to rule them all",
"10161 string to rule them all",
"10162 string to rule them all",
"10163 string to rule them all",
"10164 string to rule them all",
"10165 string to rule them all",
"10166 string to rule them all",
"10167 string to rule them all",
"10168 string to rule them all",
"10169 string to rule them all",
"10170 string to rule them all",
"10171 string to rule them all",
"10172 string to rule them all",
"10173 string to rule them all",
"10174 string to rule them all",
"10175 string to rule them all",
"10176 string to rule them all",
"10177 string to rule them all",
"10178 string to rule them all",
"10179 string to rule them all",
"10180 string to rule them all",
"10181 string to rule them all",
"10182 string to rule them all",
"10183 string to rule them all",
"10184 string to rule them all",
"10185 string to rule them all",
"10186 string to rule them all",
"10187 string to rule them all",
"10188 string to rule them all",
"10189 string to rule them all",
"10190 string to rule them all",
"10191 string to rule them all",
"10192 string to rule them all",
"10193 string to rule them all",
"10194 string to rule them all",
"10195 string to rule them all",
"10196 string to rule them all",
"10197 string to rule them all",
"10198 string to rule them all",
"10199 string to rule them all",
"10200 string to rule them all",
"10201 string to rule them all",
"10202 string to rule them all",
"10203 string to rule them all",
"10204 string to rule them all",
"10205 string to rule them all",
"10206 string to rule them all",
"10207 string to rule them all",
"10208 string to rule them all",
"10209 string to rule them all",
"10210 string to rule them all",
"10211 string to rule them all",
"10212 string to rule them all",
"10213 string to rule them all",
"10214 string to rule them all",
"10215 string to rule them all",
"10216 string to rule them all",
"10217 string to rule them all",
"10218 string to rule them all",
"10219 string to rule them all",
"10220 string to rule them all",
"10221 string to rule them all",
"10222 string to rule them all",
"10223 string to rule them all",
"10224 string to rule them all",
"10225 string to rule them all",
"10226 string to rule them all",
"10227 string to rule them all",
"10228 string to rule them all",
"10229 string to rule them all",
"10230 string to rule them all",
"10231 string to rule them all",
"10232 string to rule them all",
"10233 string to rule them all",
"10234 string to rule them all",
"10235 string to rule them all",
"10236 string to rule them all",
"10237 string to rule them all",
"10238 string to rule them all",
"10239 string to rule them all",
"10240 string to rule them all",
"10241 string to rule them all",
"10242 string to rule them all",
"10243 string to rule them all",
"10244 string to rule them all",
"10245 string to rule them all",
"10246 string to rule them all",
"10247 string to rule them all",
"10248 string to rule them all",
"10249 string to rule them all",
"10250 string to rule them all",
"10251 string to rule them all",
"10252 string to rule them all",
"10253 string to rule them all",
"10254 string to rule them all",
"10255 string to rule them all",
"10256 string to rule them all",
"10257 string to rule them all",
"10258 string to rule them all",
"10259 string to rule them all",
"10260 string to rule them all",
"10261 string to rule them all",
"10262 string to rule them all",
"10263 string to rule them all",
"10264 string to rule them all",
"10265 string to rule them all",
"10266 string to rule them all",
"10267 string to rule them all",
"10268 string to rule them all",
"10269 string to rule them all",
"10270 string to rule them all",
"10271 string to rule them all",
"10272 string to rule them all",
"10273 string to rule them all",
"10274 string to rule them all",
"10275 string to rule them all",
"10276 string to rule them all",
"10277 string to rule them all",
"10278 string to rule them all",
"10279 string to rule them all",
"10280 string to rule them all",
"10281 string to rule them all",
"10282 string to rule them all",
"10283 string to rule them all",
"10284 string to rule them all",
"10285 string to rule them all",
"10286 string to rule them all",
"10287 string to rule them all",
"10288 string to rule them all",
"10289 string to rule them all",
"10290 string to rule them all",
"10291 string to rule them all",
"10292 string to rule them all",
"10293 string to rule them all",
"10294 string to rule them all",
"10295 string to rule them all",
"10296 string to rule them all",
"10297 string to rule them all",
"10298 string to rule them all",
"10299 string to rule them all",
"10300 string to rule them all",
"10301 string to rule them all",
"10302 string to rule them all",
"10303 string to rule them all",
"10304 string to rule them all",
"10305 string to rule them all",
"10306 string to rule them all",
"10307 string to rule them all",
"10308 string to rule them all",
"10309 string to rule them all",
"10310 string to rule them all",
"10311 string to rule them all",
"10312 string to rule them all",
"10313 string to rule them all",
"10314 string to rule them all",
"10315 string to rule them all",
"10316 string to rule them all",
"10317 string to rule them all",
"10318 string to rule them all",
"10319 string to rule them all",
"10320 string to rule them all",
"10321 string to rule them all",
"10322 string to rule them all",
"10323 string to rule them all",
"10324 string to rule them all",
"10325 string to rule them all",
"10326 string to rule them all",
"10327 string to rule them all",
"10328 string to rule them all",
"10329 string to rule them all",
"10330 string to rule them all",
"10331 string to rule them all",
"10332 string to rule them all",
"10333 string to rule them all",
"10334 string to rule them all",
"10335 string to rule them all",
"10336 string to rule them all",
"10337 string to rule them all",
"10338 string to rule them all",
"10339 string to rule them all",
"10340 string to rule them all",
"10341 string to rule them all",
"10342 string to rule them all",
"10343 string to rule them all",
"10344 string to rule them all",
"10345 string to rule them all",
"10346 string to rule them all",
"10347 string to rule them all",
"10348 string to rule them all",
"10349 string to rule them all",
"10350 string to rule them all",
"10351 string to rule them all",
"10352 string to rule them all",
"10353 string to rule them all",
"10354 string to rule them all",
"10355 string to rule them all",
"10356 string to rule them all",
"10357 string to rule them all",
"10358 string to rule them all",
"10359 string to rule them all",
"10360 string to rule them all",
"10361 string to rule them all",
"10362 string to rule them all",
"10363 string to rule them all",
"10364 string to rule them all",
"10365 string to rule them all",
"10366 string to rule them all",
"10367 string to rule them all",
"10368 string to rule them all",
"10369 string to rule them all",
"10370 string to rule them all",
"10371 string to rule them all",
"10372 string to rule them all",
"10373 string to rule them all",
"10374 string to rule them all",
"10375 string to rule them all",
"10376 string to rule them all",
"10377 string to rule them all",
"10378 string to rule them all",
"10379 string to rule them all",
"10380 string to rule them all",
"10381 string to rule them all",
"10382 string to rule them all",
"10383 string to rule them all",
"10384 string to rule them all",
"10385 string to rule them all",
"10386 string to rule them all",
"10387 string to rule them all",
"10388 string to rule them all",
"10389 string to rule them all",
"10390 string to rule them all",
"10391 string to rule them all",
"10392 string to rule them all",
"10393 string to rule them all",
"10394 string to rule them all",
"10395 string to rule them all",
"10396 string to rule them all",
"10397 string to rule them all",
"10398 string to rule them all",
"10399 string to rule them all",
"10400 string to rule them all",
"10401 string to rule them all",
"10402 string to rule them all",
"10403 string to rule them all",
"10404 string to rule them all",
"10405 string to rule them all",
"10406 string to rule them all",
"10407 string to rule them all",
"10408 string to rule them all",
"10409 string to rule them all",
"10410 string to rule them all",
"10411 string to rule them all",
"10412 string to rule them all",
"10413 string to rule them all",
"10414 string to rule them all",
"10415 string to rule them all",
"10416 string to rule them all",
"10417 string to rule them all",
"10418 string to rule them all",
"10419 string to rule them all",
"10420 string to rule them all",
"10421 string to rule them all",
"10422 string to rule them all",
"10423 string to rule them all",
"10424 string to rule them all",
"10425 string to rule them all",
"10426 string to rule them all",
"10427 string to rule them all",
"10428 string to rule them all",
"10429 string to rule them all",
"10430 string to rule them all",
"10431 string to rule them all",
"10432 string to rule them all",
"10433 string to rule them all",
"10434 string to rule them all",
"10435 string to rule them all",
"10436 string to rule them all",
"10437 string to rule them all",
"10438 string to rule them all",
"10439 string to rule them all",
"10440 string to rule them all",
"10441 string to rule them all",
"10442 string to rule them all",
"10443 string to rule them all",
"10444 string to rule them all",
"10445 string to rule them all",
"10446 string to rule them all",
"10447 string to rule them all",
"10448 string to rule them all",
"10449 string to rule them all",
"10450 string to rule them all",
"10451 string to rule them all",
"10452 string to rule them all",
"10453 string to rule them all",
"10454 string to rule them all",
"10455 string to rule them all",
"10456 string to rule them all",
"10457 string to rule them all",
"10458 string to rule them all",
"10459 string to rule them all",
"10460 string to rule them all",
"10461 string to rule them all",
"10462 string to rule them all",
"10463 string to rule them all",
"10464 string to rule them all",
"10465 string to rule them all",
"10466 string to rule them all",
"10467 string to rule them all",
"10468 string to rule them all",
"10469 string to rule them all",
"10470 string to rule them all",
"10471 string to rule them all",
"10472 string to rule them all",
"10473 string to rule them all",
"10474 string to rule them all",
"10475 string to rule them all",
"10476 string to rule them all",
"10477 string to rule them all",
"10478 string to rule them all",
"10479 string to rule them all",
"10480 string to rule them all",
"10481 string to rule them all",
"10482 string to rule them all",
"10483 string to rule them all",
"10484 string to rule them all",
"10485 string to rule them all",
"10486 string to rule them all",
"10487 string to rule them all",
"10488 string to rule them all",
"10489 string to rule them all",
"10490 string to rule them all",
"10491 string to rule them all",
"10492 string to rule them all",
"10493 string to rule them all",
"10494 string to rule them all",
"10495 string to rule them all",
"10496 string to rule them all",
"10497 string to rule them all",
"10498 string to rule them all",
"10499 string to rule them all",
"10500 string to rule them all",
"10501 string to rule them all",
"10502 string to rule them all",
"10503 string to rule them all",
"10504 string to rule them all",
"10505 string to rule them all",
"10506 string to rule them all",
"10507 string to rule them all",
"10508 string to rule them all",
"10509 string to rule them all",
"10510 string to rule them all",
"10511 string to rule them all",
"10512 string to rule them all",
"10513 string to rule them all",
"10514 string to rule them all",
"10515 string to rule them all",
"10516 string to rule them all",
"10517 string to rule them all",
"10518 string to rule them all",
"10519 string to rule them all",
"10520 string to rule them all",
"10521 string to rule them all",
"10522 string to rule them all",
"10523 string to rule them all",
"10524 string to rule them all",
"10525 string to rule them all",
"10526 string to rule them all",
"10527 string to rule them all",
"10528 string to rule them all",
"10529 string to rule them all",
"10530 string to rule them all",
"10531 string to rule them all",
"10532 string to rule them all",
"10533 string to rule them all",
"10534 string to rule them all",
"10535 string to rule them all",
"10536 string to rule them all",
"10537 string to rule them all",
"10538 string to rule them all",
"10539 string to rule them all",
"10540 string to rule them all",
"10541 string to rule them all",
"10542 string to rule them all",
"10543 string to rule them all",
"10544 string to rule them all",
"10545 string to rule them all",
"10546 string to rule them all",
"10547 string to rule them all",
"10548 string to rule them all",
"10549 string to rule them all",
"10550 string to rule them all",
"10551 string to rule them all",
"10552 string to rule them all",
"10553 string to rule them all",
"10554 string to rule them all",
"10555 string to rule them all",
"10556 string to rule them all",
"10557 string to rule them all",
"10558 string to rule them all",
"10559 string to rule them all",
"10560 string to rule them all",
"10561 string to rule them all",
"10562 string to rule them all",
"10563 string to rule them all",
"10564 string to rule them all",
"10565 string to rule them all",
"10566 string to rule them all",
"10567 string to rule them all",
"10568 string to rule them all",
"10569 string to rule them all",
"10570 string to rule them all",
"10571 string to rule them all",
"10572 string to rule them all",
"10573 string to rule them all",
"10574 string to rule them all",
"10575 string to rule them all",
"10576 string to rule them all",
"10577 string to rule them all",
"10578 string to rule them all",
"10579 string to rule them all",
"10580 string to rule them all",
"10581 string to rule them all",
"10582 string to rule them all",
"10583 string to rule them all",
"10584 string to rule them all",
"10585 string to rule them all",
"10586 string to rule them all",
"10587 string to rule them all",
"10588 string to rule them all",
"10589 string to rule them all",
"10590 string to rule them all",
"10591 string to rule them all",
"10592 string to rule them all",
"10593 string to rule them all",
"10594 string to rule them all",
"10595 string to rule them all",
"10596 string to rule them all",
"10597 string to rule them all",
"10598 string to rule them all",
"10599 string to rule them all",
"10600 string to rule them all",
"10601 string to rule them all",
"10602 string to rule them all",
"10603 string to rule them all",
"10604 string to rule them all",
"10605 string to rule them all",
"10606 string to rule them all",
"10607 string to rule them all",
"10608 string to rule them all",
"10609 string to rule them all",
"10610 string to rule them all",
"10611 string to rule them all",
"10612 string to rule them all",
"10613 string to rule them all",
"10614 string to rule them all",
"10615 string to rule them all",
"10616 string to rule them all",
"10617 string to rule them all",
"10618 string to rule them all",
"10619 string to rule them all",
"10620 string to rule them all",
"10621 string to rule them all",
"10622 string to rule them all",
"10623 string to rule them all",
"10624 string to rule them all",
"10625 string to rule them all",
"10626 string to rule them all",
"10627 string to rule them all",
"10628 string to rule them all",
"10629 string to rule them all",
"10630 string to rule them all",
"10631 string to rule them all",
"10632 string to rule them all",
"10633 string to rule them all",
"10634 string to rule them all",
"10635 string to rule them all",
"10636 string to rule them all",
"10637 string to rule them all",
"10638 string to rule them all",
"10639 string to rule them all",
"10640 string to rule them all",
"10641 string to rule them all",
"10642 string to rule them all",
"10643 string to rule them all",
"10644 string to rule them all",
"10645 string to rule them all",
"10646 string to rule them all",
"10647 string to rule them all",
"10648 string to rule them all",
"10649 string to rule them all",
"10650 string to rule them all",
"10651 string to rule them all",
"10652 string to rule them all",
"10653 string to rule them all",
"10654 string to rule them all",
"10655 string to rule them all",
"10656 string to rule them all",
"10657 string to rule them all",
"10658 string to rule them all",
"10659 string to rule them all",
"10660 string to rule them all",
"10661 string to rule them all",
"10662 string to rule them all",
"10663 string to rule them all",
"10664 string to rule them all",
"10665 string to rule them all",
"10666 string to rule them all",
"10667 string to rule them all",
"10668 string to rule them all",
"10669 string to rule them all",
"10670 string to rule them all",
"10671 string to rule them all",
"10672 string to rule them all",
"10673 string to rule them all",
"10674 string to rule them all",
"10675 string to rule them all",
"10676 string to rule them all",
"10677 string to rule them all",
"10678 string to rule them all",
"10679 string to rule them all",
"10680 string to rule them all",
"10681 string to rule them all",
"10682 string to rule them all",
"10683 string to rule them all",
"10684 string to rule them all",
"10685 string to rule them all",
"10686 string to rule them all",
"10687 string to rule them all",
"10688 string to rule them all",
"10689 string to rule them all",
"10690 string to rule them all",
"10691 string to rule them all",
"10692 string to rule them all",
"10693 string to rule them all",
"10694 string to rule them all",
"10695 string to rule them all",
"10696 string to rule them all",
"10697 string to rule them all",
"10698 string to rule them all",
"10699 string to rule them all",
"10700 string to rule them all",
"10701 string to rule them all",
"10702 string to rule them all",
"10703 string to rule them all",
"10704 string to rule them all",
"10705 string to rule them all",
"10706 string to rule them all",
"10707 string to rule them all",
"10708 string to rule them all",
"10709 string to rule them all",
"10710 string to rule them all",
"10711 string to rule them all",
"10712 string to rule them all",
"10713 string to rule them all",
"10714 string to rule them all",
"10715 string to rule them all",
"10716 string to rule them all",
"10717 string to rule them all",
"10718 string to rule them all",
"10719 string to rule them all",
"10720 string to rule them all",
"10721 string to rule them all",
"10722 string to rule them all",
"10723 string to rule them all",
"10724 string to rule them all",
"10725 string to rule them all",
"10726 string to rule them all",
"10727 string to rule them all",
"10728 string to rule them all",
"10729 string to rule them all",
"10730 string to rule them all",
"10731 string to rule them all",
"10732 string to rule them all",
"10733 string to rule them all",
"10734 string to rule them all",
"10735 string to rule them all",
"10736 string to rule them all",
"10737 string to rule them all",
"10738 string to rule them all",
"10739 string to rule them all",
"10740 string to rule them all",
"10741 string to rule them all",
"10742 string to rule them all",
"10743 string to rule them all",
"10744 string to rule them all",
"10745 string to rule them all",
"10746 string to rule them all",
"10747 string to rule them all",
"10748 string to rule them all",
"10749 string to rule them all",
"10750 string to rule them all",
"10751 string to rule them all",
"10752 string to rule them all",
"10753 string to rule them all",
"10754 string to rule them all",
"10755 string to rule them all",
"10756 string to rule them all",
"10757 string to rule them all",
"10758 string to rule them all",
"10759 string to rule them all",
"10760 string to rule them all",
"10761 string to rule them all",
"10762 string to rule them all",
"10763 string to rule them all",
"10764 string to rule them all",
"10765 string to rule them all",
"10766 string to rule them all",
"10767 string to rule them all",
"10768 string to rule them all",
"10769 string to rule them all",
"10770 string to rule them all",
"10771 string to rule them all",
"10772 string to rule them all",
"10773 string to rule them all",
"10774 string to rule them all",
"10775 string to rule them all",
"10776 string to rule them all",
"10777 string to rule them all",
"10778 string to rule them all",
"10779 string to rule them all",
"10780 string to rule them all",
"10781 string to rule them all",
"10782 string to rule them all",
"10783 string to rule them all",
"10784 string to rule them all",
"10785 string to rule them all",
"10786 string to rule them all",
"10787 string to rule them all",
"10788 string to rule them all",
"10789 string to rule them all",
"10790 string to rule them all",
"10791 string to rule them all",
"10792 string to rule them all",
"10793 string to rule them all",
"10794 string to rule them all",
"10795 string to rule them all",
"10796 string to rule them all",
"10797 string to rule them all",
"10798 string to rule them all",
"10799 string to rule them all",
"10800 string to rule them all",
"10801 string to rule them all",
"10802 string to rule them all",
"10803 string to rule them all",
"10804 string to rule them all",
"10805 string to rule them all",
"10806 string to rule them all",
"10807 string to rule them all",
"10808 string to rule them all",
"10809 string to rule them all",
"10810 string to rule them all",
"10811 string to rule them all",
"10812 string to rule them all",
"10813 string to rule them all",
"10814 string to rule them all",
"10815 string to rule them all",
"10816 string to rule them all",
"10817 string to rule them all",
"10818 string to rule them all",
"10819 string to rule them all",
"10820 string to rule them all",
"10821 string to rule them all",
"10822 string to rule them all",
"10823 string to rule them all",
"10824 string to rule them all",
"10825 string to rule them all",
"10826 string to rule them all",
"10827 string to rule them all",
"10828 string to rule them all",
"10829 string to rule them all",
"10830 string to rule them all",
"10831 string to rule them all",
"10832 string to rule them all",
"10833 string to rule them all",
"10834 string to rule them all",
"10835 string to rule them all",
"10836 string to rule them all",
"10837 string to rule them all",
"10838 string to rule them all",
"10839 string to rule them all",
"10840 string to rule them all",
"10841 string to rule them all",
"10842 string to rule them all",
"10843 string to rule them all",
"10844 string to rule them all",
"10845 string to rule them all",
"10846 string to rule them all",
"10847 string to rule them all",
"10848 string to rule them all",
"10849 string to rule them all",
"10850 string to rule them all",
"10851 string to rule them all",
"10852 string to rule them all",
"10853 string to rule them all",
"10854 string to rule them all",
"10855 string to rule them all",
"10856 string to rule them all",
"10857 string to rule them all",
"10858 string to rule them all",
"10859 string to rule them all",
"10860 string to rule them all",
"10861 string to rule them all",
"10862 string to rule them all",
"10863 string to rule them all",
"10864 string to rule them all",
"10865 string to rule them all",
"10866 string to rule them all",
"10867 string to rule them all",
"10868 string to rule them all",
"10869 string to rule them all",
"10870 string to rule them all",
"10871 string to rule them all",
"10872 string to rule them all",
"10873 string to rule them all",
"10874 string to rule them all",
"10875 string to rule them all",
"10876 string to rule them all",
"10877 string to rule them all",
"10878 string to rule them all",
"10879 string to rule them all",
"10880 string to rule them all",
"10881 string to rule them all",
"10882 string to rule them all",
"10883 string to rule them all",
"10884 string to rule them all",
"10885 string to rule them all",
"10886 string to rule them all",
"10887 string to rule them all",
"10888 string to rule them all",
"10889 string to rule them all",
"10890 string to rule them all",
"10891 string to rule them all",
"10892 string to rule them all",
"10893 string to rule them all",
"10894 string to rule them all",
"10895 string to rule them all",
"10896 string to rule them all",
"10897 string to rule them all",
"10898 string to rule them all",
"10899 string to rule them all",
"10900 string to rule them all",
"10901 string to rule them all",
"10902 string to rule them all",
"10903 string to rule them all",
"10904 string to rule them all",
"10905 string to rule them all",
"10906 string to rule them all",
"10907 string to rule them all",
"10908 string to rule them all",
"10909 string to rule them all",
"10910 string to rule them all",
"10911 string to rule them all",
"10912 string to rule them all",
"10913 string to rule them all",
"10914 string to rule them all",
"10915 string to rule them all",
"10916 string to rule them all",
"10917 string to rule them all",
"10918 string to rule them all",
"10919 string to rule them all",
"10920 string to rule them all",
"10921 string to rule them all",
"10922 string to rule them all",
"10923 string to rule them all",
"10924 string to rule them all",
"10925 string to rule them all",
"10926 string to rule them all",
"10927 string to rule them all",
"10928 string to rule them all",
"10929 string to rule them all",
"10930 string to rule them all",
"10931 string to rule them all",
"10932 string to rule them all",
"10933 string to rule them all",
"10934 string to rule them all",
"10935 string to rule them all",
"10936 string to rule them all",
"10937 string to rule them all",
"10938 string to rule them all",
"10939 string to rule them all",
"10940 string to rule them all",
"10941 string to rule them all",
"10942 string to rule them all",
"10943 string to rule them all",
"10944 string to rule them all",
"10945 string to rule them all",
"10946 string to rule them all",
"10947 string to rule them all",
"10948 string to rule them all",
"10949 string to rule them all",
"10950 string to rule them all",
"10951 string to rule them all",
"10952 string to rule them all",
"10953 string to rule them all",
"10954 string to rule them all",
"10955 string to rule them all",
"10956 string to rule them all",
"10957 string to rule them all",
"10958 string to rule them all",
"10959 string to rule them all",
"10960 string to rule them all",
"10961 string to rule them all",
"10962 string to rule them all",
"10963 string to rule them all",
"10964 string to rule them all",
"10965 string to rule them all",
"10966 string to rule them all",
"10967 string to rule them all",
"10968 string to rule them all",
"10969 string to rule them all",
"10970 string to rule them all",
"10971 string to rule them all",
"10972 string to rule them all",
"10973 string to rule them all",
"10974 string to rule them all",
"10975 string to rule them all",
"10976 string to rule them all",
"10977 string to rule them all",
"10978 string to rule them all",
"10979 string to rule them all",
"10980 string to rule them all",
"10981 string to rule them all",
"10982 string to rule them all",
"10983 string to rule them all",
"10984 string to rule them all",
"10985 string to rule them all",
"10986 string to rule them all",
"10987 string to rule them all",
"10988 string to rule them all",
"10989 string to rule them all",
"10990 string to rule them all",
"10991 string to rule them all",
"10992 string to rule them all",
"10993 string to rule them all",
"10994 string to rule them all",
"10995 string to rule them all",
"10996 string to rule them all",
"10997 string to rule them all",
"10998 string to rule them all",
"10999 string to rule them all",
"11000 string to rule them all",
"11001 string to rule them all",
"11002 string to rule them all",
"11003 string to rule them all",
"11004 string to rule them all",
"11005 string to rule them all",
"11006 string to rule them all",
"11007 string to rule them all",
"11008 string to rule them all",
"11009 string to rule them all",
"11010 string to rule them all",
"11011 string to rule them all",
"11012 string to rule them all",
"11013 string to rule them all",
"11014 string to rule them all",
"11015 string to rule them all",
"11016 string to rule them all",
"11017 string to rule them all",
"11018 string to rule them all",
"11019 string to rule them all",
"11020 string to rule them all",
"11021 string to rule them all",
"11022 string to rule them all",
"11023 string to rule them all",
"11024 string to rule them all",
"11025 string to rule them all",
"11026 string to rule them all",
"11027 string to rule them all",
"11028 string to rule them all",
"11029 string to rule them all",
"11030 string to rule them all",
"11031 string to rule them all",
"11032 string to rule them all",
"11033 string to rule them all",
"11034 string to rule them all",
"11035 string to rule them all",
"11036 string to rule them all",
"11037 string to rule them all",
"11038 string to rule them all",
"11039 string to rule them all",
"11040 string to rule them all",
"11041 string to rule them all",
"11042 string to rule them all",
"11043 string to rule them all",
"11044 string to rule them all",
"11045 string to rule them all",
"11046 string to rule them all",
"11047 string to rule them all",
"11048 string to rule them all",
"11049 string to rule them all",
"11050 string to rule them all",
"11051 string to rule them all",
"11052 string to rule them all",
"11053 string to rule them all",
"11054 string to rule them all",
"11055 string to rule them all",
"11056 string to rule them all",
"11057 string to rule them all",
"11058 string to rule them all",
"11059 string to rule them all",
"11060 string to rule them all",
"11061 string to rule them all",
"11062 string to rule them all",
"11063 string to rule them all",
"11064 string to rule them all",
"11065 string to rule them all",
"11066 string to rule them all",
"11067 string to rule them all",
"11068 string to rule them all",
"11069 string to rule them all",
"11070 string to rule them all",
"11071 string to rule them all",
"11072 string to rule them all",
"11073 string to rule them all",
"11074 string to rule them all",
"11075 string to rule them all",
"11076 string to rule them all",
"11077 string to rule them all",
"11078 string to rule them all",
"11079 string to rule them all",
"11080 string to rule them all",
"11081 string to rule them all",
"11082 string to rule them all",
"11083 string to rule them all",
"11084 string to rule them all",
"11085 string to rule them all",
"11086 string to rule them all",
"11087 string to rule them all",
"11088 string to rule them all",
"11089 string to rule them all",
"11090 string to rule them all",
"11091 string to rule them all",
"11092 string to rule them all",
"11093 string to rule them all",
"11094 string to rule them all",
"11095 string to rule them all",
"11096 string to rule them all",
"11097 string to rule them all",
"11098 string to rule them all",
"11099 string to rule them all",
"11100 string to rule them all",
"11101 string to rule them all",
"11102 string to rule them all",
"11103 string to rule them all",
"11104 string to rule them all",
"11105 string to rule them all",
"11106 string to rule them all",
"11107 string to rule them all",
"11108 string to rule them all",
"11109 string to rule them all",
"11110 string to rule them all",
"11111 string to rule them all",
"11112 string to rule them all",
"11113 string to rule them all",
"11114 string to rule them all",
"11115 string to rule them all",
"11116 string to rule them all",
"11117 string to rule them all",
"11118 string to rule them all",
"11119 string to rule them all",
"11120 string to rule them all",
"11121 string to rule them all",
"11122 string to rule them all",
"11123 string to rule them all",
"11124 string to rule them all",
"11125 string to rule them all",
"11126 string to rule them all",
"11127 string to rule them all",
"11128 string to rule them all",
"11129 string to rule them all",
"11130 string to rule them all",
"11131 string to rule them all",
"11132 string to rule them all",
"11133 string to rule them all",
"11134 string to rule them all",
"11135 string to rule them all",
"11136 string to rule them all",
"11137 string to rule them all",
"11138 string to rule them all",
"11139 string to rule them all",
"11140 string to rule them all",
"11141 string to rule them all",
"11142 string to rule them all",
"11143 string to rule them all",
"11144 string to rule them all",
"11145 string to rule them all",
"11146 string to rule them all",
"11147 string to rule them all",
"11148 string to rule them all",
"11149 string to rule them all",
"11150 string to rule them all",
"11151 string to rule them all",
"11152 string to rule them all",
"11153 string to rule them all",
"11154 string to rule them all",
"11155 string to rule them all",
"11156 string to rule them all",
"11157 string to rule them all",
"11158 string to rule them all",
"11159 string to rule them all",
"11160 string to rule them all",
"11161 string to rule them all",
"11162 string to rule them all",
"11163 string to rule them all",
"11164 string to rule them all",
"11165 string to rule them all",
"11166 string to rule them all",
"11167 string to rule them all",
"11168 string to rule them all",
"11169 string to rule them all",
"11170 string to rule them all",
"11171 string to rule them all",
"11172 string to rule them all",
"11173 string to rule them all",
"11174 string to rule them all",
"11175 string to rule them all",
"11176 string to rule them all",
"11177 string to rule them all",
"11178 string to rule them all",
"11179 string to rule them all",
"11180 string to rule them all",
"11181 string to rule them all",
"11182 string to rule them all",
"11183 string to rule them all",
"11184 string to rule them all",
"11185 string to rule them all",
"11186 string to rule them all",
"11187 string to rule them all",
"11188 string to rule them all",
"11189 string to rule them all",
"11190 string to rule them all",
"11191 string to rule them all",
"11192 string to rule them all",
"11193 string to rule them all",
"11194 string to rule them all",
"11195 string to rule them all",
"11196 string to rule them all",
"11197 string to rule them all",
"11198 string to rule them all",
"11199 string to rule them all",
"11200 string to rule them all",
"11201 string to rule them all",
"11202 string to rule them all",
"11203 string to rule them all",
"11204 string to rule them all",
"11205 string to rule them all",
"11206 string to rule them all",
"11207 string to rule them all",
"11208 string to rule them all",
"11209 string to rule them all",
"11210 string to rule them all",
"11211 string to rule them all",
"11212 string to rule them all",
"11213 string to rule them all",
"11214 string to rule them all",
"11215 string to rule them all",
"11216 string to rule them all",
"11217 string to rule them all",
"11218 string to rule them all",
"11219 string to rule them all",
"11220 string to rule them all",
"11221 string to rule them all",
"11222 string to rule them all",
"11223 string to rule them all",
"11224 string to rule them all",
"11225 string to rule them all",
"11226 string to rule them all",
"11227 string to rule them all",
"11228 string to rule them all",
"11229 string to rule them all",
"11230 string to rule them all",
"11231 string to rule them all",
"11232 string to rule them all",
"11233 string to rule them all",
"11234 string to rule them all",
"11235 string to rule them all",
"11236 string to rule them all",
"11237 string to rule them all",
"11238 string to rule them all",
"11239 string to rule them all",
"11240 string to rule them all",
"11241 string to rule them all",
"11242 string to rule them all",
"11243 string to rule them all",
"11244 string to rule them all",
"11245 string to rule them all",
"11246 string to rule them all",
"11247 string to rule them all",
"11248 string to rule them all",
"11249 string to rule them all",
"11250 string to rule them all",
"11251 string to rule them all",
"11252 string to rule them all",
"11253 string to rule them all",
"11254 string to rule them all",
"11255 string to rule them all",
"11256 string to rule them all",
"11257 string to rule them all",
"11258 string to rule them all",
"11259 string to rule them all",
"11260 string to rule them all",
"11261 string to rule them all",
"11262 string to rule them all",
"11263 string to rule them all",
"11264 string to rule them all",
"11265 string to rule them all",
"11266 string to rule them all",
"11267 string to rule them all",
"11268 string to rule them all",
"11269 string to rule them all",
"11270 string to rule them all",
"11271 string to rule them all",
"11272 string to rule them all",
"11273 string to rule them all",
"11274 string to rule them all",
"11275 string to rule them all",
"11276 string to rule them all",
"11277 string to rule them all",
"11278 string to rule them all",
"11279 string to rule them all",
"11280 string to rule them all",
"11281 string to rule them all",
"11282 string to rule them all",
"11283 string to rule them all",
"11284 string to rule them all",
"11285 string to rule them all",
"11286 string to rule them all",
"11287 string to rule them all",
"11288 string to rule them all",
"11289 string to rule them all",
"11290 string to rule them all",
"11291 string to rule them all",
"11292 string to rule them all",
"11293 string to rule them all",
"11294 string to rule them all",
"11295 string to rule them all",
"11296 string to rule them all",
"11297 string to rule them all",
"11298 string to rule them all",
"11299 string to rule them all",
"11300 string to rule them all",
"11301 string to rule them all",
"11302 string to rule them all",
"11303 string to rule them all",
"11304 string to rule them all",
"11305 string to rule them all",
"11306 string to rule them all",
"11307 string to rule them all",
"11308 string to rule them all",
"11309 string to rule them all",
"11310 string to rule them all",
"11311 string to rule them all",
"11312 string to rule them all",
"11313 string to rule them all",
"11314 string to rule them all",
"11315 string to rule them all",
"11316 string to rule them all",
"11317 string to rule them all",
"11318 string to rule them all",
"11319 string to rule them all",
"11320 string to rule them all",
"11321 string to rule them all",
"11322 string to rule them all",
"11323 string to rule them all",
"11324 string to rule them all",
"11325 string to rule them all",
"11326 string to rule them all",
"11327 string to rule them all",
"11328 string to rule them all",
"11329 string to rule them all",
"11330 string to rule them all",
"11331 string to rule them all",
"11332 string to rule them all",
"11333 string to rule them all",
"11334 string to rule them all",
"11335 string to rule them all",
"11336 string to rule them all",
"11337 string to rule them all",
"11338 string to rule them all",
"11339 string to rule them all",
"11340 string to rule them all",
"11341 string to rule them all",
"11342 string to rule them all",
"11343 string to rule them all",
"11344 string to rule them all",
"11345 string to rule them all",
"11346 string to rule them all",
"11347 string to rule them all",
"11348 string to rule them all",
"11349 string to rule them all",
"11350 string to rule them all",
"11351 string to rule them all",
"11352 string to rule them all",
"11353 string to rule them all",
"11354 string to rule them all",
"11355 string to rule them all",
"11356 string to rule them all",
"11357 string to rule them all",
"11358 string to rule them all",
"11359 string to rule them all",
"11360 string to rule them all",
"11361 string to rule them all",
"11362 string to rule them all",
"11363 string to rule them all",
"11364 string to rule them all",
"11365 string to rule them all",
"11366 string to rule them all",
"11367 string to rule them all",
"11368 string to rule them all",
"11369 string to rule them all",
"11370 string to rule them all",
"11371 string to rule them all",
"11372 string to rule them all",
"11373 string to rule them all",
"11374 string to rule them all",
"11375 string to rule them all",
"11376 string to rule them all",
"11377 string to rule them all",
"11378 string to rule them all",
"11379 string to rule them all",
"11380 string to rule them all",
"11381 string to rule them all",
"11382 string to rule them all",
"11383 string to rule them all",
"11384 string to rule them all",
"11385 string to rule them all",
"11386 string to rule them all",
"11387 string to rule them all",
"11388 string to rule them all",
"11389 string to rule them all",
"11390 string to rule them all",
"11391 string to rule them all",
"11392 string to rule them all",
"11393 string to rule them all",
"11394 string to rule them all",
"11395 string to rule them all",
"11396 string to rule them all",
"11397 string to rule them all",
"11398 string to rule them all",
"11399 string to rule them all",
"11400 string to rule them all",
"11401 string to rule them all",
"11402 string to rule them all",
"11403 string to rule them all",
"11404 string to rule them all",
"11405 string to rule them all",
"11406 string to rule them all",
"11407 string to rule them all",
"11408 string to rule them all",
"11409 string to rule them all",
"11410 string to rule them all",
"11411 string to rule them all",
"11412 string to rule them all",
"11413 string to rule them all",
"11414 string to rule them all",
"11415 string to rule them all",
"11416 string to rule them all",
"11417 string to rule them all",
"11418 string to rule them all",
"11419 string to rule them all",
"11420 string to rule them all",
"11421 string to rule them all",
"11422 string to rule them all",
"11423 string to rule them all",
"11424 string to rule them all",
"11425 string to rule them all",
"11426 string to rule them all",
"11427 string to rule them all",
"11428 string to rule them all",
"11429 string to rule them all",
"11430 string to rule them all",
"11431 string to rule them all",
"11432 string to rule them all",
"11433 string to rule them all",
"11434 string to rule them all",
"11435 string to rule them all",
"11436 string to rule them all",
"11437 string to rule them all",
"11438 string to rule them all",
"11439 string to rule them all",
"11440 string to rule them all",
"11441 string to rule them all",
"11442 string to rule them all",
"11443 string to rule them all",
"11444 string to rule them all",
"11445 string to rule them all",
"11446 string to rule them all",
"11447 string to rule them all",
"11448 string to rule them all",
"11449 string to rule them all",
"11450 string to rule them all",
"11451 string to rule them all",
"11452 string to rule them all",
"11453 string to rule them all",
"11454 string to rule them all",
"11455 string to rule them all",
"11456 string to rule them all",
"11457 string to rule them all",
"11458 string to rule them all",
"11459 string to rule them all",
"11460 string to rule them all",
"11461 string to rule them all",
"11462 string to rule them all",
"11463 string to rule them all",
"11464 string to rule them all",
"11465 string to rule them all",
"11466 string to rule them all",
"11467 string to rule them all",
"11468 string to rule them all",
"11469 string to rule them all",
"11470 string to rule them all",
"11471 string to rule them all",
"11472 string to rule them all",
"11473 string to rule them all",
"11474 string to rule them all",
"11475 string to rule them all",
"11476 string to rule them all",
"11477 string to rule them all",
"11478 string to rule them all",
"11479 string to rule them all",
"11480 string to rule them all",
"11481 string to rule them all",
"11482 string to rule them all",
"11483 string to rule them all",
"11484 string to rule them all",
"11485 string to rule them all",
"11486 string to rule them all",
"11487 string to rule them all",
"11488 string to rule them all",
"11489 string to rule them all",
"11490 string to rule them all",
"11491 string to rule them all",
"11492 string to rule them all",
"11493 string to rule them all",
"11494 string to rule them all",
"11495 string to rule them all",
"11496 string to rule them all",
"11497 string to rule them all",
"11498 string to rule them all",
"11499 string to rule them all",
"11500 string to rule them all",
"11501 string to rule them all",
"11502 string to rule them all",
"11503 string to rule them all",
"11504 string to rule them all",
"11505 string to rule them all",
"11506 string to rule them all",
"11507 string to rule them all",
"11508 string to rule them all",
"11509 string to rule them all",
"11510 string to rule them all",
"11511 string to rule them all",
"11512 string to rule them all",
"11513 string to rule them all",
"11514 string to rule them all",
"11515 string to rule them all",
"11516 string to rule them all",
"11517 string to rule them all",
"11518 string to rule them all",
"11519 string to rule them all",
"11520 string to rule them all",
"11521 string to rule them all",
"11522 string to rule them all",
"11523 string to rule them all",
"11524 string to rule them all",
"11525 string to rule them all",
"11526 string to rule them all",
"11527 string to rule them all",
"11528 string to rule them all",
"11529 string to rule them all",
"11530 string to rule them all",
"11531 string to rule them all",
"11532 string to rule them all",
"11533 string to rule them all",
"11534 string to rule them all",
"11535 string to rule them all",
"11536 string to rule them all",
"11537 string to rule them all",
"11538 string to rule them all",
"11539 string to rule them all",
"11540 string to rule them all",
"11541 string to rule them all",
"11542 string to rule them all",
"11543 string to rule them all",
"11544 string to rule them all",
"11545 string to rule them all",
"11546 string to rule them all",
"11547 string to rule them all",
"11548 string to rule them all",
"11549 string to rule them all",
"11550 string to rule them all",
"11551 string to rule them all",
"11552 string to rule them all",
"11553 string to rule them all",
"11554 string to rule them all",
"11555 string to rule them all",
"11556 string to rule them all",
"11557 string to rule them all",
"11558 string to rule them all",
"11559 string to rule them all",
"11560 string to rule them all",
"11561 string to rule them all",
"11562 string to rule them all",
"11563 string to rule them all",
"11564 string to rule them all",
"11565 string to rule them all",
"11566 string to rule them all",
"11567 string to rule them all",
"11568 string to rule them all",
"11569 string to rule them all",
"11570 string to rule them all",
"11571 string to rule them all",
"11572 string to rule them all",
"11573 string to rule them all",
"11574 string to rule them all",
"11575 string to rule them all",
"11576 string to rule them all",
"11577 string to rule them all",
"11578 string to rule them all",
"11579 string to rule them all",
"11580 string to rule them all",
"11581 string to rule them all",
"11582 string to rule them all",
"11583 string to rule them all",
"11584 string to rule them all",
"11585 string to rule them all",
"11586 string to rule them all",
"11587 string to rule them all",
"11588 string to rule them all",
"11589 string to rule them all",
"11590 string to rule them all",
"11591 string to rule them all",
"11592 string to rule them all",
"11593 string to rule them all",
"11594 string to rule them all",
"11595 string to rule them all",
"11596 string to rule them all",
"11597 string to rule them all",
"11598 string to rule them all",
"11599 string to rule them all",
"11600 string to rule them all",
"11601 string to rule them all",
"11602 string to rule them all",
"11603 string to rule them all",
"11604 string to rule them all",
"11605 string to rule them all",
"11606 string to rule them all",
"11607 string to rule them all",
"11608 string to rule them all",
"11609 string to rule them all",
"11610 string to rule them all",
"11611 string to rule them all",
"11612 string to rule them all",
"11613 string to rule them all",
"11614 string to rule them all",
"11615 string to rule them all",
"11616 string to rule them all",
"11617 string to rule them all",
"11618 string to rule them all",
"11619 string to rule them all",
"11620 string to rule them all",
"11621 string to rule them all",
"11622 string to rule them all",
"11623 string to rule them all",
"11624 string to rule them all",
"11625 string to rule them all",
"11626 string to rule them all",
"11627 string to rule them all",
"11628 string to rule them all",
"11629 string to rule them all",
"11630 string to rule them all",
"11631 string to rule them all",
"11632 string to rule them all",
"11633 string to rule them all",
"11634 string to rule them all",
"11635 string to rule them all",
"11636 string to rule them all",
"11637 string to rule them all",
"11638 string to rule them all",
"11639 string to rule them all",
"11640 string to rule them all",
"11641 string to rule them all",
"11642 string to rule them all",
"11643 string to rule them all",
"11644 string to rule them all",
"11645 string to rule them all",
"11646 string to rule them all",
"11647 string to rule them all",
"11648 string to rule them all",
"11649 string to rule them all",
"11650 string to rule them all",
"11651 string to rule them all",
"11652 string to rule them all",
"11653 string to rule them all",
"11654 string to rule them all",
"11655 string to rule them all",
"11656 string to rule them all",
"11657 string to rule them all",
"11658 string to rule them all",
"11659 string to rule them all",
"11660 string to rule them all",
"11661 string to rule them all",
"11662 string to rule them all",
"11663 string to rule them all",
"11664 string to rule them all",
"11665 string to rule them all",
"11666 string to rule them all",
"11667 string to rule them all",
"11668 string to rule them all",
"11669 string to rule them all",
"11670 string to rule them all",
"11671 string to rule them all",
"11672 string to rule them all",
"11673 string to rule them all",
"11674 string to rule them all",
"11675 string to rule them all",
"11676 string to rule them all",
"11677 string to rule them all",
"11678 string to rule them all",
"11679 string to rule them all",
"11680 string to rule them all",
"11681 string to rule them all",
"11682 string to rule them all",
"11683 string to rule them all",
"11684 string to rule them all",
"11685 string to rule them all",
"11686 string to rule them all",
"11687 string to rule them all",
"11688 string to rule them all",
"11689 string to rule them all",
"11690 string to rule them all",
"11691 string to rule them all",
"11692 string to rule them all",
"11693 string to rule them all",
"11694 string to rule them all",
"11695 string to rule them all",
"11696 string to rule them all",
"11697 string to rule them all",
"11698 string to rule them all",
"11699 string to rule them all",
"11700 string to rule them all",
"11701 string to rule them all",
"11702 string to rule them all",
"11703 string to rule them all",
"11704 string to rule them all",
"11705 string to rule them all",
"11706 string to rule them all",
"11707 string to rule them all",
"11708 string to rule them all",
"11709 string to rule them all",
"11710 string to rule them all",
"11711 string to rule them all",
"11712 string to rule them all",
"11713 string to rule them all",
"11714 string to rule them all",
"11715 string to rule them all",
"11716 string to rule them all",
"11717 string to rule them all",
"11718 string to rule them all",
"11719 string to rule them all",
"11720 string to rule them all",
"11721 string to rule them all",
"11722 string to rule them all",
"11723 string to rule them all",
"11724 string to rule them all",
"11725 string to rule them all",
"11726 string to rule them all",
"11727 string to rule them all",
"11728 string to rule them all",
"11729 string to rule them all",
"11730 string to rule them all",
"11731 string to rule them all",
"11732 string to rule them all",
"11733 string to rule them all",
"11734 string to rule them all",
"11735 string to rule them all",
"11736 string to rule them all",
"11737 string to rule them all",
"11738 string to rule them all",
"11739 string to rule them all",
"11740 string to rule them all",
"11741 string to rule them all",
"11742 string to rule them all",
"11743 string to rule them all",
"11744 string to rule them all",
"11745 string to rule them all",
"11746 string to rule them all",
"11747 string to rule them all",
"11748 string to rule them all",
"11749 string to rule them all",
"11750 string to rule them all",
"11751 string to rule them all",
"11752 string to rule them all",
"11753 string to rule them all",
"11754 string to rule them all",
"11755 string to rule them all",
"11756 string to rule them all",
"11757 string to rule them all",
"11758 string to rule them all",
"11759 string to rule them all",
"11760 string to rule them all",
"11761 string to rule them all",
"11762 string to rule them all",
"11763 string to rule them all",
"11764 string to rule them all",
"11765 string to rule them all",
"11766 string to rule them all",
"11767 string to rule them all",
"11768 string to rule them all",
"11769 string to rule them all",
"11770 string to rule them all",
"11771 string to rule them all",
"11772 string to rule them all",
"11773 string to rule them all",
"11774 string to rule them all",
"11775 string to rule them all",
"11776 string to rule them all",
"11777 string to rule them all",
"11778 string to rule them all",
"11779 string to rule them all",
"11780 string to rule them all",
"11781 string to rule them all",
"11782 string to rule them all",
"11783 string to rule them all",
"11784 string to rule them all",
"11785 string to rule them all",
"11786 string to rule them all",
"11787 string to rule them all",
"11788 string to rule them all",
"11789 string to rule them all",
"11790 string to rule them all",
"11791 string to rule them all",
"11792 string to rule them all",
"11793 string to rule them all",
"11794 string to rule them all",
"11795 string to rule them all",
"11796 string to rule them all",
"11797 string to rule them all",
"11798 string to rule them all",
"11799 string to rule them all",
"11800 string to rule them all",
"11801 string to rule them all",
"11802 string to rule them all",
"11803 string to rule them all",
"11804 string to rule them all",
"11805 string to rule them all",
"11806 string to rule them all",
"11807 string to rule them all",
"11808 string to rule them all",
"11809 string to rule them all",
"11810 string to rule them all",
"11811 string to rule them all",
"11812 string to rule them all",
"11813 string to rule them all",
"11814 string to rule them all",
"11815 string to rule them all",
"11816 string to rule them all",
"11817 string to rule them all",
"11818 string to rule them all",
"11819 string to rule them all",
"11820 string to rule them all",
"11821 string to rule them all",
"11822 string to rule them all",
"11823 string to rule them all",
"11824 string to rule them all",
"11825 string to rule them all",
"11826 string to rule them all",
"11827 string to rule them all",
"11828 string to rule them all",
"11829 string to rule them all",
"11830 string to rule them all",
"11831 string to rule them all",
"11832 string to rule them all",
"11833 string to rule them all",
"11834 string to rule them all",
"11835 string to rule them all",
"11836 string to rule them all",
"11837 string to rule them all",
"11838 string to rule them all",
"11839 string to rule them all",
"11840 string to rule them all",
"11841 string to rule them all",
"11842 string to rule them all",
"11843 string to rule them all",
"11844 string to rule them all",
"11845 string to rule them all",
"11846 string to rule them all",
"11847 string to rule them all",
"11848 string to rule them all",
"11849 string to rule them all",
"11850 string to rule them all",
"11851 string to rule them all",
"11852 string to rule them all",
"11853 string to rule them all",
"11854 string to rule them all",
"11855 string to rule them all",
"11856 string to rule them all",
"11857 string to rule them all",
"11858 string to rule them all",
"11859 string to rule them all",
"11860 string to rule them all",
"11861 string to rule them all",
"11862 string to rule them all",
"11863 string to rule them all",
"11864 string to rule them all",
"11865 string to rule them all",
"11866 string to rule them all",
"11867 string to rule them all",
"11868 string to rule them all",
"11869 string to rule them all",
"11870 string to rule them all",
"11871 string to rule them all",
"11872 string to rule them all",
"11873 string to rule them all",
"11874 string to rule them all",
"11875 string to rule them all",
"11876 string to rule them all",
"11877 string to rule them all",
"11878 string to rule them all",
"11879 string to rule them all",
"11880 string to rule them all",
"11881 string to rule them all",
"11882 string to rule them all",
"11883 string to rule them all",
"11884 string to rule them all",
"11885 string to rule them all",
"11886 string to rule them all",
"11887 string to rule them all",
"11888 string to rule them all",
"11889 string to rule them all",
"11890 string to rule them all",
"11891 string to rule them all",
"11892 string to rule them all",
"11893 string to rule them all",
"11894 string to rule them all",
"11895 string to rule them all",
"11896 string to rule them all",
"11897 string to rule them all",
"11898 string to rule them all",
"11899 string to rule them all",
"11900 string to rule them all",
"11901 string to rule them all",
"11902 string to rule them all",
"11903 string to rule them all",
"11904 string to rule them all",
"11905 string to rule them all",
"11906 string to rule them all",
"11907 string to rule them all",
"11908 string to rule them all",
"11909 string to rule them all",
"11910 string to rule them all",
"11911 string to rule them all",
"11912 string to rule them all",
"11913 string to rule them all",
"11914 string to rule them all",
"11915 string to rule them all",
"11916 string to rule them all",
"11917 string to rule them all",
"11918 string to rule them all",
"11919 string to rule them all",
"11920 string to rule them all",
"11921 string to rule them all",
"11922 string to rule them all",
"11923 string to rule them all",
"11924 string to rule them all",
"11925 string to rule them all",
"11926 string to rule them all",
"11927 string to rule them all",
"11928 string to rule them all",
"11929 string to rule them all",
"11930 string to rule them all",
"11931 string to rule them all",
"11932 string to rule them all",
"11933 string to rule them all",
"11934 string to rule them all",
"11935 string to rule them all",
"11936 string to rule them all",
"11937 string to rule them all",
"11938 string to rule them all",
"11939 string to rule them all",
"11940 string to rule them all",
"11941 string to rule them all",
"11942 string to rule them all",
"11943 string to rule them all",
"11944 string to rule them all",
"11945 string to rule them all",
"11946 string to rule them all",
"11947 string to rule them all",
"11948 string to rule them all",
"11949 string to rule them all",
"11950 string to rule them all",
"11951 string to rule them all",
"11952 string to rule them all",
"11953 string to rule them all",
"11954 string to rule them all",
"11955 string to rule them all",
"11956 string to rule them all",
"11957 string to rule them all",
"11958 string to rule them all",
"11959 string to rule them all",
"11960 string to rule them all",
"11961 string to rule them all",
"11962 string to rule them all",
"11963 string to rule them all",
"11964 string to rule them all",
"11965 string to rule them all",
"11966 string to rule them all",
"11967 string to rule them all",
"11968 string to rule them all",
"11969 string to rule them all",
"11970 string to rule them all",
"11971 string to rule them all",
"11972 string to rule them all",
"11973 string to rule them all",
"11974 string to rule them all",
"11975 string to rule them all",
"11976 string to rule them all",
"11977 string to rule them all",
"11978 string to rule them all",
"11979 string to rule them all",
"11980 string to rule them all",
"11981 string to rule them all",
"11982 string to rule them all",
"11983 string to rule them all",
"11984 string to rule them all",
"11985 string to rule them all",
"11986 string to rule them all",
"11987 string to rule them all",
"11988 string to rule them all",
"11989 string to rule them all",
"11990 string to rule them all",
"11991 string to rule them all",
"11992 string to rule them all",
"11993 string to rule them all",
"11994 string to rule them all",
"11995 string to rule them all",
"11996 string to rule them all",
"11997 string to rule them all",
"11998 string to rule them all",
"11999 string to rule them all",
"12000 string to rule them all",
"12001 string to rule them all",
"12002 string to rule them all",
"12003 string to rule them all",
"12004 string to rule them all",
"12005 string to rule them all",
"12006 string to rule them all",
"12007 string to rule them all",
"12008 string to rule them all",
"12009 string to rule them all",
"12010 string to rule them all",
"12011 string to rule them all",
"12012 string to rule them all",
"12013 string to rule them all",
"12014 string to rule them all",
"12015 string to rule them all",
"12016 string to rule them all",
"12017 string to rule them all",
"12018 string to rule them all",
"12019 string to rule them all",
"12020 string to rule them all",
"12021 string to rule them all",
"12022 string to rule them all",
"12023 string to rule them all",
"12024 string to rule them all",
"12025 string to rule them all",
"12026 string to rule them all",
"12027 string to rule them all",
"12028 string to rule them all",
"12029 string to rule them all",
"12030 string to rule them all",
"12031 string to rule them all",
"12032 string to rule them all",
"12033 string to rule them all",
"12034 string to rule them all",
"12035 string to rule them all",
"12036 string to rule them all",
"12037 string to rule them all",
"12038 string to rule them all",
"12039 string to rule them all",
"12040 string to rule them all",
"12041 string to rule them all",
"12042 string to rule them all",
"12043 string to rule them all",
"12044 string to rule them all",
"12045 string to rule them all",
"12046 string to rule them all",
"12047 string to rule them all",
"12048 string to rule them all",
"12049 string to rule them all",
"12050 string to rule them all",
"12051 string to rule them all",
"12052 string to rule them all",
"12053 string to rule them all",
"12054 string to rule them all",
"12055 string to rule them all",
"12056 string to rule them all",
"12057 string to rule them all",
"12058 string to rule them all",
"12059 string to rule them all",
"12060 string to rule them all",
"12061 string to rule them all",
"12062 string to rule them all",
"12063 string to rule them all",
"12064 string to rule them all",
"12065 string to rule them all",
"12066 string to rule them all",
"12067 string to rule them all",
"12068 string to rule them all",
"12069 string to rule them all",
"12070 string to rule them all",
"12071 string to rule them all",
"12072 string to rule them all",
"12073 string to rule them all",
"12074 string to rule them all",
"12075 string to rule them all",
"12076 string to rule them all",
"12077 string to rule them all",
"12078 string to rule them all",
"12079 string to rule them all",
"12080 string to rule them all",
"12081 string to rule them all",
"12082 string to rule them all",
"12083 string to rule them all",
"12084 string to rule them all",
"12085 string to rule them all",
"12086 string to rule them all",
"12087 string to rule them all",
"12088 string to rule them all",
"12089 string to rule them all",
"12090 string to rule them all",
"12091 string to rule them all",
"12092 string to rule them all",
"12093 string to rule them all",
"12094 string to rule them all",
"12095 string to rule them all",
"12096 string to rule them all",
"12097 string to rule them all",
"12098 string to rule them all",
"12099 string to rule them all",
"12100 string to rule them all",
"12101 string to rule them all",
"12102 string to rule them all",
"12103 string to rule them all",
"12104 string to rule them all",
"12105 string to rule them all",
"12106 string to rule them all",
"12107 string to rule them all",
"12108 string to rule them all",
"12109 string to rule them all",
"12110 string to rule them all",
"12111 string to rule them all",
"12112 string to rule them all",
"12113 string to rule them all",
"12114 string to rule them all",
"12115 string to rule them all",
"12116 string to rule them all",
"12117 string to rule them all",
"12118 string to rule them all",
"12119 string to rule them all",
"12120 string to rule them all",
"12121 string to rule them all",
"12122 string to rule them all",
"12123 string to rule them all",
"12124 string to rule them all",
"12125 string to rule them all",
"12126 string to rule them all",
"12127 string to rule them all",
"12128 string to rule them all",
"12129 string to rule them all",
"12130 string to rule them all",
"12131 string to rule them all",
"12132 string to rule them all",
"12133 string to rule them all",
"12134 string to rule them all",
"12135 string to rule them all",
"12136 string to rule them all",
"12137 string to rule them all",
"12138 string to rule them all",
"12139 string to rule them all",
"12140 string to rule them all",
"12141 string to rule them all",
"12142 string to rule them all",
"12143 string to rule them all",
"12144 string to rule them all",
"12145 string to rule them all",
"12146 string to rule them all",
"12147 string to rule them all",
"12148 string to rule them all",
"12149 string to rule them all",
"12150 string to rule them all",
"12151 string to rule them all",
"12152 string to rule them all",
"12153 string to rule them all",
"12154 string to rule them all",
"12155 string to rule them all",
"12156 string to rule them all",
"12157 string to rule them all",
"12158 string to rule them all",
"12159 string to rule them all",
"12160 string to rule them all",
"12161 string to rule them all",
"12162 string to rule them all",
"12163 string to rule them all",
"12164 string to rule them all",
"12165 string to rule them all",
"12166 string to rule them all",
"12167 string to rule them all",
"12168 string to rule them all",
"12169 string to rule them all",
"12170 string to rule them all",
"12171 string to rule them all",
"12172 string to rule them all",
"12173 string to rule them all",
"12174 string to rule them all",
"12175 string to rule them all",
"12176 string to rule them all",
"12177 string to rule them all",
"12178 string to rule them all",
"12179 string to rule them all",
"12180 string to rule them all",
"12181 string to rule them all",
"12182 string to rule them all",
"12183 string to rule them all",
"12184 string to rule them all",
"12185 string to rule them all",
"12186 string to rule them all",
"12187 string to rule them all",
"12188 string to rule them all",
"12189 string to rule them all",
"12190 string to rule them all",
"12191 string to rule them all",
"12192 string to rule them all",
"12193 string to rule them all",
"12194 string to rule them all",
"12195 string to rule them all",
"12196 string to rule them all",
"12197 string to rule them all",
"12198 string to rule them all",
"12199 string to rule them all",
"12200 string to rule them all",
"12201 string to rule them all",
"12202 string to rule them all",
"12203 string to rule them all",
"12204 string to rule them all",
"12205 string to rule them all",
"12206 string to rule them all",
"12207 string to rule them all",
"12208 string to rule them all",
"12209 string to rule them all",
"12210 string to rule them all",
"12211 string to rule them all",
"12212 string to rule them all",
"12213 string to rule them all",
"12214 string to rule them all",
"12215 string to rule them all",
"12216 string to rule them all",
"12217 string to rule them all",
"12218 string to rule them all",
"12219 string to rule them all",
"12220 string to rule them all",
"12221 string to rule them all",
"12222 string to rule them all",
"12223 string to rule them all",
"12224 string to rule them all",
"12225 string to rule them all",
"12226 string to rule them all",
"12227 string to rule them all",
"12228 string to rule them all",
"12229 string to rule them all",
"12230 string to rule them all",
"12231 string to rule them all",
"12232 string to rule them all",
"12233 string to rule them all",
"12234 string to rule them all",
"12235 string to rule them all",
"12236 string to rule them all",
"12237 string to rule them all",
"12238 string to rule them all",
"12239 string to rule them all",
"12240 string to rule them all",
"12241 string to rule them all",
"12242 string to rule them all",
"12243 string to rule them all",
"12244 string to rule them all",
"12245 string to rule them all",
"12246 string to rule them all",
"12247 string to rule them all",
"12248 string to rule them all",
"12249 string to rule them all",
"12250 string to rule them all",
"12251 string to rule them all",
"12252 string to rule them all",
"12253 string to rule them all",
"12254 string to rule them all",
"12255 string to rule them all",
"12256 string to rule them all",
"12257 string to rule them all",
"12258 string to rule them all",
"12259 string to rule them all",
"12260 string to rule them all",
"12261 string to rule them all",
"12262 string to rule them all",
"12263 string to rule them all",
"12264 string to rule them all",
"12265 string to rule them all",
"12266 string to rule them all",
"12267 string to rule them all",
"12268 string to rule them all",
"12269 string to rule them all",
"12270 string to rule them all",
"12271 string to rule them all",
"12272 string to rule them all",
"12273 string to rule them all",
"12274 string to rule them all",
"12275 string to rule them all",
"12276 string to rule them all",
"12277 string to rule them all",
"12278 string to rule them all",
"12279 string to rule them all",
"12280 string to rule them all",
"12281 string to rule them all",
"12282 string to rule them all",
"12283 string to rule them all",
"12284 string to rule them all",
"12285 string to rule them all",
"12286 string to rule them all",
"12287 string to rule them all",
"12288 string to rule them all",
"12289 string to rule them all",
"12290 string to rule them all",
"12291 string to rule them all",
"12292 string to rule them all",
"12293 string to rule them all",
"12294 string to rule them all",
"12295 string to rule them all",
"12296 string to rule them all",
"12297 string to rule them all",
"12298 string to rule them all",
"12299 string to rule them all",
"12300 string to rule them all",
"12301 string to rule them all",
"12302 string to rule them all",
"12303 string to rule them all",
"12304 string to rule them all",
"12305 string to rule them all",
"12306 string to rule them all",
"12307 string to rule them all",
"12308 string to rule them all",
"12309 string to rule them all",
"12310 string to rule them all",
"12311 string to rule them all",
"12312 string to rule them all",
"12313 string to rule them all",
"12314 string to rule them all",
"12315 string to rule them all",
"12316 string to rule them all",
"12317 string to rule them all",
"12318 string to rule them all",
"12319 string to rule them all",
"12320 string to rule them all",
"12321 string to rule them all",
"12322 string to rule them all",
"12323 string to rule them all",
"12324 string to rule them all",
"12325 string to rule them all",
"12326 string to rule them all",
"12327 string to rule them all",
"12328 string to rule them all",
"12329 string to rule them all",
"12330 string to rule them all",
"12331 string to rule them all",
"12332 string to rule them all",
"12333 string to rule them all",
"12334 string to rule them all",
"12335 string to rule them all",
"12336 string to rule them all",
"12337 string to rule them all",
"12338 string to rule them all",
"12339 string to rule them all",
"12340 string to rule them all",
"12341 string to rule them all",
"12342 string to rule them all",
"12343 string to rule them all",
"12344 string to rule them all",
"12345 string to rule them all",
"12346 string to rule them all",
"12347 string to rule them all",
"12348 string to rule them all",
"12349 string to rule them all",
"12350 string to rule them all",
"12351 string to rule them all",
"12352 string to rule them all",
"12353 string to rule them all",
"12354 string to rule them all",
"12355 string to rule them all",
"12356 string to rule them all",
"12357 string to rule them all",
"12358 string to rule them all",
"12359 string to rule them all",
"12360 string to rule them all",
"12361 string to rule them all",
"12362 string to rule them all",
"12363 string to rule them all",
"12364 string to rule them all",
"12365 string to rule them all",
"12366 string to rule them all",
"12367 string to rule them all",
"12368 string to rule them all",
"12369 string to rule them all",
"12370 string to rule them all",
"12371 string to rule them all",
"12372 string to rule them all",
"12373 string to rule them all",
"12374 string to rule them all",
"12375 string to rule them all",
"12376 string to rule them all",
"12377 string to rule them all",
"12378 string to rule them all",
"12379 string to rule them all",
"12380 string to rule them all",
"12381 string to rule them all",
"12382 string to rule them all",
"12383 string to rule them all",
"12384 string to rule them all",
"12385 string to rule them all",
"12386 string to rule them all",
"12387 string to rule them all",
"12388 string to rule them all",
"12389 string to rule them all",
"12390 string to rule them all",
"12391 string to rule them all",
"12392 string to rule them all",
"12393 string to rule them all",
"12394 string to rule them all",
"12395 string to rule them all",
"12396 string to rule them all",
"12397 string to rule them all",
"12398 string to rule them all",
"12399 string to rule them all",
"12400 string to rule them all",
"12401 string to rule them all",
"12402 string to rule them all",
"12403 string to rule them all",
"12404 string to rule them all",
"12405 string to rule them all",
"12406 string to rule them all",
"12407 string to rule them all",
"12408 string to rule them all",
"12409 string to rule them all",
"12410 string to rule them all",
"12411 string to rule them all",
"12412 string to rule them all",
"12413 string to rule them all",
"12414 string to rule them all",
"12415 string to rule them all",
"12416 string to rule them all",
"12417 string to rule them all",
"12418 string to rule them all",
"12419 string to rule them all",
"12420 string to rule them all",
"12421 string to rule them all",
"12422 string to rule them all",
"12423 string to rule them all",
"12424 string to rule them all",
"12425 string to rule them all",
"12426 string to rule them all",
"12427 string to rule them all",
"12428 string to rule them all",
"12429 string to rule them all",
"12430 string to rule them all",
"12431 string to rule them all",
"12432 string to rule them all",
"12433 string to rule them all",
"12434 string to rule them all",
"12435 string to rule them all",
"12436 string to rule them all",
"12437 string to rule them all",
"12438 string to rule them all",
"12439 string to rule them all",
"12440 string to rule them all",
"12441 string to rule them all",
"12442 string to rule them all",
"12443 string to rule them all",
"12444 string to rule them all",
"12445 string to rule them all",
"12446 string to rule them all",
"12447 string to rule them all",
"12448 string to rule them all",
"12449 string to rule them all",
"12450 string to rule them all",
"12451 string to rule them all",
"12452 string to rule them all",
"12453 string to rule them all",
"12454 string to rule them all",
"12455 string to rule them all",
"12456 string to rule them all",
"12457 string to rule them all",
"12458 string to rule them all",
"12459 string to rule them all",
"12460 string to rule them all",
"12461 string to rule them all",
"12462 string to rule them all",
"12463 string to rule them all",
"12464 string to rule them all",
"12465 string to rule them all",
"12466 string to rule them all",
"12467 string to rule them all",
"12468 string to rule them all",
"12469 string to rule them all",
"12470 string to rule them all",
"12471 string to rule them all",
"12472 string to rule them all",
"12473 string to rule them all",
"12474 string to rule them all",
"12475 string to rule them all",
"12476 string to rule them all",
"12477 string to rule them all",
"12478 string to rule them all",
"12479 string to rule them all",
"12480 string to rule them all",
"12481 string to rule them all",
"12482 string to rule them all",
"12483 string to rule them all",
"12484 string to rule them all",
"12485 string to rule them all",
"12486 string to rule them all",
"12487 string to rule them all",
"12488 string to rule them all",
"12489 string to rule them all",
"12490 string to rule them all",
"12491 string to rule them all",
"12492 string to rule them all",
"12493 string to rule them all",
"12494 string to rule them all",
"12495 string to rule them all",
"12496 string to rule them all",
"12497 string to rule them all",
"12498 string to rule them all",
"12499 string to rule them all",
"12500 string to rule them all",
"12501 string to rule them all",
"12502 string to rule them all",
"12503 string to rule them all",
"12504 string to rule them all",
"12505 string to rule them all",
"12506 string to rule them all",
"12507 string to rule them all",
"12508 string to rule them all",
"12509 string to rule them all",
"12510 string to rule them all",
"12511 string to rule them all",
"12512 string to rule them all",
"12513 string to rule them all",
"12514 string to rule them all",
"12515 string to rule them all",
"12516 string to rule them all",
"12517 string to rule them all",
"12518 string to rule them all",
"12519 string to rule them all",
"12520 string to rule them all",
"12521 string to rule them all",
"12522 string to rule them all",
"12523 string to rule them all",
"12524 string to rule them all",
"12525 string to rule them all",
"12526 string to rule them all",
"12527 string to rule them all",
"12528 string to rule them all",
"12529 string to rule them all",
"12530 string to rule them all",
"12531 string to rule them all",
"12532 string to rule them all",
"12533 string to rule them all",
"12534 string to rule them all",
"12535 string to rule them all",
"12536 string to rule them all",
"12537 string to rule them all",
"12538 string to rule them all",
"12539 string to rule them all",
"12540 string to rule them all",
"12541 string to rule them all",
"12542 string to rule them all",
"12543 string to rule them all",
"12544 string to rule them all",
"12545 string to rule them all",
"12546 string to rule them all",
"12547 string to rule them all",
"12548 string to rule them all",
"12549 string to rule them all",
"12550 string to rule them all",
"12551 string to rule them all",
"12552 string to rule them all",
"12553 string to rule them all",
"12554 string to rule them all",
"12555 string to rule them all",
"12556 string to rule them all",
"12557 string to rule them all",
"12558 string to rule them all",
"12559 string to rule them all",
"12560 string to rule them all",
"12561 string to rule them all",
"12562 string to rule them all",
"12563 string to rule them all",
"12564 string to rule them all",
"12565 string to rule them all",
"12566 string to rule them all",
"12567 string to rule them all",
"12568 string to rule them all",
"12569 string to rule them all",
"12570 string to rule them all",
"12571 string to rule them all",
"12572 string to rule them all",
"12573 string to rule them all",
"12574 string to rule them all",
"12575 string to rule them all",
"12576 string to rule them all",
"12577 string to rule them all",
"12578 string to rule them all",
"12579 string to rule them all",
"12580 string to rule them all",
"12581 string to rule them all",
"12582 string to rule them all",
"12583 string to rule them all",
"12584 string to rule them all",
"12585 string to rule them all",
"12586 string to rule them all",
"12587 string to rule them all",
"12588 string to rule them all",
"12589 string to rule them all",
"12590 string to rule them all",
"12591 string to rule them all",
"12592 string to rule them all",
"12593 string to rule them all",
"12594 string to rule them all",
"12595 string to rule them all",
"12596 string to rule them all",
"12597 string to rule them all",
"12598 string to rule them all",
"12599 string to rule them all",
"12600 string to rule them all",
"12601 string to rule them all",
"12602 string to rule them all",
"12603 string to rule them all",
"12604 string to rule them all",
"12605 string to rule them all",
"12606 string to rule them all",
"12607 string to rule them all",
"12608 string to rule them all",
"12609 string to rule them all",
"12610 string to rule them all",
"12611 string to rule them all",
"12612 string to rule them all",
"12613 string to rule them all",
"12614 string to rule them all",
"12615 string to rule them all",
"12616 string to rule them all",
"12617 string to rule them all",
"12618 string to rule them all",
"12619 string to rule them all",
"12620 string to rule them all",
"12621 string to rule them all",
"12622 string to rule them all",
"12623 string to rule them all",
"12624 string to rule them all",
"12625 string to rule them all",
"12626 string to rule them all",
"12627 string to rule them all",
"12628 string to rule them all",
"12629 string to rule them all",
"12630 string to rule them all",
"12631 string to rule them all",
"12632 string to rule them all",
"12633 string to rule them all",
"12634 string to rule them all",
"12635 string to rule them all",
"12636 string to rule them all",
"12637 string to rule them all",
"12638 string to rule them all",
"12639 string to rule them all",
"12640 string to rule them all",
"12641 string to rule them all",
"12642 string to rule them all",
"12643 string to rule them all",
"12644 string to rule them all",
"12645 string to rule them all",
"12646 string to rule them all",
"12647 string to rule them all",
"12648 string to rule them all",
"12649 string to rule them all",
"12650 string to rule them all",
"12651 string to rule them all",
"12652 string to rule them all",
"12653 string to rule them all",
"12654 string to rule them all",
"12655 string to rule them all",
"12656 string to rule them all",
"12657 string to rule them all",
"12658 string to rule them all",
"12659 string to rule them all",
"12660 string to rule them all",
"12661 string to rule them all",
"12662 string to rule them all",
"12663 string to rule them all",
"12664 string to rule them all",
"12665 string to rule them all",
"12666 string to rule them all",
"12667 string to rule them all",
"12668 string to rule them all",
"12669 string to rule them all",
"12670 string to rule them all",
"12671 string to rule them all",
"12672 string to rule them all",
"12673 string to rule them all",
"12674 string to rule them all",
"12675 string to rule them all",
"12676 string to rule them all",
"12677 string to rule them all",
"12678 string to rule them all",
"12679 string to rule them all",
"12680 string to rule them all",
"12681 string to rule them all",
"12682 string to rule them all",
"12683 string to rule them all",
"12684 string to rule them all",
"12685 string to rule them all",
"12686 string to rule them all",
"12687 string to rule them all",
"12688 string to rule them all",
"12689 string to rule them all",
"12690 string to rule them all",
"12691 string to rule them all",
"12692 string to rule them all",
"12693 string to rule them all",
"12694 string to rule them all",
"12695 string to rule them all",
"12696 string to rule them all",
"12697 string to rule them all",
"12698 string to rule them all",
"12699 string to rule them all",
"12700 string to rule them all",
"12701 string to rule them all",
"12702 string to rule them all",
"12703 string to rule them all",
"12704 string to rule them all",
"12705 string to rule them all",
"12706 string to rule them all",
"12707 string to rule them all",
"12708 string to rule them all",
"12709 string to rule them all",
"12710 string to rule them all",
"12711 string to rule them all",
"12712 string to rule them all",
"12713 string to rule them all",
"12714 string to rule them all",
"12715 string to rule them all",
"12716 string to rule them all",
"12717 string to rule them all",
"12718 string to rule them all",
"12719 string to rule them all",
"12720 string to rule them all",
"12721 string to rule them all",
"12722 string to rule them all",
"12723 string to rule them all",
"12724 string to rule them all",
"12725 string to rule them all",
"12726 string to rule them all",
"12727 string to rule them all",
"12728 string to rule them all",
"12729 string to rule them all",
"12730 string to rule them all",
"12731 string to rule them all",
"12732 string to rule them all",
"12733 string to rule them all",
"12734 string to rule them all",
"12735 string to rule them all",
"12736 string to rule them all",
"12737 string to rule them all",
"12738 string to rule them all",
"12739 string to rule them all",
"12740 string to rule them all",
"12741 string to rule them all",
"12742 string to rule them all",
"12743 string to rule them all",
"12744 string to rule them all",
"12745 string to rule them all",
"12746 string to rule them all",
"12747 string to rule them all",
"12748 string to rule them all",
"12749 string to rule them all",
"12750 string to rule them all",
"12751 string to rule them all",
"12752 string to rule them all",
"12753 string to rule them all",
"12754 string to rule them all",
"12755 string to rule them all",
"12756 string to rule them all",
"12757 string to rule them all",
"12758 string to rule them all",
"12759 string to rule them all",
"12760 string to rule them all",
"12761 string to rule them all",
"12762 string to rule them all",
"12763 string to rule them all",
"12764 string to rule them all",
"12765 string to rule them all",
"12766 string to rule them all",
"12767 string to rule them all",
"12768 string to rule them all",
"12769 string to rule them all",
"12770 string to rule them all",
"12771 string to rule them all",
"12772 string to rule them all",
"12773 string to rule them all",
"12774 string to rule them all",
"12775 string to rule them all",
"12776 string to rule them all",
"12777 string to rule them all",
"12778 string to rule them all",
"12779 string to rule them all",
"12780 string to rule them all",
"12781 string to rule them all",
"12782 string to rule them all",
"12783 string to rule them all",
"12784 string to rule them all",
"12785 string to rule them all",
"12786 string to rule them all",
"12787 string to rule them all",
"12788 string to rule them all",
"12789 string to rule them all",
"12790 string to rule them all",
"12791 string to rule them all",
"12792 string to rule them all",
"12793 string to rule them all",
"12794 string to rule them all",
"12795 string to rule them all",
"12796 string to rule them all",
"12797 string to rule them all",
"12798 string to rule them all",
"12799 string to rule them all",
"12800 string to rule them all",
"12801 string to rule them all",
"12802 string to rule them all",
"12803 string to rule them all",
"12804 string to rule them all",
"12805 string to rule them all",
"12806 string to rule them all",
"12807 string to rule them all",
"12808 string to rule them all",
"12809 string to rule them all",
"12810 string to rule them all",
"12811 string to rule them all",
"12812 string to rule them all",
"12813 string to rule them all",
"12814 string to rule them all",
"12815 string to rule them all",
"12816 string to rule them all",
"12817 string to rule them all",
"12818 string to rule them all",
"12819 string to rule them all",
"12820 string to rule them all",
"12821 string to rule them all",
"12822 string to rule them all",
"12823 string to rule them all",
"12824 string to rule them all",
"12825 string to rule them all",
"12826 string to rule them all",
"12827 string to rule them all",
"12828 string to rule them all",
"12829 string to rule them all",
"12830 string to rule them all",
"12831 string to rule them all",
"12832 string to rule them all",
"12833 string to rule them all",
"12834 string to rule them all",
"12835 string to rule them all",
"12836 string to rule them all",
"12837 string to rule them all",
"12838 string to rule them all",
"12839 string to rule them all",
"12840 string to rule them all",
"12841 string to rule them all",
"12842 string to rule them all",
"12843 string to rule them all",
"12844 string to rule them all",
"12845 string to rule them all",
"12846 string to rule them all",
"12847 string to rule them all",
"12848 string to rule them all",
"12849 string to rule them all",
"12850 string to rule them all",
"12851 string to rule them all",
"12852 string to rule them all",
"12853 string to rule them all",
"12854 string to rule them all",
"12855 string to rule them all",
"12856 string to rule them all",
"12857 string to rule them all",
"12858 string to rule them all",
"12859 string to rule them all",
"12860 string to rule them all",
"12861 string to rule them all",
"12862 string to rule them all",
"12863 string to rule them all",
"12864 string to rule them all",
"12865 string to rule them all",
"12866 string to rule them all",
"12867 string to rule them all",
"12868 string to rule them all",
"12869 string to rule them all",
"12870 string to rule them all",
"12871 string to rule them all",
"12872 string to rule them all",
"12873 string to rule them all",
"12874 string to rule them all",
"12875 string to rule them all",
"12876 string to rule them all",
"12877 string to rule them all",
"12878 string to rule them all",
"12879 string to rule them all",
"12880 string to rule them all",
"12881 string to rule them all",
"12882 string to rule them all",
"12883 string to rule them all",
"12884 string to rule them all",
"12885 string to rule them all",
"12886 string to rule them all",
"12887 string to rule them all",
"12888 string to rule them all",
"12889 string to rule them all",
"12890 string to rule them all",
"12891 string to rule them all",
"12892 string to rule them all",
"12893 string to rule them all",
"12894 string to rule them all",
"12895 string to rule them all",
"12896 string to rule them all",
"12897 string to rule them all",
"12898 string to rule them all",
"12899 string to rule them all",
"12900 string to rule them all",
"12901 string to rule them all",
"12902 string to rule them all",
"12903 string to rule them all",
"12904 string to rule them all",
"12905 string to rule them all",
"12906 string to rule them all",
"12907 string to rule them all",
"12908 string to rule them all",
"12909 string to rule them all",
"12910 string to rule them all",
"12911 string to rule them all",
"12912 string to rule them all",
"12913 string to rule them all",
"12914 string to rule them all",
"12915 string to rule them all",
"12916 string to rule them all",
"12917 string to rule them all",
"12918 string to rule them all",
"12919 string to rule them all",
"12920 string to rule them all",
"12921 string to rule them all",
"12922 string to rule them all",
"12923 string to rule them all",
"12924 string to rule them all",
"12925 string to rule them all",
"12926 string to rule them all",
"12927 string to rule them all",
"12928 string to rule them all",
"12929 string to rule them all",
"12930 string to rule them all",
"12931 string to rule them all",
"12932 string to rule them all",
"12933 string to rule them all",
"12934 string to rule them all",
"12935 string to rule them all",
"12936 string to rule them all",
"12937 string to rule them all",
"12938 string to rule them all",
"12939 string to rule them all",
"12940 string to rule them all",
"12941 string to rule them all",
"12942 string to rule them all",
"12943 string to rule them all",
"12944 string to rule them all",
"12945 string to rule them all",
"12946 string to rule them all",
"12947 string to rule them all",
"12948 string to rule them all",
"12949 string to rule them all",
"12950 string to rule them all",
"12951 string to rule them all",
"12952 string to rule them all",
"12953 string to rule them all",
"12954 string to rule them all",
"12955 string to rule them all",
"12956 string to rule them all",
"12957 string to rule them all",
"12958 string to rule them all",
"12959 string to rule them all",
"12960 string to rule them all",
"12961 string to rule them all",
"12962 string to rule them all",
"12963 string to rule them all",
"12964 string to rule them all",
"12965 string to rule them all",
"12966 string to rule them all",
"12967 string to rule them all",
"12968 string to rule them all",
"12969 string to rule them all",
"12970 string to rule them all",
"12971 string to rule them all",
"12972 string to rule them all",
"12973 string to rule them all",
"12974 string to rule them all",
"12975 string to rule them all",
"12976 string to rule them all",
"12977 string to rule them all",
"12978 string to rule them all",
"12979 string to rule them all",
"12980 string to rule them all",
"12981 string to rule them all",
"12982 string to rule them all",
"12983 string to rule them all",
"12984 string to rule them all",
"12985 string to rule them all",
"12986 string to rule them all",
"12987 string to rule them all",
"12988 string to rule them all",
"12989 string to rule them all",
"12990 string to rule them all",
"12991 string to rule them all",
"12992 string to rule them all",
"12993 string to rule them all",
"12994 string to rule them all",
"12995 string to rule them all",
"12996 string to rule them all",
"12997 string to rule them all",
"12998 string to rule them all",
"12999 string to rule them all",
"13000 string to rule them all",
"13001 string to rule them all",
"13002 string to rule them all",
"13003 string to rule them all",
"13004 string to rule them all",
"13005 string to rule them all",
"13006 string to rule them all",
"13007 string to rule them all",
"13008 string to rule them all",
"13009 string to rule them all",
"13010 string to rule them all",
"13011 string to rule them all",
"13012 string to rule them all",
"13013 string to rule them all",
"13014 string to rule them all",
"13015 string to rule them all",
"13016 string to rule them all",
"13017 string to rule them all",
"13018 string to rule them all",
"13019 string to rule them all",
"13020 string to rule them all",
"13021 string to rule them all",
"13022 string to rule them all",
"13023 string to rule them all",
"13024 string to rule them all",
"13025 string to rule them all",
"13026 string to rule them all",
"13027 string to rule them all",
"13028 string to rule them all",
"13029 string to rule them all",
"13030 string to rule them all",
"13031 string to rule them all",
"13032 string to rule them all",
"13033 string to rule them all",
"13034 string to rule them all",
"13035 string to rule them all",
"13036 string to rule them all",
"13037 string to rule them all",
"13038 string to rule them all",
"13039 string to rule them all",
"13040 string to rule them all",
"13041 string to rule them all",
"13042 string to rule them all",
"13043 string to rule them all",
"13044 string to rule them all",
"13045 string to rule them all",
"13046 string to rule them all",
"13047 string to rule them all",
"13048 string to rule them all",
"13049 string to rule them all",
"13050 string to rule them all",
"13051 string to rule them all",
"13052 string to rule them all",
"13053 string to rule them all",
"13054 string to rule them all",
"13055 string to rule them all",
"13056 string to rule them all",
"13057 string to rule them all",
"13058 string to rule them all",
"13059 string to rule them all",
"13060 string to rule them all",
"13061 string to rule them all",
"13062 string to rule them all",
"13063 string to rule them all",
"13064 string to rule them all",
"13065 string to rule them all",
"13066 string to rule them all",
"13067 string to rule them all",
"13068 string to rule them all",
"13069 string to rule them all",
"13070 string to rule them all",
"13071 string to rule them all",
"13072 string to rule them all",
"13073 string to rule them all",
"13074 string to rule them all",
"13075 string to rule them all",
"13076 string to rule them all",
"13077 string to rule them all",
"13078 string to rule them all",
"13079 string to rule them all",
"13080 string to rule them all",
"13081 string to rule them all",
"13082 string to rule them all",
"13083 string to rule them all",
"13084 string to rule them all",
"13085 string to rule them all",
"13086 string to rule them all",
"13087 string to rule them all",
"13088 string to rule them all",
"13089 string to rule them all",
"13090 string to rule them all",
"13091 string to rule them all",
"13092 string to rule them all",
"13093 string to rule them all",
"13094 string to rule them all",
"13095 string to rule them all",
"13096 string to rule them all",
"13097 string to rule them all",
"13098 string to rule them all",
"13099 string to rule them all",
"13100 string to rule them all",
"13101 string to rule them all",
"13102 string to rule them all",
"13103 string to rule them all",
"13104 string to rule them all",
"13105 string to rule them all",
"13106 string to rule them all",
"13107 string to rule them all",
"13108 string to rule them all",
"13109 string to rule them all",
"13110 string to rule them all",
"13111 string to rule them all",
"13112 string to rule them all",
"13113 string to rule them all",
"13114 string to rule them all",
"13115 string to rule them all",
"13116 string to rule them all",
"13117 string to rule them all",
"13118 string to rule them all",
"13119 string to rule them all",
"13120 string to rule them all",
"13121 string to rule them all",
"13122 string to rule them all",
"13123 string to rule them all",
"13124 string to rule them all",
"13125 string to rule them all",
"13126 string to rule them all",
"13127 string to rule them all",
"13128 string to rule them all",
"13129 string to rule them all",
"13130 string to rule them all",
"13131 string to rule them all",
"13132 string to rule them all",
"13133 string to rule them all",
"13134 string to rule them all",
"13135 string to rule them all",
"13136 string to rule them all",
"13137 string to rule them all",
"13138 string to rule them all",
"13139 string to rule them all",
"13140 string to rule them all",
"13141 string to rule them all",
"13142 string to rule them all",
"13143 string to rule them all",
"13144 string to rule them all",
"13145 string to rule them all",
"13146 string to rule them all",
"13147 string to rule them all",
"13148 string to rule them all",
"13149 string to rule them all",
"13150 string to rule them all",
"13151 string to rule them all",
"13152 string to rule them all",
"13153 string to rule them all",
"13154 string to rule them all",
"13155 string to rule them all",
"13156 string to rule them all",
"13157 string to rule them all",
"13158 string to rule them all",
"13159 string to rule them all",
"13160 string to rule them all",
"13161 string to rule them all",
"13162 string to rule them all",
"13163 string to rule them all",
"13164 string to rule them all",
"13165 string to rule them all",
"13166 string to rule them all",
"13167 string to rule them all",
"13168 string to rule them all",
"13169 string to rule them all",
"13170 string to rule them all",
"13171 string to rule them all",
"13172 string to rule them all",
"13173 string to rule them all",
"13174 string to rule them all",
"13175 string to rule them all",
"13176 string to rule them all",
"13177 string to rule them all",
"13178 string to rule them all",
"13179 string to rule them all",
"13180 string to rule them all",
"13181 string to rule them all",
"13182 string to rule them all",
"13183 string to rule them all",
"13184 string to rule them all",
"13185 string to rule them all",
"13186 string to rule them all",
"13187 string to rule them all",
"13188 string to rule them all",
"13189 string to rule them all",
"13190 string to rule them all",
"13191 string to rule them all",
"13192 string to rule them all",
"13193 string to rule them all",
"13194 string to rule them all",
"13195 string to rule them all",
"13196 string to rule them all",
"13197 string to rule them all",
"13198 string to rule them all",
"13199 string to rule them all",
"13200 string to rule them all",
"13201 string to rule them all",
"13202 string to rule them all",
"13203 string to rule them all",
"13204 string to rule them all",
"13205 string to rule them all",
"13206 string to rule them all",
"13207 string to rule them all",
"13208 string to rule them all",
"13209 string to rule them all",
"13210 string to rule them all",
"13211 string to rule them all",
"13212 string to rule them all",
"13213 string to rule them all",
"13214 string to rule them all",
"13215 string to rule them all",
"13216 string to rule them all",
"13217 string to rule them all",
"13218 string to rule them all",
"13219 string to rule them all",
"13220 string to rule them all",
"13221 string to rule them all",
"13222 string to rule them all",
"13223 string to rule them all",
"13224 string to rule them all",
"13225 string to rule them all",
"13226 string to rule them all",
"13227 string to rule them all",
"13228 string to rule them all",
"13229 string to rule them all",
"13230 string to rule them all",
"13231 string to rule them all",
"13232 string to rule them all",
"13233 string to rule them all",
"13234 string to rule them all",
"13235 string to rule them all",
"13236 string to rule them all",
"13237 string to rule them all",
"13238 string to rule them all",
"13239 string to rule them all",
"13240 string to rule them all",
"13241 string to rule them all",
"13242 string to rule them all",
"13243 string to rule them all",
"13244 string to rule them all",
"13245 string to rule them all",
"13246 string to rule them all",
"13247 string to rule them all",
"13248 string to rule them all",
"13249 string to rule them all",
"13250 string to rule them all",
"13251 string to rule them all",
"13252 string to rule them all",
"13253 string to rule them all",
"13254 string to rule them all",
"13255 string to rule them all",
"13256 string to rule them all",
"13257 string to rule them all",
"13258 string to rule them all",
"13259 string to rule them all",
"13260 string to rule them all",
"13261 string to rule them all",
"13262 string to rule them all",
"13263 string to rule them all",
"13264 string to rule them all",
"13265 string to rule them all",
"13266 string to rule them all",
"13267 string to rule them all",
"13268 string to rule them all",
"13269 string to rule them all",
"13270 string to rule them all",
"13271 string to rule them all",
"13272 string to rule them all",
"13273 string to rule them all",
"13274 string to rule them all",
"13275 string to rule them all",
"13276 string to rule them all",
"13277 string to rule them all",
"13278 string to rule them all",
"13279 string to rule them all",
"13280 string to rule them all",
"13281 string to rule them all",
"13282 string to rule them all",
"13283 string to rule them all",
"13284 string to rule them all",
"13285 string to rule them all",
"13286 string to rule them all",
"13287 string to rule them all",
"13288 string to rule them all",
"13289 string to rule them all",
"13290 string to rule them all",
"13291 string to rule them all",
"13292 string to rule them all",
"13293 string to rule them all",
"13294 string to rule them all",
"13295 string to rule them all",
"13296 string to rule them all",
"13297 string to rule them all",
"13298 string to rule them all",
"13299 string to rule them all",
"13300 string to rule them all",
"13301 string to rule them all",
"13302 string to rule them all",
"13303 string to rule them all",
"13304 string to rule them all",
"13305 string to rule them all",
"13306 string to rule them all",
"13307 string to rule them all",
"13308 string to rule them all",
"13309 string to rule them all",
"13310 string to rule them all",
"13311 string to rule them all",
"13312 string to rule them all",
"13313 string to rule them all",
"13314 string to rule them all",
"13315 string to rule them all",
"13316 string to rule them all",
"13317 string to rule them all",
"13318 string to rule them all",
"13319 string to rule them all",
"13320 string to rule them all",
"13321 string to rule them all",
"13322 string to rule them all",
"13323 string to rule them all",
"13324 string to rule them all",
"13325 string to rule them all",
"13326 string to rule them all",
"13327 string to rule them all",
"13328 string to rule them all",
"13329 string to rule them all",
"13330 string to rule them all",
"13331 string to rule them all",
"13332 string to rule them all",
"13333 string to rule them all",
"13334 string to rule them all",
"13335 string to rule them all",
"13336 string to rule them all",
"13337 string to rule them all",
"13338 string to rule them all",
"13339 string to rule them all",
"13340 string to rule them all",
"13341 string to rule them all",
"13342 string to rule them all",
"13343 string to rule them all",
"13344 string to rule them all",
"13345 string to rule them all",
"13346 string to rule them all",
"13347 string to rule them all",
"13348 string to rule them all",
"13349 string to rule them all",
"13350 string to rule them all",
"13351 string to rule them all",
"13352 string to rule them all",
"13353 string to rule them all",
"13354 string to rule them all",
"13355 string to rule them all",
"13356 string to rule them all",
"13357 string to rule them all",
"13358 string to rule them all",
"13359 string to rule them all",
"13360 string to rule them all",
"13361 string to rule them all",
"13362 string to rule them all",
"13363 string to rule them all",
"13364 string to rule them all",
"13365 string to rule them all",
"13366 string to rule them all",
"13367 string to rule them all",
"13368 string to rule them all",
"13369 string to rule them all",
"13370 string to rule them all",
"13371 string to rule them all",
"13372 string to rule them all",
"13373 string to rule them all",
"13374 string to rule them all",
"13375 string to rule them all",
"13376 string to rule them all",
"13377 string to rule them all",
"13378 string to rule them all",
"13379 string to rule them all",
"13380 string to rule them all",
"13381 string to rule them all",
"13382 string to rule them all",
"13383 string to rule them all",
"13384 string to rule them all",
"13385 string to rule them all",
"13386 string to rule them all",
"13387 string to rule them all",
"13388 string to rule them all",
"13389 string to rule them all",
"13390 string to rule them all",
"13391 string to rule them all",
"13392 string to rule them all",
"13393 string to rule them all",
"13394 string to rule them all",
"13395 string to rule them all",
"13396 string to rule them all",
"13397 string to rule them all",
"13398 string to rule them all",
"13399 string to rule them all",
"13400 string to rule them all",
"13401 string to rule them all",
"13402 string to rule them all",
"13403 string to rule them all",
"13404 string to rule them all",
"13405 string to rule them all",
"13406 string to rule them all",
"13407 string to rule them all",
"13408 string to rule them all",
"13409 string to rule them all",
"13410 string to rule them all",
"13411 string to rule them all",
"13412 string to rule them all",
"13413 string to rule them all",
"13414 string to rule them all",
"13415 string to rule them all",
"13416 string to rule them all",
"13417 string to rule them all",
"13418 string to rule them all",
"13419 string to rule them all",
"13420 string to rule them all",
"13421 string to rule them all",
"13422 string to rule them all",
"13423 string to rule them all",
"13424 string to rule them all",
"13425 string to rule them all",
"13426 string to rule them all",
"13427 string to rule them all",
"13428 string to rule them all",
"13429 string to rule them all",
"13430 string to rule them all",
"13431 string to rule them all",
"13432 string to rule them all",
"13433 string to rule them all",
"13434 string to rule them all",
"13435 string to rule them all",
"13436 string to rule them all",
"13437 string to rule them all",
"13438 string to rule them all",
"13439 string to rule them all",
"13440 string to rule them all",
"13441 string to rule them all",
"13442 string to rule them all",
"13443 string to rule them all",
"13444 string to rule them all",
"13445 string to rule them all",
"13446 string to rule them all",
"13447 string to rule them all",
"13448 string to rule them all",
"13449 string to rule them all",
"13450 string to rule them all",
"13451 string to rule them all",
"13452 string to rule them all",
"13453 string to rule them all",
"13454 string to rule them all",
"13455 string to rule them all",
"13456 string to rule them all",
"13457 string to rule them all",
"13458 string to rule them all",
"13459 string to rule them all",
"13460 string to rule them all",
"13461 string to rule them all",
"13462 string to rule them all",
"13463 string to rule them all",
"13464 string to rule them all",
"13465 string to rule them all",
"13466 string to rule them all",
"13467 string to rule them all",
"13468 string to rule them all",
"13469 string to rule them all",
"13470 string to rule them all",
"13471 string to rule them all",
"13472 string to rule them all",
"13473 string to rule them all",
"13474 string to rule them all",
"13475 string to rule them all",
"13476 string to rule them all",
"13477 string to rule them all",
"13478 string to rule them all",
"13479 string to rule them all",
"13480 string to rule them all",
"13481 string to rule them all",
"13482 string to rule them all",
"13483 string to rule them all",
"13484 string to rule them all",
"13485 string to rule them all",
"13486 string to rule them all",
"13487 string to rule them all",
"13488 string to rule them all",
"13489 string to rule them all",
"13490 string to rule them all",
"13491 string to rule them all",
"13492 string to rule them all",
"13493 string to rule them all",
"13494 string to rule them all",
"13495 string to rule them all",
"13496 string to rule them all",
"13497 string to rule them all",
"13498 string to rule them all",
"13499 string to rule them all",
"13500 string to rule them all",
"13501 string to rule them all",
"13502 string to rule them all",
"13503 string to rule them all",
"13504 string to rule them all",
"13505 string to rule them all",
"13506 string to rule them all",
"13507 string to rule them all",
"13508 string to rule them all",
"13509 string to rule them all",
"13510 string to rule them all",
"13511 string to rule them all",
"13512 string to rule them all",
"13513 string to rule them all",
"13514 string to rule them all",
"13515 string to rule them all",
"13516 string to rule them all",
"13517 string to rule them all",
"13518 string to rule them all",
"13519 string to rule them all",
"13520 string to rule them all",
"13521 string to rule them all",
"13522 string to rule them all",
"13523 string to rule them all",
"13524 string to rule them all",
"13525 string to rule them all",
"13526 string to rule them all",
"13527 string to rule them all",
"13528 string to rule them all",
"13529 string to rule them all",
"13530 string to rule them all",
"13531 string to rule them all",
"13532 string to rule them all",
"13533 string to rule them all",
"13534 string to rule them all",
"13535 string to rule them all",
"13536 string to rule them all",
"13537 string to rule them all",
"13538 string to rule them all",
"13539 string to rule them all",
"13540 string to rule them all",
"13541 string to rule them all",
"13542 string to rule them all",
"13543 string to rule them all",
"13544 string to rule them all",
"13545 string to rule them all",
"13546 string to rule them all",
"13547 string to rule them all",
"13548 string to rule them all",
"13549 string to rule them all",
"13550 string to rule them all",
"13551 string to rule them all",
"13552 string to rule them all",
"13553 string to rule them all",
"13554 string to rule them all",
"13555 string to rule them all",
"13556 string to rule them all",
"13557 string to rule them all",
"13558 string to rule them all",
"13559 string to rule them all",
"13560 string to rule them all",
"13561 string to rule them all",
"13562 string to rule them all",
"13563 string to rule them all",
"13564 string to rule them all",
"13565 string to rule them all",
"13566 string to rule them all",
"13567 string to rule them all",
"13568 string to rule them all",
"13569 string to rule them all",
"13570 string to rule them all",
"13571 string to rule them all",
"13572 string to rule them all",
"13573 string to rule them all",
"13574 string to rule them all",
"13575 string to rule them all",
"13576 string to rule them all",
"13577 string to rule them all",
"13578 string to rule them all",
"13579 string to rule them all",
"13580 string to rule them all",
"13581 string to rule them all",
"13582 string to rule them all",
"13583 string to rule them all",
"13584 string to rule them all",
"13585 string to rule them all",
"13586 string to rule them all",
"13587 string to rule them all",
"13588 string to rule them all",
"13589 string to rule them all",
"13590 string to rule them all",
"13591 string to rule them all",
"13592 string to rule them all",
"13593 string to rule them all",
"13594 string to rule them all",
"13595 string to rule them all",
"13596 string to rule them all",
"13597 string to rule them all",
"13598 string to rule them all",
"13599 string to rule them all",
"13600 string to rule them all",
"13601 string to rule them all",
"13602 string to rule them all",
"13603 string to rule them all",
"13604 string to rule them all",
"13605 string to rule them all",
"13606 string to rule them all",
"13607 string to rule them all",
"13608 string to rule them all",
"13609 string to rule them all",
"13610 string to rule them all",
"13611 string to rule them all",
"13612 string to rule them all",
"13613 string to rule them all",
"13614 string to rule them all",
"13615 string to rule them all",
"13616 string to rule them all",
"13617 string to rule them all",
"13618 string to rule them all",
"13619 string to rule them all",
"13620 string to rule them all",
"13621 string to rule them all",
"13622 string to rule them all",
"13623 string to rule them all",
"13624 string to rule them all",
"13625 string to rule them all",
"13626 string to rule them all",
"13627 string to rule them all",
"13628 string to rule them all",
"13629 string to rule them all",
"13630 string to rule them all",
"13631 string to rule them all",
"13632 string to rule them all",
"13633 string to rule them all",
"13634 string to rule them all",
"13635 string to rule them all",
"13636 string to rule them all",
"13637 string to rule them all",
"13638 string to rule them all",
"13639 string to rule them all",
"13640 string to rule them all",
"13641 string to rule them all",
"13642 string to rule them all",
"13643 string to rule them all",
"13644 string to rule them all",
"13645 string to rule them all",
"13646 string to rule them all",
"13647 string to rule them all",
"13648 string to rule them all",
"13649 string to rule them all",
"13650 string to rule them all",
"13651 string to rule them all",
"13652 string to rule them all",
"13653 string to rule them all",
"13654 string to rule them all",
"13655 string to rule them all",
"13656 string to rule them all",
"13657 string to rule them all",
"13658 string to rule them all",
"13659 string to rule them all",
"13660 string to rule them all",
"13661 string to rule them all",
"13662 string to rule them all",
"13663 string to rule them all",
"13664 string to rule them all",
"13665 string to rule them all",
"13666 string to rule them all",
"13667 string to rule them all",
"13668 string to rule them all",
"13669 string to rule them all",
"13670 string to rule them all",
"13671 string to rule them all",
"13672 string to rule them all",
"13673 string to rule them all",
"13674 string to rule them all",
"13675 string to rule them all",
"13676 string to rule them all",
"13677 string to rule them all",
"13678 string to rule them all",
"13679 string to rule them all",
"13680 string to rule them all",
"13681 string to rule them all",
"13682 string to rule them all",
"13683 string to rule them all",
"13684 string to rule them all",
"13685 string to rule them all",
"13686 string to rule them all",
"13687 string to rule them all",
"13688 string to rule them all",
"13689 string to rule them all",
"13690 string to rule them all",
"13691 string to rule them all",
"13692 string to rule them all",
"13693 string to rule them all",
"13694 string to rule them all",
"13695 string to rule them all",
"13696 string to rule them all",
"13697 string to rule them all",
"13698 string to rule them all",
"13699 string to rule them all",
"13700 string to rule them all",
"13701 string to rule them all",
"13702 string to rule them all",
"13703 string to rule them all",
"13704 string to rule them all",
"13705 string to rule them all",
"13706 string to rule them all",
"13707 string to rule them all",
"13708 string to rule them all",
"13709 string to rule them all",
"13710 string to rule them all",
"13711 string to rule them all",
"13712 string to rule them all",
"13713 string to rule them all",
"13714 string to rule them all",
"13715 string to rule them all",
"13716 string to rule them all",
"13717 string to rule them all",
"13718 string to rule them all",
"13719 string to rule them all",
"13720 string to rule them all",
"13721 string to rule them all",
"13722 string to rule them all",
"13723 string to rule them all",
"13724 string to rule them all",
"13725 string to rule them all",
"13726 string to rule them all",
"13727 string to rule them all",
"13728 string to rule them all",
"13729 string to rule them all",
"13730 string to rule them all",
"13731 string to rule them all",
"13732 string to rule them all",
"13733 string to rule them all",
"13734 string to rule them all",
"13735 string to rule them all",
"13736 string to rule them all",
"13737 string to rule them all",
"13738 string to rule them all",
"13739 string to rule them all",
"13740 string to rule them all",
"13741 string to rule them all",
"13742 string to rule them all",
"13743 string to rule them all",
"13744 string to rule them all",
"13745 string to rule them all",
"13746 string to rule them all",
"13747 string to rule them all",
"13748 string to rule them all",
"13749 string to rule them all",
"13750 string to rule them all",
"13751 string to rule them all",
"13752 string to rule them all",
"13753 string to rule them all",
"13754 string to rule them all",
"13755 string to rule them all",
"13756 string to rule them all",
"13757 string to rule them all",
"13758 string to rule them all",
"13759 string to rule them all",
"13760 string to rule them all",
"13761 string to rule them all",
"13762 string to rule them all",
"13763 string to rule them all",
"13764 string to rule them all",
"13765 string to rule them all",
"13766 string to rule them all",
"13767 string to rule them all",
"13768 string to rule them all",
"13769 string to rule them all",
"13770 string to rule them all",
"13771 string to rule them all",
"13772 string to rule them all",
"13773 string to rule them all",
"13774 string to rule them all",
"13775 string to rule them all",
"13776 string to rule them all",
"13777 string to rule them all",
"13778 string to rule them all",
"13779 string to rule them all",
"13780 string to rule them all",
"13781 string to rule them all",
"13782 string to rule them all",
"13783 string to rule them all",
"13784 string to rule them all",
"13785 string to rule them all",
"13786 string to rule them all",
"13787 string to rule them all",
"13788 string to rule them all",
"13789 string to rule them all",
"13790 string to rule them all",
"13791 string to rule them all",
"13792 string to rule them all",
"13793 string to rule them all",
"13794 string to rule them all",
"13795 string to rule them all",
"13796 string to rule them all",
"13797 string to rule them all",
"13798 string to rule them all",
"13799 string to rule them all",
"13800 string to rule them all",
"13801 string to rule them all",
"13802 string to rule them all",
"13803 string to rule them all",
"13804 string to rule them all",
"13805 string to rule them all",
"13806 string to rule them all",
"13807 string to rule them all",
"13808 string to rule them all",
"13809 string to rule them all",
"13810 string to rule them all",
"13811 string to rule them all",
"13812 string to rule them all",
"13813 string to rule them all",
"13814 string to rule them all",
"13815 string to rule them all",
"13816 string to rule them all",
"13817 string to rule them all",
"13818 string to rule them all",
"13819 string to rule them all",
"13820 string to rule them all",
"13821 string to rule them all",
"13822 string to rule them all",
"13823 string to rule them all",
"13824 string to rule them all",
"13825 string to rule them all",
"13826 string to rule them all",
"13827 string to rule them all",
"13828 string to rule them all",
"13829 string to rule them all",
"13830 string to rule them all",
"13831 string to rule them all",
"13832 string to rule them all",
"13833 string to rule them all",
"13834 string to rule them all",
"13835 string to rule them all",
"13836 string to rule them all",
"13837 string to rule them all",
"13838 string to rule them all",
"13839 string to rule them all",
"13840 string to rule them all",
"13841 string to rule them all",
"13842 string to rule them all",
"13843 string to rule them all",
"13844 string to rule them all",
"13845 string to rule them all",
"13846 string to rule them all",
"13847 string to rule them all",
"13848 string to rule them all",
"13849 string to rule them all",
"13850 string to rule them all",
"13851 string to rule them all",
"13852 string to rule them all",
"13853 string to rule them all",
"13854 string to rule them all",
"13855 string to rule them all",
"13856 string to rule them all",
"13857 string to rule them all",
"13858 string to rule them all",
"13859 string to rule them all",
"13860 string to rule them all",
"13861 string to rule them all",
"13862 string to rule them all",
"13863 string to rule them all",
"13864 string to rule them all",
"13865 string to rule them all",
"13866 string to rule them all",
"13867 string to rule them all",
"13868 string to rule them all",
"13869 string to rule them all",
"13870 string to rule them all",
"13871 string to rule them all",
"13872 string to rule them all",
"13873 string to rule them all",
"13874 string to rule them all",
"13875 string to rule them all",
"13876 string to rule them all",
"13877 string to rule them all",
"13878 string to rule them all",
"13879 string to rule them all",
"13880 string to rule them all",
"13881 string to rule them all",
"13882 string to rule them all",
"13883 string to rule them all",
"13884 string to rule them all",
"13885 string to rule them all",
"13886 string to rule them all",
"13887 string to rule them all",
"13888 string to rule them all",
"13889 string to rule them all",
"13890 string to rule them all",
"13891 string to rule them all",
"13892 string to rule them all",
"13893 string to rule them all",
"13894 string to rule them all",
"13895 string to rule them all",
"13896 string to rule them all",
"13897 string to rule them all",
"13898 string to rule them all",
"13899 string to rule them all",
"13900 string to rule them all",
"13901 string to rule them all",
"13902 string to rule them all",
"13903 string to rule them all",
"13904 string to rule them all",
"13905 string to rule them all",
"13906 string to rule them all",
"13907 string to rule them all",
"13908 string to rule them all",
"13909 string to rule them all",
"13910 string to rule them all",
"13911 string to rule them all",
"13912 string to rule them all",
"13913 string to rule them all",
"13914 string to rule them all",
"13915 string to rule them all",
"13916 string to rule them all",
"13917 string to rule them all",
"13918 string to rule them all",
"13919 string to rule them all",
"13920 string to rule them all",
"13921 string to rule them all",
"13922 string to rule them all",
"13923 string to rule them all",
"13924 string to rule them all",
"13925 string to rule them all",
"13926 string to rule them all",
"13927 string to rule them all",
"13928 string to rule them all",
"13929 string to rule them all",
"13930 string to rule them all",
"13931 string to rule them all",
"13932 string to rule them all",
"13933 string to rule them all",
"13934 string to rule them all",
"13935 string to rule them all",
"13936 string to rule them all",
"13937 string to rule them all",
"13938 string to rule them all",
"13939 string to rule them all",
"13940 string to rule them all",
"13941 string to rule them all",
"13942 string to rule them all",
"13943 string to rule them all",
"13944 string to rule them all",
"13945 string to rule them all",
"13946 string to rule them all",
"13947 string to rule them all",
"13948 string to rule them all",
"13949 string to rule them all",
"13950 string to rule them all",
"13951 string to rule them all",
"13952 string to rule them all",
"13953 string to rule them all",
"13954 string to rule them all",
"13955 string to rule them all",
"13956 string to rule them all",
"13957 string to rule them all",
"13958 string to rule them all",
"13959 string to rule them all",
"13960 string to rule them all",
"13961 string to rule them all",
"13962 string to rule them all",
"13963 string to rule them all",
"13964 string to rule them all",
"13965 string to rule them all",
"13966 string to rule them all",
"13967 string to rule them all",
"13968 string to rule them all",
"13969 string to rule them all",
"13970 string to rule them all",
"13971 string to rule them all",
"13972 string to rule them all",
"13973 string to rule them all",
"13974 string to rule them all",
"13975 string to rule them all",
"13976 string to rule them all",
"13977 string to rule them all",
"13978 string to rule them all",
"13979 string to rule them all",
"13980 string to rule them all",
"13981 string to rule them all",
"13982 string to rule them all",
"13983 string to rule them all",
"13984 string to rule them all",
"13985 string to rule them all",
"13986 string to rule them all",
"13987 string to rule them all",
"13988 string to rule them all",
"13989 string to rule them all",
"13990 string to rule them all",
"13991 string to rule them all",
"13992 string to rule them all",
"13993 string to rule them all",
"13994 string to rule them all",
"13995 string to rule them all",
"13996 string to rule them all",
"13997 string to rule them all",
"13998 string to rule them all",
"13999 string to rule them all",
"14000 string to rule them all",
"14001 string to rule them all",
"14002 string to rule them all",
"14003 string to rule them all",
"14004 string to rule them all",
"14005 string to rule them all",
"14006 string to rule them all",
"14007 string to rule them all",
"14008 string to rule them all",
"14009 string to rule them all",
"14010 string to rule them all",
"14011 string to rule them all",
"14012 string to rule them all",
"14013 string to rule them all",
"14014 string to rule them all",
"14015 string to rule them all",
"14016 string to rule them all",
"14017 string to rule them all",
"14018 string to rule them all",
"14019 string to rule them all",
"14020 string to rule them all",
"14021 string to rule them all",
"14022 string to rule them all",
"14023 string to rule them all",
"14024 string to rule them all",
"14025 string to rule them all",
"14026 string to rule them all",
"14027 string to rule them all",
"14028 string to rule them all",
"14029 string to rule them all",
"14030 string to rule them all",
"14031 string to rule them all",
"14032 string to rule them all",
"14033 string to rule them all",
"14034 string to rule them all",
"14035 string to rule them all",
"14036 string to rule them all",
"14037 string to rule them all",
"14038 string to rule them all",
"14039 string to rule them all",
"14040 string to rule them all",
"14041 string to rule them all",
"14042 string to rule them all",
"14043 string to rule them all",
"14044 string to rule them all",
"14045 string to rule them all",
"14046 string to rule them all",
"14047 string to rule them all",
"14048 string to rule them all",
"14049 string to rule them all",
"14050 string to rule them all",
"14051 string to rule them all",
"14052 string to rule them all",
"14053 string to rule them all",
"14054 string to rule them all",
"14055 string to rule them all",
"14056 string to rule them all",
"14057 string to rule them all",
"14058 string to rule them all",
"14059 string to rule them all",
"14060 string to rule them all",
"14061 string to rule them all",
"14062 string to rule them all",
"14063 string to rule them all",
"14064 string to rule them all",
"14065 string to rule them all",
"14066 string to rule them all",
"14067 string to rule them all",
"14068 string to rule them all",
"14069 string to rule them all",
"14070 string to rule them all",
"14071 string to rule them all",
"14072 string to rule them all",
"14073 string to rule them all",
"14074 string to rule them all",
"14075 string to rule them all",
"14076 string to rule them all",
"14077 string to rule them all",
"14078 string to rule them all",
"14079 string to rule them all",
"14080 string to rule them all",
"14081 string to rule them all",
"14082 string to rule them all",
"14083 string to rule them all",
"14084 string to rule them all",
"14085 string to rule them all",
"14086 string to rule them all",
"14087 string to rule them all",
"14088 string to rule them all",
"14089 string to rule them all",
"14090 string to rule them all",
"14091 string to rule them all",
"14092 string to rule them all",
"14093 string to rule them all",
"14094 string to rule them all",
"14095 string to rule them all",
"14096 string to rule them all",
"14097 string to rule them all",
"14098 string to rule them all",
"14099 string to rule them all",
"14100 string to rule them all",
"14101 string to rule them all",
"14102 string to rule them all",
"14103 string to rule them all",
"14104 string to rule them all",
"14105 string to rule them all",
"14106 string to rule them all",
"14107 string to rule them all",
"14108 string to rule them all",
"14109 string to rule them all",
"14110 string to rule them all",
"14111 string to rule them all",
"14112 string to rule them all",
"14113 string to rule them all",
"14114 string to rule them all",
"14115 string to rule them all",
"14116 string to rule them all",
"14117 string to rule them all",
"14118 string to rule them all",
"14119 string to rule them all",
"14120 string to rule them all",
"14121 string to rule them all",
"14122 string to rule them all",
"14123 string to rule them all",
"14124 string to rule them all",
"14125 string to rule them all",
"14126 string to rule them all",
"14127 string to rule them all",
"14128 string to rule them all",
"14129 string to rule them all",
"14130 string to rule them all",
"14131 string to rule them all",
"14132 string to rule them all",
"14133 string to rule them all",
"14134 string to rule them all",
"14135 string to rule them all",
"14136 string to rule them all",
"14137 string to rule them all",
"14138 string to rule them all",
"14139 string to rule them all",
"14140 string to rule them all",
"14141 string to rule them all",
"14142 string to rule them all",
"14143 string to rule them all",
"14144 string to rule them all",
"14145 string to rule them all",
"14146 string to rule them all",
"14147 string to rule them all",
"14148 string to rule them all",
"14149 string to rule them all",
"14150 string to rule them all",
"14151 string to rule them all",
"14152 string to rule them all",
"14153 string to rule them all",
"14154 string to rule them all",
"14155 string to rule them all",
"14156 string to rule them all",
"14157 string to rule them all",
"14158 string to rule them all",
"14159 string to rule them all",
"14160 string to rule them all",
"14161 string to rule them all",
"14162 string to rule them all",
"14163 string to rule them all",
"14164 string to rule them all",
"14165 string to rule them all",
"14166 string to rule them all",
"14167 string to rule them all",
"14168 string to rule them all",
"14169 string to rule them all",
"14170 string to rule them all",
"14171 string to rule them all",
"14172 string to rule them all",
"14173 string to rule them all",
"14174 string to rule them all",
"14175 string to rule them all",
"14176 string to rule them all",
"14177 string to rule them all",
"14178 string to rule them all",
"14179 string to rule them all",
"14180 string to rule them all",
"14181 string to rule them all",
"14182 string to rule them all",
"14183 string to rule them all",
"14184 string to rule them all",
"14185 string to rule them all",
"14186 string to rule them all",
"14187 string to rule them all",
"14188 string to rule them all",
"14189 string to rule them all",
"14190 string to rule them all",
"14191 string to rule them all",
"14192 string to rule them all",
"14193 string to rule them all",
"14194 string to rule them all",
"14195 string to rule them all",
"14196 string to rule them all",
"14197 string to rule them all",
"14198 string to rule them all",
"14199 string to rule them all",
"14200 string to rule them all",
"14201 string to rule them all",
"14202 string to rule them all",
"14203 string to rule them all",
"14204 string to rule them all",
"14205 string to rule them all",
"14206 string to rule them all",
"14207 string to rule them all",
"14208 string to rule them all",
"14209 string to rule them all",
"14210 string to rule them all",
"14211 string to rule them all",
"14212 string to rule them all",
"14213 string to rule them all",
"14214 string to rule them all",
"14215 string to rule them all",
"14216 string to rule them all",
"14217 string to rule them all",
"14218 string to rule them all",
"14219 string to rule them all",
"14220 string to rule them all",
"14221 string to rule them all",
"14222 string to rule them all",
"14223 string to rule them all",
"14224 string to rule them all",
"14225 string to rule them all",
"14226 string to rule them all",
"14227 string to rule them all",
"14228 string to rule them all",
"14229 string to rule them all",
"14230 string to rule them all",
"14231 string to rule them all",
"14232 string to rule them all",
"14233 string to rule them all",
"14234 string to rule them all",
"14235 string to rule them all",
"14236 string to rule them all",
"14237 string to rule them all",
"14238 string to rule them all",
"14239 string to rule them all",
"14240 string to rule them all",
"14241 string to rule them all",
"14242 string to rule them all",
"14243 string to rule them all",
"14244 string to rule them all",
"14245 string to rule them all",
"14246 string to rule them all",
"14247 string to rule them all",
"14248 string to rule them all",
"14249 string to rule them all",
"14250 string to rule them all",
"14251 string to rule them all",
"14252 string to rule them all",
"14253 string to rule them all",
"14254 string to rule them all",
"14255 string to rule them all",
"14256 string to rule them all",
"14257 string to rule them all",
"14258 string to rule them all",
"14259 string to rule them all",
"14260 string to rule them all",
"14261 string to rule them all",
"14262 string to rule them all",
"14263 string to rule them all",
"14264 string to rule them all",
"14265 string to rule them all",
"14266 string to rule them all",
"14267 string to rule them all",
"14268 string to rule them all",
"14269 string to rule them all",
"14270 string to rule them all",
"14271 string to rule them all",
"14272 string to rule them all",
"14273 string to rule them all",
"14274 string to rule them all",
"14275 string to rule them all",
"14276 string to rule them all",
"14277 string to rule them all",
"14278 string to rule them all",
"14279 string to rule them all",
"14280 string to rule them all",
"14281 string to rule them all",
"14282 string to rule them all",
"14283 string to rule them all",
"14284 string to rule them all",
"14285 string to rule them all",
"14286 string to rule them all",
"14287 string to rule them all",
"14288 string to rule them all",
"14289 string to rule them all",
"14290 string to rule them all",
"14291 string to rule them all",
"14292 string to rule them all",
"14293 string to rule them all",
"14294 string to rule them all",
"14295 string to rule them all",
"14296 string to rule them all",
"14297 string to rule them all",
"14298 string to rule them all",
"14299 string to rule them all",
"14300 string to rule them all",
"14301 string to rule them all",
"14302 string to rule them all",
"14303 string to rule them all",
"14304 string to rule them all",
"14305 string to rule them all",
"14306 string to rule them all",
"14307 string to rule them all",
"14308 string to rule them all",
"14309 string to rule them all",
"14310 string to rule them all",
"14311 string to rule them all",
"14312 string to rule them all",
"14313 string to rule them all",
"14314 string to rule them all",
"14315 string to rule them all",
"14316 string to rule them all",
"14317 string to rule them all",
"14318 string to rule them all",
"14319 string to rule them all",
"14320 string to rule them all",
"14321 string to rule them all",
"14322 string to rule them all",
"14323 string to rule them all",
"14324 string to rule them all",
"14325 string to rule them all",
"14326 string to rule them all",
"14327 string to rule them all",
"14328 string to rule them all",
"14329 string to rule them all",
"14330 string to rule them all",
"14331 string to rule them all",
"14332 string to rule them all",
"14333 string to rule them all",
"14334 string to rule them all",
"14335 string to rule them all",
"14336 string to rule them all",
"14337 string to rule them all",
"14338 string to rule them all",
"14339 string to rule them all",
"14340 string to rule them all",
"14341 string to rule them all",
"14342 string to rule them all",
"14343 string to rule them all",
"14344 string to rule them all",
"14345 string to rule them all",
"14346 string to rule them all",
"14347 string to rule them all",
"14348 string to rule them all",
"14349 string to rule them all",
"14350 string to rule them all",
"14351 string to rule them all",
"14352 string to rule them all",
"14353 string to rule them all",
"14354 string to rule them all",
"14355 string to rule them all",
"14356 string to rule them all",
"14357 string to rule them all",
"14358 string to rule them all",
"14359 string to rule them all",
"14360 string to rule them all",
"14361 string to rule them all",
"14362 string to rule them all",
"14363 string to rule them all",
"14364 string to rule them all",
"14365 string to rule them all",
"14366 string to rule them all",
"14367 string to rule them all",
"14368 string to rule them all",
"14369 string to rule them all",
"14370 string to rule them all",
"14371 string to rule them all",
"14372 string to rule them all",
"14373 string to rule them all",
"14374 string to rule them all",
"14375 string to rule them all",
"14376 string to rule them all",
"14377 string to rule them all",
"14378 string to rule them all",
"14379 string to rule them all",
"14380 string to rule them all",
"14381 string to rule them all",
"14382 string to rule them all",
"14383 string to rule them all",
"14384 string to rule them all",
"14385 string to rule them all",
"14386 string to rule them all",
"14387 string to rule them all",
"14388 string to rule them all",
"14389 string to rule them all",
"14390 string to rule them all",
"14391 string to rule them all",
"14392 string to rule them all",
"14393 string to rule them all",
"14394 string to rule them all",
"14395 string to rule them all",
"14396 string to rule them all",
"14397 string to rule them all",
"14398 string to rule them all",
"14399 string to rule them all",
"14400 string to rule them all",
"14401 string to rule them all",
"14402 string to rule them all",
"14403 string to rule them all",
"14404 string to rule them all",
"14405 string to rule them all",
"14406 string to rule them all",
"14407 string to rule them all",
"14408 string to rule them all",
"14409 string to rule them all",
"14410 string to rule them all",
"14411 string to rule them all",
"14412 string to rule them all",
"14413 string to rule them all",
"14414 string to rule them all",
"14415 string to rule them all",
"14416 string to rule them all",
"14417 string to rule them all",
"14418 string to rule them all",
"14419 string to rule them all",
"14420 string to rule them all",
"14421 string to rule them all",
"14422 string to rule them all",
"14423 string to rule them all",
"14424 string to rule them all",
"14425 string to rule them all",
"14426 string to rule them all",
"14427 string to rule them all",
"14428 string to rule them all",
"14429 string to rule them all",
"14430 string to rule them all",
"14431 string to rule them all",
"14432 string to rule them all",
"14433 string to rule them all",
"14434 string to rule them all",
"14435 string to rule them all",
"14436 string to rule them all",
"14437 string to rule them all",
"14438 string to rule them all",
"14439 string to rule them all",
"14440 string to rule them all",
"14441 string to rule them all",
"14442 string to rule them all",
"14443 string to rule them all",
"14444 string to rule them all",
"14445 string to rule them all",
"14446 string to rule them all",
"14447 string to rule them all",
"14448 string to rule them all",
"14449 string to rule them all",
"14450 string to rule them all",
"14451 string to rule them all",
"14452 string to rule them all",
"14453 string to rule them all",
"14454 string to rule them all",
"14455 string to rule them all",
"14456 string to rule them all",
"14457 string to rule them all",
"14458 string to rule them all",
"14459 string to rule them all",
"14460 string to rule them all",
"14461 string to rule them all",
"14462 string to rule them all",
"14463 string to rule them all",
"14464 string to rule them all",
"14465 string to rule them all",
"14466 string to rule them all",
"14467 string to rule them all",
"14468 string to rule them all",
"14469 string to rule them all",
"14470 string to rule them all",
"14471 string to rule them all",
"14472 string to rule them all",
"14473 string to rule them all",
"14474 string to rule them all",
"14475 string to rule them all",
"14476 string to rule them all",
"14477 string to rule them all",
"14478 string to rule them all",
"14479 string to rule them all",
"14480 string to rule them all",
"14481 string to rule them all",
"14482 string to rule them all",
"14483 string to rule them all",
"14484 string to rule them all",
"14485 string to rule them all",
"14486 string to rule them all",
"14487 string to rule them all",
"14488 string to rule them all",
"14489 string to rule them all",
"14490 string to rule them all",
"14491 string to rule them all",
"14492 string to rule them all",
"14493 string to rule them all",
"14494 string to rule them all",
"14495 string to rule them all",
"14496 string to rule them all",
"14497 string to rule them all",
"14498 string to rule them all",
"14499 string to rule them all",
"14500 string to rule them all",
"14501 string to rule them all",
"14502 string to rule them all",
"14503 string to rule them all",
"14504 string to rule them all",
"14505 string to rule them all",
"14506 string to rule them all",
"14507 string to rule them all",
"14508 string to rule them all",
"14509 string to rule them all",
"14510 string to rule them all",
"14511 string to rule them all",
"14512 string to rule them all",
"14513 string to rule them all",
"14514 string to rule them all",
"14515 string to rule them all",
"14516 string to rule them all",
"14517 string to rule them all",
"14518 string to rule them all",
"14519 string to rule them all",
"14520 string to rule them all",
"14521 string to rule them all",
"14522 string to rule them all",
"14523 string to rule them all",
"14524 string to rule them all",
"14525 string to rule them all",
"14526 string to rule them all",
"14527 string to rule them all",
"14528 string to rule them all",
"14529 string to rule them all",
"14530 string to rule them all",
"14531 string to rule them all",
"14532 string to rule them all",
"14533 string to rule them all",
"14534 string to rule them all",
"14535 string to rule them all",
"14536 string to rule them all",
"14537 string to rule them all",
"14538 string to rule them all",
"14539 string to rule them all",
"14540 string to rule them all",
"14541 string to rule them all",
"14542 string to rule them all",
"14543 string to rule them all",
"14544 string to rule them all",
"14545 string to rule them all",
"14546 string to rule them all",
"14547 string to rule them all",
"14548 string to rule them all",
"14549 string to rule them all",
"14550 string to rule them all",
"14551 string to rule them all",
"14552 string to rule them all",
"14553 string to rule them all",
"14554 string to rule them all",
"14555 string to rule them all",
"14556 string to rule them all",
"14557 string to rule them all",
"14558 string to rule them all",
"14559 string to rule them all",
"14560 string to rule them all",
"14561 string to rule them all",
"14562 string to rule them all",
"14563 string to rule them all",
"14564 string to rule them all",
"14565 string to rule them all",
"14566 string to rule them all",
"14567 string to rule them all",
"14568 string to rule them all",
"14569 string to rule them all",
"14570 string to rule them all",
"14571 string to rule them all",
"14572 string to rule them all",
"14573 string to rule them all",
"14574 string to rule them all",
"14575 string to rule them all",
"14576 string to rule them all",
"14577 string to rule them all",
"14578 string to rule them all",
"14579 string to rule them all",
"14580 string to rule them all",
"14581 string to rule them all",
"14582 string to rule them all",
"14583 string to rule them all",
"14584 string to rule them all",
"14585 string to rule them all",
"14586 string to rule them all",
"14587 string to rule them all",
"14588 string to rule them all",
"14589 string to rule them all",
"14590 string to rule them all",
"14591 string to rule them all",
"14592 string to rule them all",
"14593 string to rule them all",
"14594 string to rule them all",
"14595 string to rule them all",
"14596 string to rule them all",
"14597 string to rule them all",
"14598 string to rule them all",
"14599 string to rule them all",
"14600 string to rule them all",
"14601 string to rule them all",
"14602 string to rule them all",
"14603 string to rule them all",
"14604 string to rule them all",
"14605 string to rule them all",
"14606 string to rule them all",
"14607 string to rule them all",
"14608 string to rule them all",
"14609 string to rule them all",
"14610 string to rule them all",
"14611 string to rule them all",
"14612 string to rule them all",
"14613 string to rule them all",
"14614 string to rule them all",
"14615 string to rule them all",
"14616 string to rule them all",
"14617 string to rule them all",
"14618 string to rule them all",
"14619 string to rule them all",
"14620 string to rule them all",
"14621 string to rule them all",
"14622 string to rule them all",
"14623 string to rule them all",
"14624 string to rule them all",
"14625 string to rule them all",
"14626 string to rule them all",
"14627 string to rule them all",
"14628 string to rule them all",
"14629 string to rule them all",
"14630 string to rule them all",
"14631 string to rule them all",
"14632 string to rule them all",
"14633 string to rule them all",
"14634 string to rule them all",
"14635 string to rule them all",
"14636 string to rule them all",
"14637 string to rule them all",
"14638 string to rule them all",
"14639 string to rule them all",
"14640 string to rule them all",
"14641 string to rule them all",
"14642 string to rule them all",
"14643 string to rule them all",
"14644 string to rule them all",
"14645 string to rule them all",
"14646 string to rule them all",
"14647 string to rule them all",
"14648 string to rule them all",
"14649 string to rule them all",
"14650 string to rule them all",
"14651 string to rule them all",
"14652 string to rule them all",
"14653 string to rule them all",
"14654 string to rule them all",
"14655 string to rule them all",
"14656 string to rule them all",
"14657 string to rule them all",
"14658 string to rule them all",
"14659 string to rule them all",
"14660 string to rule them all",
"14661 string to rule them all",
"14662 string to rule them all",
"14663 string to rule them all",
"14664 string to rule them all",
"14665 string to rule them all",
"14666 string to rule them all",
"14667 string to rule them all",
"14668 string to rule them all",
"14669 string to rule them all",
"14670 string to rule them all",
"14671 string to rule them all",
"14672 string to rule them all",
"14673 string to rule them all",
"14674 string to rule them all",
"14675 string to rule them all",
"14676 string to rule them all",
"14677 string to rule them all",
"14678 string to rule them all",
"14679 string to rule them all",
"14680 string to rule them all",
"14681 string to rule them all",
"14682 string to rule them all",
"14683 string to rule them all",
"14684 string to rule them all",
"14685 string to rule them all",
"14686 string to rule them all",
"14687 string to rule them all",
"14688 string to rule them all",
"14689 string to rule them all",
"14690 string to rule them all",
"14691 string to rule them all",
"14692 string to rule them all",
"14693 string to rule them all",
"14694 string to rule them all",
"14695 string to rule them all",
"14696 string to rule them all",
"14697 string to rule them all",
"14698 string to rule them all",
"14699 string to rule them all",
"14700 string to rule them all",
"14701 string to rule them all",
"14702 string to rule them all",
"14703 string to rule them all",
"14704 string to rule them all",
"14705 string to rule them all",
"14706 string to rule them all",
"14707 string to rule them all",
"14708 string to rule them all",
"14709 string to rule them all",
"14710 string to rule them all",
"14711 string to rule them all",
"14712 string to rule them all",
"14713 string to rule them all",
"14714 string to rule them all",
"14715 string to rule them all",
"14716 string to rule them all",
"14717 string to rule them all",
"14718 string to rule them all",
"14719 string to rule them all",
"14720 string to rule them all",
"14721 string to rule them all",
"14722 string to rule them all",
"14723 string to rule them all",
"14724 string to rule them all",
"14725 string to rule them all",
"14726 string to rule them all",
"14727 string to rule them all",
"14728 string to rule them all",
"14729 string to rule them all",
"14730 string to rule them all",
"14731 string to rule them all",
"14732 string to rule them all",
"14733 string to rule them all",
"14734 string to rule them all",
"14735 string to rule them all",
"14736 string to rule them all",
"14737 string to rule them all",
"14738 string to rule them all",
"14739 string to rule them all",
"14740 string to rule them all",
"14741 string to rule them all",
"14742 string to rule them all",
"14743 string to rule them all",
"14744 string to rule them all",
"14745 string to rule them all",
"14746 string to rule them all",
"14747 string to rule them all",
"14748 string to rule them all",
"14749 string to rule them all",
"14750 string to rule them all",
"14751 string to rule them all",
"14752 string to rule them all",
"14753 string to rule them all",
"14754 string to rule them all",
"14755 string to rule them all",
"14756 string to rule them all",
"14757 string to rule them all",
"14758 string to rule them all",
"14759 string to rule them all",
"14760 string to rule them all",
"14761 string to rule them all",
"14762 string to rule them all",
"14763 string to rule them all",
"14764 string to rule them all",
"14765 string to rule them all",
"14766 string to rule them all",
"14767 string to rule them all",
"14768 string to rule them all",
"14769 string to rule them all",
"14770 string to rule them all",
"14771 string to rule them all",
"14772 string to rule them all",
"14773 string to rule them all",
"14774 string to rule them all",
"14775 string to rule them all",
"14776 string to rule them all",
"14777 string to rule them all",
"14778 string to rule them all",
"14779 string to rule them all",
"14780 string to rule them all",
"14781 string to rule them all",
"14782 string to rule them all",
"14783 string to rule them all",
"14784 string to rule them all",
"14785 string to rule them all",
"14786 string to rule them all",
"14787 string to rule them all",
"14788 string to rule them all",
"14789 string to rule them all",
"14790 string to rule them all",
"14791 string to rule them all",
"14792 string to rule them all",
"14793 string to rule them all",
"14794 string to rule them all",
"14795 string to rule them all",
"14796 string to rule them all",
"14797 string to rule them all",
"14798 string to rule them all",
"14799 string to rule them all",
"14800 string to rule them all",
"14801 string to rule them all",
"14802 string to rule them all",
"14803 string to rule them all",
"14804 string to rule them all",
"14805 string to rule them all",
"14806 string to rule them all",
"14807 string to rule them all",
"14808 string to rule them all",
"14809 string to rule them all",
"14810 string to rule them all",
"14811 string to rule them all",
"14812 string to rule them all",
"14813 string to rule them all",
"14814 string to rule them all",
"14815 string to rule them all",
"14816 string to rule them all",
"14817 string to rule them all",
"14818 string to rule them all",
"14819 string to rule them all",
"14820 string to rule them all",
"14821 string to rule them all",
"14822 string to rule them all",
"14823 string to rule them all",
"14824 string to rule them all",
"14825 string to rule them all",
"14826 string to rule them all",
"14827 string to rule them all",
"14828 string to rule them all",
"14829 string to rule them all",
"14830 string to rule them all",
"14831 string to rule them all",
"14832 string to rule them all",
"14833 string to rule them all",
"14834 string to rule them all",
"14835 string to rule them all",
"14836 string to rule them all",
"14837 string to rule them all",
"14838 string to rule them all",
"14839 string to rule them all",
"14840 string to rule them all",
"14841 string to rule them all",
"14842 string to rule them all",
"14843 string to rule them all",
"14844 string to rule them all",
"14845 string to rule them all",
"14846 string to rule them all",
"14847 string to rule them all",
"14848 string to rule them all",
"14849 string to rule them all",
"14850 string to rule them all",
"14851 string to rule them all",
"14852 string to rule them all",
"14853 string to rule them all",
"14854 string to rule them all",
"14855 string to rule them all",
"14856 string to rule them all",
"14857 string to rule them all",
"14858 string to rule them all",
"14859 string to rule them all",
"14860 string to rule them all",
"14861 string to rule them all",
"14862 string to rule them all",
"14863 string to rule them all",
"14864 string to rule them all",
"14865 string to rule them all",
"14866 string to rule them all",
"14867 string to rule them all",
"14868 string to rule them all",
"14869 string to rule them all",
"14870 string to rule them all",
"14871 string to rule them all",
"14872 string to rule them all",
"14873 string to rule them all",
"14874 string to rule them all",
"14875 string to rule them all",
"14876 string to rule them all",
"14877 string to rule them all",
"14878 string to rule them all",
"14879 string to rule them all",
"14880 string to rule them all",
"14881 string to rule them all",
"14882 string to rule them all",
"14883 string to rule them all",
"14884 string to rule them all",
"14885 string to rule them all",
"14886 string to rule them all",
"14887 string to rule them all",
"14888 string to rule them all",
"14889 string to rule them all",
"14890 string to rule them all",
"14891 string to rule them all",
"14892 string to rule them all",
"14893 string to rule them all",
"14894 string to rule them all",
"14895 string to rule them all",
"14896 string to rule them all",
"14897 string to rule them all",
"14898 string to rule them all",
"14899 string to rule them all",
"14900 string to rule them all",
"14901 string to rule them all",
"14902 string to rule them all",
"14903 string to rule them all",
"14904 string to rule them all",
"14905 string to rule them all",
"14906 string to rule them all",
"14907 string to rule them all",
"14908 string to rule them all",
"14909 string to rule them all",
"14910 string to rule them all",
"14911 string to rule them all",
"14912 string to rule them all",
"14913 string to rule them all",
"14914 string to rule them all",
"14915 string to rule them all",
"14916 string to rule them all",
"14917 string to rule them all",
"14918 string to rule them all",
"14919 string to rule them all",
"14920 string to rule them all",
"14921 string to rule them all",
"14922 string to rule them all",
"14923 string to rule them all",
"14924 string to rule them all",
"14925 string to rule them all",
"14926 string to rule them all",
"14927 string to rule them all",
"14928 string to rule them all",
"14929 string to rule them all",
"14930 string to rule them all",
"14931 string to rule them all",
"14932 string to rule them all",
"14933 string to rule them all",
"14934 string to rule them all",
"14935 string to rule them all",
"14936 string to rule them all",
"14937 string to rule them all",
"14938 string to rule them all",
"14939 string to rule them all",
"14940 string to rule them all",
"14941 string to rule them all",
"14942 string to rule them all",
"14943 string to rule them all",
"14944 string to rule them all",
"14945 string to rule them all",
"14946 string to rule them all",
"14947 string to rule them all",
"14948 string to rule them all",
"14949 string to rule them all",
"14950 string to rule them all",
"14951 string to rule them all",
"14952 string to rule them all",
"14953 string to rule them all",
"14954 string to rule them all",
"14955 string to rule them all",
"14956 string to rule them all",
"14957 string to rule them all",
"14958 string to rule them all",
"14959 string to rule them all",
"14960 string to rule them all",
"14961 string to rule them all",
"14962 string to rule them all",
"14963 string to rule them all",
"14964 string to rule them all",
"14965 string to rule them all",
"14966 string to rule them all",
"14967 string to rule them all",
"14968 string to rule them all",
"14969 string to rule them all",
"14970 string to rule them all",
"14971 string to rule them all",
"14972 string to rule them all",
"14973 string to rule them all",
"14974 string to rule them all",
"14975 string to rule them all",
"14976 string to rule them all",
"14977 string to rule them all",
"14978 string to rule them all",
"14979 string to rule them all",
"14980 string to rule them all",
"14981 string to rule them all",
"14982 string to rule them all",
"14983 string to rule them all",
"14984 string to rule them all",
"14985 string to rule them all",
"14986 string to rule them all",
"14987 string to rule them all",
"14988 string to rule them all",
"14989 string to rule them all",
"14990 string to rule them all",
"14991 string to rule them all",
"14992 string to rule them all",
"14993 string to rule them all",
"14994 string to rule them all",
"14995 string to rule them all",
"14996 string to rule them all",
"14997 string to rule them all",
"14998 string to rule them all",
"14999 string to rule them all",
"15000 string to rule them all",
"15001 string to rule them all",
"15002 string to rule them all",
"15003 string to rule them all",
"15004 string to rule them all",
"15005 string to rule them all",
"15006 string to rule them all",
"15007 string to rule them all",
"15008 string to rule them all",
"15009 string to rule them all",
"15010 string to rule them all",
"15011 string to rule them all",
"15012 string to rule them all",
"15013 string to rule them all",
"15014 string to rule them all",
"15015 string to rule them all",
"15016 string to rule them all",
"15017 string to rule them all",
"15018 string to rule them all",
"15019 string to rule them all",
"15020 string to rule them all",
"15021 string to rule them all",
"15022 string to rule them all",
"15023 string to rule them all",
"15024 string to rule them all",
"15025 string to rule them all",
"15026 string to rule them all",
"15027 string to rule them all",
"15028 string to rule them all",
"15029 string to rule them all",
"15030 string to rule them all",
"15031 string to rule them all",
"15032 string to rule them all",
"15033 string to rule them all",
"15034 string to rule them all",
"15035 string to rule them all",
"15036 string to rule them all",
"15037 string to rule them all",
"15038 string to rule them all",
"15039 string to rule them all",
"15040 string to rule them all",
"15041 string to rule them all",
"15042 string to rule them all",
"15043 string to rule them all",
"15044 string to rule them all",
"15045 string to rule them all",
"15046 string to rule them all",
"15047 string to rule them all",
"15048 string to rule them all",
"15049 string to rule them all",
"15050 string to rule them all",
"15051 string to rule them all",
"15052 string to rule them all",
"15053 string to rule them all",
"15054 string to rule them all",
"15055 string to rule them all",
"15056 string to rule them all",
"15057 string to rule them all",
"15058 string to rule them all",
"15059 string to rule them all",
"15060 string to rule them all",
"15061 string to rule them all",
"15062 string to rule them all",
"15063 string to rule them all",
"15064 string to rule them all",
"15065 string to rule them all",
"15066 string to rule them all",
"15067 string to rule them all",
"15068 string to rule them all",
"15069 string to rule them all",
"15070 string to rule them all",
"15071 string to rule them all",
"15072 string to rule them all",
"15073 string to rule them all",
"15074 string to rule them all",
"15075 string to rule them all",
"15076 string to rule them all",
"15077 string to rule them all",
"15078 string to rule them all",
"15079 string to rule them all",
"15080 string to rule them all",
"15081 string to rule them all",
"15082 string to rule them all",
"15083 string to rule them all",
"15084 string to rule them all",
"15085 string to rule them all",
"15086 string to rule them all",
"15087 string to rule them all",
"15088 string to rule them all",
"15089 string to rule them all",
"15090 string to rule them all",
"15091 string to rule them all",
"15092 string to rule them all",
"15093 string to rule them all",
"15094 string to rule them all",
"15095 string to rule them all",
"15096 string to rule them all",
"15097 string to rule them all",
"15098 string to rule them all",
"15099 string to rule them all",
"15100 string to rule them all",
"15101 string to rule them all",
"15102 string to rule them all",
"15103 string to rule them all",
"15104 string to rule them all",
"15105 string to rule them all",
"15106 string to rule them all",
"15107 string to rule them all",
"15108 string to rule them all",
"15109 string to rule them all",
"15110 string to rule them all",
"15111 string to rule them all",
"15112 string to rule them all",
"15113 string to rule them all",
"15114 string to rule them all",
"15115 string to rule them all",
"15116 string to rule them all",
"15117 string to rule them all",
"15118 string to rule them all",
"15119 string to rule them all",
"15120 string to rule them all",
"15121 string to rule them all",
"15122 string to rule them all",
"15123 string to rule them all",
"15124 string to rule them all",
"15125 string to rule them all",
"15126 string to rule them all",
"15127 string to rule them all",
"15128 string to rule them all",
"15129 string to rule them all",
"15130 string to rule them all",
"15131 string to rule them all",
"15132 string to rule them all",
"15133 string to rule them all",
"15134 string to rule them all",
"15135 string to rule them all",
"15136 string to rule them all",
"15137 string to rule them all",
"15138 string to rule them all",
"15139 string to rule them all",
"15140 string to rule them all",
"15141 string to rule them all",
"15142 string to rule them all",
"15143 string to rule them all",
"15144 string to rule them all",
"15145 string to rule them all",
"15146 string to rule them all",
"15147 string to rule them all",
"15148 string to rule them all",
"15149 string to rule them all",
"15150 string to rule them all",
"15151 string to rule them all",
"15152 string to rule them all",
"15153 string to rule them all",
"15154 string to rule them all",
"15155 string to rule them all",
"15156 string to rule them all",
"15157 string to rule them all",
"15158 string to rule them all",
"15159 string to rule them all",
"15160 string to rule them all",
"15161 string to rule them all",
"15162 string to rule them all",
"15163 string to rule them all",
"15164 string to rule them all",
"15165 string to rule them all",
"15166 string to rule them all",
"15167 string to rule them all",
"15168 string to rule them all",
"15169 string to rule them all",
"15170 string to rule them all",
"15171 string to rule them all",
"15172 string to rule them all",
"15173 string to rule them all",
"15174 string to rule them all",
"15175 string to rule them all",
"15176 string to rule them all",
"15177 string to rule them all",
"15178 string to rule them all",
"15179 string to rule them all",
"15180 string to rule them all",
"15181 string to rule them all",
"15182 string to rule them all",
"15183 string to rule them all",
"15184 string to rule them all",
"15185 string to rule them all",
"15186 string to rule them all",
"15187 string to rule them all",
"15188 string to rule them all",
"15189 string to rule them all",
"15190 string to rule them all",
"15191 string to rule them all",
"15192 string to rule them all",
"15193 string to rule them all",
"15194 string to rule them all",
"15195 string to rule them all",
"15196 string to rule them all",
"15197 string to rule them all",
"15198 string to rule them all",
"15199 string to rule them all",
"15200 string to rule them all",
"15201 string to rule them all",
"15202 string to rule them all",
"15203 string to rule them all",
"15204 string to rule them all",
"15205 string to rule them all",
"15206 string to rule them all",
"15207 string to rule them all",
"15208 string to rule them all",
"15209 string to rule them all",
"15210 string to rule them all",
"15211 string to rule them all",
"15212 string to rule them all",
"15213 string to rule them all",
"15214 string to rule them all",
"15215 string to rule them all",
"15216 string to rule them all",
"15217 string to rule them all",
"15218 string to rule them all",
"15219 string to rule them all",
"15220 string to rule them all",
"15221 string to rule them all",
"15222 string to rule them all",
"15223 string to rule them all",
"15224 string to rule them all",
"15225 string to rule them all",
"15226 string to rule them all",
"15227 string to rule them all",
"15228 string to rule them all",
"15229 string to rule them all",
"15230 string to rule them all",
"15231 string to rule them all",
"15232 string to rule them all",
"15233 string to rule them all",
"15234 string to rule them all",
"15235 string to rule them all",
"15236 string to rule them all",
"15237 string to rule them all",
"15238 string to rule them all",
"15239 string to rule them all",
"15240 string to rule them all",
"15241 string to rule them all",
"15242 string to rule them all",
"15243 string to rule them all",
"15244 string to rule them all",
"15245 string to rule them all",
"15246 string to rule them all",
"15247 string to rule them all",
"15248 string to rule them all",
"15249 string to rule them all",
"15250 string to rule them all",
"15251 string to rule them all",
"15252 string to rule them all",
"15253 string to rule them all",
"15254 string to rule them all",
"15255 string to rule them all",
"15256 string to rule them all",
"15257 string to rule them all",
"15258 string to rule them all",
"15259 string to rule them all",
"15260 string to rule them all",
"15261 string to rule them all",
"15262 string to rule them all",
"15263 string to rule them all",
"15264 string to rule them all",
"15265 string to rule them all",
"15266 string to rule them all",
"15267 string to rule them all",
"15268 string to rule them all",
"15269 string to rule them all",
"15270 string to rule them all",
"15271 string to rule them all",
"15272 string to rule them all",
"15273 string to rule them all",
"15274 string to rule them all",
"15275 string to rule them all",
"15276 string to rule them all",
"15277 string to rule them all",
"15278 string to rule them all",
"15279 string to rule them all",
"15280 string to rule them all",
"15281 string to rule them all",
"15282 string to rule them all",
"15283 string to rule them all",
"15284 string to rule them all",
"15285 string to rule them all",
"15286 string to rule them all",
"15287 string to rule them all",
"15288 string to rule them all",
"15289 string to rule them all",
"15290 string to rule them all",
"15291 string to rule them all",
"15292 string to rule them all",
"15293 string to rule them all",
"15294 string to rule them all",
"15295 string to rule them all",
"15296 string to rule them all",
"15297 string to rule them all",
"15298 string to rule them all",
"15299 string to rule them all",
"15300 string to rule them all",
"15301 string to rule them all",
"15302 string to rule them all",
"15303 string to rule them all",
"15304 string to rule them all",
"15305 string to rule them all",
"15306 string to rule them all",
"15307 string to rule them all",
"15308 string to rule them all",
"15309 string to rule them all",
"15310 string to rule them all",
"15311 string to rule them all",
"15312 string to rule them all",
"15313 string to rule them all",
"15314 string to rule them all",
"15315 string to rule them all",
"15316 string to rule them all",
"15317 string to rule them all",
"15318 string to rule them all",
"15319 string to rule them all",
"15320 string to rule them all",
"15321 string to rule them all",
"15322 string to rule them all",
"15323 string to rule them all",
"15324 string to rule them all",
"15325 string to rule them all",
"15326 string to rule them all",
"15327 string to rule them all",
"15328 string to rule them all",
"15329 string to rule them all",
"15330 string to rule them all",
"15331 string to rule them all",
"15332 string to rule them all",
"15333 string to rule them all",
"15334 string to rule them all",
"15335 string to rule them all",
"15336 string to rule them all",
"15337 string to rule them all",
"15338 string to rule them all",
"15339 string to rule them all",
"15340 string to rule them all",
"15341 string to rule them all",
"15342 string to rule them all",
"15343 string to rule them all",
"15344 string to rule them all",
"15345 string to rule them all",
"15346 string to rule them all",
"15347 string to rule them all",
"15348 string to rule them all",
"15349 string to rule them all",
"15350 string to rule them all",
"15351 string to rule them all",
"15352 string to rule them all",
"15353 string to rule them all",
"15354 string to rule them all",
"15355 string to rule them all",
"15356 string to rule them all",
"15357 string to rule them all",
"15358 string to rule them all",
"15359 string to rule them all",
"15360 string to rule them all",
"15361 string to rule them all",
"15362 string to rule them all",
"15363 string to rule them all",
"15364 string to rule them all",
"15365 string to rule them all",
"15366 string to rule them all",
"15367 string to rule them all",
"15368 string to rule them all",
"15369 string to rule them all",
"15370 string to rule them all",
"15371 string to rule them all",
"15372 string to rule them all",
"15373 string to rule them all",
"15374 string to rule them all",
"15375 string to rule them all",
"15376 string to rule them all",
"15377 string to rule them all",
"15378 string to rule them all",
"15379 string to rule them all",
"15380 string to rule them all",
"15381 string to rule them all",
"15382 string to rule them all",
"15383 string to rule them all",
"15384 string to rule them all",
"15385 string to rule them all",
"15386 string to rule them all",
"15387 string to rule them all",
"15388 string to rule them all",
"15389 string to rule them all",
"15390 string to rule them all",
"15391 string to rule them all",
"15392 string to rule them all",
"15393 string to rule them all",
"15394 string to rule them all",
"15395 string to rule them all",
"15396 string to rule them all",
"15397 string to rule them all",
"15398 string to rule them all",
"15399 string to rule them all",
"15400 string to rule them all",
"15401 string to rule them all",
"15402 string to rule them all",
"15403 string to rule them all",
"15404 string to rule them all",
"15405 string to rule them all",
"15406 string to rule them all",
"15407 string to rule them all",
"15408 string to rule them all",
"15409 string to rule them all",
"15410 string to rule them all",
"15411 string to rule them all",
"15412 string to rule them all",
"15413 string to rule them all",
"15414 string to rule them all",
"15415 string to rule them all",
"15416 string to rule them all",
"15417 string to rule them all",
"15418 string to rule them all",
"15419 string to rule them all",
"15420 string to rule them all",
"15421 string to rule them all",
"15422 string to rule them all",
"15423 string to rule them all",
"15424 string to rule them all",
"15425 string to rule them all",
"15426 string to rule them all",
"15427 string to rule them all",
"15428 string to rule them all",
"15429 string to rule them all",
"15430 string to rule them all",
"15431 string to rule them all",
"15432 string to rule them all",
"15433 string to rule them all",
"15434 string to rule them all",
"15435 string to rule them all",
"15436 string to rule them all",
"15437 string to rule them all",
"15438 string to rule them all",
"15439 string to rule them all",
"15440 string to rule them all",
"15441 string to rule them all",
"15442 string to rule them all",
"15443 string to rule them all",
"15444 string to rule them all",
"15445 string to rule them all",
"15446 string to rule them all",
"15447 string to rule them all",
"15448 string to rule them all",
"15449 string to rule them all",
"15450 string to rule them all",
"15451 string to rule them all",
"15452 string to rule them all",
"15453 string to rule them all",
"15454 string to rule them all",
"15455 string to rule them all",
"15456 string to rule them all",
"15457 string to rule them all",
"15458 string to rule them all",
"15459 string to rule them all",
"15460 string to rule them all",
"15461 string to rule them all",
"15462 string to rule them all",
"15463 string to rule them all",
"15464 string to rule them all",
"15465 string to rule them all",
"15466 string to rule them all",
"15467 string to rule them all",
"15468 string to rule them all",
"15469 string to rule them all",
"15470 string to rule them all",
"15471 string to rule them all",
"15472 string to rule them all",
"15473 string to rule them all",
"15474 string to rule them all",
"15475 string to rule them all",
"15476 string to rule them all",
"15477 string to rule them all",
"15478 string to rule them all",
"15479 string to rule them all",
"15480 string to rule them all",
"15481 string to rule them all",
"15482 string to rule them all",
"15483 string to rule them all",
"15484 string to rule them all",
"15485 string to rule them all",
"15486 string to rule them all",
"15487 string to rule them all",
"15488 string to rule them all",
"15489 string to rule them all",
"15490 string to rule them all",
"15491 string to rule them all",
"15492 string to rule them all",
"15493 string to rule them all",
"15494 string to rule them all",
"15495 string to rule them all",
"15496 string to rule them all",
"15497 string to rule them all",
"15498 string to rule them all",
"15499 string to rule them all",
"15500 string to rule them all",
"15501 string to rule them all",
"15502 string to rule them all",
"15503 string to rule them all",
"15504 string to rule them all",
"15505 string to rule them all",
"15506 string to rule them all",
"15507 string to rule them all",
"15508 string to rule them all",
"15509 string to rule them all",
"15510 string to rule them all",
"15511 string to rule them all",
"15512 string to rule them all",
"15513 string to rule them all",
"15514 string to rule them all",
"15515 string to rule them all",
"15516 string to rule them all",
"15517 string to rule them all",
"15518 string to rule them all",
"15519 string to rule them all",
"15520 string to rule them all",
"15521 string to rule them all",
"15522 string to rule them all",
"15523 string to rule them all",
"15524 string to rule them all",
"15525 string to rule them all",
"15526 string to rule them all",
"15527 string to rule them all",
"15528 string to rule them all",
"15529 string to rule them all",
"15530 string to rule them all",
"15531 string to rule them all",
"15532 string to rule them all",
"15533 string to rule them all",
"15534 string to rule them all",
"15535 string to rule them all",
"15536 string to rule them all",
"15537 string to rule them all",
"15538 string to rule them all",
"15539 string to rule them all",
"15540 string to rule them all",
"15541 string to rule them all",
"15542 string to rule them all",
"15543 string to rule them all",
"15544 string to rule them all",
"15545 string to rule them all",
"15546 string to rule them all",
"15547 string to rule them all",
"15548 string to rule them all",
"15549 string to rule them all",
"15550 string to rule them all",
"15551 string to rule them all",
"15552 string to rule them all",
"15553 string to rule them all",
"15554 string to rule them all",
"15555 string to rule them all",
"15556 string to rule them all",
"15557 string to rule them all",
"15558 string to rule them all",
"15559 string to rule them all",
"15560 string to rule them all",
"15561 string to rule them all",
"15562 string to rule them all",
"15563 string to rule them all",
"15564 string to rule them all",
"15565 string to rule them all",
"15566 string to rule them all",
"15567 string to rule them all",
"15568 string to rule them all",
"15569 string to rule them all",
"15570 string to rule them all",
"15571 string to rule them all",
"15572 string to rule them all",
"15573 string to rule them all",
"15574 string to rule them all",
"15575 string to rule them all",
"15576 string to rule them all",
"15577 string to rule them all",
"15578 string to rule them all",
"15579 string to rule them all",
"15580 string to rule them all",
"15581 string to rule them all",
"15582 string to rule them all",
"15583 string to rule them all",
"15584 string to rule them all",
"15585 string to rule them all",
"15586 string to rule them all",
"15587 string to rule them all",
"15588 string to rule them all",
"15589 string to rule them all",
"15590 string to rule them all",
"15591 string to rule them all",
"15592 string to rule them all",
"15593 string to rule them all",
"15594 string to rule them all",
"15595 string to rule them all",
"15596 string to rule them all",
"15597 string to rule them all",
"15598 string to rule them all",
"15599 string to rule them all",
"15600 string to rule them all",
"15601 string to rule them all",
"15602 string to rule them all",
"15603 string to rule them all",
"15604 string to rule them all",
"15605 string to rule them all",
"15606 string to rule them all",
"15607 string to rule them all",
"15608 string to rule them all",
"15609 string to rule them all",
"15610 string to rule them all",
"15611 string to rule them all",
"15612 string to rule them all",
"15613 string to rule them all",
"15614 string to rule them all",
"15615 string to rule them all",
"15616 string to rule them all",
"15617 string to rule them all",
"15618 string to rule them all",
"15619 string to rule them all",
"15620 string to rule them all",
"15621 string to rule them all",
"15622 string to rule them all",
"15623 string to rule them all",
"15624 string to rule them all",
"15625 string to rule them all",
"15626 string to rule them all",
"15627 string to rule them all",
"15628 string to rule them all",
"15629 string to rule them all",
"15630 string to rule them all",
"15631 string to rule them all",
"15632 string to rule them all",
"15633 string to rule them all",
"15634 string to rule them all",
"15635 string to rule them all",
"15636 string to rule them all",
"15637 string to rule them all",
"15638 string to rule them all",
"15639 string to rule them all",
"15640 string to rule them all",
"15641 string to rule them all",
"15642 string to rule them all",
"15643 string to rule them all",
"15644 string to rule them all",
"15645 string to rule them all",
"15646 string to rule them all",
"15647 string to rule them all",
"15648 string to rule them all",
"15649 string to rule them all",
"15650 string to rule them all",
"15651 string to rule them all",
"15652 string to rule them all",
"15653 string to rule them all",
"15654 string to rule them all",
"15655 string to rule them all",
"15656 string to rule them all",
"15657 string to rule them all",
"15658 string to rule them all",
"15659 string to rule them all",
"15660 string to rule them all",
"15661 string to rule them all",
"15662 string to rule them all",
"15663 string to rule them all",
"15664 string to rule them all",
"15665 string to rule them all",
"15666 string to rule them all",
"15667 string to rule them all",
"15668 string to rule them all",
"15669 string to rule them all",
"15670 string to rule them all",
"15671 string to rule them all",
"15672 string to rule them all",
"15673 string to rule them all",
"15674 string to rule them all",
"15675 string to rule them all",
"15676 string to rule them all",
"15677 string to rule them all",
"15678 string to rule them all",
"15679 string to rule them all",
"15680 string to rule them all",
"15681 string to rule them all",
"15682 string to rule them all",
"15683 string to rule them all",
"15684 string to rule them all",
"15685 string to rule them all",
"15686 string to rule them all",
"15687 string to rule them all",
"15688 string to rule them all",
"15689 string to rule them all",
"15690 string to rule them all",
"15691 string to rule them all",
"15692 string to rule them all",
"15693 string to rule them all",
"15694 string to rule them all",
"15695 string to rule them all",
"15696 string to rule them all",
"15697 string to rule them all",
"15698 string to rule them all",
"15699 string to rule them all",
"15700 string to rule them all",
"15701 string to rule them all",
"15702 string to rule them all",
"15703 string to rule them all",
"15704 string to rule them all",
"15705 string to rule them all",
"15706 string to rule them all",
"15707 string to rule them all",
"15708 string to rule them all",
"15709 string to rule them all",
"15710 string to rule them all",
"15711 string to rule them all",
"15712 string to rule them all",
"15713 string to rule them all",
"15714 string to rule them all",
"15715 string to rule them all",
"15716 string to rule them all",
"15717 string to rule them all",
"15718 string to rule them all",
"15719 string to rule them all",
"15720 string to rule them all",
"15721 string to rule them all",
"15722 string to rule them all",
"15723 string to rule them all",
"15724 string to rule them all",
"15725 string to rule them all",
"15726 string to rule them all",
"15727 string to rule them all",
"15728 string to rule them all",
"15729 string to rule them all",
"15730 string to rule them all",
"15731 string to rule them all",
"15732 string to rule them all",
"15733 string to rule them all",
"15734 string to rule them all",
"15735 string to rule them all",
"15736 string to rule them all",
"15737 string to rule them all",
"15738 string to rule them all",
"15739 string to rule them all",
"15740 string to rule them all",
"15741 string to rule them all",
"15742 string to rule them all",
"15743 string to rule them all",
"15744 string to rule them all",
"15745 string to rule them all",
"15746 string to rule them all",
"15747 string to rule them all",
"15748 string to rule them all",
"15749 string to rule them all",
"15750 string to rule them all",
"15751 string to rule them all",
"15752 string to rule them all",
"15753 string to rule them all",
"15754 string to rule them all",
"15755 string to rule them all",
"15756 string to rule them all",
"15757 string to rule them all",
"15758 string to rule them all",
"15759 string to rule them all",
"15760 string to rule them all",
"15761 string to rule them all",
"15762 string to rule them all",
"15763 string to rule them all",
"15764 string to rule them all",
"15765 string to rule them all",
"15766 string to rule them all",
"15767 string to rule them all",
"15768 string to rule them all",
"15769 string to rule them all",
"15770 string to rule them all",
"15771 string to rule them all",
"15772 string to rule them all",
"15773 string to rule them all",
"15774 string to rule them all",
"15775 string to rule them all",
"15776 string to rule them all",
"15777 string to rule them all",
"15778 string to rule them all",
"15779 string to rule them all",
"15780 string to rule them all",
"15781 string to rule them all",
"15782 string to rule them all",
"15783 string to rule them all",
"15784 string to rule them all",
"15785 string to rule them all",
"15786 string to rule them all",
"15787 string to rule them all",
"15788 string to rule them all",
"15789 string to rule them all",
"15790 string to rule them all",
"15791 string to rule them all",
"15792 string to rule them all",
"15793 string to rule them all",
"15794 string to rule them all",
"15795 string to rule them all",
"15796 string to rule them all",
"15797 string to rule them all",
"15798 string to rule them all",
"15799 string to rule them all",
"15800 string to rule them all",
"15801 string to rule them all",
"15802 string to rule them all",
"15803 string to rule them all",
"15804 string to rule them all",
"15805 string to rule them all",
"15806 string to rule them all",
"15807 string to rule them all",
"15808 string to rule them all",
"15809 string to rule them all",
"15810 string to rule them all",
"15811 string to rule them all",
"15812 string to rule them all",
"15813 string to rule them all",
"15814 string to rule them all",
"15815 string to rule them all",
"15816 string to rule them all",
"15817 string to rule them all",
"15818 string to rule them all",
"15819 string to rule them all",
"15820 string to rule them all",
"15821 string to rule them all",
"15822 string to rule them all",
"15823 string to rule them all",
"15824 string to rule them all",
"15825 string to rule them all",
"15826 string to rule them all",
"15827 string to rule them all",
"15828 string to rule them all",
"15829 string to rule them all",
"15830 string to rule them all",
"15831 string to rule them all",
"15832 string to rule them all",
"15833 string to rule them all",
"15834 string to rule them all",
"15835 string to rule them all",
"15836 string to rule them all",
"15837 string to rule them all",
"15838 string to rule them all",
"15839 string to rule them all",
"15840 string to rule them all",
"15841 string to rule them all",
"15842 string to rule them all",
"15843 string to rule them all",
"15844 string to rule them all",
"15845 string to rule them all",
"15846 string to rule them all",
"15847 string to rule them all",
"15848 string to rule them all",
"15849 string to rule them all",
"15850 string to rule them all",
"15851 string to rule them all",
"15852 string to rule them all",
"15853 string to rule them all",
"15854 string to rule them all",
"15855 string to rule them all",
"15856 string to rule them all",
"15857 string to rule them all",
"15858 string to rule them all",
"15859 string to rule them all",
"15860 string to rule them all",
"15861 string to rule them all",
"15862 string to rule them all",
"15863 string to rule them all",
"15864 string to rule them all",
"15865 string to rule them all",
"15866 string to rule them all",
"15867 string to rule them all",
"15868 string to rule them all",
"15869 string to rule them all",
"15870 string to rule them all",
"15871 string to rule them all",
"15872 string to rule them all",
"15873 string to rule them all",
"15874 string to rule them all",
"15875 string to rule them all",
"15876 string to rule them all",
"15877 string to rule them all",
"15878 string to rule them all",
"15879 string to rule them all",
"15880 string to rule them all",
"15881 string to rule them all",
"15882 string to rule them all",
"15883 string to rule them all",
"15884 string to rule them all",
"15885 string to rule them all",
"15886 string to rule them all",
"15887 string to rule them all",
"15888 string to rule them all",
"15889 string to rule them all",
"15890 string to rule them all",
"15891 string to rule them all",
"15892 string to rule them all",
"15893 string to rule them all",
"15894 string to rule them all",
"15895 string to rule them all",
"15896 string to rule them all",
"15897 string to rule them all",
"15898 string to rule them all",
"15899 string to rule them all",
"15900 string to rule them all",
"15901 string to rule them all",
"15902 string to rule them all",
"15903 string to rule them all",
"15904 string to rule them all",
"15905 string to rule them all",
"15906 string to rule them all",
"15907 string to rule them all",
"15908 string to rule them all",
"15909 string to rule them all",
"15910 string to rule them all",
"15911 string to rule them all",
"15912 string to rule them all",
"15913 string to rule them all",
"15914 string to rule them all",
"15915 string to rule them all",
"15916 string to rule them all",
"15917 string to rule them all",
"15918 string to rule them all",
"15919 string to rule them all",
"15920 string to rule them all",
"15921 string to rule them all",
"15922 string to rule them all",
"15923 string to rule them all",
"15924 string to rule them all",
"15925 string to rule them all",
"15926 string to rule them all",
"15927 string to rule them all",
"15928 string to rule them all",
"15929 string to rule them all",
"15930 string to rule them all",
"15931 string to rule them all",
"15932 string to rule them all",
"15933 string to rule them all",
"15934 string to rule them all",
"15935 string to rule them all",
"15936 string to rule them all",
"15937 string to rule them all",
"15938 string to rule them all",
"15939 string to rule them all",
"15940 string to rule them all",
"15941 string to rule them all",
"15942 string to rule them all",
"15943 string to rule them all",
"15944 string to rule them all",
"15945 string to rule them all",
"15946 string to rule them all",
"15947 string to rule them all",
"15948 string to rule them all",
"15949 string to rule them all",
"15950 string to rule them all",
"15951 string to rule them all",
"15952 string to rule them all",
"15953 string to rule them all",
"15954 string to rule them all",
"15955 string to rule them all",
"15956 string to rule them all",
"15957 string to rule them all",
"15958 string to rule them all",
"15959 string to rule them all",
"15960 string to rule them all",
"15961 string to rule them all",
"15962 string to rule them all",
"15963 string to rule them all",
"15964 string to rule them all",
"15965 string to rule them all",
"15966 string to rule them all",
"15967 string to rule them all",
"15968 string to rule them all",
"15969 string to rule them all",
"15970 string to rule them all",
"15971 string to rule them all",
"15972 string to rule them all",
"15973 string to rule them all",
"15974 string to rule them all",
"15975 string to rule them all",
"15976 string to rule them all",
"15977 string to rule them all",
"15978 string to rule them all",
"15979 string to rule them all",
"15980 string to rule them all",
"15981 string to rule them all",
"15982 string to rule them all",
"15983 string to rule them all",
"15984 string to rule them all",
"15985 string to rule them all",
"15986 string to rule them all",
"15987 string to rule them all",
"15988 string to rule them all",
"15989 string to rule them all",
"15990 string to rule them all",
"15991 string to rule them all",
"15992 string to rule them all",
"15993 string to rule them all",
"15994 string to rule them all",
"15995 string to rule them all",
"15996 string to rule them all",
"15997 string to rule them all",
"15998 string to rule them all",
"15999 string to rule them all",
"16000 string to rule them all",
"16001 string to rule them all",
"16002 string to rule them all",
"16003 string to rule them all",
"16004 string to rule them all",
"16005 string to rule them all",
"16006 string to rule them all",
"16007 string to rule them all",
"16008 string to rule them all",
"16009 string to rule them all",
"16010 string to rule them all",
"16011 string to rule them all",
"16012 string to rule them all",
"16013 string to rule them all",
"16014 string to rule them all",
"16015 string to rule them all",
"16016 string to rule them all",
"16017 string to rule them all",
"16018 string to rule them all",
"16019 string to rule them all",
"16020 string to rule them all",
"16021 string to rule them all",
"16022 string to rule them all",
"16023 string to rule them all",
"16024 string to rule them all",
"16025 string to rule them all",
"16026 string to rule them all",
"16027 string to rule them all",
"16028 string to rule them all",
"16029 string to rule them all",
"16030 string to rule them all",
"16031 string to rule them all",
"16032 string to rule them all",
"16033 string to rule them all",
"16034 string to rule them all",
"16035 string to rule them all",
"16036 string to rule them all",
"16037 string to rule them all",
"16038 string to rule them all",
"16039 string to rule them all",
"16040 string to rule them all",
"16041 string to rule them all",
"16042 string to rule them all",
"16043 string to rule them all",
"16044 string to rule them all",
"16045 string to rule them all",
"16046 string to rule them all",
"16047 string to rule them all",
"16048 string to rule them all",
"16049 string to rule them all",
"16050 string to rule them all",
"16051 string to rule them all",
"16052 string to rule them all",
"16053 string to rule them all",
"16054 string to rule them all",
"16055 string to rule them all",
"16056 string to rule them all",
"16057 string to rule them all",
"16058 string to rule them all",
"16059 string to rule them all",
"16060 string to rule them all",
"16061 string to rule them all",
"16062 string to rule them all",
"16063 string to rule them all",
"16064 string to rule them all",
"16065 string to rule them all",
"16066 string to rule them all",
"16067 string to rule them all",
"16068 string to rule them all",
"16069 string to rule them all",
"16070 string to rule them all",
"16071 string to rule them all",
"16072 string to rule them all",
"16073 string to rule them all",
"16074 string to rule them all",
"16075 string to rule them all",
"16076 string to rule them all",
"16077 string to rule them all",
"16078 string to rule them all",
"16079 string to rule them all",
"16080 string to rule them all",
"16081 string to rule them all",
"16082 string to rule them all",
"16083 string to rule them all",
"16084 string to rule them all",
"16085 string to rule them all",
"16086 string to rule them all",
"16087 string to rule them all",
"16088 string to rule them all",
"16089 string to rule them all",
"16090 string to rule them all",
"16091 string to rule them all",
"16092 string to rule them all",
"16093 string to rule them all",
"16094 string to rule them all",
"16095 string to rule them all",
"16096 string to rule them all",
"16097 string to rule them all",
"16098 string to rule them all",
"16099 string to rule them all",
"16100 string to rule them all",
"16101 string to rule them all",
"16102 string to rule them all",
"16103 string to rule them all",
"16104 string to rule them all",
"16105 string to rule them all",
"16106 string to rule them all",
"16107 string to rule them all",
"16108 string to rule them all",
"16109 string to rule them all",
"16110 string to rule them all",
"16111 string to rule them all",
"16112 string to rule them all",
"16113 string to rule them all",
"16114 string to rule them all",
"16115 string to rule them all",
"16116 string to rule them all",
"16117 string to rule them all",
"16118 string to rule them all",
"16119 string to rule them all",
"16120 string to rule them all",
"16121 string to rule them all",
"16122 string to rule them all",
"16123 string to rule them all",
"16124 string to rule them all",
"16125 string to rule them all",
"16126 string to rule them all",
"16127 string to rule them all",
"16128 string to rule them all",
"16129 string to rule them all",
"16130 string to rule them all",
"16131 string to rule them all",
"16132 string to rule them all",
"16133 string to rule them all",
"16134 string to rule them all",
"16135 string to rule them all",
"16136 string to rule them all",
"16137 string to rule them all",
"16138 string to rule them all",
"16139 string to rule them all",
"16140 string to rule them all",
"16141 string to rule them all",
"16142 string to rule them all",
"16143 string to rule them all",
"16144 string to rule them all",
"16145 string to rule them all",
"16146 string to rule them all",
"16147 string to rule them all",
"16148 string to rule them all",
"16149 string to rule them all",
"16150 string to rule them all",
"16151 string to rule them all",
"16152 string to rule them all",
"16153 string to rule them all",
"16154 string to rule them all",
"16155 string to rule them all",
"16156 string to rule them all",
"16157 string to rule them all",
"16158 string to rule them all",
"16159 string to rule them all",
"16160 string to rule them all",
"16161 string to rule them all",
"16162 string to rule them all",
"16163 string to rule them all",
"16164 string to rule them all",
"16165 string to rule them all",
"16166 string to rule them all",
"16167 string to rule them all",
"16168 string to rule them all",
"16169 string to rule them all",
"16170 string to rule them all",
"16171 string to rule them all",
"16172 string to rule them all",
"16173 string to rule them all",
"16174 string to rule them all",
"16175 string to rule them all",
"16176 string to rule them all",
"16177 string to rule them all",
"16178 string to rule them all",
"16179 string to rule them all",
"16180 string to rule them all",
"16181 string to rule them all",
"16182 string to rule them all",
"16183 string to rule them all",
"16184 string to rule them all",
"16185 string to rule them all",
"16186 string to rule them all",
"16187 string to rule them all",
"16188 string to rule them all",
"16189 string to rule them all",
"16190 string to rule them all",
"16191 string to rule them all",
"16192 string to rule them all",
"16193 string to rule them all",
"16194 string to rule them all",
"16195 string to rule them all",
"16196 string to rule them all",
"16197 string to rule them all",
"16198 string to rule them all",
"16199 string to rule them all",
"16200 string to rule them all",
"16201 string to rule them all",
"16202 string to rule them all",
"16203 string to rule them all",
"16204 string to rule them all",
"16205 string to rule them all",
"16206 string to rule them all",
"16207 string to rule them all",
"16208 string to rule them all",
"16209 string to rule them all",
"16210 string to rule them all",
"16211 string to rule them all",
"16212 string to rule them all",
"16213 string to rule them all",
"16214 string to rule them all",
"16215 string to rule them all",
"16216 string to rule them all",
"16217 string to rule them all",
"16218 string to rule them all",
"16219 string to rule them all",
"16220 string to rule them all",
"16221 string to rule them all",
"16222 string to rule them all",
"16223 string to rule them all",
"16224 string to rule them all",
"16225 string to rule them all",
"16226 string to rule them all",
"16227 string to rule them all",
"16228 string to rule them all",
"16229 string to rule them all",
"16230 string to rule them all",
"16231 string to rule them all",
"16232 string to rule them all",
"16233 string to rule them all",
"16234 string to rule them all",
"16235 string to rule them all",
"16236 string to rule them all",
"16237 string to rule them all",
"16238 string to rule them all",
"16239 string to rule them all",
"16240 string to rule them all",
"16241 string to rule them all",
"16242 string to rule them all",
"16243 string to rule them all",
"16244 string to rule them all",
"16245 string to rule them all",
"16246 string to rule them all",
"16247 string to rule them all",
"16248 string to rule them all",
"16249 string to rule them all",
"16250 string to rule them all",
"16251 string to rule them all",
"16252 string to rule them all",
"16253 string to rule them all",
"16254 string to rule them all",
"16255 string to rule them all",
"16256 string to rule them all",
"16257 string to rule them all",
"16258 string to rule them all",
"16259 string to rule them all",
"16260 string to rule them all",
"16261 string to rule them all",
"16262 string to rule them all",
"16263 string to rule them all",
"16264 string to rule them all",
"16265 string to rule them all",
"16266 string to rule them all",
"16267 string to rule them all",
"16268 string to rule them all",
"16269 string to rule them all",
"16270 string to rule them all",
"16271 string to rule them all",
"16272 string to rule them all",
"16273 string to rule them all",
"16274 string to rule them all",
"16275 string to rule them all",
"16276 string to rule them all",
"16277 string to rule them all",
"16278 string to rule them all",
"16279 string to rule them all",
"16280 string to rule them all",
"16281 string to rule them all",
"16282 string to rule them all",
"16283 string to rule them all",
"16284 string to rule them all",
"16285 string to rule them all",
"16286 string to rule them all",
"16287 string to rule them all",
"16288 string to rule them all",
"16289 string to rule them all",
"16290 string to rule them all",
"16291 string to rule them all",
"16292 string to rule them all",
"16293 string to rule them all",
"16294 string to rule them all",
"16295 string to rule them all",
"16296 string to rule them all",
"16297 string to rule them all",
"16298 string to rule them all",
"16299 string to rule them all",
"16300 string to rule them all",
"16301 string to rule them all",
"16302 string to rule them all",
"16303 string to rule them all",
"16304 string to rule them all",
"16305 string to rule them all",
"16306 string to rule them all",
"16307 string to rule them all",
"16308 string to rule them all",
"16309 string to rule them all",
"16310 string to rule them all",
"16311 string to rule them all",
"16312 string to rule them all",
"16313 string to rule them all",
"16314 string to rule them all",
"16315 string to rule them all",
"16316 string to rule them all",
"16317 string to rule them all",
"16318 string to rule them all",
"16319 string to rule them all",
"16320 string to rule them all",
"16321 string to rule them all",
"16322 string to rule them all",
"16323 string to rule them all",
"16324 string to rule them all",
"16325 string to rule them all",
"16326 string to rule them all",
"16327 string to rule them all",
"16328 string to rule them all",
"16329 string to rule them all",
"16330 string to rule them all",
"16331 string to rule them all",
"16332 string to rule them all",
"16333 string to rule them all",
"16334 string to rule them all",
"16335 string to rule them all",
"16336 string to rule them all",
"16337 string to rule them all",
"16338 string to rule them all",
"16339 string to rule them all",
"16340 string to rule them all",
"16341 string to rule them all",
"16342 string to rule them all",
"16343 string to rule them all",
"16344 string to rule them all",
"16345 string to rule them all",
"16346 string to rule them all",
"16347 string to rule them all",
"16348 string to rule them all",
"16349 string to rule them all",
"16350 string to rule them all",
"16351 string to rule them all",
"16352 string to rule them all",
"16353 string to rule them all",
"16354 string to rule them all",
"16355 string to rule them all",
"16356 string to rule them all",
"16357 string to rule them all",
"16358 string to rule them all",
"16359 string to rule them all",
"16360 string to rule them all",
"16361 string to rule them all",
"16362 string to rule them all",
"16363 string to rule them all",
"16364 string to rule them all",
"16365 string to rule them all",
"16366 string to rule them all",
"16367 string to rule them all",
"16368 string to rule them all",
"16369 string to rule them all",
"16370 string to rule them all",
"16371 string to rule them all",
"16372 string to rule them all",
"16373 string to rule them all",
"16374 string to rule them all",
"16375 string to rule them all",
"16376 string to rule them all",
"16377 string to rule them all",
"16378 string to rule them all",
"16379 string to rule them all",
"16380 string to rule them all",
"16381 string to rule them all",
"16382 string to rule them all",
"16383 string to rule them all",
"16384 string to rule them all",
"16385 string to rule them all",
"16386 string to rule them all",
"16387 string to rule them all",
"16388 string to rule them all",
"16389 string to rule them all",
"16390 string to rule them all",
"16391 string to rule them all",
"16392 string to rule them all",
"16393 string to rule them all",
"16394 string to rule them all",
"16395 string to rule them all",
"16396 string to rule them all",
"16397 string to rule them all",
"16398 string to rule them all",
"16399 string to rule them all",
"16400 string to rule them all",
"16401 string to rule them all",
"16402 string to rule them all",
"16403 string to rule them all",
"16404 string to rule them all",
"16405 string to rule them all",
"16406 string to rule them all",
"16407 string to rule them all",
"16408 string to rule them all",
"16409 string to rule them all",
"16410 string to rule them all",
"16411 string to rule them all",
"16412 string to rule them all",
"16413 string to rule them all",
"16414 string to rule them all",
"16415 string to rule them all",
"16416 string to rule them all",
"16417 string to rule them all",
"16418 string to rule them all",
"16419 string to rule them all",
"16420 string to rule them all",
"16421 string to rule them all",
"16422 string to rule them all",
"16423 string to rule them all",
"16424 string to rule them all",
"16425 string to rule them all",
"16426 string to rule them all",
"16427 string to rule them all",
"16428 string to rule them all",
"16429 string to rule them all",
"16430 string to rule them all",
"16431 string to rule them all",
"16432 string to rule them all",
"16433 string to rule them all",
"16434 string to rule them all",
"16435 string to rule them all",
"16436 string to rule them all",
"16437 string to rule them all",
"16438 string to rule them all",
"16439 string to rule them all",
"16440 string to rule them all",
"16441 string to rule them all",
"16442 string to rule them all",
"16443 string to rule them all",
"16444 string to rule them all",
"16445 string to rule them all",
"16446 string to rule them all",
"16447 string to rule them all",
"16448 string to rule them all",
"16449 string to rule them all",
"16450 string to rule them all",
"16451 string to rule them all",
"16452 string to rule them all",
"16453 string to rule them all",
"16454 string to rule them all",
"16455 string to rule them all",
"16456 string to rule them all",
"16457 string to rule them all",
"16458 string to rule them all",
"16459 string to rule them all",
"16460 string to rule them all",
"16461 string to rule them all",
"16462 string to rule them all",
"16463 string to rule them all",
"16464 string to rule them all",
"16465 string to rule them all",
"16466 string to rule them all",
"16467 string to rule them all",
"16468 string to rule them all",
"16469 string to rule them all",
"16470 string to rule them all",
"16471 string to rule them all",
"16472 string to rule them all",
"16473 string to rule them all",
"16474 string to rule them all",
"16475 string to rule them all",
"16476 string to rule them all",
"16477 string to rule them all",
"16478 string to rule them all",
"16479 string to rule them all",
"16480 string to rule them all",
"16481 string to rule them all",
"16482 string to rule them all",
"16483 string to rule them all",
"16484 string to rule them all",
"16485 string to rule them all",
"16486 string to rule them all",
"16487 string to rule them all",
"16488 string to rule them all",
"16489 string to rule them all",
"16490 string to rule them all",
"16491 string to rule them all",
"16492 string to rule them all",
"16493 string to rule them all",
"16494 string to rule them all",
"16495 string to rule them all",
"16496 string to rule them all",
"16497 string to rule them all",
"16498 string to rule them all",
"16499 string to rule them all",
"16500 string to rule them all",
"16501 string to rule them all",
"16502 string to rule them all",
"16503 string to rule them all",
"16504 string to rule them all",
"16505 string to rule them all",
"16506 string to rule them all",
"16507 string to rule them all",
"16508 string to rule them all",
"16509 string to rule them all",
"16510 string to rule them all",
"16511 string to rule them all",
"16512 string to rule them all",
"16513 string to rule them all",
"16514 string to rule them all",
"16515 string to rule them all",
"16516 string to rule them all",
"16517 string to rule them all",
"16518 string to rule them all",
"16519 string to rule them all",
"16520 string to rule them all",
"16521 string to rule them all",
"16522 string to rule them all",
"16523 string to rule them all",
"16524 string to rule them all",
"16525 string to rule them all",
"16526 string to rule them all",
"16527 string to rule them all",
"16528 string to rule them all",
"16529 string to rule them all",
"16530 string to rule them all",
"16531 string to rule them all",
"16532 string to rule them all",
"16533 string to rule them all",
"16534 string to rule them all",
"16535 string to rule them all",
"16536 string to rule them all",
"16537 string to rule them all",
"16538 string to rule them all",
"16539 string to rule them all",
"16540 string to rule them all",
"16541 string to rule them all",
"16542 string to rule them all",
"16543 string to rule them all",
"16544 string to rule them all",
"16545 string to rule them all",
"16546 string to rule them all",
"16547 string to rule them all",
"16548 string to rule them all",
"16549 string to rule them all",
"16550 string to rule them all",
"16551 string to rule them all",
"16552 string to rule them all",
"16553 string to rule them all",
"16554 string to rule them all",
"16555 string to rule them all",
"16556 string to rule them all",
"16557 string to rule them all",
"16558 string to rule them all",
"16559 string to rule them all",
"16560 string to rule them all",
"16561 string to rule them all",
"16562 string to rule them all",
"16563 string to rule them all",
"16564 string to rule them all",
"16565 string to rule them all",
"16566 string to rule them all",
"16567 string to rule them all",
"16568 string to rule them all",
"16569 string to rule them all",
"16570 string to rule them all",
"16571 string to rule them all",
"16572 string to rule them all",
"16573 string to rule them all",
"16574 string to rule them all",
"16575 string to rule them all",
"16576 string to rule them all",
"16577 string to rule them all",
"16578 string to rule them all",
"16579 string to rule them all",
"16580 string to rule them all",
"16581 string to rule them all",
"16582 string to rule them all",
"16583 string to rule them all",
"16584 string to rule them all",
"16585 string to rule them all",
"16586 string to rule them all",
"16587 string to rule them all",
"16588 string to rule them all",
"16589 string to rule them all",
"16590 string to rule them all",
"16591 string to rule them all",
"16592 string to rule them all",
"16593 string to rule them all",
"16594 string to rule them all",
"16595 string to rule them all",
"16596 string to rule them all",
"16597 string to rule them all",
"16598 string to rule them all",
"16599 string to rule them all",
"16600 string to rule them all",
"16601 string to rule them all",
"16602 string to rule them all",
"16603 string to rule them all",
"16604 string to rule them all",
"16605 string to rule them all",
"16606 string to rule them all",
"16607 string to rule them all",
"16608 string to rule them all",
"16609 string to rule them all",
"16610 string to rule them all",
"16611 string to rule them all",
"16612 string to rule them all",
"16613 string to rule them all",
"16614 string to rule them all",
"16615 string to rule them all",
"16616 string to rule them all",
"16617 string to rule them all",
"16618 string to rule them all",
"16619 string to rule them all",
"16620 string to rule them all",
"16621 string to rule them all",
"16622 string to rule them all",
"16623 string to rule them all",
"16624 string to rule them all",
"16625 string to rule them all",
"16626 string to rule them all",
"16627 string to rule them all",
"16628 string to rule them all",
"16629 string to rule them all",
"16630 string to rule them all",
"16631 string to rule them all",
"16632 string to rule them all",
"16633 string to rule them all",
"16634 string to rule them all",
"16635 string to rule them all",
"16636 string to rule them all",
"16637 string to rule them all",
"16638 string to rule them all",
"16639 string to rule them all",
"16640 string to rule them all",
"16641 string to rule them all",
"16642 string to rule them all",
"16643 string to rule them all",
"16644 string to rule them all",
"16645 string to rule them all",
"16646 string to rule them all",
"16647 string to rule them all",
"16648 string to rule them all",
"16649 string to rule them all",
"16650 string to rule them all",
"16651 string to rule them all",
"16652 string to rule them all",
"16653 string to rule them all",
"16654 string to rule them all",
"16655 string to rule them all",
"16656 string to rule them all",
"16657 string to rule them all",
"16658 string to rule them all",
"16659 string to rule them all",
"16660 string to rule them all",
"16661 string to rule them all",
"16662 string to rule them all",
"16663 string to rule them all",
"16664 string to rule them all",
"16665 string to rule them all",
"16666 string to rule them all",
"16667 string to rule them all",
"16668 string to rule them all",
"16669 string to rule them all",
"16670 string to rule them all",
"16671 string to rule them all",
"16672 string to rule them all",
"16673 string to rule them all",
"16674 string to rule them all",
"16675 string to rule them all",
"16676 string to rule them all",
"16677 string to rule them all",
"16678 string to rule them all",
"16679 string to rule them all",
"16680 string to rule them all",
"16681 string to rule them all",
"16682 string to rule them all",
"16683 string to rule them all",
"16684 string to rule them all",
"16685 string to rule them all",
"16686 string to rule them all",
"16687 string to rule them all",
"16688 string to rule them all",
"16689 string to rule them all",
"16690 string to rule them all",
"16691 string to rule them all",
"16692 string to rule them all",
"16693 string to rule them all",
"16694 string to rule them all",
"16695 string to rule them all",
"16696 string to rule them all",
"16697 string to rule them all",
"16698 string to rule them all",
"16699 string to rule them all",
"16700 string to rule them all",
"16701 string to rule them all",
"16702 string to rule them all",
"16703 string to rule them all",
"16704 string to rule them all",
"16705 string to rule them all",
"16706 string to rule them all",
"16707 string to rule them all",
"16708 string to rule them all",
"16709 string to rule them all",
"16710 string to rule them all",
"16711 string to rule them all",
"16712 string to rule them all",
"16713 string to rule them all",
"16714 string to rule them all",
"16715 string to rule them all",
"16716 string to rule them all",
"16717 string to rule them all",
"16718 string to rule them all",
"16719 string to rule them all",
"16720 string to rule them all",
"16721 string to rule them all",
"16722 string to rule them all",
"16723 string to rule them all",
"16724 string to rule them all",
"16725 string to rule them all",
"16726 string to rule them all",
"16727 string to rule them all",
"16728 string to rule them all",
"16729 string to rule them all",
"16730 string to rule them all",
"16731 string to rule them all",
"16732 string to rule them all",
"16733 string to rule them all",
"16734 string to rule them all",
"16735 string to rule them all",
"16736 string to rule them all",
"16737 string to rule them all",
"16738 string to rule them all",
"16739 string to rule them all",
"16740 string to rule them all",
"16741 string to rule them all",
"16742 string to rule them all",
"16743 string to rule them all",
"16744 string to rule them all",
"16745 string to rule them all",
"16746 string to rule them all",
"16747 string to rule them all",
"16748 string to rule them all",
"16749 string to rule them all",
"16750 string to rule them all",
"16751 string to rule them all",
"16752 string to rule them all",
"16753 string to rule them all",
"16754 string to rule them all",
"16755 string to rule them all",
"16756 string to rule them all",
"16757 string to rule them all",
"16758 string to rule them all",
"16759 string to rule them all",
"16760 string to rule them all",
"16761 string to rule them all",
"16762 string to rule them all",
"16763 string to rule them all",
"16764 string to rule them all",
"16765 string to rule them all",
"16766 string to rule them all",
"16767 string to rule them all",
"16768 string to rule them all",
"16769 string to rule them all",
"16770 string to rule them all",
"16771 string to rule them all",
"16772 string to rule them all",
"16773 string to rule them all",
"16774 string to rule them all",
"16775 string to rule them all",
"16776 string to rule them all",
"16777 string to rule them all",
"16778 string to rule them all",
"16779 string to rule them all",
"16780 string to rule them all",
"16781 string to rule them all",
"16782 string to rule them all",
"16783 string to rule them all",
"16784 string to rule them all",
"16785 string to rule them all",
"16786 string to rule them all",
"16787 string to rule them all",
"16788 string to rule them all",
"16789 string to rule them all",
"16790 string to rule them all",
"16791 string to rule them all",
"16792 string to rule them all",
"16793 string to rule them all",
"16794 string to rule them all",
"16795 string to rule them all",
"16796 string to rule them all",
"16797 string to rule them all",
"16798 string to rule them all",
"16799 string to rule them all",
"16800 string to rule them all",
"16801 string to rule them all",
"16802 string to rule them all",
"16803 string to rule them all",
"16804 string to rule them all",
"16805 string to rule them all",
"16806 string to rule them all",
"16807 string to rule them all",
"16808 string to rule them all",
"16809 string to rule them all",
"16810 string to rule them all",
"16811 string to rule them all",
"16812 string to rule them all",
"16813 string to rule them all",
"16814 string to rule them all",
"16815 string to rule them all",
"16816 string to rule them all",
"16817 string to rule them all",
"16818 string to rule them all",
"16819 string to rule them all",
"16820 string to rule them all",
"16821 string to rule them all",
"16822 string to rule them all",
"16823 string to rule them all",
"16824 string to rule them all",
"16825 string to rule them all",
"16826 string to rule them all",
"16827 string to rule them all",
"16828 string to rule them all",
"16829 string to rule them all",
"16830 string to rule them all",
"16831 string to rule them all",
"16832 string to rule them all",
"16833 string to rule them all",
"16834 string to rule them all",
"16835 string to rule them all",
"16836 string to rule them all",
"16837 string to rule them all",
"16838 string to rule them all",
"16839 string to rule them all",
"16840 string to rule them all",
"16841 string to rule them all",
"16842 string to rule them all",
"16843 string to rule them all",
"16844 string to rule them all",
"16845 string to rule them all",
"16846 string to rule them all",
"16847 string to rule them all",
"16848 string to rule them all",
"16849 string to rule them all",
"16850 string to rule them all",
"16851 string to rule them all",
"16852 string to rule them all",
"16853 string to rule them all",
"16854 string to rule them all",
"16855 string to rule them all",
"16856 string to rule them all",
"16857 string to rule them all",
"16858 string to rule them all",
"16859 string to rule them all",
"16860 string to rule them all",
"16861 string to rule them all",
"16862 string to rule them all",
"16863 string to rule them all",
"16864 string to rule them all",
"16865 string to rule them all",
"16866 string to rule them all",
"16867 string to rule them all",
"16868 string to rule them all",
"16869 string to rule them all",
"16870 string to rule them all",
"16871 string to rule them all",
"16872 string to rule them all",
"16873 string to rule them all",
"16874 string to rule them all",
"16875 string to rule them all",
"16876 string to rule them all",
"16877 string to rule them all",
"16878 string to rule them all",
"16879 string to rule them all",
"16880 string to rule them all",
"16881 string to rule them all",
"16882 string to rule them all",
"16883 string to rule them all",
"16884 string to rule them all",
"16885 string to rule them all",
"16886 string to rule them all",
"16887 string to rule them all",
"16888 string to rule them all",
"16889 string to rule them all",
"16890 string to rule them all",
"16891 string to rule them all",
"16892 string to rule them all",
"16893 string to rule them all",
"16894 string to rule them all",
"16895 string to rule them all",
"16896 string to rule them all",
"16897 string to rule them all",
"16898 string to rule them all",
"16899 string to rule them all",
"16900 string to rule them all",
"16901 string to rule them all",
"16902 string to rule them all",
"16903 string to rule them all",
"16904 string to rule them all",
"16905 string to rule them all",
"16906 string to rule them all",
"16907 string to rule them all",
"16908 string to rule them all",
"16909 string to rule them all",
"16910 string to rule them all",
"16911 string to rule them all",
"16912 string to rule them all",
"16913 string to rule them all",
"16914 string to rule them all",
"16915 string to rule them all",
"16916 string to rule them all",
"16917 string to rule them all",
"16918 string to rule them all",
"16919 string to rule them all",
"16920 string to rule them all",
"16921 string to rule them all",
"16922 string to rule them all",
"16923 string to rule them all",
"16924 string to rule them all",
"16925 string to rule them all",
"16926 string to rule them all",
"16927 string to rule them all",
"16928 string to rule them all",
"16929 string to rule them all",
"16930 string to rule them all",
"16931 string to rule them all",
"16932 string to rule them all",
"16933 string to rule them all",
"16934 string to rule them all",
"16935 string to rule them all",
"16936 string to rule them all",
"16937 string to rule them all",
"16938 string to rule them all",
"16939 string to rule them all",
"16940 string to rule them all",
"16941 string to rule them all",
"16942 string to rule them all",
"16943 string to rule them all",
"16944 string to rule them all",
"16945 string to rule them all",
"16946 string to rule them all",
"16947 string to rule them all",
"16948 string to rule them all",
"16949 string to rule them all",
"16950 string to rule them all",
"16951 string to rule them all",
"16952 string to rule them all",
"16953 string to rule them all",
"16954 string to rule them all",
"16955 string to rule them all",
"16956 string to rule them all",
"16957 string to rule them all",
"16958 string to rule them all",
"16959 string to rule them all",
"16960 string to rule them all",
"16961 string to rule them all",
"16962 string to rule them all",
"16963 string to rule them all",
"16964 string to rule them all",
"16965 string to rule them all",
"16966 string to rule them all",
"16967 string to rule them all",
"16968 string to rule them all",
"16969 string to rule them all",
"16970 string to rule them all",
"16971 string to rule them all",
"16972 string to rule them all",
"16973 string to rule them all",
"16974 string to rule them all",
"16975 string to rule them all",
"16976 string to rule them all",
"16977 string to rule them all",
"16978 string to rule them all",
"16979 string to rule them all",
"16980 string to rule them all",
"16981 string to rule them all",
"16982 string to rule them all",
"16983 string to rule them all",
"16984 string to rule them all",
"16985 string to rule them all",
"16986 string to rule them all",
"16987 string to rule them all",
"16988 string to rule them all",
"16989 string to rule them all",
"16990 string to rule them all",
"16991 string to rule them all",
"16992 string to rule them all",
"16993 string to rule them all",
"16994 string to rule them all",
"16995 string to rule them all",
"16996 string to rule them all",
"16997 string to rule them all",
"16998 string to rule them all",
"16999 string to rule them all",
"17000 string to rule them all",
"17001 string to rule them all",
"17002 string to rule them all",
"17003 string to rule them all",
"17004 string to rule them all",
"17005 string to rule them all",
"17006 string to rule them all",
"17007 string to rule them all",
"17008 string to rule them all",
"17009 string to rule them all",
"17010 string to rule them all",
"17011 string to rule them all",
"17012 string to rule them all",
"17013 string to rule them all",
"17014 string to rule them all",
"17015 string to rule them all",
"17016 string to rule them all",
"17017 string to rule them all",
"17018 string to rule them all",
"17019 string to rule them all",
"17020 string to rule them all",
"17021 string to rule them all",
"17022 string to rule them all",
"17023 string to rule them all",
"17024 string to rule them all",
"17025 string to rule them all",
"17026 string to rule them all",
"17027 string to rule them all",
"17028 string to rule them all",
"17029 string to rule them all",
"17030 string to rule them all",
"17031 string to rule them all",
"17032 string to rule them all",
"17033 string to rule them all",
"17034 string to rule them all",
"17035 string to rule them all",
"17036 string to rule them all",
"17037 string to rule them all",
"17038 string to rule them all",
"17039 string to rule them all",
"17040 string to rule them all",
"17041 string to rule them all",
"17042 string to rule them all",
"17043 string to rule them all",
"17044 string to rule them all",
"17045 string to rule them all",
"17046 string to rule them all",
"17047 string to rule them all",
"17048 string to rule them all",
"17049 string to rule them all",
"17050 string to rule them all",
"17051 string to rule them all",
"17052 string to rule them all",
"17053 string to rule them all",
"17054 string to rule them all",
"17055 string to rule them all",
"17056 string to rule them all",
"17057 string to rule them all",
"17058 string to rule them all",
"17059 string to rule them all",
"17060 string to rule them all",
"17061 string to rule them all",
"17062 string to rule them all",
"17063 string to rule them all",
"17064 string to rule them all",
"17065 string to rule them all",
"17066 string to rule them all",
"17067 string to rule them all",
"17068 string to rule them all",
"17069 string to rule them all",
"17070 string to rule them all",
"17071 string to rule them all",
"17072 string to rule them all",
"17073 string to rule them all",
"17074 string to rule them all",
"17075 string to rule them all",
"17076 string to rule them all",
"17077 string to rule them all",
"17078 string to rule them all",
"17079 string to rule them all",
"17080 string to rule them all",
"17081 string to rule them all",
"17082 string to rule them all",
"17083 string to rule them all",
"17084 string to rule them all",
"17085 string to rule them all",
"17086 string to rule them all",
"17087 string to rule them all",
"17088 string to rule them all",
"17089 string to rule them all",
"17090 string to rule them all",
"17091 string to rule them all",
"17092 string to rule them all",
"17093 string to rule them all",
"17094 string to rule them all",
"17095 string to rule them all",
"17096 string to rule them all",
"17097 string to rule them all",
"17098 string to rule them all",
"17099 string to rule them all",
"17100 string to rule them all",
"17101 string to rule them all",
"17102 string to rule them all",
"17103 string to rule them all",
"17104 string to rule them all",
"17105 string to rule them all",
"17106 string to rule them all",
"17107 string to rule them all",
"17108 string to rule them all",
"17109 string to rule them all",
"17110 string to rule them all",
"17111 string to rule them all",
"17112 string to rule them all",
"17113 string to rule them all",
"17114 string to rule them all",
"17115 string to rule them all",
"17116 string to rule them all",
"17117 string to rule them all",
"17118 string to rule them all",
"17119 string to rule them all",
"17120 string to rule them all",
"17121 string to rule them all",
"17122 string to rule them all",
"17123 string to rule them all",
"17124 string to rule them all",
"17125 string to rule them all",
"17126 string to rule them all",
"17127 string to rule them all",
"17128 string to rule them all",
"17129 string to rule them all",
"17130 string to rule them all",
"17131 string to rule them all",
"17132 string to rule them all",
"17133 string to rule them all",
"17134 string to rule them all",
"17135 string to rule them all",
"17136 string to rule them all",
"17137 string to rule them all",
"17138 string to rule them all",
"17139 string to rule them all",
"17140 string to rule them all",
"17141 string to rule them all",
"17142 string to rule them all",
"17143 string to rule them all",
"17144 string to rule them all",
"17145 string to rule them all",
"17146 string to rule them all",
"17147 string to rule them all",
"17148 string to rule them all",
"17149 string to rule them all",
"17150 string to rule them all",
"17151 string to rule them all",
"17152 string to rule them all",
"17153 string to rule them all",
"17154 string to rule them all",
"17155 string to rule them all",
"17156 string to rule them all",
"17157 string to rule them all",
"17158 string to rule them all",
"17159 string to rule them all",
"17160 string to rule them all",
"17161 string to rule them all",
"17162 string to rule them all",
"17163 string to rule them all",
"17164 string to rule them all",
"17165 string to rule them all",
"17166 string to rule them all",
"17167 string to rule them all",
"17168 string to rule them all",
"17169 string to rule them all",
"17170 string to rule them all",
"17171 string to rule them all",
"17172 string to rule them all",
"17173 string to rule them all",
"17174 string to rule them all",
"17175 string to rule them all",
"17176 string to rule them all",
"17177 string to rule them all",
"17178 string to rule them all",
"17179 string to rule them all",
"17180 string to rule them all",
"17181 string to rule them all",
"17182 string to rule them all",
"17183 string to rule them all",
"17184 string to rule them all",
"17185 string to rule them all",
"17186 string to rule them all",
"17187 string to rule them all",
"17188 string to rule them all",
"17189 string to rule them all",
"17190 string to rule them all",
"17191 string to rule them all",
"17192 string to rule them all",
"17193 string to rule them all",
"17194 string to rule them all",
"17195 string to rule them all",
"17196 string to rule them all",
"17197 string to rule them all",
"17198 string to rule them all",
"17199 string to rule them all",
"17200 string to rule them all",
"17201 string to rule them all",
"17202 string to rule them all",
"17203 string to rule them all",
"17204 string to rule them all",
"17205 string to rule them all",
"17206 string to rule them all",
"17207 string to rule them all",
"17208 string to rule them all",
"17209 string to rule them all",
"17210 string to rule them all",
"17211 string to rule them all",
"17212 string to rule them all",
"17213 string to rule them all",
"17214 string to rule them all",
"17215 string to rule them all",
"17216 string to rule them all",
"17217 string to rule them all",
"17218 string to rule them all",
"17219 string to rule them all",
"17220 string to rule them all",
"17221 string to rule them all",
"17222 string to rule them all",
"17223 string to rule them all",
"17224 string to rule them all",
"17225 string to rule them all",
"17226 string to rule them all",
"17227 string to rule them all",
"17228 string to rule them all",
"17229 string to rule them all",
"17230 string to rule them all",
"17231 string to rule them all",
"17232 string to rule them all",
"17233 string to rule them all",
"17234 string to rule them all",
"17235 string to rule them all",
"17236 string to rule them all",
"17237 string to rule them all",
"17238 string to rule them all",
"17239 string to rule them all",
"17240 string to rule them all",
"17241 string to rule them all",
"17242 string to rule them all",
"17243 string to rule them all",
"17244 string to rule them all",
"17245 string to rule them all",
"17246 string to rule them all",
"17247 string to rule them all",
"17248 string to rule them all",
"17249 string to rule them all",
"17250 string to rule them all",
"17251 string to rule them all",
"17252 string to rule them all",
"17253 string to rule them all",
"17254 string to rule them all",
"17255 string to rule them all",
"17256 string to rule them all",
"17257 string to rule them all",
"17258 string to rule them all",
"17259 string to rule them all",
"17260 string to rule them all",
"17261 string to rule them all",
"17262 string to rule them all",
"17263 string to rule them all",
"17264 string to rule them all",
"17265 string to rule them all",
"17266 string to rule them all",
"17267 string to rule them all",
"17268 string to rule them all",
"17269 string to rule them all",
"17270 string to rule them all",
"17271 string to rule them all",
"17272 string to rule them all",
"17273 string to rule them all",
"17274 string to rule them all",
"17275 string to rule them all",
"17276 string to rule them all",
"17277 string to rule them all",
"17278 string to rule them all",
"17279 string to rule them all",
"17280 string to rule them all",
"17281 string to rule them all",
"17282 string to rule them all",
"17283 string to rule them all",
"17284 string to rule them all",
"17285 string to rule them all",
"17286 string to rule them all",
"17287 string to rule them all",
"17288 string to rule them all",
"17289 string to rule them all",
"17290 string to rule them all",
"17291 string to rule them all",
"17292 string to rule them all",
"17293 string to rule them all",
"17294 string to rule them all",
"17295 string to rule them all",
"17296 string to rule them all",
"17297 string to rule them all",
"17298 string to rule them all",
"17299 string to rule them all",
"17300 string to rule them all",
"17301 string to rule them all",
"17302 string to rule them all",
"17303 string to rule them all",
"17304 string to rule them all",
"17305 string to rule them all",
"17306 string to rule them all",
"17307 string to rule them all",
"17308 string to rule them all",
"17309 string to rule them all",
"17310 string to rule them all",
"17311 string to rule them all",
"17312 string to rule them all",
"17313 string to rule them all",
"17314 string to rule them all",
"17315 string to rule them all",
"17316 string to rule them all",
"17317 string to rule them all",
"17318 string to rule them all",
"17319 string to rule them all",
"17320 string to rule them all",
"17321 string to rule them all",
"17322 string to rule them all",
"17323 string to rule them all",
"17324 string to rule them all",
"17325 string to rule them all",
"17326 string to rule them all",
"17327 string to rule them all",
"17328 string to rule them all",
"17329 string to rule them all",
"17330 string to rule them all",
"17331 string to rule them all",
"17332 string to rule them all",
"17333 string to rule them all",
"17334 string to rule them all",
"17335 string to rule them all",
"17336 string to rule them all",
"17337 string to rule them all",
"17338 string to rule them all",
"17339 string to rule them all",
"17340 string to rule them all",
"17341 string to rule them all",
"17342 string to rule them all",
"17343 string to rule them all",
"17344 string to rule them all",
"17345 string to rule them all",
"17346 string to rule them all",
"17347 string to rule them all",
"17348 string to rule them all",
"17349 string to rule them all",
"17350 string to rule them all",
"17351 string to rule them all",
"17352 string to rule them all",
"17353 string to rule them all",
"17354 string to rule them all",
"17355 string to rule them all",
"17356 string to rule them all",
"17357 string to rule them all",
"17358 string to rule them all",
"17359 string to rule them all",
"17360 string to rule them all",
"17361 string to rule them all",
"17362 string to rule them all",
"17363 string to rule them all",
"17364 string to rule them all",
"17365 string to rule them all",
"17366 string to rule them all",
"17367 string to rule them all",
"17368 string to rule them all",
"17369 string to rule them all",
"17370 string to rule them all",
"17371 string to rule them all",
"17372 string to rule them all",
"17373 string to rule them all",
"17374 string to rule them all",
"17375 string to rule them all",
"17376 string to rule them all",
"17377 string to rule them all",
"17378 string to rule them all",
"17379 string to rule them all",
"17380 string to rule them all",
"17381 string to rule them all",
"17382 string to rule them all",
"17383 string to rule them all",
"17384 string to rule them all",
"17385 string to rule them all",
"17386 string to rule them all",
"17387 string to rule them all",
"17388 string to rule them all",
"17389 string to rule them all",
"17390 string to rule them all",
"17391 string to rule them all",
"17392 string to rule them all",
"17393 string to rule them all",
"17394 string to rule them all",
"17395 string to rule them all",
"17396 string to rule them all",
"17397 string to rule them all",
"17398 string to rule them all",
"17399 string to rule them all",
"17400 string to rule them all",
"17401 string to rule them all",
"17402 string to rule them all",
"17403 string to rule them all",
"17404 string to rule them all",
"17405 string to rule them all",
"17406 string to rule them all",
"17407 string to rule them all",
"17408 string to rule them all",
"17409 string to rule them all",
"17410 string to rule them all",
"17411 string to rule them all",
"17412 string to rule them all",
"17413 string to rule them all",
"17414 string to rule them all",
"17415 string to rule them all",
"17416 string to rule them all",
"17417 string to rule them all",
"17418 string to rule them all",
"17419 string to rule them all",
"17420 string to rule them all",
"17421 string to rule them all",
"17422 string to rule them all",
"17423 string to rule them all",
"17424 string to rule them all",
"17425 string to rule them all",
"17426 string to rule them all",
"17427 string to rule them all",
"17428 string to rule them all",
"17429 string to rule them all",
"17430 string to rule them all",
"17431 string to rule them all",
"17432 string to rule them all",
"17433 string to rule them all",
"17434 string to rule them all",
"17435 string to rule them all",
"17436 string to rule them all",
"17437 string to rule them all",
"17438 string to rule them all",
"17439 string to rule them all",
"17440 string to rule them all",
"17441 string to rule them all",
"17442 string to rule them all",
"17443 string to rule them all",
"17444 string to rule them all",
"17445 string to rule them all",
"17446 string to rule them all",
"17447 string to rule them all",
"17448 string to rule them all",
"17449 string to rule them all",
"17450 string to rule them all",
"17451 string to rule them all",
"17452 string to rule them all",
"17453 string to rule them all",
"17454 string to rule them all",
"17455 string to rule them all",
"17456 string to rule them all",
"17457 string to rule them all",
"17458 string to rule them all",
"17459 string to rule them all",
"17460 string to rule them all",
"17461 string to rule them all",
"17462 string to rule them all",
"17463 string to rule them all",
"17464 string to rule them all",
"17465 string to rule them all",
"17466 string to rule them all",
"17467 string to rule them all",
"17468 string to rule them all",
"17469 string to rule them all",
"17470 string to rule them all",
"17471 string to rule them all",
"17472 string to rule them all",
"17473 string to rule them all",
"17474 string to rule them all",
"17475 string to rule them all",
"17476 string to rule them all",
"17477 string to rule them all",
"17478 string to rule them all",
"17479 string to rule them all",
"17480 string to rule them all",
"17481 string to rule them all",
"17482 string to rule them all",
"17483 string to rule them all",
"17484 string to rule them all",
"17485 string to rule them all",
"17486 string to rule them all",
"17487 string to rule them all",
"17488 string to rule them all",
"17489 string to rule them all",
"17490 string to rule them all",
"17491 string to rule them all",
"17492 string to rule them all",
"17493 string to rule them all",
"17494 string to rule them all",
"17495 string to rule them all",
"17496 string to rule them all",
"17497 string to rule them all",
"17498 string to rule them all",
"17499 string to rule them all",
"17500 string to rule them all",
"17501 string to rule them all",
"17502 string to rule them all",
"17503 string to rule them all",
"17504 string to rule them all",
"17505 string to rule them all",
"17506 string to rule them all",
"17507 string to rule them all",
"17508 string to rule them all",
"17509 string to rule them all",
"17510 string to rule them all",
"17511 string to rule them all",
"17512 string to rule them all",
"17513 string to rule them all",
"17514 string to rule them all",
"17515 string to rule them all",
"17516 string to rule them all",
"17517 string to rule them all",
"17518 string to rule them all",
"17519 string to rule them all",
"17520 string to rule them all",
"17521 string to rule them all",
"17522 string to rule them all",
"17523 string to rule them all",
"17524 string to rule them all",
"17525 string to rule them all",
"17526 string to rule them all",
"17527 string to rule them all",
"17528 string to rule them all",
"17529 string to rule them all",
"17530 string to rule them all",
"17531 string to rule them all",
"17532 string to rule them all",
"17533 string to rule them all",
"17534 string to rule them all",
"17535 string to rule them all",
"17536 string to rule them all",
"17537 string to rule them all",
"17538 string to rule them all",
"17539 string to rule them all",
"17540 string to rule them all",
"17541 string to rule them all",
"17542 string to rule them all",
"17543 string to rule them all",
"17544 string to rule them all",
"17545 string to rule them all",
"17546 string to rule them all",
"17547 string to rule them all",
"17548 string to rule them all",
"17549 string to rule them all",
"17550 string to rule them all",
"17551 string to rule them all",
"17552 string to rule them all",
"17553 string to rule them all",
"17554 string to rule them all",
"17555 string to rule them all",
"17556 string to rule them all",
"17557 string to rule them all",
"17558 string to rule them all",
"17559 string to rule them all",
"17560 string to rule them all",
"17561 string to rule them all",
"17562 string to rule them all",
"17563 string to rule them all",
"17564 string to rule them all",
"17565 string to rule them all",
"17566 string to rule them all",
"17567 string to rule them all",
"17568 string to rule them all",
"17569 string to rule them all",
"17570 string to rule them all",
"17571 string to rule them all",
"17572 string to rule them all",
"17573 string to rule them all",
"17574 string to rule them all",
"17575 string to rule them all",
"17576 string to rule them all",
"17577 string to rule them all",
"17578 string to rule them all",
"17579 string to rule them all",
"17580 string to rule them all",
"17581 string to rule them all",
"17582 string to rule them all",
"17583 string to rule them all",
"17584 string to rule them all",
"17585 string to rule them all",
"17586 string to rule them all",
"17587 string to rule them all",
"17588 string to rule them all",
"17589 string to rule them all",
"17590 string to rule them all",
"17591 string to rule them all",
"17592 string to rule them all",
"17593 string to rule them all",
"17594 string to rule them all",
"17595 string to rule them all",
"17596 string to rule them all",
"17597 string to rule them all",
"17598 string to rule them all",
"17599 string to rule them all",
"17600 string to rule them all",
"17601 string to rule them all",
"17602 string to rule them all",
"17603 string to rule them all",
"17604 string to rule them all",
"17605 string to rule them all",
"17606 string to rule them all",
"17607 string to rule them all",
"17608 string to rule them all",
"17609 string to rule them all",
"17610 string to rule them all",
"17611 string to rule them all",
"17612 string to rule them all",
"17613 string to rule them all",
"17614 string to rule them all",
"17615 string to rule them all",
"17616 string to rule them all",
"17617 string to rule them all",
"17618 string to rule them all",
"17619 string to rule them all",
"17620 string to rule them all",
"17621 string to rule them all",
"17622 string to rule them all",
"17623 string to rule them all",
"17624 string to rule them all",
"17625 string to rule them all",
"17626 string to rule them all",
"17627 string to rule them all",
"17628 string to rule them all",
"17629 string to rule them all",
"17630 string to rule them all",
"17631 string to rule them all",
"17632 string to rule them all",
"17633 string to rule them all",
"17634 string to rule them all",
"17635 string to rule them all",
"17636 string to rule them all",
"17637 string to rule them all",
"17638 string to rule them all",
"17639 string to rule them all",
"17640 string to rule them all",
"17641 string to rule them all",
"17642 string to rule them all",
"17643 string to rule them all",
"17644 string to rule them all",
"17645 string to rule them all",
"17646 string to rule them all",
"17647 string to rule them all",
"17648 string to rule them all",
"17649 string to rule them all",
"17650 string to rule them all",
"17651 string to rule them all",
"17652 string to rule them all",
"17653 string to rule them all",
"17654 string to rule them all",
"17655 string to rule them all",
"17656 string to rule them all",
"17657 string to rule them all",
"17658 string to rule them all",
"17659 string to rule them all",
"17660 string to rule them all",
"17661 string to rule them all",
"17662 string to rule them all",
"17663 string to rule them all",
"17664 string to rule them all",
"17665 string to rule them all",
"17666 string to rule them all",
"17667 string to rule them all",
"17668 string to rule them all",
"17669 string to rule them all",
"17670 string to rule them all",
"17671 string to rule them all",
"17672 string to rule them all",
"17673 string to rule them all",
"17674 string to rule them all",
"17675 string to rule them all",
"17676 string to rule them all",
"17677 string to rule them all",
"17678 string to rule them all",
"17679 string to rule them all",
"17680 string to rule them all",
"17681 string to rule them all",
"17682 string to rule them all",
"17683 string to rule them all",
"17684 string to rule them all",
"17685 string to rule them all",
"17686 string to rule them all",
"17687 string to rule them all",
"17688 string to rule them all",
"17689 string to rule them all",
"17690 string to rule them all",
"17691 string to rule them all",
"17692 string to rule them all",
"17693 string to rule them all",
"17694 string to rule them all",
"17695 string to rule them all",
"17696 string to rule them all",
"17697 string to rule them all",
"17698 string to rule them all",
"17699 string to rule them all",
"17700 string to rule them all",
"17701 string to rule them all",
"17702 string to rule them all",
"17703 string to rule them all",
"17704 string to rule them all",
"17705 string to rule them all",
"17706 string to rule them all",
"17707 string to rule them all",
"17708 string to rule them all",
"17709 string to rule them all",
"17710 string to rule them all",
"17711 string to rule them all",
"17712 string to rule them all",
"17713 string to rule them all",
"17714 string to rule them all",
"17715 string to rule them all",
"17716 string to rule them all",
"17717 string to rule them all",
"17718 string to rule them all",
"17719 string to rule them all",
"17720 string to rule them all",
"17721 string to rule them all",
"17722 string to rule them all",
"17723 string to rule them all",
"17724 string to rule them all",
"17725 string to rule them all",
"17726 string to rule them all",
"17727 string to rule them all",
"17728 string to rule them all",
"17729 string to rule them all",
"17730 string to rule them all",
"17731 string to rule them all",
"17732 string to rule them all",
"17733 string to rule them all",
"17734 string to rule them all",
"17735 string to rule them all",
"17736 string to rule them all",
"17737 string to rule them all",
"17738 string to rule them all",
"17739 string to rule them all",
"17740 string to rule them all",
"17741 string to rule them all",
"17742 string to rule them all",
"17743 string to rule them all",
"17744 string to rule them all",
"17745 string to rule them all",
"17746 string to rule them all",
"17747 string to rule them all",
"17748 string to rule them all",
"17749 string to rule them all",
"17750 string to rule them all",
"17751 string to rule them all",
"17752 string to rule them all",
"17753 string to rule them all",
"17754 string to rule them all",
"17755 string to rule them all",
"17756 string to rule them all",
"17757 string to rule them all",
"17758 string to rule them all",
"17759 string to rule them all",
"17760 string to rule them all",
"17761 string to rule them all",
"17762 string to rule them all",
"17763 string to rule them all",
"17764 string to rule them all",
"17765 string to rule them all",
"17766 string to rule them all",
"17767 string to rule them all",
"17768 string to rule them all",
"17769 string to rule them all",
"17770 string to rule them all",
"17771 string to rule them all",
"17772 string to rule them all",
"17773 string to rule them all",
"17774 string to rule them all",
"17775 string to rule them all",
"17776 string to rule them all",
"17777 string to rule them all",
"17778 string to rule them all",
"17779 string to rule them all",
"17780 string to rule them all",
"17781 string to rule them all",
"17782 string to rule them all",
"17783 string to rule them all",
"17784 string to rule them all",
"17785 string to rule them all",
"17786 string to rule them all",
"17787 string to rule them all",
"17788 string to rule them all",
"17789 string to rule them all",
"17790 string to rule them all",
"17791 string to rule them all",
"17792 string to rule them all",
"17793 string to rule them all",
"17794 string to rule them all",
"17795 string to rule them all",
"17796 string to rule them all",
"17797 string to rule them all",
"17798 string to rule them all",
"17799 string to rule them all",
"17800 string to rule them all",
"17801 string to rule them all",
"17802 string to rule them all",
"17803 string to rule them all",
"17804 string to rule them all",
"17805 string to rule them all",
"17806 string to rule them all",
"17807 string to rule them all",
"17808 string to rule them all",
"17809 string to rule them all",
"17810 string to rule them all",
"17811 string to rule them all",
"17812 string to rule them all",
"17813 string to rule them all",
"17814 string to rule them all",
"17815 string to rule them all",
"17816 string to rule them all",
"17817 string to rule them all",
"17818 string to rule them all",
"17819 string to rule them all",
"17820 string to rule them all",
"17821 string to rule them all",
"17822 string to rule them all",
"17823 string to rule them all",
"17824 string to rule them all",
"17825 string to rule them all",
"17826 string to rule them all",
"17827 string to rule them all",
"17828 string to rule them all",
"17829 string to rule them all",
"17830 string to rule them all",
"17831 string to rule them all",
"17832 string to rule them all",
"17833 string to rule them all",
"17834 string to rule them all",
"17835 string to rule them all",
"17836 string to rule them all",
"17837 string to rule them all",
"17838 string to rule them all",
"17839 string to rule them all",
"17840 string to rule them all",
"17841 string to rule them all",
"17842 string to rule them all",
"17843 string to rule them all",
"17844 string to rule them all",
"17845 string to rule them all",
"17846 string to rule them all",
"17847 string to rule them all",
"17848 string to rule them all",
"17849 string to rule them all",
"17850 string to rule them all",
"17851 string to rule them all",
"17852 string to rule them all",
"17853 string to rule them all",
"17854 string to rule them all",
"17855 string to rule them all",
"17856 string to rule them all",
"17857 string to rule them all",
"17858 string to rule them all",
"17859 string to rule them all",
"17860 string to rule them all",
"17861 string to rule them all",
"17862 string to rule them all",
"17863 string to rule them all",
"17864 string to rule them all",
"17865 string to rule them all",
"17866 string to rule them all",
"17867 string to rule them all",
"17868 string to rule them all",
"17869 string to rule them all",
"17870 string to rule them all",
"17871 string to rule them all",
"17872 string to rule them all",
"17873 string to rule them all",
"17874 string to rule them all",
"17875 string to rule them all",
"17876 string to rule them all",
"17877 string to rule them all",
"17878 string to rule them all",
"17879 string to rule them all",
"17880 string to rule them all",
"17881 string to rule them all",
"17882 string to rule them all",
"17883 string to rule them all",
"17884 string to rule them all",
"17885 string to rule them all",
"17886 string to rule them all",
"17887 string to rule them all",
"17888 string to rule them all",
"17889 string to rule them all",
"17890 string to rule them all",
"17891 string to rule them all",
"17892 string to rule them all",
"17893 string to rule them all",
"17894 string to rule them all",
"17895 string to rule them all",
"17896 string to rule them all",
"17897 string to rule them all",
"17898 string to rule them all",
"17899 string to rule them all",
"17900 string to rule them all",
"17901 string to rule them all",
"17902 string to rule them all",
"17903 string to rule them all",
"17904 string to rule them all",
"17905 string to rule them all",
"17906 string to rule them all",
"17907 string to rule them all",
"17908 string to rule them all",
"17909 string to rule them all",
"17910 string to rule them all",
"17911 string to rule them all",
"17912 string to rule them all",
"17913 string to rule them all",
"17914 string to rule them all",
"17915 string to rule them all",
"17916 string to rule them all",
"17917 string to rule them all",
"17918 string to rule them all",
"17919 string to rule them all",
"17920 string to rule them all",
"17921 string to rule them all",
"17922 string to rule them all",
"17923 string to rule them all",
"17924 string to rule them all",
"17925 string to rule them all",
"17926 string to rule them all",
"17927 string to rule them all",
"17928 string to rule them all",
"17929 string to rule them all",
"17930 string to rule them all",
"17931 string to rule them all",
"17932 string to rule them all",
"17933 string to rule them all",
"17934 string to rule them all",
"17935 string to rule them all",
"17936 string to rule them all",
"17937 string to rule them all",
"17938 string to rule them all",
"17939 string to rule them all",
"17940 string to rule them all",
"17941 string to rule them all",
"17942 string to rule them all",
"17943 string to rule them all",
"17944 string to rule them all",
"17945 string to rule them all",
"17946 string to rule them all",
"17947 string to rule them all",
"17948 string to rule them all",
"17949 string to rule them all",
"17950 string to rule them all",
"17951 string to rule them all",
"17952 string to rule them all",
"17953 string to rule them all",
"17954 string to rule them all",
"17955 string to rule them all",
"17956 string to rule them all",
"17957 string to rule them all",
"17958 string to rule them all",
"17959 string to rule them all",
"17960 string to rule them all",
"17961 string to rule them all",
"17962 string to rule them all",
"17963 string to rule them all",
"17964 string to rule them all",
"17965 string to rule them all",
"17966 string to rule them all",
"17967 string to rule them all",
"17968 string to rule them all",
"17969 string to rule them all",
"17970 string to rule them all",
"17971 string to rule them all",
"17972 string to rule them all",
"17973 string to rule them all",
"17974 string to rule them all",
"17975 string to rule them all",
"17976 string to rule them all",
"17977 string to rule them all",
"17978 string to rule them all",
"17979 string to rule them all",
"17980 string to rule them all",
"17981 string to rule them all",
"17982 string to rule them all",
"17983 string to rule them all",
"17984 string to rule them all",
"17985 string to rule them all",
"17986 string to rule them all",
"17987 string to rule them all",
"17988 string to rule them all",
"17989 string to rule them all",
"17990 string to rule them all",
"17991 string to rule them all",
"17992 string to rule them all",
"17993 string to rule them all",
"17994 string to rule them all",
"17995 string to rule them all",
"17996 string to rule them all",
"17997 string to rule them all",
"17998 string to rule them all",
"17999 string to rule them all",
"18000 string to rule them all",
"18001 string to rule them all",
"18002 string to rule them all",
"18003 string to rule them all",
"18004 string to rule them all",
"18005 string to rule them all",
"18006 string to rule them all",
"18007 string to rule them all",
"18008 string to rule them all",
"18009 string to rule them all",
"18010 string to rule them all",
"18011 string to rule them all",
"18012 string to rule them all",
"18013 string to rule them all",
"18014 string to rule them all",
"18015 string to rule them all",
"18016 string to rule them all",
"18017 string to rule them all",
"18018 string to rule them all",
"18019 string to rule them all",
"18020 string to rule them all",
"18021 string to rule them all",
"18022 string to rule them all",
"18023 string to rule them all",
"18024 string to rule them all",
"18025 string to rule them all",
"18026 string to rule them all",
"18027 string to rule them all",
"18028 string to rule them all",
"18029 string to rule them all",
"18030 string to rule them all",
"18031 string to rule them all",
"18032 string to rule them all",
"18033 string to rule them all",
"18034 string to rule them all",
"18035 string to rule them all",
"18036 string to rule them all",
"18037 string to rule them all",
"18038 string to rule them all",
"18039 string to rule them all",
"18040 string to rule them all",
"18041 string to rule them all",
"18042 string to rule them all",
"18043 string to rule them all",
"18044 string to rule them all",
"18045 string to rule them all",
"18046 string to rule them all",
"18047 string to rule them all",
"18048 string to rule them all",
"18049 string to rule them all",
"18050 string to rule them all",
"18051 string to rule them all",
"18052 string to rule them all",
"18053 string to rule them all",
"18054 string to rule them all",
"18055 string to rule them all",
"18056 string to rule them all",
"18057 string to rule them all",
"18058 string to rule them all",
"18059 string to rule them all",
"18060 string to rule them all",
"18061 string to rule them all",
"18062 string to rule them all",
"18063 string to rule them all",
"18064 string to rule them all",
"18065 string to rule them all",
"18066 string to rule them all",
"18067 string to rule them all",
"18068 string to rule them all",
"18069 string to rule them all",
"18070 string to rule them all",
"18071 string to rule them all",
"18072 string to rule them all",
"18073 string to rule them all",
"18074 string to rule them all",
"18075 string to rule them all",
"18076 string to rule them all",
"18077 string to rule them all",
"18078 string to rule them all",
"18079 string to rule them all",
"18080 string to rule them all",
"18081 string to rule them all",
"18082 string to rule them all",
"18083 string to rule them all",
"18084 string to rule them all",
"18085 string to rule them all",
"18086 string to rule them all",
"18087 string to rule them all",
"18088 string to rule them all",
"18089 string to rule them all",
"18090 string to rule them all",
"18091 string to rule them all",
"18092 string to rule them all",
"18093 string to rule them all",
"18094 string to rule them all",
"18095 string to rule them all",
"18096 string to rule them all",
"18097 string to rule them all",
"18098 string to rule them all",
"18099 string to rule them all",
"18100 string to rule them all",
"18101 string to rule them all",
"18102 string to rule them all",
"18103 string to rule them all",
"18104 string to rule them all",
"18105 string to rule them all",
"18106 string to rule them all",
"18107 string to rule them all",
"18108 string to rule them all",
"18109 string to rule them all",
"18110 string to rule them all",
"18111 string to rule them all",
"18112 string to rule them all",
"18113 string to rule them all",
"18114 string to rule them all",
"18115 string to rule them all",
"18116 string to rule them all",
"18117 string to rule them all",
"18118 string to rule them all",
"18119 string to rule them all",
"18120 string to rule them all",
"18121 string to rule them all",
"18122 string to rule them all",
"18123 string to rule them all",
"18124 string to rule them all",
"18125 string to rule them all",
"18126 string to rule them all",
"18127 string to rule them all",
"18128 string to rule them all",
"18129 string to rule them all",
"18130 string to rule them all",
"18131 string to rule them all",
"18132 string to rule them all",
"18133 string to rule them all",
"18134 string to rule them all",
"18135 string to rule them all",
"18136 string to rule them all",
"18137 string to rule them all",
"18138 string to rule them all",
"18139 string to rule them all",
"18140 string to rule them all",
"18141 string to rule them all",
"18142 string to rule them all",
"18143 string to rule them all",
"18144 string to rule them all",
"18145 string to rule them all",
"18146 string to rule them all",
"18147 string to rule them all",
"18148 string to rule them all",
"18149 string to rule them all",
"18150 string to rule them all",
"18151 string to rule them all",
"18152 string to rule them all",
"18153 string to rule them all",
"18154 string to rule them all",
"18155 string to rule them all",
"18156 string to rule them all",
"18157 string to rule them all",
"18158 string to rule them all",
"18159 string to rule them all",
"18160 string to rule them all",
"18161 string to rule them all",
"18162 string to rule them all",
"18163 string to rule them all",
"18164 string to rule them all",
"18165 string to rule them all",
"18166 string to rule them all",
"18167 string to rule them all",
"18168 string to rule them all",
"18169 string to rule them all",
"18170 string to rule them all",
"18171 string to rule them all",
"18172 string to rule them all",
"18173 string to rule them all",
"18174 string to rule them all",
"18175 string to rule them all",
"18176 string to rule them all",
"18177 string to rule them all",
"18178 string to rule them all",
"18179 string to rule them all",
"18180 string to rule them all",
"18181 string to rule them all",
"18182 string to rule them all",
"18183 string to rule them all",
"18184 string to rule them all",
"18185 string to rule them all",
"18186 string to rule them all",
"18187 string to rule them all",
"18188 string to rule them all",
"18189 string to rule them all",
"18190 string to rule them all",
"18191 string to rule them all",
"18192 string to rule them all",
"18193 string to rule them all",
"18194 string to rule them all",
"18195 string to rule them all",
"18196 string to rule them all",
"18197 string to rule them all",
"18198 string to rule them all",
"18199 string to rule them all",
"18200 string to rule them all",
"18201 string to rule them all",
"18202 string to rule them all",
"18203 string to rule them all",
"18204 string to rule them all",
"18205 string to rule them all",
"18206 string to rule them all",
"18207 string to rule them all",
"18208 string to rule them all",
"18209 string to rule them all",
"18210 string to rule them all",
"18211 string to rule them all",
"18212 string to rule them all",
"18213 string to rule them all",
"18214 string to rule them all",
"18215 string to rule them all",
"18216 string to rule them all",
"18217 string to rule them all",
"18218 string to rule them all",
"18219 string to rule them all",
"18220 string to rule them all",
"18221 string to rule them all",
"18222 string to rule them all",
"18223 string to rule them all",
"18224 string to rule them all",
"18225 string to rule them all",
"18226 string to rule them all",
"18227 string to rule them all",
"18228 string to rule them all",
"18229 string to rule them all",
"18230 string to rule them all",
"18231 string to rule them all",
"18232 string to rule them all",
"18233 string to rule them all",
"18234 string to rule them all",
"18235 string to rule them all",
"18236 string to rule them all",
"18237 string to rule them all",
"18238 string to rule them all",
"18239 string to rule them all",
"18240 string to rule them all",
"18241 string to rule them all",
"18242 string to rule them all",
"18243 string to rule them all",
"18244 string to rule them all",
"18245 string to rule them all",
"18246 string to rule them all",
"18247 string to rule them all",
"18248 string to rule them all",
"18249 string to rule them all",
"18250 string to rule them all",
"18251 string to rule them all",
"18252 string to rule them all",
"18253 string to rule them all",
"18254 string to rule them all",
"18255 string to rule them all",
"18256 string to rule them all",
"18257 string to rule them all",
"18258 string to rule them all",
"18259 string to rule them all",
"18260 string to rule them all",
"18261 string to rule them all",
"18262 string to rule them all",
"18263 string to rule them all",
"18264 string to rule them all",
"18265 string to rule them all",
"18266 string to rule them all",
"18267 string to rule them all",
"18268 string to rule them all",
"18269 string to rule them all",
"18270 string to rule them all",
"18271 string to rule them all",
"18272 string to rule them all",
"18273 string to rule them all",
"18274 string to rule them all",
"18275 string to rule them all",
"18276 string to rule them all",
"18277 string to rule them all",
"18278 string to rule them all",
"18279 string to rule them all",
"18280 string to rule them all",
"18281 string to rule them all",
"18282 string to rule them all",
"18283 string to rule them all",
"18284 string to rule them all",
"18285 string to rule them all",
"18286 string to rule them all",
"18287 string to rule them all",
"18288 string to rule them all",
"18289 string to rule them all",
"18290 string to rule them all",
"18291 string to rule them all",
"18292 string to rule them all",
"18293 string to rule them all",
"18294 string to rule them all",
"18295 string to rule them all",
"18296 string to rule them all",
"18297 string to rule them all",
"18298 string to rule them all",
"18299 string to rule them all",
"18300 string to rule them all",
"18301 string to rule them all",
"18302 string to rule them all",
"18303 string to rule them all",
"18304 string to rule them all",
"18305 string to rule them all",
"18306 string to rule them all",
"18307 string to rule them all",
"18308 string to rule them all",
"18309 string to rule them all",
"18310 string to rule them all",
"18311 string to rule them all",
"18312 string to rule them all",
"18313 string to rule them all",
"18314 string to rule them all",
"18315 string to rule them all",
"18316 string to rule them all",
"18317 string to rule them all",
"18318 string to rule them all",
"18319 string to rule them all",
"18320 string to rule them all",
"18321 string to rule them all",
"18322 string to rule them all",
"18323 string to rule them all",
"18324 string to rule them all",
"18325 string to rule them all",
"18326 string to rule them all",
"18327 string to rule them all",
"18328 string to rule them all",
"18329 string to rule them all",
"18330 string to rule them all",
"18331 string to rule them all",
"18332 string to rule them all",
"18333 string to rule them all",
"18334 string to rule them all",
"18335 string to rule them all",
"18336 string to rule them all",
"18337 string to rule them all",
"18338 string to rule them all",
"18339 string to rule them all",
"18340 string to rule them all",
"18341 string to rule them all",
"18342 string to rule them all",
"18343 string to rule them all",
"18344 string to rule them all",
"18345 string to rule them all",
"18346 string to rule them all",
"18347 string to rule them all",
"18348 string to rule them all",
"18349 string to rule them all",
"18350 string to rule them all",
"18351 string to rule them all",
"18352 string to rule them all",
"18353 string to rule them all",
"18354 string to rule them all",
"18355 string to rule them all",
"18356 string to rule them all",
"18357 string to rule them all",
"18358 string to rule them all",
"18359 string to rule them all",
"18360 string to rule them all",
"18361 string to rule them all",
"18362 string to rule them all",
"18363 string to rule them all",
"18364 string to rule them all",
"18365 string to rule them all",
"18366 string to rule them all",
"18367 string to rule them all",
"18368 string to rule them all",
"18369 string to rule them all",
"18370 string to rule them all",
"18371 string to rule them all",
"18372 string to rule them all",
"18373 string to rule them all",
"18374 string to rule them all",
"18375 string to rule them all",
"18376 string to rule them all",
"18377 string to rule them all",
"18378 string to rule them all",
"18379 string to rule them all",
"18380 string to rule them all",
"18381 string to rule them all",
"18382 string to rule them all",
"18383 string to rule them all",
"18384 string to rule them all",
"18385 string to rule them all",
"18386 string to rule them all",
"18387 string to rule them all",
"18388 string to rule them all",
"18389 string to rule them all",
"18390 string to rule them all",
"18391 string to rule them all",
"18392 string to rule them all",
"18393 string to rule them all",
"18394 string to rule them all",
"18395 string to rule them all",
"18396 string to rule them all",
"18397 string to rule them all",
"18398 string to rule them all",
"18399 string to rule them all",
"18400 string to rule them all",
"18401 string to rule them all",
"18402 string to rule them all",
"18403 string to rule them all",
"18404 string to rule them all",
"18405 string to rule them all",
"18406 string to rule them all",
"18407 string to rule them all",
"18408 string to rule them all",
"18409 string to rule them all",
"18410 string to rule them all",
"18411 string to rule them all",
"18412 string to rule them all",
"18413 string to rule them all",
"18414 string to rule them all",
"18415 string to rule them all",
"18416 string to rule them all",
"18417 string to rule them all",
"18418 string to rule them all",
"18419 string to rule them all",
"18420 string to rule them all",
"18421 string to rule them all",
"18422 string to rule them all",
"18423 string to rule them all",
"18424 string to rule them all",
"18425 string to rule them all",
"18426 string to rule them all",
"18427 string to rule them all",
"18428 string to rule them all",
"18429 string to rule them all",
"18430 string to rule them all",
"18431 string to rule them all",
"18432 string to rule them all",
"18433 string to rule them all",
"18434 string to rule them all",
"18435 string to rule them all",
"18436 string to rule them all",
"18437 string to rule them all",
"18438 string to rule them all",
"18439 string to rule them all",
"18440 string to rule them all",
"18441 string to rule them all",
"18442 string to rule them all",
"18443 string to rule them all",
"18444 string to rule them all",
"18445 string to rule them all",
"18446 string to rule them all",
"18447 string to rule them all",
"18448 string to rule them all",
"18449 string to rule them all",
"18450 string to rule them all",
"18451 string to rule them all",
"18452 string to rule them all",
"18453 string to rule them all",
"18454 string to rule them all",
"18455 string to rule them all",
"18456 string to rule them all",
"18457 string to rule them all",
"18458 string to rule them all",
"18459 string to rule them all",
"18460 string to rule them all",
"18461 string to rule them all",
"18462 string to rule them all",
"18463 string to rule them all",
"18464 string to rule them all",
"18465 string to rule them all",
"18466 string to rule them all",
"18467 string to rule them all",
"18468 string to rule them all",
"18469 string to rule them all",
"18470 string to rule them all",
"18471 string to rule them all",
"18472 string to rule them all",
"18473 string to rule them all",
"18474 string to rule them all",
"18475 string to rule them all",
"18476 string to rule them all",
"18477 string to rule them all",
"18478 string to rule them all",
"18479 string to rule them all",
"18480 string to rule them all",
"18481 string to rule them all",
"18482 string to rule them all",
"18483 string to rule them all",
"18484 string to rule them all",
"18485 string to rule them all",
"18486 string to rule them all",
"18487 string to rule them all",
"18488 string to rule them all",
"18489 string to rule them all",
"18490 string to rule them all",
"18491 string to rule them all",
"18492 string to rule them all",
"18493 string to rule them all",
"18494 string to rule them all",
"18495 string to rule them all",
"18496 string to rule them all",
"18497 string to rule them all",
"18498 string to rule them all",
"18499 string to rule them all",
"18500 string to rule them all",
"18501 string to rule them all",
"18502 string to rule them all",
"18503 string to rule them all",
"18504 string to rule them all",
"18505 string to rule them all",
"18506 string to rule them all",
"18507 string to rule them all",
"18508 string to rule them all",
"18509 string to rule them all",
"18510 string to rule them all",
"18511 string to rule them all",
"18512 string to rule them all",
"18513 string to rule them all",
"18514 string to rule them all",
"18515 string to rule them all",
"18516 string to rule them all",
"18517 string to rule them all",
"18518 string to rule them all",
"18519 string to rule them all",
"18520 string to rule them all",
"18521 string to rule them all",
"18522 string to rule them all",
"18523 string to rule them all",
"18524 string to rule them all",
"18525 string to rule them all",
"18526 string to rule them all",
"18527 string to rule them all",
"18528 string to rule them all",
"18529 string to rule them all",
"18530 string to rule them all",
"18531 string to rule them all",
"18532 string to rule them all",
"18533 string to rule them all",
"18534 string to rule them all",
"18535 string to rule them all",
"18536 string to rule them all",
"18537 string to rule them all",
"18538 string to rule them all",
"18539 string to rule them all",
"18540 string to rule them all",
"18541 string to rule them all",
"18542 string to rule them all",
"18543 string to rule them all",
"18544 string to rule them all",
"18545 string to rule them all",
"18546 string to rule them all",
"18547 string to rule them all",
"18548 string to rule them all",
"18549 string to rule them all",
"18550 string to rule them all",
"18551 string to rule them all",
"18552 string to rule them all",
"18553 string to rule them all",
"18554 string to rule them all",
"18555 string to rule them all",
"18556 string to rule them all",
"18557 string to rule them all",
"18558 string to rule them all",
"18559 string to rule them all",
"18560 string to rule them all",
"18561 string to rule them all",
"18562 string to rule them all",
"18563 string to rule them all",
"18564 string to rule them all",
"18565 string to rule them all",
"18566 string to rule them all",
"18567 string to rule them all",
"18568 string to rule them all",
"18569 string to rule them all",
"18570 string to rule them all",
"18571 string to rule them all",
"18572 string to rule them all",
"18573 string to rule them all",
"18574 string to rule them all",
"18575 string to rule them all",
"18576 string to rule them all",
"18577 string to rule them all",
"18578 string to rule them all",
"18579 string to rule them all",
"18580 string to rule them all",
"18581 string to rule them all",
"18582 string to rule them all",
"18583 string to rule them all",
"18584 string to rule them all",
"18585 string to rule them all",
"18586 string to rule them all",
"18587 string to rule them all",
"18588 string to rule them all",
"18589 string to rule them all",
"18590 string to rule them all",
"18591 string to rule them all",
"18592 string to rule them all",
"18593 string to rule them all",
"18594 string to rule them all",
"18595 string to rule them all",
"18596 string to rule them all",
"18597 string to rule them all",
"18598 string to rule them all",
"18599 string to rule them all",
"18600 string to rule them all",
"18601 string to rule them all",
"18602 string to rule them all",
"18603 string to rule them all",
"18604 string to rule them all",
"18605 string to rule them all",
"18606 string to rule them all",
"18607 string to rule them all",
"18608 string to rule them all",
"18609 string to rule them all",
"18610 string to rule them all",
"18611 string to rule them all",
"18612 string to rule them all",
"18613 string to rule them all",
"18614 string to rule them all",
"18615 string to rule them all",
"18616 string to rule them all",
"18617 string to rule them all",
"18618 string to rule them all",
"18619 string to rule them all",
"18620 string to rule them all",
"18621 string to rule them all",
"18622 string to rule them all",
"18623 string to rule them all",
"18624 string to rule them all",
"18625 string to rule them all",
"18626 string to rule them all",
"18627 string to rule them all",
"18628 string to rule them all",
"18629 string to rule them all",
"18630 string to rule them all",
"18631 string to rule them all",
"18632 string to rule them all",
"18633 string to rule them all",
"18634 string to rule them all",
"18635 string to rule them all",
"18636 string to rule them all",
"18637 string to rule them all",
"18638 string to rule them all",
"18639 string to rule them all",
"18640 string to rule them all",
"18641 string to rule them all",
"18642 string to rule them all",
"18643 string to rule them all",
"18644 string to rule them all",
"18645 string to rule them all",
"18646 string to rule them all",
"18647 string to rule them all",
"18648 string to rule them all",
"18649 string to rule them all",
"18650 string to rule them all",
"18651 string to rule them all",
"18652 string to rule them all",
"18653 string to rule them all",
"18654 string to rule them all",
"18655 string to rule them all",
"18656 string to rule them all",
"18657 string to rule them all",
"18658 string to rule them all",
"18659 string to rule them all",
"18660 string to rule them all",
"18661 string to rule them all",
"18662 string to rule them all",
"18663 string to rule them all",
"18664 string to rule them all",
"18665 string to rule them all",
"18666 string to rule them all",
"18667 string to rule them all",
"18668 string to rule them all",
"18669 string to rule them all",
"18670 string to rule them all",
"18671 string to rule them all",
"18672 string to rule them all",
"18673 string to rule them all",
"18674 string to rule them all",
"18675 string to rule them all",
"18676 string to rule them all",
"18677 string to rule them all",
"18678 string to rule them all",
"18679 string to rule them all",
"18680 string to rule them all",
"18681 string to rule them all",
"18682 string to rule them all",
"18683 string to rule them all",
"18684 string to rule them all",
"18685 string to rule them all",
"18686 string to rule them all",
"18687 string to rule them all",
"18688 string to rule them all",
"18689 string to rule them all",
"18690 string to rule them all",
"18691 string to rule them all",
"18692 string to rule them all",
"18693 string to rule them all",
"18694 string to rule them all",
"18695 string to rule them all",
"18696 string to rule them all",
"18697 string to rule them all",
"18698 string to rule them all",
"18699 string to rule them all",
"18700 string to rule them all",
"18701 string to rule them all",
"18702 string to rule them all",
"18703 string to rule them all",
"18704 string to rule them all",
"18705 string to rule them all",
"18706 string to rule them all",
"18707 string to rule them all",
"18708 string to rule them all",
"18709 string to rule them all",
"18710 string to rule them all",
"18711 string to rule them all",
"18712 string to rule them all",
"18713 string to rule them all",
"18714 string to rule them all",
"18715 string to rule them all",
"18716 string to rule them all",
"18717 string to rule them all",
"18718 string to rule them all",
"18719 string to rule them all",
"18720 string to rule them all",
"18721 string to rule them all",
"18722 string to rule them all",
"18723 string to rule them all",
"18724 string to rule them all",
"18725 string to rule them all",
"18726 string to rule them all",
"18727 string to rule them all",
"18728 string to rule them all",
"18729 string to rule them all",
"18730 string to rule them all",
"18731 string to rule them all",
"18732 string to rule them all",
"18733 string to rule them all",
"18734 string to rule them all",
"18735 string to rule them all",
"18736 string to rule them all",
"18737 string to rule them all",
"18738 string to rule them all",
"18739 string to rule them all",
"18740 string to rule them all",
"18741 string to rule them all",
"18742 string to rule them all",
"18743 string to rule them all",
"18744 string to rule them all",
"18745 string to rule them all",
"18746 string to rule them all",
"18747 string to rule them all",
"18748 string to rule them all",
"18749 string to rule them all",
"18750 string to rule them all",
"18751 string to rule them all",
"18752 string to rule them all",
"18753 string to rule them all",
"18754 string to rule them all",
"18755 string to rule them all",
"18756 string to rule them all",
"18757 string to rule them all",
"18758 string to rule them all",
"18759 string to rule them all",
"18760 string to rule them all",
"18761 string to rule them all",
"18762 string to rule them all",
"18763 string to rule them all",
"18764 string to rule them all",
"18765 string to rule them all",
"18766 string to rule them all",
"18767 string to rule them all",
"18768 string to rule them all",
"18769 string to rule them all",
"18770 string to rule them all",
"18771 string to rule them all",
"18772 string to rule them all",
"18773 string to rule them all",
"18774 string to rule them all",
"18775 string to rule them all",
"18776 string to rule them all",
"18777 string to rule them all",
"18778 string to rule them all",
"18779 string to rule them all",
"18780 string to rule them all",
"18781 string to rule them all",
"18782 string to rule them all",
"18783 string to rule them all",
"18784 string to rule them all",
"18785 string to rule them all",
"18786 string to rule them all",
"18787 string to rule them all",
"18788 string to rule them all",
"18789 string to rule them all",
"18790 string to rule them all",
"18791 string to rule them all",
"18792 string to rule them all",
"18793 string to rule them all",
"18794 string to rule them all",
"18795 string to rule them all",
"18796 string to rule them all",
"18797 string to rule them all",
"18798 string to rule them all",
"18799 string to rule them all",
"18800 string to rule them all",
"18801 string to rule them all",
"18802 string to rule them all",
"18803 string to rule them all",
"18804 string to rule them all",
"18805 string to rule them all",
"18806 string to rule them all",
"18807 string to rule them all",
"18808 string to rule them all",
"18809 string to rule them all",
"18810 string to rule them all",
"18811 string to rule them all",
"18812 string to rule them all",
"18813 string to rule them all",
"18814 string to rule them all",
"18815 string to rule them all",
"18816 string to rule them all",
"18817 string to rule them all",
"18818 string to rule them all",
"18819 string to rule them all",
"18820 string to rule them all",
"18821 string to rule them all",
"18822 string to rule them all",
"18823 string to rule them all",
"18824 string to rule them all",
"18825 string to rule them all",
"18826 string to rule them all",
"18827 string to rule them all",
"18828 string to rule them all",
"18829 string to rule them all",
"18830 string to rule them all",
"18831 string to rule them all",
"18832 string to rule them all",
"18833 string to rule them all",
"18834 string to rule them all",
"18835 string to rule them all",
"18836 string to rule them all",
"18837 string to rule them all",
"18838 string to rule them all",
"18839 string to rule them all",
"18840 string to rule them all",
"18841 string to rule them all",
"18842 string to rule them all",
"18843 string to rule them all",
"18844 string to rule them all",
"18845 string to rule them all",
"18846 string to rule them all",
"18847 string to rule them all",
"18848 string to rule them all",
"18849 string to rule them all",
"18850 string to rule them all",
"18851 string to rule them all",
"18852 string to rule them all",
"18853 string to rule them all",
"18854 string to rule them all",
"18855 string to rule them all",
"18856 string to rule them all",
"18857 string to rule them all",
"18858 string to rule them all",
"18859 string to rule them all",
"18860 string to rule them all",
"18861 string to rule them all",
"18862 string to rule them all",
"18863 string to rule them all",
"18864 string to rule them all",
"18865 string to rule them all",
"18866 string to rule them all",
"18867 string to rule them all",
"18868 string to rule them all",
"18869 string to rule them all",
"18870 string to rule them all",
"18871 string to rule them all",
"18872 string to rule them all",
"18873 string to rule them all",
"18874 string to rule them all",
"18875 string to rule them all",
"18876 string to rule them all",
"18877 string to rule them all",
"18878 string to rule them all",
"18879 string to rule them all",
"18880 string to rule them all",
"18881 string to rule them all",
"18882 string to rule them all",
"18883 string to rule them all",
"18884 string to rule them all",
"18885 string to rule them all",
"18886 string to rule them all",
"18887 string to rule them all",
"18888 string to rule them all",
"18889 string to rule them all",
"18890 string to rule them all",
"18891 string to rule them all",
"18892 string to rule them all",
"18893 string to rule them all",
"18894 string to rule them all",
"18895 string to rule them all",
"18896 string to rule them all",
"18897 string to rule them all",
"18898 string to rule them all",
"18899 string to rule them all",
"18900 string to rule them all",
"18901 string to rule them all",
"18902 string to rule them all",
"18903 string to rule them all",
"18904 string to rule them all",
"18905 string to rule them all",
"18906 string to rule them all",
"18907 string to rule them all",
"18908 string to rule them all",
"18909 string to rule them all",
"18910 string to rule them all",
"18911 string to rule them all",
"18912 string to rule them all",
"18913 string to rule them all",
"18914 string to rule them all",
"18915 string to rule them all",
"18916 string to rule them all",
"18917 string to rule them all",
"18918 string to rule them all",
"18919 string to rule them all",
"18920 string to rule them all",
"18921 string to rule them all",
"18922 string to rule them all",
"18923 string to rule them all",
"18924 string to rule them all",
"18925 string to rule them all",
"18926 string to rule them all",
"18927 string to rule them all",
"18928 string to rule them all",
"18929 string to rule them all",
"18930 string to rule them all",
"18931 string to rule them all",
"18932 string to rule them all",
"18933 string to rule them all",
"18934 string to rule them all",
"18935 string to rule them all",
"18936 string to rule them all",
"18937 string to rule them all",
"18938 string to rule them all",
"18939 string to rule them all",
"18940 string to rule them all",
"18941 string to rule them all",
"18942 string to rule them all",
"18943 string to rule them all",
"18944 string to rule them all",
"18945 string to rule them all",
"18946 string to rule them all",
"18947 string to rule them all",
"18948 string to rule them all",
"18949 string to rule them all",
"18950 string to rule them all",
"18951 string to rule them all",
"18952 string to rule them all",
"18953 string to rule them all",
"18954 string to rule them all",
"18955 string to rule them all",
"18956 string to rule them all",
"18957 string to rule them all",
"18958 string to rule them all",
"18959 string to rule them all",
"18960 string to rule them all",
"18961 string to rule them all",
"18962 string to rule them all",
"18963 string to rule them all",
"18964 string to rule them all",
"18965 string to rule them all",
"18966 string to rule them all",
"18967 string to rule them all",
"18968 string to rule them all",
"18969 string to rule them all",
"18970 string to rule them all",
"18971 string to rule them all",
"18972 string to rule them all",
"18973 string to rule them all",
"18974 string to rule them all",
"18975 string to rule them all",
"18976 string to rule them all",
"18977 string to rule them all",
"18978 string to rule them all",
"18979 string to rule them all",
"18980 string to rule them all",
"18981 string to rule them all",
"18982 string to rule them all",
"18983 string to rule them all",
"18984 string to rule them all",
"18985 string to rule them all",
"18986 string to rule them all",
"18987 string to rule them all",
"18988 string to rule them all",
"18989 string to rule them all",
"18990 string to rule them all",
"18991 string to rule them all",
"18992 string to rule them all",
"18993 string to rule them all",
"18994 string to rule them all",
"18995 string to rule them all",
"18996 string to rule them all",
"18997 string to rule them all",
"18998 string to rule them all",
"18999 string to rule them all",
"19000 string to rule them all",
"19001 string to rule them all",
"19002 string to rule them all",
"19003 string to rule them all",
"19004 string to rule them all",
"19005 string to rule them all",
"19006 string to rule them all",
"19007 string to rule them all",
"19008 string to rule them all",
"19009 string to rule them all",
"19010 string to rule them all",
"19011 string to rule them all",
"19012 string to rule them all",
"19013 string to rule them all",
"19014 string to rule them all",
"19015 string to rule them all",
"19016 string to rule them all",
"19017 string to rule them all",
"19018 string to rule them all",
"19019 string to rule them all",
"19020 string to rule them all",
"19021 string to rule them all",
"19022 string to rule them all",
"19023 string to rule them all",
"19024 string to rule them all",
"19025 string to rule them all",
"19026 string to rule them all",
"19027 string to rule them all",
"19028 string to rule them all",
"19029 string to rule them all",
"19030 string to rule them all",
"19031 string to rule them all",
"19032 string to rule them all",
"19033 string to rule them all",
"19034 string to rule them all",
"19035 string to rule them all",
"19036 string to rule them all",
"19037 string to rule them all",
"19038 string to rule them all",
"19039 string to rule them all",
"19040 string to rule them all",
"19041 string to rule them all",
"19042 string to rule them all",
"19043 string to rule them all",
"19044 string to rule them all",
"19045 string to rule them all",
"19046 string to rule them all",
"19047 string to rule them all",
"19048 string to rule them all",
"19049 string to rule them all",
"19050 string to rule them all",
"19051 string to rule them all",
"19052 string to rule them all",
"19053 string to rule them all",
"19054 string to rule them all",
"19055 string to rule them all",
"19056 string to rule them all",
"19057 string to rule them all",
"19058 string to rule them all",
"19059 string to rule them all",
"19060 string to rule them all",
"19061 string to rule them all",
"19062 string to rule them all",
"19063 string to rule them all",
"19064 string to rule them all",
"19065 string to rule them all",
"19066 string to rule them all",
"19067 string to rule them all",
"19068 string to rule them all",
"19069 string to rule them all",
"19070 string to rule them all",
"19071 string to rule them all",
"19072 string to rule them all",
"19073 string to rule them all",
"19074 string to rule them all",
"19075 string to rule them all",
"19076 string to rule them all",
"19077 string to rule them all",
"19078 string to rule them all",
"19079 string to rule them all",
"19080 string to rule them all",
"19081 string to rule them all",
"19082 string to rule them all",
"19083 string to rule them all",
"19084 string to rule them all",
"19085 string to rule them all",
"19086 string to rule them all",
"19087 string to rule them all",
"19088 string to rule them all",
"19089 string to rule them all",
"19090 string to rule them all",
"19091 string to rule them all",
"19092 string to rule them all",
"19093 string to rule them all",
"19094 string to rule them all",
"19095 string to rule them all",
"19096 string to rule them all",
"19097 string to rule them all",
"19098 string to rule them all",
"19099 string to rule them all",
"19100 string to rule them all",
"19101 string to rule them all",
"19102 string to rule them all",
"19103 string to rule them all",
"19104 string to rule them all",
"19105 string to rule them all",
"19106 string to rule them all",
"19107 string to rule them all",
"19108 string to rule them all",
"19109 string to rule them all",
"19110 string to rule them all",
"19111 string to rule them all",
"19112 string to rule them all",
"19113 string to rule them all",
"19114 string to rule them all",
"19115 string to rule them all",
"19116 string to rule them all",
"19117 string to rule them all",
"19118 string to rule them all",
"19119 string to rule them all",
"19120 string to rule them all",
"19121 string to rule them all",
"19122 string to rule them all",
"19123 string to rule them all",
"19124 string to rule them all",
"19125 string to rule them all",
"19126 string to rule them all",
"19127 string to rule them all",
"19128 string to rule them all",
"19129 string to rule them all",
"19130 string to rule them all",
"19131 string to rule them all",
"19132 string to rule them all",
"19133 string to rule them all",
"19134 string to rule them all",
"19135 string to rule them all",
"19136 string to rule them all",
"19137 string to rule them all",
"19138 string to rule them all",
"19139 string to rule them all",
"19140 string to rule them all",
"19141 string to rule them all",
"19142 string to rule them all",
"19143 string to rule them all",
"19144 string to rule them all",
"19145 string to rule them all",
"19146 string to rule them all",
"19147 string to rule them all",
"19148 string to rule them all",
"19149 string to rule them all",
"19150 string to rule them all",
"19151 string to rule them all",
"19152 string to rule them all",
"19153 string to rule them all",
"19154 string to rule them all",
"19155 string to rule them all",
"19156 string to rule them all",
"19157 string to rule them all",
"19158 string to rule them all",
"19159 string to rule them all",
"19160 string to rule them all",
"19161 string to rule them all",
"19162 string to rule them all",
"19163 string to rule them all",
"19164 string to rule them all",
"19165 string to rule them all",
"19166 string to rule them all",
"19167 string to rule them all",
"19168 string to rule them all",
"19169 string to rule them all",
"19170 string to rule them all",
"19171 string to rule them all",
"19172 string to rule them all",
"19173 string to rule them all",
"19174 string to rule them all",
"19175 string to rule them all",
"19176 string to rule them all",
"19177 string to rule them all",
"19178 string to rule them all",
"19179 string to rule them all",
"19180 string to rule them all",
"19181 string to rule them all",
"19182 string to rule them all",
"19183 string to rule them all",
"19184 string to rule them all",
"19185 string to rule them all",
"19186 string to rule them all",
"19187 string to rule them all",
"19188 string to rule them all",
"19189 string to rule them all",
"19190 string to rule them all",
"19191 string to rule them all",
"19192 string to rule them all",
"19193 string to rule them all",
"19194 string to rule them all",
"19195 string to rule them all",
"19196 string to rule them all",
"19197 string to rule them all",
"19198 string to rule them all",
"19199 string to rule them all",
"19200 string to rule them all",
"19201 string to rule them all",
"19202 string to rule them all",
"19203 string to rule them all",
"19204 string to rule them all",
"19205 string to rule them all",
"19206 string to rule them all",
"19207 string to rule them all",
"19208 string to rule them all",
"19209 string to rule them all",
"19210 string to rule them all",
"19211 string to rule them all",
"19212 string to rule them all",
"19213 string to rule them all",
"19214 string to rule them all",
"19215 string to rule them all",
"19216 string to rule them all",
"19217 string to rule them all",
"19218 string to rule them all",
"19219 string to rule them all",
"19220 string to rule them all",
"19221 string to rule them all",
"19222 string to rule them all",
"19223 string to rule them all",
"19224 string to rule them all",
"19225 string to rule them all",
"19226 string to rule them all",
"19227 string to rule them all",
"19228 string to rule them all",
"19229 string to rule them all",
"19230 string to rule them all",
"19231 string to rule them all",
"19232 string to rule them all",
"19233 string to rule them all",
"19234 string to rule them all",
"19235 string to rule them all",
"19236 string to rule them all",
"19237 string to rule them all",
"19238 string to rule them all",
"19239 string to rule them all",
"19240 string to rule them all",
"19241 string to rule them all",
"19242 string to rule them all",
"19243 string to rule them all",
"19244 string to rule them all",
"19245 string to rule them all",
"19246 string to rule them all",
"19247 string to rule them all",
"19248 string to rule them all",
"19249 string to rule them all",
"19250 string to rule them all",
"19251 string to rule them all",
"19252 string to rule them all",
"19253 string to rule them all",
"19254 string to rule them all",
"19255 string to rule them all",
"19256 string to rule them all",
"19257 string to rule them all",
"19258 string to rule them all",
"19259 string to rule them all",
"19260 string to rule them all",
"19261 string to rule them all",
"19262 string to rule them all",
"19263 string to rule them all",
"19264 string to rule them all",
"19265 string to rule them all",
"19266 string to rule them all",
"19267 string to rule them all",
"19268 string to rule them all",
"19269 string to rule them all",
"19270 string to rule them all",
"19271 string to rule them all",
"19272 string to rule them all",
"19273 string to rule them all",
"19274 string to rule them all",
"19275 string to rule them all",
"19276 string to rule them all",
"19277 string to rule them all",
"19278 string to rule them all",
"19279 string to rule them all",
"19280 string to rule them all",
"19281 string to rule them all",
"19282 string to rule them all",
"19283 string to rule them all",
"19284 string to rule them all",
"19285 string to rule them all",
"19286 string to rule them all",
"19287 string to rule them all",
"19288 string to rule them all",
"19289 string to rule them all",
"19290 string to rule them all",
"19291 string to rule them all",
"19292 string to rule them all",
"19293 string to rule them all",
"19294 string to rule them all",
"19295 string to rule them all",
"19296 string to rule them all",
"19297 string to rule them all",
"19298 string to rule them all",
"19299 string to rule them all",
"19300 string to rule them all",
"19301 string to rule them all",
"19302 string to rule them all",
"19303 string to rule them all",
"19304 string to rule them all",
"19305 string to rule them all",
"19306 string to rule them all",
"19307 string to rule them all",
"19308 string to rule them all",
"19309 string to rule them all",
"19310 string to rule them all",
"19311 string to rule them all",
"19312 string to rule them all",
"19313 string to rule them all",
"19314 string to rule them all",
"19315 string to rule them all",
"19316 string to rule them all",
"19317 string to rule them all",
"19318 string to rule them all",
"19319 string to rule them all",
"19320 string to rule them all",
"19321 string to rule them all",
"19322 string to rule them all",
"19323 string to rule them all",
"19324 string to rule them all",
"19325 string to rule them all",
"19326 string to rule them all",
"19327 string to rule them all",
"19328 string to rule them all",
"19329 string to rule them all",
"19330 string to rule them all",
"19331 string to rule them all",
"19332 string to rule them all",
"19333 string to rule them all",
"19334 string to rule them all",
"19335 string to rule them all",
"19336 string to rule them all",
"19337 string to rule them all",
"19338 string to rule them all",
"19339 string to rule them all",
"19340 string to rule them all",
"19341 string to rule them all",
"19342 string to rule them all",
"19343 string to rule them all",
"19344 string to rule them all",
"19345 string to rule them all",
"19346 string to rule them all",
"19347 string to rule them all",
"19348 string to rule them all",
"19349 string to rule them all",
"19350 string to rule them all",
"19351 string to rule them all",
"19352 string to rule them all",
"19353 string to rule them all",
"19354 string to rule them all",
"19355 string to rule them all",
"19356 string to rule them all",
"19357 string to rule them all",
"19358 string to rule them all",
"19359 string to rule them all",
"19360 string to rule them all",
"19361 string to rule them all",
"19362 string to rule them all",
"19363 string to rule them all",
"19364 string to rule them all",
"19365 string to rule them all",
"19366 string to rule them all",
"19367 string to rule them all",
"19368 string to rule them all",
"19369 string to rule them all",
"19370 string to rule them all",
"19371 string to rule them all",
"19372 string to rule them all",
"19373 string to rule them all",
"19374 string to rule them all",
"19375 string to rule them all",
"19376 string to rule them all",
"19377 string to rule them all",
"19378 string to rule them all",
"19379 string to rule them all",
"19380 string to rule them all",
"19381 string to rule them all",
"19382 string to rule them all",
"19383 string to rule them all",
"19384 string to rule them all",
"19385 string to rule them all",
"19386 string to rule them all",
"19387 string to rule them all",
"19388 string to rule them all",
"19389 string to rule them all",
"19390 string to rule them all",
"19391 string to rule them all",
"19392 string to rule them all",
"19393 string to rule them all",
"19394 string to rule them all",
"19395 string to rule them all",
"19396 string to rule them all",
"19397 string to rule them all",
"19398 string to rule them all",
"19399 string to rule them all",
"19400 string to rule them all",
"19401 string to rule them all",
"19402 string to rule them all",
"19403 string to rule them all",
"19404 string to rule them all",
"19405 string to rule them all",
"19406 string to rule them all",
"19407 string to rule them all",
"19408 string to rule them all",
"19409 string to rule them all",
"19410 string to rule them all",
"19411 string to rule them all",
"19412 string to rule them all",
"19413 string to rule them all",
"19414 string to rule them all",
"19415 string to rule them all",
"19416 string to rule them all",
"19417 string to rule them all",
"19418 string to rule them all",
"19419 string to rule them all",
"19420 string to rule them all",
"19421 string to rule them all",
"19422 string to rule them all",
"19423 string to rule them all",
"19424 string to rule them all",
"19425 string to rule them all",
"19426 string to rule them all",
"19427 string to rule them all",
"19428 string to rule them all",
"19429 string to rule them all",
"19430 string to rule them all",
"19431 string to rule them all",
"19432 string to rule them all",
"19433 string to rule them all",
"19434 string to rule them all",
"19435 string to rule them all",
"19436 string to rule them all",
"19437 string to rule them all",
"19438 string to rule them all",
"19439 string to rule them all",
"19440 string to rule them all",
"19441 string to rule them all",
"19442 string to rule them all",
"19443 string to rule them all",
"19444 string to rule them all",
"19445 string to rule them all",
"19446 string to rule them all",
"19447 string to rule them all",
"19448 string to rule them all",
"19449 string to rule them all",
"19450 string to rule them all",
"19451 string to rule them all",
"19452 string to rule them all",
"19453 string to rule them all",
"19454 string to rule them all",
"19455 string to rule them all",
"19456 string to rule them all",
"19457 string to rule them all",
"19458 string to rule them all",
"19459 string to rule them all",
"19460 string to rule them all",
"19461 string to rule them all",
"19462 string to rule them all",
"19463 string to rule them all",
"19464 string to rule them all",
"19465 string to rule them all",
"19466 string to rule them all",
"19467 string to rule them all",
"19468 string to rule them all",
"19469 string to rule them all",
"19470 string to rule them all",
"19471 string to rule them all",
"19472 string to rule them all",
"19473 string to rule them all",
"19474 string to rule them all",
"19475 string to rule them all",
"19476 string to rule them all",
"19477 string to rule them all",
"19478 string to rule them all",
"19479 string to rule them all",
"19480 string to rule them all",
"19481 string to rule them all",
"19482 string to rule them all",
"19483 string to rule them all",
"19484 string to rule them all",
"19485 string to rule them all",
"19486 string to rule them all",
"19487 string to rule them all",
"19488 string to rule them all",
"19489 string to rule them all",
"19490 string to rule them all",
"19491 string to rule them all",
"19492 string to rule them all",
"19493 string to rule them all",
"19494 string to rule them all",
"19495 string to rule them all",
"19496 string to rule them all",
"19497 string to rule them all",
"19498 string to rule them all",
"19499 string to rule them all",
"19500 string to rule them all",
"19501 string to rule them all",
"19502 string to rule them all",
"19503 string to rule them all",
"19504 string to rule them all",
"19505 string to rule them all",
"19506 string to rule them all",
"19507 string to rule them all",
"19508 string to rule them all",
"19509 string to rule them all",
"19510 string to rule them all",
"19511 string to rule them all",
"19512 string to rule them all",
"19513 string to rule them all",
"19514 string to rule them all",
"19515 string to rule them all",
"19516 string to rule them all",
"19517 string to rule them all",
"19518 string to rule them all",
"19519 string to rule them all",
"19520 string to rule them all",
"19521 string to rule them all",
"19522 string to rule them all",
"19523 string to rule them all",
"19524 string to rule them all",
"19525 string to rule them all",
"19526 string to rule them all",
"19527 string to rule them all",
"19528 string to rule them all",
"19529 string to rule them all",
"19530 string to rule them all",
"19531 string to rule them all",
"19532 string to rule them all",
"19533 string to rule them all",
"19534 string to rule them all",
"19535 string to rule them all",
"19536 string to rule them all",
"19537 string to rule them all",
"19538 string to rule them all",
"19539 string to rule them all",
"19540 string to rule them all",
"19541 string to rule them all",
"19542 string to rule them all",
"19543 string to rule them all",
"19544 string to rule them all",
"19545 string to rule them all",
"19546 string to rule them all",
"19547 string to rule them all",
"19548 string to rule them all",
"19549 string to rule them all",
"19550 string to rule them all",
"19551 string to rule them all",
"19552 string to rule them all",
"19553 string to rule them all",
"19554 string to rule them all",
"19555 string to rule them all",
"19556 string to rule them all",
"19557 string to rule them all",
"19558 string to rule them all",
"19559 string to rule them all",
"19560 string to rule them all",
"19561 string to rule them all",
"19562 string to rule them all",
"19563 string to rule them all",
"19564 string to rule them all",
"19565 string to rule them all",
"19566 string to rule them all",
"19567 string to rule them all",
"19568 string to rule them all",
"19569 string to rule them all",
"19570 string to rule them all",
"19571 string to rule them all",
"19572 string to rule them all",
"19573 string to rule them all",
"19574 string to rule them all",
"19575 string to rule them all",
"19576 string to rule them all",
"19577 string to rule them all",
"19578 string to rule them all",
"19579 string to rule them all",
"19580 string to rule them all",
"19581 string to rule them all",
"19582 string to rule them all",
"19583 string to rule them all",
"19584 string to rule them all",
"19585 string to rule them all",
"19586 string to rule them all",
"19587 string to rule them all",
"19588 string to rule them all",
"19589 string to rule them all",
"19590 string to rule them all",
"19591 string to rule them all",
"19592 string to rule them all",
"19593 string to rule them all",
"19594 string to rule them all",
"19595 string to rule them all",
"19596 string to rule them all",
"19597 string to rule them all",
"19598 string to rule them all",
"19599 string to rule them all",
"19600 string to rule them all",
"19601 string to rule them all",
"19602 string to rule them all",
"19603 string to rule them all",
"19604 string to rule them all",
"19605 string to rule them all",
"19606 string to rule them all",
"19607 string to rule them all",
"19608 string to rule them all",
"19609 string to rule them all",
"19610 string to rule them all",
"19611 string to rule them all",
"19612 string to rule them all",
"19613 string to rule them all",
"19614 string to rule them all",
"19615 string to rule them all",
"19616 string to rule them all",
"19617 string to rule them all",
"19618 string to rule them all",
"19619 string to rule them all",
"19620 string to rule them all",
"19621 string to rule them all",
"19622 string to rule them all",
"19623 string to rule them all",
"19624 string to rule them all",
"19625 string to rule them all",
"19626 string to rule them all",
"19627 string to rule them all",
"19628 string to rule them all",
"19629 string to rule them all",
"19630 string to rule them all",
"19631 string to rule them all",
"19632 string to rule them all",
"19633 string to rule them all",
"19634 string to rule them all",
"19635 string to rule them all",
"19636 string to rule them all",
"19637 string to rule them all",
"19638 string to rule them all",
"19639 string to rule them all",
"19640 string to rule them all",
"19641 string to rule them all",
"19642 string to rule them all",
"19643 string to rule them all",
"19644 string to rule them all",
"19645 string to rule them all",
"19646 string to rule them all",
"19647 string to rule them all",
"19648 string to rule them all",
"19649 string to rule them all",
"19650 string to rule them all",
"19651 string to rule them all",
"19652 string to rule them all",
"19653 string to rule them all",
"19654 string to rule them all",
"19655 string to rule them all",
"19656 string to rule them all",
"19657 string to rule them all",
"19658 string to rule them all",
"19659 string to rule them all",
"19660 string to rule them all",
"19661 string to rule them all",
"19662 string to rule them all",
"19663 string to rule them all",
"19664 string to rule them all",
"19665 string to rule them all",
"19666 string to rule them all",
"19667 string to rule them all",
"19668 string to rule them all",
"19669 string to rule them all",
"19670 string to rule them all",
"19671 string to rule them all",
"19672 string to rule them all",
"19673 string to rule them all",
"19674 string to rule them all",
"19675 string to rule them all",
"19676 string to rule them all",
"19677 string to rule them all",
"19678 string to rule them all",
"19679 string to rule them all",
"19680 string to rule them all",
"19681 string to rule them all",
"19682 string to rule them all",
"19683 string to rule them all",
"19684 string to rule them all",
"19685 string to rule them all",
"19686 string to rule them all",
"19687 string to rule them all",
"19688 string to rule them all",
"19689 string to rule them all",
"19690 string to rule them all",
"19691 string to rule them all",
"19692 string to rule them all",
"19693 string to rule them all",
"19694 string to rule them all",
"19695 string to rule them all",
"19696 string to rule them all",
"19697 string to rule them all",
"19698 string to rule them all",
"19699 string to rule them all",
"19700 string to rule them all",
"19701 string to rule them all",
"19702 string to rule them all",
"19703 string to rule them all",
"19704 string to rule them all",
"19705 string to rule them all",
"19706 string to rule them all",
"19707 string to rule them all",
"19708 string to rule them all",
"19709 string to rule them all",
"19710 string to rule them all",
"19711 string to rule them all",
"19712 string to rule them all",
"19713 string to rule them all",
"19714 string to rule them all",
"19715 string to rule them all",
"19716 string to rule them all",
"19717 string to rule them all",
"19718 string to rule them all",
"19719 string to rule them all",
"19720 string to rule them all",
"19721 string to rule them all",
"19722 string to rule them all",
"19723 string to rule them all",
"19724 string to rule them all",
"19725 string to rule them all",
"19726 string to rule them all",
"19727 string to rule them all",
"19728 string to rule them all",
"19729 string to rule them all",
"19730 string to rule them all",
"19731 string to rule them all",
"19732 string to rule them all",
"19733 string to rule them all",
"19734 string to rule them all",
"19735 string to rule them all",
"19736 string to rule them all",
"19737 string to rule them all",
"19738 string to rule them all",
"19739 string to rule them all",
"19740 string to rule them all",
"19741 string to rule them all",
"19742 string to rule them all",
"19743 string to rule them all",
"19744 string to rule them all",
"19745 string to rule them all",
"19746 string to rule them all",
"19747 string to rule them all",
"19748 string to rule them all",
"19749 string to rule them all",
"19750 string to rule them all",
"19751 string to rule them all",
"19752 string to rule them all",
"19753 string to rule them all",
"19754 string to rule them all",
"19755 string to rule them all",
"19756 string to rule them all",
"19757 string to rule them all",
"19758 string to rule them all",
"19759 string to rule them all",
"19760 string to rule them all",
"19761 string to rule them all",
"19762 string to rule them all",
"19763 string to rule them all",
"19764 string to rule them all",
"19765 string to rule them all",
"19766 string to rule them all",
"19767 string to rule them all",
"19768 string to rule them all",
"19769 string to rule them all",
"19770 string to rule them all",
"19771 string to rule them all",
"19772 string to rule them all",
"19773 string to rule them all",
"19774 string to rule them all",
"19775 string to rule them all",
"19776 string to rule them all",
"19777 string to rule them all",
"19778 string to rule them all",
"19779 string to rule them all",
"19780 string to rule them all",
"19781 string to rule them all",
"19782 string to rule them all",
"19783 string to rule them all",
"19784 string to rule them all",
"19785 string to rule them all",
"19786 string to rule them all",
"19787 string to rule them all",
"19788 string to rule them all",
"19789 string to rule them all",
"19790 string to rule them all",
"19791 string to rule them all",
"19792 string to rule them all",
"19793 string to rule them all",
"19794 string to rule them all",
"19795 string to rule them all",
"19796 string to rule them all",
"19797 string to rule them all",
"19798 string to rule them all",
"19799 string to rule them all",
"19800 string to rule them all",
"19801 string to rule them all",
"19802 string to rule them all",
"19803 string to rule them all",
"19804 string to rule them all",
"19805 string to rule them all",
"19806 string to rule them all",
"19807 string to rule them all",
"19808 string to rule them all",
"19809 string to rule them all",
"19810 string to rule them all",
"19811 string to rule them all",
"19812 string to rule them all",
"19813 string to rule them all",
"19814 string to rule them all",
"19815 string to rule them all",
"19816 string to rule them all",
"19817 string to rule them all",
"19818 string to rule them all",
"19819 string to rule them all",
"19820 string to rule them all",
"19821 string to rule them all",
"19822 string to rule them all",
"19823 string to rule them all",
"19824 string to rule them all",
"19825 string to rule them all",
"19826 string to rule them all",
"19827 string to rule them all",
"19828 string to rule them all",
"19829 string to rule them all",
"19830 string to rule them all",
"19831 string to rule them all",
"19832 string to rule them all",
"19833 string to rule them all",
"19834 string to rule them all",
"19835 string to rule them all",
"19836 string to rule them all",
"19837 string to rule them all",
"19838 string to rule them all",
"19839 string to rule them all",
"19840 string to rule them all",
"19841 string to rule them all",
"19842 string to rule them all",
"19843 string to rule them all",
"19844 string to rule them all",
"19845 string to rule them all",
"19846 string to rule them all",
"19847 string to rule them all",
"19848 string to rule them all",
"19849 string to rule them all",
"19850 string to rule them all",
"19851 string to rule them all",
"19852 string to rule them all",
"19853 string to rule them all",
"19854 string to rule them all",
"19855 string to rule them all",
"19856 string to rule them all",
"19857 string to rule them all",
"19858 string to rule them all",
"19859 string to rule them all",
"19860 string to rule them all",
"19861 string to rule them all",
"19862 string to rule them all",
"19863 string to rule them all",
"19864 string to rule them all",
"19865 string to rule them all",
"19866 string to rule them all",
"19867 string to rule them all",
"19868 string to rule them all",
"19869 string to rule them all",
"19870 string to rule them all",
"19871 string to rule them all",
"19872 string to rule them all",
"19873 string to rule them all",
"19874 string to rule them all",
"19875 string to rule them all",
"19876 string to rule them all",
"19877 string to rule them all",
"19878 string to rule them all",
"19879 string to rule them all",
"19880 string to rule them all",
"19881 string to rule them all",
"19882 string to rule them all",
"19883 string to rule them all",
"19884 string to rule them all",
"19885 string to rule them all",
"19886 string to rule them all",
"19887 string to rule them all",
"19888 string to rule them all",
"19889 string to rule them all",
"19890 string to rule them all",
"19891 string to rule them all",
"19892 string to rule them all",
"19893 string to rule them all",
"19894 string to rule them all",
"19895 string to rule them all",
"19896 string to rule them all",
"19897 string to rule them all",
"19898 string to rule them all",
"19899 string to rule them all",
"19900 string to rule them all",
"19901 string to rule them all",
"19902 string to rule them all",
"19903 string to rule them all",
"19904 string to rule them all",
"19905 string to rule them all",
"19906 string to rule them all",
"19907 string to rule them all",
"19908 string to rule them all",
"19909 string to rule them all",
"19910 string to rule them all",
"19911 string to rule them all",
"19912 string to rule them all",
"19913 string to rule them all",
"19914 string to rule them all",
"19915 string to rule them all",
"19916 string to rule them all",
"19917 string to rule them all",
"19918 string to rule them all",
"19919 string to rule them all",
"19920 string to rule them all",
"19921 string to rule them all",
"19922 string to rule them all",
"19923 string to rule them all",
"19924 string to rule them all",
"19925 string to rule them all",
"19926 string to rule them all",
"19927 string to rule them all",
"19928 string to rule them all",
"19929 string to rule them all",
"19930 string to rule them all",
"19931 string to rule them all",
"19932 string to rule them all",
"19933 string to rule them all",
"19934 string to rule them all",
"19935 string to rule them all",
"19936 string to rule them all",
"19937 string to rule them all",
"19938 string to rule them all",
"19939 string to rule them all",
"19940 string to rule them all",
"19941 string to rule them all",
"19942 string to rule them all",
"19943 string to rule them all",
"19944 string to rule them all",
"19945 string to rule them all",
"19946 string to rule them all",
"19947 string to rule them all",
"19948 string to rule them all",
"19949 string to rule them all",
"19950 string to rule them all",
"19951 string to rule them all",
"19952 string to rule them all",
"19953 string to rule them all",
"19954 string to rule them all",
"19955 string to rule them all",
"19956 string to rule them all",
"19957 string to rule them all",
"19958 string to rule them all",
"19959 string to rule them all",
"19960 string to rule them all",
"19961 string to rule them all",
"19962 string to rule them all",
"19963 string to rule them all",
"19964 string to rule them all",
"19965 string to rule them all",
"19966 string to rule them all",
"19967 string to rule them all",
"19968 string to rule them all",
"19969 string to rule them all",
"19970 string to rule them all",
"19971 string to rule them all",
"19972 string to rule them all",
"19973 string to rule them all",
"19974 string to rule them all",
"19975 string to rule them all",
"19976 string to rule them all",
"19977 string to rule them all",
"19978 string to rule them all",
"19979 string to rule them all",
"19980 string to rule them all",
"19981 string to rule them all",
"19982 string to rule them all",
"19983 string to rule them all",
"19984 string to rule them all",
"19985 string to rule them all",
"19986 string to rule them all",
"19987 string to rule them all",
"19988 string to rule them all",
"19989 string to rule them all",
"19990 string to rule them all",
"19991 string to rule them all",
"19992 string to rule them all",
"19993 string to rule them all",
"19994 string to rule them all",
"19995 string to rule them all",
"19996 string to rule them all",
"19997 string to rule them all",
"19998 string to rule them all",
"19999 string to rule them all",
"20000 string to rule them all",
"20001 string to rule them all",
"20002 string to rule them all",
"20003 string to rule them all",
"20004 string to rule them all",
"20005 string to rule them all",
"20006 string to rule them all",
"20007 string to rule them all",
"20008 string to rule them all",
"20009 string to rule them all",
"20010 string to rule them all",
"20011 string to rule them all",
"20012 string to rule them all",
"20013 string to rule them all",
"20014 string to rule them all",
"20015 string to rule them all",
"20016 string to rule them all",
"20017 string to rule them all",
"20018 string to rule them all",
"20019 string to rule them all",
"20020 string to rule them all",
"20021 string to rule them all",
"20022 string to rule them all",
"20023 string to rule them all",
"20024 string to rule them all",
"20025 string to rule them all",
"20026 string to rule them all",
"20027 string to rule them all",
"20028 string to rule them all",
"20029 string to rule them all",
"20030 string to rule them all",
"20031 string to rule them all",
"20032 string to rule them all",
"20033 string to rule them all",
"20034 string to rule them all",
"20035 string to rule them all",
"20036 string to rule them all",
"20037 string to rule them all",
"20038 string to rule them all",
"20039 string to rule them all",
"20040 string to rule them all",
"20041 string to rule them all",
"20042 string to rule them all",
"20043 string to rule them all",
"20044 string to rule them all",
"20045 string to rule them all",
"20046 string to rule them all",
"20047 string to rule them all",
"20048 string to rule them all",
"20049 string to rule them all",
"20050 string to rule them all",
"20051 string to rule them all",
"20052 string to rule them all",
"20053 string to rule them all",
"20054 string to rule them all",
"20055 string to rule them all",
"20056 string to rule them all",
"20057 string to rule them all",
"20058 string to rule them all",
"20059 string to rule them all",
"20060 string to rule them all",
"20061 string to rule them all",
"20062 string to rule them all",
"20063 string to rule them all",
"20064 string to rule them all",
"20065 string to rule them all",
"20066 string to rule them all",
"20067 string to rule them all",
"20068 string to rule them all",
"20069 string to rule them all",
"20070 string to rule them all",
"20071 string to rule them all",
"20072 string to rule them all",
"20073 string to rule them all",
"20074 string to rule them all",
"20075 string to rule them all",
"20076 string to rule them all",
"20077 string to rule them all",
"20078 string to rule them all",
"20079 string to rule them all",
"20080 string to rule them all",
"20081 string to rule them all",
"20082 string to rule them all",
"20083 string to rule them all",
"20084 string to rule them all",
"20085 string to rule them all",
"20086 string to rule them all",
"20087 string to rule them all",
"20088 string to rule them all",
"20089 string to rule them all",
"20090 string to rule them all",
"20091 string to rule them all",
"20092 string to rule them all",
"20093 string to rule them all",
"20094 string to rule them all",
"20095 string to rule them all",
"20096 string to rule them all",
"20097 string to rule them all",
"20098 string to rule them all",
"20099 string to rule them all",
"20100 string to rule them all",
"20101 string to rule them all",
"20102 string to rule them all",
"20103 string to rule them all",
"20104 string to rule them all",
"20105 string to rule them all",
"20106 string to rule them all",
"20107 string to rule them all",
"20108 string to rule them all",
"20109 string to rule them all",
"20110 string to rule them all",
"20111 string to rule them all",
"20112 string to rule them all",
"20113 string to rule them all",
"20114 string to rule them all",
"20115 string to rule them all",
"20116 string to rule them all",
"20117 string to rule them all",
"20118 string to rule them all",
"20119 string to rule them all",
"20120 string to rule them all",
"20121 string to rule them all",
"20122 string to rule them all",
"20123 string to rule them all",
"20124 string to rule them all",
"20125 string to rule them all",
"20126 string to rule them all",
"20127 string to rule them all",
"20128 string to rule them all",
"20129 string to rule them all",
"20130 string to rule them all",
"20131 string to rule them all",
"20132 string to rule them all",
"20133 string to rule them all",
"20134 string to rule them all",
"20135 string to rule them all",
"20136 string to rule them all",
"20137 string to rule them all",
"20138 string to rule them all",
"20139 string to rule them all",
"20140 string to rule them all",
"20141 string to rule them all",
"20142 string to rule them all",
"20143 string to rule them all",
"20144 string to rule them all",
"20145 string to rule them all",
"20146 string to rule them all",
"20147 string to rule them all",
"20148 string to rule them all",
"20149 string to rule them all",
"20150 string to rule them all",
"20151 string to rule them all",
"20152 string to rule them all",
"20153 string to rule them all",
"20154 string to rule them all",
"20155 string to rule them all",
"20156 string to rule them all",
"20157 string to rule them all",
"20158 string to rule them all",
"20159 string to rule them all",
"20160 string to rule them all",
"20161 string to rule them all",
"20162 string to rule them all",
"20163 string to rule them all",
"20164 string to rule them all",
"20165 string to rule them all",
"20166 string to rule them all",
"20167 string to rule them all",
"20168 string to rule them all",
"20169 string to rule them all",
"20170 string to rule them all",
"20171 string to rule them all",
"20172 string to rule them all",
"20173 string to rule them all",
"20174 string to rule them all",
"20175 string to rule them all",
"20176 string to rule them all",
"20177 string to rule them all",
"20178 string to rule them all",
"20179 string to rule them all",
"20180 string to rule them all",
"20181 string to rule them all",
"20182 string to rule them all",
"20183 string to rule them all",
"20184 string to rule them all",
"20185 string to rule them all",
"20186 string to rule them all",
"20187 string to rule them all",
"20188 string to rule them all",
"20189 string to rule them all",
"20190 string to rule them all",
"20191 string to rule them all",
"20192 string to rule them all",
"20193 string to rule them all",
"20194 string to rule them all",
"20195 string to rule them all",
"20196 string to rule them all",
"20197 string to rule them all",
"20198 string to rule them all",
"20199 string to rule them all",
"20200 string to rule them all",
"20201 string to rule them all",
"20202 string to rule them all",
"20203 string to rule them all",
"20204 string to rule them all",
"20205 string to rule them all",
"20206 string to rule them all",
"20207 string to rule them all",
"20208 string to rule them all",
"20209 string to rule them all",
"20210 string to rule them all",
"20211 string to rule them all",
"20212 string to rule them all",
"20213 string to rule them all",
"20214 string to rule them all",
"20215 string to rule them all",
"20216 string to rule them all",
"20217 string to rule them all",
"20218 string to rule them all",
"20219 string to rule them all",
"20220 string to rule them all",
"20221 string to rule them all",
"20222 string to rule them all",
"20223 string to rule them all",
"20224 string to rule them all",
"20225 string to rule them all",
"20226 string to rule them all",
"20227 string to rule them all",
"20228 string to rule them all",
"20229 string to rule them all",
"20230 string to rule them all",
"20231 string to rule them all",
"20232 string to rule them all",
"20233 string to rule them all",
"20234 string to rule them all",
"20235 string to rule them all",
"20236 string to rule them all",
"20237 string to rule them all",
"20238 string to rule them all",
"20239 string to rule them all",
"20240 string to rule them all",
"20241 string to rule them all",
"20242 string to rule them all",
"20243 string to rule them all",
"20244 string to rule them all",
"20245 string to rule them all",
"20246 string to rule them all",
"20247 string to rule them all",
"20248 string to rule them all",
"20249 string to rule them all",
"20250 string to rule them all",
"20251 string to rule them all",
"20252 string to rule them all",
"20253 string to rule them all",
"20254 string to rule them all",
"20255 string to rule them all",
"20256 string to rule them all",
"20257 string to rule them all",
"20258 string to rule them all",
"20259 string to rule them all",
"20260 string to rule them all",
"20261 string to rule them all",
"20262 string to rule them all",
"20263 string to rule them all",
"20264 string to rule them all",
"20265 string to rule them all",
"20266 string to rule them all",
"20267 string to rule them all",
"20268 string to rule them all",
"20269 string to rule them all",
"20270 string to rule them all",
"20271 string to rule them all",
"20272 string to rule them all",
"20273 string to rule them all",
"20274 string to rule them all",
"20275 string to rule them all",
"20276 string to rule them all",
"20277 string to rule them all",
"20278 string to rule them all",
"20279 string to rule them all",
"20280 string to rule them all",
"20281 string to rule them all",
"20282 string to rule them all",
"20283 string to rule them all",
"20284 string to rule them all",
"20285 string to rule them all",
"20286 string to rule them all",
"20287 string to rule them all",
"20288 string to rule them all",
"20289 string to rule them all",
"20290 string to rule them all",
"20291 string to rule them all",
"20292 string to rule them all",
"20293 string to rule them all",
"20294 string to rule them all",
"20295 string to rule them all",
"20296 string to rule them all",
"20297 string to rule them all",
"20298 string to rule them all",
"20299 string to rule them all",
"20300 string to rule them all",
"20301 string to rule them all",
"20302 string to rule them all",
"20303 string to rule them all",
"20304 string to rule them all",
"20305 string to rule them all",
"20306 string to rule them all",
"20307 string to rule them all",
"20308 string to rule them all",
"20309 string to rule them all",
"20310 string to rule them all",
"20311 string to rule them all",
"20312 string to rule them all",
"20313 string to rule them all",
"20314 string to rule them all",
"20315 string to rule them all",
"20316 string to rule them all",
"20317 string to rule them all",
"20318 string to rule them all",
"20319 string to rule them all",
"20320 string to rule them all",
"20321 string to rule them all",
"20322 string to rule them all",
"20323 string to rule them all",
"20324 string to rule them all",
"20325 string to rule them all",
"20326 string to rule them all",
"20327 string to rule them all",
"20328 string to rule them all",
"20329 string to rule them all",
"20330 string to rule them all",
"20331 string to rule them all",
"20332 string to rule them all",
"20333 string to rule them all",
"20334 string to rule them all",
"20335 string to rule them all",
"20336 string to rule them all",
"20337 string to rule them all",
"20338 string to rule them all",
"20339 string to rule them all",
"20340 string to rule them all",
"20341 string to rule them all",
"20342 string to rule them all",
"20343 string to rule them all",
"20344 string to rule them all",
"20345 string to rule them all",
"20346 string to rule them all",
"20347 string to rule them all",
"20348 string to rule them all",
"20349 string to rule them all",
"20350 string to rule them all",
"20351 string to rule them all",
"20352 string to rule them all",
"20353 string to rule them all",
"20354 string to rule them all",
"20355 string to rule them all",
"20356 string to rule them all",
"20357 string to rule them all",
"20358 string to rule them all",
"20359 string to rule them all",
"20360 string to rule them all",
"20361 string to rule them all",
"20362 string to rule them all",
"20363 string to rule them all",
"20364 string to rule them all",
"20365 string to rule them all",
"20366 string to rule them all",
"20367 string to rule them all",
"20368 string to rule them all",
"20369 string to rule them all",
"20370 string to rule them all",
"20371 string to rule them all",
"20372 string to rule them all",
"20373 string to rule them all",
"20374 string to rule them all",
"20375 string to rule them all",
"20376 string to rule them all",
"20377 string to rule them all",
"20378 string to rule them all",
"20379 string to rule them all",
"20380 string to rule them all",
"20381 string to rule them all",
"20382 string to rule them all",
"20383 string to rule them all",
"20384 string to rule them all",
"20385 string to rule them all",
"20386 string to rule them all",
"20387 string to rule them all",
"20388 string to rule them all",
"20389 string to rule them all",
"20390 string to rule them all",
"20391 string to rule them all",
"20392 string to rule them all",
"20393 string to rule them all",
"20394 string to rule them all",
"20395 string to rule them all",
"20396 string to rule them all",
"20397 string to rule them all",
"20398 string to rule them all",
"20399 string to rule them all",
"20400 string to rule them all",
"20401 string to rule them all",
"20402 string to rule them all",
"20403 string to rule them all",
"20404 string to rule them all",
"20405 string to rule them all",
"20406 string to rule them all",
"20407 string to rule them all",
"20408 string to rule them all",
"20409 string to rule them all",
"20410 string to rule them all",
"20411 string to rule them all",
"20412 string to rule them all",
"20413 string to rule them all",
"20414 string to rule them all",
"20415 string to rule them all",
"20416 string to rule them all",
"20417 string to rule them all",
"20418 string to rule them all",
"20419 string to rule them all",
"20420 string to rule them all",
"20421 string to rule them all",
"20422 string to rule them all",
"20423 string to rule them all",
"20424 string to rule them all",
"20425 string to rule them all",
"20426 string to rule them all",
"20427 string to rule them all",
"20428 string to rule them all",
"20429 string to rule them all",
"20430 string to rule them all",
"20431 string to rule them all",
"20432 string to rule them all",
"20433 string to rule them all",
"20434 string to rule them all",
"20435 string to rule them all",
"20436 string to rule them all",
"20437 string to rule them all",
"20438 string to rule them all",
"20439 string to rule them all",
"20440 string to rule them all",
"20441 string to rule them all",
"20442 string to rule them all",
"20443 string to rule them all",
"20444 string to rule them all",
"20445 string to rule them all",
"20446 string to rule them all",
"20447 string to rule them all",
"20448 string to rule them all",
"20449 string to rule them all",
"20450 string to rule them all",
"20451 string to rule them all",
"20452 string to rule them all",
"20453 string to rule them all",
"20454 string to rule them all",
"20455 string to rule them all",
"20456 string to rule them all",
"20457 string to rule them all",
"20458 string to rule them all",
"20459 string to rule them all",
"20460 string to rule them all",
"20461 string to rule them all",
"20462 string to rule them all",
"20463 string to rule them all",
"20464 string to rule them all",
"20465 string to rule them all",
"20466 string to rule them all",
"20467 string to rule them all",
"20468 string to rule them all",
"20469 string to rule them all",
"20470 string to rule them all",
"20471 string to rule them all",
"20472 string to rule them all",
"20473 string to rule them all",
"20474 string to rule them all",
"20475 string to rule them all",
"20476 string to rule them all",
"20477 string to rule them all",
"20478 string to rule them all",
"20479 string to rule them all",
"20480 string to rule them all",
"20481 string to rule them all",
"20482 string to rule them all",
"20483 string to rule them all",
"20484 string to rule them all",
"20485 string to rule them all",
"20486 string to rule them all",
"20487 string to rule them all",
"20488 string to rule them all",
"20489 string to rule them all",
"20490 string to rule them all",
"20491 string to rule them all",
"20492 string to rule them all",
"20493 string to rule them all",
"20494 string to rule them all",
"20495 string to rule them all",
"20496 string to rule them all",
"20497 string to rule them all",
"20498 string to rule them all",
"20499 string to rule them all",
"20500 string to rule them all",
"20501 string to rule them all",
"20502 string to rule them all",
"20503 string to rule them all",
"20504 string to rule them all",
"20505 string to rule them all",
"20506 string to rule them all",
"20507 string to rule them all",
"20508 string to rule them all",
"20509 string to rule them all",
"20510 string to rule them all",
"20511 string to rule them all",
"20512 string to rule them all",
"20513 string to rule them all",
"20514 string to rule them all",
"20515 string to rule them all",
"20516 string to rule them all",
"20517 string to rule them all",
"20518 string to rule them all",
"20519 string to rule them all",
"20520 string to rule them all",
"20521 string to rule them all",
"20522 string to rule them all",
"20523 string to rule them all",
"20524 string to rule them all",
"20525 string to rule them all",
"20526 string to rule them all",
"20527 string to rule them all",
"20528 string to rule them all",
"20529 string to rule them all",
"20530 string to rule them all",
"20531 string to rule them all",
"20532 string to rule them all",
"20533 string to rule them all",
"20534 string to rule them all",
"20535 string to rule them all",
"20536 string to rule them all",
"20537 string to rule them all",
"20538 string to rule them all",
"20539 string to rule them all",
"20540 string to rule them all",
"20541 string to rule them all",
"20542 string to rule them all",
"20543 string to rule them all",
"20544 string to rule them all",
"20545 string to rule them all",
"20546 string to rule them all",
"20547 string to rule them all",
"20548 string to rule them all",
"20549 string to rule them all",
"20550 string to rule them all",
"20551 string to rule them all",
"20552 string to rule them all",
"20553 string to rule them all",
"20554 string to rule them all",
"20555 string to rule them all",
"20556 string to rule them all",
"20557 string to rule them all",
"20558 string to rule them all",
"20559 string to rule them all",
"20560 string to rule them all",
"20561 string to rule them all",
"20562 string to rule them all",
"20563 string to rule them all",
"20564 string to rule them all",
"20565 string to rule them all",
"20566 string to rule them all",
"20567 string to rule them all",
"20568 string to rule them all",
"20569 string to rule them all",
"20570 string to rule them all",
"20571 string to rule them all",
"20572 string to rule them all",
"20573 string to rule them all",
"20574 string to rule them all",
"20575 string to rule them all",
"20576 string to rule them all",
"20577 string to rule them all",
"20578 string to rule them all",
"20579 string to rule them all",
"20580 string to rule them all",
"20581 string to rule them all",
"20582 string to rule them all",
"20583 string to rule them all",
"20584 string to rule them all",
"20585 string to rule them all",
"20586 string to rule them all",
"20587 string to rule them all",
"20588 string to rule them all",
"20589 string to rule them all",
"20590 string to rule them all",
"20591 string to rule them all",
"20592 string to rule them all",
"20593 string to rule them all",
"20594 string to rule them all",
"20595 string to rule them all",
"20596 string to rule them all",
"20597 string to rule them all",
"20598 string to rule them all",
"20599 string to rule them all",
"20600 string to rule them all",
"20601 string to rule them all",
"20602 string to rule them all",
"20603 string to rule them all",
"20604 string to rule them all",
"20605 string to rule them all",
"20606 string to rule them all",
"20607 string to rule them all",
"20608 string to rule them all",
"20609 string to rule them all",
"20610 string to rule them all",
"20611 string to rule them all",
"20612 string to rule them all",
"20613 string to rule them all",
"20614 string to rule them all",
"20615 string to rule them all",
"20616 string to rule them all",
"20617 string to rule them all",
"20618 string to rule them all",
"20619 string to rule them all",
"20620 string to rule them all",
"20621 string to rule them all",
"20622 string to rule them all",
"20623 string to rule them all",
"20624 string to rule them all",
"20625 string to rule them all",
"20626 string to rule them all",
"20627 string to rule them all",
"20628 string to rule them all",
"20629 string to rule them all",
"20630 string to rule them all",
"20631 string to rule them all",
"20632 string to rule them all",
"20633 string to rule them all",
"20634 string to rule them all",
"20635 string to rule them all",
"20636 string to rule them all",
"20637 string to rule them all",
"20638 string to rule them all",
"20639 string to rule them all",
"20640 string to rule them all",
"20641 string to rule them all",
"20642 string to rule them all",
"20643 string to rule them all",
"20644 string to rule them all",
"20645 string to rule them all",
"20646 string to rule them all",
"20647 string to rule them all",
"20648 string to rule them all",
"20649 string to rule them all",
"20650 string to rule them all",
"20651 string to rule them all",
"20652 string to rule them all",
"20653 string to rule them all",
"20654 string to rule them all",
"20655 string to rule them all",
"20656 string to rule them all",
"20657 string to rule them all",
"20658 string to rule them all",
"20659 string to rule them all",
"20660 string to rule them all",
"20661 string to rule them all",
"20662 string to rule them all",
"20663 string to rule them all",
"20664 string to rule them all",
"20665 string to rule them all",
"20666 string to rule them all",
"20667 string to rule them all",
"20668 string to rule them all",
"20669 string to rule them all",
"20670 string to rule them all",
"20671 string to rule them all",
"20672 string to rule them all",
"20673 string to rule them all",
"20674 string to rule them all",
"20675 string to rule them all",
"20676 string to rule them all",
"20677 string to rule them all",
"20678 string to rule them all",
"20679 string to rule them all",
"20680 string to rule them all",
"20681 string to rule them all",
"20682 string to rule them all",
"20683 string to rule them all",
"20684 string to rule them all",
"20685 string to rule them all",
"20686 string to rule them all",
"20687 string to rule them all",
"20688 string to rule them all",
"20689 string to rule them all",
"20690 string to rule them all",
"20691 string to rule them all",
"20692 string to rule them all",
"20693 string to rule them all",
"20694 string to rule them all",
"20695 string to rule them all",
"20696 string to rule them all",
"20697 string to rule them all",
"20698 string to rule them all",
"20699 string to rule them all",
"20700 string to rule them all",
"20701 string to rule them all",
"20702 string to rule them all",
"20703 string to rule them all",
"20704 string to rule them all",
"20705 string to rule them all",
"20706 string to rule them all",
"20707 string to rule them all",
"20708 string to rule them all",
"20709 string to rule them all",
"20710 string to rule them all",
"20711 string to rule them all",
"20712 string to rule them all",
"20713 string to rule them all",
"20714 string to rule them all",
"20715 string to rule them all",
"20716 string to rule them all",
"20717 string to rule them all",
"20718 string to rule them all",
"20719 string to rule them all",
"20720 string to rule them all",
"20721 string to rule them all",
"20722 string to rule them all",
"20723 string to rule them all",
"20724 string to rule them all",
"20725 string to rule them all",
"20726 string to rule them all",
"20727 string to rule them all",
"20728 string to rule them all",
"20729 string to rule them all",
"20730 string to rule them all",
"20731 string to rule them all",
"20732 string to rule them all",
"20733 string to rule them all",
"20734 string to rule them all",
"20735 string to rule them all",
"20736 string to rule them all",
"20737 string to rule them all",
"20738 string to rule them all",
"20739 string to rule them all",
"20740 string to rule them all",
"20741 string to rule them all",
"20742 string to rule them all",
"20743 string to rule them all",
"20744 string to rule them all",
"20745 string to rule them all",
"20746 string to rule them all",
"20747 string to rule them all",
"20748 string to rule them all",
"20749 string to rule them all",
"20750 string to rule them all",
"20751 string to rule them all",
"20752 string to rule them all",
"20753 string to rule them all",
"20754 string to rule them all",
"20755 string to rule them all",
"20756 string to rule them all",
"20757 string to rule them all",
"20758 string to rule them all",
"20759 string to rule them all",
"20760 string to rule them all",
"20761 string to rule them all",
"20762 string to rule them all",
"20763 string to rule them all",
"20764 string to rule them all",
"20765 string to rule them all",
"20766 string to rule them all",
"20767 string to rule them all",
"20768 string to rule them all",
"20769 string to rule them all",
"20770 string to rule them all",
"20771 string to rule them all",
"20772 string to rule them all",
"20773 string to rule them all",
"20774 string to rule them all",
"20775 string to rule them all",
"20776 string to rule them all",
"20777 string to rule them all",
"20778 string to rule them all",
"20779 string to rule them all",
"20780 string to rule them all",
"20781 string to rule them all",
"20782 string to rule them all",
"20783 string to rule them all",
"20784 string to rule them all",
"20785 string to rule them all",
"20786 string to rule them all",
"20787 string to rule them all",
"20788 string to rule them all",
"20789 string to rule them all",
"20790 string to rule them all",
"20791 string to rule them all",
"20792 string to rule them all",
"20793 string to rule them all",
"20794 string to rule them all",
"20795 string to rule them all",
"20796 string to rule them all",
"20797 string to rule them all",
"20798 string to rule them all",
"20799 string to rule them all",
"20800 string to rule them all",
"20801 string to rule them all",
"20802 string to rule them all",
"20803 string to rule them all",
"20804 string to rule them all",
"20805 string to rule them all",
"20806 string to rule them all",
"20807 string to rule them all",
"20808 string to rule them all",
"20809 string to rule them all",
"20810 string to rule them all",
"20811 string to rule them all",
"20812 string to rule them all",
"20813 string to rule them all",
"20814 string to rule them all",
"20815 string to rule them all",
"20816 string to rule them all",
"20817 string to rule them all",
"20818 string to rule them all",
"20819 string to rule them all",
"20820 string to rule them all",
"20821 string to rule them all",
"20822 string to rule them all",
"20823 string to rule them all",
"20824 string to rule them all",
"20825 string to rule them all",
"20826 string to rule them all",
"20827 string to rule them all",
"20828 string to rule them all",
"20829 string to rule them all",
"20830 string to rule them all",
"20831 string to rule them all",
"20832 string to rule them all",
"20833 string to rule them all",
"20834 string to rule them all",
"20835 string to rule them all",
"20836 string to rule them all",
"20837 string to rule them all",
"20838 string to rule them all",
"20839 string to rule them all",
"20840 string to rule them all",
"20841 string to rule them all",
"20842 string to rule them all",
"20843 string to rule them all",
"20844 string to rule them all",
"20845 string to rule them all",
"20846 string to rule them all",
"20847 string to rule them all",
"20848 string to rule them all",
"20849 string to rule them all",
"20850 string to rule them all",
"20851 string to rule them all",
"20852 string to rule them all",
"20853 string to rule them all",
"20854 string to rule them all",
"20855 string to rule them all",
"20856 string to rule them all",
"20857 string to rule them all",
"20858 string to rule them all",
"20859 string to rule them all",
"20860 string to rule them all",
"20861 string to rule them all",
"20862 string to rule them all",
"20863 string to rule them all",
"20864 string to rule them all",
"20865 string to rule them all",
"20866 string to rule them all",
"20867 string to rule them all",
"20868 string to rule them all",
"20869 string to rule them all",
"20870 string to rule them all",
"20871 string to rule them all",
"20872 string to rule them all",
"20873 string to rule them all",
"20874 string to rule them all",
"20875 string to rule them all",
"20876 string to rule them all",
"20877 string to rule them all",
"20878 string to rule them all",
"20879 string to rule them all",
"20880 string to rule them all",
"20881 string to rule them all",
"20882 string to rule them all",
"20883 string to rule them all",
"20884 string to rule them all",
"20885 string to rule them all",
"20886 string to rule them all",
"20887 string to rule them all",
"20888 string to rule them all",
"20889 string to rule them all",
"20890 string to rule them all",
"20891 string to rule them all",
"20892 string to rule them all",
"20893 string to rule them all",
"20894 string to rule them all",
"20895 string to rule them all",
"20896 string to rule them all",
"20897 string to rule them all",
"20898 string to rule them all",
"20899 string to rule them all",
"20900 string to rule them all",
"20901 string to rule them all",
"20902 string to rule them all",
"20903 string to rule them all",
"20904 string to rule them all",
"20905 string to rule them all",
"20906 string to rule them all",
"20907 string to rule them all",
"20908 string to rule them all",
"20909 string to rule them all",
"20910 string to rule them all",
"20911 string to rule them all",
"20912 string to rule them all",
"20913 string to rule them all",
"20914 string to rule them all",
"20915 string to rule them all",
"20916 string to rule them all",
"20917 string to rule them all",
"20918 string to rule them all",
"20919 string to rule them all",
"20920 string to rule them all",
"20921 string to rule them all",
"20922 string to rule them all",
"20923 string to rule them all",
"20924 string to rule them all",
"20925 string to rule them all",
"20926 string to rule them all",
"20927 string to rule them all",
"20928 string to rule them all",
"20929 string to rule them all",
"20930 string to rule them all",
"20931 string to rule them all",
"20932 string to rule them all",
"20933 string to rule them all",
"20934 string to rule them all",
"20935 string to rule them all",
"20936 string to rule them all",
"20937 string to rule them all",
"20938 string to rule them all",
"20939 string to rule them all",
"20940 string to rule them all",
"20941 string to rule them all",
"20942 string to rule them all",
"20943 string to rule them all",
"20944 string to rule them all",
"20945 string to rule them all",
"20946 string to rule them all",
"20947 string to rule them all",
"20948 string to rule them all",
"20949 string to rule them all",
"20950 string to rule them all",
"20951 string to rule them all",
"20952 string to rule them all",
"20953 string to rule them all",
"20954 string to rule them all",
"20955 string to rule them all",
"20956 string to rule them all",
"20957 string to rule them all",
"20958 string to rule them all",
"20959 string to rule them all",
"20960 string to rule them all",
"20961 string to rule them all",
"20962 string to rule them all",
"20963 string to rule them all",
"20964 string to rule them all",
"20965 string to rule them all",
"20966 string to rule them all",
"20967 string to rule them all",
"20968 string to rule them all",
"20969 string to rule them all",
"20970 string to rule them all",
"20971 string to rule them all",
"20972 string to rule them all",
"20973 string to rule them all",
"20974 string to rule them all",
"20975 string to rule them all",
"20976 string to rule them all",
"20977 string to rule them all",
"20978 string to rule them all",
"20979 string to rule them all",
"20980 string to rule them all",
"20981 string to rule them all",
"20982 string to rule them all",
"20983 string to rule them all",
"20984 string to rule them all",
"20985 string to rule them all",
"20986 string to rule them all",
"20987 string to rule them all",
"20988 string to rule them all",
"20989 string to rule them all",
"20990 string to rule them all",
"20991 string to rule them all",
"20992 string to rule them all",
"20993 string to rule them all",
"20994 string to rule them all",
"20995 string to rule them all",
"20996 string to rule them all",
"20997 string to rule them all",
"20998 string to rule them all",
"20999 string to rule them all",
"21000 string to rule them all",
"21001 string to rule them all",
"21002 string to rule them all",
"21003 string to rule them all",
"21004 string to rule them all",
"21005 string to rule them all",
"21006 string to rule them all",
"21007 string to rule them all",
"21008 string to rule them all",
"21009 string to rule them all",
"21010 string to rule them all",
"21011 string to rule them all",
"21012 string to rule them all",
"21013 string to rule them all",
"21014 string to rule them all",
"21015 string to rule them all",
"21016 string to rule them all",
"21017 string to rule them all",
"21018 string to rule them all",
"21019 string to rule them all",
"21020 string to rule them all",
"21021 string to rule them all",
"21022 string to rule them all",
"21023 string to rule them all",
"21024 string to rule them all",
"21025 string to rule them all",
"21026 string to rule them all",
"21027 string to rule them all",
"21028 string to rule them all",
"21029 string to rule them all",
"21030 string to rule them all",
"21031 string to rule them all",
"21032 string to rule them all",
"21033 string to rule them all",
"21034 string to rule them all",
"21035 string to rule them all",
"21036 string to rule them all",
"21037 string to rule them all",
"21038 string to rule them all",
"21039 string to rule them all",
"21040 string to rule them all",
"21041 string to rule them all",
"21042 string to rule them all",
"21043 string to rule them all",
"21044 string to rule them all",
"21045 string to rule them all",
"21046 string to rule them all",
"21047 string to rule them all",
"21048 string to rule them all",
"21049 string to rule them all",
"21050 string to rule them all",
"21051 string to rule them all",
"21052 string to rule them all",
"21053 string to rule them all",
"21054 string to rule them all",
"21055 string to rule them all",
"21056 string to rule them all",
"21057 string to rule them all",
"21058 string to rule them all",
"21059 string to rule them all",
"21060 string to rule them all",
"21061 string to rule them all",
"21062 string to rule them all",
"21063 string to rule them all",
"21064 string to rule them all",
"21065 string to rule them all",
"21066 string to rule them all",
"21067 string to rule them all",
"21068 string to rule them all",
"21069 string to rule them all",
"21070 string to rule them all",
"21071 string to rule them all",
"21072 string to rule them all",
"21073 string to rule them all",
"21074 string to rule them all",
"21075 string to rule them all",
"21076 string to rule them all",
"21077 string to rule them all",
"21078 string to rule them all",
"21079 string to rule them all",
"21080 string to rule them all",
"21081 string to rule them all",
"21082 string to rule them all",
"21083 string to rule them all",
"21084 string to rule them all",
"21085 string to rule them all",
"21086 string to rule them all",
"21087 string to rule them all",
"21088 string to rule them all",
"21089 string to rule them all",
"21090 string to rule them all",
"21091 string to rule them all",
"21092 string to rule them all",
"21093 string to rule them all",
"21094 string to rule them all",
"21095 string to rule them all",
"21096 string to rule them all",
"21097 string to rule them all",
"21098 string to rule them all",
"21099 string to rule them all",
"21100 string to rule them all",
"21101 string to rule them all",
"21102 string to rule them all",
"21103 string to rule them all",
"21104 string to rule them all",
"21105 string to rule them all",
"21106 string to rule them all",
"21107 string to rule them all",
"21108 string to rule them all",
"21109 string to rule them all",
"21110 string to rule them all",
"21111 string to rule them all",
"21112 string to rule them all",
"21113 string to rule them all",
"21114 string to rule them all",
"21115 string to rule them all",
"21116 string to rule them all",
"21117 string to rule them all",
"21118 string to rule them all",
"21119 string to rule them all",
"21120 string to rule them all",
"21121 string to rule them all",
"21122 string to rule them all",
"21123 string to rule them all",
"21124 string to rule them all",
"21125 string to rule them all",
"21126 string to rule them all",
"21127 string to rule them all",
"21128 string to rule them all",
"21129 string to rule them all",
"21130 string to rule them all",
"21131 string to rule them all",
"21132 string to rule them all",
"21133 string to rule them all",
"21134 string to rule them all",
"21135 string to rule them all",
"21136 string to rule them all",
"21137 string to rule them all",
"21138 string to rule them all",
"21139 string to rule them all",
"21140 string to rule them all",
"21141 string to rule them all",
"21142 string to rule them all",
"21143 string to rule them all",
"21144 string to rule them all",
"21145 string to rule them all",
"21146 string to rule them all",
"21147 string to rule them all",
"21148 string to rule them all",
"21149 string to rule them all",
"21150 string to rule them all",
"21151 string to rule them all",
"21152 string to rule them all",
"21153 string to rule them all",
"21154 string to rule them all",
"21155 string to rule them all",
"21156 string to rule them all",
"21157 string to rule them all",
"21158 string to rule them all",
"21159 string to rule them all",
"21160 string to rule them all",
"21161 string to rule them all",
"21162 string to rule them all",
"21163 string to rule them all",
"21164 string to rule them all",
"21165 string to rule them all",
"21166 string to rule them all",
"21167 string to rule them all",
"21168 string to rule them all",
"21169 string to rule them all",
"21170 string to rule them all",
"21171 string to rule them all",
"21172 string to rule them all",
"21173 string to rule them all",
"21174 string to rule them all",
"21175 string to rule them all",
"21176 string to rule them all",
"21177 string to rule them all",
"21178 string to rule them all",
"21179 string to rule them all",
"21180 string to rule them all",
"21181 string to rule them all",
"21182 string to rule them all",
"21183 string to rule them all",
"21184 string to rule them all",
"21185 string to rule them all",
"21186 string to rule them all",
"21187 string to rule them all",
"21188 string to rule them all",
"21189 string to rule them all",
"21190 string to rule them all",
"21191 string to rule them all",
"21192 string to rule them all",
"21193 string to rule them all",
"21194 string to rule them all",
"21195 string to rule them all",
"21196 string to rule them all",
"21197 string to rule them all",
"21198 string to rule them all",
"21199 string to rule them all",
"21200 string to rule them all",
"21201 string to rule them all",
"21202 string to rule them all",
"21203 string to rule them all",
"21204 string to rule them all",
"21205 string to rule them all",
"21206 string to rule them all",
"21207 string to rule them all",
"21208 string to rule them all",
"21209 string to rule them all",
"21210 string to rule them all",
"21211 string to rule them all",
"21212 string to rule them all",
"21213 string to rule them all",
"21214 string to rule them all",
"21215 string to rule them all",
"21216 string to rule them all",
"21217 string to rule them all",
"21218 string to rule them all",
"21219 string to rule them all",
"21220 string to rule them all",
"21221 string to rule them all",
"21222 string to rule them all",
"21223 string to rule them all",
"21224 string to rule them all",
"21225 string to rule them all",
"21226 string to rule them all",
"21227 string to rule them all",
"21228 string to rule them all",
"21229 string to rule them all",
"21230 string to rule them all",
"21231 string to rule them all",
"21232 string to rule them all",
"21233 string to rule them all",
"21234 string to rule them all",
"21235 string to rule them all",
"21236 string to rule them all",
"21237 string to rule them all",
"21238 string to rule them all",
"21239 string to rule them all",
"21240 string to rule them all",
"21241 string to rule them all",
"21242 string to rule them all",
"21243 string to rule them all",
"21244 string to rule them all",
"21245 string to rule them all",
"21246 string to rule them all",
"21247 string to rule them all",
"21248 string to rule them all",
"21249 string to rule them all",
"21250 string to rule them all",
"21251 string to rule them all",
"21252 string to rule them all",
"21253 string to rule them all",
"21254 string to rule them all",
"21255 string to rule them all",
"21256 string to rule them all",
"21257 string to rule them all",
"21258 string to rule them all",
"21259 string to rule them all",
"21260 string to rule them all",
"21261 string to rule them all",
"21262 string to rule them all",
"21263 string to rule them all",
"21264 string to rule them all",
"21265 string to rule them all",
"21266 string to rule them all",
"21267 string to rule them all",
"21268 string to rule them all",
"21269 string to rule them all",
"21270 string to rule them all",
"21271 string to rule them all",
"21272 string to rule them all",
"21273 string to rule them all",
"21274 string to rule them all",
"21275 string to rule them all",
"21276 string to rule them all",
"21277 string to rule them all",
"21278 string to rule them all",
"21279 string to rule them all",
"21280 string to rule them all",
"21281 string to rule them all",
"21282 string to rule them all",
"21283 string to rule them all",
"21284 string to rule them all",
"21285 string to rule them all",
"21286 string to rule them all",
"21287 string to rule them all",
"21288 string to rule them all",
"21289 string to rule them all",
"21290 string to rule them all",
"21291 string to rule them all",
"21292 string to rule them all",
"21293 string to rule them all",
"21294 string to rule them all",
"21295 string to rule them all",
"21296 string to rule them all",
"21297 string to rule them all",
"21298 string to rule them all",
"21299 string to rule them all",
"21300 string to rule them all",
"21301 string to rule them all",
"21302 string to rule them all",
"21303 string to rule them all",
"21304 string to rule them all",
"21305 string to rule them all",
"21306 string to rule them all",
"21307 string to rule them all",
"21308 string to rule them all",
"21309 string to rule them all",
"21310 string to rule them all",
"21311 string to rule them all",
"21312 string to rule them all",
"21313 string to rule them all",
"21314 string to rule them all",
"21315 string to rule them all",
"21316 string to rule them all",
"21317 string to rule them all",
"21318 string to rule them all",
"21319 string to rule them all",
"21320 string to rule them all",
"21321 string to rule them all",
"21322 string to rule them all",
"21323 string to rule them all",
"21324 string to rule them all",
"21325 string to rule them all",
"21326 string to rule them all",
"21327 string to rule them all",
"21328 string to rule them all",
"21329 string to rule them all",
"21330 string to rule them all",
"21331 string to rule them all",
"21332 string to rule them all",
"21333 string to rule them all",
"21334 string to rule them all",
"21335 string to rule them all",
"21336 string to rule them all",
"21337 string to rule them all",
"21338 string to rule them all",
"21339 string to rule them all",
"21340 string to rule them all",
"21341 string to rule them all",
"21342 string to rule them all",
"21343 string to rule them all",
"21344 string to rule them all",
"21345 string to rule them all",
"21346 string to rule them all",
"21347 string to rule them all",
"21348 string to rule them all",
"21349 string to rule them all",
"21350 string to rule them all",
"21351 string to rule them all",
"21352 string to rule them all",
"21353 string to rule them all",
"21354 string to rule them all",
"21355 string to rule them all",
"21356 string to rule them all",
"21357 string to rule them all",
"21358 string to rule them all",
"21359 string to rule them all",
"21360 string to rule them all",
"21361 string to rule them all",
"21362 string to rule them all",
"21363 string to rule them all",
"21364 string to rule them all",
"21365 string to rule them all",
"21366 string to rule them all",
"21367 string to rule them all",
"21368 string to rule them all",
"21369 string to rule them all",
"21370 string to rule them all",
"21371 string to rule them all",
"21372 string to rule them all",
"21373 string to rule them all",
"21374 string to rule them all",
"21375 string to rule them all",
"21376 string to rule them all",
"21377 string to rule them all",
"21378 string to rule them all",
"21379 string to rule them all",
"21380 string to rule them all",
"21381 string to rule them all",
"21382 string to rule them all",
"21383 string to rule them all",
"21384 string to rule them all",
"21385 string to rule them all",
"21386 string to rule them all",
"21387 string to rule them all",
"21388 string to rule them all",
"21389 string to rule them all",
"21390 string to rule them all",
"21391 string to rule them all",
"21392 string to rule them all",
"21393 string to rule them all",
"21394 string to rule them all",
"21395 string to rule them all",
"21396 string to rule them all",
"21397 string to rule them all",
"21398 string to rule them all",
"21399 string to rule them all",
"21400 string to rule them all",
"21401 string to rule them all",
"21402 string to rule them all",
"21403 string to rule them all",
"21404 string to rule them all",
"21405 string to rule them all",
"21406 string to rule them all",
"21407 string to rule them all",
"21408 string to rule them all",
"21409 string to rule them all",
"21410 string to rule them all",
"21411 string to rule them all",
"21412 string to rule them all",
"21413 string to rule them all",
"21414 string to rule them all",
"21415 string to rule them all",
"21416 string to rule them all",
"21417 string to rule them all",
"21418 string to rule them all",
"21419 string to rule them all",
"21420 string to rule them all",
"21421 string to rule them all",
"21422 string to rule them all",
"21423 string to rule them all",
"21424 string to rule them all",
"21425 string to rule them all",
"21426 string to rule them all",
"21427 string to rule them all",
"21428 string to rule them all",
"21429 string to rule them all",
"21430 string to rule them all",
"21431 string to rule them all",
"21432 string to rule them all",
"21433 string to rule them all",
"21434 string to rule them all",
"21435 string to rule them all",
"21436 string to rule them all",
"21437 string to rule them all",
"21438 string to rule them all",
"21439 string to rule them all",
"21440 string to rule them all",
"21441 string to rule them all",
"21442 string to rule them all",
"21443 string to rule them all",
"21444 string to rule them all",
"21445 string to rule them all",
"21446 string to rule them all",
"21447 string to rule them all",
"21448 string to rule them all",
"21449 string to rule them all",
"21450 string to rule them all",
"21451 string to rule them all",
"21452 string to rule them all",
"21453 string to rule them all",
"21454 string to rule them all",
"21455 string to rule them all",
"21456 string to rule them all",
"21457 string to rule them all",
"21458 string to rule them all",
"21459 string to rule them all",
"21460 string to rule them all",
"21461 string to rule them all",
"21462 string to rule them all",
"21463 string to rule them all",
"21464 string to rule them all",
"21465 string to rule them all",
"21466 string to rule them all",
"21467 string to rule them all",
"21468 string to rule them all",
"21469 string to rule them all",
"21470 string to rule them all",
"21471 string to rule them all",
"21472 string to rule them all",
"21473 string to rule them all",
"21474 string to rule them all",
"21475 string to rule them all",
"21476 string to rule them all",
"21477 string to rule them all",
"21478 string to rule them all",
"21479 string to rule them all",
"21480 string to rule them all",
"21481 string to rule them all",
"21482 string to rule them all",
"21483 string to rule them all",
"21484 string to rule them all",
"21485 string to rule them all",
"21486 string to rule them all",
"21487 string to rule them all",
"21488 string to rule them all",
"21489 string to rule them all",
"21490 string to rule them all",
"21491 string to rule them all",
"21492 string to rule them all",
"21493 string to rule them all",
"21494 string to rule them all",
"21495 string to rule them all",
"21496 string to rule them all",
"21497 string to rule them all",
"21498 string to rule them all",
"21499 string to rule them all",
"21500 string to rule them all",
"21501 string to rule them all",
"21502 string to rule them all",
"21503 string to rule them all",
"21504 string to rule them all",
"21505 string to rule them all",
"21506 string to rule them all",
"21507 string to rule them all",
"21508 string to rule them all",
"21509 string to rule them all",
"21510 string to rule them all",
"21511 string to rule them all",
"21512 string to rule them all",
"21513 string to rule them all",
"21514 string to rule them all",
"21515 string to rule them all",
"21516 string to rule them all",
"21517 string to rule them all",
"21518 string to rule them all",
"21519 string to rule them all",
"21520 string to rule them all",
"21521 string to rule them all",
"21522 string to rule them all",
"21523 string to rule them all",
"21524 string to rule them all",
"21525 string to rule them all",
"21526 string to rule them all",
"21527 string to rule them all",
"21528 string to rule them all",
"21529 string to rule them all",
"21530 string to rule them all",
"21531 string to rule them all",
"21532 string to rule them all",
"21533 string to rule them all",
"21534 string to rule them all",
"21535 string to rule them all",
"21536 string to rule them all",
"21537 string to rule them all",
"21538 string to rule them all",
"21539 string to rule them all",
"21540 string to rule them all",
"21541 string to rule them all",
"21542 string to rule them all",
"21543 string to rule them all",
"21544 string to rule them all",
"21545 string to rule them all",
"21546 string to rule them all",
"21547 string to rule them all",
"21548 string to rule them all",
"21549 string to rule them all",
"21550 string to rule them all",
"21551 string to rule them all",
"21552 string to rule them all",
"21553 string to rule them all",
"21554 string to rule them all",
"21555 string to rule them all",
"21556 string to rule them all",
"21557 string to rule them all",
"21558 string to rule them all",
"21559 string to rule them all",
"21560 string to rule them all",
"21561 string to rule them all",
"21562 string to rule them all",
"21563 string to rule them all",
"21564 string to rule them all",
"21565 string to rule them all",
"21566 string to rule them all",
"21567 string to rule them all",
"21568 string to rule them all",
"21569 string to rule them all",
"21570 string to rule them all",
"21571 string to rule them all",
"21572 string to rule them all",
"21573 string to rule them all",
"21574 string to rule them all",
"21575 string to rule them all",
"21576 string to rule them all",
"21577 string to rule them all",
"21578 string to rule them all",
"21579 string to rule them all",
"21580 string to rule them all",
"21581 string to rule them all",
"21582 string to rule them all",
"21583 string to rule them all",
"21584 string to rule them all",
"21585 string to rule them all",
"21586 string to rule them all",
"21587 string to rule them all",
"21588 string to rule them all",
"21589 string to rule them all",
"21590 string to rule them all",
"21591 string to rule them all",
"21592 string to rule them all",
"21593 string to rule them all",
"21594 string to rule them all",
"21595 string to rule them all",
"21596 string to rule them all",
"21597 string to rule them all",
"21598 string to rule them all",
"21599 string to rule them all",
"21600 string to rule them all",
"21601 string to rule them all",
"21602 string to rule them all",
"21603 string to rule them all",
"21604 string to rule them all",
"21605 string to rule them all",
"21606 string to rule them all",
"21607 string to rule them all",
"21608 string to rule them all",
"21609 string to rule them all",
"21610 string to rule them all",
"21611 string to rule them all",
"21612 string to rule them all",
"21613 string to rule them all",
"21614 string to rule them all",
"21615 string to rule them all",
"21616 string to rule them all",
"21617 string to rule them all",
"21618 string to rule them all",
"21619 string to rule them all",
"21620 string to rule them all",
"21621 string to rule them all",
"21622 string to rule them all",
"21623 string to rule them all",
"21624 string to rule them all",
"21625 string to rule them all",
"21626 string to rule them all",
"21627 string to rule them all",
"21628 string to rule them all",
"21629 string to rule them all",
"21630 string to rule them all",
"21631 string to rule them all",
"21632 string to rule them all",
"21633 string to rule them all",
"21634 string to rule them all",
"21635 string to rule them all",
"21636 string to rule them all",
"21637 string to rule them all",
"21638 string to rule them all",
"21639 string to rule them all",
"21640 string to rule them all",
"21641 string to rule them all",
"21642 string to rule them all",
"21643 string to rule them all",
"21644 string to rule them all",
"21645 string to rule them all",
"21646 string to rule them all",
"21647 string to rule them all",
"21648 string to rule them all",
"21649 string to rule them all",
"21650 string to rule them all",
"21651 string to rule them all",
"21652 string to rule them all",
"21653 string to rule them all",
"21654 string to rule them all",
"21655 string to rule them all",
"21656 string to rule them all",
"21657 string to rule them all",
"21658 string to rule them all",
"21659 string to rule them all",
"21660 string to rule them all",
"21661 string to rule them all",
"21662 string to rule them all",
"21663 string to rule them all",
"21664 string to rule them all",
"21665 string to rule them all",
"21666 string to rule them all",
"21667 string to rule them all",
"21668 string to rule them all",
"21669 string to rule them all",
"21670 string to rule them all",
"21671 string to rule them all",
"21672 string to rule them all",
"21673 string to rule them all",
"21674 string to rule them all",
"21675 string to rule them all",
"21676 string to rule them all",
"21677 string to rule them all",
"21678 string to rule them all",
"21679 string to rule them all",
"21680 string to rule them all",
"21681 string to rule them all",
"21682 string to rule them all",
"21683 string to rule them all",
"21684 string to rule them all",
"21685 string to rule them all",
"21686 string to rule them all",
"21687 string to rule them all",
"21688 string to rule them all",
"21689 string to rule them all",
"21690 string to rule them all",
"21691 string to rule them all",
"21692 string to rule them all",
"21693 string to rule them all",
"21694 string to rule them all",
"21695 string to rule them all",
"21696 string to rule them all",
"21697 string to rule them all",
"21698 string to rule them all",
"21699 string to rule them all",
"21700 string to rule them all",
"21701 string to rule them all",
"21702 string to rule them all",
"21703 string to rule them all",
"21704 string to rule them all",
"21705 string to rule them all",
"21706 string to rule them all",
"21707 string to rule them all",
"21708 string to rule them all",
"21709 string to rule them all",
"21710 string to rule them all",
"21711 string to rule them all",
"21712 string to rule them all",
"21713 string to rule them all",
"21714 string to rule them all",
"21715 string to rule them all",
"21716 string to rule them all",
"21717 string to rule them all",
"21718 string to rule them all",
"21719 string to rule them all",
"21720 string to rule them all",
"21721 string to rule them all",
"21722 string to rule them all",
"21723 string to rule them all",
"21724 string to rule them all",
"21725 string to rule them all",
"21726 string to rule them all",
"21727 string to rule them all",
"21728 string to rule them all",
"21729 string to rule them all",
"21730 string to rule them all",
"21731 string to rule them all",
"21732 string to rule them all",
"21733 string to rule them all",
"21734 string to rule them all",
"21735 string to rule them all",
"21736 string to rule them all",
"21737 string to rule them all",
"21738 string to rule them all",
"21739 string to rule them all",
"21740 string to rule them all",
"21741 string to rule them all",
"21742 string to rule them all",
"21743 string to rule them all",
"21744 string to rule them all",
"21745 string to rule them all",
"21746 string to rule them all",
"21747 string to rule them all",
"21748 string to rule them all",
"21749 string to rule them all",
"21750 string to rule them all",
"21751 string to rule them all",
"21752 string to rule them all",
"21753 string to rule them all",
"21754 string to rule them all",
"21755 string to rule them all",
"21756 string to rule them all",
"21757 string to rule them all",
"21758 string to rule them all",
"21759 string to rule them all",
"21760 string to rule them all",
"21761 string to rule them all",
"21762 string to rule them all",
"21763 string to rule them all",
"21764 string to rule them all",
"21765 string to rule them all",
"21766 string to rule them all",
"21767 string to rule them all",
"21768 string to rule them all",
"21769 string to rule them all",
"21770 string to rule them all",
"21771 string to rule them all",
"21772 string to rule them all",
"21773 string to rule them all",
"21774 string to rule them all",
"21775 string to rule them all",
"21776 string to rule them all",
"21777 string to rule them all",
"21778 string to rule them all",
"21779 string to rule them all",
"21780 string to rule them all",
"21781 string to rule them all",
"21782 string to rule them all",
"21783 string to rule them all",
"21784 string to rule them all",
"21785 string to rule them all",
"21786 string to rule them all",
"21787 string to rule them all",
"21788 string to rule them all",
"21789 string to rule them all",
"21790 string to rule them all",
"21791 string to rule them all",
"21792 string to rule them all",
"21793 string to rule them all",
"21794 string to rule them all",
"21795 string to rule them all",
"21796 string to rule them all",
"21797 string to rule them all",
"21798 string to rule them all",
"21799 string to rule them all",
"21800 string to rule them all",
"21801 string to rule them all",
"21802 string to rule them all",
"21803 string to rule them all",
"21804 string to rule them all",
"21805 string to rule them all",
"21806 string to rule them all",
"21807 string to rule them all",
"21808 string to rule them all",
"21809 string to rule them all",
"21810 string to rule them all",
"21811 string to rule them all",
"21812 string to rule them all",
"21813 string to rule them all",
"21814 string to rule them all",
"21815 string to rule them all",
"21816 string to rule them all",
"21817 string to rule them all",
"21818 string to rule them all",
"21819 string to rule them all",
"21820 string to rule them all",
"21821 string to rule them all",
"21822 string to rule them all",
"21823 string to rule them all",
"21824 string to rule them all",
"21825 string to rule them all",
"21826 string to rule them all",
"21827 string to rule them all",
"21828 string to rule them all",
"21829 string to rule them all",
"21830 string to rule them all",
"21831 string to rule them all",
"21832 string to rule them all",
"21833 string to rule them all",
"21834 string to rule them all",
"21835 string to rule them all",
"21836 string to rule them all",
"21837 string to rule them all",
"21838 string to rule them all",
"21839 string to rule them all",
"21840 string to rule them all",
"21841 string to rule them all",
"21842 string to rule them all",
"21843 string to rule them all",
"21844 string to rule them all",
"21845 string to rule them all",
"21846 string to rule them all",
"21847 string to rule them all",
"21848 string to rule them all",
"21849 string to rule them all",
"21850 string to rule them all",
"21851 string to rule them all",
"21852 string to rule them all",
"21853 string to rule them all",
"21854 string to rule them all",
"21855 string to rule them all",
"21856 string to rule them all",
"21857 string to rule them all",
"21858 string to rule them all",
"21859 string to rule them all",
"21860 string to rule them all",
"21861 string to rule them all",
"21862 string to rule them all",
"21863 string to rule them all",
"21864 string to rule them all",
"21865 string to rule them all",
"21866 string to rule them all",
"21867 string to rule them all",
"21868 string to rule them all",
"21869 string to rule them all",
"21870 string to rule them all",
"21871 string to rule them all",
"21872 string to rule them all",
"21873 string to rule them all",
"21874 string to rule them all",
"21875 string to rule them all",
"21876 string to rule them all",
"21877 string to rule them all",
"21878 string to rule them all",
"21879 string to rule them all",
"21880 string to rule them all",
"21881 string to rule them all",
"21882 string to rule them all",
"21883 string to rule them all",
"21884 string to rule them all",
"21885 string to rule them all",
"21886 string to rule them all",
"21887 string to rule them all",
"21888 string to rule them all",
"21889 string to rule them all",
"21890 string to rule them all",
"21891 string to rule them all",
"21892 string to rule them all",
"21893 string to rule them all",
"21894 string to rule them all",
"21895 string to rule them all",
"21896 string to rule them all",
"21897 string to rule them all",
"21898 string to rule them all",
"21899 string to rule them all",
"21900 string to rule them all",
"21901 string to rule them all",
"21902 string to rule them all",
"21903 string to rule them all",
"21904 string to rule them all",
"21905 string to rule them all",
"21906 string to rule them all",
"21907 string to rule them all",
"21908 string to rule them all",
"21909 string to rule them all",
"21910 string to rule them all",
"21911 string to rule them all",
"21912 string to rule them all",
"21913 string to rule them all",
"21914 string to rule them all",
"21915 string to rule them all",
"21916 string to rule them all",
"21917 string to rule them all",
"21918 string to rule them all",
"21919 string to rule them all",
"21920 string to rule them all",
"21921 string to rule them all",
"21922 string to rule them all",
"21923 string to rule them all",
"21924 string to rule them all",
"21925 string to rule them all",
"21926 string to rule them all",
"21927 string to rule them all",
"21928 string to rule them all",
"21929 string to rule them all",
"21930 string to rule them all",
"21931 string to rule them all",
"21932 string to rule them all",
"21933 string to rule them all",
"21934 string to rule them all",
"21935 string to rule them all",
"21936 string to rule them all",
"21937 string to rule them all",
"21938 string to rule them all",
"21939 string to rule them all",
"21940 string to rule them all",
"21941 string to rule them all",
"21942 string to rule them all",
"21943 string to rule them all",
"21944 string to rule them all",
"21945 string to rule them all",
"21946 string to rule them all",
"21947 string to rule them all",
"21948 string to rule them all",
"21949 string to rule them all",
"21950 string to rule them all",
"21951 string to rule them all",
"21952 string to rule them all",
"21953 string to rule them all",
"21954 string to rule them all",
"21955 string to rule them all",
"21956 string to rule them all",
"21957 string to rule them all",
"21958 string to rule them all",
"21959 string to rule them all",
"21960 string to rule them all",
"21961 string to rule them all",
"21962 string to rule them all",
"21963 string to rule them all",
"21964 string to rule them all",
"21965 string to rule them all",
"21966 string to rule them all",
"21967 string to rule them all",
"21968 string to rule them all",
"21969 string to rule them all",
"21970 string to rule them all",
"21971 string to rule them all",
"21972 string to rule them all",
"21973 string to rule them all",
"21974 string to rule them all",
"21975 string to rule them all",
"21976 string to rule them all",
"21977 string to rule them all",
"21978 string to rule them all",
"21979 string to rule them all",
"21980 string to rule them all",
"21981 string to rule them all",
"21982 string to rule them all",
"21983 string to rule them all",
"21984 string to rule them all",
"21985 string to rule them all",
"21986 string to rule them all",
"21987 string to rule them all",
"21988 string to rule them all",
"21989 string to rule them all",
"21990 string to rule them all",
"21991 string to rule them all",
"21992 string to rule them all",
"21993 string to rule them all",
"21994 string to rule them all",
"21995 string to rule them all",
"21996 string to rule them all",
"21997 string to rule them all",
"21998 string to rule them all",
"21999 string to rule them all",
"22000 string to rule them all",
"22001 string to rule them all",
"22002 string to rule them all",
"22003 string to rule them all",
"22004 string to rule them all",
"22005 string to rule them all",
"22006 string to rule them all",
"22007 string to rule them all",
"22008 string to rule them all",
"22009 string to rule them all",
"22010 string to rule them all",
"22011 string to rule them all",
"22012 string to rule them all",
"22013 string to rule them all",
"22014 string to rule them all",
"22015 string to rule them all",
"22016 string to rule them all",
"22017 string to rule them all",
"22018 string to rule them all",
"22019 string to rule them all",
"22020 string to rule them all",
"22021 string to rule them all",
"22022 string to rule them all",
"22023 string to rule them all",
"22024 string to rule them all",
"22025 string to rule them all",
"22026 string to rule them all",
"22027 string to rule them all",
"22028 string to rule them all",
"22029 string to rule them all",
"22030 string to rule them all",
"22031 string to rule them all",
"22032 string to rule them all",
"22033 string to rule them all",
"22034 string to rule them all",
"22035 string to rule them all",
"22036 string to rule them all",
"22037 string to rule them all",
"22038 string to rule them all",
"22039 string to rule them all",
"22040 string to rule them all",
"22041 string to rule them all",
"22042 string to rule them all",
"22043 string to rule them all",
"22044 string to rule them all",
"22045 string to rule them all",
"22046 string to rule them all",
"22047 string to rule them all",
"22048 string to rule them all",
"22049 string to rule them all",
"22050 string to rule them all",
"22051 string to rule them all",
"22052 string to rule them all",
"22053 string to rule them all",
"22054 string to rule them all",
"22055 string to rule them all",
"22056 string to rule them all",
"22057 string to rule them all",
"22058 string to rule them all",
"22059 string to rule them all",
"22060 string to rule them all",
"22061 string to rule them all",
"22062 string to rule them all",
"22063 string to rule them all",
"22064 string to rule them all",
"22065 string to rule them all",
"22066 string to rule them all",
"22067 string to rule them all",
"22068 string to rule them all",
"22069 string to rule them all",
"22070 string to rule them all",
"22071 string to rule them all",
"22072 string to rule them all",
"22073 string to rule them all",
"22074 string to rule them all",
"22075 string to rule them all",
"22076 string to rule them all",
"22077 string to rule them all",
"22078 string to rule them all",
"22079 string to rule them all",
"22080 string to rule them all",
"22081 string to rule them all",
"22082 string to rule them all",
"22083 string to rule them all",
"22084 string to rule them all",
"22085 string to rule them all",
"22086 string to rule them all",
"22087 string to rule them all",
"22088 string to rule them all",
"22089 string to rule them all",
"22090 string to rule them all",
"22091 string to rule them all",
"22092 string to rule them all",
"22093 string to rule them all",
"22094 string to rule them all",
"22095 string to rule them all",
"22096 string to rule them all",
"22097 string to rule them all",
"22098 string to rule them all",
"22099 string to rule them all",
"22100 string to rule them all",
"22101 string to rule them all",
"22102 string to rule them all",
"22103 string to rule them all",
"22104 string to rule them all",
"22105 string to rule them all",
"22106 string to rule them all",
"22107 string to rule them all",
"22108 string to rule them all",
"22109 string to rule them all",
"22110 string to rule them all",
"22111 string to rule them all",
"22112 string to rule them all",
"22113 string to rule them all",
"22114 string to rule them all",
"22115 string to rule them all",
"22116 string to rule them all",
"22117 string to rule them all",
"22118 string to rule them all",
"22119 string to rule them all",
"22120 string to rule them all",
"22121 string to rule them all",
"22122 string to rule them all",
"22123 string to rule them all",
"22124 string to rule them all",
"22125 string to rule them all",
"22126 string to rule them all",
"22127 string to rule them all",
"22128 string to rule them all",
"22129 string to rule them all",
"22130 string to rule them all",
"22131 string to rule them all",
"22132 string to rule them all",
"22133 string to rule them all",
"22134 string to rule them all",
"22135 string to rule them all",
"22136 string to rule them all",
"22137 string to rule them all",
"22138 string to rule them all",
"22139 string to rule them all",
"22140 string to rule them all",
"22141 string to rule them all",
"22142 string to rule them all",
"22143 string to rule them all",
"22144 string to rule them all",
"22145 string to rule them all",
"22146 string to rule them all",
"22147 string to rule them all",
"22148 string to rule them all",
"22149 string to rule them all",
"22150 string to rule them all",
"22151 string to rule them all",
"22152 string to rule them all",
"22153 string to rule them all",
"22154 string to rule them all",
"22155 string to rule them all",
"22156 string to rule them all",
"22157 string to rule them all",
"22158 string to rule them all",
"22159 string to rule them all",
"22160 string to rule them all",
"22161 string to rule them all",
"22162 string to rule them all",
"22163 string to rule them all",
"22164 string to rule them all",
"22165 string to rule them all",
"22166 string to rule them all",
"22167 string to rule them all",
"22168 string to rule them all",
"22169 string to rule them all",
"22170 string to rule them all",
"22171 string to rule them all",
"22172 string to rule them all",
"22173 string to rule them all",
"22174 string to rule them all",
"22175 string to rule them all",
"22176 string to rule them all",
"22177 string to rule them all",
"22178 string to rule them all",
"22179 string to rule them all",
"22180 string to rule them all",
"22181 string to rule them all",
"22182 string to rule them all",
"22183 string to rule them all",
"22184 string to rule them all",
"22185 string to rule them all",
"22186 string to rule them all",
"22187 string to rule them all",
"22188 string to rule them all",
"22189 string to rule them all",
"22190 string to rule them all",
"22191 string to rule them all",
"22192 string to rule them all",
"22193 string to rule them all",
"22194 string to rule them all",
"22195 string to rule them all",
"22196 string to rule them all",
"22197 string to rule them all",
"22198 string to rule them all",
"22199 string to rule them all",
"22200 string to rule them all",
"22201 string to rule them all",
"22202 string to rule them all",
"22203 string to rule them all",
"22204 string to rule them all",
"22205 string to rule them all",
"22206 string to rule them all",
"22207 string to rule them all",
"22208 string to rule them all",
"22209 string to rule them all",
"22210 string to rule them all",
"22211 string to rule them all",
"22212 string to rule them all",
"22213 string to rule them all",
"22214 string to rule them all",
"22215 string to rule them all",
"22216 string to rule them all",
"22217 string to rule them all",
"22218 string to rule them all",
"22219 string to rule them all",
"22220 string to rule them all",
"22221 string to rule them all",
"22222 string to rule them all",
"22223 string to rule them all",
"22224 string to rule them all",
"22225 string to rule them all",
"22226 string to rule them all",
"22227 string to rule them all",
"22228 string to rule them all",
"22229 string to rule them all",
"22230 string to rule them all",
"22231 string to rule them all",
"22232 string to rule them all",
"22233 string to rule them all",
"22234 string to rule them all",
"22235 string to rule them all",
"22236 string to rule them all",
"22237 string to rule them all",
"22238 string to rule them all",
"22239 string to rule them all",
"22240 string to rule them all",
"22241 string to rule them all",
"22242 string to rule them all",
"22243 string to rule them all",
"22244 string to rule them all",
"22245 string to rule them all",
"22246 string to rule them all",
"22247 string to rule them all",
"22248 string to rule them all",
"22249 string to rule them all",
"22250 string to rule them all",
"22251 string to rule them all",
"22252 string to rule them all",
"22253 string to rule them all",
"22254 string to rule them all",
"22255 string to rule them all",
"22256 string to rule them all",
"22257 string to rule them all",
"22258 string to rule them all",
"22259 string to rule them all",
"22260 string to rule them all",
"22261 string to rule them all",
"22262 string to rule them all",
"22263 string to rule them all",
"22264 string to rule them all",
"22265 string to rule them all",
"22266 string to rule them all",
"22267 string to rule them all",
"22268 string to rule them all",
"22269 string to rule them all",
"22270 string to rule them all",
"22271 string to rule them all",
"22272 string to rule them all",
"22273 string to rule them all",
"22274 string to rule them all",
"22275 string to rule them all",
"22276 string to rule them all",
"22277 string to rule them all",
"22278 string to rule them all",
"22279 string to rule them all",
"22280 string to rule them all",
"22281 string to rule them all",
"22282 string to rule them all",
"22283 string to rule them all",
"22284 string to rule them all",
"22285 string to rule them all",
"22286 string to rule them all",
"22287 string to rule them all",
"22288 string to rule them all",
"22289 string to rule them all",
"22290 string to rule them all",
"22291 string to rule them all",
"22292 string to rule them all",
"22293 string to rule them all",
"22294 string to rule them all",
"22295 string to rule them all",
"22296 string to rule them all",
"22297 string to rule them all",
"22298 string to rule them all",
"22299 string to rule them all",
"22300 string to rule them all",
"22301 string to rule them all",
"22302 string to rule them all",
"22303 string to rule them all",
"22304 string to rule them all",
"22305 string to rule them all",
"22306 string to rule them all",
"22307 string to rule them all",
"22308 string to rule them all",
"22309 string to rule them all",
"22310 string to rule them all",
"22311 string to rule them all",
"22312 string to rule them all",
"22313 string to rule them all",
"22314 string to rule them all",
"22315 string to rule them all",
"22316 string to rule them all",
"22317 string to rule them all",
"22318 string to rule them all",
"22319 string to rule them all",
"22320 string to rule them all",
"22321 string to rule them all",
"22322 string to rule them all",
"22323 string to rule them all",
"22324 string to rule them all",
"22325 string to rule them all",
"22326 string to rule them all",
"22327 string to rule them all",
"22328 string to rule them all",
"22329 string to rule them all",
"22330 string to rule them all",
"22331 string to rule them all",
"22332 string to rule them all",
"22333 string to rule them all",
"22334 string to rule them all",
"22335 string to rule them all",
"22336 string to rule them all",
"22337 string to rule them all",
"22338 string to rule them all",
"22339 string to rule them all",
"22340 string to rule them all",
"22341 string to rule them all",
"22342 string to rule them all",
"22343 string to rule them all",
"22344 string to rule them all",
"22345 string to rule them all",
"22346 string to rule them all",
"22347 string to rule them all",
"22348 string to rule them all",
"22349 string to rule them all",
"22350 string to rule them all",
"22351 string to rule them all",
"22352 string to rule them all",
"22353 string to rule them all",
"22354 string to rule them all",
"22355 string to rule them all",
"22356 string to rule them all",
"22357 string to rule them all",
"22358 string to rule them all",
"22359 string to rule them all",
"22360 string to rule them all",
"22361 string to rule them all",
"22362 string to rule them all",
"22363 string to rule them all",
"22364 string to rule them all",
"22365 string to rule them all",
"22366 string to rule them all",
"22367 string to rule them all",
"22368 string to rule them all",
"22369 string to rule them all",
"22370 string to rule them all",
"22371 string to rule them all",
"22372 string to rule them all",
"22373 string to rule them all",
"22374 string to rule them all",
"22375 string to rule them all",
"22376 string to rule them all",
"22377 string to rule them all",
"22378 string to rule them all",
"22379 string to rule them all",
"22380 string to rule them all",
"22381 string to rule them all",
"22382 string to rule them all",
"22383 string to rule them all",
"22384 string to rule them all",
"22385 string to rule them all",
"22386 string to rule them all",
"22387 string to rule them all",
"22388 string to rule them all",
"22389 string to rule them all",
"22390 string to rule them all",
"22391 string to rule them all",
"22392 string to rule them all",
"22393 string to rule them all",
"22394 string to rule them all",
"22395 string to rule them all",
"22396 string to rule them all",
"22397 string to rule them all",
"22398 string to rule them all",
"22399 string to rule them all",
"22400 string to rule them all",
"22401 string to rule them all",
"22402 string to rule them all",
"22403 string to rule them all",
"22404 string to rule them all",
"22405 string to rule them all",
"22406 string to rule them all",
"22407 string to rule them all",
"22408 string to rule them all",
"22409 string to rule them all",
"22410 string to rule them all",
"22411 string to rule them all",
"22412 string to rule them all",
"22413 string to rule them all",
"22414 string to rule them all",
"22415 string to rule them all",
"22416 string to rule them all",
"22417 string to rule them all",
"22418 string to rule them all",
"22419 string to rule them all",
"22420 string to rule them all",
"22421 string to rule them all",
"22422 string to rule them all",
"22423 string to rule them all",
"22424 string to rule them all",
"22425 string to rule them all",
"22426 string to rule them all",
"22427 string to rule them all",
"22428 string to rule them all",
"22429 string to rule them all",
"22430 string to rule them all",
"22431 string to rule them all",
"22432 string to rule them all",
"22433 string to rule them all",
"22434 string to rule them all",
"22435 string to rule them all",
"22436 string to rule them all",
"22437 string to rule them all",
"22438 string to rule them all",
"22439 string to rule them all",
"22440 string to rule them all",
"22441 string to rule them all",
"22442 string to rule them all",
"22443 string to rule them all",
"22444 string to rule them all",
"22445 string to rule them all",
"22446 string to rule them all",
"22447 string to rule them all",
"22448 string to rule them all",
"22449 string to rule them all",
"22450 string to rule them all",
"22451 string to rule them all",
"22452 string to rule them all",
"22453 string to rule them all",
"22454 string to rule them all",
"22455 string to rule them all",
"22456 string to rule them all",
"22457 string to rule them all",
"22458 string to rule them all",
"22459 string to rule them all",
"22460 string to rule them all",
"22461 string to rule them all",
"22462 string to rule them all",
"22463 string to rule them all",
"22464 string to rule them all",
"22465 string to rule them all",
"22466 string to rule them all",
"22467 string to rule them all",
"22468 string to rule them all",
"22469 string to rule them all",
"22470 string to rule them all",
"22471 string to rule them all",
"22472 string to rule them all",
"22473 string to rule them all",
"22474 string to rule them all",
"22475 string to rule them all",
"22476 string to rule them all",
"22477 string to rule them all",
"22478 string to rule them all",
"22479 string to rule them all",
"22480 string to rule them all",
"22481 string to rule them all",
"22482 string to rule them all",
"22483 string to rule them all",
"22484 string to rule them all",
"22485 string to rule them all",
"22486 string to rule them all",
"22487 string to rule them all",
"22488 string to rule them all",
"22489 string to rule them all",
"22490 string to rule them all",
"22491 string to rule them all",
"22492 string to rule them all",
"22493 string to rule them all",
"22494 string to rule them all",
"22495 string to rule them all",
"22496 string to rule them all",
"22497 string to rule them all",
"22498 string to rule them all",
"22499 string to rule them all",
"22500 string to rule them all",
"22501 string to rule them all",
"22502 string to rule them all",
"22503 string to rule them all",
"22504 string to rule them all",
"22505 string to rule them all",
"22506 string to rule them all",
"22507 string to rule them all",
"22508 string to rule them all",
"22509 string to rule them all",
"22510 string to rule them all",
"22511 string to rule them all",
"22512 string to rule them all",
"22513 string to rule them all",
"22514 string to rule them all",
"22515 string to rule them all",
"22516 string to rule them all",
"22517 string to rule them all",
"22518 string to rule them all",
"22519 string to rule them all",
"22520 string to rule them all",
"22521 string to rule them all",
"22522 string to rule them all",
"22523 string to rule them all",
"22524 string to rule them all",
"22525 string to rule them all",
"22526 string to rule them all",
"22527 string to rule them all",
"22528 string to rule them all",
"22529 string to rule them all",
"22530 string to rule them all",
"22531 string to rule them all",
"22532 string to rule them all",
"22533 string to rule them all",
"22534 string to rule them all",
"22535 string to rule them all",
"22536 string to rule them all",
"22537 string to rule them all",
"22538 string to rule them all",
"22539 string to rule them all",
"22540 string to rule them all",
"22541 string to rule them all",
"22542 string to rule them all",
"22543 string to rule them all",
"22544 string to rule them all",
"22545 string to rule them all",
"22546 string to rule them all",
"22547 string to rule them all",
"22548 string to rule them all",
"22549 string to rule them all",
"22550 string to rule them all",
"22551 string to rule them all",
"22552 string to rule them all",
"22553 string to rule them all",
"22554 string to rule them all",
"22555 string to rule them all",
"22556 string to rule them all",
"22557 string to rule them all",
"22558 string to rule them all",
"22559 string to rule them all",
"22560 string to rule them all",
"22561 string to rule them all",
"22562 string to rule them all",
"22563 string to rule them all",
"22564 string to rule them all",
"22565 string to rule them all",
"22566 string to rule them all",
"22567 string to rule them all",
"22568 string to rule them all",
"22569 string to rule them all",
"22570 string to rule them all",
"22571 string to rule them all",
"22572 string to rule them all",
"22573 string to rule them all",
"22574 string to rule them all",
"22575 string to rule them all",
"22576 string to rule them all",
"22577 string to rule them all",
"22578 string to rule them all",
"22579 string to rule them all",
"22580 string to rule them all",
"22581 string to rule them all",
"22582 string to rule them all",
"22583 string to rule them all",
"22584 string to rule them all",
"22585 string to rule them all",
"22586 string to rule them all",
"22587 string to rule them all",
"22588 string to rule them all",
"22589 string to rule them all",
"22590 string to rule them all",
"22591 string to rule them all",
"22592 string to rule them all",
"22593 string to rule them all",
"22594 string to rule them all",
"22595 string to rule them all",
"22596 string to rule them all",
"22597 string to rule them all",
"22598 string to rule them all",
"22599 string to rule them all",
"22600 string to rule them all",
"22601 string to rule them all",
"22602 string to rule them all",
"22603 string to rule them all",
"22604 string to rule them all",
"22605 string to rule them all",
"22606 string to rule them all",
"22607 string to rule them all",
"22608 string to rule them all",
"22609 string to rule them all",
"22610 string to rule them all",
"22611 string to rule them all",
"22612 string to rule them all",
"22613 string to rule them all",
"22614 string to rule them all",
"22615 string to rule them all",
"22616 string to rule them all",
"22617 string to rule them all",
"22618 string to rule them all",
"22619 string to rule them all",
"22620 string to rule them all",
"22621 string to rule them all",
"22622 string to rule them all",
"22623 string to rule them all",
"22624 string to rule them all",
"22625 string to rule them all",
"22626 string to rule them all",
"22627 string to rule them all",
"22628 string to rule them all",
"22629 string to rule them all",
"22630 string to rule them all",
"22631 string to rule them all",
"22632 string to rule them all",
"22633 string to rule them all",
"22634 string to rule them all",
"22635 string to rule them all",
"22636 string to rule them all",
"22637 string to rule them all",
"22638 string to rule them all",
"22639 string to rule them all",
"22640 string to rule them all",
"22641 string to rule them all",
"22642 string to rule them all",
"22643 string to rule them all",
"22644 string to rule them all",
"22645 string to rule them all",
"22646 string to rule them all",
"22647 string to rule them all",
"22648 string to rule them all",
"22649 string to rule them all",
"22650 string to rule them all",
"22651 string to rule them all",
"22652 string to rule them all",
"22653 string to rule them all",
"22654 string to rule them all",
"22655 string to rule them all",
"22656 string to rule them all",
"22657 string to rule them all",
"22658 string to rule them all",
"22659 string to rule them all",
"22660 string to rule them all",
"22661 string to rule them all",
"22662 string to rule them all",
"22663 string to rule them all",
"22664 string to rule them all",
"22665 string to rule them all",
"22666 string to rule them all",
"22667 string to rule them all",
"22668 string to rule them all",
"22669 string to rule them all",
"22670 string to rule them all",
"22671 string to rule them all",
"22672 string to rule them all",
"22673 string to rule them all",
"22674 string to rule them all",
"22675 string to rule them all",
"22676 string to rule them all",
"22677 string to rule them all",
"22678 string to rule them all",
"22679 string to rule them all",
"22680 string to rule them all",
"22681 string to rule them all",
"22682 string to rule them all",
"22683 string to rule them all",
"22684 string to rule them all",
"22685 string to rule them all",
"22686 string to rule them all",
"22687 string to rule them all",
"22688 string to rule them all",
"22689 string to rule them all",
"22690 string to rule them all",
"22691 string to rule them all",
"22692 string to rule them all",
"22693 string to rule them all",
"22694 string to rule them all",
"22695 string to rule them all",
"22696 string to rule them all",
"22697 string to rule them all",
"22698 string to rule them all",
"22699 string to rule them all",
"22700 string to rule them all",
"22701 string to rule them all",
"22702 string to rule them all",
"22703 string to rule them all",
"22704 string to rule them all",
"22705 string to rule them all",
"22706 string to rule them all",
"22707 string to rule them all",
"22708 string to rule them all",
"22709 string to rule them all",
"22710 string to rule them all",
"22711 string to rule them all",
"22712 string to rule them all",
"22713 string to rule them all",
"22714 string to rule them all",
"22715 string to rule them all",
"22716 string to rule them all",
"22717 string to rule them all",
"22718 string to rule them all",
"22719 string to rule them all",
"22720 string to rule them all",
"22721 string to rule them all",
"22722 string to rule them all",
"22723 string to rule them all",
"22724 string to rule them all",
"22725 string to rule them all",
"22726 string to rule them all",
"22727 string to rule them all",
"22728 string to rule them all",
"22729 string to rule them all",
"22730 string to rule them all",
"22731 string to rule them all",
"22732 string to rule them all",
"22733 string to rule them all",
"22734 string to rule them all",
"22735 string to rule them all",
"22736 string to rule them all",
"22737 string to rule them all",
"22738 string to rule them all",
"22739 string to rule them all",
"22740 string to rule them all",
"22741 string to rule them all",
"22742 string to rule them all",
"22743 string to rule them all",
"22744 string to rule them all",
"22745 string to rule them all",
"22746 string to rule them all",
"22747 string to rule them all",
"22748 string to rule them all",
"22749 string to rule them all",
"22750 string to rule them all",
"22751 string to rule them all",
"22752 string to rule them all",
"22753 string to rule them all",
"22754 string to rule them all",
"22755 string to rule them all",
"22756 string to rule them all",
"22757 string to rule them all",
"22758 string to rule them all",
"22759 string to rule them all",
"22760 string to rule them all",
"22761 string to rule them all",
"22762 string to rule them all",
"22763 string to rule them all",
"22764 string to rule them all",
"22765 string to rule them all",
"22766 string to rule them all",
"22767 string to rule them all",
"22768 string to rule them all",
"22769 string to rule them all",
"22770 string to rule them all",
"22771 string to rule them all",
"22772 string to rule them all",
"22773 string to rule them all",
"22774 string to rule them all",
"22775 string to rule them all",
"22776 string to rule them all",
"22777 string to rule them all",
"22778 string to rule them all",
"22779 string to rule them all",
"22780 string to rule them all",
"22781 string to rule them all",
"22782 string to rule them all",
"22783 string to rule them all",
"22784 string to rule them all",
"22785 string to rule them all",
"22786 string to rule them all",
"22787 string to rule them all",
"22788 string to rule them all",
"22789 string to rule them all",
"22790 string to rule them all",
"22791 string to rule them all",
"22792 string to rule them all",
"22793 string to rule them all",
"22794 string to rule them all",
"22795 string to rule them all",
"22796 string to rule them all",
"22797 string to rule them all",
"22798 string to rule them all",
"22799 string to rule them all",
"22800 string to rule them all",
"22801 string to rule them all",
"22802 string to rule them all",
"22803 string to rule them all",
"22804 string to rule them all",
"22805 string to rule them all",
"22806 string to rule them all",
"22807 string to rule them all",
"22808 string to rule them all",
"22809 string to rule them all",
"22810 string to rule them all",
"22811 string to rule them all",
"22812 string to rule them all",
"22813 string to rule them all",
"22814 string to rule them all",
"22815 string to rule them all",
"22816 string to rule them all",
"22817 string to rule them all",
"22818 string to rule them all",
"22819 string to rule them all",
"22820 string to rule them all",
"22821 string to rule them all",
"22822 string to rule them all",
"22823 string to rule them all",
"22824 string to rule them all",
"22825 string to rule them all",
"22826 string to rule them all",
"22827 string to rule them all",
"22828 string to rule them all",
"22829 string to rule them all",
"22830 string to rule them all",
"22831 string to rule them all",
"22832 string to rule them all",
"22833 string to rule them all",
"22834 string to rule them all",
"22835 string to rule them all",
"22836 string to rule them all",
"22837 string to rule them all",
"22838 string to rule them all",
"22839 string to rule them all",
"22840 string to rule them all",
"22841 string to rule them all",
"22842 string to rule them all",
"22843 string to rule them all",
"22844 string to rule them all",
"22845 string to rule them all",
"22846 string to rule them all",
"22847 string to rule them all",
"22848 string to rule them all",
"22849 string to rule them all",
"22850 string to rule them all",
"22851 string to rule them all",
"22852 string to rule them all",
"22853 string to rule them all",
"22854 string to rule them all",
"22855 string to rule them all",
"22856 string to rule them all",
"22857 string to rule them all",
"22858 string to rule them all",
"22859 string to rule them all",
"22860 string to rule them all",
"22861 string to rule them all",
"22862 string to rule them all",
"22863 string to rule them all",
"22864 string to rule them all",
"22865 string to rule them all",
"22866 string to rule them all",
"22867 string to rule them all",
"22868 string to rule them all",
"22869 string to rule them all",
"22870 string to rule them all",
"22871 string to rule them all",
"22872 string to rule them all",
"22873 string to rule them all",
"22874 string to rule them all",
"22875 string to rule them all",
"22876 string to rule them all",
"22877 string to rule them all",
"22878 string to rule them all",
"22879 string to rule them all",
"22880 string to rule them all",
"22881 string to rule them all",
"22882 string to rule them all",
"22883 string to rule them all",
"22884 string to rule them all",
"22885 string to rule them all",
"22886 string to rule them all",
"22887 string to rule them all",
"22888 string to rule them all",
"22889 string to rule them all",
"22890 string to rule them all",
"22891 string to rule them all",
"22892 string to rule them all",
"22893 string to rule them all",
"22894 string to rule them all",
"22895 string to rule them all",
"22896 string to rule them all",
"22897 string to rule them all",
"22898 string to rule them all",
"22899 string to rule them all",
"22900 string to rule them all",
"22901 string to rule them all",
"22902 string to rule them all",
"22903 string to rule them all",
"22904 string to rule them all",
"22905 string to rule them all",
"22906 string to rule them all",
"22907 string to rule them all",
"22908 string to rule them all",
"22909 string to rule them all",
"22910 string to rule them all",
"22911 string to rule them all",
"22912 string to rule them all",
"22913 string to rule them all",
"22914 string to rule them all",
"22915 string to rule them all",
"22916 string to rule them all",
"22917 string to rule them all",
"22918 string to rule them all",
"22919 string to rule them all",
"22920 string to rule them all",
"22921 string to rule them all",
"22922 string to rule them all",
"22923 string to rule them all",
"22924 string to rule them all",
"22925 string to rule them all",
"22926 string to rule them all",
"22927 string to rule them all",
"22928 string to rule them all",
"22929 string to rule them all",
"22930 string to rule them all",
"22931 string to rule them all",
"22932 string to rule them all",
"22933 string to rule them all",
"22934 string to rule them all",
"22935 string to rule them all",
"22936 string to rule them all",
"22937 string to rule them all",
"22938 string to rule them all",
"22939 string to rule them all",
"22940 string to rule them all",
"22941 string to rule them all",
"22942 string to rule them all",
"22943 string to rule them all",
"22944 string to rule them all",
"22945 string to rule them all",
"22946 string to rule them all",
"22947 string to rule them all",
"22948 string to rule them all",
"22949 string to rule them all",
"22950 string to rule them all",
"22951 string to rule them all",
"22952 string to rule them all",
"22953 string to rule them all",
"22954 string to rule them all",
"22955 string to rule them all",
"22956 string to rule them all",
"22957 string to rule them all",
"22958 string to rule them all",
"22959 string to rule them all",
"22960 string to rule them all",
"22961 string to rule them all",
"22962 string to rule them all",
"22963 string to rule them all",
"22964 string to rule them all",
"22965 string to rule them all",
"22966 string to rule them all",
"22967 string to rule them all",
"22968 string to rule them all",
"22969 string to rule them all",
"22970 string to rule them all",
"22971 string to rule them all",
"22972 string to rule them all",
"22973 string to rule them all",
"22974 string to rule them all",
"22975 string to rule them all",
"22976 string to rule them all",
"22977 string to rule them all",
"22978 string to rule them all",
"22979 string to rule them all",
"22980 string to rule them all",
"22981 string to rule them all",
"22982 string to rule them all",
"22983 string to rule them all",
"22984 string to rule them all",
"22985 string to rule them all",
"22986 string to rule them all",
"22987 string to rule them all",
"22988 string to rule them all",
"22989 string to rule them all",
"22990 string to rule them all",
"22991 string to rule them all",
"22992 string to rule them all",
"22993 string to rule them all",
"22994 string to rule them all",
"22995 string to rule them all",
"22996 string to rule them all",
"22997 string to rule them all",
"22998 string to rule them all",
"22999 string to rule them all",
"23000 string to rule them all",
"23001 string to rule them all",
"23002 string to rule them all",
"23003 string to rule them all",
"23004 string to rule them all",
"23005 string to rule them all",
"23006 string to rule them all",
"23007 string to rule them all",
"23008 string to rule them all",
"23009 string to rule them all",
"23010 string to rule them all",
"23011 string to rule them all",
"23012 string to rule them all",
"23013 string to rule them all",
"23014 string to rule them all",
"23015 string to rule them all",
"23016 string to rule them all",
"23017 string to rule them all",
"23018 string to rule them all",
"23019 string to rule them all",
"23020 string to rule them all",
"23021 string to rule them all",
"23022 string to rule them all",
"23023 string to rule them all",
"23024 string to rule them all",
"23025 string to rule them all",
"23026 string to rule them all",
"23027 string to rule them all",
"23028 string to rule them all",
"23029 string to rule them all",
"23030 string to rule them all",
"23031 string to rule them all",
"23032 string to rule them all",
"23033 string to rule them all",
"23034 string to rule them all",
"23035 string to rule them all",
"23036 string to rule them all",
"23037 string to rule them all",
"23038 string to rule them all",
"23039 string to rule them all",
"23040 string to rule them all",
"23041 string to rule them all",
"23042 string to rule them all",
"23043 string to rule them all",
"23044 string to rule them all",
"23045 string to rule them all",
"23046 string to rule them all",
"23047 string to rule them all",
"23048 string to rule them all",
"23049 string to rule them all",
"23050 string to rule them all",
"23051 string to rule them all",
"23052 string to rule them all",
"23053 string to rule them all",
"23054 string to rule them all",
"23055 string to rule them all",
"23056 string to rule them all",
"23057 string to rule them all",
"23058 string to rule them all",
"23059 string to rule them all",
"23060 string to rule them all",
"23061 string to rule them all",
"23062 string to rule them all",
"23063 string to rule them all",
"23064 string to rule them all",
"23065 string to rule them all",
"23066 string to rule them all",
"23067 string to rule them all",
"23068 string to rule them all",
"23069 string to rule them all",
"23070 string to rule them all",
"23071 string to rule them all",
"23072 string to rule them all",
"23073 string to rule them all",
"23074 string to rule them all",
"23075 string to rule them all",
"23076 string to rule them all",
"23077 string to rule them all",
"23078 string to rule them all",
"23079 string to rule them all",
"23080 string to rule them all",
"23081 string to rule them all",
"23082 string to rule them all",
"23083 string to rule them all",
"23084 string to rule them all",
"23085 string to rule them all",
"23086 string to rule them all",
"23087 string to rule them all",
"23088 string to rule them all",
"23089 string to rule them all",
"23090 string to rule them all",
"23091 string to rule them all",
"23092 string to rule them all",
"23093 string to rule them all",
"23094 string to rule them all",
"23095 string to rule them all",
"23096 string to rule them all",
"23097 string to rule them all",
"23098 string to rule them all",
"23099 string to rule them all",
"23100 string to rule them all",
"23101 string to rule them all",
"23102 string to rule them all",
"23103 string to rule them all",
"23104 string to rule them all",
"23105 string to rule them all",
"23106 string to rule them all",
"23107 string to rule them all",
"23108 string to rule them all",
"23109 string to rule them all",
"23110 string to rule them all",
"23111 string to rule them all",
"23112 string to rule them all",
"23113 string to rule them all",
"23114 string to rule them all",
"23115 string to rule them all",
"23116 string to rule them all",
"23117 string to rule them all",
"23118 string to rule them all",
"23119 string to rule them all",
"23120 string to rule them all",
"23121 string to rule them all",
"23122 string to rule them all",
"23123 string to rule them all",
"23124 string to rule them all",
"23125 string to rule them all",
"23126 string to rule them all",
"23127 string to rule them all",
"23128 string to rule them all",
"23129 string to rule them all",
"23130 string to rule them all",
"23131 string to rule them all",
"23132 string to rule them all",
"23133 string to rule them all",
"23134 string to rule them all",
"23135 string to rule them all",
"23136 string to rule them all",
"23137 string to rule them all",
"23138 string to rule them all",
"23139 string to rule them all",
"23140 string to rule them all",
"23141 string to rule them all",
"23142 string to rule them all",
"23143 string to rule them all",
"23144 string to rule them all",
"23145 string to rule them all",
"23146 string to rule them all",
"23147 string to rule them all",
"23148 string to rule them all",
"23149 string to rule them all",
"23150 string to rule them all",
"23151 string to rule them all",
"23152 string to rule them all",
"23153 string to rule them all",
"23154 string to rule them all",
"23155 string to rule them all",
"23156 string to rule them all",
"23157 string to rule them all",
"23158 string to rule them all",
"23159 string to rule them all",
"23160 string to rule them all",
"23161 string to rule them all",
"23162 string to rule them all",
"23163 string to rule them all",
"23164 string to rule them all",
"23165 string to rule them all",
"23166 string to rule them all",
"23167 string to rule them all",
"23168 string to rule them all",
"23169 string to rule them all",
"23170 string to rule them all",
"23171 string to rule them all",
"23172 string to rule them all",
"23173 string to rule them all",
"23174 string to rule them all",
"23175 string to rule them all",
"23176 string to rule them all",
"23177 string to rule them all",
"23178 string to rule them all",
"23179 string to rule them all",
"23180 string to rule them all",
"23181 string to rule them all",
"23182 string to rule them all",
"23183 string to rule them all",
"23184 string to rule them all",
"23185 string to rule them all",
"23186 string to rule them all",
"23187 string to rule them all",
"23188 string to rule them all",
"23189 string to rule them all",
"23190 string to rule them all",
"23191 string to rule them all",
"23192 string to rule them all",
"23193 string to rule them all",
"23194 string to rule them all",
"23195 string to rule them all",
"23196 string to rule them all",
"23197 string to rule them all",
"23198 string to rule them all",
"23199 string to rule them all",
"23200 string to rule them all",
"23201 string to rule them all",
"23202 string to rule them all",
"23203 string to rule them all",
"23204 string to rule them all",
"23205 string to rule them all",
"23206 string to rule them all",
"23207 string to rule them all",
"23208 string to rule them all",
"23209 string to rule them all",
"23210 string to rule them all",
"23211 string to rule them all",
"23212 string to rule them all",
"23213 string to rule them all",
"23214 string to rule them all",
"23215 string to rule them all",
"23216 string to rule them all",
"23217 string to rule them all",
"23218 string to rule them all",
"23219 string to rule them all",
"23220 string to rule them all",
"23221 string to rule them all",
"23222 string to rule them all",
"23223 string to rule them all",
"23224 string to rule them all",
"23225 string to rule them all",
"23226 string to rule them all",
"23227 string to rule them all",
"23228 string to rule them all",
"23229 string to rule them all",
"23230 string to rule them all",
"23231 string to rule them all",
"23232 string to rule them all",
"23233 string to rule them all",
"23234 string to rule them all",
"23235 string to rule them all",
"23236 string to rule them all",
"23237 string to rule them all",
"23238 string to rule them all",
"23239 string to rule them all",
"23240 string to rule them all",
"23241 string to rule them all",
"23242 string to rule them all",
"23243 string to rule them all",
"23244 string to rule them all",
"23245 string to rule them all",
"23246 string to rule them all",
"23247 string to rule them all",
"23248 string to rule them all",
"23249 string to rule them all",
"23250 string to rule them all",
"23251 string to rule them all",
"23252 string to rule them all",
"23253 string to rule them all",
"23254 string to rule them all",
"23255 string to rule them all",
"23256 string to rule them all",
"23257 string to rule them all",
"23258 string to rule them all",
"23259 string to rule them all",
"23260 string to rule them all",
"23261 string to rule them all",
"23262 string to rule them all",
"23263 string to rule them all",
"23264 string to rule them all",
"23265 string to rule them all",
"23266 string to rule them all",
"23267 string to rule them all",
"23268 string to rule them all",
"23269 string to rule them all",
"23270 string to rule them all",
"23271 string to rule them all",
"23272 string to rule them all",
"23273 string to rule them all",
"23274 string to rule them all",
"23275 string to rule them all",
"23276 string to rule them all",
"23277 string to rule them all",
"23278 string to rule them all",
"23279 string to rule them all",
"23280 string to rule them all",
"23281 string to rule them all",
"23282 string to rule them all",
"23283 string to rule them all",
"23284 string to rule them all",
"23285 string to rule them all",
"23286 string to rule them all",
"23287 string to rule them all",
"23288 string to rule them all",
"23289 string to rule them all",
"23290 string to rule them all",
"23291 string to rule them all",
"23292 string to rule them all",
"23293 string to rule them all",
"23294 string to rule them all",
"23295 string to rule them all",
"23296 string to rule them all",
"23297 string to rule them all",
"23298 string to rule them all",
"23299 string to rule them all",
"23300 string to rule them all",
"23301 string to rule them all",
"23302 string to rule them all",
"23303 string to rule them all",
"23304 string to rule them all",
"23305 string to rule them all",
"23306 string to rule them all",
"23307 string to rule them all",
"23308 string to rule them all",
"23309 string to rule them all",
"23310 string to rule them all",
"23311 string to rule them all",
"23312 string to rule them all",
"23313 string to rule them all",
"23314 string to rule them all",
"23315 string to rule them all",
"23316 string to rule them all",
"23317 string to rule them all",
"23318 string to rule them all",
"23319 string to rule them all",
"23320 string to rule them all",
"23321 string to rule them all",
"23322 string to rule them all",
"23323 string to rule them all",
"23324 string to rule them all",
"23325 string to rule them all",
"23326 string to rule them all",
"23327 string to rule them all",
"23328 string to rule them all",
"23329 string to rule them all",
"23330 string to rule them all",
"23331 string to rule them all",
"23332 string to rule them all",
"23333 string to rule them all",
"23334 string to rule them all",
"23335 string to rule them all",
"23336 string to rule them all",
"23337 string to rule them all",
"23338 string to rule them all",
"23339 string to rule them all",
"23340 string to rule them all",
"23341 string to rule them all",
"23342 string to rule them all",
"23343 string to rule them all",
"23344 string to rule them all",
"23345 string to rule them all",
"23346 string to rule them all",
"23347 string to rule them all",
"23348 string to rule them all",
"23349 string to rule them all",
"23350 string to rule them all",
"23351 string to rule them all",
"23352 string to rule them all",
"23353 string to rule them all",
"23354 string to rule them all",
"23355 string to rule them all",
"23356 string to rule them all",
"23357 string to rule them all",
"23358 string to rule them all",
"23359 string to rule them all",
"23360 string to rule them all",
"23361 string to rule them all",
"23362 string to rule them all",
"23363 string to rule them all",
"23364 string to rule them all",
"23365 string to rule them all",
"23366 string to rule them all",
"23367 string to rule them all",
"23368 string to rule them all",
"23369 string to rule them all",
"23370 string to rule them all",
"23371 string to rule them all",
"23372 string to rule them all",
"23373 string to rule them all",
"23374 string to rule them all",
"23375 string to rule them all",
"23376 string to rule them all",
"23377 string to rule them all",
"23378 string to rule them all",
"23379 string to rule them all",
"23380 string to rule them all",
"23381 string to rule them all",
"23382 string to rule them all",
"23383 string to rule them all",
"23384 string to rule them all",
"23385 string to rule them all",
"23386 string to rule them all",
"23387 string to rule them all",
"23388 string to rule them all",
"23389 string to rule them all",
"23390 string to rule them all",
"23391 string to rule them all",
"23392 string to rule them all",
"23393 string to rule them all",
"23394 string to rule them all",
"23395 string to rule them all",
"23396 string to rule them all",
"23397 string to rule them all",
"23398 string to rule them all",
"23399 string to rule them all",
"23400 string to rule them all",
"23401 string to rule them all",
"23402 string to rule them all",
"23403 string to rule them all",
"23404 string to rule them all",
"23405 string to rule them all",
"23406 string to rule them all",
"23407 string to rule them all",
"23408 string to rule them all",
"23409 string to rule them all",
"23410 string to rule them all",
"23411 string to rule them all",
"23412 string to rule them all",
"23413 string to rule them all",
"23414 string to rule them all",
"23415 string to rule them all",
"23416 string to rule them all",
"23417 string to rule them all",
"23418 string to rule them all",
"23419 string to rule them all",
"23420 string to rule them all",
"23421 string to rule them all",
"23422 string to rule them all",
"23423 string to rule them all",
"23424 string to rule them all",
"23425 string to rule them all",
"23426 string to rule them all",
"23427 string to rule them all",
"23428 string to rule them all",
"23429 string to rule them all",
"23430 string to rule them all",
"23431 string to rule them all",
"23432 string to rule them all",
"23433 string to rule them all",
"23434 string to rule them all",
"23435 string to rule them all",
"23436 string to rule them all",
"23437 string to rule them all",
"23438 string to rule them all",
"23439 string to rule them all",
"23440 string to rule them all",
"23441 string to rule them all",
"23442 string to rule them all",
"23443 string to rule them all",
"23444 string to rule them all",
"23445 string to rule them all",
"23446 string to rule them all",
"23447 string to rule them all",
"23448 string to rule them all",
"23449 string to rule them all",
"23450 string to rule them all",
"23451 string to rule them all",
"23452 string to rule them all",
"23453 string to rule them all",
"23454 string to rule them all",
"23455 string to rule them all",
"23456 string to rule them all",
"23457 string to rule them all",
"23458 string to rule them all",
"23459 string to rule them all",
"23460 string to rule them all",
"23461 string to rule them all",
"23462 string to rule them all",
"23463 string to rule them all",
"23464 string to rule them all",
"23465 string to rule them all",
"23466 string to rule them all",
"23467 string to rule them all",
"23468 string to rule them all",
"23469 string to rule them all",
"23470 string to rule them all",
"23471 string to rule them all",
"23472 string to rule them all",
"23473 string to rule them all",
"23474 string to rule them all",
"23475 string to rule them all",
"23476 string to rule them all",
"23477 string to rule them all",
"23478 string to rule them all",
"23479 string to rule them all",
"23480 string to rule them all",
"23481 string to rule them all",
"23482 string to rule them all",
"23483 string to rule them all",
"23484 string to rule them all",
"23485 string to rule them all",
"23486 string to rule them all",
"23487 string to rule them all",
"23488 string to rule them all",
"23489 string to rule them all",
"23490 string to rule them all",
"23491 string to rule them all",
"23492 string to rule them all",
"23493 string to rule them all",
"23494 string to rule them all",
"23495 string to rule them all",
"23496 string to rule them all",
"23497 string to rule them all",
"23498 string to rule them all",
"23499 string to rule them all",
"23500 string to rule them all",
"23501 string to rule them all",
"23502 string to rule them all",
"23503 string to rule them all",
"23504 string to rule them all",
"23505 string to rule them all",
"23506 string to rule them all",
"23507 string to rule them all",
"23508 string to rule them all",
"23509 string to rule them all",
"23510 string to rule them all",
"23511 string to rule them all",
"23512 string to rule them all",
"23513 string to rule them all",
"23514 string to rule them all",
"23515 string to rule them all",
"23516 string to rule them all",
"23517 string to rule them all",
"23518 string to rule them all",
"23519 string to rule them all",
"23520 string to rule them all",
"23521 string to rule them all",
"23522 string to rule them all",
"23523 string to rule them all",
"23524 string to rule them all",
"23525 string to rule them all",
"23526 string to rule them all",
"23527 string to rule them all",
"23528 string to rule them all",
"23529 string to rule them all",
"23530 string to rule them all",
"23531 string to rule them all",
"23532 string to rule them all",
"23533 string to rule them all",
"23534 string to rule them all",
"23535 string to rule them all",
"23536 string to rule them all",
"23537 string to rule them all",
"23538 string to rule them all",
"23539 string to rule them all",
"23540 string to rule them all",
"23541 string to rule them all",
"23542 string to rule them all",
"23543 string to rule them all",
"23544 string to rule them all",
"23545 string to rule them all",
"23546 string to rule them all",
"23547 string to rule them all",
"23548 string to rule them all",
"23549 string to rule them all",
"23550 string to rule them all",
"23551 string to rule them all",
"23552 string to rule them all",
"23553 string to rule them all",
"23554 string to rule them all",
"23555 string to rule them all",
"23556 string to rule them all",
"23557 string to rule them all",
"23558 string to rule them all",
"23559 string to rule them all",
"23560 string to rule them all",
"23561 string to rule them all",
"23562 string to rule them all",
"23563 string to rule them all",
"23564 string to rule them all",
"23565 string to rule them all",
"23566 string to rule them all",
"23567 string to rule them all",
"23568 string to rule them all",
"23569 string to rule them all",
"23570 string to rule them all",
"23571 string to rule them all",
"23572 string to rule them all",
"23573 string to rule them all",
"23574 string to rule them all",
"23575 string to rule them all",
"23576 string to rule them all",
"23577 string to rule them all",
"23578 string to rule them all",
"23579 string to rule them all",
"23580 string to rule them all",
"23581 string to rule them all",
"23582 string to rule them all",
"23583 string to rule them all",
"23584 string to rule them all",
"23585 string to rule them all",
"23586 string to rule them all",
"23587 string to rule them all",
"23588 string to rule them all",
"23589 string to rule them all",
"23590 string to rule them all",
"23591 string to rule them all",
"23592 string to rule them all",
"23593 string to rule them all",
"23594 string to rule them all",
"23595 string to rule them all",
"23596 string to rule them all",
"23597 string to rule them all",
"23598 string to rule them all",
"23599 string to rule them all",
"23600 string to rule them all",
"23601 string to rule them all",
"23602 string to rule them all",
"23603 string to rule them all",
"23604 string to rule them all",
"23605 string to rule them all",
"23606 string to rule them all",
"23607 string to rule them all",
"23608 string to rule them all",
"23609 string to rule them all",
"23610 string to rule them all",
"23611 string to rule them all",
"23612 string to rule them all",
"23613 string to rule them all",
"23614 string to rule them all",
"23615 string to rule them all",
"23616 string to rule them all",
"23617 string to rule them all",
"23618 string to rule them all",
"23619 string to rule them all",
"23620 string to rule them all",
"23621 string to rule them all",
"23622 string to rule them all",
"23623 string to rule them all",
"23624 string to rule them all",
"23625 string to rule them all",
"23626 string to rule them all",
"23627 string to rule them all",
"23628 string to rule them all",
"23629 string to rule them all",
"23630 string to rule them all",
"23631 string to rule them all",
"23632 string to rule them all",
"23633 string to rule them all",
"23634 string to rule them all",
"23635 string to rule them all",
"23636 string to rule them all",
"23637 string to rule them all",
"23638 string to rule them all",
"23639 string to rule them all",
"23640 string to rule them all",
"23641 string to rule them all",
"23642 string to rule them all",
"23643 string to rule them all",
"23644 string to rule them all",
"23645 string to rule them all",
"23646 string to rule them all",
"23647 string to rule them all",
"23648 string to rule them all",
"23649 string to rule them all",
"23650 string to rule them all",
"23651 string to rule them all",
"23652 string to rule them all",
"23653 string to rule them all",
"23654 string to rule them all",
"23655 string to rule them all",
"23656 string to rule them all",
"23657 string to rule them all",
"23658 string to rule them all",
"23659 string to rule them all",
"23660 string to rule them all",
"23661 string to rule them all",
"23662 string to rule them all",
"23663 string to rule them all",
"23664 string to rule them all",
"23665 string to rule them all",
"23666 string to rule them all",
"23667 string to rule them all",
"23668 string to rule them all",
"23669 string to rule them all",
"23670 string to rule them all",
"23671 string to rule them all",
"23672 string to rule them all",
"23673 string to rule them all",
"23674 string to rule them all",
"23675 string to rule them all",
"23676 string to rule them all",
"23677 string to rule them all",
"23678 string to rule them all",
"23679 string to rule them all",
"23680 string to rule them all",
"23681 string to rule them all",
"23682 string to rule them all",
"23683 string to rule them all",
"23684 string to rule them all",
"23685 string to rule them all",
"23686 string to rule them all",
"23687 string to rule them all",
"23688 string to rule them all",
"23689 string to rule them all",
"23690 string to rule them all",
"23691 string to rule them all",
"23692 string to rule them all",
"23693 string to rule them all",
"23694 string to rule them all",
"23695 string to rule them all",
"23696 string to rule them all",
"23697 string to rule them all",
"23698 string to rule them all",
"23699 string to rule them all",
"23700 string to rule them all",
"23701 string to rule them all",
"23702 string to rule them all",
"23703 string to rule them all",
"23704 string to rule them all",
"23705 string to rule them all",
"23706 string to rule them all",
"23707 string to rule them all",
"23708 string to rule them all",
"23709 string to rule them all",
"23710 string to rule them all",
"23711 string to rule them all",
"23712 string to rule them all",
"23713 string to rule them all",
"23714 string to rule them all",
"23715 string to rule them all",
"23716 string to rule them all",
"23717 string to rule them all",
"23718 string to rule them all",
"23719 string to rule them all",
"23720 string to rule them all",
"23721 string to rule them all",
"23722 string to rule them all",
"23723 string to rule them all",
"23724 string to rule them all",
"23725 string to rule them all",
"23726 string to rule them all",
"23727 string to rule them all",
"23728 string to rule them all",
"23729 string to rule them all",
"23730 string to rule them all",
"23731 string to rule them all",
"23732 string to rule them all",
"23733 string to rule them all",
"23734 string to rule them all",
"23735 string to rule them all",
"23736 string to rule them all",
"23737 string to rule them all",
"23738 string to rule them all",
"23739 string to rule them all",
"23740 string to rule them all",
"23741 string to rule them all",
"23742 string to rule them all",
"23743 string to rule them all",
"23744 string to rule them all",
"23745 string to rule them all",
"23746 string to rule them all",
"23747 string to rule them all",
"23748 string to rule them all",
"23749 string to rule them all",
"23750 string to rule them all",
"23751 string to rule them all",
"23752 string to rule them all",
"23753 string to rule them all",
"23754 string to rule them all",
"23755 string to rule them all",
"23756 string to rule them all",
"23757 string to rule them all",
"23758 string to rule them all",
"23759 string to rule them all",
"23760 string to rule them all",
"23761 string to rule them all",
"23762 string to rule them all",
"23763 string to rule them all",
"23764 string to rule them all",
"23765 string to rule them all",
"23766 string to rule them all",
"23767 string to rule them all",
"23768 string to rule them all",
"23769 string to rule them all",
"23770 string to rule them all",
"23771 string to rule them all",
"23772 string to rule them all",
"23773 string to rule them all",
"23774 string to rule them all",
"23775 string to rule them all",
"23776 string to rule them all",
"23777 string to rule them all",
"23778 string to rule them all",
"23779 string to rule them all",
"23780 string to rule them all",
"23781 string to rule them all",
"23782 string to rule them all",
"23783 string to rule them all",
"23784 string to rule them all",
"23785 string to rule them all",
"23786 string to rule them all",
"23787 string to rule them all",
"23788 string to rule them all",
"23789 string to rule them all",
"23790 string to rule them all",
"23791 string to rule them all",
"23792 string to rule them all",
"23793 string to rule them all",
"23794 string to rule them all",
"23795 string to rule them all",
"23796 string to rule them all",
"23797 string to rule them all",
"23798 string to rule them all",
"23799 string to rule them all",
"23800 string to rule them all",
"23801 string to rule them all",
"23802 string to rule them all",
"23803 string to rule them all",
"23804 string to rule them all",
"23805 string to rule them all",
"23806 string to rule them all",
"23807 string to rule them all",
"23808 string to rule them all",
"23809 string to rule them all",
"23810 string to rule them all",
"23811 string to rule them all",
"23812 string to rule them all",
"23813 string to rule them all",
"23814 string to rule them all",
"23815 string to rule them all",
"23816 string to rule them all",
"23817 string to rule them all",
"23818 string to rule them all",
"23819 string to rule them all",
"23820 string to rule them all",
"23821 string to rule them all",
"23822 string to rule them all",
"23823 string to rule them all",
"23824 string to rule them all",
"23825 string to rule them all",
"23826 string to rule them all",
"23827 string to rule them all",
"23828 string to rule them all",
"23829 string to rule them all",
"23830 string to rule them all",
"23831 string to rule them all",
"23832 string to rule them all",
"23833 string to rule them all",
"23834 string to rule them all",
"23835 string to rule them all",
"23836 string to rule them all",
"23837 string to rule them all",
"23838 string to rule them all",
"23839 string to rule them all",
"23840 string to rule them all",
"23841 string to rule them all",
"23842 string to rule them all",
"23843 string to rule them all",
"23844 string to rule them all",
"23845 string to rule them all",
"23846 string to rule them all",
"23847 string to rule them all",
"23848 string to rule them all",
"23849 string to rule them all",
"23850 string to rule them all",
"23851 string to rule them all",
"23852 string to rule them all",
"23853 string to rule them all",
"23854 string to rule them all",
"23855 string to rule them all",
"23856 string to rule them all",
"23857 string to rule them all",
"23858 string to rule them all",
"23859 string to rule them all",
"23860 string to rule them all",
"23861 string to rule them all",
"23862 string to rule them all",
"23863 string to rule them all",
"23864 string to rule them all",
"23865 string to rule them all",
"23866 string to rule them all",
"23867 string to rule them all",
"23868 string to rule them all",
"23869 string to rule them all",
"23870 string to rule them all",
"23871 string to rule them all",
"23872 string to rule them all",
"23873 string to rule them all",
"23874 string to rule them all",
"23875 string to rule them all",
"23876 string to rule them all",
"23877 string to rule them all",
"23878 string to rule them all",
"23879 string to rule them all",
"23880 string to rule them all",
"23881 string to rule them all",
"23882 string to rule them all",
"23883 string to rule them all",
"23884 string to rule them all",
"23885 string to rule them all",
"23886 string to rule them all",
"23887 string to rule them all",
"23888 string to rule them all",
"23889 string to rule them all",
"23890 string to rule them all",
"23891 string to rule them all",
"23892 string to rule them all",
"23893 string to rule them all",
"23894 string to rule them all",
"23895 string to rule them all",
"23896 string to rule them all",
"23897 string to rule them all",
"23898 string to rule them all",
"23899 string to rule them all",
"23900 string to rule them all",
"23901 string to rule them all",
"23902 string to rule them all",
"23903 string to rule them all",
"23904 string to rule them all",
"23905 string to rule them all",
"23906 string to rule them all",
"23907 string to rule them all",
"23908 string to rule them all",
"23909 string to rule them all",
"23910 string to rule them all",
"23911 string to rule them all",
"23912 string to rule them all",
"23913 string to rule them all",
"23914 string to rule them all",
"23915 string to rule them all",
"23916 string to rule them all",
"23917 string to rule them all",
"23918 string to rule them all",
"23919 string to rule them all",
"23920 string to rule them all",
"23921 string to rule them all",
"23922 string to rule them all",
"23923 string to rule them all",
"23924 string to rule them all",
"23925 string to rule them all",
"23926 string to rule them all",
"23927 string to rule them all",
"23928 string to rule them all",
"23929 string to rule them all",
"23930 string to rule them all",
"23931 string to rule them all",
"23932 string to rule them all",
"23933 string to rule them all",
"23934 string to rule them all",
"23935 string to rule them all",
"23936 string to rule them all",
"23937 string to rule them all",
"23938 string to rule them all",
"23939 string to rule them all",
"23940 string to rule them all",
"23941 string to rule them all",
"23942 string to rule them all",
"23943 string to rule them all",
"23944 string to rule them all",
"23945 string to rule them all",
"23946 string to rule them all",
"23947 string to rule them all",
"23948 string to rule them all",
"23949 string to rule them all",
"23950 string to rule them all",
"23951 string to rule them all",
"23952 string to rule them all",
"23953 string to rule them all",
"23954 string to rule them all",
"23955 string to rule them all",
"23956 string to rule them all",
"23957 string to rule them all",
"23958 string to rule them all",
"23959 string to rule them all",
"23960 string to rule them all",
"23961 string to rule them all",
"23962 string to rule them all",
"23963 string to rule them all",
"23964 string to rule them all",
"23965 string to rule them all",
"23966 string to rule them all",
"23967 string to rule them all",
"23968 string to rule them all",
"23969 string to rule them all",
"23970 string to rule them all",
"23971 string to rule them all",
"23972 string to rule them all",
"23973 string to rule them all",
"23974 string to rule them all",
"23975 string to rule them all",
"23976 string to rule them all",
"23977 string to rule them all",
"23978 string to rule them all",
"23979 string to rule them all",
"23980 string to rule them all",
"23981 string to rule them all",
"23982 string to rule them all",
"23983 string to rule them all",
"23984 string to rule them all",
"23985 string to rule them all",
"23986 string to rule them all",
"23987 string to rule them all",
"23988 string to rule them all",
"23989 string to rule them all",
"23990 string to rule them all",
"23991 string to rule them all",
"23992 string to rule them all",
"23993 string to rule them all",
"23994 string to rule them all",
"23995 string to rule them all",
"23996 string to rule them all",
"23997 string to rule them all",
"23998 string to rule them all",
"23999 string to rule them all",
"24000 string to rule them all",
"24001 string to rule them all",
"24002 string to rule them all",
"24003 string to rule them all",
"24004 string to rule them all",
"24005 string to rule them all",
"24006 string to rule them all",
"24007 string to rule them all",
"24008 string to rule them all",
"24009 string to rule them all",
"24010 string to rule them all",
"24011 string to rule them all",
"24012 string to rule them all",
"24013 string to rule them all",
"24014 string to rule them all",
"24015 string to rule them all",
"24016 string to rule them all",
"24017 string to rule them all",
"24018 string to rule them all",
"24019 string to rule them all",
"24020 string to rule them all",
"24021 string to rule them all",
"24022 string to rule them all",
"24023 string to rule them all",
"24024 string to rule them all",
"24025 string to rule them all",
"24026 string to rule them all",
"24027 string to rule them all",
"24028 string to rule them all",
"24029 string to rule them all",
"24030 string to rule them all",
"24031 string to rule them all",
"24032 string to rule them all",
"24033 string to rule them all",
"24034 string to rule them all",
"24035 string to rule them all",
"24036 string to rule them all",
"24037 string to rule them all",
"24038 string to rule them all",
"24039 string to rule them all",
"24040 string to rule them all",
"24041 string to rule them all",
"24042 string to rule them all",
"24043 string to rule them all",
"24044 string to rule them all",
"24045 string to rule them all",
"24046 string to rule them all",
"24047 string to rule them all",
"24048 string to rule them all",
"24049 string to rule them all",
"24050 string to rule them all",
"24051 string to rule them all",
"24052 string to rule them all",
"24053 string to rule them all",
"24054 string to rule them all",
"24055 string to rule them all",
"24056 string to rule them all",
"24057 string to rule them all",
"24058 string to rule them all",
"24059 string to rule them all",
"24060 string to rule them all",
"24061 string to rule them all",
"24062 string to rule them all",
"24063 string to rule them all",
"24064 string to rule them all",
"24065 string to rule them all",
"24066 string to rule them all",
"24067 string to rule them all",
"24068 string to rule them all",
"24069 string to rule them all",
"24070 string to rule them all",
"24071 string to rule them all",
"24072 string to rule them all",
"24073 string to rule them all",
"24074 string to rule them all",
"24075 string to rule them all",
"24076 string to rule them all",
"24077 string to rule them all",
"24078 string to rule them all",
"24079 string to rule them all",
"24080 string to rule them all",
"24081 string to rule them all",
"24082 string to rule them all",
"24083 string to rule them all",
"24084 string to rule them all",
"24085 string to rule them all",
"24086 string to rule them all",
"24087 string to rule them all",
"24088 string to rule them all",
"24089 string to rule them all",
"24090 string to rule them all",
"24091 string to rule them all",
"24092 string to rule them all",
"24093 string to rule them all",
"24094 string to rule them all",
"24095 string to rule them all",
"24096 string to rule them all",
"24097 string to rule them all",
"24098 string to rule them all",
"24099 string to rule them all",
"24100 string to rule them all",
"24101 string to rule them all",
"24102 string to rule them all",
"24103 string to rule them all",
"24104 string to rule them all",
"24105 string to rule them all",
"24106 string to rule them all",
"24107 string to rule them all",
"24108 string to rule them all",
"24109 string to rule them all",
"24110 string to rule them all",
"24111 string to rule them all",
"24112 string to rule them all",
"24113 string to rule them all",
"24114 string to rule them all",
"24115 string to rule them all",
"24116 string to rule them all",
"24117 string to rule them all",
"24118 string to rule them all",
"24119 string to rule them all",
"24120 string to rule them all",
"24121 string to rule them all",
"24122 string to rule them all",
"24123 string to rule them all",
"24124 string to rule them all",
"24125 string to rule them all",
"24126 string to rule them all",
"24127 string to rule them all",
"24128 string to rule them all",
"24129 string to rule them all",
"24130 string to rule them all",
"24131 string to rule them all",
"24132 string to rule them all",
"24133 string to rule them all",
"24134 string to rule them all",
"24135 string to rule them all",
"24136 string to rule them all",
"24137 string to rule them all",
"24138 string to rule them all",
"24139 string to rule them all",
"24140 string to rule them all",
"24141 string to rule them all",
"24142 string to rule them all",
"24143 string to rule them all",
"24144 string to rule them all",
"24145 string to rule them all",
"24146 string to rule them all",
"24147 string to rule them all",
"24148 string to rule them all",
"24149 string to rule them all",
"24150 string to rule them all",
"24151 string to rule them all",
"24152 string to rule them all",
"24153 string to rule them all",
"24154 string to rule them all",
"24155 string to rule them all",
"24156 string to rule them all",
"24157 string to rule them all",
"24158 string to rule them all",
"24159 string to rule them all",
"24160 string to rule them all",
"24161 string to rule them all",
"24162 string to rule them all",
"24163 string to rule them all",
"24164 string to rule them all",
"24165 string to rule them all",
"24166 string to rule them all",
"24167 string to rule them all",
"24168 string to rule them all",
"24169 string to rule them all",
"24170 string to rule them all",
"24171 string to rule them all",
"24172 string to rule them all",
"24173 string to rule them all",
"24174 string to rule them all",
"24175 string to rule them all",
"24176 string to rule them all",
"24177 string to rule them all",
"24178 string to rule them all",
"24179 string to rule them all",
"24180 string to rule them all",
"24181 string to rule them all",
"24182 string to rule them all",
"24183 string to rule them all",
"24184 string to rule them all",
"24185 string to rule them all",
"24186 string to rule them all",
"24187 string to rule them all",
"24188 string to rule them all",
"24189 string to rule them all",
"24190 string to rule them all",
"24191 string to rule them all",
"24192 string to rule them all",
"24193 string to rule them all",
"24194 string to rule them all",
"24195 string to rule them all",
"24196 string to rule them all",
"24197 string to rule them all",
"24198 string to rule them all",
"24199 string to rule them all",
"24200 string to rule them all",
"24201 string to rule them all",
"24202 string to rule them all",
"24203 string to rule them all",
"24204 string to rule them all",
"24205 string to rule them all",
"24206 string to rule them all",
"24207 string to rule them all",
"24208 string to rule them all",
"24209 string to rule them all",
"24210 string to rule them all",
"24211 string to rule them all",
"24212 string to rule them all",
"24213 string to rule them all",
"24214 string to rule them all",
"24215 string to rule them all",
"24216 string to rule them all",
"24217 string to rule them all",
"24218 string to rule them all",
"24219 string to rule them all",
"24220 string to rule them all",
"24221 string to rule them all",
"24222 string to rule them all",
"24223 string to rule them all",
"24224 string to rule them all",
"24225 string to rule them all",
"24226 string to rule them all",
"24227 string to rule them all",
"24228 string to rule them all",
"24229 string to rule them all",
"24230 string to rule them all",
"24231 string to rule them all",
"24232 string to rule them all",
"24233 string to rule them all",
"24234 string to rule them all",
"24235 string to rule them all",
"24236 string to rule them all",
"24237 string to rule them all",
"24238 string to rule them all",
"24239 string to rule them all",
"24240 string to rule them all",
"24241 string to rule them all",
"24242 string to rule them all",
"24243 string to rule them all",
"24244 string to rule them all",
"24245 string to rule them all",
"24246 string to rule them all",
"24247 string to rule them all",
"24248 string to rule them all",
"24249 string to rule them all",
"24250 string to rule them all",
"24251 string to rule them all",
"24252 string to rule them all",
"24253 string to rule them all",
"24254 string to rule them all",
"24255 string to rule them all",
"24256 string to rule them all",
"24257 string to rule them all",
"24258 string to rule them all",
"24259 string to rule them all",
"24260 string to rule them all",
"24261 string to rule them all",
"24262 string to rule them all",
"24263 string to rule them all",
"24264 string to rule them all",
"24265 string to rule them all",
"24266 string to rule them all",
"24267 string to rule them all",
"24268 string to rule them all",
"24269 string to rule them all",
"24270 string to rule them all",
"24271 string to rule them all",
"24272 string to rule them all",
"24273 string to rule them all",
"24274 string to rule them all",
"24275 string to rule them all",
"24276 string to rule them all",
"24277 string to rule them all",
"24278 string to rule them all",
"24279 string to rule them all",
"24280 string to rule them all",
"24281 string to rule them all",
"24282 string to rule them all",
"24283 string to rule them all",
"24284 string to rule them all",
"24285 string to rule them all",
"24286 string to rule them all",
"24287 string to rule them all",
"24288 string to rule them all",
"24289 string to rule them all",
"24290 string to rule them all",
"24291 string to rule them all",
"24292 string to rule them all",
"24293 string to rule them all",
"24294 string to rule them all",
"24295 string to rule them all",
"24296 string to rule them all",
"24297 string to rule them all",
"24298 string to rule them all",
"24299 string to rule them all",
"24300 string to rule them all",
"24301 string to rule them all",
"24302 string to rule them all",
"24303 string to rule them all",
"24304 string to rule them all",
"24305 string to rule them all",
"24306 string to rule them all",
"24307 string to rule them all",
"24308 string to rule them all",
"24309 string to rule them all",
"24310 string to rule them all",
"24311 string to rule them all",
"24312 string to rule them all",
"24313 string to rule them all",
"24314 string to rule them all",
"24315 string to rule them all",
"24316 string to rule them all",
"24317 string to rule them all",
"24318 string to rule them all",
"24319 string to rule them all",
"24320 string to rule them all",
"24321 string to rule them all",
"24322 string to rule them all",
"24323 string to rule them all",
"24324 string to rule them all",
"24325 string to rule them all",
"24326 string to rule them all",
"24327 string to rule them all",
"24328 string to rule them all",
"24329 string to rule them all",
"24330 string to rule them all",
"24331 string to rule them all",
"24332 string to rule them all",
"24333 string to rule them all",
"24334 string to rule them all",
"24335 string to rule them all",
"24336 string to rule them all",
"24337 string to rule them all",
"24338 string to rule them all",
"24339 string to rule them all",
"24340 string to rule them all",
"24341 string to rule them all",
"24342 string to rule them all",
"24343 string to rule them all",
"24344 string to rule them all",
"24345 string to rule them all",
"24346 string to rule them all",
"24347 string to rule them all",
"24348 string to rule them all",
"24349 string to rule them all",
"24350 string to rule them all",
"24351 string to rule them all",
"24352 string to rule them all",
"24353 string to rule them all",
"24354 string to rule them all",
"24355 string to rule them all",
"24356 string to rule them all",
"24357 string to rule them all",
"24358 string to rule them all",
"24359 string to rule them all",
"24360 string to rule them all",
"24361 string to rule them all",
"24362 string to rule them all",
"24363 string to rule them all",
"24364 string to rule them all",
"24365 string to rule them all",
"24366 string to rule them all",
"24367 string to rule them all",
"24368 string to rule them all",
"24369 string to rule them all",
"24370 string to rule them all",
"24371 string to rule them all",
"24372 string to rule them all",
"24373 string to rule them all",
"24374 string to rule them all",
"24375 string to rule them all",
"24376 string to rule them all",
"24377 string to rule them all",
"24378 string to rule them all",
"24379 string to rule them all",
"24380 string to rule them all",
"24381 string to rule them all",
"24382 string to rule them all",
"24383 string to rule them all",
"24384 string to rule them all",
"24385 string to rule them all",
"24386 string to rule them all",
"24387 string to rule them all",
"24388 string to rule them all",
"24389 string to rule them all",
"24390 string to rule them all",
"24391 string to rule them all",
"24392 string to rule them all",
"24393 string to rule them all",
"24394 string to rule them all",
"24395 string to rule them all",
"24396 string to rule them all",
"24397 string to rule them all",
"24398 string to rule them all",
"24399 string to rule them all",
"24400 string to rule them all",
"24401 string to rule them all",
"24402 string to rule them all",
"24403 string to rule them all",
"24404 string to rule them all",
"24405 string to rule them all",
"24406 string to rule them all",
"24407 string to rule them all",
"24408 string to rule them all",
"24409 string to rule them all",
"24410 string to rule them all",
"24411 string to rule them all",
"24412 string to rule them all",
"24413 string to rule them all",
"24414 string to rule them all",
"24415 string to rule them all",
"24416 string to rule them all",
"24417 string to rule them all",
"24418 string to rule them all",
"24419 string to rule them all",
"24420 string to rule them all",
"24421 string to rule them all",
"24422 string to rule them all",
"24423 string to rule them all",
"24424 string to rule them all",
"24425 string to rule them all",
"24426 string to rule them all",
"24427 string to rule them all",
"24428 string to rule them all",
"24429 string to rule them all",
"24430 string to rule them all",
"24431 string to rule them all",
"24432 string to rule them all",
"24433 string to rule them all",
"24434 string to rule them all",
"24435 string to rule them all",
"24436 string to rule them all",
"24437 string to rule them all",
"24438 string to rule them all",
"24439 string to rule them all",
"24440 string to rule them all",
"24441 string to rule them all",
"24442 string to rule them all",
"24443 string to rule them all",
"24444 string to rule them all",
"24445 string to rule them all",
"24446 string to rule them all",
"24447 string to rule them all",
"24448 string to rule them all",
"24449 string to rule them all",
"24450 string to rule them all",
"24451 string to rule them all",
"24452 string to rule them all",
"24453 string to rule them all",
"24454 string to rule them all",
"24455 string to rule them all",
"24456 string to rule them all",
"24457 string to rule them all",
"24458 string to rule them all",
"24459 string to rule them all",
"24460 string to rule them all",
"24461 string to rule them all",
"24462 string to rule them all",
"24463 string to rule them all",
"24464 string to rule them all",
"24465 string to rule them all",
"24466 string to rule them all",
"24467 string to rule them all",
"24468 string to rule them all",
"24469 string to rule them all",
"24470 string to rule them all",
"24471 string to rule them all",
"24472 string to rule them all",
"24473 string to rule them all",
"24474 string to rule them all",
"24475 string to rule them all",
"24476 string to rule them all",
"24477 string to rule them all",
"24478 string to rule them all",
"24479 string to rule them all",
"24480 string to rule them all",
"24481 string to rule them all",
"24482 string to rule them all",
"24483 string to rule them all",
"24484 string to rule them all",
"24485 string to rule them all",
"24486 string to rule them all",
"24487 string to rule them all",
"24488 string to rule them all",
"24489 string to rule them all",
"24490 string to rule them all",
"24491 string to rule them all",
"24492 string to rule them all",
"24493 string to rule them all",
"24494 string to rule them all",
"24495 string to rule them all",
"24496 string to rule them all",
"24497 string to rule them all",
"24498 string to rule them all",
"24499 string to rule them all",
"24500 string to rule them all",
"24501 string to rule them all",
"24502 string to rule them all",
"24503 string to rule them all",
"24504 string to rule them all",
"24505 string to rule them all",
"24506 string to rule them all",
"24507 string to rule them all",
"24508 string to rule them all",
"24509 string to rule them all",
"24510 string to rule them all",
"24511 string to rule them all",
"24512 string to rule them all",
"24513 string to rule them all",
"24514 string to rule them all",
"24515 string to rule them all",
"24516 string to rule them all",
"24517 string to rule them all",
"24518 string to rule them all",
"24519 string to rule them all",
"24520 string to rule them all",
"24521 string to rule them all",
"24522 string to rule them all",
"24523 string to rule them all",
"24524 string to rule them all",
"24525 string to rule them all",
"24526 string to rule them all",
"24527 string to rule them all",
"24528 string to rule them all",
"24529 string to rule them all",
"24530 string to rule them all",
"24531 string to rule them all",
"24532 string to rule them all",
"24533 string to rule them all",
"24534 string to rule them all",
"24535 string to rule them all",
"24536 string to rule them all",
"24537 string to rule them all",
"24538 string to rule them all",
"24539 string to rule them all",
"24540 string to rule them all",
"24541 string to rule them all",
"24542 string to rule them all",
"24543 string to rule them all",
"24544 string to rule them all",
"24545 string to rule them all",
"24546 string to rule them all",
"24547 string to rule them all",
"24548 string to rule them all",
"24549 string to rule them all",
"24550 string to rule them all",
"24551 string to rule them all",
"24552 string to rule them all",
"24553 string to rule them all",
"24554 string to rule them all",
"24555 string to rule them all",
"24556 string to rule them all",
"24557 string to rule them all",
"24558 string to rule them all",
"24559 string to rule them all",
"24560 string to rule them all",
"24561 string to rule them all",
"24562 string to rule them all",
"24563 string to rule them all",
"24564 string to rule them all",
"24565 string to rule them all",
"24566 string to rule them all",
"24567 string to rule them all",
"24568 string to rule them all",
"24569 string to rule them all",
"24570 string to rule them all",
"24571 string to rule them all",
"24572 string to rule them all",
"24573 string to rule them all",
"24574 string to rule them all",
"24575 string to rule them all",
"24576 string to rule them all",
"24577 string to rule them all",
"24578 string to rule them all",
"24579 string to rule them all",
"24580 string to rule them all",
"24581 string to rule them all",
"24582 string to rule them all",
"24583 string to rule them all",
"24584 string to rule them all",
"24585 string to rule them all",
"24586 string to rule them all",
"24587 string to rule them all",
"24588 string to rule them all",
"24589 string to rule them all",
"24590 string to rule them all",
"24591 string to rule them all",
"24592 string to rule them all",
"24593 string to rule them all",
"24594 string to rule them all",
"24595 string to rule them all",
"24596 string to rule them all",
"24597 string to rule them all",
"24598 string to rule them all",
"24599 string to rule them all",
"24600 string to rule them all",
"24601 string to rule them all",
"24602 string to rule them all",
"24603 string to rule them all",
"24604 string to rule them all",
"24605 string to rule them all",
"24606 string to rule them all",
"24607 string to rule them all",
"24608 string to rule them all",
"24609 string to rule them all",
"24610 string to rule them all",
"24611 string to rule them all",
"24612 string to rule them all",
"24613 string to rule them all",
"24614 string to rule them all",
"24615 string to rule them all",
"24616 string to rule them all",
"24617 string to rule them all",
"24618 string to rule them all",
"24619 string to rule them all",
"24620 string to rule them all",
"24621 string to rule them all",
"24622 string to rule them all",
"24623 string to rule them all",
"24624 string to rule them all",
"24625 string to rule them all",
"24626 string to rule them all",
"24627 string to rule them all",
"24628 string to rule them all",
"24629 string to rule them all",
"24630 string to rule them all",
"24631 string to rule them all",
"24632 string to rule them all",
"24633 string to rule them all",
"24634 string to rule them all",
"24635 string to rule them all",
"24636 string to rule them all",
"24637 string to rule them all",
"24638 string to rule them all",
"24639 string to rule them all",
"24640 string to rule them all",
"24641 string to rule them all",
"24642 string to rule them all",
"24643 string to rule them all",
"24644 string to rule them all",
"24645 string to rule them all",
"24646 string to rule them all",
"24647 string to rule them all",
"24648 string to rule them all",
"24649 string to rule them all",
"24650 string to rule them all",
"24651 string to rule them all",
"24652 string to rule them all",
"24653 string to rule them all",
"24654 string to rule them all",
"24655 string to rule them all",
"24656 string to rule them all",
"24657 string to rule them all",
"24658 string to rule them all",
"24659 string to rule them all",
"24660 string to rule them all",
"24661 string to rule them all",
"24662 string to rule them all",
"24663 string to rule them all",
"24664 string to rule them all",
"24665 string to rule them all",
"24666 string to rule them all",
"24667 string to rule them all",
"24668 string to rule them all",
"24669 string to rule them all",
"24670 string to rule them all",
"24671 string to rule them all",
"24672 string to rule them all",
"24673 string to rule them all",
"24674 string to rule them all",
"24675 string to rule them all",
"24676 string to rule them all",
"24677 string to rule them all",
"24678 string to rule them all",
"24679 string to rule them all",
"24680 string to rule them all",
"24681 string to rule them all",
"24682 string to rule them all",
"24683 string to rule them all",
"24684 string to rule them all",
"24685 string to rule them all",
"24686 string to rule them all",
"24687 string to rule them all",
"24688 string to rule them all",
"24689 string to rule them all",
"24690 string to rule them all",
"24691 string to rule them all",
"24692 string to rule them all",
"24693 string to rule them all",
"24694 string to rule them all",
"24695 string to rule them all",
"24696 string to rule them all",
"24697 string to rule them all",
"24698 string to rule them all",
"24699 string to rule them all",
"24700 string to rule them all",
"24701 string to rule them all",
"24702 string to rule them all",
"24703 string to rule them all",
"24704 string to rule them all",
"24705 string to rule them all",
"24706 string to rule them all",
"24707 string to rule them all",
"24708 string to rule them all",
"24709 string to rule them all",
"24710 string to rule them all",
"24711 string to rule them all",
"24712 string to rule them all",
"24713 string to rule them all",
"24714 string to rule them all",
"24715 string to rule them all",
"24716 string to rule them all",
"24717 string to rule them all",
"24718 string to rule them all",
"24719 string to rule them all",
"24720 string to rule them all",
"24721 string to rule them all",
"24722 string to rule them all",
"24723 string to rule them all",
"24724 string to rule them all",
"24725 string to rule them all",
"24726 string to rule them all",
"24727 string to rule them all",
"24728 string to rule them all",
"24729 string to rule them all",
"24730 string to rule them all",
"24731 string to rule them all",
"24732 string to rule them all",
"24733 string to rule them all",
"24734 string to rule them all",
"24735 string to rule them all",
"24736 string to rule them all",
"24737 string to rule them all",
"24738 string to rule them all",
"24739 string to rule them all",
"24740 string to rule them all",
"24741 string to rule them all",
"24742 string to rule them all",
"24743 string to rule them all",
"24744 string to rule them all",
"24745 string to rule them all",
"24746 string to rule them all",
"24747 string to rule them all",
"24748 string to rule them all",
"24749 string to rule them all",
"24750 string to rule them all",
"24751 string to rule them all",
"24752 string to rule them all",
"24753 string to rule them all",
"24754 string to rule them all",
"24755 string to rule them all",
"24756 string to rule them all",
"24757 string to rule them all",
"24758 string to rule them all",
"24759 string to rule them all",
"24760 string to rule them all",
"24761 string to rule them all",
"24762 string to rule them all",
"24763 string to rule them all",
"24764 string to rule them all",
"24765 string to rule them all",
"24766 string to rule them all",
"24767 string to rule them all",
"24768 string to rule them all",
"24769 string to rule them all",
"24770 string to rule them all",
"24771 string to rule them all",
"24772 string to rule them all",
"24773 string to rule them all",
"24774 string to rule them all",
"24775 string to rule them all",
"24776 string to rule them all",
"24777 string to rule them all",
"24778 string to rule them all",
"24779 string to rule them all",
"24780 string to rule them all",
"24781 string to rule them all",
"24782 string to rule them all",
"24783 string to rule them all",
"24784 string to rule them all",
"24785 string to rule them all",
"24786 string to rule them all",
"24787 string to rule them all",
"24788 string to rule them all",
"24789 string to rule them all",
"24790 string to rule them all",
"24791 string to rule them all",
"24792 string to rule them all",
"24793 string to rule them all",
"24794 string to rule them all",
"24795 string to rule them all",
"24796 string to rule them all",
"24797 string to rule them all",
"24798 string to rule them all",
"24799 string to rule them all",
"24800 string to rule them all",
"24801 string to rule them all",
"24802 string to rule them all",
"24803 string to rule them all",
"24804 string to rule them all",
"24805 string to rule them all",
"24806 string to rule them all",
"24807 string to rule them all",
"24808 string to rule them all",
"24809 string to rule them all",
"24810 string to rule them all",
"24811 string to rule them all",
"24812 string to rule them all",
"24813 string to rule them all",
"24814 string to rule them all",
"24815 string to rule them all",
"24816 string to rule them all",
"24817 string to rule them all",
"24818 string to rule them all",
"24819 string to rule them all",
"24820 string to rule them all",
"24821 string to rule them all",
"24822 string to rule them all",
"24823 string to rule them all",
"24824 string to rule them all",
"24825 string to rule them all",
"24826 string to rule them all",
"24827 string to rule them all",
"24828 string to rule them all",
"24829 string to rule them all",
"24830 string to rule them all",
"24831 string to rule them all",
"24832 string to rule them all",
"24833 string to rule them all",
"24834 string to rule them all",
"24835 string to rule them all",
"24836 string to rule them all",
"24837 string to rule them all",
"24838 string to rule them all",
"24839 string to rule them all",
"24840 string to rule them all",
"24841 string to rule them all",
"24842 string to rule them all",
"24843 string to rule them all",
"24844 string to rule them all",
"24845 string to rule them all",
"24846 string to rule them all",
"24847 string to rule them all",
"24848 string to rule them all",
"24849 string to rule them all",
"24850 string to rule them all",
"24851 string to rule them all",
"24852 string to rule them all",
"24853 string to rule them all",
"24854 string to rule them all",
"24855 string to rule them all",
"24856 string to rule them all",
"24857 string to rule them all",
"24858 string to rule them all",
"24859 string to rule them all",
"24860 string to rule them all",
"24861 string to rule them all",
"24862 string to rule them all",
"24863 string to rule them all",
"24864 string to rule them all",
"24865 string to rule them all",
"24866 string to rule them all",
"24867 string to rule them all",
"24868 string to rule them all",
"24869 string to rule them all",
"24870 string to rule them all",
"24871 string to rule them all",
"24872 string to rule them all",
"24873 string to rule them all",
"24874 string to rule them all",
"24875 string to rule them all",
"24876 string to rule them all",
"24877 string to rule them all",
"24878 string to rule them all",
"24879 string to rule them all",
"24880 string to rule them all",
"24881 string to rule them all",
"24882 string to rule them all",
"24883 string to rule them all",
"24884 string to rule them all",
"24885 string to rule them all",
"24886 string to rule them all",
"24887 string to rule them all",
"24888 string to rule them all",
"24889 string to rule them all",
"24890 string to rule them all",
"24891 string to rule them all",
"24892 string to rule them all",
"24893 string to rule them all",
"24894 string to rule them all",
"24895 string to rule them all",
"24896 string to rule them all",
"24897 string to rule them all",
"24898 string to rule them all",
"24899 string to rule them all",
"24900 string to rule them all",
"24901 string to rule them all",
"24902 string to rule them all",
"24903 string to rule them all",
"24904 string to rule them all",
"24905 string to rule them all",
"24906 string to rule them all",
"24907 string to rule them all",
"24908 string to rule them all",
"24909 string to rule them all",
"24910 string to rule them all",
"24911 string to rule them all",
"24912 string to rule them all",
"24913 string to rule them all",
"24914 string to rule them all",
"24915 string to rule them all",
"24916 string to rule them all",
"24917 string to rule them all",
"24918 string to rule them all",
"24919 string to rule them all",
"24920 string to rule them all",
"24921 string to rule them all",
"24922 string to rule them all",
"24923 string to rule them all",
"24924 string to rule them all",
"24925 string to rule them all",
"24926 string to rule them all",
"24927 string to rule them all",
"24928 string to rule them all",
"24929 string to rule them all",
"24930 string to rule them all",
"24931 string to rule them all",
"24932 string to rule them all",
"24933 string to rule them all",
"24934 string to rule them all",
"24935 string to rule them all",
"24936 string to rule them all",
"24937 string to rule them all",
"24938 string to rule them all",
"24939 string to rule them all",
"24940 string to rule them all",
"24941 string to rule them all",
"24942 string to rule them all",
"24943 string to rule them all",
"24944 string to rule them all",
"24945 string to rule them all",
"24946 string to rule them all",
"24947 string to rule them all",
"24948 string to rule them all",
"24949 string to rule them all",
"24950 string to rule them all",
"24951 string to rule them all",
"24952 string to rule them all",
"24953 string to rule them all",
"24954 string to rule them all",
"24955 string to rule them all",
"24956 string to rule them all",
"24957 string to rule them all",
"24958 string to rule them all",
"24959 string to rule them all",
"24960 string to rule them all",
"24961 string to rule them all",
"24962 string to rule them all",
"24963 string to rule them all",
"24964 string to rule them all",
"24965 string to rule them all",
"24966 string to rule them all",
"24967 string to rule them all",
"24968 string to rule them all",
"24969 string to rule them all",
"24970 string to rule them all",
"24971 string to rule them all",
"24972 string to rule them all",
"24973 string to rule them all",
"24974 string to rule them all",
"24975 string to rule them all",
"24976 string to rule them all",
"24977 string to rule them all",
"24978 string to rule them all",
"24979 string to rule them all",
"24980 string to rule them all",
"24981 string to rule them all",
"24982 string to rule them all",
"24983 string to rule them all",
"24984 string to rule them all",
"24985 string to rule them all",
"24986 string to rule them all",
"24987 string to rule them all",
"24988 string to rule them all",
"24989 string to rule them all",
"24990 string to rule them all",
"24991 string to rule them all",
"24992 string to rule them all",
"24993 string to rule them all",
"24994 string to rule them all",
"24995 string to rule them all",
"24996 string to rule them all",
"24997 string to rule them all",
"24998 string to rule them all",
"24999 string to rule them all",
"25000 string to rule them all",
"25001 string to rule them all",
"25002 string to rule them all",
"25003 string to rule them all",
"25004 string to rule them all",
"25005 string to rule them all",
"25006 string to rule them all",
"25007 string to rule them all",
"25008 string to rule them all",
"25009 string to rule them all",
"25010 string to rule them all",
"25011 string to rule them all",
"25012 string to rule them all",
"25013 string to rule them all",
"25014 string to rule them all",
"25015 string to rule them all",
"25016 string to rule them all",
"25017 string to rule them all",
"25018 string to rule them all",
"25019 string to rule them all",
"25020 string to rule them all",
"25021 string to rule them all",
"25022 string to rule them all",
"25023 string to rule them all",
"25024 string to rule them all",
"25025 string to rule them all",
"25026 string to rule them all",
"25027 string to rule them all",
"25028 string to rule them all",
"25029 string to rule them all",
"25030 string to rule them all",
"25031 string to rule them all",
"25032 string to rule them all",
"25033 string to rule them all",
"25034 string to rule them all",
"25035 string to rule them all",
"25036 string to rule them all",
"25037 string to rule them all",
"25038 string to rule them all",
"25039 string to rule them all",
"25040 string to rule them all",
"25041 string to rule them all",
"25042 string to rule them all",
"25043 string to rule them all",
"25044 string to rule them all",
"25045 string to rule them all",
"25046 string to rule them all",
"25047 string to rule them all",
"25048 string to rule them all",
"25049 string to rule them all",
"25050 string to rule them all",
"25051 string to rule them all",
"25052 string to rule them all",
"25053 string to rule them all",
"25054 string to rule them all",
"25055 string to rule them all",
"25056 string to rule them all",
"25057 string to rule them all",
"25058 string to rule them all",
"25059 string to rule them all",
"25060 string to rule them all",
"25061 string to rule them all",
"25062 string to rule them all",
"25063 string to rule them all",
"25064 string to rule them all",
"25065 string to rule them all",
"25066 string to rule them all",
"25067 string to rule them all",
"25068 string to rule them all",
"25069 string to rule them all",
"25070 string to rule them all",
"25071 string to rule them all",
"25072 string to rule them all",
"25073 string to rule them all",
"25074 string to rule them all",
"25075 string to rule them all",
"25076 string to rule them all",
"25077 string to rule them all",
"25078 string to rule them all",
"25079 string to rule them all",
"25080 string to rule them all",
"25081 string to rule them all",
"25082 string to rule them all",
"25083 string to rule them all",
"25084 string to rule them all",
"25085 string to rule them all",
"25086 string to rule them all",
"25087 string to rule them all",
"25088 string to rule them all",
"25089 string to rule them all",
"25090 string to rule them all",
"25091 string to rule them all",
"25092 string to rule them all",
"25093 string to rule them all",
"25094 string to rule them all",
"25095 string to rule them all",
"25096 string to rule them all",
"25097 string to rule them all",
"25098 string to rule them all",
"25099 string to rule them all",
"25100 string to rule them all",
"25101 string to rule them all",
"25102 string to rule them all",
"25103 string to rule them all",
"25104 string to rule them all",
"25105 string to rule them all",
"25106 string to rule them all",
"25107 string to rule them all",
"25108 string to rule them all",
"25109 string to rule them all",
"25110 string to rule them all",
"25111 string to rule them all",
"25112 string to rule them all",
"25113 string to rule them all",
"25114 string to rule them all",
"25115 string to rule them all",
"25116 string to rule them all",
"25117 string to rule them all",
"25118 string to rule them all",
"25119 string to rule them all",
"25120 string to rule them all",
"25121 string to rule them all",
"25122 string to rule them all",
"25123 string to rule them all",
"25124 string to rule them all",
"25125 string to rule them all",
"25126 string to rule them all",
"25127 string to rule them all",
"25128 string to rule them all",
"25129 string to rule them all",
"25130 string to rule them all",
"25131 string to rule them all",
"25132 string to rule them all",
"25133 string to rule them all",
"25134 string to rule them all",
"25135 string to rule them all",
"25136 string to rule them all",
"25137 string to rule them all",
"25138 string to rule them all",
"25139 string to rule them all",
"25140 string to rule them all",
"25141 string to rule them all",
"25142 string to rule them all",
"25143 string to rule them all",
"25144 string to rule them all",
"25145 string to rule them all",
"25146 string to rule them all",
"25147 string to rule them all",
"25148 string to rule them all",
"25149 string to rule them all",
"25150 string to rule them all",
"25151 string to rule them all",
"25152 string to rule them all",
"25153 string to rule them all",
"25154 string to rule them all",
"25155 string to rule them all",
"25156 string to rule them all",
"25157 string to rule them all",
"25158 string to rule them all",
"25159 string to rule them all",
"25160 string to rule them all",
"25161 string to rule them all",
"25162 string to rule them all",
"25163 string to rule them all",
"25164 string to rule them all",
"25165 string to rule them all",
"25166 string to rule them all",
"25167 string to rule them all",
"25168 string to rule them all",
"25169 string to rule them all",
"25170 string to rule them all",
"25171 string to rule them all",
"25172 string to rule them all",
"25173 string to rule them all",
"25174 string to rule them all",
"25175 string to rule them all",
"25176 string to rule them all",
"25177 string to rule them all",
"25178 string to rule them all",
"25179 string to rule them all",
"25180 string to rule them all",
"25181 string to rule them all",
"25182 string to rule them all",
"25183 string to rule them all",
"25184 string to rule them all",
"25185 string to rule them all",
"25186 string to rule them all",
"25187 string to rule them all",
"25188 string to rule them all",
"25189 string to rule them all",
"25190 string to rule them all",
"25191 string to rule them all",
"25192 string to rule them all",
"25193 string to rule them all",
"25194 string to rule them all",
"25195 string to rule them all",
"25196 string to rule them all",
"25197 string to rule them all",
"25198 string to rule them all",
"25199 string to rule them all",
"25200 string to rule them all",
"25201 string to rule them all",
"25202 string to rule them all",
"25203 string to rule them all",
"25204 string to rule them all",
"25205 string to rule them all",
"25206 string to rule them all",
"25207 string to rule them all",
"25208 string to rule them all",
"25209 string to rule them all",
"25210 string to rule them all",
"25211 string to rule them all",
"25212 string to rule them all",
"25213 string to rule them all",
"25214 string to rule them all",
"25215 string to rule them all",
"25216 string to rule them all",
"25217 string to rule them all",
"25218 string to rule them all",
"25219 string to rule them all",
"25220 string to rule them all",
"25221 string to rule them all",
"25222 string to rule them all",
"25223 string to rule them all",
"25224 string to rule them all",
"25225 string to rule them all",
"25226 string to rule them all",
"25227 string to rule them all",
"25228 string to rule them all",
"25229 string to rule them all",
"25230 string to rule them all",
"25231 string to rule them all",
"25232 string to rule them all",
"25233 string to rule them all",
"25234 string to rule them all",
"25235 string to rule them all",
"25236 string to rule them all",
"25237 string to rule them all",
"25238 string to rule them all",
"25239 string to rule them all",
"25240 string to rule them all",
"25241 string to rule them all",
"25242 string to rule them all",
"25243 string to rule them all",
"25244 string to rule them all",
"25245 string to rule them all",
"25246 string to rule them all",
"25247 string to rule them all",
"25248 string to rule them all",
"25249 string to rule them all",
"25250 string to rule them all",
"25251 string to rule them all",
"25252 string to rule them all",
"25253 string to rule them all",
"25254 string to rule them all",
"25255 string to rule them all",
"25256 string to rule them all",
"25257 string to rule them all",
"25258 string to rule them all",
"25259 string to rule them all",
"25260 string to rule them all",
"25261 string to rule them all",
"25262 string to rule them all",
"25263 string to rule them all",
"25264 string to rule them all",
"25265 string to rule them all",
"25266 string to rule them all",
"25267 string to rule them all",
"25268 string to rule them all",
"25269 string to rule them all",
"25270 string to rule them all",
"25271 string to rule them all",
"25272 string to rule them all",
"25273 string to rule them all",
"25274 string to rule them all",
"25275 string to rule them all",
"25276 string to rule them all",
"25277 string to rule them all",
"25278 string to rule them all",
"25279 string to rule them all",
"25280 string to rule them all",
"25281 string to rule them all",
"25282 string to rule them all",
"25283 string to rule them all",
"25284 string to rule them all",
"25285 string to rule them all",
"25286 string to rule them all",
"25287 string to rule them all",
"25288 string to rule them all",
"25289 string to rule them all",
"25290 string to rule them all",
"25291 string to rule them all",
"25292 string to rule them all",
"25293 string to rule them all",
"25294 string to rule them all",
"25295 string to rule them all",
"25296 string to rule them all",
"25297 string to rule them all",
"25298 string to rule them all",
"25299 string to rule them all",
"25300 string to rule them all",
"25301 string to rule them all",
"25302 string to rule them all",
"25303 string to rule them all",
"25304 string to rule them all",
"25305 string to rule them all",
"25306 string to rule them all",
"25307 string to rule them all",
"25308 string to rule them all",
"25309 string to rule them all",
"25310 string to rule them all",
"25311 string to rule them all",
"25312 string to rule them all",
"25313 string to rule them all",
"25314 string to rule them all",
"25315 string to rule them all",
"25316 string to rule them all",
"25317 string to rule them all",
"25318 string to rule them all",
"25319 string to rule them all",
"25320 string to rule them all",
"25321 string to rule them all",
"25322 string to rule them all",
"25323 string to rule them all",
"25324 string to rule them all",
"25325 string to rule them all",
"25326 string to rule them all",
"25327 string to rule them all",
"25328 string to rule them all",
"25329 string to rule them all",
"25330 string to rule them all",
"25331 string to rule them all",
"25332 string to rule them all",
"25333 string to rule them all",
"25334 string to rule them all",
"25335 string to rule them all",
"25336 string to rule them all",
"25337 string to rule them all",
"25338 string to rule them all",
"25339 string to rule them all",
"25340 string to rule them all",
"25341 string to rule them all",
"25342 string to rule them all",
"25343 string to rule them all",
"25344 string to rule them all",
"25345 string to rule them all",
"25346 string to rule them all",
"25347 string to rule them all",
"25348 string to rule them all",
"25349 string to rule them all",
"25350 string to rule them all",
"25351 string to rule them all",
"25352 string to rule them all",
"25353 string to rule them all",
"25354 string to rule them all",
"25355 string to rule them all",
"25356 string to rule them all",
"25357 string to rule them all",
"25358 string to rule them all",
"25359 string to rule them all",
"25360 string to rule them all",
"25361 string to rule them all",
"25362 string to rule them all",
"25363 string to rule them all",
"25364 string to rule them all",
"25365 string to rule them all",
"25366 string to rule them all",
"25367 string to rule them all",
"25368 string to rule them all",
"25369 string to rule them all",
"25370 string to rule them all",
"25371 string to rule them all",
"25372 string to rule them all",
"25373 string to rule them all",
"25374 string to rule them all",
"25375 string to rule them all",
"25376 string to rule them all",
"25377 string to rule them all",
"25378 string to rule them all",
"25379 string to rule them all",
"25380 string to rule them all",
"25381 string to rule them all",
"25382 string to rule them all",
"25383 string to rule them all",
"25384 string to rule them all",
"25385 string to rule them all",
"25386 string to rule them all",
"25387 string to rule them all",
"25388 string to rule them all",
"25389 string to rule them all",
"25390 string to rule them all",
"25391 string to rule them all",
"25392 string to rule them all",
"25393 string to rule them all",
"25394 string to rule them all",
"25395 string to rule them all",
"25396 string to rule them all",
"25397 string to rule them all",
"25398 string to rule them all",
"25399 string to rule them all",
"25400 string to rule them all",
"25401 string to rule them all",
"25402 string to rule them all",
"25403 string to rule them all",
"25404 string to rule them all",
"25405 string to rule them all",
"25406 string to rule them all",
"25407 string to rule them all",
"25408 string to rule them all",
"25409 string to rule them all",
"25410 string to rule them all",
"25411 string to rule them all",
"25412 string to rule them all",
"25413 string to rule them all",
"25414 string to rule them all",
"25415 string to rule them all",
"25416 string to rule them all",
"25417 string to rule them all",
"25418 string to rule them all",
"25419 string to rule them all",
"25420 string to rule them all",
"25421 string to rule them all",
"25422 string to rule them all",
"25423 string to rule them all",
"25424 string to rule them all",
"25425 string to rule them all",
"25426 string to rule them all",
"25427 string to rule them all",
"25428 string to rule them all",
"25429 string to rule them all",
"25430 string to rule them all",
"25431 string to rule them all",
"25432 string to rule them all",
"25433 string to rule them all",
"25434 string to rule them all",
"25435 string to rule them all",
"25436 string to rule them all",
"25437 string to rule them all",
"25438 string to rule them all",
"25439 string to rule them all",
"25440 string to rule them all",
"25441 string to rule them all",
"25442 string to rule them all",
"25443 string to rule them all",
"25444 string to rule them all",
"25445 string to rule them all",
"25446 string to rule them all",
"25447 string to rule them all",
"25448 string to rule them all",
"25449 string to rule them all",
"25450 string to rule them all",
"25451 string to rule them all",
"25452 string to rule them all",
"25453 string to rule them all",
"25454 string to rule them all",
"25455 string to rule them all",
"25456 string to rule them all",
"25457 string to rule them all",
"25458 string to rule them all",
"25459 string to rule them all",
"25460 string to rule them all",
"25461 string to rule them all",
"25462 string to rule them all",
"25463 string to rule them all",
"25464 string to rule them all",
"25465 string to rule them all",
"25466 string to rule them all",
"25467 string to rule them all",
"25468 string to rule them all",
"25469 string to rule them all",
"25470 string to rule them all",
"25471 string to rule them all",
"25472 string to rule them all",
"25473 string to rule them all",
"25474 string to rule them all",
"25475 string to rule them all",
"25476 string to rule them all",
"25477 string to rule them all",
"25478 string to rule them all",
"25479 string to rule them all",
"25480 string to rule them all",
"25481 string to rule them all",
"25482 string to rule them all",
"25483 string to rule them all",
"25484 string to rule them all",
"25485 string to rule them all",
"25486 string to rule them all",
"25487 string to rule them all",
"25488 string to rule them all",
"25489 string to rule them all",
"25490 string to rule them all",
"25491 string to rule them all",
"25492 string to rule them all",
"25493 string to rule them all",
"25494 string to rule them all",
"25495 string to rule them all",
"25496 string to rule them all",
"25497 string to rule them all",
"25498 string to rule them all",
"25499 string to rule them all",
"25500 string to rule them all",
"25501 string to rule them all",
"25502 string to rule them all",
"25503 string to rule them all",
"25504 string to rule them all",
"25505 string to rule them all",
"25506 string to rule them all",
"25507 string to rule them all",
"25508 string to rule them all",
"25509 string to rule them all",
"25510 string to rule them all",
"25511 string to rule them all",
"25512 string to rule them all",
"25513 string to rule them all",
"25514 string to rule them all",
"25515 string to rule them all",
"25516 string to rule them all",
"25517 string to rule them all",
"25518 string to rule them all",
"25519 string to rule them all",
"25520 string to rule them all",
"25521 string to rule them all",
"25522 string to rule them all",
"25523 string to rule them all",
"25524 string to rule them all",
"25525 string to rule them all",
"25526 string to rule them all",
"25527 string to rule them all",
"25528 string to rule them all",
"25529 string to rule them all",
"25530 string to rule them all",
"25531 string to rule them all",
"25532 string to rule them all",
"25533 string to rule them all",
"25534 string to rule them all",
"25535 string to rule them all",
"25536 string to rule them all",
"25537 string to rule them all",
"25538 string to rule them all",
"25539 string to rule them all",
"25540 string to rule them all",
"25541 string to rule them all",
"25542 string to rule them all",
"25543 string to rule them all",
"25544 string to rule them all",
"25545 string to rule them all",
"25546 string to rule them all",
"25547 string to rule them all",
"25548 string to rule them all",
"25549 string to rule them all",
"25550 string to rule them all",
"25551 string to rule them all",
"25552 string to rule them all",
"25553 string to rule them all",
"25554 string to rule them all",
"25555 string to rule them all",
"25556 string to rule them all",
"25557 string to rule them all",
"25558 string to rule them all",
"25559 string to rule them all",
"25560 string to rule them all",
"25561 string to rule them all",
"25562 string to rule them all",
"25563 string to rule them all",
"25564 string to rule them all",
"25565 string to rule them all",
"25566 string to rule them all",
"25567 string to rule them all",
"25568 string to rule them all",
"25569 string to rule them all",
"25570 string to rule them all",
"25571 string to rule them all",
"25572 string to rule them all",
"25573 string to rule them all",
"25574 string to rule them all",
"25575 string to rule them all",
"25576 string to rule them all",
"25577 string to rule them all",
"25578 string to rule them all",
"25579 string to rule them all",
"25580 string to rule them all",
"25581 string to rule them all",
"25582 string to rule them all",
"25583 string to rule them all",
"25584 string to rule them all",
"25585 string to rule them all",
"25586 string to rule them all",
"25587 string to rule them all",
"25588 string to rule them all",
"25589 string to rule them all",
"25590 string to rule them all",
"25591 string to rule them all",
"25592 string to rule them all",
"25593 string to rule them all",
"25594 string to rule them all",
"25595 string to rule them all",
"25596 string to rule them all",
"25597 string to rule them all",
"25598 string to rule them all",
"25599 string to rule them all",
"25600 string to rule them all",
"25601 string to rule them all",
"25602 string to rule them all",
"25603 string to rule them all",
"25604 string to rule them all",
"25605 string to rule them all",
"25606 string to rule them all",
"25607 string to rule them all",
"25608 string to rule them all",
"25609 string to rule them all",
"25610 string to rule them all",
"25611 string to rule them all",
"25612 string to rule them all",
"25613 string to rule them all",
"25614 string to rule them all",
"25615 string to rule them all",
"25616 string to rule them all",
"25617 string to rule them all",
"25618 string to rule them all",
"25619 string to rule them all",
"25620 string to rule them all",
"25621 string to rule them all",
"25622 string to rule them all",
"25623 string to rule them all",
"25624 string to rule them all",
"25625 string to rule them all",
"25626 string to rule them all",
"25627 string to rule them all",
"25628 string to rule them all",
"25629 string to rule them all",
"25630 string to rule them all",
"25631 string to rule them all",
"25632 string to rule them all",
"25633 string to rule them all",
"25634 string to rule them all",
"25635 string to rule them all",
"25636 string to rule them all",
"25637 string to rule them all",
"25638 string to rule them all",
"25639 string to rule them all",
"25640 string to rule them all",
"25641 string to rule them all",
"25642 string to rule them all",
"25643 string to rule them all",
"25644 string to rule them all",
"25645 string to rule them all",
"25646 string to rule them all",
"25647 string to rule them all",
"25648 string to rule them all",
"25649 string to rule them all",
"25650 string to rule them all",
"25651 string to rule them all",
"25652 string to rule them all",
"25653 string to rule them all",
"25654 string to rule them all",
"25655 string to rule them all",
"25656 string to rule them all",
"25657 string to rule them all",
"25658 string to rule them all",
"25659 string to rule them all",
"25660 string to rule them all",
"25661 string to rule them all",
"25662 string to rule them all",
"25663 string to rule them all",
"25664 string to rule them all",
"25665 string to rule them all",
"25666 string to rule them all",
"25667 string to rule them all",
"25668 string to rule them all",
"25669 string to rule them all",
"25670 string to rule them all",
"25671 string to rule them all",
"25672 string to rule them all",
"25673 string to rule them all",
"25674 string to rule them all",
"25675 string to rule them all",
"25676 string to rule them all",
"25677 string to rule them all",
"25678 string to rule them all",
"25679 string to rule them all",
"25680 string to rule them all",
"25681 string to rule them all",
"25682 string to rule them all",
"25683 string to rule them all",
"25684 string to rule them all",
"25685 string to rule them all",
"25686 string to rule them all",
"25687 string to rule them all",
"25688 string to rule them all",
"25689 string to rule them all",
"25690 string to rule them all",
"25691 string to rule them all",
"25692 string to rule them all",
"25693 string to rule them all",
"25694 string to rule them all",
"25695 string to rule them all",
"25696 string to rule them all",
"25697 string to rule them all",
"25698 string to rule them all",
"25699 string to rule them all",
"25700 string to rule them all",
"25701 string to rule them all",
"25702 string to rule them all",
"25703 string to rule them all",
"25704 string to rule them all",
"25705 string to rule them all",
"25706 string to rule them all",
"25707 string to rule them all",
"25708 string to rule them all",
"25709 string to rule them all",
"25710 string to rule them all",
"25711 string to rule them all",
"25712 string to rule them all",
"25713 string to rule them all",
"25714 string to rule them all",
"25715 string to rule them all",
"25716 string to rule them all",
"25717 string to rule them all",
"25718 string to rule them all",
"25719 string to rule them all",
"25720 string to rule them all",
"25721 string to rule them all",
"25722 string to rule them all",
"25723 string to rule them all",
"25724 string to rule them all",
"25725 string to rule them all",
"25726 string to rule them all",
"25727 string to rule them all",
"25728 string to rule them all",
"25729 string to rule them all",
"25730 string to rule them all",
"25731 string to rule them all",
"25732 string to rule them all",
"25733 string to rule them all",
"25734 string to rule them all",
"25735 string to rule them all",
"25736 string to rule them all",
"25737 string to rule them all",
"25738 string to rule them all",
"25739 string to rule them all",
"25740 string to rule them all",
"25741 string to rule them all",
"25742 string to rule them all",
"25743 string to rule them all",
"25744 string to rule them all",
"25745 string to rule them all",
"25746 string to rule them all",
"25747 string to rule them all",
"25748 string to rule them all",
"25749 string to rule them all",
"25750 string to rule them all",
"25751 string to rule them all",
"25752 string to rule them all",
"25753 string to rule them all",
"25754 string to rule them all",
"25755 string to rule them all",
"25756 string to rule them all",
"25757 string to rule them all",
"25758 string to rule them all",
"25759 string to rule them all",
"25760 string to rule them all",
"25761 string to rule them all",
"25762 string to rule them all",
"25763 string to rule them all",
"25764 string to rule them all",
"25765 string to rule them all",
"25766 string to rule them all",
"25767 string to rule them all",
"25768 string to rule them all",
"25769 string to rule them all",
"25770 string to rule them all",
"25771 string to rule them all",
"25772 string to rule them all",
"25773 string to rule them all",
"25774 string to rule them all",
"25775 string to rule them all",
"25776 string to rule them all",
"25777 string to rule them all",
"25778 string to rule them all",
"25779 string to rule them all",
"25780 string to rule them all",
"25781 string to rule them all",
"25782 string to rule them all",
"25783 string to rule them all",
"25784 string to rule them all",
"25785 string to rule them all",
"25786 string to rule them all",
"25787 string to rule them all",
"25788 string to rule them all",
"25789 string to rule them all",
"25790 string to rule them all",
"25791 string to rule them all",
"25792 string to rule them all",
"25793 string to rule them all",
"25794 string to rule them all",
"25795 string to rule them all",
"25796 string to rule them all",
"25797 string to rule them all",
"25798 string to rule them all",
"25799 string to rule them all",
"25800 string to rule them all",
"25801 string to rule them all",
"25802 string to rule them all",
"25803 string to rule them all",
"25804 string to rule them all",
"25805 string to rule them all",
"25806 string to rule them all",
"25807 string to rule them all",
"25808 string to rule them all",
"25809 string to rule them all",
"25810 string to rule them all",
"25811 string to rule them all",
"25812 string to rule them all",
"25813 string to rule them all",
"25814 string to rule them all",
"25815 string to rule them all",
"25816 string to rule them all",
"25817 string to rule them all",
"25818 string to rule them all",
"25819 string to rule them all",
"25820 string to rule them all",
"25821 string to rule them all",
"25822 string to rule them all",
"25823 string to rule them all",
"25824 string to rule them all",
"25825 string to rule them all",
"25826 string to rule them all",
"25827 string to rule them all",
"25828 string to rule them all",
"25829 string to rule them all",
"25830 string to rule them all",
"25831 string to rule them all",
"25832 string to rule them all",
"25833 string to rule them all",
"25834 string to rule them all",
"25835 string to rule them all",
"25836 string to rule them all",
"25837 string to rule them all",
"25838 string to rule them all",
"25839 string to rule them all",
"25840 string to rule them all",
"25841 string to rule them all",
"25842 string to rule them all",
"25843 string to rule them all",
"25844 string to rule them all",
"25845 string to rule them all",
"25846 string to rule them all",
"25847 string to rule them all",
"25848 string to rule them all",
"25849 string to rule them all",
"25850 string to rule them all",
"25851 string to rule them all",
"25852 string to rule them all",
"25853 string to rule them all",
"25854 string to rule them all",
"25855 string to rule them all",
"25856 string to rule them all",
"25857 string to rule them all",
"25858 string to rule them all",
"25859 string to rule them all",
"25860 string to rule them all",
"25861 string to rule them all",
"25862 string to rule them all",
"25863 string to rule them all",
"25864 string to rule them all",
"25865 string to rule them all",
"25866 string to rule them all",
"25867 string to rule them all",
"25868 string to rule them all",
"25869 string to rule them all",
"25870 string to rule them all",
"25871 string to rule them all",
"25872 string to rule them all",
"25873 string to rule them all",
"25874 string to rule them all",
"25875 string to rule them all",
"25876 string to rule them all",
"25877 string to rule them all",
"25878 string to rule them all",
"25879 string to rule them all",
"25880 string to rule them all",
"25881 string to rule them all",
"25882 string to rule them all",
"25883 string to rule them all",
"25884 string to rule them all",
"25885 string to rule them all",
"25886 string to rule them all",
"25887 string to rule them all",
"25888 string to rule them all",
"25889 string to rule them all",
"25890 string to rule them all",
"25891 string to rule them all",
"25892 string to rule them all",
"25893 string to rule them all",
"25894 string to rule them all",
"25895 string to rule them all",
"25896 string to rule them all",
"25897 string to rule them all",
"25898 string to rule them all",
"25899 string to rule them all",
"25900 string to rule them all",
"25901 string to rule them all",
"25902 string to rule them all",
"25903 string to rule them all",
"25904 string to rule them all",
"25905 string to rule them all",
"25906 string to rule them all",
"25907 string to rule them all",
"25908 string to rule them all",
"25909 string to rule them all",
"25910 string to rule them all",
"25911 string to rule them all",
"25912 string to rule them all",
"25913 string to rule them all",
"25914 string to rule them all",
"25915 string to rule them all",
"25916 string to rule them all",
"25917 string to rule them all",
"25918 string to rule them all",
"25919 string to rule them all",
"25920 string to rule them all",
"25921 string to rule them all",
"25922 string to rule them all",
"25923 string to rule them all",
"25924 string to rule them all",
"25925 string to rule them all",
"25926 string to rule them all",
"25927 string to rule them all",
"25928 string to rule them all",
"25929 string to rule them all",
"25930 string to rule them all",
"25931 string to rule them all",
"25932 string to rule them all",
"25933 string to rule them all",
"25934 string to rule them all",
"25935 string to rule them all",
"25936 string to rule them all",
"25937 string to rule them all",
"25938 string to rule them all",
"25939 string to rule them all",
"25940 string to rule them all",
"25941 string to rule them all",
"25942 string to rule them all",
"25943 string to rule them all",
"25944 string to rule them all",
"25945 string to rule them all",
"25946 string to rule them all",
"25947 string to rule them all",
"25948 string to rule them all",
"25949 string to rule them all",
"25950 string to rule them all",
"25951 string to rule them all",
"25952 string to rule them all",
"25953 string to rule them all",
"25954 string to rule them all",
"25955 string to rule them all",
"25956 string to rule them all",
"25957 string to rule them all",
"25958 string to rule them all",
"25959 string to rule them all",
"25960 string to rule them all",
"25961 string to rule them all",
"25962 string to rule them all",
"25963 string to rule them all",
"25964 string to rule them all",
"25965 string to rule them all",
"25966 string to rule them all",
"25967 string to rule them all",
"25968 string to rule them all",
"25969 string to rule them all",
"25970 string to rule them all",
"25971 string to rule them all",
"25972 string to rule them all",
"25973 string to rule them all",
"25974 string to rule them all",
"25975 string to rule them all",
"25976 string to rule them all",
"25977 string to rule them all",
"25978 string to rule them all",
"25979 string to rule them all",
"25980 string to rule them all",
"25981 string to rule them all",
"25982 string to rule them all",
"25983 string to rule them all",
"25984 string to rule them all",
"25985 string to rule them all",
"25986 string to rule them all",
"25987 string to rule them all",
"25988 string to rule them all",
"25989 string to rule them all",
"25990 string to rule them all",
"25991 string to rule them all",
"25992 string to rule them all",
"25993 string to rule them all",
"25994 string to rule them all",
"25995 string to rule them all",
"25996 string to rule them all",
"25997 string to rule them all",
"25998 string to rule them all",
"25999 string to rule them all",
"26000 string to rule them all",
"26001 string to rule them all",
"26002 string to rule them all",
"26003 string to rule them all",
"26004 string to rule them all",
"26005 string to rule them all",
"26006 string to rule them all",
"26007 string to rule them all",
"26008 string to rule them all",
"26009 string to rule them all",
"26010 string to rule them all",
"26011 string to rule them all",
"26012 string to rule them all",
"26013 string to rule them all",
"26014 string to rule them all",
"26015 string to rule them all",
"26016 string to rule them all",
"26017 string to rule them all",
"26018 string to rule them all",
"26019 string to rule them all",
"26020 string to rule them all",
"26021 string to rule them all",
"26022 string to rule them all",
"26023 string to rule them all",
"26024 string to rule them all",
"26025 string to rule them all",
"26026 string to rule them all",
"26027 string to rule them all",
"26028 string to rule them all",
"26029 string to rule them all",
"26030 string to rule them all",
"26031 string to rule them all",
"26032 string to rule them all",
"26033 string to rule them all",
"26034 string to rule them all",
"26035 string to rule them all",
"26036 string to rule them all",
"26037 string to rule them all",
"26038 string to rule them all",
"26039 string to rule them all",
"26040 string to rule them all",
"26041 string to rule them all",
"26042 string to rule them all",
"26043 string to rule them all",
"26044 string to rule them all",
"26045 string to rule them all",
"26046 string to rule them all",
"26047 string to rule them all",
"26048 string to rule them all",
"26049 string to rule them all",
"26050 string to rule them all",
"26051 string to rule them all",
"26052 string to rule them all",
"26053 string to rule them all",
"26054 string to rule them all",
"26055 string to rule them all",
"26056 string to rule them all",
"26057 string to rule them all",
"26058 string to rule them all",
"26059 string to rule them all",
"26060 string to rule them all",
"26061 string to rule them all",
"26062 string to rule them all",
"26063 string to rule them all",
"26064 string to rule them all",
"26065 string to rule them all",
"26066 string to rule them all",
"26067 string to rule them all",
"26068 string to rule them all",
"26069 string to rule them all",
"26070 string to rule them all",
"26071 string to rule them all",
"26072 string to rule them all",
"26073 string to rule them all",
"26074 string to rule them all",
"26075 string to rule them all",
"26076 string to rule them all",
"26077 string to rule them all",
"26078 string to rule them all",
"26079 string to rule them all",
"26080 string to rule them all",
"26081 string to rule them all",
"26082 string to rule them all",
"26083 string to rule them all",
"26084 string to rule them all",
"26085 string to rule them all",
"26086 string to rule them all",
"26087 string to rule them all",
"26088 string to rule them all",
"26089 string to rule them all",
"26090 string to rule them all",
"26091 string to rule them all",
"26092 string to rule them all",
"26093 string to rule them all",
"26094 string to rule them all",
"26095 string to rule them all",
"26096 string to rule them all",
"26097 string to rule them all",
"26098 string to rule them all",
"26099 string to rule them all",
"26100 string to rule them all",
"26101 string to rule them all",
"26102 string to rule them all",
"26103 string to rule them all",
"26104 string to rule them all",
"26105 string to rule them all",
"26106 string to rule them all",
"26107 string to rule them all",
"26108 string to rule them all",
"26109 string to rule them all",
"26110 string to rule them all",
"26111 string to rule them all",
"26112 string to rule them all",
"26113 string to rule them all",
"26114 string to rule them all",
"26115 string to rule them all",
"26116 string to rule them all",
"26117 string to rule them all",
"26118 string to rule them all",
"26119 string to rule them all",
"26120 string to rule them all",
"26121 string to rule them all",
"26122 string to rule them all",
"26123 string to rule them all",
"26124 string to rule them all",
"26125 string to rule them all",
"26126 string to rule them all",
"26127 string to rule them all",
"26128 string to rule them all",
"26129 string to rule them all",
"26130 string to rule them all",
"26131 string to rule them all",
"26132 string to rule them all",
"26133 string to rule them all",
"26134 string to rule them all",
"26135 string to rule them all",
"26136 string to rule them all",
"26137 string to rule them all",
"26138 string to rule them all",
"26139 string to rule them all",
"26140 string to rule them all",
"26141 string to rule them all",
"26142 string to rule them all",
"26143 string to rule them all",
"26144 string to rule them all",
"26145 string to rule them all",
"26146 string to rule them all",
"26147 string to rule them all",
"26148 string to rule them all",
"26149 string to rule them all",
"26150 string to rule them all",
"26151 string to rule them all",
"26152 string to rule them all",
"26153 string to rule them all",
"26154 string to rule them all",
"26155 string to rule them all",
"26156 string to rule them all",
"26157 string to rule them all",
"26158 string to rule them all",
"26159 string to rule them all",
"26160 string to rule them all",
"26161 string to rule them all",
"26162 string to rule them all",
"26163 string to rule them all",
"26164 string to rule them all",
"26165 string to rule them all",
"26166 string to rule them all",
"26167 string to rule them all",
"26168 string to rule them all",
"26169 string to rule them all",
"26170 string to rule them all",
"26171 string to rule them all",
"26172 string to rule them all",
"26173 string to rule them all",
"26174 string to rule them all",
"26175 string to rule them all",
"26176 string to rule them all",
"26177 string to rule them all",
"26178 string to rule them all",
"26179 string to rule them all",
"26180 string to rule them all",
"26181 string to rule them all",
"26182 string to rule them all",
"26183 string to rule them all",
"26184 string to rule them all",
"26185 string to rule them all",
"26186 string to rule them all",
"26187 string to rule them all",
"26188 string to rule them all",
"26189 string to rule them all",
"26190 string to rule them all",
"26191 string to rule them all",
"26192 string to rule them all",
"26193 string to rule them all",
"26194 string to rule them all",
"26195 string to rule them all",
"26196 string to rule them all",
"26197 string to rule them all",
"26198 string to rule them all",
"26199 string to rule them all",
"26200 string to rule them all",
"26201 string to rule them all",
"26202 string to rule them all",
"26203 string to rule them all",
"26204 string to rule them all",
"26205 string to rule them all",
"26206 string to rule them all",
"26207 string to rule them all",
"26208 string to rule them all",
"26209 string to rule them all",
"26210 string to rule them all",
"26211 string to rule them all",
"26212 string to rule them all",
"26213 string to rule them all",
"26214 string to rule them all",
"26215 string to rule them all",
"26216 string to rule them all",
"26217 string to rule them all",
"26218 string to rule them all",
"26219 string to rule them all",
"26220 string to rule them all",
"26221 string to rule them all",
"26222 string to rule them all",
"26223 string to rule them all",
"26224 string to rule them all",
"26225 string to rule them all",
"26226 string to rule them all",
"26227 string to rule them all",
"26228 string to rule them all",
"26229 string to rule them all",
"26230 string to rule them all",
"26231 string to rule them all",
"26232 string to rule them all",
"26233 string to rule them all",
"26234 string to rule them all",
"26235 string to rule them all",
"26236 string to rule them all",
"26237 string to rule them all",
"26238 string to rule them all",
"26239 string to rule them all",
"26240 string to rule them all",
"26241 string to rule them all",
"26242 string to rule them all",
"26243 string to rule them all",
"26244 string to rule them all",
"26245 string to rule them all",
"26246 string to rule them all",
"26247 string to rule them all",
"26248 string to rule them all",
"26249 string to rule them all",
"26250 string to rule them all",
"26251 string to rule them all",
"26252 string to rule them all",
"26253 string to rule them all",
"26254 string to rule them all",
"26255 string to rule them all",
"26256 string to rule them all",
"26257 string to rule them all",
"26258 string to rule them all",
"26259 string to rule them all",
"26260 string to rule them all",
"26261 string to rule them all",
"26262 string to rule them all",
"26263 string to rule them all",
"26264 string to rule them all",
"26265 string to rule them all",
"26266 string to rule them all",
"26267 string to rule them all",
"26268 string to rule them all",
"26269 string to rule them all",
"26270 string to rule them all",
"26271 string to rule them all",
"26272 string to rule them all",
"26273 string to rule them all",
"26274 string to rule them all",
"26275 string to rule them all",
"26276 string to rule them all",
"26277 string to rule them all",
"26278 string to rule them all",
"26279 string to rule them all",
"26280 string to rule them all",
"26281 string to rule them all",
"26282 string to rule them all",
"26283 string to rule them all",
"26284 string to rule them all",
"26285 string to rule them all",
"26286 string to rule them all",
"26287 string to rule them all",
"26288 string to rule them all",
"26289 string to rule them all",
"26290 string to rule them all",
"26291 string to rule them all",
"26292 string to rule them all",
"26293 string to rule them all",
"26294 string to rule them all",
"26295 string to rule them all",
"26296 string to rule them all",
"26297 string to rule them all",
"26298 string to rule them all",
"26299 string to rule them all",
"26300 string to rule them all",
"26301 string to rule them all",
"26302 string to rule them all",
"26303 string to rule them all",
"26304 string to rule them all",
"26305 string to rule them all",
"26306 string to rule them all",
"26307 string to rule them all",
"26308 string to rule them all",
"26309 string to rule them all",
"26310 string to rule them all",
"26311 string to rule them all",
"26312 string to rule them all",
"26313 string to rule them all",
"26314 string to rule them all",
"26315 string to rule them all",
"26316 string to rule them all",
"26317 string to rule them all",
"26318 string to rule them all",
"26319 string to rule them all",
"26320 string to rule them all",
"26321 string to rule them all",
"26322 string to rule them all",
"26323 string to rule them all",
"26324 string to rule them all",
"26325 string to rule them all",
"26326 string to rule them all",
"26327 string to rule them all",
"26328 string to rule them all",
"26329 string to rule them all",
"26330 string to rule them all",
"26331 string to rule them all",
"26332 string to rule them all",
"26333 string to rule them all",
"26334 string to rule them all",
"26335 string to rule them all",
"26336 string to rule them all",
"26337 string to rule them all",
"26338 string to rule them all",
"26339 string to rule them all",
"26340 string to rule them all",
"26341 string to rule them all",
"26342 string to rule them all",
"26343 string to rule them all",
"26344 string to rule them all",
"26345 string to rule them all",
"26346 string to rule them all",
"26347 string to rule them all",
"26348 string to rule them all",
"26349 string to rule them all",
"26350 string to rule them all",
"26351 string to rule them all",
"26352 string to rule them all",
"26353 string to rule them all",
"26354 string to rule them all",
"26355 string to rule them all",
"26356 string to rule them all",
"26357 string to rule them all",
"26358 string to rule them all",
"26359 string to rule them all",
"26360 string to rule them all",
"26361 string to rule them all",
"26362 string to rule them all",
"26363 string to rule them all",
"26364 string to rule them all",
"26365 string to rule them all",
"26366 string to rule them all",
"26367 string to rule them all",
"26368 string to rule them all",
"26369 string to rule them all",
"26370 string to rule them all",
"26371 string to rule them all",
"26372 string to rule them all",
"26373 string to rule them all",
"26374 string to rule them all",
"26375 string to rule them all",
"26376 string to rule them all",
"26377 string to rule them all",
"26378 string to rule them all",
"26379 string to rule them all",
"26380 string to rule them all",
"26381 string to rule them all",
"26382 string to rule them all",
"26383 string to rule them all",
"26384 string to rule them all",
"26385 string to rule them all",
"26386 string to rule them all",
"26387 string to rule them all",
"26388 string to rule them all",
"26389 string to rule them all",
"26390 string to rule them all",
"26391 string to rule them all",
"26392 string to rule them all",
"26393 string to rule them all",
"26394 string to rule them all",
"26395 string to rule them all",
"26396 string to rule them all",
"26397 string to rule them all",
"26398 string to rule them all",
"26399 string to rule them all",
"26400 string to rule them all",
"26401 string to rule them all",
"26402 string to rule them all",
"26403 string to rule them all",
"26404 string to rule them all",
"26405 string to rule them all",
"26406 string to rule them all",
"26407 string to rule them all",
"26408 string to rule them all",
"26409 string to rule them all",
"26410 string to rule them all",
"26411 string to rule them all",
"26412 string to rule them all",
"26413 string to rule them all",
"26414 string to rule them all",
"26415 string to rule them all",
"26416 string to rule them all",
"26417 string to rule them all",
"26418 string to rule them all",
"26419 string to rule them all",
"26420 string to rule them all",
"26421 string to rule them all",
"26422 string to rule them all",
"26423 string to rule them all",
"26424 string to rule them all",
"26425 string to rule them all",
"26426 string to rule them all",
"26427 string to rule them all",
"26428 string to rule them all",
"26429 string to rule them all",
"26430 string to rule them all",
"26431 string to rule them all",
"26432 string to rule them all",
"26433 string to rule them all",
"26434 string to rule them all",
"26435 string to rule them all",
"26436 string to rule them all",
"26437 string to rule them all",
"26438 string to rule them all",
"26439 string to rule them all",
"26440 string to rule them all",
"26441 string to rule them all",
"26442 string to rule them all",
"26443 string to rule them all",
"26444 string to rule them all",
"26445 string to rule them all",
"26446 string to rule them all",
"26447 string to rule them all",
"26448 string to rule them all",
"26449 string to rule them all",
"26450 string to rule them all",
"26451 string to rule them all",
"26452 string to rule them all",
"26453 string to rule them all",
"26454 string to rule them all",
"26455 string to rule them all",
"26456 string to rule them all",
"26457 string to rule them all",
"26458 string to rule them all",
"26459 string to rule them all",
"26460 string to rule them all",
"26461 string to rule them all",
"26462 string to rule them all",
"26463 string to rule them all",
"26464 string to rule them all",
"26465 string to rule them all",
"26466 string to rule them all",
"26467 string to rule them all",
"26468 string to rule them all",
"26469 string to rule them all",
"26470 string to rule them all",
"26471 string to rule them all",
"26472 string to rule them all",
"26473 string to rule them all",
"26474 string to rule them all",
"26475 string to rule them all",
"26476 string to rule them all",
"26477 string to rule them all",
"26478 string to rule them all",
"26479 string to rule them all",
"26480 string to rule them all",
"26481 string to rule them all",
"26482 string to rule them all",
"26483 string to rule them all",
"26484 string to rule them all",
"26485 string to rule them all",
"26486 string to rule them all",
"26487 string to rule them all",
"26488 string to rule them all",
"26489 string to rule them all",
"26490 string to rule them all",
"26491 string to rule them all",
"26492 string to rule them all",
"26493 string to rule them all",
"26494 string to rule them all",
"26495 string to rule them all",
"26496 string to rule them all",
"26497 string to rule them all",
"26498 string to rule them all",
"26499 string to rule them all",
"26500 string to rule them all",
"26501 string to rule them all",
"26502 string to rule them all",
"26503 string to rule them all",
"26504 string to rule them all",
"26505 string to rule them all",
"26506 string to rule them all",
"26507 string to rule them all",
"26508 string to rule them all",
"26509 string to rule them all",
"26510 string to rule them all",
"26511 string to rule them all",
"26512 string to rule them all",
"26513 string to rule them all",
"26514 string to rule them all",
"26515 string to rule them all",
"26516 string to rule them all",
"26517 string to rule them all",
"26518 string to rule them all",
"26519 string to rule them all",
"26520 string to rule them all",
"26521 string to rule them all",
"26522 string to rule them all",
"26523 string to rule them all",
"26524 string to rule them all",
"26525 string to rule them all",
"26526 string to rule them all",
"26527 string to rule them all",
"26528 string to rule them all",
"26529 string to rule them all",
"26530 string to rule them all",
"26531 string to rule them all",
"26532 string to rule them all",
"26533 string to rule them all",
"26534 string to rule them all",
"26535 string to rule them all",
"26536 string to rule them all",
"26537 string to rule them all",
"26538 string to rule them all",
"26539 string to rule them all",
"26540 string to rule them all",
"26541 string to rule them all",
"26542 string to rule them all",
"26543 string to rule them all",
"26544 string to rule them all",
"26545 string to rule them all",
"26546 string to rule them all",
"26547 string to rule them all",
"26548 string to rule them all",
"26549 string to rule them all",
"26550 string to rule them all",
"26551 string to rule them all",
"26552 string to rule them all",
"26553 string to rule them all",
"26554 string to rule them all",
"26555 string to rule them all",
"26556 string to rule them all",
"26557 string to rule them all",
"26558 string to rule them all",
"26559 string to rule them all",
"26560 string to rule them all",
"26561 string to rule them all",
"26562 string to rule them all",
"26563 string to rule them all",
"26564 string to rule them all",
"26565 string to rule them all",
"26566 string to rule them all",
"26567 string to rule them all",
"26568 string to rule them all",
"26569 string to rule them all",
"26570 string to rule them all",
"26571 string to rule them all",
"26572 string to rule them all",
"26573 string to rule them all",
"26574 string to rule them all",
"26575 string to rule them all",
"26576 string to rule them all",
"26577 string to rule them all",
"26578 string to rule them all",
"26579 string to rule them all",
"26580 string to rule them all",
"26581 string to rule them all",
"26582 string to rule them all",
"26583 string to rule them all",
"26584 string to rule them all",
"26585 string to rule them all",
"26586 string to rule them all",
"26587 string to rule them all",
"26588 string to rule them all",
"26589 string to rule them all",
"26590 string to rule them all",
"26591 string to rule them all",
"26592 string to rule them all",
"26593 string to rule them all",
"26594 string to rule them all",
"26595 string to rule them all",
"26596 string to rule them all",
"26597 string to rule them all",
"26598 string to rule them all",
"26599 string to rule them all",
"26600 string to rule them all",
"26601 string to rule them all",
"26602 string to rule them all",
"26603 string to rule them all",
"26604 string to rule them all",
"26605 string to rule them all",
"26606 string to rule them all",
"26607 string to rule them all",
"26608 string to rule them all",
"26609 string to rule them all",
"26610 string to rule them all",
"26611 string to rule them all",
"26612 string to rule them all",
"26613 string to rule them all",
"26614 string to rule them all",
"26615 string to rule them all",
"26616 string to rule them all",
"26617 string to rule them all",
"26618 string to rule them all",
"26619 string to rule them all",
"26620 string to rule them all",
"26621 string to rule them all",
"26622 string to rule them all",
"26623 string to rule them all",
"26624 string to rule them all",
"26625 string to rule them all",
"26626 string to rule them all",
"26627 string to rule them all",
"26628 string to rule them all",
"26629 string to rule them all",
"26630 string to rule them all",
"26631 string to rule them all",
"26632 string to rule them all",
"26633 string to rule them all",
"26634 string to rule them all",
"26635 string to rule them all",
"26636 string to rule them all",
"26637 string to rule them all",
"26638 string to rule them all",
"26639 string to rule them all",
"26640 string to rule them all",
"26641 string to rule them all",
"26642 string to rule them all",
"26643 string to rule them all",
"26644 string to rule them all",
"26645 string to rule them all",
"26646 string to rule them all",
"26647 string to rule them all",
"26648 string to rule them all",
"26649 string to rule them all",
"26650 string to rule them all",
"26651 string to rule them all",
"26652 string to rule them all",
"26653 string to rule them all",
"26654 string to rule them all",
"26655 string to rule them all",
"26656 string to rule them all",
"26657 string to rule them all",
"26658 string to rule them all",
"26659 string to rule them all",
"26660 string to rule them all",
"26661 string to rule them all",
"26662 string to rule them all",
"26663 string to rule them all",
"26664 string to rule them all",
"26665 string to rule them all",
"26666 string to rule them all",
"26667 string to rule them all",
"26668 string to rule them all",
"26669 string to rule them all",
"26670 string to rule them all",
"26671 string to rule them all",
"26672 string to rule them all",
"26673 string to rule them all",
"26674 string to rule them all",
"26675 string to rule them all",
"26676 string to rule them all",
"26677 string to rule them all",
"26678 string to rule them all",
"26679 string to rule them all",
"26680 string to rule them all",
"26681 string to rule them all",
"26682 string to rule them all",
"26683 string to rule them all",
"26684 string to rule them all",
"26685 string to rule them all",
"26686 string to rule them all",
"26687 string to rule them all",
"26688 string to rule them all",
"26689 string to rule them all",
"26690 string to rule them all",
"26691 string to rule them all",
"26692 string to rule them all",
"26693 string to rule them all",
"26694 string to rule them all",
"26695 string to rule them all",
"26696 string to rule them all",
"26697 string to rule them all",
"26698 string to rule them all",
"26699 string to rule them all",
"26700 string to rule them all",
"26701 string to rule them all",
"26702 string to rule them all",
"26703 string to rule them all",
"26704 string to rule them all",
"26705 string to rule them all",
"26706 string to rule them all",
"26707 string to rule them all",
"26708 string to rule them all",
"26709 string to rule them all",
"26710 string to rule them all",
"26711 string to rule them all",
"26712 string to rule them all",
"26713 string to rule them all",
"26714 string to rule them all",
"26715 string to rule them all",
"26716 string to rule them all",
"26717 string to rule them all",
"26718 string to rule them all",
"26719 string to rule them all",
"26720 string to rule them all",
"26721 string to rule them all",
"26722 string to rule them all",
"26723 string to rule them all",
"26724 string to rule them all",
"26725 string to rule them all",
"26726 string to rule them all",
"26727 string to rule them all",
"26728 string to rule them all",
"26729 string to rule them all",
"26730 string to rule them all",
"26731 string to rule them all",
"26732 string to rule them all",
"26733 string to rule them all",
"26734 string to rule them all",
"26735 string to rule them all",
"26736 string to rule them all",
"26737 string to rule them all",
"26738 string to rule them all",
"26739 string to rule them all",
"26740 string to rule them all",
"26741 string to rule them all",
"26742 string to rule them all",
"26743 string to rule them all",
"26744 string to rule them all",
"26745 string to rule them all",
"26746 string to rule them all",
"26747 string to rule them all",
"26748 string to rule them all",
"26749 string to rule them all",
"26750 string to rule them all",
"26751 string to rule them all",
"26752 string to rule them all",
"26753 string to rule them all",
"26754 string to rule them all",
"26755 string to rule them all",
"26756 string to rule them all",
"26757 string to rule them all",
"26758 string to rule them all",
"26759 string to rule them all",
"26760 string to rule them all",
"26761 string to rule them all",
"26762 string to rule them all",
"26763 string to rule them all",
"26764 string to rule them all",
"26765 string to rule them all",
"26766 string to rule them all",
"26767 string to rule them all",
"26768 string to rule them all",
"26769 string to rule them all",
"26770 string to rule them all",
"26771 string to rule them all",
"26772 string to rule them all",
"26773 string to rule them all",
"26774 string to rule them all",
"26775 string to rule them all",
"26776 string to rule them all",
"26777 string to rule them all",
"26778 string to rule them all",
"26779 string to rule them all",
"26780 string to rule them all",
"26781 string to rule them all",
"26782 string to rule them all",
"26783 string to rule them all",
"26784 string to rule them all",
"26785 string to rule them all",
"26786 string to rule them all",
"26787 string to rule them all",
"26788 string to rule them all",
"26789 string to rule them all",
"26790 string to rule them all",
"26791 string to rule them all",
"26792 string to rule them all",
"26793 string to rule them all",
"26794 string to rule them all",
"26795 string to rule them all",
"26796 string to rule them all",
"26797 string to rule them all",
"26798 string to rule them all",
"26799 string to rule them all",
"26800 string to rule them all",
"26801 string to rule them all",
"26802 string to rule them all",
"26803 string to rule them all",
"26804 string to rule them all",
"26805 string to rule them all",
"26806 string to rule them all",
"26807 string to rule them all",
"26808 string to rule them all",
"26809 string to rule them all",
"26810 string to rule them all",
"26811 string to rule them all",
"26812 string to rule them all",
"26813 string to rule them all",
"26814 string to rule them all",
"26815 string to rule them all",
"26816 string to rule them all",
"26817 string to rule them all",
"26818 string to rule them all",
"26819 string to rule them all",
"26820 string to rule them all",
"26821 string to rule them all",
"26822 string to rule them all",
"26823 string to rule them all",
"26824 string to rule them all",
"26825 string to rule them all",
"26826 string to rule them all",
"26827 string to rule them all",
"26828 string to rule them all",
"26829 string to rule them all",
"26830 string to rule them all",
"26831 string to rule them all",
"26832 string to rule them all",
"26833 string to rule them all",
"26834 string to rule them all",
"26835 string to rule them all",
"26836 string to rule them all",
"26837 string to rule them all",
"26838 string to rule them all",
"26839 string to rule them all",
"26840 string to rule them all",
"26841 string to rule them all",
"26842 string to rule them all",
"26843 string to rule them all",
"26844 string to rule them all",
"26845 string to rule them all",
"26846 string to rule them all",
"26847 string to rule them all",
"26848 string to rule them all",
"26849 string to rule them all",
"26850 string to rule them all",
"26851 string to rule them all",
"26852 string to rule them all",
"26853 string to rule them all",
"26854 string to rule them all",
"26855 string to rule them all",
"26856 string to rule them all",
"26857 string to rule them all",
"26858 string to rule them all",
"26859 string to rule them all",
"26860 string to rule them all",
"26861 string to rule them all",
"26862 string to rule them all",
"26863 string to rule them all",
"26864 string to rule them all",
"26865 string to rule them all",
"26866 string to rule them all",
"26867 string to rule them all",
"26868 string to rule them all",
"26869 string to rule them all",
"26870 string to rule them all",
"26871 string to rule them all",
"26872 string to rule them all",
"26873 string to rule them all",
"26874 string to rule them all",
"26875 string to rule them all",
"26876 string to rule them all",
"26877 string to rule them all",
"26878 string to rule them all",
"26879 string to rule them all",
"26880 string to rule them all",
"26881 string to rule them all",
"26882 string to rule them all",
"26883 string to rule them all",
"26884 string to rule them all",
"26885 string to rule them all",
"26886 string to rule them all",
"26887 string to rule them all",
"26888 string to rule them all",
"26889 string to rule them all",
"26890 string to rule them all",
"26891 string to rule them all",
"26892 string to rule them all",
"26893 string to rule them all",
"26894 string to rule them all",
"26895 string to rule them all",
"26896 string to rule them all",
"26897 string to rule them all",
"26898 string to rule them all",
"26899 string to rule them all",
"26900 string to rule them all",
"26901 string to rule them all",
"26902 string to rule them all",
"26903 string to rule them all",
"26904 string to rule them all",
"26905 string to rule them all",
"26906 string to rule them all",
"26907 string to rule them all",
"26908 string to rule them all",
"26909 string to rule them all",
"26910 string to rule them all",
"26911 string to rule them all",
"26912 string to rule them all",
"26913 string to rule them all",
"26914 string to rule them all",
"26915 string to rule them all",
"26916 string to rule them all",
"26917 string to rule them all",
"26918 string to rule them all",
"26919 string to rule them all",
"26920 string to rule them all",
"26921 string to rule them all",
"26922 string to rule them all",
"26923 string to rule them all",
"26924 string to rule them all",
"26925 string to rule them all",
"26926 string to rule them all",
"26927 string to rule them all",
"26928 string to rule them all",
"26929 string to rule them all",
"26930 string to rule them all",
"26931 string to rule them all",
"26932 string to rule them all",
"26933 string to rule them all",
"26934 string to rule them all",
"26935 string to rule them all",
"26936 string to rule them all",
"26937 string to rule them all",
"26938 string to rule them all",
"26939 string to rule them all",
"26940 string to rule them all",
"26941 string to rule them all",
"26942 string to rule them all",
"26943 string to rule them all",
"26944 string to rule them all",
"26945 string to rule them all",
"26946 string to rule them all",
"26947 string to rule them all",
"26948 string to rule them all",
"26949 string to rule them all",
"26950 string to rule them all",
"26951 string to rule them all",
"26952 string to rule them all",
"26953 string to rule them all",
"26954 string to rule them all",
"26955 string to rule them all",
"26956 string to rule them all",
"26957 string to rule them all",
"26958 string to rule them all",
"26959 string to rule them all",
"26960 string to rule them all",
"26961 string to rule them all",
"26962 string to rule them all",
"26963 string to rule them all",
"26964 string to rule them all",
"26965 string to rule them all",
"26966 string to rule them all",
"26967 string to rule them all",
"26968 string to rule them all",
"26969 string to rule them all",
"26970 string to rule them all",
"26971 string to rule them all",
"26972 string to rule them all",
"26973 string to rule them all",
"26974 string to rule them all",
"26975 string to rule them all",
"26976 string to rule them all",
"26977 string to rule them all",
"26978 string to rule them all",
"26979 string to rule them all",
"26980 string to rule them all",
"26981 string to rule them all",
"26982 string to rule them all",
"26983 string to rule them all",
"26984 string to rule them all",
"26985 string to rule them all",
"26986 string to rule them all",
"26987 string to rule them all",
"26988 string to rule them all",
"26989 string to rule them all",
"26990 string to rule them all",
"26991 string to rule them all",
"26992 string to rule them all",
"26993 string to rule them all",
"26994 string to rule them all",
"26995 string to rule them all",
"26996 string to rule them all",
"26997 string to rule them all",
"26998 string to rule them all",
"26999 string to rule them all",
"27000 string to rule them all",
"27001 string to rule them all",
"27002 string to rule them all",
"27003 string to rule them all",
"27004 string to rule them all",
"27005 string to rule them all",
"27006 string to rule them all",
"27007 string to rule them all",
"27008 string to rule them all",
"27009 string to rule them all",
"27010 string to rule them all",
"27011 string to rule them all",
"27012 string to rule them all",
"27013 string to rule them all",
"27014 string to rule them all",
"27015 string to rule them all",
"27016 string to rule them all",
"27017 string to rule them all",
"27018 string to rule them all",
"27019 string to rule them all",
"27020 string to rule them all",
"27021 string to rule them all",
"27022 string to rule them all",
"27023 string to rule them all",
"27024 string to rule them all",
"27025 string to rule them all",
"27026 string to rule them all",
"27027 string to rule them all",
"27028 string to rule them all",
"27029 string to rule them all",
"27030 string to rule them all",
"27031 string to rule them all",
"27032 string to rule them all",
"27033 string to rule them all",
"27034 string to rule them all",
"27035 string to rule them all",
"27036 string to rule them all",
"27037 string to rule them all",
"27038 string to rule them all",
"27039 string to rule them all",
"27040 string to rule them all",
"27041 string to rule them all",
"27042 string to rule them all",
"27043 string to rule them all",
"27044 string to rule them all",
"27045 string to rule them all",
"27046 string to rule them all",
"27047 string to rule them all",
"27048 string to rule them all",
"27049 string to rule them all",
"27050 string to rule them all",
"27051 string to rule them all",
"27052 string to rule them all",
"27053 string to rule them all",
"27054 string to rule them all",
"27055 string to rule them all",
"27056 string to rule them all",
"27057 string to rule them all",
"27058 string to rule them all",
"27059 string to rule them all",
"27060 string to rule them all",
"27061 string to rule them all",
"27062 string to rule them all",
"27063 string to rule them all",
"27064 string to rule them all",
"27065 string to rule them all",
"27066 string to rule them all",
"27067 string to rule them all",
"27068 string to rule them all",
"27069 string to rule them all",
"27070 string to rule them all",
"27071 string to rule them all",
"27072 string to rule them all",
"27073 string to rule them all",
"27074 string to rule them all",
"27075 string to rule them all",
"27076 string to rule them all",
"27077 string to rule them all",
"27078 string to rule them all",
"27079 string to rule them all",
"27080 string to rule them all",
"27081 string to rule them all",
"27082 string to rule them all",
"27083 string to rule them all",
"27084 string to rule them all",
"27085 string to rule them all",
"27086 string to rule them all",
"27087 string to rule them all",
"27088 string to rule them all",
"27089 string to rule them all",
"27090 string to rule them all",
"27091 string to rule them all",
"27092 string to rule them all",
"27093 string to rule them all",
"27094 string to rule them all",
"27095 string to rule them all",
"27096 string to rule them all",
"27097 string to rule them all",
"27098 string to rule them all",
"27099 string to rule them all",
"27100 string to rule them all",
"27101 string to rule them all",
"27102 string to rule them all",
"27103 string to rule them all",
"27104 string to rule them all",
"27105 string to rule them all",
"27106 string to rule them all",
"27107 string to rule them all",
"27108 string to rule them all",
"27109 string to rule them all",
"27110 string to rule them all",
"27111 string to rule them all",
"27112 string to rule them all",
"27113 string to rule them all",
"27114 string to rule them all",
"27115 string to rule them all",
"27116 string to rule them all",
"27117 string to rule them all",
"27118 string to rule them all",
"27119 string to rule them all",
"27120 string to rule them all",
"27121 string to rule them all",
"27122 string to rule them all",
"27123 string to rule them all",
"27124 string to rule them all",
"27125 string to rule them all",
"27126 string to rule them all",
"27127 string to rule them all",
"27128 string to rule them all",
"27129 string to rule them all",
"27130 string to rule them all",
"27131 string to rule them all",
"27132 string to rule them all",
"27133 string to rule them all",
"27134 string to rule them all",
"27135 string to rule them all",
"27136 string to rule them all",
"27137 string to rule them all",
"27138 string to rule them all",
"27139 string to rule them all",
"27140 string to rule them all",
"27141 string to rule them all",
"27142 string to rule them all",
"27143 string to rule them all",
"27144 string to rule them all",
"27145 string to rule them all",
"27146 string to rule them all",
"27147 string to rule them all",
"27148 string to rule them all",
"27149 string to rule them all",
"27150 string to rule them all",
"27151 string to rule them all",
"27152 string to rule them all",
"27153 string to rule them all",
"27154 string to rule them all",
"27155 string to rule them all",
"27156 string to rule them all",
"27157 string to rule them all",
"27158 string to rule them all",
"27159 string to rule them all",
"27160 string to rule them all",
"27161 string to rule them all",
"27162 string to rule them all",
"27163 string to rule them all",
"27164 string to rule them all",
"27165 string to rule them all",
"27166 string to rule them all",
"27167 string to rule them all",
"27168 string to rule them all",
"27169 string to rule them all",
"27170 string to rule them all",
"27171 string to rule them all",
"27172 string to rule them all",
"27173 string to rule them all",
"27174 string to rule them all",
"27175 string to rule them all",
"27176 string to rule them all",
"27177 string to rule them all",
"27178 string to rule them all",
"27179 string to rule them all",
"27180 string to rule them all",
"27181 string to rule them all",
"27182 string to rule them all",
"27183 string to rule them all",
"27184 string to rule them all",
"27185 string to rule them all",
"27186 string to rule them all",
"27187 string to rule them all",
"27188 string to rule them all",
"27189 string to rule them all",
"27190 string to rule them all",
"27191 string to rule them all",
"27192 string to rule them all",
"27193 string to rule them all",
"27194 string to rule them all",
"27195 string to rule them all",
"27196 string to rule them all",
"27197 string to rule them all",
"27198 string to rule them all",
"27199 string to rule them all",
"27200 string to rule them all",
"27201 string to rule them all",
"27202 string to rule them all",
"27203 string to rule them all",
"27204 string to rule them all",
"27205 string to rule them all",
"27206 string to rule them all",
"27207 string to rule them all",
"27208 string to rule them all",
"27209 string to rule them all",
"27210 string to rule them all",
"27211 string to rule them all",
"27212 string to rule them all",
"27213 string to rule them all",
"27214 string to rule them all",
"27215 string to rule them all",
"27216 string to rule them all",
"27217 string to rule them all",
"27218 string to rule them all",
"27219 string to rule them all",
"27220 string to rule them all",
"27221 string to rule them all",
"27222 string to rule them all",
"27223 string to rule them all",
"27224 string to rule them all",
"27225 string to rule them all",
"27226 string to rule them all",
"27227 string to rule them all",
"27228 string to rule them all",
"27229 string to rule them all",
"27230 string to rule them all",
"27231 string to rule them all",
"27232 string to rule them all",
"27233 string to rule them all",
"27234 string to rule them all",
"27235 string to rule them all",
"27236 string to rule them all",
"27237 string to rule them all",
"27238 string to rule them all",
"27239 string to rule them all",
"27240 string to rule them all",
"27241 string to rule them all",
"27242 string to rule them all",
"27243 string to rule them all",
"27244 string to rule them all",
"27245 string to rule them all",
"27246 string to rule them all",
"27247 string to rule them all",
"27248 string to rule them all",
"27249 string to rule them all",
"27250 string to rule them all",
"27251 string to rule them all",
"27252 string to rule them all",
"27253 string to rule them all",
"27254 string to rule them all",
"27255 string to rule them all",
"27256 string to rule them all",
"27257 string to rule them all",
"27258 string to rule them all",
"27259 string to rule them all",
"27260 string to rule them all",
"27261 string to rule them all",
"27262 string to rule them all",
"27263 string to rule them all",
"27264 string to rule them all",
"27265 string to rule them all",
"27266 string to rule them all",
"27267 string to rule them all",
"27268 string to rule them all",
"27269 string to rule them all",
"27270 string to rule them all",
"27271 string to rule them all",
"27272 string to rule them all",
"27273 string to rule them all",
"27274 string to rule them all",
"27275 string to rule them all",
"27276 string to rule them all",
"27277 string to rule them all",
"27278 string to rule them all",
"27279 string to rule them all",
"27280 string to rule them all",
"27281 string to rule them all",
"27282 string to rule them all",
"27283 string to rule them all",
"27284 string to rule them all",
"27285 string to rule them all",
"27286 string to rule them all",
"27287 string to rule them all",
"27288 string to rule them all",
"27289 string to rule them all",
"27290 string to rule them all",
"27291 string to rule them all",
"27292 string to rule them all",
"27293 string to rule them all",
"27294 string to rule them all",
"27295 string to rule them all",
"27296 string to rule them all",
"27297 string to rule them all",
"27298 string to rule them all",
"27299 string to rule them all",
"27300 string to rule them all",
"27301 string to rule them all",
"27302 string to rule them all",
"27303 string to rule them all",
"27304 string to rule them all",
"27305 string to rule them all",
"27306 string to rule them all",
"27307 string to rule them all",
"27308 string to rule them all",
"27309 string to rule them all",
"27310 string to rule them all",
"27311 string to rule them all",
"27312 string to rule them all",
"27313 string to rule them all",
"27314 string to rule them all",
"27315 string to rule them all",
"27316 string to rule them all",
"27317 string to rule them all",
"27318 string to rule them all",
"27319 string to rule them all",
"27320 string to rule them all",
"27321 string to rule them all",
"27322 string to rule them all",
"27323 string to rule them all",
"27324 string to rule them all",
"27325 string to rule them all",
"27326 string to rule them all",
"27327 string to rule them all",
"27328 string to rule them all",
"27329 string to rule them all",
"27330 string to rule them all",
"27331 string to rule them all",
"27332 string to rule them all",
"27333 string to rule them all",
"27334 string to rule them all",
"27335 string to rule them all",
"27336 string to rule them all",
"27337 string to rule them all",
"27338 string to rule them all",
"27339 string to rule them all",
"27340 string to rule them all",
"27341 string to rule them all",
"27342 string to rule them all",
"27343 string to rule them all",
"27344 string to rule them all",
"27345 string to rule them all",
"27346 string to rule them all",
"27347 string to rule them all",
"27348 string to rule them all",
"27349 string to rule them all",
"27350 string to rule them all",
"27351 string to rule them all",
"27352 string to rule them all",
"27353 string to rule them all",
"27354 string to rule them all",
"27355 string to rule them all",
"27356 string to rule them all",
"27357 string to rule them all",
"27358 string to rule them all",
"27359 string to rule them all",
"27360 string to rule them all",
"27361 string to rule them all",
"27362 string to rule them all",
"27363 string to rule them all",
"27364 string to rule them all",
"27365 string to rule them all",
"27366 string to rule them all",
"27367 string to rule them all",
"27368 string to rule them all",
"27369 string to rule them all",
"27370 string to rule them all",
"27371 string to rule them all",
"27372 string to rule them all",
"27373 string to rule them all",
"27374 string to rule them all",
"27375 string to rule them all",
"27376 string to rule them all",
"27377 string to rule them all",
"27378 string to rule them all",
"27379 string to rule them all",
"27380 string to rule them all",
"27381 string to rule them all",
"27382 string to rule them all",
"27383 string to rule them all",
"27384 string to rule them all",
"27385 string to rule them all",
"27386 string to rule them all",
"27387 string to rule them all",
"27388 string to rule them all",
"27389 string to rule them all",
"27390 string to rule them all",
"27391 string to rule them all",
"27392 string to rule them all",
"27393 string to rule them all",
"27394 string to rule them all",
"27395 string to rule them all",
"27396 string to rule them all",
"27397 string to rule them all",
"27398 string to rule them all",
"27399 string to rule them all",
"27400 string to rule them all",
"27401 string to rule them all",
"27402 string to rule them all",
"27403 string to rule them all",
"27404 string to rule them all",
"27405 string to rule them all",
"27406 string to rule them all",
"27407 string to rule them all",
"27408 string to rule them all",
"27409 string to rule them all",
"27410 string to rule them all",
"27411 string to rule them all",
"27412 string to rule them all",
"27413 string to rule them all",
"27414 string to rule them all",
"27415 string to rule them all",
"27416 string to rule them all",
"27417 string to rule them all",
"27418 string to rule them all",
"27419 string to rule them all",
"27420 string to rule them all",
"27421 string to rule them all",
"27422 string to rule them all",
"27423 string to rule them all",
"27424 string to rule them all",
"27425 string to rule them all",
"27426 string to rule them all",
"27427 string to rule them all",
"27428 string to rule them all",
"27429 string to rule them all",
"27430 string to rule them all",
"27431 string to rule them all",
"27432 string to rule them all",
"27433 string to rule them all",
"27434 string to rule them all",
"27435 string to rule them all",
"27436 string to rule them all",
"27437 string to rule them all",
"27438 string to rule them all",
"27439 string to rule them all",
"27440 string to rule them all",
"27441 string to rule them all",
"27442 string to rule them all",
"27443 string to rule them all",
"27444 string to rule them all",
"27445 string to rule them all",
"27446 string to rule them all",
"27447 string to rule them all",
"27448 string to rule them all",
"27449 string to rule them all",
"27450 string to rule them all",
"27451 string to rule them all",
"27452 string to rule them all",
"27453 string to rule them all",
"27454 string to rule them all",
"27455 string to rule them all",
"27456 string to rule them all",
"27457 string to rule them all",
"27458 string to rule them all",
"27459 string to rule them all",
"27460 string to rule them all",
"27461 string to rule them all",
"27462 string to rule them all",
"27463 string to rule them all",
"27464 string to rule them all",
"27465 string to rule them all",
"27466 string to rule them all",
"27467 string to rule them all",
"27468 string to rule them all",
"27469 string to rule them all",
"27470 string to rule them all",
"27471 string to rule them all",
"27472 string to rule them all",
"27473 string to rule them all",
"27474 string to rule them all",
"27475 string to rule them all",
"27476 string to rule them all",
"27477 string to rule them all",
"27478 string to rule them all",
"27479 string to rule them all",
"27480 string to rule them all",
"27481 string to rule them all",
"27482 string to rule them all",
"27483 string to rule them all",
"27484 string to rule them all",
"27485 string to rule them all",
"27486 string to rule them all",
"27487 string to rule them all",
"27488 string to rule them all",
"27489 string to rule them all",
"27490 string to rule them all",
"27491 string to rule them all",
"27492 string to rule them all",
"27493 string to rule them all",
"27494 string to rule them all",
"27495 string to rule them all",
"27496 string to rule them all",
"27497 string to rule them all",
"27498 string to rule them all",
"27499 string to rule them all",
"27500 string to rule them all",
"27501 string to rule them all",
"27502 string to rule them all",
"27503 string to rule them all",
"27504 string to rule them all",
"27505 string to rule them all",
"27506 string to rule them all",
"27507 string to rule them all",
"27508 string to rule them all",
"27509 string to rule them all",
"27510 string to rule them all",
"27511 string to rule them all",
"27512 string to rule them all",
"27513 string to rule them all",
"27514 string to rule them all",
"27515 string to rule them all",
"27516 string to rule them all",
"27517 string to rule them all",
"27518 string to rule them all",
"27519 string to rule them all",
"27520 string to rule them all",
"27521 string to rule them all",
"27522 string to rule them all",
"27523 string to rule them all",
"27524 string to rule them all",
"27525 string to rule them all",
"27526 string to rule them all",
"27527 string to rule them all",
"27528 string to rule them all",
"27529 string to rule them all",
"27530 string to rule them all",
"27531 string to rule them all",
"27532 string to rule them all",
"27533 string to rule them all",
"27534 string to rule them all",
"27535 string to rule them all",
"27536 string to rule them all",
"27537 string to rule them all",
"27538 string to rule them all",
"27539 string to rule them all",
"27540 string to rule them all",
"27541 string to rule them all",
"27542 string to rule them all",
"27543 string to rule them all",
"27544 string to rule them all",
"27545 string to rule them all",
"27546 string to rule them all",
"27547 string to rule them all",
"27548 string to rule them all",
"27549 string to rule them all",
"27550 string to rule them all",
"27551 string to rule them all",
"27552 string to rule them all",
"27553 string to rule them all",
"27554 string to rule them all",
"27555 string to rule them all",
"27556 string to rule them all",
"27557 string to rule them all",
"27558 string to rule them all",
"27559 string to rule them all",
"27560 string to rule them all",
"27561 string to rule them all",
"27562 string to rule them all",
"27563 string to rule them all",
"27564 string to rule them all",
"27565 string to rule them all",
"27566 string to rule them all",
"27567 string to rule them all",
"27568 string to rule them all",
"27569 string to rule them all",
"27570 string to rule them all",
"27571 string to rule them all",
"27572 string to rule them all",
"27573 string to rule them all",
"27574 string to rule them all",
"27575 string to rule them all",
"27576 string to rule them all",
"27577 string to rule them all",
"27578 string to rule them all",
"27579 string to rule them all",
"27580 string to rule them all",
"27581 string to rule them all",
"27582 string to rule them all",
"27583 string to rule them all",
"27584 string to rule them all",
"27585 string to rule them all",
"27586 string to rule them all",
"27587 string to rule them all",
"27588 string to rule them all",
"27589 string to rule them all",
"27590 string to rule them all",
"27591 string to rule them all",
"27592 string to rule them all",
"27593 string to rule them all",
"27594 string to rule them all",
"27595 string to rule them all",
"27596 string to rule them all",
"27597 string to rule them all",
"27598 string to rule them all",
"27599 string to rule them all",
"27600 string to rule them all",
"27601 string to rule them all",
"27602 string to rule them all",
"27603 string to rule them all",
"27604 string to rule them all",
"27605 string to rule them all",
"27606 string to rule them all",
"27607 string to rule them all",
"27608 string to rule them all",
"27609 string to rule them all",
"27610 string to rule them all",
"27611 string to rule them all",
"27612 string to rule them all",
"27613 string to rule them all",
"27614 string to rule them all",
"27615 string to rule them all",
"27616 string to rule them all",
"27617 string to rule them all",
"27618 string to rule them all",
"27619 string to rule them all",
"27620 string to rule them all",
"27621 string to rule them all",
"27622 string to rule them all",
"27623 string to rule them all",
"27624 string to rule them all",
"27625 string to rule them all",
"27626 string to rule them all",
"27627 string to rule them all",
"27628 string to rule them all",
"27629 string to rule them all",
"27630 string to rule them all",
"27631 string to rule them all",
"27632 string to rule them all",
"27633 string to rule them all",
"27634 string to rule them all",
"27635 string to rule them all",
"27636 string to rule them all",
"27637 string to rule them all",
"27638 string to rule them all",
"27639 string to rule them all",
"27640 string to rule them all",
"27641 string to rule them all",
"27642 string to rule them all",
"27643 string to rule them all",
"27644 string to rule them all",
"27645 string to rule them all",
"27646 string to rule them all",
"27647 string to rule them all",
"27648 string to rule them all",
"27649 string to rule them all",
"27650 string to rule them all",
"27651 string to rule them all",
"27652 string to rule them all",
"27653 string to rule them all",
"27654 string to rule them all",
"27655 string to rule them all",
"27656 string to rule them all",
"27657 string to rule them all",
"27658 string to rule them all",
"27659 string to rule them all",
"27660 string to rule them all",
"27661 string to rule them all",
"27662 string to rule them all",
"27663 string to rule them all",
"27664 string to rule them all",
"27665 string to rule them all",
"27666 string to rule them all",
"27667 string to rule them all",
"27668 string to rule them all",
"27669 string to rule them all",
"27670 string to rule them all",
"27671 string to rule them all",
"27672 string to rule them all",
"27673 string to rule them all",
"27674 string to rule them all",
"27675 string to rule them all",
"27676 string to rule them all",
"27677 string to rule them all",
"27678 string to rule them all",
"27679 string to rule them all",
"27680 string to rule them all",
"27681 string to rule them all",
"27682 string to rule them all",
"27683 string to rule them all",
"27684 string to rule them all",
"27685 string to rule them all",
"27686 string to rule them all",
"27687 string to rule them all",
"27688 string to rule them all",
"27689 string to rule them all",
"27690 string to rule them all",
"27691 string to rule them all",
"27692 string to rule them all",
"27693 string to rule them all",
"27694 string to rule them all",
"27695 string to rule them all",
"27696 string to rule them all",
"27697 string to rule them all",
"27698 string to rule them all",
"27699 string to rule them all",
"27700 string to rule them all",
"27701 string to rule them all",
"27702 string to rule them all",
"27703 string to rule them all",
"27704 string to rule them all",
"27705 string to rule them all",
"27706 string to rule them all",
"27707 string to rule them all",
"27708 string to rule them all",
"27709 string to rule them all",
"27710 string to rule them all",
"27711 string to rule them all",
"27712 string to rule them all",
"27713 string to rule them all",
"27714 string to rule them all",
"27715 string to rule them all",
"27716 string to rule them all",
"27717 string to rule them all",
"27718 string to rule them all",
"27719 string to rule them all",
"27720 string to rule them all",
"27721 string to rule them all",
"27722 string to rule them all",
"27723 string to rule them all",
"27724 string to rule them all",
"27725 string to rule them all",
"27726 string to rule them all",
"27727 string to rule them all",
"27728 string to rule them all",
"27729 string to rule them all",
"27730 string to rule them all",
"27731 string to rule them all",
"27732 string to rule them all",
"27733 string to rule them all",
"27734 string to rule them all",
"27735 string to rule them all",
"27736 string to rule them all",
"27737 string to rule them all",
"27738 string to rule them all",
"27739 string to rule them all",
"27740 string to rule them all",
"27741 string to rule them all",
"27742 string to rule them all",
"27743 string to rule them all",
"27744 string to rule them all",
"27745 string to rule them all",
"27746 string to rule them all",
"27747 string to rule them all",
"27748 string to rule them all",
"27749 string to rule them all",
"27750 string to rule them all",
"27751 string to rule them all",
"27752 string to rule them all",
"27753 string to rule them all",
"27754 string to rule them all",
"27755 string to rule them all",
"27756 string to rule them all",
"27757 string to rule them all",
"27758 string to rule them all",
"27759 string to rule them all",
"27760 string to rule them all",
"27761 string to rule them all",
"27762 string to rule them all",
"27763 string to rule them all",
"27764 string to rule them all",
"27765 string to rule them all",
"27766 string to rule them all",
"27767 string to rule them all",
"27768 string to rule them all",
"27769 string to rule them all",
"27770 string to rule them all",
"27771 string to rule them all",
"27772 string to rule them all",
"27773 string to rule them all",
"27774 string to rule them all",
"27775 string to rule them all",
"27776 string to rule them all",
"27777 string to rule them all",
"27778 string to rule them all",
"27779 string to rule them all",
"27780 string to rule them all",
"27781 string to rule them all",
"27782 string to rule them all",
"27783 string to rule them all",
"27784 string to rule them all",
"27785 string to rule them all",
"27786 string to rule them all",
"27787 string to rule them all",
"27788 string to rule them all",
"27789 string to rule them all",
"27790 string to rule them all",
"27791 string to rule them all",
"27792 string to rule them all",
"27793 string to rule them all",
"27794 string to rule them all",
"27795 string to rule them all",
"27796 string to rule them all",
"27797 string to rule them all",
"27798 string to rule them all",
"27799 string to rule them all",
"27800 string to rule them all",
"27801 string to rule them all",
"27802 string to rule them all",
"27803 string to rule them all",
"27804 string to rule them all",
"27805 string to rule them all",
"27806 string to rule them all",
"27807 string to rule them all",
"27808 string to rule them all",
"27809 string to rule them all",
"27810 string to rule them all",
"27811 string to rule them all",
"27812 string to rule them all",
"27813 string to rule them all",
"27814 string to rule them all",
"27815 string to rule them all",
"27816 string to rule them all",
"27817 string to rule them all",
"27818 string to rule them all",
"27819 string to rule them all",
"27820 string to rule them all",
"27821 string to rule them all",
"27822 string to rule them all",
"27823 string to rule them all",
"27824 string to rule them all",
"27825 string to rule them all",
"27826 string to rule them all",
"27827 string to rule them all",
"27828 string to rule them all",
"27829 string to rule them all",
"27830 string to rule them all",
"27831 string to rule them all",
"27832 string to rule them all",
"27833 string to rule them all",
"27834 string to rule them all",
"27835 string to rule them all",
"27836 string to rule them all",
"27837 string to rule them all",
"27838 string to rule them all",
"27839 string to rule them all",
"27840 string to rule them all",
"27841 string to rule them all",
"27842 string to rule them all",
"27843 string to rule them all",
"27844 string to rule them all",
"27845 string to rule them all",
"27846 string to rule them all",
"27847 string to rule them all",
"27848 string to rule them all",
"27849 string to rule them all",
"27850 string to rule them all",
"27851 string to rule them all",
"27852 string to rule them all",
"27853 string to rule them all",
"27854 string to rule them all",
"27855 string to rule them all",
"27856 string to rule them all",
"27857 string to rule them all",
"27858 string to rule them all",
"27859 string to rule them all",
"27860 string to rule them all",
"27861 string to rule them all",
"27862 string to rule them all",
"27863 string to rule them all",
"27864 string to rule them all",
"27865 string to rule them all",
"27866 string to rule them all",
"27867 string to rule them all",
"27868 string to rule them all",
"27869 string to rule them all",
"27870 string to rule them all",
"27871 string to rule them all",
"27872 string to rule them all",
"27873 string to rule them all",
"27874 string to rule them all",
"27875 string to rule them all",
"27876 string to rule them all",
"27877 string to rule them all",
"27878 string to rule them all",
"27879 string to rule them all",
"27880 string to rule them all",
"27881 string to rule them all",
"27882 string to rule them all",
"27883 string to rule them all",
"27884 string to rule them all",
"27885 string to rule them all",
"27886 string to rule them all",
"27887 string to rule them all",
"27888 string to rule them all",
"27889 string to rule them all",
"27890 string to rule them all",
"27891 string to rule them all",
"27892 string to rule them all",
"27893 string to rule them all",
"27894 string to rule them all",
"27895 string to rule them all",
"27896 string to rule them all",
"27897 string to rule them all",
"27898 string to rule them all",
"27899 string to rule them all",
"27900 string to rule them all",
"27901 string to rule them all",
"27902 string to rule them all",
"27903 string to rule them all",
"27904 string to rule them all",
"27905 string to rule them all",
"27906 string to rule them all",
"27907 string to rule them all",
"27908 string to rule them all",
"27909 string to rule them all",
"27910 string to rule them all",
"27911 string to rule them all",
"27912 string to rule them all",
"27913 string to rule them all",
"27914 string to rule them all",
"27915 string to rule them all",
"27916 string to rule them all",
"27917 string to rule them all",
"27918 string to rule them all",
"27919 string to rule them all",
"27920 string to rule them all",
"27921 string to rule them all",
"27922 string to rule them all",
"27923 string to rule them all",
"27924 string to rule them all",
"27925 string to rule them all",
"27926 string to rule them all",
"27927 string to rule them all",
"27928 string to rule them all",
"27929 string to rule them all",
"27930 string to rule them all",
"27931 string to rule them all",
"27932 string to rule them all",
"27933 string to rule them all",
"27934 string to rule them all",
"27935 string to rule them all",
"27936 string to rule them all",
"27937 string to rule them all",
"27938 string to rule them all",
"27939 string to rule them all",
"27940 string to rule them all",
"27941 string to rule them all",
"27942 string to rule them all",
"27943 string to rule them all",
"27944 string to rule them all",
"27945 string to rule them all",
"27946 string to rule them all",
"27947 string to rule them all",
"27948 string to rule them all",
"27949 string to rule them all",
"27950 string to rule them all",
"27951 string to rule them all",
"27952 string to rule them all",
"27953 string to rule them all",
"27954 string to rule them all",
"27955 string to rule them all",
"27956 string to rule them all",
"27957 string to rule them all",
"27958 string to rule them all",
"27959 string to rule them all",
"27960 string to rule them all",
"27961 string to rule them all",
"27962 string to rule them all",
"27963 string to rule them all",
"27964 string to rule them all",
"27965 string to rule them all",
"27966 string to rule them all",
"27967 string to rule them all",
"27968 string to rule them all",
"27969 string to rule them all",
"27970 string to rule them all",
"27971 string to rule them all",
"27972 string to rule them all",
"27973 string to rule them all",
"27974 string to rule them all",
"27975 string to rule them all",
"27976 string to rule them all",
"27977 string to rule them all",
"27978 string to rule them all",
"27979 string to rule them all",
"27980 string to rule them all",
"27981 string to rule them all",
"27982 string to rule them all",
"27983 string to rule them all",
"27984 string to rule them all",
"27985 string to rule them all",
"27986 string to rule them all",
"27987 string to rule them all",
"27988 string to rule them all",
"27989 string to rule them all",
"27990 string to rule them all",
"27991 string to rule them all",
"27992 string to rule them all",
"27993 string to rule them all",
"27994 string to rule them all",
"27995 string to rule them all",
"27996 string to rule them all",
"27997 string to rule them all",
"27998 string to rule them all",
"27999 string to rule them all",
"28000 string to rule them all",
"28001 string to rule them all",
"28002 string to rule them all",
"28003 string to rule them all",
"28004 string to rule them all",
"28005 string to rule them all",
"28006 string to rule them all",
"28007 string to rule them all",
"28008 string to rule them all",
"28009 string to rule them all",
"28010 string to rule them all",
"28011 string to rule them all",
"28012 string to rule them all",
"28013 string to rule them all",
"28014 string to rule them all",
"28015 string to rule them all",
"28016 string to rule them all",
"28017 string to rule them all",
"28018 string to rule them all",
"28019 string to rule them all",
"28020 string to rule them all",
"28021 string to rule them all",
"28022 string to rule them all",
"28023 string to rule them all",
"28024 string to rule them all",
"28025 string to rule them all",
"28026 string to rule them all",
"28027 string to rule them all",
"28028 string to rule them all",
"28029 string to rule them all",
"28030 string to rule them all",
"28031 string to rule them all",
"28032 string to rule them all",
"28033 string to rule them all",
"28034 string to rule them all",
"28035 string to rule them all",
"28036 string to rule them all",
"28037 string to rule them all",
"28038 string to rule them all",
"28039 string to rule them all",
"28040 string to rule them all",
"28041 string to rule them all",
"28042 string to rule them all",
"28043 string to rule them all",
"28044 string to rule them all",
"28045 string to rule them all",
"28046 string to rule them all",
"28047 string to rule them all",
"28048 string to rule them all",
"28049 string to rule them all",
"28050 string to rule them all",
"28051 string to rule them all",
"28052 string to rule them all",
"28053 string to rule them all",
"28054 string to rule them all",
"28055 string to rule them all",
"28056 string to rule them all",
"28057 string to rule them all",
"28058 string to rule them all",
"28059 string to rule them all",
"28060 string to rule them all",
"28061 string to rule them all",
"28062 string to rule them all",
"28063 string to rule them all",
"28064 string to rule them all",
"28065 string to rule them all",
"28066 string to rule them all",
"28067 string to rule them all",
"28068 string to rule them all",
"28069 string to rule them all",
"28070 string to rule them all",
"28071 string to rule them all",
"28072 string to rule them all",
"28073 string to rule them all",
"28074 string to rule them all",
"28075 string to rule them all",
"28076 string to rule them all",
"28077 string to rule them all",
"28078 string to rule them all",
"28079 string to rule them all",
"28080 string to rule them all",
"28081 string to rule them all",
"28082 string to rule them all",
"28083 string to rule them all",
"28084 string to rule them all",
"28085 string to rule them all",
"28086 string to rule them all",
"28087 string to rule them all",
"28088 string to rule them all",
"28089 string to rule them all",
"28090 string to rule them all",
"28091 string to rule them all",
"28092 string to rule them all",
"28093 string to rule them all",
"28094 string to rule them all",
"28095 string to rule them all",
"28096 string to rule them all",
"28097 string to rule them all",
"28098 string to rule them all",
"28099 string to rule them all",
"28100 string to rule them all",
"28101 string to rule them all",
"28102 string to rule them all",
"28103 string to rule them all",
"28104 string to rule them all",
"28105 string to rule them all",
"28106 string to rule them all",
"28107 string to rule them all",
"28108 string to rule them all",
"28109 string to rule them all",
"28110 string to rule them all",
"28111 string to rule them all",
"28112 string to rule them all",
"28113 string to rule them all",
"28114 string to rule them all",
"28115 string to rule them all",
"28116 string to rule them all",
"28117 string to rule them all",
"28118 string to rule them all",
"28119 string to rule them all",
"28120 string to rule them all",
"28121 string to rule them all",
"28122 string to rule them all",
"28123 string to rule them all",
"28124 string to rule them all",
"28125 string to rule them all",
"28126 string to rule them all",
"28127 string to rule them all",
"28128 string to rule them all",
"28129 string to rule them all",
"28130 string to rule them all",
"28131 string to rule them all",
"28132 string to rule them all",
"28133 string to rule them all",
"28134 string to rule them all",
"28135 string to rule them all",
"28136 string to rule them all",
"28137 string to rule them all",
"28138 string to rule them all",
"28139 string to rule them all",
"28140 string to rule them all",
"28141 string to rule them all",
"28142 string to rule them all",
"28143 string to rule them all",
"28144 string to rule them all",
"28145 string to rule them all",
"28146 string to rule them all",
"28147 string to rule them all",
"28148 string to rule them all",
"28149 string to rule them all",
"28150 string to rule them all",
"28151 string to rule them all",
"28152 string to rule them all",
"28153 string to rule them all",
"28154 string to rule them all",
"28155 string to rule them all",
"28156 string to rule them all",
"28157 string to rule them all",
"28158 string to rule them all",
"28159 string to rule them all",
"28160 string to rule them all",
"28161 string to rule them all",
"28162 string to rule them all",
"28163 string to rule them all",
"28164 string to rule them all",
"28165 string to rule them all",
"28166 string to rule them all",
"28167 string to rule them all",
"28168 string to rule them all",
"28169 string to rule them all",
"28170 string to rule them all",
"28171 string to rule them all",
"28172 string to rule them all",
"28173 string to rule them all",
"28174 string to rule them all",
"28175 string to rule them all",
"28176 string to rule them all",
"28177 string to rule them all",
"28178 string to rule them all",
"28179 string to rule them all",
"28180 string to rule them all",
"28181 string to rule them all",
"28182 string to rule them all",
"28183 string to rule them all",
"28184 string to rule them all",
"28185 string to rule them all",
"28186 string to rule them all",
"28187 string to rule them all",
"28188 string to rule them all",
"28189 string to rule them all",
"28190 string to rule them all",
"28191 string to rule them all",
"28192 string to rule them all",
"28193 string to rule them all",
"28194 string to rule them all",
"28195 string to rule them all",
"28196 string to rule them all",
"28197 string to rule them all",
"28198 string to rule them all",
"28199 string to rule them all",
"28200 string to rule them all",
"28201 string to rule them all",
"28202 string to rule them all",
"28203 string to rule them all",
"28204 string to rule them all",
"28205 string to rule them all",
"28206 string to rule them all",
"28207 string to rule them all",
"28208 string to rule them all",
"28209 string to rule them all",
"28210 string to rule them all",
"28211 string to rule them all",
"28212 string to rule them all",
"28213 string to rule them all",
"28214 string to rule them all",
"28215 string to rule them all",
"28216 string to rule them all",
"28217 string to rule them all",
"28218 string to rule them all",
"28219 string to rule them all",
"28220 string to rule them all",
"28221 string to rule them all",
"28222 string to rule them all",
"28223 string to rule them all",
"28224 string to rule them all",
"28225 string to rule them all",
"28226 string to rule them all",
"28227 string to rule them all",
"28228 string to rule them all",
"28229 string to rule them all",
"28230 string to rule them all",
"28231 string to rule them all",
"28232 string to rule them all",
"28233 string to rule them all",
"28234 string to rule them all",
"28235 string to rule them all",
"28236 string to rule them all",
"28237 string to rule them all",
"28238 string to rule them all",
"28239 string to rule them all",
"28240 string to rule them all",
"28241 string to rule them all",
"28242 string to rule them all",
"28243 string to rule them all",
"28244 string to rule them all",
"28245 string to rule them all",
"28246 string to rule them all",
"28247 string to rule them all",
"28248 string to rule them all",
"28249 string to rule them all",
"28250 string to rule them all",
"28251 string to rule them all",
"28252 string to rule them all",
"28253 string to rule them all",
"28254 string to rule them all",
"28255 string to rule them all",
"28256 string to rule them all",
"28257 string to rule them all",
"28258 string to rule them all",
"28259 string to rule them all",
"28260 string to rule them all",
"28261 string to rule them all",
"28262 string to rule them all",
"28263 string to rule them all",
"28264 string to rule them all",
"28265 string to rule them all",
"28266 string to rule them all",
"28267 string to rule them all",
"28268 string to rule them all",
"28269 string to rule them all",
"28270 string to rule them all",
"28271 string to rule them all",
"28272 string to rule them all",
"28273 string to rule them all",
"28274 string to rule them all",
"28275 string to rule them all",
"28276 string to rule them all",
"28277 string to rule them all",
"28278 string to rule them all",
"28279 string to rule them all",
"28280 string to rule them all",
"28281 string to rule them all",
"28282 string to rule them all",
"28283 string to rule them all",
"28284 string to rule them all",
"28285 string to rule them all",
"28286 string to rule them all",
"28287 string to rule them all",
"28288 string to rule them all",
"28289 string to rule them all",
"28290 string to rule them all",
"28291 string to rule them all",
"28292 string to rule them all",
"28293 string to rule them all",
"28294 string to rule them all",
"28295 string to rule them all",
"28296 string to rule them all",
"28297 string to rule them all",
"28298 string to rule them all",
"28299 string to rule them all",
"28300 string to rule them all",
"28301 string to rule them all",
"28302 string to rule them all",
"28303 string to rule them all",
"28304 string to rule them all",
"28305 string to rule them all",
"28306 string to rule them all",
"28307 string to rule them all",
"28308 string to rule them all",
"28309 string to rule them all",
"28310 string to rule them all",
"28311 string to rule them all",
"28312 string to rule them all",
"28313 string to rule them all",
"28314 string to rule them all",
"28315 string to rule them all",
"28316 string to rule them all",
"28317 string to rule them all",
"28318 string to rule them all",
"28319 string to rule them all",
"28320 string to rule them all",
"28321 string to rule them all",
"28322 string to rule them all",
"28323 string to rule them all",
"28324 string to rule them all",
"28325 string to rule them all",
"28326 string to rule them all",
"28327 string to rule them all",
"28328 string to rule them all",
"28329 string to rule them all",
"28330 string to rule them all",
"28331 string to rule them all",
"28332 string to rule them all",
"28333 string to rule them all",
"28334 string to rule them all",
"28335 string to rule them all",
"28336 string to rule them all",
"28337 string to rule them all",
"28338 string to rule them all",
"28339 string to rule them all",
"28340 string to rule them all",
"28341 string to rule them all",
"28342 string to rule them all",
"28343 string to rule them all",
"28344 string to rule them all",
"28345 string to rule them all",
"28346 string to rule them all",
"28347 string to rule them all",
"28348 string to rule them all",
"28349 string to rule them all",
"28350 string to rule them all",
"28351 string to rule them all",
"28352 string to rule them all",
"28353 string to rule them all",
"28354 string to rule them all",
"28355 string to rule them all",
"28356 string to rule them all",
"28357 string to rule them all",
"28358 string to rule them all",
"28359 string to rule them all",
"28360 string to rule them all",
"28361 string to rule them all",
"28362 string to rule them all",
"28363 string to rule them all",
"28364 string to rule them all",
"28365 string to rule them all",
"28366 string to rule them all",
"28367 string to rule them all",
"28368 string to rule them all",
"28369 string to rule them all",
"28370 string to rule them all",
"28371 string to rule them all",
"28372 string to rule them all",
"28373 string to rule them all",
"28374 string to rule them all",
"28375 string to rule them all",
"28376 string to rule them all",
"28377 string to rule them all",
"28378 string to rule them all",
"28379 string to rule them all",
"28380 string to rule them all",
"28381 string to rule them all",
"28382 string to rule them all",
"28383 string to rule them all",
"28384 string to rule them all",
"28385 string to rule them all",
"28386 string to rule them all",
"28387 string to rule them all",
"28388 string to rule them all",
"28389 string to rule them all",
"28390 string to rule them all",
"28391 string to rule them all",
"28392 string to rule them all",
"28393 string to rule them all",
"28394 string to rule them all",
"28395 string to rule them all",
"28396 string to rule them all",
"28397 string to rule them all",
"28398 string to rule them all",
"28399 string to rule them all",
"28400 string to rule them all",
"28401 string to rule them all",
"28402 string to rule them all",
"28403 string to rule them all",
"28404 string to rule them all",
"28405 string to rule them all",
"28406 string to rule them all",
"28407 string to rule them all",
"28408 string to rule them all",
"28409 string to rule them all",
"28410 string to rule them all",
"28411 string to rule them all",
"28412 string to rule them all",
"28413 string to rule them all",
"28414 string to rule them all",
"28415 string to rule them all",
"28416 string to rule them all",
"28417 string to rule them all",
"28418 string to rule them all",
"28419 string to rule them all",
"28420 string to rule them all",
"28421 string to rule them all",
"28422 string to rule them all",
"28423 string to rule them all",
"28424 string to rule them all",
"28425 string to rule them all",
"28426 string to rule them all",
"28427 string to rule them all",
"28428 string to rule them all",
"28429 string to rule them all",
"28430 string to rule them all",
"28431 string to rule them all",
"28432 string to rule them all",
"28433 string to rule them all",
"28434 string to rule them all",
"28435 string to rule them all",
"28436 string to rule them all",
"28437 string to rule them all",
"28438 string to rule them all",
"28439 string to rule them all",
"28440 string to rule them all",
"28441 string to rule them all",
"28442 string to rule them all",
"28443 string to rule them all",
"28444 string to rule them all",
"28445 string to rule them all",
"28446 string to rule them all",
"28447 string to rule them all",
"28448 string to rule them all",
"28449 string to rule them all",
"28450 string to rule them all",
"28451 string to rule them all",
"28452 string to rule them all",
"28453 string to rule them all",
"28454 string to rule them all",
"28455 string to rule them all",
"28456 string to rule them all",
"28457 string to rule them all",
"28458 string to rule them all",
"28459 string to rule them all",
"28460 string to rule them all",
"28461 string to rule them all",
"28462 string to rule them all",
"28463 string to rule them all",
"28464 string to rule them all",
"28465 string to rule them all",
"28466 string to rule them all",
"28467 string to rule them all",
"28468 string to rule them all",
"28469 string to rule them all",
"28470 string to rule them all",
"28471 string to rule them all",
"28472 string to rule them all",
"28473 string to rule them all",
"28474 string to rule them all",
"28475 string to rule them all",
"28476 string to rule them all",
"28477 string to rule them all",
"28478 string to rule them all",
"28479 string to rule them all",
"28480 string to rule them all",
"28481 string to rule them all",
"28482 string to rule them all",
"28483 string to rule them all",
"28484 string to rule them all",
"28485 string to rule them all",
"28486 string to rule them all",
"28487 string to rule them all",
"28488 string to rule them all",
"28489 string to rule them all",
"28490 string to rule them all",
"28491 string to rule them all",
"28492 string to rule them all",
"28493 string to rule them all",
"28494 string to rule them all",
"28495 string to rule them all",
"28496 string to rule them all",
"28497 string to rule them all",
"28498 string to rule them all",
"28499 string to rule them all",
"28500 string to rule them all",
"28501 string to rule them all",
"28502 string to rule them all",
"28503 string to rule them all",
"28504 string to rule them all",
"28505 string to rule them all",
"28506 string to rule them all",
"28507 string to rule them all",
"28508 string to rule them all",
"28509 string to rule them all",
"28510 string to rule them all",
"28511 string to rule them all",
"28512 string to rule them all",
"28513 string to rule them all",
"28514 string to rule them all",
"28515 string to rule them all",
"28516 string to rule them all",
"28517 string to rule them all",
"28518 string to rule them all",
"28519 string to rule them all",
"28520 string to rule them all",
"28521 string to rule them all",
"28522 string to rule them all",
"28523 string to rule them all",
"28524 string to rule them all",
"28525 string to rule them all",
"28526 string to rule them all",
"28527 string to rule them all",
"28528 string to rule them all",
"28529 string to rule them all",
"28530 string to rule them all",
"28531 string to rule them all",
"28532 string to rule them all",
"28533 string to rule them all",
"28534 string to rule them all",
"28535 string to rule them all",
"28536 string to rule them all",
"28537 string to rule them all",
"28538 string to rule them all",
"28539 string to rule them all",
"28540 string to rule them all",
"28541 string to rule them all",
"28542 string to rule them all",
"28543 string to rule them all",
"28544 string to rule them all",
"28545 string to rule them all",
"28546 string to rule them all",
"28547 string to rule them all",
"28548 string to rule them all",
"28549 string to rule them all",
"28550 string to rule them all",
"28551 string to rule them all",
"28552 string to rule them all",
"28553 string to rule them all",
"28554 string to rule them all",
"28555 string to rule them all",
"28556 string to rule them all",
"28557 string to rule them all",
"28558 string to rule them all",
"28559 string to rule them all",
"28560 string to rule them all",
"28561 string to rule them all",
"28562 string to rule them all",
"28563 string to rule them all",
"28564 string to rule them all",
"28565 string to rule them all",
"28566 string to rule them all",
"28567 string to rule them all",
"28568 string to rule them all",
"28569 string to rule them all",
"28570 string to rule them all",
"28571 string to rule them all",
"28572 string to rule them all",
"28573 string to rule them all",
"28574 string to rule them all",
"28575 string to rule them all",
"28576 string to rule them all",
"28577 string to rule them all",
"28578 string to rule them all",
"28579 string to rule them all",
"28580 string to rule them all",
"28581 string to rule them all",
"28582 string to rule them all",
"28583 string to rule them all",
"28584 string to rule them all",
"28585 string to rule them all",
"28586 string to rule them all",
"28587 string to rule them all",
"28588 string to rule them all",
"28589 string to rule them all",
"28590 string to rule them all",
"28591 string to rule them all",
"28592 string to rule them all",
"28593 string to rule them all",
"28594 string to rule them all",
"28595 string to rule them all",
"28596 string to rule them all",
"28597 string to rule them all",
"28598 string to rule them all",
"28599 string to rule them all",
"28600 string to rule them all",
"28601 string to rule them all",
"28602 string to rule them all",
"28603 string to rule them all",
"28604 string to rule them all",
"28605 string to rule them all",
"28606 string to rule them all",
"28607 string to rule them all",
"28608 string to rule them all",
"28609 string to rule them all",
"28610 string to rule them all",
"28611 string to rule them all",
"28612 string to rule them all",
"28613 string to rule them all",
"28614 string to rule them all",
"28615 string to rule them all",
"28616 string to rule them all",
"28617 string to rule them all",
"28618 string to rule them all",
"28619 string to rule them all",
"28620 string to rule them all",
"28621 string to rule them all",
"28622 string to rule them all",
"28623 string to rule them all",
"28624 string to rule them all",
"28625 string to rule them all",
"28626 string to rule them all",
"28627 string to rule them all",
"28628 string to rule them all",
"28629 string to rule them all",
"28630 string to rule them all",
"28631 string to rule them all",
"28632 string to rule them all",
"28633 string to rule them all",
"28634 string to rule them all",
"28635 string to rule them all",
"28636 string to rule them all",
"28637 string to rule them all",
"28638 string to rule them all",
"28639 string to rule them all",
"28640 string to rule them all",
"28641 string to rule them all",
"28642 string to rule them all",
"28643 string to rule them all",
"28644 string to rule them all",
"28645 string to rule them all",
"28646 string to rule them all",
"28647 string to rule them all",
"28648 string to rule them all",
"28649 string to rule them all",
"28650 string to rule them all",
"28651 string to rule them all",
"28652 string to rule them all",
"28653 string to rule them all",
"28654 string to rule them all",
"28655 string to rule them all",
"28656 string to rule them all",
"28657 string to rule them all",
"28658 string to rule them all",
"28659 string to rule them all",
"28660 string to rule them all",
"28661 string to rule them all",
"28662 string to rule them all",
"28663 string to rule them all",
"28664 string to rule them all",
"28665 string to rule them all",
"28666 string to rule them all",
"28667 string to rule them all",
"28668 string to rule them all",
"28669 string to rule them all",
"28670 string to rule them all",
"28671 string to rule them all",
"28672 string to rule them all",
"28673 string to rule them all",
"28674 string to rule them all",
"28675 string to rule them all",
"28676 string to rule them all",
"28677 string to rule them all",
"28678 string to rule them all",
"28679 string to rule them all",
"28680 string to rule them all",
"28681 string to rule them all",
"28682 string to rule them all",
"28683 string to rule them all",
"28684 string to rule them all",
"28685 string to rule them all",
"28686 string to rule them all",
"28687 string to rule them all",
"28688 string to rule them all",
"28689 string to rule them all",
"28690 string to rule them all",
"28691 string to rule them all",
"28692 string to rule them all",
"28693 string to rule them all",
"28694 string to rule them all",
"28695 string to rule them all",
"28696 string to rule them all",
"28697 string to rule them all",
"28698 string to rule them all",
"28699 string to rule them all",
"28700 string to rule them all",
"28701 string to rule them all",
"28702 string to rule them all",
"28703 string to rule them all",
"28704 string to rule them all",
"28705 string to rule them all",
"28706 string to rule them all",
"28707 string to rule them all",
"28708 string to rule them all",
"28709 string to rule them all",
"28710 string to rule them all",
"28711 string to rule them all",
"28712 string to rule them all",
"28713 string to rule them all",
"28714 string to rule them all",
"28715 string to rule them all",
"28716 string to rule them all",
"28717 string to rule them all",
"28718 string to rule them all",
"28719 string to rule them all",
"28720 string to rule them all",
"28721 string to rule them all",
"28722 string to rule them all",
"28723 string to rule them all",
"28724 string to rule them all",
"28725 string to rule them all",
"28726 string to rule them all",
"28727 string to rule them all",
"28728 string to rule them all",
"28729 string to rule them all",
"28730 string to rule them all",
"28731 string to rule them all",
"28732 string to rule them all",
"28733 string to rule them all",
"28734 string to rule them all",
"28735 string to rule them all",
"28736 string to rule them all",
"28737 string to rule them all",
"28738 string to rule them all",
"28739 string to rule them all",
"28740 string to rule them all",
"28741 string to rule them all",
"28742 string to rule them all",
"28743 string to rule them all",
"28744 string to rule them all",
"28745 string to rule them all",
"28746 string to rule them all",
"28747 string to rule them all",
"28748 string to rule them all",
"28749 string to rule them all",
"28750 string to rule them all",
"28751 string to rule them all",
"28752 string to rule them all",
"28753 string to rule them all",
"28754 string to rule them all",
"28755 string to rule them all",
"28756 string to rule them all",
"28757 string to rule them all",
"28758 string to rule them all",
"28759 string to rule them all",
"28760 string to rule them all",
"28761 string to rule them all",
"28762 string to rule them all",
"28763 string to rule them all",
"28764 string to rule them all",
"28765 string to rule them all",
"28766 string to rule them all",
"28767 string to rule them all",
"28768 string to rule them all",
"28769 string to rule them all",
"28770 string to rule them all",
"28771 string to rule them all",
"28772 string to rule them all",
"28773 string to rule them all",
"28774 string to rule them all",
"28775 string to rule them all",
"28776 string to rule them all",
"28777 string to rule them all",
"28778 string to rule them all",
"28779 string to rule them all",
"28780 string to rule them all",
"28781 string to rule them all",
"28782 string to rule them all",
"28783 string to rule them all",
"28784 string to rule them all",
"28785 string to rule them all",
"28786 string to rule them all",
"28787 string to rule them all",
"28788 string to rule them all",
"28789 string to rule them all",
"28790 string to rule them all",
"28791 string to rule them all",
"28792 string to rule them all",
"28793 string to rule them all",
"28794 string to rule them all",
"28795 string to rule them all",
"28796 string to rule them all",
"28797 string to rule them all",
"28798 string to rule them all",
"28799 string to rule them all",
"28800 string to rule them all",
"28801 string to rule them all",
"28802 string to rule them all",
"28803 string to rule them all",
"28804 string to rule them all",
"28805 string to rule them all",
"28806 string to rule them all",
"28807 string to rule them all",
"28808 string to rule them all",
"28809 string to rule them all",
"28810 string to rule them all",
"28811 string to rule them all",
"28812 string to rule them all",
"28813 string to rule them all",
"28814 string to rule them all",
"28815 string to rule them all",
"28816 string to rule them all",
"28817 string to rule them all",
"28818 string to rule them all",
"28819 string to rule them all",
"28820 string to rule them all",
"28821 string to rule them all",
"28822 string to rule them all",
"28823 string to rule them all",
"28824 string to rule them all",
"28825 string to rule them all",
"28826 string to rule them all",
"28827 string to rule them all",
"28828 string to rule them all",
"28829 string to rule them all",
"28830 string to rule them all",
"28831 string to rule them all",
"28832 string to rule them all",
"28833 string to rule them all",
"28834 string to rule them all",
"28835 string to rule them all",
"28836 string to rule them all",
"28837 string to rule them all",
"28838 string to rule them all",
"28839 string to rule them all",
"28840 string to rule them all",
"28841 string to rule them all",
"28842 string to rule them all",
"28843 string to rule them all",
"28844 string to rule them all",
"28845 string to rule them all",
"28846 string to rule them all",
"28847 string to rule them all",
"28848 string to rule them all",
"28849 string to rule them all",
"28850 string to rule them all",
"28851 string to rule them all",
"28852 string to rule them all",
"28853 string to rule them all",
"28854 string to rule them all",
"28855 string to rule them all",
"28856 string to rule them all",
"28857 string to rule them all",
"28858 string to rule them all",
"28859 string to rule them all",
"28860 string to rule them all",
"28861 string to rule them all",
"28862 string to rule them all",
"28863 string to rule them all",
"28864 string to rule them all",
"28865 string to rule them all",
"28866 string to rule them all",
"28867 string to rule them all",
"28868 string to rule them all",
"28869 string to rule them all",
"28870 string to rule them all",
"28871 string to rule them all",
"28872 string to rule them all",
"28873 string to rule them all",
"28874 string to rule them all",
"28875 string to rule them all",
"28876 string to rule them all",
"28877 string to rule them all",
"28878 string to rule them all",
"28879 string to rule them all",
"28880 string to rule them all",
"28881 string to rule them all",
"28882 string to rule them all",
"28883 string to rule them all",
"28884 string to rule them all",
"28885 string to rule them all",
"28886 string to rule them all",
"28887 string to rule them all",
"28888 string to rule them all",
"28889 string to rule them all",
"28890 string to rule them all",
"28891 string to rule them all",
"28892 string to rule them all",
"28893 string to rule them all",
"28894 string to rule them all",
"28895 string to rule them all",
"28896 string to rule them all",
"28897 string to rule them all",
"28898 string to rule them all",
"28899 string to rule them all",
"28900 string to rule them all",
"28901 string to rule them all",
"28902 string to rule them all",
"28903 string to rule them all",
"28904 string to rule them all",
"28905 string to rule them all",
"28906 string to rule them all",
"28907 string to rule them all",
"28908 string to rule them all",
"28909 string to rule them all",
"28910 string to rule them all",
"28911 string to rule them all",
"28912 string to rule them all",
"28913 string to rule them all",
"28914 string to rule them all",
"28915 string to rule them all",
"28916 string to rule them all",
"28917 string to rule them all",
"28918 string to rule them all",
"28919 string to rule them all",
"28920 string to rule them all",
"28921 string to rule them all",
"28922 string to rule them all",
"28923 string to rule them all",
"28924 string to rule them all",
"28925 string to rule them all",
"28926 string to rule them all",
"28927 string to rule them all",
"28928 string to rule them all",
"28929 string to rule them all",
"28930 string to rule them all",
"28931 string to rule them all",
"28932 string to rule them all",
"28933 string to rule them all",
"28934 string to rule them all",
"28935 string to rule them all",
"28936 string to rule them all",
"28937 string to rule them all",
"28938 string to rule them all",
"28939 string to rule them all",
"28940 string to rule them all",
"28941 string to rule them all",
"28942 string to rule them all",
"28943 string to rule them all",
"28944 string to rule them all",
"28945 string to rule them all",
"28946 string to rule them all",
"28947 string to rule them all",
"28948 string to rule them all",
"28949 string to rule them all",
"28950 string to rule them all",
"28951 string to rule them all",
"28952 string to rule them all",
"28953 string to rule them all",
"28954 string to rule them all",
"28955 string to rule them all",
"28956 string to rule them all",
"28957 string to rule them all",
"28958 string to rule them all",
"28959 string to rule them all",
"28960 string to rule them all",
"28961 string to rule them all",
"28962 string to rule them all",
"28963 string to rule them all",
"28964 string to rule them all",
"28965 string to rule them all",
"28966 string to rule them all",
"28967 string to rule them all",
"28968 string to rule them all",
"28969 string to rule them all",
"28970 string to rule them all",
"28971 string to rule them all",
"28972 string to rule them all",
"28973 string to rule them all",
"28974 string to rule them all",
"28975 string to rule them all",
"28976 string to rule them all",
"28977 string to rule them all",
"28978 string to rule them all",
"28979 string to rule them all",
"28980 string to rule them all",
"28981 string to rule them all",
"28982 string to rule them all",
"28983 string to rule them all",
"28984 string to rule them all",
"28985 string to rule them all",
"28986 string to rule them all",
"28987 string to rule them all",
"28988 string to rule them all",
"28989 string to rule them all",
"28990 string to rule them all",
"28991 string to rule them all",
"28992 string to rule them all",
"28993 string to rule them all",
"28994 string to rule them all",
"28995 string to rule them all",
"28996 string to rule them all",
"28997 string to rule them all",
"28998 string to rule them all",
"28999 string to rule them all",
"29000 string to rule them all",
"29001 string to rule them all",
"29002 string to rule them all",
"29003 string to rule them all",
"29004 string to rule them all",
"29005 string to rule them all",
"29006 string to rule them all",
"29007 string to rule them all",
"29008 string to rule them all",
"29009 string to rule them all",
"29010 string to rule them all",
"29011 string to rule them all",
"29012 string to rule them all",
"29013 string to rule them all",
"29014 string to rule them all",
"29015 string to rule them all",
"29016 string to rule them all",
"29017 string to rule them all",
"29018 string to rule them all",
"29019 string to rule them all",
"29020 string to rule them all",
"29021 string to rule them all",
"29022 string to rule them all",
"29023 string to rule them all",
"29024 string to rule them all",
"29025 string to rule them all",
"29026 string to rule them all",
"29027 string to rule them all",
"29028 string to rule them all",
"29029 string to rule them all",
"29030 string to rule them all",
"29031 string to rule them all",
"29032 string to rule them all",
"29033 string to rule them all",
"29034 string to rule them all",
"29035 string to rule them all",
"29036 string to rule them all",
"29037 string to rule them all",
"29038 string to rule them all",
"29039 string to rule them all",
"29040 string to rule them all",
"29041 string to rule them all",
"29042 string to rule them all",
"29043 string to rule them all",
"29044 string to rule them all",
"29045 string to rule them all",
"29046 string to rule them all",
"29047 string to rule them all",
"29048 string to rule them all",
"29049 string to rule them all",
"29050 string to rule them all",
"29051 string to rule them all",
"29052 string to rule them all",
"29053 string to rule them all",
"29054 string to rule them all",
"29055 string to rule them all",
"29056 string to rule them all",
"29057 string to rule them all",
"29058 string to rule them all",
"29059 string to rule them all",
"29060 string to rule them all",
"29061 string to rule them all",
"29062 string to rule them all",
"29063 string to rule them all",
"29064 string to rule them all",
"29065 string to rule them all",
"29066 string to rule them all",
"29067 string to rule them all",
"29068 string to rule them all",
"29069 string to rule them all",
"29070 string to rule them all",
"29071 string to rule them all",
"29072 string to rule them all",
"29073 string to rule them all",
"29074 string to rule them all",
"29075 string to rule them all",
"29076 string to rule them all",
"29077 string to rule them all",
"29078 string to rule them all",
"29079 string to rule them all",
"29080 string to rule them all",
"29081 string to rule them all",
"29082 string to rule them all",
"29083 string to rule them all",
"29084 string to rule them all",
"29085 string to rule them all",
"29086 string to rule them all",
"29087 string to rule them all",
"29088 string to rule them all",
"29089 string to rule them all",
"29090 string to rule them all",
"29091 string to rule them all",
"29092 string to rule them all",
"29093 string to rule them all",
"29094 string to rule them all",
"29095 string to rule them all",
"29096 string to rule them all",
"29097 string to rule them all",
"29098 string to rule them all",
"29099 string to rule them all",
"29100 string to rule them all",
"29101 string to rule them all",
"29102 string to rule them all",
"29103 string to rule them all",
"29104 string to rule them all",
"29105 string to rule them all",
"29106 string to rule them all",
"29107 string to rule them all",
"29108 string to rule them all",
"29109 string to rule them all",
"29110 string to rule them all",
"29111 string to rule them all",
"29112 string to rule them all",
"29113 string to rule them all",
"29114 string to rule them all",
"29115 string to rule them all",
"29116 string to rule them all",
"29117 string to rule them all",
"29118 string to rule them all",
"29119 string to rule them all",
"29120 string to rule them all",
"29121 string to rule them all",
"29122 string to rule them all",
"29123 string to rule them all",
"29124 string to rule them all",
"29125 string to rule them all",
"29126 string to rule them all",
"29127 string to rule them all",
"29128 string to rule them all",
"29129 string to rule them all",
"29130 string to rule them all",
"29131 string to rule them all",
"29132 string to rule them all",
"29133 string to rule them all",
"29134 string to rule them all",
"29135 string to rule them all",
"29136 string to rule them all",
"29137 string to rule them all",
"29138 string to rule them all",
"29139 string to rule them all",
"29140 string to rule them all",
"29141 string to rule them all",
"29142 string to rule them all",
"29143 string to rule them all",
"29144 string to rule them all",
"29145 string to rule them all",
"29146 string to rule them all",
"29147 string to rule them all",
"29148 string to rule them all",
"29149 string to rule them all",
"29150 string to rule them all",
"29151 string to rule them all",
"29152 string to rule them all",
"29153 string to rule them all",
"29154 string to rule them all",
"29155 string to rule them all",
"29156 string to rule them all",
"29157 string to rule them all",
"29158 string to rule them all",
"29159 string to rule them all",
"29160 string to rule them all",
"29161 string to rule them all",
"29162 string to rule them all",
"29163 string to rule them all",
"29164 string to rule them all",
"29165 string to rule them all",
"29166 string to rule them all",
"29167 string to rule them all",
"29168 string to rule them all",
"29169 string to rule them all",
"29170 string to rule them all",
"29171 string to rule them all",
"29172 string to rule them all",
"29173 string to rule them all",
"29174 string to rule them all",
"29175 string to rule them all",
"29176 string to rule them all",
"29177 string to rule them all",
"29178 string to rule them all",
"29179 string to rule them all",
"29180 string to rule them all",
"29181 string to rule them all",
"29182 string to rule them all",
"29183 string to rule them all",
"29184 string to rule them all",
"29185 string to rule them all",
"29186 string to rule them all",
"29187 string to rule them all",
"29188 string to rule them all",
"29189 string to rule them all",
"29190 string to rule them all",
"29191 string to rule them all",
"29192 string to rule them all",
"29193 string to rule them all",
"29194 string to rule them all",
"29195 string to rule them all",
"29196 string to rule them all",
"29197 string to rule them all",
"29198 string to rule them all",
"29199 string to rule them all",
"29200 string to rule them all",
"29201 string to rule them all",
"29202 string to rule them all",
"29203 string to rule them all",
"29204 string to rule them all",
"29205 string to rule them all",
"29206 string to rule them all",
"29207 string to rule them all",
"29208 string to rule them all",
"29209 string to rule them all",
"29210 string to rule them all",
"29211 string to rule them all",
"29212 string to rule them all",
"29213 string to rule them all",
"29214 string to rule them all",
"29215 string to rule them all",
"29216 string to rule them all",
"29217 string to rule them all",
"29218 string to rule them all",
"29219 string to rule them all",
"29220 string to rule them all",
"29221 string to rule them all",
"29222 string to rule them all",
"29223 string to rule them all",
"29224 string to rule them all",
"29225 string to rule them all",
"29226 string to rule them all",
"29227 string to rule them all",
"29228 string to rule them all",
"29229 string to rule them all",
"29230 string to rule them all",
"29231 string to rule them all",
"29232 string to rule them all",
"29233 string to rule them all",
"29234 string to rule them all",
"29235 string to rule them all",
"29236 string to rule them all",
"29237 string to rule them all",
"29238 string to rule them all",
"29239 string to rule them all",
"29240 string to rule them all",
"29241 string to rule them all",
"29242 string to rule them all",
"29243 string to rule them all",
"29244 string to rule them all",
"29245 string to rule them all",
"29246 string to rule them all",
"29247 string to rule them all",
"29248 string to rule them all",
"29249 string to rule them all",
"29250 string to rule them all",
"29251 string to rule them all",
"29252 string to rule them all",
"29253 string to rule them all",
"29254 string to rule them all",
"29255 string to rule them all",
"29256 string to rule them all",
"29257 string to rule them all",
"29258 string to rule them all",
"29259 string to rule them all",
"29260 string to rule them all",
"29261 string to rule them all",
"29262 string to rule them all",
"29263 string to rule them all",
"29264 string to rule them all",
"29265 string to rule them all",
"29266 string to rule them all",
"29267 string to rule them all",
"29268 string to rule them all",
"29269 string to rule them all",
"29270 string to rule them all",
"29271 string to rule them all",
"29272 string to rule them all",
"29273 string to rule them all",
"29274 string to rule them all",
"29275 string to rule them all",
"29276 string to rule them all",
"29277 string to rule them all",
"29278 string to rule them all",
"29279 string to rule them all",
"29280 string to rule them all",
"29281 string to rule them all",
"29282 string to rule them all",
"29283 string to rule them all",
"29284 string to rule them all",
"29285 string to rule them all",
"29286 string to rule them all",
"29287 string to rule them all",
"29288 string to rule them all",
"29289 string to rule them all",
"29290 string to rule them all",
"29291 string to rule them all",
"29292 string to rule them all",
"29293 string to rule them all",
"29294 string to rule them all",
"29295 string to rule them all",
"29296 string to rule them all",
"29297 string to rule them all",
"29298 string to rule them all",
"29299 string to rule them all",
"29300 string to rule them all",
"29301 string to rule them all",
"29302 string to rule them all",
"29303 string to rule them all",
"29304 string to rule them all",
"29305 string to rule them all",
"29306 string to rule them all",
"29307 string to rule them all",
"29308 string to rule them all",
"29309 string to rule them all",
"29310 string to rule them all",
"29311 string to rule them all",
"29312 string to rule them all",
"29313 string to rule them all",
"29314 string to rule them all",
"29315 string to rule them all",
"29316 string to rule them all",
"29317 string to rule them all",
"29318 string to rule them all",
"29319 string to rule them all",
"29320 string to rule them all",
"29321 string to rule them all",
"29322 string to rule them all",
"29323 string to rule them all",
"29324 string to rule them all",
"29325 string to rule them all",
"29326 string to rule them all",
"29327 string to rule them all",
"29328 string to rule them all",
"29329 string to rule them all",
"29330 string to rule them all",
"29331 string to rule them all",
"29332 string to rule them all",
"29333 string to rule them all",
"29334 string to rule them all",
"29335 string to rule them all",
"29336 string to rule them all",
"29337 string to rule them all",
"29338 string to rule them all",
"29339 string to rule them all",
"29340 string to rule them all",
"29341 string to rule them all",
"29342 string to rule them all",
"29343 string to rule them all",
"29344 string to rule them all",
"29345 string to rule them all",
"29346 string to rule them all",
"29347 string to rule them all",
"29348 string to rule them all",
"29349 string to rule them all",
"29350 string to rule them all",
"29351 string to rule them all",
"29352 string to rule them all",
"29353 string to rule them all",
"29354 string to rule them all",
"29355 string to rule them all",
"29356 string to rule them all",
"29357 string to rule them all",
"29358 string to rule them all",
"29359 string to rule them all",
"29360 string to rule them all",
"29361 string to rule them all",
"29362 string to rule them all",
"29363 string to rule them all",
"29364 string to rule them all",
"29365 string to rule them all",
"29366 string to rule them all",
"29367 string to rule them all",
"29368 string to rule them all",
"29369 string to rule them all",
"29370 string to rule them all",
"29371 string to rule them all",
"29372 string to rule them all",
"29373 string to rule them all",
"29374 string to rule them all",
"29375 string to rule them all",
"29376 string to rule them all",
"29377 string to rule them all",
"29378 string to rule them all",
"29379 string to rule them all",
"29380 string to rule them all",
"29381 string to rule them all",
"29382 string to rule them all",
"29383 string to rule them all",
"29384 string to rule them all",
"29385 string to rule them all",
"29386 string to rule them all",
"29387 string to rule them all",
"29388 string to rule them all",
"29389 string to rule them all",
"29390 string to rule them all",
"29391 string to rule them all",
"29392 string to rule them all",
"29393 string to rule them all",
"29394 string to rule them all",
"29395 string to rule them all",
"29396 string to rule them all",
"29397 string to rule them all",
"29398 string to rule them all",
"29399 string to rule them all",
"29400 string to rule them all",
"29401 string to rule them all",
"29402 string to rule them all",
"29403 string to rule them all",
"29404 string to rule them all",
"29405 string to rule them all",
"29406 string to rule them all",
"29407 string to rule them all",
"29408 string to rule them all",
"29409 string to rule them all",
"29410 string to rule them all",
"29411 string to rule them all",
"29412 string to rule them all",
"29413 string to rule them all",
"29414 string to rule them all",
"29415 string to rule them all",
"29416 string to rule them all",
"29417 string to rule them all",
"29418 string to rule them all",
"29419 string to rule them all",
"29420 string to rule them all",
"29421 string to rule them all",
"29422 string to rule them all",
"29423 string to rule them all",
"29424 string to rule them all",
"29425 string to rule them all",
"29426 string to rule them all",
"29427 string to rule them all",
"29428 string to rule them all",
"29429 string to rule them all",
"29430 string to rule them all",
"29431 string to rule them all",
"29432 string to rule them all",
"29433 string to rule them all",
"29434 string to rule them all",
"29435 string to rule them all",
"29436 string to rule them all",
"29437 string to rule them all",
"29438 string to rule them all",
"29439 string to rule them all",
"29440 string to rule them all",
"29441 string to rule them all",
"29442 string to rule them all",
"29443 string to rule them all",
"29444 string to rule them all",
"29445 string to rule them all",
"29446 string to rule them all",
"29447 string to rule them all",
"29448 string to rule them all",
"29449 string to rule them all",
"29450 string to rule them all",
"29451 string to rule them all",
"29452 string to rule them all",
"29453 string to rule them all",
"29454 string to rule them all",
"29455 string to rule them all",
"29456 string to rule them all",
"29457 string to rule them all",
"29458 string to rule them all",
"29459 string to rule them all",
"29460 string to rule them all",
"29461 string to rule them all",
"29462 string to rule them all",
"29463 string to rule them all",
"29464 string to rule them all",
"29465 string to rule them all",
"29466 string to rule them all",
"29467 string to rule them all",
"29468 string to rule them all",
"29469 string to rule them all",
"29470 string to rule them all",
"29471 string to rule them all",
"29472 string to rule them all",
"29473 string to rule them all",
"29474 string to rule them all",
"29475 string to rule them all",
"29476 string to rule them all",
"29477 string to rule them all",
"29478 string to rule them all",
"29479 string to rule them all",
"29480 string to rule them all",
"29481 string to rule them all",
"29482 string to rule them all",
"29483 string to rule them all",
"29484 string to rule them all",
"29485 string to rule them all",
"29486 string to rule them all",
"29487 string to rule them all",
"29488 string to rule them all",
"29489 string to rule them all",
"29490 string to rule them all",
"29491 string to rule them all",
"29492 string to rule them all",
"29493 string to rule them all",
"29494 string to rule them all",
"29495 string to rule them all",
"29496 string to rule them all",
"29497 string to rule them all",
"29498 string to rule them all",
"29499 string to rule them all",
"29500 string to rule them all",
"29501 string to rule them all",
"29502 string to rule them all",
"29503 string to rule them all",
"29504 string to rule them all",
"29505 string to rule them all",
"29506 string to rule them all",
"29507 string to rule them all",
"29508 string to rule them all",
"29509 string to rule them all",
"29510 string to rule them all",
"29511 string to rule them all",
"29512 string to rule them all",
"29513 string to rule them all",
"29514 string to rule them all",
"29515 string to rule them all",
"29516 string to rule them all",
"29517 string to rule them all",
"29518 string to rule them all",
"29519 string to rule them all",
"29520 string to rule them all",
"29521 string to rule them all",
"29522 string to rule them all",
"29523 string to rule them all",
"29524 string to rule them all",
"29525 string to rule them all",
"29526 string to rule them all",
"29527 string to rule them all",
"29528 string to rule them all",
"29529 string to rule them all",
"29530 string to rule them all",
"29531 string to rule them all",
"29532 string to rule them all",
"29533 string to rule them all",
"29534 string to rule them all",
"29535 string to rule them all",
"29536 string to rule them all",
"29537 string to rule them all",
"29538 string to rule them all",
"29539 string to rule them all",
"29540 string to rule them all",
"29541 string to rule them all",
"29542 string to rule them all",
"29543 string to rule them all",
"29544 string to rule them all",
"29545 string to rule them all",
"29546 string to rule them all",
"29547 string to rule them all",
"29548 string to rule them all",
"29549 string to rule them all",
"29550 string to rule them all",
"29551 string to rule them all",
"29552 string to rule them all",
"29553 string to rule them all",
"29554 string to rule them all",
"29555 string to rule them all",
"29556 string to rule them all",
"29557 string to rule them all",
"29558 string to rule them all",
"29559 string to rule them all",
"29560 string to rule them all",
"29561 string to rule them all",
"29562 string to rule them all",
"29563 string to rule them all",
"29564 string to rule them all",
"29565 string to rule them all",
"29566 string to rule them all",
"29567 string to rule them all",
"29568 string to rule them all",
"29569 string to rule them all",
"29570 string to rule them all",
"29571 string to rule them all",
"29572 string to rule them all",
"29573 string to rule them all",
"29574 string to rule them all",
"29575 string to rule them all",
"29576 string to rule them all",
"29577 string to rule them all",
"29578 string to rule them all",
"29579 string to rule them all",
"29580 string to rule them all",
"29581 string to rule them all",
"29582 string to rule them all",
"29583 string to rule them all",
"29584 string to rule them all",
"29585 string to rule them all",
"29586 string to rule them all",
"29587 string to rule them all",
"29588 string to rule them all",
"29589 string to rule them all",
"29590 string to rule them all",
"29591 string to rule them all",
"29592 string to rule them all",
"29593 string to rule them all",
"29594 string to rule them all",
"29595 string to rule them all",
"29596 string to rule them all",
"29597 string to rule them all",
"29598 string to rule them all",
"29599 string to rule them all",
"29600 string to rule them all",
"29601 string to rule them all",
"29602 string to rule them all",
"29603 string to rule them all",
"29604 string to rule them all",
"29605 string to rule them all",
"29606 string to rule them all",
"29607 string to rule them all",
"29608 string to rule them all",
"29609 string to rule them all",
"29610 string to rule them all",
"29611 string to rule them all",
"29612 string to rule them all",
"29613 string to rule them all",
"29614 string to rule them all",
"29615 string to rule them all",
"29616 string to rule them all",
"29617 string to rule them all",
"29618 string to rule them all",
"29619 string to rule them all",
"29620 string to rule them all",
"29621 string to rule them all",
"29622 string to rule them all",
"29623 string to rule them all",
"29624 string to rule them all",
"29625 string to rule them all",
"29626 string to rule them all",
"29627 string to rule them all",
"29628 string to rule them all",
"29629 string to rule them all",
"29630 string to rule them all",
"29631 string to rule them all",
"29632 string to rule them all",
"29633 string to rule them all",
"29634 string to rule them all",
"29635 string to rule them all",
"29636 string to rule them all",
"29637 string to rule them all",
"29638 string to rule them all",
"29639 string to rule them all",
"29640 string to rule them all",
"29641 string to rule them all",
"29642 string to rule them all",
"29643 string to rule them all",
"29644 string to rule them all",
"29645 string to rule them all",
"29646 string to rule them all",
"29647 string to rule them all",
"29648 string to rule them all",
"29649 string to rule them all",
"29650 string to rule them all",
"29651 string to rule them all",
"29652 string to rule them all",
"29653 string to rule them all",
"29654 string to rule them all",
"29655 string to rule them all",
"29656 string to rule them all",
"29657 string to rule them all",
"29658 string to rule them all",
"29659 string to rule them all",
"29660 string to rule them all",
"29661 string to rule them all",
"29662 string to rule them all",
"29663 string to rule them all",
"29664 string to rule them all",
"29665 string to rule them all",
"29666 string to rule them all",
"29667 string to rule them all",
"29668 string to rule them all",
"29669 string to rule them all",
"29670 string to rule them all",
"29671 string to rule them all",
"29672 string to rule them all",
"29673 string to rule them all",
"29674 string to rule them all",
"29675 string to rule them all",
"29676 string to rule them all",
"29677 string to rule them all",
"29678 string to rule them all",
"29679 string to rule them all",
"29680 string to rule them all",
"29681 string to rule them all",
"29682 string to rule them all",
"29683 string to rule them all",
"29684 string to rule them all",
"29685 string to rule them all",
"29686 string to rule them all",
"29687 string to rule them all",
"29688 string to rule them all",
"29689 string to rule them all",
"29690 string to rule them all",
"29691 string to rule them all",
"29692 string to rule them all",
"29693 string to rule them all",
"29694 string to rule them all",
"29695 string to rule them all",
"29696 string to rule them all",
"29697 string to rule them all",
"29698 string to rule them all",
"29699 string to rule them all",
"29700 string to rule them all",
"29701 string to rule them all",
"29702 string to rule them all",
"29703 string to rule them all",
"29704 string to rule them all",
"29705 string to rule them all",
"29706 string to rule them all",
"29707 string to rule them all",
"29708 string to rule them all",
"29709 string to rule them all",
"29710 string to rule them all",
"29711 string to rule them all",
"29712 string to rule them all",
"29713 string to rule them all",
"29714 string to rule them all",
"29715 string to rule them all",
"29716 string to rule them all",
"29717 string to rule them all",
"29718 string to rule them all",
"29719 string to rule them all",
"29720 string to rule them all",
"29721 string to rule them all",
"29722 string to rule them all",
"29723 string to rule them all",
"29724 string to rule them all",
"29725 string to rule them all",
"29726 string to rule them all",
"29727 string to rule them all",
"29728 string to rule them all",
"29729 string to rule them all",
"29730 string to rule them all",
"29731 string to rule them all",
"29732 string to rule them all",
"29733 string to rule them all",
"29734 string to rule them all",
"29735 string to rule them all",
"29736 string to rule them all",
"29737 string to rule them all",
"29738 string to rule them all",
"29739 string to rule them all",
"29740 string to rule them all",
"29741 string to rule them all",
"29742 string to rule them all",
"29743 string to rule them all",
"29744 string to rule them all",
"29745 string to rule them all",
"29746 string to rule them all",
"29747 string to rule them all",
"29748 string to rule them all",
"29749 string to rule them all",
"29750 string to rule them all",
"29751 string to rule them all",
"29752 string to rule them all",
"29753 string to rule them all",
"29754 string to rule them all",
"29755 string to rule them all",
"29756 string to rule them all",
"29757 string to rule them all",
"29758 string to rule them all",
"29759 string to rule them all",
"29760 string to rule them all",
"29761 string to rule them all",
"29762 string to rule them all",
"29763 string to rule them all",
"29764 string to rule them all",
"29765 string to rule them all",
"29766 string to rule them all",
"29767 string to rule them all",
"29768 string to rule them all",
"29769 string to rule them all",
"29770 string to rule them all",
"29771 string to rule them all",
"29772 string to rule them all",
"29773 string to rule them all",
"29774 string to rule them all",
"29775 string to rule them all",
"29776 string to rule them all",
"29777 string to rule them all",
"29778 string to rule them all",
"29779 string to rule them all",
"29780 string to rule them all",
"29781 string to rule them all",
"29782 string to rule them all",
"29783 string to rule them all",
"29784 string to rule them all",
"29785 string to rule them all",
"29786 string to rule them all",
"29787 string to rule them all",
"29788 string to rule them all",
"29789 string to rule them all",
"29790 string to rule them all",
"29791 string to rule them all",
"29792 string to rule them all",
"29793 string to rule them all",
"29794 string to rule them all",
"29795 string to rule them all",
"29796 string to rule them all",
"29797 string to rule them all",
"29798 string to rule them all",
"29799 string to rule them all",
"29800 string to rule them all",
"29801 string to rule them all",
"29802 string to rule them all",
"29803 string to rule them all",
"29804 string to rule them all",
"29805 string to rule them all",
"29806 string to rule them all",
"29807 string to rule them all",
"29808 string to rule them all",
"29809 string to rule them all",
"29810 string to rule them all",
"29811 string to rule them all",
"29812 string to rule them all",
"29813 string to rule them all",
"29814 string to rule them all",
"29815 string to rule them all",
"29816 string to rule them all",
"29817 string to rule them all",
"29818 string to rule them all",
"29819 string to rule them all",
"29820 string to rule them all",
"29821 string to rule them all",
"29822 string to rule them all",
"29823 string to rule them all",
"29824 string to rule them all",
"29825 string to rule them all",
"29826 string to rule them all",
"29827 string to rule them all",
"29828 string to rule them all",
"29829 string to rule them all",
"29830 string to rule them all",
"29831 string to rule them all",
"29832 string to rule them all",
"29833 string to rule them all",
"29834 string to rule them all",
"29835 string to rule them all",
"29836 string to rule them all",
"29837 string to rule them all",
"29838 string to rule them all",
"29839 string to rule them all",
"29840 string to rule them all",
"29841 string to rule them all",
"29842 string to rule them all",
"29843 string to rule them all",
"29844 string to rule them all",
"29845 string to rule them all",
"29846 string to rule them all",
"29847 string to rule them all",
"29848 string to rule them all",
"29849 string to rule them all",
"29850 string to rule them all",
"29851 string to rule them all",
"29852 string to rule them all",
"29853 string to rule them all",
"29854 string to rule them all",
"29855 string to rule them all",
"29856 string to rule them all",
"29857 string to rule them all",
"29858 string to rule them all",
"29859 string to rule them all",
"29860 string to rule them all",
"29861 string to rule them all",
"29862 string to rule them all",
"29863 string to rule them all",
"29864 string to rule them all",
"29865 string to rule them all",
"29866 string to rule them all",
"29867 string to rule them all",
"29868 string to rule them all",
"29869 string to rule them all",
"29870 string to rule them all",
"29871 string to rule them all",
"29872 string to rule them all",
"29873 string to rule them all",
"29874 string to rule them all",
"29875 string to rule them all",
"29876 string to rule them all",
"29877 string to rule them all",
"29878 string to rule them all",
"29879 string to rule them all",
"29880 string to rule them all",
"29881 string to rule them all",
"29882 string to rule them all",
"29883 string to rule them all",
"29884 string to rule them all",
"29885 string to rule them all",
"29886 string to rule them all",
"29887 string to rule them all",
"29888 string to rule them all",
"29889 string to rule them all",
"29890 string to rule them all",
"29891 string to rule them all",
"29892 string to rule them all",
"29893 string to rule them all",
"29894 string to rule them all",
"29895 string to rule them all",
"29896 string to rule them all",
"29897 string to rule them all",
"29898 string to rule them all",
"29899 string to rule them all",
"29900 string to rule them all",
"29901 string to rule them all",
"29902 string to rule them all",
"29903 string to rule them all",
"29904 string to rule them all",
"29905 string to rule them all",
"29906 string to rule them all",
"29907 string to rule them all",
"29908 string to rule them all",
"29909 string to rule them all",
"29910 string to rule them all",
"29911 string to rule them all",
"29912 string to rule them all",
"29913 string to rule them all",
"29914 string to rule them all",
"29915 string to rule them all",
"29916 string to rule them all",
"29917 string to rule them all",
"29918 string to rule them all",
"29919 string to rule them all",
"29920 string to rule them all",
"29921 string to rule them all",
"29922 string to rule them all",
"29923 string to rule them all",
"29924 string to rule them all",
"29925 string to rule them all",
"29926 string to rule them all",
"29927 string to rule them all",
"29928 string to rule them all",
"29929 string to rule them all",
"29930 string to rule them all",
"29931 string to rule them all",
"29932 string to rule them all",
"29933 string to rule them all",
"29934 string to rule them all",
"29935 string to rule them all",
"29936 string to rule them all",
"29937 string to rule them all",
"29938 string to rule them all",
"29939 string to rule them all",
"29940 string to rule them all",
"29941 string to rule them all",
"29942 string to rule them all",
"29943 string to rule them all",
"29944 string to rule them all",
"29945 string to rule them all",
"29946 string to rule them all",
"29947 string to rule them all",
"29948 string to rule them all",
"29949 string to rule them all",
"29950 string to rule them all",
"29951 string to rule them all",
"29952 string to rule them all",
"29953 string to rule them all",
"29954 string to rule them all",
"29955 string to rule them all",
"29956 string to rule them all",
"29957 string to rule them all",
"29958 string to rule them all",
"29959 string to rule them all",
"29960 string to rule them all",
"29961 string to rule them all",
"29962 string to rule them all",
"29963 string to rule them all",
"29964 string to rule them all",
"29965 string to rule them all",
"29966 string to rule them all",
"29967 string to rule them all",
"29968 string to rule them all",
"29969 string to rule them all",
"29970 string to rule them all",
"29971 string to rule them all",
"29972 string to rule them all",
"29973 string to rule them all",
"29974 string to rule them all",
"29975 string to rule them all",
"29976 string to rule them all",
"29977 string to rule them all",
"29978 string to rule them all",
"29979 string to rule them all",
"29980 string to rule them all",
"29981 string to rule them all",
"29982 string to rule them all",
"29983 string to rule them all",
"29984 string to rule them all",
"29985 string to rule them all",
"29986 string to rule them all",
"29987 string to rule them all",
"29988 string to rule them all",
"29989 string to rule them all",
"29990 string to rule them all",
"29991 string to rule them all",
"29992 string to rule them all",
"29993 string to rule them all",
"29994 string to rule them all",
"29995 string to rule them all",
"29996 string to rule them all",
"29997 string to rule them all",
"29998 string to rule them all",
"29999 string to rule them all",
"30000 string to rule them all",
"30001 string to rule them all",
"30002 string to rule them all",
"30003 string to rule them all",
"30004 string to rule them all",
"30005 string to rule them all",
"30006 string to rule them all",
"30007 string to rule them all",
"30008 string to rule them all",
"30009 string to rule them all",
"30010 string to rule them all",
"30011 string to rule them all",
"30012 string to rule them all",
"30013 string to rule them all",
"30014 string to rule them all",
"30015 string to rule them all",
"30016 string to rule them all",
"30017 string to rule them all",
"30018 string to rule them all",
"30019 string to rule them all",
"30020 string to rule them all",
"30021 string to rule them all",
"30022 string to rule them all",
"30023 string to rule them all",
"30024 string to rule them all",
"30025 string to rule them all",
"30026 string to rule them all",
"30027 string to rule them all",
"30028 string to rule them all",
"30029 string to rule them all",
"30030 string to rule them all",
"30031 string to rule them all",
"30032 string to rule them all",
"30033 string to rule them all",
"30034 string to rule them all",
"30035 string to rule them all",
"30036 string to rule them all",
"30037 string to rule them all",
"30038 string to rule them all",
"30039 string to rule them all",
"30040 string to rule them all",
"30041 string to rule them all",
"30042 string to rule them all",
"30043 string to rule them all",
"30044 string to rule them all",
"30045 string to rule them all",
"30046 string to rule them all",
"30047 string to rule them all",
"30048 string to rule them all",
"30049 string to rule them all",
"30050 string to rule them all",
"30051 string to rule them all",
"30052 string to rule them all",
"30053 string to rule them all",
"30054 string to rule them all",
"30055 string to rule them all",
"30056 string to rule them all",
"30057 string to rule them all",
"30058 string to rule them all",
"30059 string to rule them all",
"30060 string to rule them all",
"30061 string to rule them all",
"30062 string to rule them all",
"30063 string to rule them all",
"30064 string to rule them all",
"30065 string to rule them all",
"30066 string to rule them all",
"30067 string to rule them all",
"30068 string to rule them all",
"30069 string to rule them all",
"30070 string to rule them all",
"30071 string to rule them all",
"30072 string to rule them all",
"30073 string to rule them all",
"30074 string to rule them all",
"30075 string to rule them all",
"30076 string to rule them all",
"30077 string to rule them all",
"30078 string to rule them all",
"30079 string to rule them all",
"30080 string to rule them all",
"30081 string to rule them all",
"30082 string to rule them all",
"30083 string to rule them all",
"30084 string to rule them all",
"30085 string to rule them all",
"30086 string to rule them all",
"30087 string to rule them all",
"30088 string to rule them all",
"30089 string to rule them all",
"30090 string to rule them all",
"30091 string to rule them all",
"30092 string to rule them all",
"30093 string to rule them all",
"30094 string to rule them all",
"30095 string to rule them all",
"30096 string to rule them all",
"30097 string to rule them all",
"30098 string to rule them all",
"30099 string to rule them all",
"30100 string to rule them all",
"30101 string to rule them all",
"30102 string to rule them all",
"30103 string to rule them all",
"30104 string to rule them all",
"30105 string to rule them all",
"30106 string to rule them all",
"30107 string to rule them all",
"30108 string to rule them all",
"30109 string to rule them all",
"30110 string to rule them all",
"30111 string to rule them all",
"30112 string to rule them all",
"30113 string to rule them all",
"30114 string to rule them all",
"30115 string to rule them all",
"30116 string to rule them all",
"30117 string to rule them all",
"30118 string to rule them all",
"30119 string to rule them all",
"30120 string to rule them all",
"30121 string to rule them all",
"30122 string to rule them all",
"30123 string to rule them all",
"30124 string to rule them all",
"30125 string to rule them all",
"30126 string to rule them all",
"30127 string to rule them all",
"30128 string to rule them all",
"30129 string to rule them all",
"30130 string to rule them all",
"30131 string to rule them all",
"30132 string to rule them all",
"30133 string to rule them all",
"30134 string to rule them all",
"30135 string to rule them all",
"30136 string to rule them all",
"30137 string to rule them all",
"30138 string to rule them all",
"30139 string to rule them all",
"30140 string to rule them all",
"30141 string to rule them all",
"30142 string to rule them all",
"30143 string to rule them all",
"30144 string to rule them all",
"30145 string to rule them all",
"30146 string to rule them all",
"30147 string to rule them all",
"30148 string to rule them all",
"30149 string to rule them all",
"30150 string to rule them all",
"30151 string to rule them all",
"30152 string to rule them all",
"30153 string to rule them all",
"30154 string to rule them all",
"30155 string to rule them all",
"30156 string to rule them all",
"30157 string to rule them all",
"30158 string to rule them all",
"30159 string to rule them all",
"30160 string to rule them all",
"30161 string to rule them all",
"30162 string to rule them all",
"30163 string to rule them all",
"30164 string to rule them all",
"30165 string to rule them all",
"30166 string to rule them all",
"30167 string to rule them all",
"30168 string to rule them all",
"30169 string to rule them all",
"30170 string to rule them all",
"30171 string to rule them all",
"30172 string to rule them all",
"30173 string to rule them all",
"30174 string to rule them all",
"30175 string to rule them all",
"30176 string to rule them all",
"30177 string to rule them all",
"30178 string to rule them all",
"30179 string to rule them all",
"30180 string to rule them all",
"30181 string to rule them all",
"30182 string to rule them all",
"30183 string to rule them all",
"30184 string to rule them all",
"30185 string to rule them all",
"30186 string to rule them all",
"30187 string to rule them all",
"30188 string to rule them all",
"30189 string to rule them all",
"30190 string to rule them all",
"30191 string to rule them all",
"30192 string to rule them all",
"30193 string to rule them all",
"30194 string to rule them all",
"30195 string to rule them all",
"30196 string to rule them all",
"30197 string to rule them all",
"30198 string to rule them all",
"30199 string to rule them all",
"30200 string to rule them all",
"30201 string to rule them all",
"30202 string to rule them all",
"30203 string to rule them all",
"30204 string to rule them all",
"30205 string to rule them all",
"30206 string to rule them all",
"30207 string to rule them all",
"30208 string to rule them all",
"30209 string to rule them all",
"30210 string to rule them all",
"30211 string to rule them all",
"30212 string to rule them all",
"30213 string to rule them all",
"30214 string to rule them all",
"30215 string to rule them all",
"30216 string to rule them all",
"30217 string to rule them all",
"30218 string to rule them all",
"30219 string to rule them all",
"30220 string to rule them all",
"30221 string to rule them all",
"30222 string to rule them all",
"30223 string to rule them all",
"30224 string to rule them all",
"30225 string to rule them all",
"30226 string to rule them all",
"30227 string to rule them all",
"30228 string to rule them all",
"30229 string to rule them all",
"30230 string to rule them all",
"30231 string to rule them all",
"30232 string to rule them all",
"30233 string to rule them all",
"30234 string to rule them all",
"30235 string to rule them all",
"30236 string to rule them all",
"30237 string to rule them all",
"30238 string to rule them all",
"30239 string to rule them all",
"30240 string to rule them all",
"30241 string to rule them all",
"30242 string to rule them all",
"30243 string to rule them all",
"30244 string to rule them all",
"30245 string to rule them all",
"30246 string to rule them all",
"30247 string to rule them all",
"30248 string to rule them all",
"30249 string to rule them all",
"30250 string to rule them all",
"30251 string to rule them all",
"30252 string to rule them all",
"30253 string to rule them all",
"30254 string to rule them all",
"30255 string to rule them all",
"30256 string to rule them all",
"30257 string to rule them all",
"30258 string to rule them all",
"30259 string to rule them all",
"30260 string to rule them all",
"30261 string to rule them all",
"30262 string to rule them all",
"30263 string to rule them all",
"30264 string to rule them all",
"30265 string to rule them all",
"30266 string to rule them all",
"30267 string to rule them all",
"30268 string to rule them all",
"30269 string to rule them all",
"30270 string to rule them all",
"30271 string to rule them all",
"30272 string to rule them all",
"30273 string to rule them all",
"30274 string to rule them all",
"30275 string to rule them all",
"30276 string to rule them all",
"30277 string to rule them all",
"30278 string to rule them all",
"30279 string to rule them all",
"30280 string to rule them all",
"30281 string to rule them all",
"30282 string to rule them all",
"30283 string to rule them all",
"30284 string to rule them all",
"30285 string to rule them all",
"30286 string to rule them all",
"30287 string to rule them all",
"30288 string to rule them all",
"30289 string to rule them all",
"30290 string to rule them all",
"30291 string to rule them all",
"30292 string to rule them all",
"30293 string to rule them all",
"30294 string to rule them all",
"30295 string to rule them all",
"30296 string to rule them all",
"30297 string to rule them all",
"30298 string to rule them all",
"30299 string to rule them all",
"30300 string to rule them all",
"30301 string to rule them all",
"30302 string to rule them all",
"30303 string to rule them all",
"30304 string to rule them all",
"30305 string to rule them all",
"30306 string to rule them all",
"30307 string to rule them all",
"30308 string to rule them all",
"30309 string to rule them all",
"30310 string to rule them all",
"30311 string to rule them all",
"30312 string to rule them all",
"30313 string to rule them all",
"30314 string to rule them all",
"30315 string to rule them all",
"30316 string to rule them all",
"30317 string to rule them all",
"30318 string to rule them all",
"30319 string to rule them all",
"30320 string to rule them all",
"30321 string to rule them all",
"30322 string to rule them all",
"30323 string to rule them all",
"30324 string to rule them all",
"30325 string to rule them all",
"30326 string to rule them all",
"30327 string to rule them all",
"30328 string to rule them all",
"30329 string to rule them all",
"30330 string to rule them all",
"30331 string to rule them all",
"30332 string to rule them all",
"30333 string to rule them all",
"30334 string to rule them all",
"30335 string to rule them all",
"30336 string to rule them all",
"30337 string to rule them all",
"30338 string to rule them all",
"30339 string to rule them all",
"30340 string to rule them all",
"30341 string to rule them all",
"30342 string to rule them all",
"30343 string to rule them all",
"30344 string to rule them all",
"30345 string to rule them all",
"30346 string to rule them all",
"30347 string to rule them all",
"30348 string to rule them all",
"30349 string to rule them all",
"30350 string to rule them all",
"30351 string to rule them all",
"30352 string to rule them all",
"30353 string to rule them all",
"30354 string to rule them all",
"30355 string to rule them all",
"30356 string to rule them all",
"30357 string to rule them all",
"30358 string to rule them all",
"30359 string to rule them all",
"30360 string to rule them all",
"30361 string to rule them all",
"30362 string to rule them all",
"30363 string to rule them all",
"30364 string to rule them all",
"30365 string to rule them all",
"30366 string to rule them all",
"30367 string to rule them all",
"30368 string to rule them all",
"30369 string to rule them all",
"30370 string to rule them all",
"30371 string to rule them all",
"30372 string to rule them all",
"30373 string to rule them all",
"30374 string to rule them all",
"30375 string to rule them all",
"30376 string to rule them all",
"30377 string to rule them all",
"30378 string to rule them all",
"30379 string to rule them all",
"30380 string to rule them all",
"30381 string to rule them all",
"30382 string to rule them all",
"30383 string to rule them all",
"30384 string to rule them all",
"30385 string to rule them all",
"30386 string to rule them all",
"30387 string to rule them all",
"30388 string to rule them all",
"30389 string to rule them all",
"30390 string to rule them all",
"30391 string to rule them all",
"30392 string to rule them all",
"30393 string to rule them all",
"30394 string to rule them all",
"30395 string to rule them all",
"30396 string to rule them all",
"30397 string to rule them all",
"30398 string to rule them all",
"30399 string to rule them all",
"30400 string to rule them all",
"30401 string to rule them all",
"30402 string to rule them all",
"30403 string to rule them all",
"30404 string to rule them all",
"30405 string to rule them all",
"30406 string to rule them all",
"30407 string to rule them all",
"30408 string to rule them all",
"30409 string to rule them all",
"30410 string to rule them all",
"30411 string to rule them all",
"30412 string to rule them all",
"30413 string to rule them all",
"30414 string to rule them all",
"30415 string to rule them all",
"30416 string to rule them all",
"30417 string to rule them all",
"30418 string to rule them all",
"30419 string to rule them all",
"30420 string to rule them all",
"30421 string to rule them all",
"30422 string to rule them all",
"30423 string to rule them all",
"30424 string to rule them all",
"30425 string to rule them all",
"30426 string to rule them all",
"30427 string to rule them all",
"30428 string to rule them all",
"30429 string to rule them all",
"30430 string to rule them all",
"30431 string to rule them all",
"30432 string to rule them all",
"30433 string to rule them all",
"30434 string to rule them all",
"30435 string to rule them all",
"30436 string to rule them all",
"30437 string to rule them all",
"30438 string to rule them all",
"30439 string to rule them all",
"30440 string to rule them all",
"30441 string to rule them all",
"30442 string to rule them all",
"30443 string to rule them all",
"30444 string to rule them all",
"30445 string to rule them all",
"30446 string to rule them all",
"30447 string to rule them all",
"30448 string to rule them all",
"30449 string to rule them all",
"30450 string to rule them all",
"30451 string to rule them all",
"30452 string to rule them all",
"30453 string to rule them all",
"30454 string to rule them all",
"30455 string to rule them all",
"30456 string to rule them all",
"30457 string to rule them all",
"30458 string to rule them all",
"30459 string to rule them all",
"30460 string to rule them all",
"30461 string to rule them all",
"30462 string to rule them all",
"30463 string to rule them all",
"30464 string to rule them all",
"30465 string to rule them all",
"30466 string to rule them all",
"30467 string to rule them all",
"30468 string to rule them all",
"30469 string to rule them all",
"30470 string to rule them all",
"30471 string to rule them all",
"30472 string to rule them all",
"30473 string to rule them all",
"30474 string to rule them all",
"30475 string to rule them all",
"30476 string to rule them all",
"30477 string to rule them all",
"30478 string to rule them all",
"30479 string to rule them all",
"30480 string to rule them all",
"30481 string to rule them all",
"30482 string to rule them all",
"30483 string to rule them all",
"30484 string to rule them all",
"30485 string to rule them all",
"30486 string to rule them all",
"30487 string to rule them all",
"30488 string to rule them all",
"30489 string to rule them all",
"30490 string to rule them all",
"30491 string to rule them all",
"30492 string to rule them all",
"30493 string to rule them all",
"30494 string to rule them all",
"30495 string to rule them all",
"30496 string to rule them all",
"30497 string to rule them all",
"30498 string to rule them all",
"30499 string to rule them all",
"30500 string to rule them all",
"30501 string to rule them all",
"30502 string to rule them all",
"30503 string to rule them all",
"30504 string to rule them all",
"30505 string to rule them all",
"30506 string to rule them all",
"30507 string to rule them all",
"30508 string to rule them all",
"30509 string to rule them all",
"30510 string to rule them all",
"30511 string to rule them all",
"30512 string to rule them all",
"30513 string to rule them all",
"30514 string to rule them all",
"30515 string to rule them all",
"30516 string to rule them all",
"30517 string to rule them all",
"30518 string to rule them all",
"30519 string to rule them all",
"30520 string to rule them all",
"30521 string to rule them all",
"30522 string to rule them all",
"30523 string to rule them all",
"30524 string to rule them all",
"30525 string to rule them all",
"30526 string to rule them all",
"30527 string to rule them all",
"30528 string to rule them all",
"30529 string to rule them all",
"30530 string to rule them all",
"30531 string to rule them all",
"30532 string to rule them all",
"30533 string to rule them all",
"30534 string to rule them all",
"30535 string to rule them all",
"30536 string to rule them all",
"30537 string to rule them all",
"30538 string to rule them all",
"30539 string to rule them all",
"30540 string to rule them all",
"30541 string to rule them all",
"30542 string to rule them all",
"30543 string to rule them all",
"30544 string to rule them all",
"30545 string to rule them all",
"30546 string to rule them all",
"30547 string to rule them all",
"30548 string to rule them all",
"30549 string to rule them all",
"30550 string to rule them all",
"30551 string to rule them all",
"30552 string to rule them all",
"30553 string to rule them all",
"30554 string to rule them all",
"30555 string to rule them all",
"30556 string to rule them all",
"30557 string to rule them all",
"30558 string to rule them all",
"30559 string to rule them all",
"30560 string to rule them all",
"30561 string to rule them all",
"30562 string to rule them all",
"30563 string to rule them all",
"30564 string to rule them all",
"30565 string to rule them all",
"30566 string to rule them all",
"30567 string to rule them all",
"30568 string to rule them all",
"30569 string to rule them all",
"30570 string to rule them all",
"30571 string to rule them all",
"30572 string to rule them all",
"30573 string to rule them all",
"30574 string to rule them all",
"30575 string to rule them all",
"30576 string to rule them all",
"30577 string to rule them all",
"30578 string to rule them all",
"30579 string to rule them all",
"30580 string to rule them all",
"30581 string to rule them all",
"30582 string to rule them all",
"30583 string to rule them all",
"30584 string to rule them all",
"30585 string to rule them all",
"30586 string to rule them all",
"30587 string to rule them all",
"30588 string to rule them all",
"30589 string to rule them all",
"30590 string to rule them all",
"30591 string to rule them all",
"30592 string to rule them all",
"30593 string to rule them all",
"30594 string to rule them all",
"30595 string to rule them all",
"30596 string to rule them all",
"30597 string to rule them all",
"30598 string to rule them all",
"30599 string to rule them all",
"30600 string to rule them all",
"30601 string to rule them all",
"30602 string to rule them all",
"30603 string to rule them all",
"30604 string to rule them all",
"30605 string to rule them all",
"30606 string to rule them all",
"30607 string to rule them all",
"30608 string to rule them all",
"30609 string to rule them all",
"30610 string to rule them all",
"30611 string to rule them all",
"30612 string to rule them all",
"30613 string to rule them all",
"30614 string to rule them all",
"30615 string to rule them all",
"30616 string to rule them all",
"30617 string to rule them all",
"30618 string to rule them all",
"30619 string to rule them all",
"30620 string to rule them all",
"30621 string to rule them all",
"30622 string to rule them all",
"30623 string to rule them all",
"30624 string to rule them all",
"30625 string to rule them all",
"30626 string to rule them all",
"30627 string to rule them all",
"30628 string to rule them all",
"30629 string to rule them all",
"30630 string to rule them all",
"30631 string to rule them all",
"30632 string to rule them all",
"30633 string to rule them all",
"30634 string to rule them all",
"30635 string to rule them all",
"30636 string to rule them all",
"30637 string to rule them all",
"30638 string to rule them all",
"30639 string to rule them all",
"30640 string to rule them all",
"30641 string to rule them all",
"30642 string to rule them all",
"30643 string to rule them all",
"30644 string to rule them all",
"30645 string to rule them all",
"30646 string to rule them all",
"30647 string to rule them all",
"30648 string to rule them all",
"30649 string to rule them all",
"30650 string to rule them all",
"30651 string to rule them all",
"30652 string to rule them all",
"30653 string to rule them all",
"30654 string to rule them all",
"30655 string to rule them all",
"30656 string to rule them all",
"30657 string to rule them all",
"30658 string to rule them all",
"30659 string to rule them all",
"30660 string to rule them all",
"30661 string to rule them all",
"30662 string to rule them all",
"30663 string to rule them all",
"30664 string to rule them all",
"30665 string to rule them all",
"30666 string to rule them all",
"30667 string to rule them all",
"30668 string to rule them all",
"30669 string to rule them all",
"30670 string to rule them all",
"30671 string to rule them all",
"30672 string to rule them all",
"30673 string to rule them all",
"30674 string to rule them all",
"30675 string to rule them all",
"30676 string to rule them all",
"30677 string to rule them all",
"30678 string to rule them all",
"30679 string to rule them all",
"30680 string to rule them all",
"30681 string to rule them all",
"30682 string to rule them all",
"30683 string to rule them all",
"30684 string to rule them all",
"30685 string to rule them all",
"30686 string to rule them all",
"30687 string to rule them all",
"30688 string to rule them all",
"30689 string to rule them all",
"30690 string to rule them all",
"30691 string to rule them all",
"30692 string to rule them all",
"30693 string to rule them all",
"30694 string to rule them all",
"30695 string to rule them all",
"30696 string to rule them all",
"30697 string to rule them all",
"30698 string to rule them all",
"30699 string to rule them all",
"30700 string to rule them all",
"30701 string to rule them all",
"30702 string to rule them all",
"30703 string to rule them all",
"30704 string to rule them all",
"30705 string to rule them all",
"30706 string to rule them all",
"30707 string to rule them all",
"30708 string to rule them all",
"30709 string to rule them all",
"30710 string to rule them all",
"30711 string to rule them all",
"30712 string to rule them all",
"30713 string to rule them all",
"30714 string to rule them all",
"30715 string to rule them all",
"30716 string to rule them all",
"30717 string to rule them all",
"30718 string to rule them all",
"30719 string to rule them all",
"30720 string to rule them all",
"30721 string to rule them all",
"30722 string to rule them all",
"30723 string to rule them all",
"30724 string to rule them all",
"30725 string to rule them all",
"30726 string to rule them all",
"30727 string to rule them all",
"30728 string to rule them all",
"30729 string to rule them all",
"30730 string to rule them all",
"30731 string to rule them all",
"30732 string to rule them all",
"30733 string to rule them all",
"30734 string to rule them all",
"30735 string to rule them all",
"30736 string to rule them all",
"30737 string to rule them all",
"30738 string to rule them all",
"30739 string to rule them all",
"30740 string to rule them all",
"30741 string to rule them all",
"30742 string to rule them all",
"30743 string to rule them all",
"30744 string to rule them all",
"30745 string to rule them all",
"30746 string to rule them all",
"30747 string to rule them all",
"30748 string to rule them all",
"30749 string to rule them all",
"30750 string to rule them all",
"30751 string to rule them all",
"30752 string to rule them all",
"30753 string to rule them all",
"30754 string to rule them all",
"30755 string to rule them all",
"30756 string to rule them all",
"30757 string to rule them all",
"30758 string to rule them all",
"30759 string to rule them all",
"30760 string to rule them all",
"30761 string to rule them all",
"30762 string to rule them all",
"30763 string to rule them all",
"30764 string to rule them all",
"30765 string to rule them all",
"30766 string to rule them all",
"30767 string to rule them all",
"30768 string to rule them all",
"30769 string to rule them all",
"30770 string to rule them all",
"30771 string to rule them all",
"30772 string to rule them all",
"30773 string to rule them all",
"30774 string to rule them all",
"30775 string to rule them all",
"30776 string to rule them all",
"30777 string to rule them all",
"30778 string to rule them all",
"30779 string to rule them all",
"30780 string to rule them all",
"30781 string to rule them all",
"30782 string to rule them all",
"30783 string to rule them all",
"30784 string to rule them all",
"30785 string to rule them all",
"30786 string to rule them all",
"30787 string to rule them all",
"30788 string to rule them all",
"30789 string to rule them all",
"30790 string to rule them all",
"30791 string to rule them all",
"30792 string to rule them all",
"30793 string to rule them all",
"30794 string to rule them all",
"30795 string to rule them all",
"30796 string to rule them all",
"30797 string to rule them all",
"30798 string to rule them all",
"30799 string to rule them all",
"30800 string to rule them all",
"30801 string to rule them all",
"30802 string to rule them all",
"30803 string to rule them all",
"30804 string to rule them all",
"30805 string to rule them all",
"30806 string to rule them all",
"30807 string to rule them all",
"30808 string to rule them all",
"30809 string to rule them all",
"30810 string to rule them all",
"30811 string to rule them all",
"30812 string to rule them all",
"30813 string to rule them all",
"30814 string to rule them all",
"30815 string to rule them all",
"30816 string to rule them all",
"30817 string to rule them all",
"30818 string to rule them all",
"30819 string to rule them all",
"30820 string to rule them all",
"30821 string to rule them all",
"30822 string to rule them all",
"30823 string to rule them all",
"30824 string to rule them all",
"30825 string to rule them all",
"30826 string to rule them all",
"30827 string to rule them all",
"30828 string to rule them all",
"30829 string to rule them all",
"30830 string to rule them all",
"30831 string to rule them all",
"30832 string to rule them all",
"30833 string to rule them all",
"30834 string to rule them all",
"30835 string to rule them all",
"30836 string to rule them all",
"30837 string to rule them all",
"30838 string to rule them all",
"30839 string to rule them all",
"30840 string to rule them all",
"30841 string to rule them all",
"30842 string to rule them all",
"30843 string to rule them all",
"30844 string to rule them all",
"30845 string to rule them all",
"30846 string to rule them all",
"30847 string to rule them all",
"30848 string to rule them all",
"30849 string to rule them all",
"30850 string to rule them all",
"30851 string to rule them all",
"30852 string to rule them all",
"30853 string to rule them all",
"30854 string to rule them all",
"30855 string to rule them all",
"30856 string to rule them all",
"30857 string to rule them all",
"30858 string to rule them all",
"30859 string to rule them all",
"30860 string to rule them all",
"30861 string to rule them all",
"30862 string to rule them all",
"30863 string to rule them all",
"30864 string to rule them all",
"30865 string to rule them all",
"30866 string to rule them all",
"30867 string to rule them all",
"30868 string to rule them all",
"30869 string to rule them all",
"30870 string to rule them all",
"30871 string to rule them all",
"30872 string to rule them all",
"30873 string to rule them all",
"30874 string to rule them all",
"30875 string to rule them all",
"30876 string to rule them all",
"30877 string to rule them all",
"30878 string to rule them all",
"30879 string to rule them all",
"30880 string to rule them all",
"30881 string to rule them all",
"30882 string to rule them all",
"30883 string to rule them all",
"30884 string to rule them all",
"30885 string to rule them all",
"30886 string to rule them all",
"30887 string to rule them all",
"30888 string to rule them all",
"30889 string to rule them all",
"30890 string to rule them all",
"30891 string to rule them all",
"30892 string to rule them all",
"30893 string to rule them all",
"30894 string to rule them all",
"30895 string to rule them all",
"30896 string to rule them all",
"30897 string to rule them all",
"30898 string to rule them all",
"30899 string to rule them all",
"30900 string to rule them all",
"30901 string to rule them all",
"30902 string to rule them all",
"30903 string to rule them all",
"30904 string to rule them all",
"30905 string to rule them all",
"30906 string to rule them all",
"30907 string to rule them all",
"30908 string to rule them all",
"30909 string to rule them all",
"30910 string to rule them all",
"30911 string to rule them all",
"30912 string to rule them all",
"30913 string to rule them all",
"30914 string to rule them all",
"30915 string to rule them all",
"30916 string to rule them all",
"30917 string to rule them all",
"30918 string to rule them all",
"30919 string to rule them all",
"30920 string to rule them all",
"30921 string to rule them all",
"30922 string to rule them all",
"30923 string to rule them all",
"30924 string to rule them all",
"30925 string to rule them all",
"30926 string to rule them all",
"30927 string to rule them all",
"30928 string to rule them all",
"30929 string to rule them all",
"30930 string to rule them all",
"30931 string to rule them all",
"30932 string to rule them all",
"30933 string to rule them all",
"30934 string to rule them all",
"30935 string to rule them all",
"30936 string to rule them all",
"30937 string to rule them all",
"30938 string to rule them all",
"30939 string to rule them all",
"30940 string to rule them all",
"30941 string to rule them all",
"30942 string to rule them all",
"30943 string to rule them all",
"30944 string to rule them all",
"30945 string to rule them all",
"30946 string to rule them all",
"30947 string to rule them all",
"30948 string to rule them all",
"30949 string to rule them all",
"30950 string to rule them all",
"30951 string to rule them all",
"30952 string to rule them all",
"30953 string to rule them all",
"30954 string to rule them all",
"30955 string to rule them all",
"30956 string to rule them all",
"30957 string to rule them all",
"30958 string to rule them all",
"30959 string to rule them all",
"30960 string to rule them all",
"30961 string to rule them all",
"30962 string to rule them all",
"30963 string to rule them all",
"30964 string to rule them all",
"30965 string to rule them all",
"30966 string to rule them all",
"30967 string to rule them all",
"30968 string to rule them all",
"30969 string to rule them all",
"30970 string to rule them all",
"30971 string to rule them all",
"30972 string to rule them all",
"30973 string to rule them all",
"30974 string to rule them all",
"30975 string to rule them all",
"30976 string to rule them all",
"30977 string to rule them all",
"30978 string to rule them all",
"30979 string to rule them all",
"30980 string to rule them all",
"30981 string to rule them all",
"30982 string to rule them all",
"30983 string to rule them all",
"30984 string to rule them all",
"30985 string to rule them all",
"30986 string to rule them all",
"30987 string to rule them all",
"30988 string to rule them all",
"30989 string to rule them all",
"30990 string to rule them all",
"30991 string to rule them all",
"30992 string to rule them all",
"30993 string to rule them all",
"30994 string to rule them all",
"30995 string to rule them all",
"30996 string to rule them all",
"30997 string to rule them all",
"30998 string to rule them all",
"30999 string to rule them all",
"31000 string to rule them all",
"31001 string to rule them all",
"31002 string to rule them all",
"31003 string to rule them all",
"31004 string to rule them all",
"31005 string to rule them all",
"31006 string to rule them all",
"31007 string to rule them all",
"31008 string to rule them all",
"31009 string to rule them all",
"31010 string to rule them all",
"31011 string to rule them all",
"31012 string to rule them all",
"31013 string to rule them all",
"31014 string to rule them all",
"31015 string to rule them all",
"31016 string to rule them all",
"31017 string to rule them all",
"31018 string to rule them all",
"31019 string to rule them all",
"31020 string to rule them all",
"31021 string to rule them all",
"31022 string to rule them all",
"31023 string to rule them all",
"31024 string to rule them all",
"31025 string to rule them all",
"31026 string to rule them all",
"31027 string to rule them all",
"31028 string to rule them all",
"31029 string to rule them all",
"31030 string to rule them all",
"31031 string to rule them all",
"31032 string to rule them all",
"31033 string to rule them all",
"31034 string to rule them all",
"31035 string to rule them all",
"31036 string to rule them all",
"31037 string to rule them all",
"31038 string to rule them all",
"31039 string to rule them all",
"31040 string to rule them all",
"31041 string to rule them all",
"31042 string to rule them all",
"31043 string to rule them all",
"31044 string to rule them all",
"31045 string to rule them all",
"31046 string to rule them all",
"31047 string to rule them all",
"31048 string to rule them all",
"31049 string to rule them all",
"31050 string to rule them all",
"31051 string to rule them all",
"31052 string to rule them all",
"31053 string to rule them all",
"31054 string to rule them all",
"31055 string to rule them all",
"31056 string to rule them all",
"31057 string to rule them all",
"31058 string to rule them all",
"31059 string to rule them all",
"31060 string to rule them all",
"31061 string to rule them all",
"31062 string to rule them all",
"31063 string to rule them all",
"31064 string to rule them all",
"31065 string to rule them all",
"31066 string to rule them all",
"31067 string to rule them all",
"31068 string to rule them all",
"31069 string to rule them all",
"31070 string to rule them all",
"31071 string to rule them all",
"31072 string to rule them all",
"31073 string to rule them all",
"31074 string to rule them all",
"31075 string to rule them all",
"31076 string to rule them all",
"31077 string to rule them all",
"31078 string to rule them all",
"31079 string to rule them all",
"31080 string to rule them all",
"31081 string to rule them all",
"31082 string to rule them all",
"31083 string to rule them all",
"31084 string to rule them all",
"31085 string to rule them all",
"31086 string to rule them all",
"31087 string to rule them all",
"31088 string to rule them all",
"31089 string to rule them all",
"31090 string to rule them all",
"31091 string to rule them all",
"31092 string to rule them all",
"31093 string to rule them all",
"31094 string to rule them all",
"31095 string to rule them all",
"31096 string to rule them all",
"31097 string to rule them all",
"31098 string to rule them all",
"31099 string to rule them all",
"31100 string to rule them all",
"31101 string to rule them all",
"31102 string to rule them all",
"31103 string to rule them all",
"31104 string to rule them all",
"31105 string to rule them all",
"31106 string to rule them all",
"31107 string to rule them all",
"31108 string to rule them all",
"31109 string to rule them all",
"31110 string to rule them all",
"31111 string to rule them all",
"31112 string to rule them all",
"31113 string to rule them all",
"31114 string to rule them all",
"31115 string to rule them all",
"31116 string to rule them all",
"31117 string to rule them all",
"31118 string to rule them all",
"31119 string to rule them all",
"31120 string to rule them all",
"31121 string to rule them all",
"31122 string to rule them all",
"31123 string to rule them all",
"31124 string to rule them all",
"31125 string to rule them all",
"31126 string to rule them all",
"31127 string to rule them all",
"31128 string to rule them all",
"31129 string to rule them all",
"31130 string to rule them all",
"31131 string to rule them all",
"31132 string to rule them all",
"31133 string to rule them all",
"31134 string to rule them all",
"31135 string to rule them all",
"31136 string to rule them all",
"31137 string to rule them all",
"31138 string to rule them all",
"31139 string to rule them all",
"31140 string to rule them all",
"31141 string to rule them all",
"31142 string to rule them all",
"31143 string to rule them all",
"31144 string to rule them all",
"31145 string to rule them all",
"31146 string to rule them all",
"31147 string to rule them all",
"31148 string to rule them all",
"31149 string to rule them all",
"31150 string to rule them all",
"31151 string to rule them all",
"31152 string to rule them all",
"31153 string to rule them all",
"31154 string to rule them all",
"31155 string to rule them all",
"31156 string to rule them all",
"31157 string to rule them all",
"31158 string to rule them all",
"31159 string to rule them all",
"31160 string to rule them all",
"31161 string to rule them all",
"31162 string to rule them all",
"31163 string to rule them all",
"31164 string to rule them all",
"31165 string to rule them all",
"31166 string to rule them all",
"31167 string to rule them all",
"31168 string to rule them all",
"31169 string to rule them all",
"31170 string to rule them all",
"31171 string to rule them all",
"31172 string to rule them all",
"31173 string to rule them all",
"31174 string to rule them all",
"31175 string to rule them all",
"31176 string to rule them all",
"31177 string to rule them all",
"31178 string to rule them all",
"31179 string to rule them all",
"31180 string to rule them all",
"31181 string to rule them all",
"31182 string to rule them all",
"31183 string to rule them all",
"31184 string to rule them all",
"31185 string to rule them all",
"31186 string to rule them all",
"31187 string to rule them all",
"31188 string to rule them all",
"31189 string to rule them all",
"31190 string to rule them all",
"31191 string to rule them all",
"31192 string to rule them all",
"31193 string to rule them all",
"31194 string to rule them all",
"31195 string to rule them all",
"31196 string to rule them all",
"31197 string to rule them all",
"31198 string to rule them all",
"31199 string to rule them all",
"31200 string to rule them all",
"31201 string to rule them all",
"31202 string to rule them all",
"31203 string to rule them all",
"31204 string to rule them all",
"31205 string to rule them all",
"31206 string to rule them all",
"31207 string to rule them all",
"31208 string to rule them all",
"31209 string to rule them all",
"31210 string to rule them all",
"31211 string to rule them all",
"31212 string to rule them all",
"31213 string to rule them all",
"31214 string to rule them all",
"31215 string to rule them all",
"31216 string to rule them all",
"31217 string to rule them all",
"31218 string to rule them all",
"31219 string to rule them all",
"31220 string to rule them all",
"31221 string to rule them all",
"31222 string to rule them all",
"31223 string to rule them all",
"31224 string to rule them all",
"31225 string to rule them all",
"31226 string to rule them all",
"31227 string to rule them all",
"31228 string to rule them all",
"31229 string to rule them all",
"31230 string to rule them all",
"31231 string to rule them all",
"31232 string to rule them all",
"31233 string to rule them all",
"31234 string to rule them all",
"31235 string to rule them all",
"31236 string to rule them all",
"31237 string to rule them all",
"31238 string to rule them all",
"31239 string to rule them all",
"31240 string to rule them all",
"31241 string to rule them all",
"31242 string to rule them all",
"31243 string to rule them all",
"31244 string to rule them all",
"31245 string to rule them all",
"31246 string to rule them all",
"31247 string to rule them all",
"31248 string to rule them all",
"31249 string to rule them all",
"31250 string to rule them all",
"31251 string to rule them all",
"31252 string to rule them all",
"31253 string to rule them all",
"31254 string to rule them all",
"31255 string to rule them all",
"31256 string to rule them all",
"31257 string to rule them all",
"31258 string to rule them all",
"31259 string to rule them all",
"31260 string to rule them all",
"31261 string to rule them all",
"31262 string to rule them all",
"31263 string to rule them all",
"31264 string to rule them all",
"31265 string to rule them all",
"31266 string to rule them all",
"31267 string to rule them all",
"31268 string to rule them all",
"31269 string to rule them all",
"31270 string to rule them all",
"31271 string to rule them all",
"31272 string to rule them all",
"31273 string to rule them all",
"31274 string to rule them all",
"31275 string to rule them all",
"31276 string to rule them all",
"31277 string to rule them all",
"31278 string to rule them all",
"31279 string to rule them all",
"31280 string to rule them all",
"31281 string to rule them all",
"31282 string to rule them all",
"31283 string to rule them all",
"31284 string to rule them all",
"31285 string to rule them all",
"31286 string to rule them all",
"31287 string to rule them all",
"31288 string to rule them all",
"31289 string to rule them all",
"31290 string to rule them all",
"31291 string to rule them all",
"31292 string to rule them all",
"31293 string to rule them all",
"31294 string to rule them all",
"31295 string to rule them all",
"31296 string to rule them all",
"31297 string to rule them all",
"31298 string to rule them all",
"31299 string to rule them all",
"31300 string to rule them all",
"31301 string to rule them all",
"31302 string to rule them all",
"31303 string to rule them all",
"31304 string to rule them all",
"31305 string to rule them all",
"31306 string to rule them all",
"31307 string to rule them all",
"31308 string to rule them all",
"31309 string to rule them all",
"31310 string to rule them all",
"31311 string to rule them all",
"31312 string to rule them all",
"31313 string to rule them all",
"31314 string to rule them all",
"31315 string to rule them all",
"31316 string to rule them all",
"31317 string to rule them all",
"31318 string to rule them all",
"31319 string to rule them all",
"31320 string to rule them all",
"31321 string to rule them all",
"31322 string to rule them all",
"31323 string to rule them all",
"31324 string to rule them all",
"31325 string to rule them all",
"31326 string to rule them all",
"31327 string to rule them all",
"31328 string to rule them all",
"31329 string to rule them all",
"31330 string to rule them all",
"31331 string to rule them all",
"31332 string to rule them all",
"31333 string to rule them all",
"31334 string to rule them all",
"31335 string to rule them all",
"31336 string to rule them all",
"31337 string to rule them all",
"31338 string to rule them all",
"31339 string to rule them all",
"31340 string to rule them all",
"31341 string to rule them all",
"31342 string to rule them all",
"31343 string to rule them all",
"31344 string to rule them all",
"31345 string to rule them all",
"31346 string to rule them all",
"31347 string to rule them all",
"31348 string to rule them all",
"31349 string to rule them all",
"31350 string to rule them all",
"31351 string to rule them all",
"31352 string to rule them all",
"31353 string to rule them all",
"31354 string to rule them all",
"31355 string to rule them all",
"31356 string to rule them all",
"31357 string to rule them all",
"31358 string to rule them all",
"31359 string to rule them all",
"31360 string to rule them all",
"31361 string to rule them all",
"31362 string to rule them all",
"31363 string to rule them all",
"31364 string to rule them all",
"31365 string to rule them all",
"31366 string to rule them all",
"31367 string to rule them all",
"31368 string to rule them all",
"31369 string to rule them all",
"31370 string to rule them all",
"31371 string to rule them all",
"31372 string to rule them all",
"31373 string to rule them all",
"31374 string to rule them all",
"31375 string to rule them all",
"31376 string to rule them all",
"31377 string to rule them all",
"31378 string to rule them all",
"31379 string to rule them all",
"31380 string to rule them all",
"31381 string to rule them all",
"31382 string to rule them all",
"31383 string to rule them all",
"31384 string to rule them all",
"31385 string to rule them all",
"31386 string to rule them all",
"31387 string to rule them all",
"31388 string to rule them all",
"31389 string to rule them all",
"31390 string to rule them all",
"31391 string to rule them all",
"31392 string to rule them all",
"31393 string to rule them all",
"31394 string to rule them all",
"31395 string to rule them all",
"31396 string to rule them all",
"31397 string to rule them all",
"31398 string to rule them all",
"31399 string to rule them all",
"31400 string to rule them all",
"31401 string to rule them all",
"31402 string to rule them all",
"31403 string to rule them all",
"31404 string to rule them all",
"31405 string to rule them all",
"31406 string to rule them all",
"31407 string to rule them all",
"31408 string to rule them all",
"31409 string to rule them all",
"31410 string to rule them all",
"31411 string to rule them all",
"31412 string to rule them all",
"31413 string to rule them all",
"31414 string to rule them all",
"31415 string to rule them all",
"31416 string to rule them all",
"31417 string to rule them all",
"31418 string to rule them all",
"31419 string to rule them all",
"31420 string to rule them all",
"31421 string to rule them all",
"31422 string to rule them all",
"31423 string to rule them all",
"31424 string to rule them all",
"31425 string to rule them all",
"31426 string to rule them all",
"31427 string to rule them all",
"31428 string to rule them all",
"31429 string to rule them all",
"31430 string to rule them all",
"31431 string to rule them all",
"31432 string to rule them all",
"31433 string to rule them all",
"31434 string to rule them all",
"31435 string to rule them all",
"31436 string to rule them all",
"31437 string to rule them all",
"31438 string to rule them all",
"31439 string to rule them all",
"31440 string to rule them all",
"31441 string to rule them all",
"31442 string to rule them all",
"31443 string to rule them all",
"31444 string to rule them all",
"31445 string to rule them all",
"31446 string to rule them all",
"31447 string to rule them all",
"31448 string to rule them all",
"31449 string to rule them all",
"31450 string to rule them all",
"31451 string to rule them all",
"31452 string to rule them all",
"31453 string to rule them all",
"31454 string to rule them all",
"31455 string to rule them all",
"31456 string to rule them all",
"31457 string to rule them all",
"31458 string to rule them all",
"31459 string to rule them all",
"31460 string to rule them all",
"31461 string to rule them all",
"31462 string to rule them all",
"31463 string to rule them all",
"31464 string to rule them all",
"31465 string to rule them all",
"31466 string to rule them all",
"31467 string to rule them all",
"31468 string to rule them all",
"31469 string to rule them all",
"31470 string to rule them all",
"31471 string to rule them all",
"31472 string to rule them all",
"31473 string to rule them all",
"31474 string to rule them all",
"31475 string to rule them all",
"31476 string to rule them all",
"31477 string to rule them all",
"31478 string to rule them all",
"31479 string to rule them all",
"31480 string to rule them all",
"31481 string to rule them all",
"31482 string to rule them all",
"31483 string to rule them all",
"31484 string to rule them all",
"31485 string to rule them all",
"31486 string to rule them all",
"31487 string to rule them all",
"31488 string to rule them all",
"31489 string to rule them all",
"31490 string to rule them all",
"31491 string to rule them all",
"31492 string to rule them all",
"31493 string to rule them all",
"31494 string to rule them all",
"31495 string to rule them all",
"31496 string to rule them all",
"31497 string to rule them all",
"31498 string to rule them all",
"31499 string to rule them all",
"31500 string to rule them all",
"31501 string to rule them all",
"31502 string to rule them all",
"31503 string to rule them all",
"31504 string to rule them all",
"31505 string to rule them all",
"31506 string to rule them all",
"31507 string to rule them all",
"31508 string to rule them all",
"31509 string to rule them all",
"31510 string to rule them all",
"31511 string to rule them all",
"31512 string to rule them all",
"31513 string to rule them all",
"31514 string to rule them all",
"31515 string to rule them all",
"31516 string to rule them all",
"31517 string to rule them all",
"31518 string to rule them all",
"31519 string to rule them all",
"31520 string to rule them all",
"31521 string to rule them all",
"31522 string to rule them all",
"31523 string to rule them all",
"31524 string to rule them all",
"31525 string to rule them all",
"31526 string to rule them all",
"31527 string to rule them all",
"31528 string to rule them all",
"31529 string to rule them all",
"31530 string to rule them all",
"31531 string to rule them all",
"31532 string to rule them all",
"31533 string to rule them all",
"31534 string to rule them all",
"31535 string to rule them all",
"31536 string to rule them all",
"31537 string to rule them all",
"31538 string to rule them all",
"31539 string to rule them all",
"31540 string to rule them all",
"31541 string to rule them all",
"31542 string to rule them all",
"31543 string to rule them all",
"31544 string to rule them all",
"31545 string to rule them all",
"31546 string to rule them all",
"31547 string to rule them all",
"31548 string to rule them all",
"31549 string to rule them all",
"31550 string to rule them all",
"31551 string to rule them all",
"31552 string to rule them all",
"31553 string to rule them all",
"31554 string to rule them all",
"31555 string to rule them all",
"31556 string to rule them all",
"31557 string to rule them all",
"31558 string to rule them all",
"31559 string to rule them all",
"31560 string to rule them all",
"31561 string to rule them all",
"31562 string to rule them all",
"31563 string to rule them all",
"31564 string to rule them all",
"31565 string to rule them all",
"31566 string to rule them all",
"31567 string to rule them all",
"31568 string to rule them all",
"31569 string to rule them all",
"31570 string to rule them all",
"31571 string to rule them all",
"31572 string to rule them all",
"31573 string to rule them all",
"31574 string to rule them all",
"31575 string to rule them all",
"31576 string to rule them all",
"31577 string to rule them all",
"31578 string to rule them all",
"31579 string to rule them all",
"31580 string to rule them all",
"31581 string to rule them all",
"31582 string to rule them all",
"31583 string to rule them all",
"31584 string to rule them all",
"31585 string to rule them all",
"31586 string to rule them all",
"31587 string to rule them all",
"31588 string to rule them all",
"31589 string to rule them all",
"31590 string to rule them all",
"31591 string to rule them all",
"31592 string to rule them all",
"31593 string to rule them all",
"31594 string to rule them all",
"31595 string to rule them all",
"31596 string to rule them all",
"31597 string to rule them all",
"31598 string to rule them all",
"31599 string to rule them all",
"31600 string to rule them all",
"31601 string to rule them all",
"31602 string to rule them all",
"31603 string to rule them all",
"31604 string to rule them all",
"31605 string to rule them all",
"31606 string to rule them all",
"31607 string to rule them all",
"31608 string to rule them all",
"31609 string to rule them all",
"31610 string to rule them all",
"31611 string to rule them all",
"31612 string to rule them all",
"31613 string to rule them all",
"31614 string to rule them all",
"31615 string to rule them all",
"31616 string to rule them all",
"31617 string to rule them all",
"31618 string to rule them all",
"31619 string to rule them all",
"31620 string to rule them all",
"31621 string to rule them all",
"31622 string to rule them all",
"31623 string to rule them all",
"31624 string to rule them all",
"31625 string to rule them all",
"31626 string to rule them all",
"31627 string to rule them all",
"31628 string to rule them all",
"31629 string to rule them all",
"31630 string to rule them all",
"31631 string to rule them all",
"31632 string to rule them all",
"31633 string to rule them all",
"31634 string to rule them all",
"31635 string to rule them all",
"31636 string to rule them all",
"31637 string to rule them all",
"31638 string to rule them all",
"31639 string to rule them all",
"31640 string to rule them all",
"31641 string to rule them all",
"31642 string to rule them all",
"31643 string to rule them all",
"31644 string to rule them all",
"31645 string to rule them all",
"31646 string to rule them all",
"31647 string to rule them all",
"31648 string to rule them all",
"31649 string to rule them all",
"31650 string to rule them all",
"31651 string to rule them all",
"31652 string to rule them all",
"31653 string to rule them all",
"31654 string to rule them all",
"31655 string to rule them all",
"31656 string to rule them all",
"31657 string to rule them all",
"31658 string to rule them all",
"31659 string to rule them all",
"31660 string to rule them all",
"31661 string to rule them all",
"31662 string to rule them all",
"31663 string to rule them all",
"31664 string to rule them all",
"31665 string to rule them all",
"31666 string to rule them all",
"31667 string to rule them all",
"31668 string to rule them all",
"31669 string to rule them all",
"31670 string to rule them all",
"31671 string to rule them all",
"31672 string to rule them all",
"31673 string to rule them all",
"31674 string to rule them all",
"31675 string to rule them all",
"31676 string to rule them all",
"31677 string to rule them all",
"31678 string to rule them all",
"31679 string to rule them all",
"31680 string to rule them all",
"31681 string to rule them all",
"31682 string to rule them all",
"31683 string to rule them all",
"31684 string to rule them all",
"31685 string to rule them all",
"31686 string to rule them all",
"31687 string to rule them all",
"31688 string to rule them all",
"31689 string to rule them all",
"31690 string to rule them all",
"31691 string to rule them all",
"31692 string to rule them all",
"31693 string to rule them all",
"31694 string to rule them all",
"31695 string to rule them all",
"31696 string to rule them all",
"31697 string to rule them all",
"31698 string to rule them all",
"31699 string to rule them all",
"31700 string to rule them all",
"31701 string to rule them all",
"31702 string to rule them all",
"31703 string to rule them all",
"31704 string to rule them all",
"31705 string to rule them all",
"31706 string to rule them all",
"31707 string to rule them all",
"31708 string to rule them all",
"31709 string to rule them all",
"31710 string to rule them all",
"31711 string to rule them all",
"31712 string to rule them all",
"31713 string to rule them all",
"31714 string to rule them all",
"31715 string to rule them all",
"31716 string to rule them all",
"31717 string to rule them all",
"31718 string to rule them all",
"31719 string to rule them all",
"31720 string to rule them all",
"31721 string to rule them all",
"31722 string to rule them all",
"31723 string to rule them all",
"31724 string to rule them all",
"31725 string to rule them all",
"31726 string to rule them all",
"31727 string to rule them all",
"31728 string to rule them all",
"31729 string to rule them all",
"31730 string to rule them all",
"31731 string to rule them all",
"31732 string to rule them all",
"31733 string to rule them all",
"31734 string to rule them all",
"31735 string to rule them all",
"31736 string to rule them all",
"31737 string to rule them all",
"31738 string to rule them all",
"31739 string to rule them all",
"31740 string to rule them all",
"31741 string to rule them all",
"31742 string to rule them all",
"31743 string to rule them all",
"31744 string to rule them all",
"31745 string to rule them all",
"31746 string to rule them all",
"31747 string to rule them all",
"31748 string to rule them all",
"31749 string to rule them all",
"31750 string to rule them all",
"31751 string to rule them all",
"31752 string to rule them all",
"31753 string to rule them all",
"31754 string to rule them all",
"31755 string to rule them all",
"31756 string to rule them all",
"31757 string to rule them all",
"31758 string to rule them all",
"31759 string to rule them all",
"31760 string to rule them all",
"31761 string to rule them all",
"31762 string to rule them all",
"31763 string to rule them all",
"31764 string to rule them all",
"31765 string to rule them all",
"31766 string to rule them all",
"31767 string to rule them all",
"31768 string to rule them all",
"31769 string to rule them all",
"31770 string to rule them all",
"31771 string to rule them all",
"31772 string to rule them all",
"31773 string to rule them all",
"31774 string to rule them all",
"31775 string to rule them all",
"31776 string to rule them all",
"31777 string to rule them all",
"31778 string to rule them all",
"31779 string to rule them all",
"31780 string to rule them all",
"31781 string to rule them all",
"31782 string to rule them all",
"31783 string to rule them all",
"31784 string to rule them all",
"31785 string to rule them all",
"31786 string to rule them all",
"31787 string to rule them all",
"31788 string to rule them all",
"31789 string to rule them all",
"31790 string to rule them all",
"31791 string to rule them all",
"31792 string to rule them all",
"31793 string to rule them all",
"31794 string to rule them all",
"31795 string to rule them all",
"31796 string to rule them all",
"31797 string to rule them all",
"31798 string to rule them all",
"31799 string to rule them all",
"31800 string to rule them all",
"31801 string to rule them all",
"31802 string to rule them all",
"31803 string to rule them all",
"31804 string to rule them all",
"31805 string to rule them all",
"31806 string to rule them all",
"31807 string to rule them all",
"31808 string to rule them all",
"31809 string to rule them all",
"31810 string to rule them all",
"31811 string to rule them all",
"31812 string to rule them all",
"31813 string to rule them all",
"31814 string to rule them all",
"31815 string to rule them all",
"31816 string to rule them all",
"31817 string to rule them all",
"31818 string to rule them all",
"31819 string to rule them all",
"31820 string to rule them all",
"31821 string to rule them all",
"31822 string to rule them all",
"31823 string to rule them all",
"31824 string to rule them all",
"31825 string to rule them all",
"31826 string to rule them all",
"31827 string to rule them all",
"31828 string to rule them all",
"31829 string to rule them all",
"31830 string to rule them all",
"31831 string to rule them all",
"31832 string to rule them all",
"31833 string to rule them all",
"31834 string to rule them all",
"31835 string to rule them all",
"31836 string to rule them all",
"31837 string to rule them all",
"31838 string to rule them all",
"31839 string to rule them all",
"31840 string to rule them all",
"31841 string to rule them all",
"31842 string to rule them all",
"31843 string to rule them all",
"31844 string to rule them all",
"31845 string to rule them all",
"31846 string to rule them all",
"31847 string to rule them all",
"31848 string to rule them all",
"31849 string to rule them all",
"31850 string to rule them all",
"31851 string to rule them all",
"31852 string to rule them all",
"31853 string to rule them all",
"31854 string to rule them all",
"31855 string to rule them all",
"31856 string to rule them all",
"31857 string to rule them all",
"31858 string to rule them all",
"31859 string to rule them all",
"31860 string to rule them all",
"31861 string to rule them all",
"31862 string to rule them all",
"31863 string to rule them all",
"31864 string to rule them all",
"31865 string to rule them all",
"31866 string to rule them all",
"31867 string to rule them all",
"31868 string to rule them all",
"31869 string to rule them all",
"31870 string to rule them all",
"31871 string to rule them all",
"31872 string to rule them all",
"31873 string to rule them all",
"31874 string to rule them all",
"31875 string to rule them all",
"31876 string to rule them all",
"31877 string to rule them all",
"31878 string to rule them all",
"31879 string to rule them all",
"31880 string to rule them all",
"31881 string to rule them all",
"31882 string to rule them all",
"31883 string to rule them all",
"31884 string to rule them all",
"31885 string to rule them all",
"31886 string to rule them all",
"31887 string to rule them all",
"31888 string to rule them all",
"31889 string to rule them all",
"31890 string to rule them all",
"31891 string to rule them all",
"31892 string to rule them all",
"31893 string to rule them all",
"31894 string to rule them all",
"31895 string to rule them all",
"31896 string to rule them all",
"31897 string to rule them all",
"31898 string to rule them all",
"31899 string to rule them all",
"31900 string to rule them all",
"31901 string to rule them all",
"31902 string to rule them all",
"31903 string to rule them all",
"31904 string to rule them all",
"31905 string to rule them all",
"31906 string to rule them all",
"31907 string to rule them all",
"31908 string to rule them all",
"31909 string to rule them all",
"31910 string to rule them all",
"31911 string to rule them all",
"31912 string to rule them all",
"31913 string to rule them all",
"31914 string to rule them all",
"31915 string to rule them all",
"31916 string to rule them all",
"31917 string to rule them all",
"31918 string to rule them all",
"31919 string to rule them all",
"31920 string to rule them all",
"31921 string to rule them all",
"31922 string to rule them all",
"31923 string to rule them all",
"31924 string to rule them all",
"31925 string to rule them all",
"31926 string to rule them all",
"31927 string to rule them all",
"31928 string to rule them all",
"31929 string to rule them all",
"31930 string to rule them all",
"31931 string to rule them all",
"31932 string to rule them all",
"31933 string to rule them all",
"31934 string to rule them all",
"31935 string to rule them all",
"31936 string to rule them all",
"31937 string to rule them all",
"31938 string to rule them all",
"31939 string to rule them all",
"31940 string to rule them all",
"31941 string to rule them all",
"31942 string to rule them all",
"31943 string to rule them all",
"31944 string to rule them all",
"31945 string to rule them all",
"31946 string to rule them all",
"31947 string to rule them all",
"31948 string to rule them all",
"31949 string to rule them all",
"31950 string to rule them all",
"31951 string to rule them all",
"31952 string to rule them all",
"31953 string to rule them all",
"31954 string to rule them all",
"31955 string to rule them all",
"31956 string to rule them all",
"31957 string to rule them all",
"31958 string to rule them all",
"31959 string to rule them all",
"31960 string to rule them all",
"31961 string to rule them all",
"31962 string to rule them all",
"31963 string to rule them all",
"31964 string to rule them all",
"31965 string to rule them all",
"31966 string to rule them all",
"31967 string to rule them all",
"31968 string to rule them all",
"31969 string to rule them all",
"31970 string to rule them all",
"31971 string to rule them all",
"31972 string to rule them all",
"31973 string to rule them all",
"31974 string to rule them all",
"31975 string to rule them all",
"31976 string to rule them all",
"31977 string to rule them all",
"31978 string to rule them all",
"31979 string to rule them all",
"31980 string to rule them all",
"31981 string to rule them all",
"31982 string to rule them all",
"31983 string to rule them all",
"31984 string to rule them all",
"31985 string to rule them all",
"31986 string to rule them all",
"31987 string to rule them all",
"31988 string to rule them all",
"31989 string to rule them all",
"31990 string to rule them all",
"31991 string to rule them all",
"31992 string to rule them all",
"31993 string to rule them all",
"31994 string to rule them all",
"31995 string to rule them all",
"31996 string to rule them all",
"31997 string to rule them all",
"31998 string to rule them all",
"31999 string to rule them all",
"32000 string to rule them all",
"32001 string to rule them all",
"32002 string to rule them all",
"32003 string to rule them all",
"32004 string to rule them all",
"32005 string to rule them all",
"32006 string to rule them all",
"32007 string to rule them all",
"32008 string to rule them all",
"32009 string to rule them all",
"32010 string to rule them all",
"32011 string to rule them all",
"32012 string to rule them all",
"32013 string to rule them all",
"32014 string to rule them all",
"32015 string to rule them all",
"32016 string to rule them all",
"32017 string to rule them all",
"32018 string to rule them all",
"32019 string to rule them all",
"32020 string to rule them all",
"32021 string to rule them all",
"32022 string to rule them all",
"32023 string to rule them all",
"32024 string to rule them all",
"32025 string to rule them all",
"32026 string to rule them all",
"32027 string to rule them all",
"32028 string to rule them all",
"32029 string to rule them all",
"32030 string to rule them all",
"32031 string to rule them all",
"32032 string to rule them all",
"32033 string to rule them all",
"32034 string to rule them all",
"32035 string to rule them all",
"32036 string to rule them all",
"32037 string to rule them all",
"32038 string to rule them all",
"32039 string to rule them all",
"32040 string to rule them all",
"32041 string to rule them all",
"32042 string to rule them all",
"32043 string to rule them all",
"32044 string to rule them all",
"32045 string to rule them all",
"32046 string to rule them all",
"32047 string to rule them all",
"32048 string to rule them all",
"32049 string to rule them all",
"32050 string to rule them all",
"32051 string to rule them all",
"32052 string to rule them all",
"32053 string to rule them all",
"32054 string to rule them all",
"32055 string to rule them all",
"32056 string to rule them all",
"32057 string to rule them all",
"32058 string to rule them all",
"32059 string to rule them all",
"32060 string to rule them all",
"32061 string to rule them all",
"32062 string to rule them all",
"32063 string to rule them all",
"32064 string to rule them all",
"32065 string to rule them all",
"32066 string to rule them all",
"32067 string to rule them all",
"32068 string to rule them all",
"32069 string to rule them all",
"32070 string to rule them all",
"32071 string to rule them all",
"32072 string to rule them all",
"32073 string to rule them all",
"32074 string to rule them all",
"32075 string to rule them all",
"32076 string to rule them all",
"32077 string to rule them all",
"32078 string to rule them all",
"32079 string to rule them all",
"32080 string to rule them all",
"32081 string to rule them all",
"32082 string to rule them all",
"32083 string to rule them all",
"32084 string to rule them all",
"32085 string to rule them all",
"32086 string to rule them all",
"32087 string to rule them all",
"32088 string to rule them all",
"32089 string to rule them all",
"32090 string to rule them all",
"32091 string to rule them all",
"32092 string to rule them all",
"32093 string to rule them all",
"32094 string to rule them all",
"32095 string to rule them all",
"32096 string to rule them all",
"32097 string to rule them all",
"32098 string to rule them all",
"32099 string to rule them all",
"32100 string to rule them all",
"32101 string to rule them all",
"32102 string to rule them all",
"32103 string to rule them all",
"32104 string to rule them all",
"32105 string to rule them all",
"32106 string to rule them all",
"32107 string to rule them all",
"32108 string to rule them all",
"32109 string to rule them all",
"32110 string to rule them all",
"32111 string to rule them all",
"32112 string to rule them all",
"32113 string to rule them all",
"32114 string to rule them all",
"32115 string to rule them all",
"32116 string to rule them all",
"32117 string to rule them all",
"32118 string to rule them all",
"32119 string to rule them all",
"32120 string to rule them all",
"32121 string to rule them all",
"32122 string to rule them all",
"32123 string to rule them all",
"32124 string to rule them all",
"32125 string to rule them all",
"32126 string to rule them all",
"32127 string to rule them all",
"32128 string to rule them all",
"32129 string to rule them all",
"32130 string to rule them all",
"32131 string to rule them all",
"32132 string to rule them all",
"32133 string to rule them all",
"32134 string to rule them all",
"32135 string to rule them all",
"32136 string to rule them all",
"32137 string to rule them all",
"32138 string to rule them all",
"32139 string to rule them all",
"32140 string to rule them all",
"32141 string to rule them all",
"32142 string to rule them all",
"32143 string to rule them all",
"32144 string to rule them all",
"32145 string to rule them all",
"32146 string to rule them all",
"32147 string to rule them all",
"32148 string to rule them all",
"32149 string to rule them all",
"32150 string to rule them all",
"32151 string to rule them all",
"32152 string to rule them all",
"32153 string to rule them all",
"32154 string to rule them all",
"32155 string to rule them all",
"32156 string to rule them all",
"32157 string to rule them all",
"32158 string to rule them all",
"32159 string to rule them all",
"32160 string to rule them all",
"32161 string to rule them all",
"32162 string to rule them all",
"32163 string to rule them all",
"32164 string to rule them all",
"32165 string to rule them all",
"32166 string to rule them all",
"32167 string to rule them all",
"32168 string to rule them all",
"32169 string to rule them all",
"32170 string to rule them all",
"32171 string to rule them all",
"32172 string to rule them all",
"32173 string to rule them all",
"32174 string to rule them all",
"32175 string to rule them all",
"32176 string to rule them all",
"32177 string to rule them all",
"32178 string to rule them all",
"32179 string to rule them all",
"32180 string to rule them all",
"32181 string to rule them all",
"32182 string to rule them all",
"32183 string to rule them all",
"32184 string to rule them all",
"32185 string to rule them all",
"32186 string to rule them all",
"32187 string to rule them all",
"32188 string to rule them all",
"32189 string to rule them all",
"32190 string to rule them all",
"32191 string to rule them all",
"32192 string to rule them all",
"32193 string to rule them all",
"32194 string to rule them all",
"32195 string to rule them all",
"32196 string to rule them all",
"32197 string to rule them all",
"32198 string to rule them all",
"32199 string to rule them all",
"32200 string to rule them all",
"32201 string to rule them all",
"32202 string to rule them all",
"32203 string to rule them all",
"32204 string to rule them all",
"32205 string to rule them all",
"32206 string to rule them all",
"32207 string to rule them all",
"32208 string to rule them all",
"32209 string to rule them all",
"32210 string to rule them all",
"32211 string to rule them all",
"32212 string to rule them all",
"32213 string to rule them all",
"32214 string to rule them all",
"32215 string to rule them all",
"32216 string to rule them all",
"32217 string to rule them all",
"32218 string to rule them all",
"32219 string to rule them all",
"32220 string to rule them all",
"32221 string to rule them all",
"32222 string to rule them all",
"32223 string to rule them all",
"32224 string to rule them all",
"32225 string to rule them all",
"32226 string to rule them all",
"32227 string to rule them all",
"32228 string to rule them all",
"32229 string to rule them all",
"32230 string to rule them all",
"32231 string to rule them all",
"32232 string to rule them all",
"32233 string to rule them all",
"32234 string to rule them all",
"32235 string to rule them all",
"32236 string to rule them all",
"32237 string to rule them all",
"32238 string to rule them all",
"32239 string to rule them all",
"32240 string to rule them all",
"32241 string to rule them all",
"32242 string to rule them all",
"32243 string to rule them all",
"32244 string to rule them all",
"32245 string to rule them all",
"32246 string to rule them all",
"32247 string to rule them all",
"32248 string to rule them all",
"32249 string to rule them all",
"32250 string to rule them all",
"32251 string to rule them all",
"32252 string to rule them all",
"32253 string to rule them all",
"32254 string to rule them all",
"32255 string to rule them all",
"32256 string to rule them all",
"32257 string to rule them all",
"32258 string to rule them all",
"32259 string to rule them all",
"32260 string to rule them all",
"32261 string to rule them all",
"32262 string to rule them all",
"32263 string to rule them all",
"32264 string to rule them all",
"32265 string to rule them all",
"32266 string to rule them all",
"32267 string to rule them all",
"32268 string to rule them all",
"32269 string to rule them all",
"32270 string to rule them all",
"32271 string to rule them all",
"32272 string to rule them all",
"32273 string to rule them all",
"32274 string to rule them all",
"32275 string to rule them all",
"32276 string to rule them all",
"32277 string to rule them all",
"32278 string to rule them all",
"32279 string to rule them all",
"32280 string to rule them all",
"32281 string to rule them all",
"32282 string to rule them all",
"32283 string to rule them all",
"32284 string to rule them all",
"32285 string to rule them all",
"32286 string to rule them all",
"32287 string to rule them all",
"32288 string to rule them all",
"32289 string to rule them all",
"32290 string to rule them all",
"32291 string to rule them all",
"32292 string to rule them all",
"32293 string to rule them all",
"32294 string to rule them all",
"32295 string to rule them all",
"32296 string to rule them all",
"32297 string to rule them all",
"32298 string to rule them all",
"32299 string to rule them all",
"32300 string to rule them all",
"32301 string to rule them all",
"32302 string to rule them all",
"32303 string to rule them all",
"32304 string to rule them all",
"32305 string to rule them all",
"32306 string to rule them all",
"32307 string to rule them all",
"32308 string to rule them all",
"32309 string to rule them all",
"32310 string to rule them all",
"32311 string to rule them all",
"32312 string to rule them all",
"32313 string to rule them all",
"32314 string to rule them all",
"32315 string to rule them all",
"32316 string to rule them all",
"32317 string to rule them all",
"32318 string to rule them all",
"32319 string to rule them all",
"32320 string to rule them all",
"32321 string to rule them all",
"32322 string to rule them all",
"32323 string to rule them all",
"32324 string to rule them all",
"32325 string to rule them all",
"32326 string to rule them all",
"32327 string to rule them all",
"32328 string to rule them all",
"32329 string to rule them all",
"32330 string to rule them all",
"32331 string to rule them all",
"32332 string to rule them all",
"32333 string to rule them all",
"32334 string to rule them all",
"32335 string to rule them all",
"32336 string to rule them all",
"32337 string to rule them all",
"32338 string to rule them all",
"32339 string to rule them all",
"32340 string to rule them all",
"32341 string to rule them all",
"32342 string to rule them all",
"32343 string to rule them all",
"32344 string to rule them all",
"32345 string to rule them all",
"32346 string to rule them all",
"32347 string to rule them all",
"32348 string to rule them all",
"32349 string to rule them all",
"32350 string to rule them all",
"32351 string to rule them all",
"32352 string to rule them all",
"32353 string to rule them all",
"32354 string to rule them all",
"32355 string to rule them all",
"32356 string to rule them all",
"32357 string to rule them all",
"32358 string to rule them all",
"32359 string to rule them all",
"32360 string to rule them all",
"32361 string to rule them all",
"32362 string to rule them all",
"32363 string to rule them all",
"32364 string to rule them all",
"32365 string to rule them all",
"32366 string to rule them all",
"32367 string to rule them all",
"32368 string to rule them all",
"32369 string to rule them all",
"32370 string to rule them all",
"32371 string to rule them all",
"32372 string to rule them all",
"32373 string to rule them all",
"32374 string to rule them all",
"32375 string to rule them all",
"32376 string to rule them all",
"32377 string to rule them all",
"32378 string to rule them all",
"32379 string to rule them all",
"32380 string to rule them all",
"32381 string to rule them all",
"32382 string to rule them all",
"32383 string to rule them all",
"32384 string to rule them all",
"32385 string to rule them all",
"32386 string to rule them all",
"32387 string to rule them all",
"32388 string to rule them all",
"32389 string to rule them all",
"32390 string to rule them all",
"32391 string to rule them all",
"32392 string to rule them all",
"32393 string to rule them all",
"32394 string to rule them all",
"32395 string to rule them all",
"32396 string to rule them all",
"32397 string to rule them all",
"32398 string to rule them all",
"32399 string to rule them all",
"32400 string to rule them all",
"32401 string to rule them all",
"32402 string to rule them all",
"32403 string to rule them all",
"32404 string to rule them all",
"32405 string to rule them all",
"32406 string to rule them all",
"32407 string to rule them all",
"32408 string to rule them all",
"32409 string to rule them all",
"32410 string to rule them all",
"32411 string to rule them all",
"32412 string to rule them all",
"32413 string to rule them all",
"32414 string to rule them all",
"32415 string to rule them all",
"32416 string to rule them all",
"32417 string to rule them all",
"32418 string to rule them all",
"32419 string to rule them all",
"32420 string to rule them all",
"32421 string to rule them all",
"32422 string to rule them all",
"32423 string to rule them all",
"32424 string to rule them all",
"32425 string to rule them all",
"32426 string to rule them all",
"32427 string to rule them all",
"32428 string to rule them all",
"32429 string to rule them all",
"32430 string to rule them all",
"32431 string to rule them all",
"32432 string to rule them all",
"32433 string to rule them all",
"32434 string to rule them all",
"32435 string to rule them all",
"32436 string to rule them all",
"32437 string to rule them all",
"32438 string to rule them all",
"32439 string to rule them all",
"32440 string to rule them all",
"32441 string to rule them all",
"32442 string to rule them all",
"32443 string to rule them all",
"32444 string to rule them all",
"32445 string to rule them all",
"32446 string to rule them all",
"32447 string to rule them all",
"32448 string to rule them all",
"32449 string to rule them all",
"32450 string to rule them all",
"32451 string to rule them all",
"32452 string to rule them all",
"32453 string to rule them all",
"32454 string to rule them all",
"32455 string to rule them all",
"32456 string to rule them all",
"32457 string to rule them all",
"32458 string to rule them all",
"32459 string to rule them all",
"32460 string to rule them all",
"32461 string to rule them all",
"32462 string to rule them all",
"32463 string to rule them all",
"32464 string to rule them all",
"32465 string to rule them all",
"32466 string to rule them all",
"32467 string to rule them all",
"32468 string to rule them all",
"32469 string to rule them all",
"32470 string to rule them all",
"32471 string to rule them all",
"32472 string to rule them all",
"32473 string to rule them all",
"32474 string to rule them all",
"32475 string to rule them all",
"32476 string to rule them all",
"32477 string to rule them all",
"32478 string to rule them all",
"32479 string to rule them all",
"32480 string to rule them all",
"32481 string to rule them all",
"32482 string to rule them all",
"32483 string to rule them all",
"32484 string to rule them all",
"32485 string to rule them all",
"32486 string to rule them all",
"32487 string to rule them all",
"32488 string to rule them all",
"32489 string to rule them all",
"32490 string to rule them all",
"32491 string to rule them all",
"32492 string to rule them all",
"32493 string to rule them all",
"32494 string to rule them all",
"32495 string to rule them all",
"32496 string to rule them all",
"32497 string to rule them all",
"32498 string to rule them all",
"32499 string to rule them all",
"32500 string to rule them all",
"32501 string to rule them all",
"32502 string to rule them all",
"32503 string to rule them all",
"32504 string to rule them all",
"32505 string to rule them all",
"32506 string to rule them all",
"32507 string to rule them all",
"32508 string to rule them all",
"32509 string to rule them all",
"32510 string to rule them all",
"32511 string to rule them all",
"32512 string to rule them all",
"32513 string to rule them all",
"32514 string to rule them all",
"32515 string to rule them all",
"32516 string to rule them all",
"32517 string to rule them all",
"32518 string to rule them all",
"32519 string to rule them all",
"32520 string to rule them all",
"32521 string to rule them all",
"32522 string to rule them all",
"32523 string to rule them all",
"32524 string to rule them all",
"32525 string to rule them all",
"32526 string to rule them all",
"32527 string to rule them all",
"32528 string to rule them all",
"32529 string to rule them all",
"32530 string to rule them all",
"32531 string to rule them all",
"32532 string to rule them all",
"32533 string to rule them all",
"32534 string to rule them all",
"32535 string to rule them all",
"32536 string to rule them all",
"32537 string to rule them all",
"32538 string to rule them all",
"32539 string to rule them all",
"32540 string to rule them all",
"32541 string to rule them all",
"32542 string to rule them all",
"32543 string to rule them all",
"32544 string to rule them all",
"32545 string to rule them all",
"32546 string to rule them all",
"32547 string to rule them all",
"32548 string to rule them all",
"32549 string to rule them all",
"32550 string to rule them all",
"32551 string to rule them all",
"32552 string to rule them all",
"32553 string to rule them all",
"32554 string to rule them all",
"32555 string to rule them all",
"32556 string to rule them all",
"32557 string to rule them all",
"32558 string to rule them all",
"32559 string to rule them all",
"32560 string to rule them all",
"32561 string to rule them all",
"32562 string to rule them all",
"32563 string to rule them all",
"32564 string to rule them all",
"32565 string to rule them all",
"32566 string to rule them all",
"32567 string to rule them all",
"32568 string to rule them all",
"32569 string to rule them all",
"32570 string to rule them all",
"32571 string to rule them all",
"32572 string to rule them all",
"32573 string to rule them all",
"32574 string to rule them all",
"32575 string to rule them all",
"32576 string to rule them all",
"32577 string to rule them all",
"32578 string to rule them all",
"32579 string to rule them all",
"32580 string to rule them all",
"32581 string to rule them all",
"32582 string to rule them all",
"32583 string to rule them all",
"32584 string to rule them all",
"32585 string to rule them all",
"32586 string to rule them all",
"32587 string to rule them all",
"32588 string to rule them all",
"32589 string to rule them all",
"32590 string to rule them all",
"32591 string to rule them all",
"32592 string to rule them all",
"32593 string to rule them all",
"32594 string to rule them all",
"32595 string to rule them all",
"32596 string to rule them all",
"32597 string to rule them all",
"32598 string to rule them all",
"32599 string to rule them all",
"32600 string to rule them all",
"32601 string to rule them all",
"32602 string to rule them all",
"32603 string to rule them all",
"32604 string to rule them all",
"32605 string to rule them all",
"32606 string to rule them all",
"32607 string to rule them all",
"32608 string to rule them all",
"32609 string to rule them all",
"32610 string to rule them all",
"32611 string to rule them all",
"32612 string to rule them all",
"32613 string to rule them all",
"32614 string to rule them all",
"32615 string to rule them all",
"32616 string to rule them all",
"32617 string to rule them all",
"32618 string to rule them all",
"32619 string to rule them all",
"32620 string to rule them all",
"32621 string to rule them all",
"32622 string to rule them all",
"32623 string to rule them all",
"32624 string to rule them all",
"32625 string to rule them all",
"32626 string to rule them all",
"32627 string to rule them all",
"32628 string to rule them all",
"32629 string to rule them all",
"32630 string to rule them all",
"32631 string to rule them all",
"32632 string to rule them all",
"32633 string to rule them all",
"32634 string to rule them all",
"32635 string to rule them all",
"32636 string to rule them all",
"32637 string to rule them all",
"32638 string to rule them all",
"32639 string to rule them all",
"32640 string to rule them all",
"32641 string to rule them all",
"32642 string to rule them all",
"32643 string to rule them all",
"32644 string to rule them all",
"32645 string to rule them all",
"32646 string to rule them all",
"32647 string to rule them all",
"32648 string to rule them all",
"32649 string to rule them all",
"32650 string to rule them all",
"32651 string to rule them all",
"32652 string to rule them all",
"32653 string to rule them all",
"32654 string to rule them all",
"32655 string to rule them all",
"32656 string to rule them all",
"32657 string to rule them all",
"32658 string to rule them all",
"32659 string to rule them all",
"32660 string to rule them all",
"32661 string to rule them all",
"32662 string to rule them all",
"32663 string to rule them all",
"32664 string to rule them all",
"32665 string to rule them all",
"32666 string to rule them all",
"32667 string to rule them all",
"32668 string to rule them all",
"32669 string to rule them all",
"32670 string to rule them all",
"32671 string to rule them all",
"32672 string to rule them all",
"32673 string to rule them all",
"32674 string to rule them all",
"32675 string to rule them all",
"32676 string to rule them all",
"32677 string to rule them all",
"32678 string to rule them all",
"32679 string to rule them all",
"32680 string to rule them all",
"32681 string to rule them all",
"32682 string to rule them all",
"32683 string to rule them all",
"32684 string to rule them all",
"32685 string to rule them all",
"32686 string to rule them all",
"32687 string to rule them all",
"32688 string to rule them all",
"32689 string to rule them all",
"32690 string to rule them all",
"32691 string to rule them all",
"32692 string to rule them all",
"32693 string to rule them all",
"32694 string to rule them all",
"32695 string to rule them all",
"32696 string to rule them all",
"32697 string to rule them all",
"32698 string to rule them all",
"32699 string to rule them all",
"32700 string to rule them all",
"32701 string to rule them all",
"32702 string to rule them all",
"32703 string to rule them all",
"32704 string to rule them all",
"32705 string to rule them all",
"32706 string to rule them all",
"32707 string to rule them all",
"32708 string to rule them all",
"32709 string to rule them all",
"32710 string to rule them all",
"32711 string to rule them all",
"32712 string to rule them all",
"32713 string to rule them all",
"32714 string to rule them all",
"32715 string to rule them all",
"32716 string to rule them all",
"32717 string to rule them all",
"32718 string to rule them all",
"32719 string to rule them all",
"32720 string to rule them all",
"32721 string to rule them all",
"32722 string to rule them all",
"32723 string to rule them all",
"32724 string to rule them all",
"32725 string to rule them all",
"32726 string to rule them all",
"32727 string to rule them all",
"32728 string to rule them all",
"32729 string to rule them all",
"32730 string to rule them all",
"32731 string to rule them all",
"32732 string to rule them all",
"32733 string to rule them all",
"32734 string to rule them all",
"32735 string to rule them all",
"32736 string to rule them all",
"32737 string to rule them all",
"32738 string to rule them all",
"32739 string to rule them all",
"32740 string to rule them all",
"32741 string to rule them all",
"32742 string to rule them all",
"32743 string to rule them all",
"32744 string to rule them all",
"32745 string to rule them all",
"32746 string to rule them all",
"32747 string to rule them all",
"32748 string to rule them all",
"32749 string to rule them all",
"32750 string to rule them all",
"32751 string to rule them all",
"32752 string to rule them all",
"32753 string to rule them all",
"32754 string to rule them all",
"32755 string to rule them all",
"32756 string to rule them all",
"32757 string to rule them all",
"32758 string to rule them all",
"32759 string to rule them all",
"32760 string to rule them all",
"32761 string to rule them all",
"32762 string to rule them all",
"32763 string to rule them all",
"32764 string to rule them all",
"32765 string to rule them all",
"32766 string to rule them all",
"32767 string to rule them all",
"32768 string to rule them all",
"32769 string to rule them all",
"32770 string to rule them all",
"32771 string to rule them all",
"32772 string to rule them all",
"32773 string to rule them all",
"32774 string to rule them all",
"32775 string to rule them all",
"32776 string to rule them all",
"32777 string to rule them all",
"32778 string to rule them all",
"32779 string to rule them all",
"32780 string to rule them all",
"32781 string to rule them all",
"32782 string to rule them all",
"32783 string to rule them all",
"32784 string to rule them all",
"32785 string to rule them all",
"32786 string to rule them all",
"32787 string to rule them all",
"32788 string to rule them all",
"32789 string to rule them all",
"32790 string to rule them all",
"32791 string to rule them all",
"32792 string to rule them all",
"32793 string to rule them all",
"32794 string to rule them all",
"32795 string to rule them all",
"32796 string to rule them all",
"32797 string to rule them all",
"32798 string to rule them all",
"32799 string to rule them all",
"32800 string to rule them all",
"32801 string to rule them all",
"32802 string to rule them all",
"32803 string to rule them all",
"32804 string to rule them all",
"32805 string to rule them all",
"32806 string to rule them all",
"32807 string to rule them all",
"32808 string to rule them all",
"32809 string to rule them all",
"32810 string to rule them all",
"32811 string to rule them all",
"32812 string to rule them all",
"32813 string to rule them all",
"32814 string to rule them all",
"32815 string to rule them all",
"32816 string to rule them all",
"(code deopt data)",
"(map descriptors)",
"name",
"caller",
"prototype",
"globalVariables",
"globalTimeouts",
"globalConsole",
"_lazyConstants",
"lazyConstants",
"processFatal",
"processAssert",
"processConfig",
"processNextTick",
"processStdio",
"processKillAndExit",
"processSignalHandlers",
"processChannel",
"resolveArgv0",
"(transition array)",
"_source",
"_cache",
"getCached",
"exists",
"getSource",
"wrap",
"loaded",
".setMaxListeners",
".emit",
".addListener",
".once",
".removeListener",
".removeAllListeners",
".listeners",
".listenerCount",
"usingDomains",
"setMaxListeners",
"emit",
"on",
"once",
"removeAllListeners",
"listeners",
"listenerCount",
"value_",
"hasValue_",
"writable_",
"hasWritable_",
"enumerable_",
"hasEnumerable_",
"configurable_",
"hasConfigurable_",
"get_",
"hasGetter_",
"set_",
"hasSetter_",
"version",
"moduleLoadList",
"versions",
"arch",
"platform",
"argv",
"execArgv",
"env",
"pid",
"features",
"execPath",
"_getActiveRequests",
"_getActiveHandles",
"reallyExit",
"abort",
"chdir",
"umask",
"getuid",
"setuid",
"setgid",
"getgid",
"getgroups",
"setgroups",
"initgroups",
"_kill",
"_debugProcess",
"_debugPause",
"_debugEnd",
"hrtime",
"dlopen",
"uptime",
"memoryUsage",
"_usingDomains",
"_tickInfoBox",
"_events",
"_maxListeners",
"_fatalException",
"_exiting",
"maxTickDepth",
"openStdin",
"exit",
"kill",
"mainModule",
"._fatalException",
".toString",
".write",
".slice",
".isEncoding",
".toJSON",
".concat",
".utf8Slice",
".binarySlice",
".asciiSlice",
".utf8Write",
".binaryWrite",
".asciiWrite",
".readUInt8",
".readUInt16LE",
".readUInt16BE",
".readUInt32LE",
".readUInt32BE",
".readInt8",
".readInt16LE",
".readInt16BE",
".readInt32LE",
".readInt32BE",
".readFloatLE",
".readFloatBE",
".readDoubleLE",
".readDoubleBE",
".writeUInt8",
".writeUInt16LE",
".writeUInt16BE",
".writeUInt32LE",
".writeUInt32BE",
".writeInt8",
".writeInt16LE",
".writeInt16BE",
".writeInt32LE",
".writeInt32BE",
".writeFloatLE",
".writeFloatBE",
".writeDoubleLE",
".writeDoubleBE",
"byteLength",
"makeFastBuffer",
"setFastBufferConstructor",
".throws",
".doesNotThrow",
".ifError",
".format",
".deprecate",
".print",
".debug",
".error",
".inherits",
"._extend",
"format",
"deprecate",
"print",
"puts",
"inherits",
"_extend",
"colors",
"styles",
"throws",
"doesNotThrow",
"ifError",
"super_",
"INSPECT_MAX_BYTES",
"write",
"readUInt8",
"readUInt16LE",
"readUInt16BE",
"readUInt32LE",
"readUInt32BE",
"readInt8",
"readInt16LE",
"readInt16BE",
"readInt32LE",
"readInt32BE",
"writeUInt8",
"writeUInt16LE",
"writeUInt16BE",
"writeUInt32LE",
"writeUInt32BE",
"writeInt8",
"writeInt16LE",
"writeInt16BE",
"writeInt32LE",
"writeInt32BE",
"used",
"isEncoding",
"poolSize",
".setTimeout",
".setInterval",
".clearTimeout",
".clearInterval",
".setImmediate",
".clearImmediate",
".assert",
"cflags",
"default_configuration",
"defines",
"include_dirs",
"libraries",
"target_defaults",
"variables",
".openStdin",
"process.on.process",
".resolve",
".normalize",
".relative",
".dirname",
".basename",
".extname",
"._makeLong",
"resolve",
"relative",
"sep",
"delimiter",
"basename",
"extname",
"existsSync",
"_makeLong",
"._debug",
"._findPath",
"._nodeModulePaths",
"._resolveLookupPaths",
"._resolveFilename",
".require",
"._compile",
"Module._extensions",
"..js",
"..json",
".runMain",
"._initPaths",
".requireRepl",
"_contextLoad",
"_pathCache",
"_extensions",
"globalPaths",
"_debug",
"_realpathCache",
"_findPath",
"_nodeModulePaths",
"_resolveLookupPaths",
"_load",
"_resolveFilename",
"runMain",
"_initPaths",
"requireRepl",
"load",
"_compile",
".js",
".json",
".node",
"fs.Stats",
"._checkModeProperty",
".isDirectory",
".isFile",
".isBlockDevice",
".isCharacterDevice",
".isSymbolicLink",
".isFIFO",
".isSocket",
".existsSync",
".readFileSync",
".renameSync",
".truncateSync",
".ftruncateSync",
".fdatasyncSync",
".readdirSync",
".readlinkSync",
".symlinkSync",
".unlinkSync",
".fchmodSync",
".lchmodSync",
".lchownSync",
".fchownSync",
".utimesSync",
".futimesSync",
".writeFileSync",
".appendFile",
".appendFileSync",
".start",
".close",
".stop",
".unwatchFile",
".createReadStream",
".open",
"._read",
".destroy",
".createWriteStream",
"._write",
".end",
"_checkModeProperty",
"isDirectory",
"isFile",
"isBlockDevice",
"isCharacterDevice",
"isSymbolicLink",
"isFIFO",
"isSocket",
"Stats",
"open",
"read",
"fdatasync",
"fsync",
"rename",
"ftruncate",
"rmdir",
"mkdir",
"readdir",
"lstat",
"fstat",
"symlink",
"readlink",
"unlink",
"chmod",
"fchmod",
"chown",
"fchown",
"utimes",
"futimes",
"pipe",
"_stream_readable",
".push",
".unshift",
".setEncoding",
".read",
".pipe",
".unpipe",
".resume",
".pause",
".wrap",
"_fromList",
"setEncoding",
"_read",
"unpipe",
"resume",
"pause",
"_stream_writable",
"chunk",
"_write",
"_stream_duplex",
"_stream_transform",
"._transform",
"_transform",
"_stream_passthrough",
"readFile",
"readFileSync",
"_stringToFlags",
"closeSync",
"openSync",
"readSync",
"writeSync",
"renameSync",
"truncateSync",
"ftruncateSync",
"rmdirSync",
"fdatasyncSync",
"fsyncSync",
"mkdirSync",
"readdirSync",
"fstatSync",
"lstatSync",
"statSync",
"readlinkSync",
"symlinkSync",
"linkSync",
"unlinkSync",
"fchmodSync",
"lchmod",
"lchmodSync",
"chmodSync",
"lchown",
"lchownSync",
"fchownSync",
"chownSync",
"_toUnixTimestamp",
"utimesSync",
"futimesSync",
"writeFile",
"writeFileSync",
"appendFile",
"appendFileSync",
"watch",
"watchFile",
"unwatchFile",
"createReadStream",
"FileReadStream",
"createWriteStream",
"FileWriteStream",
"destroy",
"destroySoon",
"dev",
"nlink",
"uid",
"gid",
"rdev",
"blksize",
"ino",
"blocks",
"atime",
"mtime",
"ctime",
"children",
".get",
".registerExtension",
"writeSnapshot",
".unenroll",
".enroll",
".active",
".unref",
"._unrefActive",
"enroll",
"active",
"setTimeout",
"clearTimeout",
"setInterval",
"clearInterval",
"setImmediate",
"clearImmediate",
"_unrefActive",
"_idleNext",
"_idlePrev",
"_idleTimeout",
"_idleStart",
"_onTimeout",
"_repeat",
"ontimeout",
"stack_overflow",
"TTY",
"readStart",
"readStop",
"writeBuffer",
"writeAsciiString",
"writeUtf8String",
"writeUcs2String",
"getWindowSize",
"setRawMode",
"Signal",
"darwin",
"x64",
"/Users/wavded/.nvm/v0.10.25/bin/node",
"v0.10.25",
"Binding evals",
"Binding natives",
"NativeModule events",
"NativeModule buffer",
"Binding buffer",
"NativeModule assert",
"NativeModule util",
"NativeModule path",
"NativeModule module",
"NativeModule fs",
"Binding fs",
"Binding constants",
"NativeModule stream",
"NativeModule _stream_readable",
"NativeModule _stream_writable",
"NativeModule _stream_duplex",
"NativeModule _stream_transform",
"NativeModule _stream_passthrough",
"NativeModule timers",
"Binding timer_wrap",
"NativeModule _linklist",
"NativeModule console",
"Binding tty_wrap",
"NativeModule tty",
"NativeModule net",
"Binding cares_wrap",
"Binding signal_wrap",
".configurable_",
"BYTES_PER_ELEMENT",
"subarray",
"getUint8",
"getInt8",
"getUint16",
"getInt16",
"getUint32",
"getInt32",
"getFloat32",
"getFloat64",
"setUint8",
"setInt8",
"setUint16",
"setInt16",
"setUint32",
"setInt32",
"setFloat32",
"setFloat64",
".globalVariables",
".globalTimeouts",
".globalConsole",
".lazyConstants",
".processFatal",
".processAssert",
".processConfig",
".processNextTick",
".processStdio",
".processKillAndExit",
".processSignalHandlers",
".processChannel",
".resolveArgv0",
"util.p: Use console.error() instead.",
"util.exec is now called `child_process.exec`.",
"util.pump() is deprecated. Use readableStream.pipe() instead.",
"process.on",
".process",
":",
"path.exists is now called `fs.exists`.",
"path.existsSync is now called `fs.existsSync`.",
"._extensions",
"/Users/wavded/.node_modules",
"/Users/wavded/.node_libraries",
"/Users/wavded/.nvm/v0.10.25/lib/node",
"./build/Release/heapdump",
".defineProperty",
"registerExtension",
"node",
"1.0",
"0.10.25",
"3.14.5.9",
"1.9.0-DEV",
"0.10.23",
"1.2.3",
"11",
"1.0.1e",
"NativeModule ",
"events",
"stream",
"timers",
"_linklist",
"// http://wiki.commonjs.org/wiki/Unit_Testing/1.0\n//\n// THIS IS NOT TESTED NOR LIKELY TO WORK OUTSIDE V8!\n//\n// Originally from narwhal.js (http://narwhaljs.org)\n// Copyright (c) 2009 Thomas Robinson <280north.com>\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the 'Software'), to\n// deal in the Software without restriction, including without limitation the\n// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n// sell copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO",
"/*! http://mths.be/punycode v1.2.0 by @mathias */\n;(function(root) {\n\n\t/**\n\t * The `punycode` object.\n\t * @name punycode\n\t * @type Object\n\t */\n\tvar punycode,\n\n\t/** Detect free variables `define`, `exports`, `module` and `require` */\n\tfreeDefine = typeof define == 'function' && typeof define.amd == 'object' &&\n\t\tdefine.amd && define,\n\tfreeExports = typeof exports == 'object' && exports,\n\tfreeModule = typeof module == 'object' && module,\n\tfreeRequire = typeof require == 'function' && require,\n\n\t/** Highest positive signed 32-bit float value */\n\tmaxInt = 2147483647, // aka. 0x7FFFFFFF or 2^31-1\n\n\t/** Bootstring parameters */\n\tbase = 36,\n\ttMin = 1,\n\ttMax = 26,\n\tskew = 38,\n\tdamp = 700,\n\tinitialBias = 72,\n\tinitialN = 128, // 0x80\n\tdelimiter = '-', // '\\x2D'\n\n\t/** Regular expressions */\n\tregexPunycode = /^xn--/,\n\tregexNonASCII = /[^ -~]/, // unprintable ASCII chars + non-ASCII chars\n\tregexSeparators = /\\x2E|\\u3002|\\uFF0E|\\uFF61/g, // RFC 3490 separators\n\n\t/** Error messages */\n\terrors = {\n\t\t'overflow': 'Overflow: in",
"// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// 'Software'), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWI",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump",
"S_IFDIR",
"S_IFBLK",
"EWOULDBLOCK",
"ENOMSG",
"SSL_OP_ALL",
"SSL_OP_TLS_ROLLBACK_BUG",
"EADDRNOTAVAIL",
"SSL_OP_NETSCAPE_CHALLENGE_BUG",
"EACCES",
"S_IRUSR",
"S_IRGRP",
"ECHILD",
"SIGILL",
"ENODEV",
"S_IWGRP",
"ENOENT",
"NPN_ENABLED",
"SIGUSR2",
"S_IXUSR",
"EPIPE",
"SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG",
"ENOSPC",
"ENOBUFS",
"EOPNOTSUPP",
"ENOLINK",
"EBADMSG",
"S_IFSOCK",
"SSL_OP_MSIE_SSLV2_RSA_PADDING",
"ENOTDIR",
"ENOSR",
"ENOTSOCK",
"SIGTSTP",
"ETIMEDOUT",
"ENOMEM",
"SIGINT",
"ETIME",
"SIGTERM",
"EFAULT",
"ENFILE",
"SIGSYS",
"EAGAIN",
"ELOOP",
"SSL_OP_SINGLE_DH_USE",
"EBADF",
"EDESTADDRREQ",
"ENODATA",
"EISDIR",
"EDQUOT",
"SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER",
"EMFILE",
"SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG",
"S_IRWXO",
"SIGKILL",
"SSL_OP_PKCS1_CHECK_1",
"ECONNABORTED",
"S_IFCHR",
"EEXIST",
"SSL_OP_SINGLE_ECDH_USE",
"SIGXCPU",
"ENOTTY",
"S_IWUSR",
"SIGUSR1",
"EXDEV",
"S_IROTH",
"SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION",
"SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS",
"EDEADLK",
"SSL_OP_NO_TICKET",
"SSL_OP_NO_TLSv1",
"SSL_OP_SSLEAY_080_CLIENT_DH_BUG",
"SIGALRM",
"EINPROGRESS",
"S_IFREG",
"ENOSTR",
"EPROTO",
"ECONNRESET",
"EMLINK",
"EFBIG",
"EINVAL",
"EPROTONOSUPPORT",
"ENETUNREACH",
"SIGXFSZ",
"SSL_OP_EPHEMERAL_RSA",
"SSL_OP_CRYPTOPRO_TLSEXT_BUG",
"EPROTOTYPE",
"EIDRM",
"E2BIG",
"EOVERFLOW",
"SIGFPE",
"ENOSYS",
"S_IRWXG",
"ENOLCK",
"S_IFIFO",
"S_IXOTH",
"ERANGE",
"ENAMETOOLONG",
"SSL_OP_NO_QUERY_MTU",
"SSL_OP_NO_COMPRESSION",
"SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG",
"S_IXGRP",
"ECANCELED",
"SSL_OP_NO_TLSv1_1",
"EMULTIHOP",
"ETXTBSY",
"SSL_OP_CIPHER_SERVER_PREFERENCE",
"SIGPROF",
"SSL_OP_CISCO_ANYCONNECT",
"S_IRWXU",
"SIGBUS",
"SSL_OP_NO_SSLv3",
"SSL_OP_PKCS1_CHECK_2",
"ESPIPE",
"EROFS",
"ENETDOWN",
"SIGWINCH",
"EPERM",
"ENOEXEC",
"SSL_OP_MICROSOFT_SESS_ID_BUG",
"SSL_OP_COOKIE_EXCHANGE",
"S_IFMT",
"EILSEQ",
"SIGSEGV",
"SIGABRT",
"ENOPROTOOPT",
"SIGSTOP",
"SIGTRAP",
"ENXIO",
"SIGHUP",
"ENETRESET",
"SIGPIPE",
"SSL_OP_NO_SSLv2",
"EINTR",
"S_IWOTH",
"EBUSY",
"SIGTTOU",
"SIGURG",
"ESRCH",
"EHOSTUNREACH",
"EDOM",
"SIGVTALRM",
"SIGIOT",
"SIGCONT",
"SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION",
"ECONNREFUSED",
"ENOTCONN",
"SSL_OP_NO_TLSv1_2",
"S_IFLNK",
"EMSGSIZE",
"SSL_OP_TLS_D5_BUG",
"EADDRINUSE",
"EISCONN",
"ENOTSUP",
"SSL_OP_TLS_BLOCK_PADDING_BUG",
"SIGIO",
"ENOTEMPTY",
"SSL_OP_NETSCAPE_CA_DN_BUG",
"SIGQUIT",
"ESTALE",
"EAFNOSUPPORT",
"SIGCHLD",
"EALREADY",
"SIGTTIN",
"SSL_OP_LEGACY_SERVER_CONNECT",
"EIO",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump/build/Release/heapdump.node",
"/Users/wavded",
"/Users",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump/build/Release",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump/build",
"/Users/wavded/Projects/node-in-practice/trunk",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging",
"/Users/wavded/Projects/node-in-practice",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory",
"/Users/wavded/Projects",
"/Users/wavded/Projects/node-in-practice/trunk/listings",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/node_modules",
"/Users/wavded/Projects/node-in-practice/trunk/listings/node_modules",
"/Users/wavded/Projects/node-in-practice/trunk/node_modules",
"/Users/wavded/Projects/node-in-practice/node_modules",
"/Users/wavded/Projects/node_modules",
"/Users/wavded/node_modules",
"/Users/node_modules",
"/node_modules",
"tty",
"_debugger",
"dgram",
"punycode",
"vm",
"tls",
"https",
"freelist",
"os",
"sys",
"querystring",
"url",
"zlib",
"crypto",
"string_decoder",
"console",
"net",
"child_process",
"readline",
"dns",
"http",
"{\"request\":\"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/leak3.js\",\"paths\":[\"\"]}",
"{\"request\":\"heapdump\",\"paths\":[\"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules\",\"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/node_modules\",\"/Users/wavded/Projects/node-in-practice/trunk/listings/node_modules\",\"/Users/wavded/Projects/node-in-practice/trunk/node_modules\",\"/Users/wavded/Projects/node-in-practice/node_modules\",\"/Users/wavded/Projects/node_modules\",\"/Users/wavded/node_modules\",\"/Users/node_modules\",\"/node_modules\",\"/Users/wavded/.node_modules\",\"/Users/wavded/.node_libraries\",\"/Users/wavded/.nvm/v0.10.25/lib/node\"]}",
"Release",
"/usr/bin/python",
"node_shared_http_parser",
"node_use_perfctr",
"node_unsafe_optimizations",
"node_install_npm",
"node_use_dtrace",
"node_tag",
"v8_use_snapshot",
"python",
"node_prefix",
"node_shared_libuv",
"node_use_etw",
"node_use_openssl",
"clang",
"host_arch",
"target_arch",
"node_shared_cares",
"node_shared_zlib",
"v8_no_strict_aliasing",
"node_shared_v8",
"v8_enable_gdbjit",
"node_shared_openssl",
"1 string to rule them all",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump/build/Release/node_modules",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump/build/node_modules",
"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/memory/node_modules/heapdump/node_modules",
"HasFastSmiElements",
"GetThreadCount",
"WeakMapGet",
"MessageGetArguments",
"DebugPropertyTypeFromDetails",
"PushModuleContext",
"PrepareStep",
"DebugBreak",
"ClearStepping",
"NumberCompare",
"CheckExecutionState",
"HasExternalUnsignedByteElements",
"DebugGetLoadedScripts",
"RegExpConstructResult",
"GetFunctionScopeDetails",
"NewArgumentsFast",
"StoreContextSlot",
"GetScript",
"HasFastObjectElements",
"GetOptimizationCount",
"Math_sqrt",
"GetThreadDetails",
"ExecuteInDebugContext",
"_ArgumentsLength",
"_Log",
"FunctionGetInferredName",
"DateMakeDay",
"MessageGetType",
"NumberShl",
"GetHeapUsage",
"StringParseInt",
"RegExpExecMultiple",
"WeakMapInitialize",
"StringCompare",
"CollectGarbage",
"PushWithContext",
"_StringCompare",
"NumberAnd",
"NumberShr",
"FunctionSetInstanceClassName",
"NumberSar",
"DateLocalTimezone",
"Typeof",
"NumberMod",
"SetAdd",
"DebugDisassembleConstructor",
"ThrowReferenceError",
"InitializeConstContextSlot",
"FinishArrayPrototypeSetup",
"SetHas",
"LookupAccessor",
"GetLOLPath",
"IsJSProxy",
"DebugGetProperty",
"GetLocalPropertyNames",
"NumberMul",
"_DateField",
"SummarizeLOL",
"HasProperty",
"CreateJSProxy",
"_SubString",
"_ObjectEquals",
"FunctionIsBuiltin",
"_GetFromCache",
"IsTemplate",
"DeclareContextSlot",
"IsJSFunctionProxy",
"_IsRegExp",
"CharFromCode",
"Throw",
"HasLOLEnabled",
"Math_exp",
"NumberToInteger",
"NumberOr",
"LiveEditFindSharedFunctionInfosForScript",
"_HasCachedArrayIndex",
"LocalKeys",
"NumberDiv",
"NewStringWrapper",
"NewMessageObject",
"Math_atan2",
"ProfilerResume",
"QuoteJSONStringArray",
"ToFastProperties",
"StringEquals",
"DisableAccessChecks",
"DebugDisassembleFunction",
"_MathTan",
"AllocateInNewSpace",
"NumberAdd",
"_StringCharAt",
"MapGet",
"Abort",
"IsJSModule",
"HasFastSmiOrObjectElements",
"Call",
"Math_acos",
"ClassOf",
"OptimizeObjectForAddingMultipleProperties",
"SmiLexicographicCompare",
"Math_sin",
"_IsNonNegativeSmi",
"HasExternalFloatElements",
"DebugGetPrototype",
"QuoteJSONString",
"MaterializeRegExpLiteral",
"DebugNamedInterceptorPropertyValue",
"_MathLog",
"HasElement",
"NumberSub",
"DebugPrepareStepInIfStepping",
"GetNamedInterceptorPropertyNames",
"DumpLOL",
"DateParseString",
"GetArrayKeys",
"HasExternalPixelElements",
"Math_log",
"_NumberToString",
"DebugPrint",
"CreateObjectLiteral",
"GetScopeCount",
"DebugSetScriptSource",
"MapInitialize",
"_RandomHeapNumber",
"GetProperty",
"IS_VAR",
"LiveEditReplaceFunctionCode",
"HasExternalUnsignedShortElements",
"FunctionGetSourceCode",
"PreventExtensions",
"HasFastProperties",
"_Arguments",
"FunctionSetLength",
"GetV8Version",
"_CallFunction",
"Math_atan",
"IsBreakOnException",
"LiveEditPatchFunctionPositions",
"KeyedGetProperty",
"DateToUTC",
"_IsArray",
"_IsSmi",
"ResetLOL",
"LiveEditFunctionSetScript",
"MapHas",
"DeleteLOL",
"SetNewFunctionAttributes",
"DebugConstructedBy",
"ParallelRecompile",
"CreateObjectLiteralShallow",
"SetNativeFlag",
"GetLocalElementNames",
"IsInPrototypeChain",
"LazyCompile",
"EnableAccessChecks",
"WeakMapDelete",
"Log",
"GetPropertyNamesFast",
"NumberUnaryMinus",
"ParseJson",
"WeakMapSet",
"ClearFunctionTypeFeedback",
"StringBuilderJoin",
"MapDelete",
"Apply",
"NewClosure",
"PrintLOLObj",
"Interrupt",
"IsPropertyEnumerable",
"BoundFunctionGetBindings",
"FunctionGetName",
"NewGlobalContext",
"DeleteProperty",
"CreateApiFunction",
"DebugPropertyIndexFromDetails",
"DebugPropertyAttributesFromDetails",
"NumberXor",
"InitializeConstGlobal",
"HasExternalArrayElements",
"_GetCachedArrayIndex",
"DeoptimizeFunction",
"FunctionNameShouldPrintAsAnonymous",
"LiveEditCompareStrings",
"_IsSpecObject",
"ResolvePossiblyDirectEval",
"WeakMapHas",
"GetLOLObjId",
"DebugCallbackSupportsStepping",
"PushBlockContext",
"NewObjectFromBound",
"LoadContextSlotNoReferenceError",
"_MathPow",
"FunctionGetScriptSourcePosition",
"HasExternalIntElements",
"TransitionElementsDoubleToObject",
"_IsRegExpEquivalent",
"Math_pow_cfunction",
"StringReplaceOneCharWithString",
"LiveEditCheckAndDropActivations",
"RegExpInitializeObject",
"DefineOrRedefineDataProperty",
"TraceExit",
"FunctionIsAPIFunction",
"GetConstructTrap",
"HaveSameMap",
"GetInterceptorInfo",
"_IsConstructCall",
"SpecialArrayFunctions",
"ReThrow",
"MessageGetStartPosition",
"Math_cos",
"StackGuard",
"LiveEditReplaceRefToNestedFunction",
"LiveEditFunctionSourceUpdated",
"DebugGetPropertyDetails",
"FunctionSetReadOnlyPrototype",
"HasExternalShortElements",
"_MathSqrt",
"LiveEditRestartFrame",
"FunctionMarkNameShouldPrintAsAnonymous",
"HasExternalUnsignedIntElements",
"ToBool",
"NotifyDeoptimized",
"FunctionSetName",
"DeclareGlobals",
"CreateArrayLiteral",
"Math_pow",
"Break",
"FunctionRemovePrototype",
"LiveEditGatherCompileInfo",
"SystemBreak",
"StringParseFloat",
"NumberNot",
"NumberToJSInt32",
"HasLocalProperty",
"DebugPrintScopes",
"_SetValueOf",
"GlobalReceiver",
"_IsStringWrapperSafeForDefaultValueOf",
"SetDebugEventListener",
"SetFlags",
"PushCatchContext",
"NumberAlloc",
"NumberToJSUint32",
"MessageGetScript",
"StoreArrayLiteralElement",
"Math_asin",
"CompileString",
"FunctionBindArguments",
"IsExtensible",
"DebugReferencedBy",
"GetFunctionScopeCount",
"GetPropertyNames",
"MapSet",
"RunningInSimulator",
"GetBreakLocations",
"GetFunctionDelegate",
"HasFastDoubleElements",
"NewStrictArgumentsFast",
"NumberToStringSkipCache",
"ProfilerPause",
"HasDictionaryElements",
"LazyRecompile",
"PromoteScheduledException",
"StringFromCharCodeArray",
"ChangeBreakOnException",
"HasFastHoleyElements",
"GetScopeDetails",
"SetScopeVariableValue",
"DateSetValue",
"CompileForOnStackReplacement",
"LiveEditReplaceScript",
"DebugEvaluate",
"GetOptimizationStatus",
"NotifyOSR",
"FinalizeInstanceSize",
"DefineOrRedefineAccessorProperty",
"_StringCharFromCode",
"GetLOLObjRetainers",
"GetTemplateField",
"MoveArrayContents",
"Fix",
"TransitionElementsSmiToDouble",
"_MathCos",
"NumberEquals",
"GetHandler",
"NumberToIntegerMapMinusZero",
"_IsObject",
"_ClassOf",
"EstimateNumberOfElements",
"DebugEvaluateGlobal",
"_RegExpConstructResult",
"NumberToSmi",
"GetLOLObj",
"RemoveArrayHoles",
"FunctionSetPrototype",
"OptimizeFunctionOnNextCall",
"SetScriptBreakPoint",
"TraceEnter",
"_ValueOf",
"_FastAsciiArrayJoin",
"StringToNumber",
"GetFromCache",
"RoundNumber",
"SetDisableBreak",
"StringReplaceRegExpWithString",
"PushIfAbsent",
"_StringCharCodeAt",
"Math_tan",
"SetInitialize",
"DateCurrentTime",
"GetIndexedInterceptorElementNames",
"SetCode",
"_StringAdd",
"GetConstructorDelegate",
"FunctionGetPositionForOffset",
"SetFunctionBreakPoint",
"InitializeVarGlobal",
"GetArgumentsProperty",
"AllocateHeapNumber",
"Math_floor",
"GetRootNaN",
"InfoLOL",
"DebugTrace",
"DeleteContextSlot",
"GetCallTrap",
"ThrowNotDateError",
"GetFrameCount",
"HasExternalDoubleElements",
"GetFunctionCodePositionFromSource",
"_RegExpExec",
"StringBuilderConcat",
"SetProperty",
"DebugIndexedInterceptorElementValue",
"_IsUndetectableObject",
"CollectStackTrace",
"_MathSin",
"FunctionGetScript",
"Math_ceil",
"CheckIsBootstrapping",
"NewFunctionContext",
"HasExternalByteElements",
"GetFrameDetails",
"NumberToRadixString",
"GetPrototype",
"StringToArray",
"SetExpectedNumberOfProperties",
"CaptureLOL",
"CreateJSFunctionProxy",
"QuoteJSONStringComma",
"LoadContextSlot",
"GlobalPrint",
"ClearBreakPoint",
"SetDelete",
"_IsFunction",
"StringAdd",
"IgnoreAttributesAndSetProperty",
"CreateArrayLiteralShallow",
"NewObject",
"GetDefaultReceiver",
"Module._load REQUEST ",
"getEvalOrigin",
"queryTxt",
"noDeprecation",
"uv_signal_start",
"getaddrinfo",
",null",
"tickDepth_",
"AF_UNSPEC",
"DTRACE_HTTP_CLIENT_REQUEST",
"missing path",
") {\n",
"Unknown API tag <",
"$",
"fun",
"state",
"tls_sni",
"connect",
"isatty",
"writeReq",
"$6",
"write failure",
"len",
"repl.js",
"_listen2",
"function",
"(?:)",
"send",
"_forkChild",
"drain",
"defaultEncoding",
"writecb",
"awaitDrain",
"_destroy",
"v8::hidden_stack_trace",
"allowHalfOpen",
"NODE_NO_READLINE",
"hasOwn",
"Internal error: invalid desc_array",
"openssl",
"Debug",
": ",
"column_offset",
"[",
"onsignal",
"setGet",
"createConnection",
"reading",
"Server",
"package.json",
".code",
"column",
"objects",
"listenFD is deprecated. Use listen({fd: }).",
"elements",
"xw+",
"$5",
"$*",
" parent: ",
"ucs2",
"getFunctionName",
"Error parsing ",
"needReadable",
"v8debug",
"_stdout",
"this",
"..",
"fs.open(O_EXCL)",
"_setupSlave",
"readingMore",
"DTRACE_NET_SOCKET_READ",
"MIN_VALUE",
"hasGetter",
"v8",
"_writableState",
"illegal execution state",
"illegal access",
"value_and_accessor",
"getSet",
"input",
".catch-var",
"them",
"getThis",
"extensions",
"createTCP",
"]",
"compilation_type",
"winSize",
"property_desc_object",
"_pendingData",
"_refreshSize",
"ret",
"newListener",
"AF_INET",
"wx+",
"cares_wrap",
"unknown_label",
"_type",
"finish",
"to_line",
"queryMx",
"illegal_return",
"restrict",
"_createServerHandle",
"terminal",
"lib",
"trace",
"isIPv4",
"invalid_lhs_in_prefix_op",
"FILE",
"data",
" ",
"hasCachedNameOrSourceURL",
"createPipe",
"_emitCloseIfDrained",
"Object.prototype.__defineGetter__: Expecting function",
"AF_INET6",
";",
"queryCname",
"utf8",
"createServer",
")",
"cares",
"SQRT1_2",
"NODE_DISABLE_COLORS",
"xa",
"$RangeError",
"No such label: ",
"__proto__",
"_forceRepl",
"getGet",
"afterWrite destroyed",
"owner",
"redefine_disallowed",
"lineCount",
"$3",
"HOME",
"redeclaration",
"proto_object_or_null",
"toNumber",
"writeAfterFIN",
"moveCursor",
"LN2",
"(function(",
"_disposed",
"writeQueueSize",
"_setupWorker",
"afterWrite call cb",
"$Error",
"getHostByName",
"MAX_VALUE",
"KeyedStoreElementMonomorphic",
"called_on_null_or_undefined",
"POSITIVE_INFINITY",
"bufferProcessing",
"Implement me. Unknown stream file type!",
"endEmitted",
"$TypeError",
"setValue",
"warn",
"./",
"info",
"NODE_MODULE_CONTEXTS",
"unrefTimer initialized",
"unable_to_parse",
"Bad arguments",
"evals",
"address",
"getScriptNameOrSourceURL",
"NODE_PATH",
"Not supported",
"%s: %dms",
"afterShutdown",
"Cannot find module '",
"handle",
"This socket is closed.",
"line_offset",
"_normalizeConnectArgs",
"simultaneousAccepts",
"illegal_break",
"hasValue",
"line",
"unrefList append to end",
"invalid data",
"KeyedLoadElementMonomorphic",
"timer_wrap",
"[eval]",
"setSet",
"locationFromPosition",
"xw",
"\n",
"use strict",
"$9",
" from ",
"rows",
"$'",
"leak detected. %d listeners added. ",
"object",
"cur",
"NODE_DEBUG_TIMEOUT",
"_errno",
"hasEnumerable",
"valid",
"eval_from_function_name",
"Unknown encoding: ",
"readyState",
"tls_npn",
"$_",
"looking for ",
"\n})",
"Bind must be called on a function",
"}",
"apply_non_function",
"unrefList empty",
"hasConfigurable",
"rs+",
"node_modules",
"x",
"NODE_DEBUG",
"ex",
"querySrv",
"from_position",
"_eval",
"native_module",
"getMethodName",
"load ",
"pipesCount",
"DerivedHasOwnTrap",
"setKeepAlive",
".for.",
"remotePort",
"E",
"sourceText",
"to_position",
"_readableState",
"listener must be a function",
"eval_from_script_position",
"eval_from_script",
"base64",
"afterConnect",
"createServerHandle",
"ignoreCase",
"invalid_lhs_in_for_in",
"getter_must_be_callable",
"arr",
"Socket",
"LN10",
"unrefList inserting into middle of list",
"isTTY",
"_handle",
"\\",
"tty_wrap",
"label",
"StringImpl",
"context_data",
"rs",
"getHostByAddr",
"clearLine",
"now: ",
"Unknown file open flag: ",
"USERPROFILE",
"regexp_flags",
"_times",
".node_libraries",
"DTRACE_HTTP_SERVER_REQUEST",
"native",
"highWaterMark",
"signal_wrap",
"signum",
"errno",
"First argument needs to be a number, ",
"res",
"DerivedKeysTrap",
"invalid_regexp_flags",
"getValue",
"binary",
",",
"unrefTimer is scheduled to fire too late, reschedule",
"decoder",
"nameOrSourceURL",
"utf-16le",
"readableListening",
"from_line",
"stackTraceLimit",
"pipes",
"win32",
"getFileName",
"bytesWritten",
"listener",
"localPort",
"lineFromPosition",
"onSocketEnd",
"tty.setRawMode: Use `process.stdin.setRawMode()` instead.",
"hasSetter",
"===",
"load native module ",
"No such native module ",
"duration",
"wx",
"getColumnNumber",
"guessHandleType",
"rightContext",
"DTRACE_HTTP_SERVER_RESPONSE",
"(anonymous function)",
"ipv6",
"called_non_callable",
"v8::IdentityHash",
"cursorTo",
"_stderr",
"sync",
"_bytesDispatched",
"ax",
"incompatible_method_receiver",
"NaN",
"onread",
"req",
"setBreakPoint",
"Domain",
"createHandle",
"generate",
"locationFromLine",
"enc",
"_charsWritten",
"bytes",
"timeout callback ",
"getConnections",
"[]",
"apply_wrong_args",
"onconnection",
"noop",
"event",
"setWritable",
"noDecode",
"stack",
"NODE_CHANNEL_FD",
"fired",
"CharAt",
"RELATIVE: requested:",
" for module ",
"writelen",
"localAddress",
"(closure)",
"unrefList find where we can insert",
"oncomplete",
"ascii",
"isEnumerable",
"finished",
"{",
"natives",
"setter_must_be_callable",
" ",
"hwm",
"isConstructor",
"isIP",
"useColors",
"isToplevel",
"addSpecialSlice",
"define_disallowed",
"writing",
"DTRACE_NET_STREAM_END",
"calledRead",
"(node) warning: possible EventEmitter memory ",
"createWriteReq",
"status",
"SIG",
"NODE_UNIQUE_ID",
"called_on_non_object",
"_socketEnd",
"$input",
"getTypeName",
"hex",
"onSocketFinish",
"$4",
"lastParen",
"bufferSize",
"expression",
"$7",
"_pendingEncoding",
"Arguments to path.resolve must be strings",
"Invalid non-string/buffer chunk",
"unrefList initialized",
"ev",
"PIPE",
"columns",
"isPipeName",
"line_ends",
"out-of-memory",
"syscall",
"sourceLine",
" set ID to: ",
"Console",
"_setSimultaneousAccepts",
"maybeDestroy",
"Path must be a string without null bytes.",
"null_to_object",
"queryAaaa",
"utf16le",
"enter",
"add",
"Trace",
"ranOut",
"-Infinity",
"ax+",
"isIPv6",
"clearScreenDown",
"illegal argument",
"queryNs",
"SQRT2",
"path must be a string",
"DTRACE_NET_SOCKET_WRITE",
"raw",
"errorEmitted",
"$2",
"flowing",
"ending",
"NEGATIVE_INFINITY",
"main",
"load root module",
"initSocketHandle",
" in ",
"modules",
"ended",
"tcp_wrap",
"invalid_lhs_in_assignment",
"\"\"",
"TCP",
"timeEnd",
"sourceSlice",
"$`",
"hasWritable",
"cb",
"getFunction",
"_connecting",
"normalizeConnectArgs",
"unrefTimer scheduled",
"LOG10E",
"queryNaptr",
"$+",
"callee",
"when",
"isEval",
"==",
"special_string",
"a+",
"load submodule",
"destroyed",
"LOG2E",
"emittedReadable",
"Console expects a writable stream instance",
"instanceof_nonobject_proto",
"KeyedStoreAndGrowElementMonomorphic",
"uv",
" list empty",
"needDrain",
"illegal_continue",
"_getpeername",
"instanceof_function_expected",
"Infinity",
"DTRACE_HTTP_CLIENT_RESPONSE",
"wrote snapshot",
"invalid_lhs_in_postfix_op",
"w",
"utf-8",
"xa+",
"cachedNameOrSourceURL",
"array or string.",
"",
"circular_structure",
"isWritable",
"_isStdio",
"getLineNumber",
"setConfigurable",
"r+",
"setNoDelay",
"listenFD",
"queryA",
"Use emitter.setMaxListeners() to increase limit.",
"isNative",
"invalid_in_operator_use",
"w+",
"$1",
"leftContext",
"ucs-2",
"$&",
"$8",
"_getsockname",
"_third_party_main",
"PI",
"multiline",
"lastIndex",
"GLOBAL",
"receiver",
".node_modules",
"lastMatch",
" list wait because diff is ",
"objectMode",
"MODULE_NOT_FOUND",
"http_parser",
"DTRACE_NET_SERVER_CONNECTION",
"isConfigurable",
"ares",
"getPosition",
"First argument must be a Buffer when slicing",
"setEnumerable",
"remoteAddress",
"listen",
"decodeStrings",
"$SyntaxError",
"$URIError",
"$ReferenceError",
"$EvalError",
".value_",
".enumerable_",
".writable_",
".h",
".i",
".a",
".c",
".k",
".getCached",
".exists",
".getSource",
".compile",
".cache",
"console.js",
"Console.log",
"Console.warn",
"Console.dir",
"Console.time",
"Console.timeEnd",
"Console.trace",
"Console.assert",
"stdout.destroy.stdout.destroySoon",
"tty.js",
"exports.isatty",
"ReadStream.setRawMode",
"WriteStream._refreshSize",
"WriteStream.cursorTo",
"WriteStream.moveCursor",
"WriteStream.clearLine",
"WriteStream.clearScreenDown",
"WriteStream.getWindowSize",
"net.js",
"exports.createServer",
"exports.connect.exports.createConnection",
"Socket.read",
"Socket.listen",
"Socket.setTimeout",
"Socket._onTimeout",
"Socket.setNoDelay",
"Socket.setKeepAlive",
"Socket.address",
"Socket._read",
"Socket.end",
"Socket.destroySoon",
"Socket._destroy",
"Socket.destroy",
"Socket._getpeername",
"Socket._getsockname",
"Socket.write",
"Socket._write",
"Socket.connect",
"Socket.ref",
"Socket.unref",
"exports._createServerHandle",
"Server._listen2",
"Server.listen",
"Server.address",
"Server.getConnections",
"Server.close",
"Server._emitCloseIfDrained",
"Server._setupSlave",
"Server.ref",
"Server.unref",
"exports.isIPv4",
"exports.isIPv6",
"exports._setSimultaneousAccepts",
"WritableState.onwrite",
"wrap.onsignal",
"stderr.destroy.stderr.destroySoon",
".timeEnd",
".trace",
"stdout.destroy.stdout",
".destroySoon",
".isatty",
".setRawMode",
"._refreshSize",
".cursorTo",
".moveCursor",
".clearLine",
".clearScreenDown",
".getWindowSize",
".createServer",
"exports.connect.exports",
".createConnection",
".listen",
"._onTimeout",
".setNoDelay",
".setKeepAlive",
".address",
"._destroy",
"._getpeername",
"._getsockname",
".connect",
"._createServerHandle",
"._listen2",
".getConnections",
"._emitCloseIfDrained",
"._setupSlave",
".isIPv4",
".isIPv6",
"._setSimultaneousAccepts",
".onwrite",
".onsignal",
"stderr.destroy.stderr",
"native_bind",
"stdout.destroy",
".stdout",
"exports.connect",
".exports",
"stderr.destroy",
".stderr",
"(function bindings)",
"(code relocation info)",
"^([a-zA-Z]:|[\\\\\\/]{2}[^\\\\\\/]+[\\\\\\/]+[^\\\\\\/]+)?([\\\\\\/])?([\\s\\S]*?)$",
"^([\\s\\S]*?)((?:\\.{1,2}|[^\\\\\\/]+?|)(\\.[^.\\/\\\\]*|))(?:[\\\\\\/]*)$",
"^index\\.\\w+?$",
"(.*?)(?:[\\/\\\\]+|$)",
"^(?:[a-zA-Z]:|[\\\\\\/]{2}[^\\\\\\/]+[\\\\\\/][^\\\\\\/]+)?[\\\\\\/]*",
"[\\/\\\\]",
"byte_array_map",
"free_space_map",
"one_pointer_filler_map",
"two_pointer_filler_map",
"undefined_value",
"instanceof_cache_map",
"null_value",
"true_value",
"false_value",
"global_property_cell_map",
"shared_function_info_map",
"meta_map",
"ascii_symbol_map",
"ascii_string_map",
"heap_number_map",
"native_context_map",
"fixed_array_map",
"code_map",
"scope_info_map",
"fixed_cow_array_map",
"fixed_double_array_map",
"no_interceptor_result_sentinel",
"hash_table_map",
"empty_fixed_array",
"empty_byte_array",
"empty_string",
"empty_descriptor_array",
"arguments_marker",
"number_string_cache",
"single_character_string_cache",
"string_split_cache",
"regexp_multiple_cache",
"termination_exception",
"string_map",
"symbol_map",
"cons_string_map",
"cons_ascii_string_map",
"sliced_string_map",
"sliced_ascii_string_map",
"cons_symbol_map",
"cons_ascii_symbol_map",
"external_symbol_map",
"external_symbol_with_ascii_data_map",
"external_ascii_symbol_map",
"external_string_map",
"external_string_with_ascii_data_map",
"external_ascii_string_map",
"short_external_symbol_map",
"short_external_symbol_with_ascii_data_map",
"short_external_ascii_symbol_map",
"short_external_string_map",
"short_external_string_with_ascii_data_map",
"short_external_ascii_string_map",
"undetectable_string_map",
"undetectable_ascii_string_map",
"external_pixel_array_map",
"external_byte_array_map",
"external_unsigned_byte_array_map",
"external_short_array_map",
"external_unsigned_short_array_map",
"external_int_array_map",
"external_unsigned_int_array_map",
"external_float_array_map",
"external_double_array_map",
"non_strict_arguments_elements_map",
"function_context_map",
"catch_context_map",
"with_context_map",
"block_context_map",
"module_context_map",
"global_context_map",
"oddball_map",
"message_object_map",
"foreign_map",
"nan_value",
"infinity_value",
"minus_zero_value",
"neander_map",
"message_listeners",
"prototype_accessors",
"code_stubs",
"non_monomorphic_cache",
"polymorphic_code_cache",
"js_entry_code",
"js_construct_entry_code",
"natives_source_cache",
"empty_script",
"intrinsic_function_names",
"Array_symbol",
"Object_symbol",
"Proto_symbol",
"StringImpl_symbol",
"arguments_symbol",
"Arguments_symbol",
"call_symbol",
"apply_symbol",
"caller_symbol",
"boolean_symbol",
"Boolean_symbol",
"callee_symbol",
"constructor_symbol",
"code_symbol",
"result_symbol",
"dot_for_symbol",
"catch_var_symbol",
"empty_symbol",
"eval_symbol",
"function_symbol",
"length_symbol",
"module_symbol",
"name_symbol",
"native_symbol",
"null_symbol",
"number_symbol",
"Number_symbol",
"nan_symbol",
"RegExp_symbol",
"source_symbol",
"global_symbol",
"ignore_case_symbol",
"multiline_symbol",
"input_symbol",
"index_symbol",
"last_index_symbol",
"object_symbol",
"prototype_symbol",
"string_symbol",
"String_symbol",
"Date_symbol",
"this_symbol",
"to_string_symbol",
"char_at_symbol",
"undefined_symbol",
"value_of_symbol",
"InitializeVarGlobal_symbol",
"InitializeConstGlobal_symbol",
"KeyedLoadElementMonomorphic_symbol",
"KeyedStoreElementMonomorphic_symbol",
"KeyedStoreAndGrowElementMonomorphic_symbol",
"stack_overflow_symbol",
"illegal_access_symbol",
"out_of_memory_symbol",
"illegal_execution_state_symbol",
"get_symbol",
"set_symbol",
"function_class_symbol",
"illegal_argument_symbol",
"MakeReferenceError_symbol",
"MakeSyntaxError_symbol",
"MakeTypeError_symbol",
"invalid_lhs_in_assignment_symbol",
"invalid_lhs_in_for_in_symbol",
"invalid_lhs_in_postfix_op_symbol",
"invalid_lhs_in_prefix_op_symbol",
"illegal_return_symbol",
"illegal_break_symbol",
"illegal_continue_symbol",
"unknown_label_symbol",
"redeclaration_symbol",
"failure_symbol",
"space_symbol",
"exec_symbol",
"zero_symbol",
"global_eval_symbol",
"identity_hash_symbol",
"closure_symbol",
"use_strict",
"dot_symbol",
"anonymous_function_symbol",
"compare_ic_symbol",
"strict_compare_ic_symbol",
"infinity_symbol",
"minus_infinity_symbol",
"hidden_stack_trace_symbol",
"query_colon_symbol",
"accessor_info_map",
"accessor_pair_map",
"access_check_info_map",
"interceptor_info_map",
"call_handler_info_map",
"function_template_info_map",
"object_template_info_map",
"signature_info_map",
"type_switch_info_map",
"script_map",
"code_cache_map",
"polymorphic_code_cache_map",
"type_feedback_info_map",
"aliased_arguments_entry_map",
"debug_info_map",
"break_point_info_map",
"map",
"name",
"code",
"scope_info",
"instance_class_name",
"construct_stub",
"inferred_name",
"relocation_info",
"type_feedback_info",
"literals",
"shared",
"context",
"closure",
"previous",
"global",
"prototype",
"descriptors",
"constructor",
"transitions",
"script",
"source",
"extension",
"global_proxy_object",
"security_token",
"boolean_function",
"number_function",
"string_function",
"string_function_prototype_map",
"object_function",
"internal_array_function",
"array_function",
"js_array_maps",
"date_function",
"json_object",
"regexp_function",
"initial_object_prototype",
"create_date_fun",
"to_number_fun",
"to_string_fun",
"to_detail_string_fun",
"to_object_fun",
"to_integer_fun",
"to_uint32_fun",
"to_int32_fun",
"global_eval_fun",
"instantiate_fun",
"configure_instance_fun",
"function_map",
"strict_mode_function_map",
"function_without_prototype_map",
"strict_mode_function_without_prototype_map",
"function_instance_map",
"strict_mode_function_instance_map",
"regexp_result_map",
"arguments_boilerplate",
"aliased_arguments_boilerplate",
"strict_mode_arguments_boilerplate",
"get_stack_trace_line_fun",
"function_cache",
"jsfunction_result_caches",
"normalized_map_cache",
"runtime_context",
"call_as_function_delegate",
"call_as_constructor_delegate",
"script_function",
"opaque_reference_function",
"context_extension_function",
"map_cache",
"to_complete_property_descriptor",
"random_seed",
"elements",
"properties",
"builtins",
"native_context",
"global_receiver",
"get-input",
"set-input",
"get-$_",
"set-$_",
"get-$input",
"set-$input",
"get-multiline",
"set-multiline",
"get-$*",
"set-$*",
"get-lastMatch",
"set-lastMatch",
"get-$&",
"set-$&",
"get-lastParen",
"set-lastParen",
"get-$+",
"set-$+",
"get-leftContext",
"set-leftContext",
"get-$`",
"set-$`",
"get-rightContext",
"set-rightContext",
"get-$'",
"set-$'",
"get-$1",
"set-$1",
"get-$2",
"set-$2",
"get-$3",
"set-$3",
"get-$4",
"set-$4",
"get-$5",
"set-$5",
"get-$6",
"set-$6",
"get-$7",
"set-$7",
"get-$8",
"set-$8",
"get-$9",
"set-$9",
"get-stdout",
"set-stdout",
"get-stderr",
"set-stderr",
"get-stdin",
"set-stdin",
"get-message",
"set-message",
"deoptimization_data",
"first",
"second",
"this_property_assignments",
"handler_table",
"function_data",
"backpointer",
"native",
"get-callee",
"set-callee",
"get-caller",
"set-caller",
"value",
"get-readyState",
"set-readyState",
"get-bufferSize",
"set-bufferSize",
"get-remoteAddress",
"set-remoteAddress",
"get-remotePort",
"set-remotePort",
"get-localAddress",
"set-localAddress",
"get-localPort",
"set-localPort",
"get-bytesWritten",
"set-bytesWritten",
"bound_this",
"bound_function",
"get-arguments",
"set-arguments",
"bindings"]}
================================================
FILE: listings/debugging/memory/leak1.js
================================================
var string = '1 string to rule them all'
var leakyArr = []
var count = 2
setInterval(function () {
leakyArr.push(string.replace(/1/g, count++))
}, 0)
================================================
FILE: listings/debugging/memory/leak2.js
================================================
var string = '1 string to rule them all'
var leakyArr = []
var count = 2
setInterval(function () {
leakyArr.push(string.replace(/1/g, count++))
}, 0)
setInterval(function () {
gc()
console.log(process.memoryUsage())
}, 2000)
================================================
FILE: listings/debugging/memory/leak3.js
================================================
var heapdump = require('heapdump')
var string = '1 string to rule them all'
var leakyArr = []
var count = 2
setInterval(function () {
leakyArr.push(string.replace(/1/g, count++))
}, 0)
setInterval(function () {
if (heapdump.writeSnapshot()) console.log('wrote snapshot')
}, 20000)
================================================
FILE: listings/debugging/prof/iotest.js
================================================
var request = require('request')
request('http://adc4gis.com', function (er, res, body) {
console.log('made it johnny')
})
================================================
FILE: listings/debugging/prof/test.js
================================================
function makeLoad() {
for(var i=0;i<1000000000;i++);
}
function logSomething() {
console.log('something')
}
setInterval(makeLoad, 2000)
setInterval(logSomething, 0)
================================================
FILE: listings/debugging/prof/v8.log
================================================
shared-library,"/Users/wavded/.nvm/v0.10.24/bin/node",0x100001280,0x1003e169d
shared-library,"/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon",0x7fff962adfd0,0x7fff962adfd0
shared-library,"/usr/lib/libSystem.B.dylib",0x7fff962a3a1a,0x7fff962a3bbe
shared-library,"/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation",0x7fff982cd0d0,0x7fff9853c952
shared-library,"/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices",0x7fff90889fc0,0x7fff90889fc0
shared-library,"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices",0x7fff982cafb0,0x7fff982cafb0
shared-library,"/usr/lib/libstdc++.6.dylib",0x7fff91d56910,0x7fff91d95692
shared-library,"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation",0x7fff936f2ce0,0x7fff93892bdc
shared-library,"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels",0x7fff93acd857,0x7fff93acffd2
shared-library,"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help",0x7fff91fb7f60,0x7fff91fba17a
shared-library,"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox",0x7fff99f7fe30,0x7fff9a1dc433
shared-library,"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture",0x7fff90f714c0,0x7fff90f7cb4a
shared-library,"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink",0x7fff96565120,0x7fff965d8d30
shared-library,"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting",0x7fff988b9280,0x7fff988cbf7f
shared-library,"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print",0x7fff8efb99f7,0x7fff8efba710
shared-library,"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI",0x7fff8f63d36c,0x7fff8f63e7e2
shared-library,"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition",0x7fff962a52d0,0x7fff962ab6be
shared-library,"/usr/lib/libobjc.A.dylib",0x7fff9101a000,0x7fff91036e48
shared-library,"/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText",0x7fff988d29f0,0x7fff98984434
shared-library,"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics",0x7fff9a96eb90,0x7fff9ae7715e
shared-library,"/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO",0x7fff9a3ef3c0,0x7fff9a4cfbcb
shared-library,"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS",0x7fff90fa9d20,0x7fff9100bdf7
shared-library,"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync",0x7fff8eefabe0,0x7fff8ef5880d
shared-library,"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices",0x7fff8ea04da8,0x7fff8ea409ba
shared-library,"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis",0x7fff9937f23c,0x7fff9938cb8e
shared-library,"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore",0x7fff8f67fe10,0x7fff8f6bd801
shared-library,"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD",0x7fff956e58b0,0x7fff95714a8b
shared-library,"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis",0x7fff91fadb40,0x7fff91fb51db
shared-library,"/usr/lib/libz.1.dylib",0x7fff9131f0f0,0x7fff91329c55
shared-library,"/usr/lib/libbsm.0.dylib",0x7fff9a95dd54,0x7fff9a96bd51
shared-library,"/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit",0x7fff98728bd8,0x7fff98785e80
shared-library,"/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface",0x7fff945729c2,0x7fff94575388
shared-library,"/System/Library/Frameworks/Security.framework/Versions/A/Security",0x7fff95333810,0x7fff954e4cc6
shared-library,"/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate",0x7fff944da000,0x7fff944da000
shared-library,"/usr/lib/libc++.1.dylib",0x7fff985cbbd0,0x7fff986104c0
shared-library,"/usr/lib/system/libcache.dylib",0x7fff98814b50,0x7fff9881753d
shared-library,"/usr/lib/system/libcommonCrypto.dylib",0x7fff97a4ff98,0x7fff97a58b8d
shared-library,"/usr/lib/system/libcompiler_rt.dylib",0x7fff9798d080,0x7fff97991c2a
shared-library,"/usr/lib/system/libcopyfile.dylib",0x7fff96afff14,0x7fff96b057f1
shared-library,"/usr/lib/system/libcorecrypto.dylib",0x7fff91c64f90,0x7fff91c9ac0c
shared-library,"/usr/lib/system/libdispatch.dylib",0x7fff92610f10,0x7fff92625189
shared-library,"/usr/lib/system/libdyld.dylib",0x7fff8f06e1f0,0x7fff8f070605
shared-library,"/usr/lib/system/libkeymgr.dylib",0x7fff98638a4f,0x7fff98638e4e
shared-library,"/usr/lib/system/liblaunch.dylib",0x7fff97485e90,0x7fff9748c56c
shared-library,"/usr/lib/system/libmacho.dylib",0x7fff9a3e9570,0x7fff9a3ed8ea
shared-library,"/usr/lib/system/libquarantine.dylib",0x7fff8f8a9287,0x7fff8f8aab12
shared-library,"/usr/lib/system/libremovefile.dylib",0x7fff932f199c,0x7fff932f2c81
shared-library,"/usr/lib/system/libsystem_asl.dylib",0x7fff90aee7a0,0x7fff90afd705
shared-library,"/usr/lib/system/libsystem_blocks.dylib",0x7fff94284334,0x7fff94284b48
shared-library,"/usr/lib/system/libsystem_c.dylib",0x7fff91e9c6e0,0x7fff91f1be66
shared-library,"/usr/lib/system/libsystem_configuration.dylib",0x7fff90b00054,0x7fff90b01a14
shared-library,"/usr/lib/system/libsystem_dnssd.dylib",0x7fff95d65828,0x7fff95d6b37c
shared-library,"/usr/lib/system/libsystem_info.dylib",0x7fff964195a0,0x7fff9643cc07
shared-library,"/usr/lib/system/libsystem_kernel.dylib",0x7fff944234f0,0x7fff94438fde
shared-library,"/usr/lib/system/libsystem_m.dylib",0x7fff9887f1e0,0x7fff988926f2
shared-library,"/usr/lib/system/libsystem_malloc.dylib",0x7fff96285398,0x7fff9629c39d
shared-library,"/usr/lib/system/libsystem_network.dylib",0x7fff9934f210,0x7fff9936e91b
shared-library,"/usr/lib/system/libsystem_notify.dylib",0x7fff8d917380,0x7fff8d91f925
shared-library,"/usr/lib/system/libsystem_platform.dylib",0x7fff94479a20,0x7fff9447e825
shared-library,"/usr/lib/system/libsystem_pthread.dylib",0x7fff993773b4,0x7fff9937bfcb
shared-library,"/usr/lib/system/libsystem_sandbox.dylib",0x7fff977a4ae4,0x7fff977a5b2e
shared-library,"/usr/lib/system/libsystem_stats.dylib",0x7fff96414474,0x7fff964176b1
shared-library,"/usr/lib/system/libunc.dylib",0x7fff9400d8f3,0x7fff9400eb60
shared-library,"/usr/lib/system/libunwind.dylib",0x7fff8d91094c,0x7fff8d915388
shared-library,"/usr/lib/system/libxpc.dylib",0x7fff90b84ab0,0x7fff90b9ef3e
shared-library,"/usr/lib/libauto.dylib",0x7fff97949cd0,0x7fff97985e80
shared-library,"/usr/lib/libc++abi.dylib",0x7fff8d921040,0x7fff8d946aff
shared-library,"/usr/lib/libDiagnosticMessagesClient.dylib",0x7fff9446518e,0x7fff94465a22
shared-library,"/usr/lib/system/libkxld.dylib",0x7fff965f1e3c,0x7fff965fbbff
shared-library,"/usr/lib/libicucore.A.dylib",0x7fff97fffbf8,0x7fff98172d9c
shared-library,"/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork",0x7fff9097a610,0x7fff90ac1ad5
shared-library,"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore",0x7fff93ad9030,0x7fff93bb9748
shared-library,"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata",0x7fff9a343070,0x7fff9a3ba1b0
shared-library,"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices",0x7fff956291f0,0x7fff9568f42c
shared-library,"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit",0x7fff912682c0,0x7fff912ba19d
shared-library,"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE",0x7fff8ee7e4c0,0x7fff8eed16c3
shared-library,"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices",0x7fff95d9eec0,0x7fff95e51b67
shared-library,"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices",0x7fff98b4b1e0,0x7fff98b6e100
shared-library,"/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration",0x7fff98b748a0,0x7fff98bca543
shared-library,"/usr/lib/libsqlite3.dylib",0x7fff9a23c960,0x7fff9a31cb10
shared-library,"/usr/lib/libxml2.2.dylib",0x7fff981e29f0,0x7fff982aaeae
shared-library,"/usr/lib/libxar.1.dylib",0x7fff8d871fd4,0x7fff8d87d7a6
shared-library,"/usr/lib/libpam.2.dylib",0x7fff9a22cf4c,0x7fff9a22fdac
shared-library,"/usr/lib/libOpenScriptingUtil.dylib",0x7fff98808dc0,0x7fff98808f16
shared-library,"/usr/lib/libbz2.1.0.dylib",0x7fff97995154,0x7fff979a0fec
shared-library,"/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration",0x7fff8e7dd3b8,0x7fff8e7e1065
shared-library,"/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS",0x7fff912d9fc0,0x7fff912dfac7
shared-library,"/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth",0x7fff9092c760,0x7fff9093620a
shared-library,"/usr/lib/liblangid.dylib",0x7fff925e8476,0x7fff925e8d1e
shared-library,"/usr/lib/libCRFSuite.dylib",0x7fff96441410,0x7fff96458c6b
shared-library,"/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore",0x7fff9368c270,0x7fff936d92fd
shared-library,"/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC",0x7fff91da5d90,0x7fff91da86b9
shared-library,"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory",0x7fff8e7e3560,0x7fff8e7f3b3f
shared-library,"/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement",0x7fff98a967a4,0x7fff98a9d6cd
shared-library,"/usr/lib/libxslt.1.dylib",0x7fff955ffc4c,0x7fff9562000d
shared-library,"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage",0x7fff95043df0,0x7fff95283b7d
shared-library,"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib",0x7fff8e7dc000,0x7fff8e7dc000
shared-library,"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib",0x7fff938d7b80,0x7fff93995fb1
shared-library,"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib",0x7fff923c5700,0x7fff9245105c
shared-library,"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib",0x7fff9938f538,0x7fff9976669e
shared-library,"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib",0x7fff8f739880,0x7fff8f8a407b
shared-library,"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib",0x7fff913e8d20,0x7fff91446c6c
shared-library,"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib",0x7fff95e6f950,0x7fff95ea3dfe
shared-library,"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib",0x7fff91953dbc,0x7fff9197216e
shared-library,"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib",0x7fff915b742c,0x7fff915ee2dd
shared-library,"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib",0x7fff95027de0,0x7fff9503f760
shared-library,"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib",0x7fff9a8b4150,0x7fff9a8b7a16
shared-library,"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib",0x7fff9863a4f0,0x7fff986e6e63
shared-library,"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib",0x7fff90f5c821,0x7fff90f5ebc0
shared-library,"/usr/lib/libcups.2.dylib",0x7fff91900e1c,0x7fff9193987d
shared-library,"/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos",0x7fff9776cb35,0x7fff9777f210
shared-library,"/System/Library/Frameworks/GSS.framework/Versions/A/GSS",0x7fff908f3250,0x7fff9091c052
shared-library,"/usr/lib/libresolv.9.dylib",0x7fff8f64a230,0x7fff8f6632db
shared-library,"/usr/lib/libiconv.2.dylib",0x7fff91da9c98,0x7fff91dbe08d
shared-library,"/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal",0x7fff8d5c39f0,0x7fff8d618ac8
shared-library,"/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent",0x7fff962a091a,0x7fff962a17c2
shared-library,"/usr/lib/libheimdal-asn1.dylib",0x7fff99e89796,0x7fff99e8db48
shared-library,"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory",0x7fff94222c50,0x7fff9422a366
shared-library,"/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth",0x7fff96ea6344,0x7fff96eae11d
shared-library,"/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation",0x7fff96dc7710,0x7fff96dfcec5
shared-library,"/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio",0x7fff9977d650,0x7fff997c2290
shared-library,"/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox",0x7fff95f7cdf0,0x7fff9609e6f1
shared-library,"/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI",0x7fff9748e9a0,0x7fff9753e25e
shared-library,"/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore",0x7fff942869d0,0x7fff943efd16
shared-library,"/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv",0x7fff96c96a80,0x7fff96d75d70
shared-library,"/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport",0x7fff8f037bc0,0x7fff8f046f8f
shared-library,"/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage",0x7fff96e8d260,0x7fff96ea0083
shared-library,"/System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom",0x7fff91c298e8,0x7fff91c5df8f
shared-library,"/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL",0x7fff98a216fc,0x7fff98a2d0e6
shared-library,"/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo",0x7fff90f83a7c,0x7fff90f9dbe8
shared-library,"/System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage",0x7fff95a96490,0x7fff95c561fc
shared-library,"/System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface",0x7fff91214d20,0x7fff91253c0a
shared-library,"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib",0x7fff956a4894,0x7fff956de40a
shared-library,"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib",0x7fff9880a730,0x7fff98810825
shared-library,"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib",0x7fff9977109d,0x7fff9977bf2c
shared-library,"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib",0x7fff93a59660,0x7fff93a954f0
shared-library,"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib",0x7fff9121156f,0x7fff91212cc6
shared-library,"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib",0x7fff91cb36e8,0x7fff91cb5efb
shared-library,"/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore",0x7fff8ea49e90,0x7fff8eaa5ae4
shared-library,"/System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport",0x7fff9a2321a8,0x7fff9a2399fe
shared-library,"/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL",0x7fff8d8c26e8,0x7fff8d8ff53f
shared-library,"/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression",0x7fff8f0720d0,0x7fff8f07ab83
shared-library,"/System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity",0x7fff9861ef70,0x7fff986316c8
shared-library,"/System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing",0x7fff95f1b050,0x7fff95f25878
shared-library,"/System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices",0x7fff95d6dc00,0x7fff95d92756
shared-library,"/System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary",0x7fff97a5b680,0x7fff97a76e13
profiler,"begin",1
code-creation,Stub,0x272317f06000,338,"JSEntryStub"
code-creation,Stub,0x272317f06160,338,"JSConstructEntryStub"
code-creation,Stub,0x272317f062c0,698,"CEntryStub"
code-creation,Stub,0x272317f06580,1049,"CEntryStub"
code-creation,Stub,0x272317f069a0,162,"StoreBufferOverflowStub"
code-creation,Stub,0x272317f06a60,382,"StoreBufferOverflowStub"
code-creation,Stub,0x272317f06be0,1727,"RecordWriteStub"
code-creation,Stub,0x272317f072a0,1720,"RecordWriteStub"
code-creation,Stub,0x272317f07960,760,"RecordWriteStub"
code-creation,Stub,0x272317f07c60,1720,"RecordWriteStub"
code-creation,Stub,0x272317f08320,1714,"RecordWriteStub"
code-creation,Stub,0x272317f089e0,1774,"RecordWriteStub"
code-creation,Stub,0x272317f090e0,1750,"RecordWriteStub"
code-creation,Stub,0x272317f097c0,1720,"RecordWriteStub"
code-creation,Stub,0x272317f09e80,1732,"RecordWriteStub"
code-creation,Stub,0x272317f0a560,766,"RecordWriteStub"
code-creation,Stub,0x272317f0a860,1714,"RecordWriteStub"
code-creation,Stub,0x272317f0af20,1731,"RecordWriteStub"
code-creation,Stub,0x272317f0b600,1769,"RecordWriteStub"
code-creation,Stub,0x272317f0bd00,1750,"RecordWriteStub"
code-creation,Builtin,0x272317f0c3e0,112,"Illegal"
code-creation,Builtin,0x272317f0c460,112,"EmptyFunction"
code-creation,Builtin,0x272317f0c4e0,112,"InternalArrayCodeGeneric"
code-creation,Builtin,0x272317f0c560,112,"ArrayCodeGeneric"
code-creation,Builtin,0x272317f0c5e0,112,"ArrayPush"
code-creation,Builtin,0x272317f0c660,112,"ArrayPop"
code-creation,Builtin,0x272317f0c6e0,112,"ArrayShift"
code-creation,Builtin,0x272317f0c760,112,"ArrayUnshift"
code-creation,Builtin,0x272317f0c7e0,112,"ArraySlice"
code-creation,Builtin,0x272317f0c860,112,"ArraySplice"
code-creation,Builtin,0x272317f0c8e0,112,"ArrayConcat"
code-creation,Builtin,0x272317f0c960,117,"HandleApiCall"
code-creation,Builtin,0x272317f0c9e0,117,"HandleApiCallConstruct"
code-creation,Builtin,0x272317f0ca60,112,"HandleApiCallAsFunction"
code-creation,Builtin,0x272317f0cae0,112,"HandleApiCallAsConstructor"
code-creation,Builtin,0x272317f0cb60,112,"StrictModePoisonPill"
code-creation,Builtin,0x272317f0cbe0,260,"ArgumentsAdaptorTrampoline"
code-creation,Builtin,0x272317f0cd00,111,"InRecompileQueue"
code-creation,Builtin,0x272317f0cd80,609,"JSConstructStubCountdown"
code-creation,Builtin,0x272317f0d000,541,"JSConstructStubGeneric"
code-creation,Builtin,0x272317f0d220,518,"JSConstructStubApi"
code-creation,Builtin,0x272317f0d440,206,"JSEntryTrampoline"
code-creation,Stub,0x272317f0d520,196,"CallConstructStub"
code-creation,Builtin,0x272317f0d600,177,"JSConstructEntryTrampoline"
code-creation,Builtin,0x272317f0d6c0,157,"LazyCompile"
code-creation,Builtin,0x272317f0d760,157,"LazyRecompile"
code-creation,Builtin,0x272317f0d800,166,"ParallelRecompile"
code-creation,Builtin,0x272317f0d8c0,218,"NotifyDeoptimized"
code-creation,Builtin,0x272317f0d9a0,218,"NotifyLazyDeoptimized"
code-creation,Builtin,0x272317f0da80,186,"NotifyOSR"
code-creation,Builtin,0x272317f0db40,117,"LoadIC_Miss"
code-creation,Builtin,0x272317f0dbc0,117,"KeyedLoadIC_Miss"
code-creation,Builtin,0x272317f0dc40,117,"KeyedLoadIC_MissForceGeneric"
code-creation,Builtin,0x272317f0dcc0,117,"KeyedLoadIC_Slow"
code-creation,Builtin,0x272317f0dd40,118,"StoreIC_Miss"
code-creation,Builtin,0x272317f0ddc0,118,"KeyedStoreIC_Miss"
code-creation,Builtin,0x272317f0de40,118,"KeyedStoreIC_MissForceGeneric"
code-creation,Builtin,0x272317f0dec0,118,"KeyedStoreIC_Slow"
code-creation,Builtin,0x272317f0df40,117,"LoadIC_Initialize"
code-creation,Builtin,0x272317f0dfc0,117,"LoadIC_PreMonomorphic"
code-creation,Stub,0x272317f0e040,972,"StringDictionaryLookupStub"
code-creation,Builtin,0x272317f0e420,350,"LoadIC_Normal"
code-creation,Builtin,0x272317f0e580,128,"LoadIC_ArrayLength"
code-creation,Builtin,0x272317f0e600,131,"LoadIC_StringLength"
code-creation,Builtin,0x272317f0e6a0,178,"LoadIC_StringWrapperLength"
code-creation,Builtin,0x272317f0e760,168,"LoadIC_FunctionPrototype"
code-creation,Builtin,0x272317f0e820,312,"LoadIC_Megamorphic"
code-creation,Builtin,0x272317f0e960,134,"LoadIC_Getter_ForDeopt"
code-creation,Builtin,0x272317f0ea00,117,"KeyedLoadIC_Initialize"
code-creation,Builtin,0x272317f0ea80,117,"KeyedLoadIC_PreMonomorphic"
code-creation,Stub,0x272317f0eb00,972,"StringDictionaryLookupStub"
code-creation,Builtin,0x272317f0eee0,994,"KeyedLoadIC_Generic"
code-creation,Builtin,0x272317f0f2e0,715,"KeyedLoadIC_String"
code-creation,Builtin,0x272317f0f5c0,182,"KeyedLoadIC_IndexedInterceptor"
code-creation,Builtin,0x272317f0f680,304,"KeyedLoadIC_NonStrictArguments"
code-creation,Builtin,0x272317f0f7c0,118,"StoreIC_Initialize"
code-creation,Builtin,0x272317f0f840,206,"StoreIC_ArrayLength"
code-creation,Stub,0x272317f0f920,991,"StringDictionaryLookupStub"
code-creation,Builtin,0x272317f0fd00,421,"StoreIC_Normal"
code-creation,Builtin,0x272317f0fec0,330,"StoreIC_Megamorphic"
code-creation,Builtin,0x272317f10020,122,"StoreIC_GlobalProxy"
code-creation,Builtin,0x272317f100a0,118,"StoreIC_Initialize_Strict"
code-creation,Builtin,0x272317f10120,206,"StoreIC_ArrayLength_Strict"
code-creation,Builtin,0x272317f10200,421,"StoreIC_Normal_Strict"
code-creation,Builtin,0x272317f103c0,330,"StoreIC_Megamorphic_Strict"
code-creation,Builtin,0x272317f10520,122,"StoreIC_GlobalProxy_Strict"
code-creation,Builtin,0x272317f105a0,136,"StoreIC_Setter_ForDeopt"
code-creation,Builtin,0x272317f10640,118,"KeyedStoreIC_Initialize"
code-creation,Builtin,0x272317f106c0,2338,"KeyedStoreIC_Generic"
code-creation,Builtin,0x272317f11000,118,"KeyedStoreIC_Initialize_Strict"
code-creation,Builtin,0x272317f11080,2338,"KeyedStoreIC_Generic_Strict"
code-creation,Builtin,0x272317f119c0,398,"KeyedStoreIC_NonStrictArguments"
code-creation,Builtin,0x272317f11b60,459,"TransitionElementsSmiToDouble"
code-creation,Builtin,0x272317f11d40,452,"TransitionElementsDoubleToObject"
code-creation,Builtin,0x272317f11f20,483,"FunctionCall"
code-creation,Builtin,0x272317f12120,492,"FunctionApply"
code-creation,Stub,0x272317f12320,756,"RecordWriteStub"
code-creation,Builtin,0x272317f12620,798,"InternalArrayCode"
code-creation,Builtin,0x272317f12940,798,"ArrayCode"
code-creation,Builtin,0x272317f12c60,783,"ArrayConstructCode"
code-creation,Builtin,0x272317f12f80,483,"StringConstructCode"
code-creation,Stub,0x272317f13180,110,"StackCheckStub"
code-creation,Builtin,0x272317f13200,915,"OnStackReplacement"
code-creation,Builtin,0x272317f135a0,183,"Return_DebugBreak"
code-creation,Builtin,0x272317f13660,179,"CallFunctionStub_DebugBreak"
code-creation,Builtin,0x272317f13720,181,"CallFunctionStub_Recording_DebugBreak"
code-creation,Builtin,0x272317f137e0,215,"CallConstructStub_DebugBreak"
code-creation,Builtin,0x272317f138c0,217,"CallConstructStub_Recording_DebugBreak"
code-creation,Builtin,0x272317f139a0,181,"LoadIC_DebugBreak"
code-creation,Builtin,0x272317f13a60,181,"KeyedLoadIC_DebugBreak"
code-creation,Builtin,0x272317f13b20,183,"StoreIC_DebugBreak"
code-creation,Builtin,0x272317f13be0,183,"KeyedStoreIC_DebugBreak"
code-creation,Builtin,0x272317f13ca0,181,"Slot_DebugBreak"
code-creation,Builtin,0x272317f13d60,97,"PlainReturn_LiveEdit"
code-creation,Builtin,0x272317f13de0,137,"FrameDropper_LiveEdit"
code-creation,Stub,0x272317f06000,338,"JSEntryStub"
code-creation,Stub,0x272317f06160,338,"JSEntryStub"
code-creation,Stub,0x272317f062c0,698,"CEntryStub"
code-creation,Stub,0x272317f06580,1049,"CEntryStub"
code-creation,Stub,0x272317f069a0,162,"StoreBufferOverflowStub"
code-creation,Stub,0x272317f06a60,382,"StoreBufferOverflowStub"
code-creation,Stub,0x272317f06be0,1727,"RecordWriteStub"
code-creation,Stub,0x272317f072a0,1720,"RecordWriteStub"
code-creation,Stub,0x272317f07960,760,"RecordWriteStub"
code-creation,Stub,0x272317f07c60,1720,"RecordWriteStub"
code-creation,Stub,0x272317f08320,1714,"RecordWriteStub"
code-creation,Stub,0x272317f089e0,1774,"RecordWriteStub"
code-creation,Stub,0x272317f090e0,1750,"RecordWriteStub"
code-creation,Stub,0x272317f097c0,1720,"RecordWriteStub"
code-creation,Stub,0x272317f09e80,1732,"RecordWriteStub"
code-creation,Stub,0x272317f0a560,766,"RecordWriteStub"
code-creation,Stub,0x272317f0a860,1714,"RecordWriteStub"
code-creation,Stub,0x272317f0af20,1731,"RecordWriteStub"
code-creation,Stub,0x272317f0b600,1769,"RecordWriteStub"
code-creation,Stub,0x272317f0bd00,1750,"RecordWriteStub"
code-creation,Builtin,0x272317f0c3e0,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0c460,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0c4e0,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0c560,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0c5e0,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0c660,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0c6e0,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0c760,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0c7e0,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0c860,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0c8e0,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0c960,117,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0c9e0,117,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0ca60,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0cae0,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0cb60,112,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0cbe0,260,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0cd00,111,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0cd80,609,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0d000,541,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0d220,518,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0d440,206,"A builtin from the snapshot"
code-creation,Stub,0x272317f0d520,196,"CallConstructStub"
code-creation,Builtin,0x272317f0d600,177,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0d6c0,157,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0d760,157,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0d800,166,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0d8c0,218,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0d9a0,218,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0da80,186,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0db40,117,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0dbc0,117,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0dc40,117,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0dcc0,117,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0dd40,118,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0ddc0,118,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0de40,118,"A builtin from the snapshot"
code-creation,Builtin,0x272317f0dec0,118,"A builtin from the snapshot"
code-creation,LoadIC,0x272317f0df40,117,"A load IC from the snapshot"
code-creation,LoadIC,0x272317f0dfc0,117,"A load IC from the snapshot"
code-creation,Stub,0x272317f0e040,972,"StringDictionaryLookupStub"
code-creation,LoadIC,0x272317f0e420,350,"A load IC from the snapshot"
code-creation,LoadIC,0x272317f0e580,128,"A load IC from the snapshot"
code-creation,LoadIC,0x272317f0e600,131,"A load IC from the snapshot"
code-creation,LoadIC,0x272317f0e6a0,178,"A load IC from the snapshot"
code-creation,LoadIC,0x272317f0e760,168,"A load IC from the snapshot"
code-creation,LoadIC,0x272317f0e820,312,"A load IC from the snapshot"
code-creation,LoadIC,0x272317f0e960,134,"A load IC from the snapshot"
code-creation,KeyedLoadIC,0x272317f0ea00,117,"A keyed load IC from the snapshot"
code-creation,KeyedLoadIC,0x272317f0ea80,117,"A keyed load IC from the snapshot"
code-creation,Stub,0x272317f0eb00,972,"StringDictionaryLookupStub"
code-creation,KeyedLoadIC,0x272317f0eee0,994,"A keyed load IC from the snapshot"
code-creation,KeyedLoadIC,0x272317f0f2e0,715,"A keyed load IC from the snapshot"
code-creation,KeyedLoadIC,0x272317f0f5c0,182,"A keyed load IC from the snapshot"
code-creation,KeyedLoadIC,0x272317f0f680,304,"A keyed load IC from the snapshot"
code-creation,StoreIC,0x272317f0f7c0,118,"A store IC from the snapshot"
code-creation,StoreIC,0x272317f0f840,206,"A store IC from the snapshot"
code-creation,Stub,0x272317f0f920,991,"StringDictionaryLookupStub"
code-creation,StoreIC,0x272317f0fd00,421,"A store IC from the snapshot"
code-creation,StoreIC,0x272317f0fec0,330,"A store IC from the snapshot"
code-creation,StoreIC,0x272317f10020,122,"A store IC from the snapshot"
code-creation,StoreIC,0x272317f100a0,118,"A store IC from the snapshot"
code-creation,StoreIC,0x272317f10120,206,"A store IC from the snapshot"
code-creation,StoreIC,0x272317f10200,421,"A store IC from the snapshot"
code-creation,StoreIC,0x272317f103c0,330,"A store IC from the snapshot"
code-creation,StoreIC,0x272317f10520,122,"A store IC from the snapshot"
code-creation,StoreIC,0x272317f105a0,136,"A store IC from the snapshot"
code-creation,KeyedStoreIC,0x272317f10640,118,"A keyed store IC from the snapshot"
code-creation,KeyedStoreIC,0x272317f106c0,2338,"A keyed store IC from the snapshot"
code-creation,KeyedStoreIC,0x272317f11000,118,"A keyed store IC from the snapshot"
code-creation,KeyedStoreIC,0x272317f11080,2338,"A keyed store IC from the snapshot"
code-creation,KeyedStoreIC,0x272317f119c0,398,"A keyed store IC from the snapshot"
code-creation,Builtin,0x272317f11b60,459,"A builtin from the snapshot"
code-creation,Builtin,0x272317f11d40,452,"A builtin from the snapshot"
code-creation,Builtin,0x272317f11f20,483,"A builtin from the snapshot"
code-creation,Builtin,0x272317f12120,492,"A builtin from the snapshot"
code-creation,Stub,0x272317f12320,756,"RecordWriteStub"
code-creation,Builtin,0x272317f12620,798,"A builtin from the snapshot"
code-creation,Builtin,0x272317f12940,798,"A builtin from the snapshot"
code-creation,Builtin,0x272317f12c60,783,"A builtin from the snapshot"
code-creation,Builtin,0x272317f12f80,483,"A builtin from the snapshot"
code-creation,Stub,0x272317f13180,110,"StackCheckStub"
code-creation,Builtin,0x272317f13200,915,"A builtin from the snapshot"
code-creation,Builtin,0x272317f135a0,183,"A builtin from the snapshot"
code-creation,Builtin,0x272317f13660,179,"A builtin from the snapshot"
code-creation,Builtin,0x272317f13720,181,"A builtin from the snapshot"
code-creation,Builtin,0x272317f137e0,215,"A builtin from the snapshot"
code-creation,Builtin,0x272317f138c0,217,"A builtin from the snapshot"
code-creation,LoadIC,0x272317f139a0,181,"A load IC from the snapshot"
code-creation,KeyedLoadIC,0x272317f13a60,181,"A keyed load IC from the snapshot"
code-creation,StoreIC,0x272317f13b20,183,"A store IC from the snapshot"
code-creation,KeyedStoreIC,0x272317f13be0,183,"A keyed store IC from the snapshot"
code-creation,Builtin,0x272317f13ca0,181,"A builtin from the snapshot"
code-creation,Builtin,0x272317f13d60,97,"A builtin from the snapshot"
code-creation,Builtin,0x272317f13de0,137,"A builtin from the snapshot"
tick,0x1002ca210,0x7fff5fbfe5c8,0,0x0,2
code-creation,Stub,0x272317f13e80,255,"CallConstructStub_Recording"
code-creation,Stub,0x272317f13f80,110,"InterruptStub"
code-creation,Script,0x272317f14000,844,"native runtime.js",0x18b14101aa98,~
tick,0x100350160,0x7fff5fbfe7d8,0,0x0,2
code-creation,CallInitialize,0x272317f14360,241,"args_count: 1"
code-creation,CallInitialize,0x272317f14460,241,"args_count: 2"
code-creation,LazyCompile,0x272317f14560,2328,"EQUALS native runtime.js:54",0x18b141018aa0,~
code-creation,LazyCompile,0x272317f14e80,516,"STRICT_EQUALS native runtime.js:100",0x18b141018b40,~
code-creation,Stub,0x272317f150a0,269,"StringCompareStub"
code-creation,Stub,0x272317f151c0,170,"CompareICStub"
code-creation,LazyCompile,0x272317f15280,1300,"COMPARE native runtime.js:120",0x18b141018be0,~
code-creation,Stub,0x272317f157a0,1431,"StringAddStub"
code-creation,LazyCompile,0x272317f15d40,800,"ADD native runtime.js:163",0x18b141018c80,~
code-creation,LazyCompile,0x272317f16060,392,"SUB native runtime.js:214",0x18b141018e60,~
code-creation,LazyCompile,0x272317f16200,392,"MUL native runtime.js:222",0x18b141018f00,~
code-creation,LazyCompile,0x272317f163a0,392,"DIV native runtime.js:230",0x18b141018fa0,~
code-creation,LazyCompile,0x272317f16540,392,"MOD native runtime.js:238",0x18b141019040,~
code-creation,LazyCompile,0x272317f166e0,392,"BIT_OR native runtime.js:252",0x18b1410190e0,~
code-creation,LazyCompile,0x272317f16880,552,"BIT_AND native runtime.js:260",0x18b141019180,~
code-creation,LazyCompile,0x272317f16ac0,392,"BIT_XOR native runtime.js:282",0x18b141019220,~
code-creation,LazyCompile,0x272317f16c60,312,"UNARY_MINUS native runtime.js:290",0x18b1410192c0,~
code-creation,LazyCompile,0x272317f16da0,312,"BIT_NOT native runtime.js:297",0x18b141019360,~
code-creation,LazyCompile,0x272317f16ee0,392,"SHL native runtime.js:304",0x18b141019400,~
code-creation,LazyCompile,0x272317f17080,552,"SAR native runtime.js:312",0x18b1410194a0,~
code-creation,LazyCompile,0x272317f172c0,392,"SHR native runtime.js:334",0x18b141019540,~
code-creation,LazyCompile,0x272317f17460,284,"DELETE native runtime.js:348",0x18b1410195e0,~
code-creation,Stub,0x272317f17580,256,"FastCloneShallowArrayStub"
code-creation,LazyCompile,0x272317f17680,572,"IN native runtime.js:354",0x18b141019680,~
code-creation,Stub,0x272317f178c0,170,"CompareICStub"
code-creation,Stub,0x272317f17980,248,"FastCloneShallowArrayStub"
code-creation,Stub,0x272317f17a80,119,"ToBooleanStub_None"
code-creation,LazyCompile,0x272317f17b00,896,"INSTANCE_OF native runtime.js:367",0x18b141019720,~
code-creation,LazyCompile,0x272317f17e80,292,"FILTER_KEY native runtime.js:398",0x18b1410197c0,~
code-creation,Stub,0x272317f17fc0,499,"ArgumentsAccessStub_NewNonStrictFast"
code-creation,LazyCompile,0x272317f181c0,516,"CALL_NON_FUNCTION native runtime.js:405",0x18b141019860,~
code-creation,LazyCompile,0x272317f183e0,516,"CALL_NON_FUNCTION_AS_CONSTRUCTOR native runtime.js:414",0x18b141019900,~
tick,0x1002ceb02,0x7fff5fbfe140,0,0x0,2
code-creation,Stub,0x272317f18600,143,"BinaryOpStub_SUB_Alloc_Uninitialized"
code-creation,Stub,0x272317f186a0,214,"ArgumentsAccessStub_ReadElement"
code-creation,LazyCompile,0x272317f18780,344,"CALL_FUNCTION_PROXY native runtime.js:423",0x18b1410199a0,~
code-creation,LazyCompile,0x272317f188e0,316,"CALL_FUNCTION_PROXY_AS_CONSTRUCTOR native runtime.js:431",0x18b141019a40,~
code-creation,LazyCompile,0x272317f18a20,232,"TO_OBJECT native runtime.js:482",0x18b141019c20,~
code-creation,LazyCompile,0x272317f18b20,232,"TO_NUMBER native runtime.js:488",0x18b141019cc0,~
code-creation,LazyCompile,0x272317f18c20,232,"TO_STRING native runtime.js:494",0x18b141019d60,~
code-creation,Stub,0x272317f18d20,257,"NumberToStringStub"
code-creation,LazyCompile,0x272317f18e40,776,"STRING_ADD_LEFT native runtime.js:183",0x18b141018d20,~
code-creation,LazyCompile,0x272317f19160,788,"STRING_ADD_RIGHT native runtime.js:198",0x18b141018dc0,~
code-creation,Stub,0x272317f19480,170,"CompareICStub"
code-creation,Stub,0x272317f19540,170,"CompareICStub"
code-creation,Stub,0x272317f19600,170,"CompareICStub"
code-creation,Stub,0x272317f196c0,220,"FastCloneShallowArrayStub"
code-creation,LazyCompile,0x272317f197a0,1436,"APPLY_PREPARE native runtime.js:438",0x18b141019ae0,~
code-creation,LazyCompile,0x272317f19d40,284,"APPLY_OVERFLOW native runtime.js:476",0x18b141019b80,~
tick,0x10032df2d,0x7fff5fbfda80,0,0x0,2
tick,0x7fff91efac88,0x7fff5fbfed10,0,0x0,2
code-creation,CallInitialize,0x272317f19e60,240,"args_count: 0"
code-creation,CallInitialize,0x272317f19f60,243,"args_count: 12"
code-creation,CallInitialize,0x272317f1a060,252,"args_count: 38"
code-creation,CallInitialize,0x272317f1a160,243,"args_count: 3"
code-creation,Script,0x272317f1a260,2592,"native v8natives.js",0x18b141021228,~
code-creation,CallPreMonomorphic,0x272317f1ac80,240,"args_count: 0"
code-creation,CallInitialize,0x272317f1ad80,243,"args_count: 10"
code-creation,LazyCompile,0x272317f1ae80,672,"SetUpGlobal native v8natives.js:177",0x18b14101d5e0,~
code-creation,CallPreMonomorphic,0x272317f1b120,243,"args_count: 10"
code-creation,CallPreMonomorphic,0x272317f1b220,243,"args_count: 3"
code-creation,Stub,0x272317f1b320,143,"BinaryOpStub_SAR_Alloc_Uninitialized"
code-creation,Stub,0x272317f1b3c0,143,"BinaryOpStub_ADD_Alloc_Uninitialized"
code-creation,LazyCompile,0x272317f1b460,708,"InstallFunctions native v8natives.js:48",0x18b14101d180,~
code-creation,Stub,0x272317f1b740,201,"CompareICStub"
code-creation,Stub,0x272317f1b820,299,"BinaryOpStub_SAR_Alloc_SMI"
code-creation,Stub,0x272317f1b960,201,"CompareICStub"
code-creation,Stub,0x272317f1ba40,204,"KeyedLoadElementStub"
code-creation,KeyedLoadIC,0x272317f1bb20,130,""
code-creation,KeyedLoadIC,0x272317f1bb20,130,"args_count: 0"
code-creation,Stub,0x272317f1bbc0,299,"BinaryOpStub_ADD_Alloc_SMI"
code-creation,CallInitialize,0x272317f1bd00,243,"args_count: 1"
code-creation,LazyCompile,0x272317f1be00,400," native v8natives.js:205",0x18b1410203e0,~
code-creation,LazyCompile,0x272317f1be00,400," native v8natives.js:205",0x18b1410203e0,
code-creation,CallPreMonomorphic,0x272317f1bfa0,243,"args_count: 1"
code-creation,LazyCompile,0x272317f1c0a0,632,"ToBoolean native runtime.js:517",0x18b141019ea0,~
code-creation,StoreIC,0x272317f1c320,189,"constructor"
code-creation,StoreIC,0x272317f1c320,189,"constructor"
code-creation,CallPreMonomorphic,0x272317f1c3e0,243,"args_count: 12"
code-creation,CallPreMonomorphic,0x272317f1c4e0,252,"args_count: 38"
code-creation,Stub,0x272317f1c5e0,143,"BinaryOpStub_ADD_OverwriteLeft_Uninitialized"
code-creation,Stub,0x272317f1c680,139,"ToNumberStub"
code-creation,LazyCompile,0x272317f1c720,1040,"SetUpLockedPrototype native v8natives.js:67",0x18b14101d220,~
code-creation,Stub,0x272317f1cb40,162,"ToBooleanStub_SpecObject"
code-creation,Stub,0x272317f1cc00,299,"BinaryOpStub_ADD_OverwriteLeft_SMI"
code-creation,Stub,0x272317f1cd40,230,"FastCloneShallowObjectStub"
code-creation,LazyCompile,0x272317f1ce40,492," native v8natives.js:1271",0x18b141021060,~
code-creation,LazyCompile,0x272317f1ce40,492," native v8natives.js:1271",0x18b141021060,
code-creation,CallInitialize,0x272317f1d040,252,"args_count: 20"
code-creation,CallInitialize,0x272317f1d140,252,"args_count: 28"
code-creation,LazyCompile,0x272317f1d240,1140,"SetUpObject native v8natives.js:1286",0x18b14101f3e0,~
code-creation,CallPreMonomorphic,0x272317f1d6c0,252,"args_count: 20"
code-creation,CallPreMonomorphic,0x272317f1d7c0,252,"args_count: 28"
code-creation,CallInitialize,0x272317f1d8c0,243,"args_count: 4"
code-creation,LazyCompile,0x272317f1d9c0,364,"SetUpBoolean native v8natives.js:1351",0x18b14101f5c0,~
code-creation,CallPreMonomorphic,0x272317f1db40,243,"args_count: 4"
tick,0x100159dae,0x7fff5fbfeb70,0,0x7fff5fbfebb0,2,0x272317f1ab26
code-creation,LazyCompile,0x272317f1dc40,456," native v8natives.js:1366",0x18b141021100,~
code-creation,LazyCompile,0x272317f1dc40,456," native v8natives.js:1366",0x18b141021100,
code-creation,Stub,0x272317f1de20,184,"CompareICStub"
code-creation,LazyCompile,0x272317f1dee0,640,"ToNumber native runtime.js:527",0x18b141019f40,~
code-creation,LazyCompile,0x272317f1e160,1256,"SetUpNumber native v8natives.js:1489",0x18b14101fb60,~
code-creation,CallInitialize,0x272317f1e660,243,"args_count: 2"
code-creation,LazyCompile,0x272317f1e760,1216,"NewFunction native v8natives.js:1640",0x18b14101fde0,~
code-creation,LazyCompile,0x272317f1e760,1216,"NewFunction native v8natives.js:1640",0x18b14101fde0,
code-creation,LazyCompile,0x272317f1ec20,364,"SetUpFunction native v8natives.js:1668",0x18b14101fe80,~
tick,0x1003334c3,0x7fff5fbfd3a0,0,0x0,2
code-creation,Script,0x272317f1eda0,352,"native array.js",0x18b141025158,~
code-creation,Stub,0x272317f1ef00,216,"FastNewContextStub"
code-creation,Stub,0x272317f1efe0,390,"FastNewClosureStub"
code-creation,Stub,0x272317f1f180,317,"CallFunctionStub_Args2_Recording"
code-creation,Stub,0x272317f1f2c0,317,"CallFunctionStub_Args3_Recording"
code-creation,CallInitialize,0x272317f1f400,252,"args_count: 42"
code-creation,CallInitialize,0x272317f1f500,243,"args_count: 6"
code-creation,LazyCompile,0x272317f1f600,2784,"SetUpArray native array.js:1494",0x18b141024df0,~
tick,0x1002333b0,0x7fff5fbfefc0,0,0x10000000,0,0x272317f1f6b1,0x272317f1eea8
code-creation,CallPreMonomorphic,0x272317f200e0,243,"args_count: 2"
code-creation,LazyCompile,0x272317f201e0,360,"SetUpArray.b native array.js:1507",0x18b141025f10,~
code-creation,CallPreMonomorphic,0x272317f20360,241,"args_count: 1"
code-creation,LazyCompile,0x272317f20460,604,"hasOwnProperty native v8natives.js:249",0x18b14101d860,~
code-creation,Stub,0x272317f206c0,148,"ToBooleanStub_Bool"
code-creation,CallMiss,0x272317f20760,241,"args_count: 1"
code-creation,CallIC,0x272317f20860,187,"hasOwnProperty"
code-creation,KeyedLoadIC,0x272317f20920,160,"push"
code-creation,KeyedLoadIC,0x272317f20920,160,"push"
code-creation,KeyedLoadIC,0x272317f209c0,160,"concat"
code-creation,KeyedLoadIC,0x272317f209c0,160,"concat"
code-creation,CallPreMonomorphic,0x272317f20a60,252,"args_count: 42"
code-creation,CallPreMonomorphic,0x272317f20b60,243,"args_count: 6"
tick,0x10034c36c,0x7fff5fbfd5a0,0,0x0,2
code-creation,Stub,0x272317f20c60,220,"FastCloneShallowArrayStub"
code-creation,Script,0x272317f20d40,1012,"native string.js",0x18b141029210,~
code-creation,LazyCompile,0x272317f21140,528," native string.js:36",0x18b141028ef8,~
code-creation,LazyCompile,0x272317f21140,528," native string.js:36",0x18b141028ef8,
code-creation,CallInitialize,0x272317f21360,252,"args_count: 70"
code-creation,LazyCompile,0x272317f21460,1616,"SetUpString native string.js:940",0x18b141028b48,~
code-creation,CallPreMonomorphic,0x272317f21ac0,252,"args_count: 70"
tick,0x1001ac0d9,0x7fff5fbfec70,0,0x0,2
code-creation,Script,0x272317f21bc0,348,"native uri.js",0x18b14102b2f8,~
code-creation,LazyCompile,0x272317f21d20,476,"SetUpUri native uri.js:410",0x18b14102b0a0,~
code-creation,Script,0x272317f21f00,660,"native math.js",0x18b14102c8b8,~
code-creation,LazyCompile,0x272317f221a0,196,"MathConstructor native math.js:37",0x18b14102ba40,~
code-creation,CallInitialize,0x272317f22280,252,"args_count: 36"
code-creation,LazyCompile,0x272317f22380,1556,"SetUpMath native math.js:223",0x18b14102c620,~
code-creation,CallPreMonomorphic,0x272317f229a0,252,"args_count: 36"
tick,0x1002ae8da,0x7fff5fbfd8f0,0,0x0,2
code-creation,CallInitialize,0x272317f22aa0,243,"args_count: 7"
code-creation,CallInitialize,0x272317f22ba0,243,"args_count: 14"
code-creation,CallInitialize,0x272317f22ca0,243,"args_count: 5"
code-creation,CallInitialize,0x272317f22da0,252,"args_count: 32"
code-creation,Script,0x272317f22ea0,2656,"native messages.js",0x18b141032bc8,~
code-creation,LazyCompile,0x272317f23900,276," native messages.js:131",0x18b141032aa0,~
code-creation,LazyCompile,0x272317f23900,276," native messages.js:131",0x18b141032aa0,
code-creation,CallPreMonomorphic,0x272317f23a20,243,"args_count: 7"
code-creation,CallPreMonomorphic,0x272317f23b20,243,"args_count: 14"
code-creation,CallPreMonomorphic,0x272317f23c20,243,"args_count: 5"
code-creation,CallPreMonomorphic,0x272317f23d20,252,"args_count: 32"
tick,0x7fff8d9445be,0x7fff5fbfe818,0,0x100366be5,2,0x272317f23676
code-creation,Stub,0x272317f23e20,317,"CallFunctionStub_Args1_Recording"
code-creation,LazyCompile,0x272317f23f60,612,"SetUpError native messages.js:1128",0x18b141032440,~
code-creation,Stub,0x272317f241e0,1715,"RecordWriteStub"
code-creation,LazyCompile,0x272317f248a0,952,"SetUpError.a native messages.js:1131",0x18b141034138,~
code-creation,Stub,0x272317f24c60,1392,"StringAddStub"
code-creation,Stub,0x272317f251e0,201,"BinaryOpStub_ADD_Alloc_BothStrings"
code-creation,Stub,0x272317f252c0,211,"CompareICStub"
code-creation,LazyCompile,0x272317f253a0,196,"d native messages.js:1147",0x18b141034710,~
code-creation,LazyCompile,0x272317f25480,704," native messages.js:1157",0x18b1410347b0,~
code-creation,LazyCompile,0x272317f25480,704," native messages.js:1157",0x18b1410347b0,
code-creation,LoadIC,0x272317f25740,147,"global"
code-creation,LoadIC,0x272317f25740,147,"global"
code-creation,LoadIC,0x272317f257e0,147,"builtins"
code-creation,LoadIC,0x272317f257e0,147,"builtins"
code-creation,Stub,0x272317f25880,565,"CompareStub_EQ_STRICT"
code-creation,LazyCompile,0x272317f25ac0,608,"captureStackTrace native messages.js:1113",0x18b1410323a0,~
code-creation,Stub,0x272317f25d20,135,"ToBooleanStub_Undefined"
code-creation,LazyCompile,0x272317f25480,704," native messages.js:1157",0x18b1410347b0,
code-creation,LoadIC,0x272317f25dc0,147,"$Error"
code-creation,LoadIC,0x272317f25dc0,147,"$Error"
code-creation,LoadIC,0x272317f25e60,147,"kAddMessageAccessorsMarker"
code-creation,LoadIC,0x272317f25e60,147,"kAddMessageAccessorsMarker"
code-creation,CallMiss,0x272317f25f00,243,"args_count: 2"
code-creation,CallIC,0x272317f26000,190,"captureStackTrace"
code-creation,LoadIC,0x272317f260c0,194,""
code-creation,LoadIC,0x272317f260c0,194,""
code-creation,LazyCompile,0x272317f25480,704," native messages.js:1157",0x18b1410347b0,
code-creation,LazyCompile,0x272317f25480,704," native messages.js:1157",0x18b1410347b0,
code-creation,LazyCompile,0x272317f25480,704," native messages.js:1157",0x18b1410347b0,
code-creation,LazyCompile,0x272317f25480,704," native messages.js:1157",0x18b1410347b0,
code-creation,LazyCompile,0x272317f25480,704," native messages.js:1157",0x18b1410347b0,
code-creation,LazyCompile,0x272317f261a0,248,"MakeRangeError native messages.js:318",0x18b141030a00,~
code-creation,LazyCompile,0x272317f262a0,392,"MakeGenericError native messages.js:114",0x18b1410306e0,~
code-creation,Stub,0x272317f26440,230,"FastNewContextStub"
code-creation,LazyCompile,0x272317f26540,408,"DefineOneShotAccessor native messages.js:767",0x18b1410315e0,~
code-creation,LoadIC,0x272317f266e0,194,""
code-creation,LoadIC,0x272317f266e0,194,""
code-creation,StoreIC,0x272317f267c0,185,"type"
code-creation,StoreIC,0x272317f267c0,185,"type"
code-creation,StoreIC,0x272317f26880,185,"arguments"
code-creation,StoreIC,0x272317f26880,185,"arguments"
code-creation,Script,0x272317f26940,368,"native apinatives.js",0x18b1410352e0,~
tick,0x1002b8da2,0x7fff5fbfeb80,0,0x0,2
code-creation,Stub,0x272317f26ac0,246,"FastCloneShallowObjectStub"
code-creation,Script,0x272317f26bc0,1052,"native date.js",0x18b1410387a8,~
code-creation,StoreIC,0x272317f26fe0,185,"time"
code-creation,StoreIC,0x272317f26fe0,185,"time"
tick,0x1002cbcfe,0x7fff5fbfdf60,0,0x7fff5fbfe787,2,0x272317f26dc2
code-creation,CallInitialize,0x272317f270a0,238,"args_count: 0"
code-creation,Stub,0x272317f271a0,170,"CompareICStub"
code-creation,LazyCompile,0x272317f27260,2076," native date.js:145",0x18b141038690,~
code-creation,LazyCompile,0x272317f27260,2076," native date.js:145",0x18b141038690,
code-creation,CallInitialize,0x272317f27a80,252,"args_count: 92"
code-creation,LazyCompile,0x272317f27b80,2032,"SetUpDate native date.js:768",0x18b141038120,~
code-creation,CallPreMonomorphic,0x272317f28380,252,"args_count: 92"
code-creation,Script,0x272317f28480,344,"native json.js",0x18b14103a510,~
code-creation,LazyCompile,0x272317f285e0,348,"SetUpJSON native json.js:341",0x18b14103a358,~
tick,0x1002ce24a,0x7fff5fbfda40,0,0x0,2
code-creation,Script,0x272317f28740,564,"native regexp.js",0x18b14103b880,~
code-creation,CallInitialize,0x272317f28980,243,"args_count: 8"
code-creation,LazyCompile,0x272317f28a80,2324,"SetUpRegExp native regexp.js:400",0x18b14103b608,~
code-creation,LazyCompile,0x272317f293a0,456,"RegExpConstructor native regexp.js:86",0x18b14103ad48,~
code-creation,LazyCompile,0x272317f293a0,456,"RegExpConstructor native regexp.js:86",0x18b14103ad48,
code-creation,CallPreMonomorphic,0x272317f29580,243,"args_count: 8"
code-creation,Stub,0x272317f29680,1624,"StringAddStub"
code-creation,Stub,0x272317f29ce0,1621,"StringAddStub"
code-creation,Stub,0x272317f2a340,200,"BinaryOpStub_ADD_Alloc_Strings"
code-creation,CallPreMonomorphic,0x272317f2a420,241,"args_count: 2"
code-creation,LazyCompile,0x272317f2a520,624,"ToPrimitive native runtime.js:506",0x18b141019e00,~
code-creation,LazyCompile,0x272317f2a7a0,580,"ToString native runtime.js:550",0x18b14101a080,~
code-creation,LazyCompile,0x272317f2aa00,280,"RegExpMakeCaptureGetter native regexp.js:360",0x18b14103b568,~
code-creation,LoadIC,0x272317f2ab20,147,"$RegExp"
code-creation,LoadIC,0x272317f2ab20,147,"$RegExp"
code-creation,CallMiss,0x272317f2abc0,243,"args_count: 1"
code-creation,CallIC,0x272317f2acc0,190,"RegExpMakeCaptureGetter"
tick,0x7fff91edfd2b,0x7fff5fbfe3e0,0,0xffffffff,0,0x272317f2925c,0x272317f2891d
code-creation,LazyCompile,0x272317f2ad80,680,"Instantiate native apinatives.js:44",0x18b141035018,~
code-creation,Stub,0x272317f2b040,184,"CompareICStub"
code-creation,Stub,0x272317f2b100,143,"BinaryOpStub_BIT_AND_Alloc_Uninitialized"
code-creation,LazyCompile,0x272317f2b1a0,1232,"InstantiateFunction native apinatives.js:65",0x18b1410350b8,
code-creation,Stub,0x272317f2b680,446,"KeyedStoreElementStub"
code-creation,KeyedStoreIC,0x272317f2b840,130,""
code-creation,KeyedStoreIC,0x272317f2b840,130,"args_count: 0"
code-creation,Stub,0x272317f2b8e0,257,"KeyedStoreElementStub"
code-creation,KeyedStoreIC,0x272317f2ba00,130,""
code-creation,KeyedStoreIC,0x272317f2ba00,130,"args_count: 0"
code-creation,Stub,0x272317f2baa0,276,"BinaryOpStub_BIT_AND_Alloc_SMI"
code-creation,Stub,0x272317f2bbc0,138,"ToBooleanStub_Smi"
code-creation,LazyCompile,0x272317f2bc60,916,"ConfigureTemplateInstance native apinatives.js:105",0x18b141035158,
code-creation,Stub,0x272317f2c000,204,"KeyedLoadElementStub"
code-creation,KeyedLoadIC,0x272317f2c0e0,130,""
code-creation,KeyedLoadIC,0x272317f2c0e0,130,"args_count: 0"
code-creation,CallIC,0x272317f2c180,190,"InstantiateFunction"
code-creation,LoadIC,0x272317f2c240,147,"kApiFunctionCache"
code-creation,LoadIC,0x272317f2c240,147,"kApiFunctionCache"
code-creation,CallIC,0x272317f2c2e0,190,"ConfigureTemplateInstance"
code-creation,Stub,0x272317f2c3a0,173,"ToBooleanStub_UndefinedSpecObject"
code-creation,KeyedLoadIC,0x272317f2c460,130,""
code-creation,KeyedLoadIC,0x272317f2c460,130,"args_count: 0"
code-creation,CallIC,0x272317f2c500,190,"Instantiate"
tick,0x1001d1ce6,0x7fff5fbff1e8,0,0x14b988806481,0,0x272317f2b3ac,0x272317f2aeea
tick,0x1002cf972,0x7fff5fbfc4c0,0,0x0,2
code-creation,Stub,0x272317f2c5c0,250,"FastNewContextStub"
code-creation,Stub,0x272317f2c6c0,1757,"RecordWriteStub"
code-creation,Stub,0x272317f2cda0,311,"CallFunctionStub_Args0_Recording"
code-creation,Function,0x272317f2cee0,2388," node.js:27",0x18b141043a18,~
code-creation,Script,0x272317f2d840,244,"node.js",0x18b141043b10,~
code-creation,Stub,0x272317f2d940,177,"ToBooleanStub_UndefinedString"
tick,0x1002951e8,0x7fff5fbfe890,1,0x1000091d5,0,0x272317f2b3c3,0x272317f2aeea,0x272317f2bec4,0x272317f2afb5,0x272317f2b4bb,0x272317f2aeea,0x272317f2d4c9
code-creation,Stub,0x272317f2da00,238,"FastCloneShallowObjectStub"
code-creation,LazyCompile,0x272317f2db00,2760,"startup node.js:30",0x18b141042978,~
code-creation,LazyCompile,0x272317f2e5e0,628,"NativeModule.require node.js:843",0x18b1410434b8,~
code-creation,LazyCompile,0x272317f2e860,220,"NativeModule.getCached node.js:867",0x18b141043558,~
code-creation,LazyCompile,0x272317f2e940,232,"NativeModule.exists node.js:871",0x18b1410435f8,~
code-creation,LazyCompile,0x272317f2ea40,320,"NativeModule node.js:833",0x18b141042bf8,~
code-creation,CallPreMonomorphic,0x272317f2eb80,238,"args_count: 0"
code-creation,LazyCompile,0x272317f2ec80,236,"NativeModule.cache node.js:898",0x18b141043878,~
code-creation,Stub,0x272317f2ed80,317,"CallFunctionStub_Args4_Recording"
code-creation,LazyCompile,0x272317f2eec0,484,"NativeModule.compile node.js:888",0x18b1410437d8,~
code-creation,LazyCompile,0x272317f2f0c0,220,"NativeModule.getSource node.js:875",0x18b141043698,~
code-creation,LazyCompile,0x272317f2f1a0,272,"NativeModule.wrap node.js:879",0x18b141043738,~
code-creation,Stub,0x272317f2f2c0,201,"BinaryOpStub_ADD_OverwriteLeft_BothStrings"
tick,0x10032f2a4,0x7fff5fbfcc90,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f2dba9,0x272317f2d7e5
code-creation,Stub,0x272317f2f3a0,231,"FastNewContextStub"
code-creation,Function,0x272317f2f4a0,1176," events.js:1",0x18b141046c60,~
code-creation,Script,0x272317f2f940,244,"events.js",0x18b141046d58,~
code-creation,StoreIC,0x272317f2fa40,185,"loaded"
code-creation,StoreIC,0x272317f2fa40,185,"loaded"
code-creation,StoreIC,0x272317f2fb00,185,"value"
code-creation,StoreIC,0x272317f2fb00,185,"value"
code-creation,StoreIC,0x272317f2fbc0,185,"constructor"
code-creation,StoreIC,0x272317f2fbc0,185,"constructor"
code-creation,LazyCompile,0x272317f2fc80,576,"create native v8natives.js:1038",0x18b14101ec60,~
code-creation,LazyCompile,0x272317f2fec0,948,"defineProperties native v8natives.js:1102",0x18b14101ee40,~
code-creation,LazyCompile,0x272317f30280,692,"ToObject native runtime.js:567",0x18b14101a1c0,~
code-creation,LazyCompile,0x272317f30540,824,"GetOwnEnumerablePropertyNames native v8natives.js:1090",0x18b14101eda0,~
code-creation,LazyCompile,0x272317f30880,1956,"ToPropertyDescriptor native v8natives.js:420",0x18b14101e120,~
code-creation,LazyCompile,0x272317f31040,528,"PropertyDescriptor native v8natives.js:482",0x18b14101e260,~
code-creation,CallIC,0x272317f31260,189,"ToString"
code-creation,LazyCompile,0x272317f31320,248,"$Array.enumerable_ native v8natives.js:516",0x18b141020520,~
code-creation,StoreIC,0x272317f31420,185,"value_"
code-creation,StoreIC,0x272317f31420,185,"value_"
code-creation,StoreIC,0x272317f314e0,185,"hasValue_"
code-creation,StoreIC,0x272317f314e0,185,"hasValue_"
code-creation,LazyCompile,0x272317f315a0,276,"IsInconsistentDescriptor native v8natives.js:367",0x18b14101df40,~
code-creation,LazyCompile,0x272317f316c0,340,"IsAccessorDescriptor native v8natives.js:347",0x18b14101dd60,~
code-creation,LazyCompile,0x272317f31820,220,"$Array.set_ native v8natives.js:563",0x18b141020de0,~
code-creation,LazyCompile,0x272317f31900,220," native v8natives.js:573",0x18b141020fc0,~
code-creation,LazyCompile,0x272317f319e0,436,"DefineOwnProperty native v8natives.js:924",0x18b14101e940,~
tick,0x7fff9937a63d,0x7fff5fbfe690,0,0x7fff5fbfe700,2,0x272317f31b7e,0x272317f30169,0x272317f2fe6d,0x272317f2dc89,0x272317f2d7e5
code-creation,Stub,0x272317f31ba0,143,"BinaryOpStub_BIT_OR_Alloc_Uninitialized"
code-creation,LazyCompile,0x272317f31c40,5024,"DefineObjectProperty native v8natives.js:695",0x18b14101e800,~
code-creation,LazyCompile,0x272317f32fe0,648,"ConvertDescriptorArrayToDescriptor native v8natives.js:581",0x18b14101e300,~
code-creation,LazyCompile,0x272317f33280,220,"$Array.writable_ native v8natives.js:533",0x18b141020840,~
code-creation,Stub,0x272317f33360,284,"BinaryOpStub_BIT_OR_Alloc_SMI"
code-creation,LazyCompile,0x272317f33480,220,"$Array.get_ native v8natives.js:550",0x18b141020b60,~
code-creation,LazyCompile,0x272317f33560,340,"IsDataDescriptor native v8natives.js:354",0x18b14101de00,~
code-creation,LazyCompile,0x272317f336c0,220,"$Array.enumerable_ native v8natives.js:523",0x18b141020660,~
code-creation,LazyCompile,0x272317f337a0,220,"$Array.configurable_ native v8natives.js:543",0x18b141020a20,~
code-creation,LoadIC,0x272317f33880,134,"hasValue_"
code-creation,LoadIC,0x272317f33880,134,"hasValue_"
code-creation,LazyCompile,0x272317f33920,220,"$Array.enumerable_ native v8natives.js:520",0x18b1410205c0,~
code-creation,Stub,0x272317f33a00,364,"InstanceofStub"
code-creation,LazyCompile,0x272317f33b80,688,"EventEmitter events.js:26",0x18b141046600,~
code-creation,StoreIC,0x272317f33e40,189,"_events"
code-creation,StoreIC,0x272317f33e40,189,"_events"
code-creation,LazyCompile,0x272317f33f00,248,"startup.processFatal node.js:219",0x18b141042f18,~
code-creation,LazyCompile,0x272317f34000,636,"startup.globalVariables node.js:160",0x18b141042c98,~
code-creation,CallIC,0x272317f34280,157,"getCached"
code-creation,LoadIC,0x272317f34320,138,"_cache"
code-creation,LoadIC,0x272317f34320,138,"_cache"
code-creation,CallIC,0x272317f343c0,157,"exists"
code-creation,LoadIC,0x272317f34460,138,"_source"
code-creation,LoadIC,0x272317f34460,138,"_source"
code-creation,Stub,0x272317f34500,1168,"StringDictionaryLookupStub"
code-creation,CallIC,0x272317f349a0,559,"hasOwnProperty"
code-creation,LoadIC,0x272317f34be0,138,"moduleLoadList"
code-creation,LoadIC,0x272317f34be0,138,"moduleLoadList"
code-creation,Stub,0x272317f34c80,1708,"RecordWriteStub"
code-creation,Stub,0x272317f35340,754,"RecordWriteStub"
code-creation,CallIC,0x272317f35640,653,"push"
code-creation,Stub,0x272317f358e0,790,"RecordWriteStub"
code-creation,StoreIC,0x272317f35c00,328,"filename"
code-creation,StoreIC,0x272317f35c00,328,"filename"
code-creation,StoreIC,0x272317f35d60,328,"id"
code-creation,StoreIC,0x272317f35d60,328,"id"
code-creation,StoreIC,0x272317f35ec0,328,"exports"
code-creation,StoreIC,0x272317f35ec0,328,"exports"
code-creation,StoreIC,0x272317f36020,328,"loaded"
code-creation,StoreIC,0x272317f36020,328,"loaded"
code-creation,CallMiss,0x272317f36180,238,"args_count: 0"
code-creation,CallIC,0x272317f36280,185,"cache"
code-creation,LoadIC,0x272317f36340,134,"id"
code-creation,LoadIC,0x272317f36340,134,"id"
code-creation,CallIC,0x272317f363e0,185,"compile"
code-creation,CallIC,0x272317f364a0,157,"getSource"
code-creation,CallIC,0x272317f36540,157,"wrap"
code-creation,LoadIC,0x272317f365e0,138,"wrapper"
code-creation,LoadIC,0x272317f365e0,138,"wrapper"
code-creation,LoadIC,0x272317f36680,134,"filename"
code-creation,LoadIC,0x272317f36680,134,"filename"
tick,0x1002cbd09,0x7fff5fbfcf20,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f34176,0x272317f2dd05,0x272317f2d7e5
code-creation,Stub,0x272317f36720,307,"FastNewContextStub"
code-creation,Function,0x272317f36860,5600," buffer.js:1",0x18b14104a8c0,~
code-creation,Script,0x272317f37e40,244,"buffer.js",0x18b14104a9b8,~
tick,0x7fff91ed76d0,0x7fff5fbfed30,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f34176,0x272317f2dd05,0x272317f2d7e5
code-creation,LoadIC,0x272317f37f40,134,"exports"
code-creation,LoadIC,0x272317f37f40,134,"exports"
code-creation,LoadIC,0x272317f37fe0,140,"require"
code-creation,LoadIC,0x272317f37fe0,140,"require"
code-creation,CallIC,0x272317f38080,203,"Instantiate"
code-creation,Stub,0x272317f38160,272,"FastNewContextStub"
code-creation,Function,0x272317f38280,1892," assert.js:1",0x18b14104e1c0,~
code-creation,Script,0x272317f38a00,244,"assert.js",0x18b14104e2b8,~
tick,0x1002a2747,0x7fff5fbfe880,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f385c2,0x272317f2f038,0x272317f2e828,0x272317f36ccf,0x272317f2f038,0x272317f2e828,0x272317f34176,0x272317f2dd05,0x272317f2d7e5
code-creation,Stub,0x272317f38b00,349,"FastNewContextStub"
code-creation,Function,0x272317f38c60,3192," util.js:1",0x18b1410501f8,~
code-creation,Script,0x272317f398e0,244,"util.js",0x18b1410502f0,~
code-creation,LazyCompile,0x272317f399e0,2144,"DoConstructRegExp native regexp.js:35",0x18b14103aca8,~
code-creation,LazyCompile,0x272317f3a240,1704,"charAt native string.js:66",0x18b141027108,~
code-creation,Stub,0x272317f3a900,211,"CompareICStub"
tick,0x1001d3f30,0x7fff5fbfec40,0,0x80,0,0x272317f3a1f2,0x272317f29477,0x272317f392b9,0x272317f2f038,0x272317f2e828,0x272317f385c2,0x272317f2f038,0x272317f2e828,0x272317f36ccf,0x272317f2f038,0x272317f2e828,0x272317f34176,0x272317f2dd05,0x272317f2d7e5
code-creation,LazyCompile,0x272317f3a9e0,488,"exports.deprecate util.js:60",0x18b14104f9c8,~
code-creation,LoadIC,0x272317f3abe0,157,"process"
code-creation,LoadIC,0x272317f3abe0,157,"process"
code-creation,LoadIC,0x272317f3ac80,220,""
code-creation,LoadIC,0x272317f3ac80,220,""
code-creation,StoreIC,0x272317f3ad60,185,"exports"
code-creation,StoreIC,0x272317f3ad60,185,"exports"
code-creation,Stub,0x272317f3ae20,262,"FastCloneShallowObjectStub"
code-creation,LazyCompile,0x272317f3af40,404,"exports.inherits util.js:553",0x18b14104fec8,~
code-creation,StoreIC,0x272317f3b0e0,185,"value"
code-creation,StoreIC,0x272317f3b0e0,185,"value"
code-creation,LoadIC,0x272317f3b1a0,147,"$Object"
code-creation,LoadIC,0x272317f3b1a0,147,"$Object"
code-creation,CallIC,0x272317f3b240,190,"ObjectDefineProperties"
code-creation,CallIC,0x272317f3b300,190,"ToObject"
code-creation,CallIC,0x272317f3b3c0,190,"GetOwnEnumerablePropertyNames"
code-creation,LoadIC,0x272317f3b480,147,"InternalArray"
code-creation,LoadIC,0x272317f3b480,147,"InternalArray"
code-creation,CallIC,0x272317f3b520,655,"push"
code-creation,KeyedLoadIC,0x272317f3b7c0,154,"constructor"
code-creation,KeyedLoadIC,0x272317f3b7c0,154,"constructor"
code-creation,CallIC,0x272317f3b860,190,"ToPropertyDescriptor"
code-creation,LoadIC,0x272317f3b920,147,"PropertyDescriptor"
code-creation,LoadIC,0x272317f3b920,147,"PropertyDescriptor"
code-creation,StoreIC,0x272317f3b9c0,298,"value_"
code-creation,StoreIC,0x272317f3b9c0,298,"value_"
code-creation,StoreIC,0x272317f3bb00,298,"hasValue_"
code-creation,StoreIC,0x272317f3bb00,298,"hasValue_"
code-creation,StoreIC,0x272317f3bc40,298,"writable_"
code-creation,StoreIC,0x272317f3bc40,298,"writable_"
code-creation,StoreIC,0x272317f3bd80,298,"hasWritable_"
code-creation,StoreIC,0x272317f3bd80,298,"hasWritable_"
code-creation,StoreIC,0x272317f3bec0,298,"enumerable_"
code-creation,StoreIC,0x272317f3bec0,298,"enumerable_"
code-creation,StoreIC,0x272317f3c000,298,"hasEnumerable_"
code-creation,StoreIC,0x272317f3c000,298,"hasEnumerable_"
code-creation,StoreIC,0x272317f3c140,298,"configurable_"
code-creation,StoreIC,0x272317f3c140,298,"configurable_"
code-creation,StoreIC,0x272317f3c280,298,"hasConfigurable_"
code-creation,StoreIC,0x272317f3c280,298,"hasConfigurable_"
code-creation,StoreIC,0x272317f3c3c0,298,"get_"
code-creation,StoreIC,0x272317f3c3c0,298,"get_"
code-creation,StoreIC,0x272317f3c500,298,"hasGetter_"
code-creation,StoreIC,0x272317f3c500,298,"hasGetter_"
code-creation,StoreIC,0x272317f3c640,298,"set_"
code-creation,StoreIC,0x272317f3c640,298,"set_"
code-creation,StoreIC,0x272317f3c780,298,"hasSetter_"
code-creation,StoreIC,0x272317f3c780,298,"hasSetter_"
code-creation,LazyCompile,0x272317f3c8c0,248,"$Array.writable_ native v8natives.js:526",0x18b141020700,~
code-creation,StoreIC,0x272317f3c9c0,185,"enumerable_"
code-creation,StoreIC,0x272317f3c9c0,185,"enumerable_"
code-creation,StoreIC,0x272317f3ca80,185,"hasEnumerable_"
code-creation,StoreIC,0x272317f3ca80,185,"hasEnumerable_"
code-creation,LazyCompile,0x272317f3cb40,248,"$Array.get_ native v8natives.js:546",0x18b141020ac0,~
code-creation,StoreIC,0x272317f3cc40,185,"configurable_"
code-creation,StoreIC,0x272317f3cc40,185,"configurable_"
code-creation,StoreIC,0x272317f3cd00,185,"hasConfigurable_"
code-creation,StoreIC,0x272317f3cd00,185,"hasConfigurable_"
code-creation,LoadIC,0x272317f3cdc0,134,"value"
code-creation,LoadIC,0x272317f3cdc0,134,"value"
code-creation,CallIC,0x272317f3ce60,236,"setValue"
code-creation,LazyCompile,0x272317f3cf60,248,"$Array.configurable_ native v8natives.js:536",0x18b1410208e0,~
code-creation,StoreIC,0x272317f3d060,185,"writable_"
code-creation,StoreIC,0x272317f3d060,185,"writable_"
code-creation,StoreIC,0x272317f3d120,185,"hasWritable_"
code-creation,StoreIC,0x272317f3d120,185,"hasWritable_"
code-creation,CallIC,0x272317f3d1e0,190,"IsInconsistentDescriptor"
code-creation,CallIC,0x272317f3d2a0,190,"IsAccessorDescriptor"
code-creation,CallIC,0x272317f3d360,233,"hasGetter"
code-creation,LoadIC,0x272317f3d460,134,"hasGetter_"
code-creation,LoadIC,0x272317f3d460,134,"hasGetter_"
code-creation,CallIC,0x272317f3d500,233,"hasSetter"
code-creation,LoadIC,0x272317f3d600,134,"hasSetter_"
code-creation,LoadIC,0x272317f3d600,134,"hasSetter_"
code-creation,CallMiss,0x272317f3d6a0,243,"args_count: 4"
code-creation,CallIC,0x272317f3d7a0,190,"DefineOwnProperty"
code-creation,CallIC,0x272317f3d860,190,"DefineObjectProperty"
code-creation,CallIC,0x272317f3d920,190,"ToString"
code-creation,CallIC,0x272317f3d9e0,190,"ConvertDescriptorArrayToDescriptor"
code-creation,CallIC,0x272317f3daa0,233,"hasEnumerable"
code-creation,LoadIC,0x272317f3dba0,134,"hasEnumerable_"
code-creation,LoadIC,0x272317f3dba0,134,"hasEnumerable_"
code-creation,LazyCompile,0x272317f3dc40,220,"$Array.writable_ native v8natives.js:530",0x18b1410207a0,~
code-creation,CallIC,0x272317f3dd20,230,"hasConfigurable"
code-creation,LoadIC,0x272317f3de20,134,"hasConfigurable_"
code-creation,LoadIC,0x272317f3de20,134,"hasConfigurable_"
code-creation,LazyCompile,0x272317f3dec0,220,"$Array.get_ native v8natives.js:553",0x18b141020c00,~
tick,0x7fff94437e9a,0x7fff5fbfece8,0,0x7fff91edea10,2,0x272317f32bb6,0x272317f31b7e,0x272317f30169,0x272317f2fe6d,0x272317f3b07a,0x272317f38708,0x272317f2f038,0x272317f2e828,0x272317f36ccf,0x272317f2f038,0x272317f2e828,0x272317f34176,0x272317f2dd05,0x272317f2d7e5
code-creation,CallIC,0x272317f3dfa0,190,"IsDataDescriptor"
code-creation,CallIC,0x272317f3e060,233,"hasValue"
code-creation,CallIC,0x272317f3e160,233,"hasWritable"
code-creation,LoadIC,0x272317f3e260,134,"hasWritable_"
code-creation,LoadIC,0x272317f3e260,134,"hasWritable_"
code-creation,LazyCompile,0x272317f3e300,220,"$Array.configurable_ native v8natives.js:540",0x18b141020980,~
code-creation,CallIC,0x272317f3e3e0,230,"getValue"
code-creation,LoadIC,0x272317f3e4e0,134,"value_"
code-creation,LoadIC,0x272317f3e4e0,134,"value_"
code-creation,StoreIC,0x272317f3e580,189,"domain"
code-creation,StoreIC,0x272317f3e580,189,"domain"
code-creation,LazyCompile,0x272317f3e640,668,"startup.globalTimeouts node.js:171",0x18b141042d38,~
code-creation,LazyCompile,0x272317f3e8e0,252,"startup.globalConsole node.js:203",0x18b141042dd8,~
code-creation,LazyCompile,0x272317f3e9e0,816,"__defineGetter__ native v8natives.js:281",0x18b14101da40,~
code-creation,LazyCompile,0x272317f3ed20,248,"$Array.set_ native v8natives.js:556",0x18b141020ca0,~
code-creation,StoreIC,0x272317f3ee20,185,"get_"
code-creation,StoreIC,0x272317f3ee20,185,"get_"
code-creation,StoreIC,0x272317f3eee0,185,"hasGetter_"
code-creation,StoreIC,0x272317f3eee0,185,"hasGetter_"
code-creation,CallIC,0x272317f3efa0,230,"isEnumerable"
code-creation,LoadIC,0x272317f3f0a0,134,"enumerable_"
code-creation,LoadIC,0x272317f3f0a0,134,"enumerable_"
code-creation,CallIC,0x272317f3f140,233,"isConfigurable"
code-creation,LoadIC,0x272317f3f240,134,"configurable_"
code-creation,LoadIC,0x272317f3f240,134,"configurable_"
code-creation,LazyCompile,0x272317f3f2e0,360,"IsGenericDescriptor native v8natives.js:361",0x18b14101dea0,~
code-creation,LazyCompile,0x272317f3f460,220,"$Array.set_ native v8natives.js:560",0x18b141020d40,~
code-creation,LazyCompile,0x272317f3f540,308,"startup.processAssert node.js:294",0x18b141042fb8,~
code-creation,LazyCompile,0x272317f3f680,716,"startup.processConfig node.js:303",0x18b141043058,~
code-creation,Stub,0x272317f3f960,143,"BinaryOpStub_SHR_Alloc_Uninitialized"
code-creation,LazyCompile,0x272317f3fa00,1196,"split native string.js:554",0x18b141027a68,~
code-creation,Stub,0x272317f3fec0,240,"CompareICStub"
code-creation,LazyCompile,0x272317f3ffc0,1452,"join native array.js:410",0x18b1410240d0,~
code-creation,Stub,0x272317f40580,313,"BinaryOpStub_SHR_Alloc_SMI"
tick,0x1003cb1f1,0x7fff5fbfeba0,0,0x7fff5fbfec00,2,0x272317f40556,0x272317f3f7ae,0x272317f2dd6d,0x272317f2d7e5
code-creation,LazyCompile,0x272317f406c0,4088,"Join native array.js:119",0x18b141023b30,
code-creation,LazyCompile,0x272317f416c0,456,"UseSparseVariant native array.js:111",0x18b141023a90,~
code-creation,Stub,0x272317f418a0,201,"CompareICStub"
code-creation,KeyedLoadIC,0x272317f41980,130,""
code-creation,KeyedLoadIC,0x272317f41980,130,"args_count: 0"
code-creation,Stub,0x272317f41a20,299,"BinaryOpStub_SUB_Alloc_SMI"
code-creation,LazyCompile,0x272317f41b60,328,"ToUint32 native runtime.js:586",0x18b14101a300,~
code-creation,CallMiss,0x272317f41cc0,243,"args_count: 3"
code-creation,CallIC,0x272317f41dc0,190,"DoConstructRegExp"
code-creation,LoadIC,0x272317f41e80,147,"StringCharAt"
code-creation,LoadIC,0x272317f41e80,147,"StringCharAt"
code-creation,LazyCompile,0x272317f41f20,2468,"replace native string.js:221",0x18b141027608,~
code-creation,LazyCompile,0x272317f428e0,572,"parse native json.js:55",0x18b141039e58,~
code-creation,LazyCompile,0x272317f42b20,1512,"Revive native json.js:30",0x18b141039db8,~
code-creation,KeyedLoadIC,0x272317f43120,158,"target_defaults"
code-creation,KeyedLoadIC,0x272317f43120,158,"target_defaults"
code-creation,LoadIC,0x272317f431c0,147,"ObjectHasOwnProperty"
code-creation,LoadIC,0x272317f431c0,147,"ObjectHasOwnProperty"
code-creation,CallIC,0x272317f43260,190,"Revive"
code-creation,KeyedLoadIC,0x272317f43320,158,"cflags"
code-creation,KeyedLoadIC,0x272317f43320,158,"cflags"
code-creation,LazyCompile,0x272317f433c0,312," node.js:311",0x18b1410528b8,~
code-creation,KeyedStoreIC,0x272317f43500,208,"cflags"
code-creation,KeyedStoreIC,0x272317f43500,208,"cflags"
code-creation,KeyedStoreIC,0x272317f435e0,208,"default_configuration"
code-creation,KeyedStoreIC,0x272317f435e0,208,"default_configuration"
code-creation,Stub,0x272317f436c0,261,"FastNewContextStub"
tick,0x7fff9937a493,0x7fff5fbfebf0,0,0x0,2,0x272317f2dd87,0x272317f2d7e5
code-creation,LazyCompile,0x272317f437e0,1232,"startup.processNextTick node.js:318",0x18b1410430f8,~
code-creation,LazyCompile,0x272317f43cc0,456,"startup.processStdio node.js:608",0x18b141043198,~
code-creation,CallIC,0x272317f43ea0,233,"setGet"
code-creation,CallIC,0x272317f43fa0,236,"setEnumerable"
code-creation,CallIC,0x272317f440a0,236,"setConfigurable"
code-creation,CallIC,0x272317f441a0,190,"IsGenericDescriptor"
code-creation,CallIC,0x272317f44260,230,"getGet"
code-creation,LoadIC,0x272317f44360,134,"get_"
code-creation,LoadIC,0x272317f44360,134,"get_"
code-creation,LazyCompile,0x272317f44400,316,"startup.processKillAndExit node.js:703",0x18b141043238,~
code-creation,LazyCompile,0x272317f44540,656,"startup.processSignalHandlers node.js:736",0x18b1410432d8,~
code-creation,LazyCompile,0x272317f447e0,632,"startup.processChannel node.js:788",0x18b141043378,~
code-creation,LazyCompile,0x272317f44a60,620,"startup.resolveArgv0 node.js:810",0x18b141043418,~
code-creation,Stub,0x272317f44ce0,370,"CompareICStub"
code-creation,LazyCompile,0x272317f44e60,908,"indexOf native string.js:118",0x18b1410272e8,~
code-creation,Stub,0x272317f45200,370,"CompareICStub"
code-creation,Stub,0x272317f45380,166,"ToBooleanStub_String"
code-creation,LoadIC,0x272317f45440,138,"moduleLoadList"
code-creation,LoadIC,0x272317f45440,138,"moduleLoadList"
tick,0x10018a441,0x7fff5fbfee70,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f2dfe4,0x272317f2d7e5
code-creation,Function,0x272317f454e0,2824," path.js:1",0x18b141054f98,~
code-creation,Script,0x272317f46000,244,"path.js",0x18b141055090,~
code-creation,LoadIC,0x272317f46100,157,"process"
code-creation,LoadIC,0x272317f46100,157,"process"
code-creation,LoadIC,0x272317f461a0,220,""
code-creation,LoadIC,0x272317f461a0,220,""
code-creation,LazyCompile,0x272317f46280,1220,"exports.resolve path.js:304",0x18b141054790,~
code-creation,KeyedLoadIC,0x272317f46760,130,""
code-creation,KeyedLoadIC,0x272317f46760,130,"args_count: 0"
code-creation,CallIC,0x272317f46800,781,"charAt"
code-creation,LazyCompile,0x272317f46b20,1976,"filter native array.js:1036",0x18b1410247b0,~
tick,0x100386490,0x7fff5fbfed90,0,0x103023668,2,0x272317f4715f,0x272317f46631,0x272317f2e03a,0x272317f2d7e5
code-creation,LazyCompile,0x272317f472e0,216," path.js:326",0x18b1410553f0,~
code-creation,LazyCompile,0x272317f473c0,928,"normalizeArray path.js:31",0x18b141054290,~
code-creation,LoadIC,0x272317f47760,147,"ConvertToString"
code-creation,LoadIC,0x272317f47760,147,"ConvertToString"
code-creation,CallIC,0x272317f47800,190,"Join"
code-creation,LoadIC,0x272317f478c0,147,"visited_arrays"
code-creation,LoadIC,0x272317f478c0,147,"visited_arrays"
code-creation,CallIC,0x272317f47960,190,"UseSparseVariant"
code-creation,KeyedStoreIC,0x272317f47a20,130,""
code-creation,KeyedStoreIC,0x272317f47a20,130,"args_count: 0"
code-creation,Function,0x272317f47ac0,3632," module.js:1",0x18b141056b70,~
code-creation,Script,0x272317f48900,244,"module.js",0x18b141056c68,~
code-creation,KeyedLoadIC,0x272317f48a00,158,"assert"
tick,0x7fff94437e9a,0x7fff5fbfef08,0,0x7fff91edea10,0,0x272317f2e8f2,0x272317f2e6e0,0x272317f47ebc,0x272317f2f038,0x272317f2e828,0x272317f2e119,0x272317f2d7e5
code-creation,KeyedLoadIC,0x272317f48a00,158,"assert"
code-creation,Stub,0x272317f48aa0,466,"CompareStub_GT"
code-creation,Stub,0x272317f48c80,286,"CompareICStub"
code-creation,KeyedLoadIC,0x272317f48da0,158,"path"
code-creation,KeyedLoadIC,0x272317f48da0,158,"path"
code-creation,CallInitialize,0x272317f48e40,241,"args_count: 5"
code-creation,LazyCompile,0x272317f48f40,1072,"Module._initPaths module.js:502",0x18b141056870,~
code-creation,CallPreMonomorphic,0x272317f49380,241,"args_count: 5"
code-creation,LoadIC,0x272317f49480,134,"length"
code-creation,LoadIC,0x272317f49480,134,"length"
code-creation,CallIC,0x272317f49520,218,"split"
code-creation,CallIC,0x272317f49600,198,"filter"
code-creation,CallIC,0x272317f496e0,190,"ToUint32"
code-creation,LoadIC,0x272317f497a0,147,"$Array"
code-creation,LoadIC,0x272317f497a0,147,"$Array"
code-creation,CallMiss,0x272317f49840,241,"args_count: 2"
code-creation,CallIC,0x272317f49940,190,"splice"
code-creation,CallIC,0x272317f49a00,185,"join"
code-creation,StoreIC,0x272317f49ac0,189,"globalPaths"
code-creation,StoreIC,0x272317f49ac0,189,"globalPaths"
code-creation,CallInitialize,0x272317f49b80,241,"args_count: 3"
code-creation,LazyCompile,0x272317f49c80,316,"Module.runMain module.js:495",0x18b1410567d0,~
code-creation,CallPreMonomorphic,0x272317f49dc0,241,"args_count: 3"
code-creation,LazyCompile,0x272317f49ec0,1296,"Module._load module.js:275",0x18b141056370,
code-creation,Stub,0x272317f4a3e0,142,"ToBooleanStub_Null"
code-creation,LazyCompile,0x272317f4a480,688,"Module._resolveFilename module.js:323",0x18b141056410,~
code-creation,LazyCompile,0x272317f4a740,2196,"Module._resolveLookupPaths module.js:231",0x18b1410562d0,~
code-creation,Stub,0x272317f4afe0,755,"SubStringStub"
code-creation,LazyCompile,0x272317f4b2e0,1636,"substring native string.js:658",0x18b141027ba8,~
tick,0x1002c9521,0x7fff5fbfe4f0,0,0x7fff5fbff098,2,0x272317f4a5e6,0x272317f49fd6,0x272317f49d4b,0x272317f2e259,0x272317f2d7e5
code-creation,LazyCompile,0x272317f4b960,2328,"stringify native json.js:308",0x18b14103a2b8,~
code-creation,LazyCompile,0x272317f4c280,2084,"BasicJSONSerialize native json.js:274",0x18b14103a218,~
code-creation,CallIC,0x272317f4cac0,190,"BasicJSONSerialize"
code-creation,LazyCompile,0x272317f4cb80,2736,"BasicSerializeArray native json.js:181",0x18b14103a0d8,~
code-creation,LazyCompile,0x272317f4d640,184,"Module._debug module.js:65",0x18b141056050,~
code-creation,LazyCompile,0x272317f4d700,1316,"Module._findPath module.js:160",0x18b141056190,~
code-creation,LazyCompile,0x272317f4dc40,524,"keys native v8natives.js:333",0x18b14101dcc0,~
code-creation,LazyCompile,0x272317f4de60,1148,"slice native string.js:510",0x18b1410279c8,~
code-creation,Stub,0x272317f4e2e0,201,"CompareICStub"
code-creation,LazyCompile,0x272317f4e3c0,820,"SubString native string.js:205",0x18b141027568,~
code-creation,StoreIC,0x272317f4e700,185,"request"
code-creation,StoreIC,0x272317f4e700,185,"request"
code-creation,StoreIC,0x272317f4e7c0,185,"paths"
code-creation,StoreIC,0x272317f4e7c0,185,"paths"
code-creation,LoadIC,0x272317f4e880,164,""
code-creation,LoadIC,0x272317f4e880,164,""
code-creation,LazyCompile,0x272317f4e940,1036,"BasicSerializeObject native json.js:244",0x18b14103a178,~
code-creation,KeyedLoadIC,0x272317f4ed60,154,"paths"
code-creation,KeyedLoadIC,0x272317f4ed60,154,"paths"
code-creation,LoadIC,0x272317f4ee00,192,""
code-creation,LoadIC,0x272317f4ee00,192,""
code-creation,CallIC,0x272317f4eec0,190,"BasicSerializeArray"
code-creation,LazyCompile,0x272317f4ef80,400,"tryFile module.js:138",0x18b141055e70,~
tick,0x10032f374,0x7fff5fbfd8d0,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f4f018,0x272317f4da04,0x272317f4a66d,0x272317f49fd6,0x272317f49d4b,0x272317f2e259,0x272317f2d7e5
tick,0x1001be181,0x7fff5fbfd6d0,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f4f018,0x272317f4da04,0x272317f4a66d,0x272317f49fd6,0x272317f49d4b,0x272317f2e259,0x272317f2d7e5
code-creation,Stub,0x272317f4f120,475,"FastNewContextStub"
tick,0x1001baaa8,0x7fff5fbfe250,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f4f018,0x272317f4da04,0x272317f4a66d,0x272317f49fd6,0x272317f49d4b,0x272317f2e259,0x272317f2d7e5
code-creation,Function,0x272317f4f300,12908," fs.js:1",0x18b14105cb18,~
code-creation,Script,0x272317f52580,244,"fs.js",0x18b14105cc10,~
code-creation,Function,0x272317f52680,900," stream.js:1",0x18b14107fa28,~
code-creation,Script,0x272317f52a20,244,"stream.js",0x18b14107fb20,~
code-creation,LoadIC,0x272317f52b20,157,"Object"
code-creation,LoadIC,0x272317f52b20,157,"Object"
code-creation,CallIC,0x272317f52bc0,157,"create"
code-creation,LoadIC,0x272317f52c60,134,"enumerable"
code-creation,LoadIC,0x272317f52c60,134,"enumerable"
code-creation,CallIC,0x272317f52d00,190,"ToBoolean"
code-creation,LoadIC,0x272317f52dc0,134,"configurable"
code-creation,LoadIC,0x272317f52dc0,134,"configurable"
code-creation,LoadIC,0x272317f52e60,134,"writable"
code-creation,LoadIC,0x272317f52e60,134,"writable"
code-creation,CallIC,0x272317f52f00,236,"setWritable"
code-creation,CallIC,0x272317f53000,233,"isWritable"
code-creation,LoadIC,0x272317f53100,134,"writable_"
code-creation,LoadIC,0x272317f53100,134,"writable_"
tick,0x7fff9447d0a9,0x7fff5fbfe2a0,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f52829,0x272317f2f038,0x272317f2e828,0x272317f4fa43,0x272317f2f038,0x272317f2e828,0x272317f4f018,0x272317f4da04,0x272317f4a66d,0x272317f49fd6,0x272317f49d4b,0x272317f2e259,0x272317f2d7e5
code-creation,Function,0x272317f531a0,2888," _stream_readable.js:1",0x18b1410811e0,~
code-creation,Script,0x272317f53d00,244,"_stream_readable.js",0x18b1410812d8,~
tick,0x10032fe03,0x7fff5fbfce50,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f5286e,0x272317f2f038,0x272317f2e828,0x272317f4fa43,0x272317f2f038,0x272317f2e828,0x272317f4f018,0x272317f4da04,0x272317f4a66d,0x272317f49fd6,0x272317f49d4b,0x272317f2e259,0x272317f2d7e5
code-creation,Stub,0x272317f53e00,314,"FastNewContextStub"
code-creation,Function,0x272317f53f40,1896," _stream_writable.js:1",0x18b1410826c0,~
code-creation,Script,0x272317f546c0,244,"_stream_writable.js",0x18b1410827b8,~
code-creation,Function,0x272317f547c0,740," _stream_duplex.js:1",0x18b141082d18,~
code-creation,Script,0x272317f54ac0,244,"_stream_duplex.js",0x18b141082e10,~
code-creation,StoreIC,0x272317f54bc0,256,"super_"
code-creation,StoreIC,0x272317f54bc0,256,"super_"
code-creation,LazyCompile,0x272317f54cc0,1692,"forEach native array.js:1087",0x18b141024850,~
code-creation,LazyCompile,0x272317f55360,296,"readable _stream_duplex.js:34",0x18b141082b78,~
code-creation,KeyedLoadIC,0x272317f554a0,160,"_write"
code-creation,KeyedLoadIC,0x272317f554a0,160,"_write"
code-creation,KeyedLoadIC,0x272317f55540,160,"end"
code-creation,KeyedLoadIC,0x272317f55540,160,"end"
code-creation,Stub,0x272317f555e0,232,"FastNewContextStub"
code-creation,Function,0x272317f556e0,984," _stream_transform.js:1",0x18b1410836e8,~
code-creation,Script,0x272317f55ac0,244,"_stream_transform.js",0x18b1410837e0,~
code-creation,Stub,0x272317f55bc0,226,"FastNewContextStub"
tick,0x7fff9447bbd4,0x7fff5fbfe048,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f5293d,0x272317f2f038,0x272317f2e828,0x272317f4fa43,0x272317f2f038,0x272317f2e828,0x272317f4f018,0x272317f4da04,0x272317f4a66d,0x272317f49fd6,0x272317f49d4b,0x272317f2e259,0x272317f2d7e5
code-creation,Function,0x272317f55cc0,560," _stream_passthrough.js:1",0x18b141083c70,~
code-creation,Script,0x272317f55f00,244,"_stream_passthrough.js",0x18b141083d68,~
code-creation,StoreIC,0x272317f56000,185,"value"
code-creation,StoreIC,0x272317f56000,185,"value"
code-creation,LazyCompile,0x272317f560c0,1088,"defineProperty native v8natives.js:1050",0x18b14101ed00,~
code-creation,LoadIC,0x272317f56500,134,"enumerable"
code-creation,LoadIC,0x272317f56500,134,"enumerable"
code-creation,LoadIC,0x272317f565a0,134,"value"
code-creation,LoadIC,0x272317f565a0,134,"value"
code-creation,LazyCompile,0x272317f56640,384,"statPath module.js:88",0x18b141055c90,
code-creation,LazyCompile,0x272317f567c0,288,"fs.statSync fs.js:682",0x18b14105a8f0,~
code-creation,LazyCompile,0x272317f568e0,588,"nullCheck fs.js:117",0x18b141058690,~
code-creation,LazyCompile,0x272317f56b40,192,"exports._makeLong path.js:484",0x18b141054dd0,~
code-creation,LazyCompile,0x272317f56c00,280,"CreateDate native apinatives.js:33",0x18b141034f78,~
code-creation,LazyCompile,0x272317f56d20,476,"setTime native date.js:482",0x18b1410372c0,~
code-creation,LoadIC,0x272317f56f00,147,"$Date"
code-creation,LoadIC,0x272317f56f00,147,"$Date"
code-creation,CallIC,0x272317f56fa0,185,"setTime"
code-creation,CallIC,0x272317f57060,190,"ToNumber"
code-creation,LazyCompile,0x272317f57120,232,"fs.Stats.isDirectory fs.js:136",0x18b141058ff0,~
code-creation,LazyCompile,0x272317f57220,280,"fs.Stats._checkModeProperty fs.js:132",0x18b141058f50,~
code-creation,Stub,0x272317f57340,242,"FastNewContextStub"
code-creation,LazyCompile,0x272317f57440,2432,"realpathSync fs.js:1205",0x18b14105bf70,~
code-creation,LazyCompile,0x272317f57dc0,632,"start fs.js:1228",0x2922c5105f48,~
tick,0x1002cddb2,0x7fff5fbfe320,0,0x7e55fbfe380,2,0x272317f57e54,0x272317f576e7,0x272317f4f0b4,0x272317f4da04,0x272317f4a66d,0x272317f49fd6,0x272317f49d4b,0x272317f2e259,0x272317f2d7e5
code-creation,Stub,0x272317f58040,1001,"RegExpExecStub"
code-creation,LazyCompile,0x272317f58440,1040,"exec native regexp.js:168",0x18b14103b068,~
code-creation,RegExp,0x272317f58860,853,"^[\\/]*"
code-creation,StoreIC,0x272317f58bc0,150,"lastMatchInfoOverride"
code-creation,StoreIC,0x272317f58bc0,150,"lastMatchInfoOverride"
code-creation,Stub,0x272317f58c60,296,"RegExpConstructResultStub"
code-creation,LazyCompile,0x272317f58da0,1992,"BuildResultFromMatchInfo native regexp.js:130",0x18b14103af28,~
code-creation,KeyedStoreIC,0x272317f59580,130,""
code-creation,KeyedStoreIC,0x272317f59580,130,"args_count: 0"
code-creation,KeyedLoadIC,0x272317f59620,130,""
code-creation,KeyedLoadIC,0x272317f59620,130,"args_count: 0"
code-creation,StoreIC,0x272317f596c0,185,"lastIndex"
code-creation,StoreIC,0x272317f596c0,185,"lastIndex"
code-creation,LoadIC,0x272317f59780,134,"lastIndex"
code-creation,LoadIC,0x272317f59780,134,"lastIndex"
code-creation,LoadIC,0x272317f59820,134,"global"
code-creation,LoadIC,0x272317f59820,134,"global"
code-creation,LoadIC,0x272317f598c0,147,"lastMatchInfo"
code-creation,LoadIC,0x272317f598c0,147,"lastMatchInfo"
code-creation,RegExp,0x272317f59960,1162,"(.*?)(?:[\\/]+|$)"
code-creation,CallIC,0x272317f59e00,190,"BuildResultFromMatchInfo"
code-creation,LazyCompile,0x272317f59ec0,288,"fs.lstatSync fs.js:677",0x18b14105a850,~
code-creation,CallIC,0x272317f59fe0,205,"indexOf"
code-creation,LazyCompile,0x272317f5a0c0,232,"fs.Stats.isSymbolicLink fs.js:152",0x18b141059270,~
code-creation,LoadIC,0x272317f5a1c0,138,"mode"
code-creation,LoadIC,0x272317f5a1c0,138,"mode"
code-creation,CallIC,0x272317f5a260,185,"exec"
code-creation,LoadIC,0x272317f5a320,140,"hasOwnProperty"
code-creation,LoadIC,0x272317f5a320,140,"hasOwnProperty"
code-creation,CallIC,0x272317f5a3c0,192,"call"
code-creation,CallIC,0x272317f5a480,157,"lstatSync"
code-creation,CallIC,0x272317f5a520,157,"_makeLong"
code-creation,CallIC,0x272317f5a5c0,555,"lstat"
code-creation,CallIC,0x272317f5a800,185,"isSymbolicLink"
code-creation,CallIC,0x272317f5a8c0,185,"_checkModeProperty"
code-creation,LazyCompile,0x272317f5a980,476,"Module module.js:37",0x18b141055bf0,~
code-creation,StoreIC,0x272317f5ab60,185,"id"
code-creation,StoreIC,0x272317f5ab60,185,"id"
tick,0x10036a75e,0x7fff5fbfea40,0,0x0,2,0x272317f4a387,0x272317f49d4b,0x272317f2e259,0x272317f2d7e5
code-creation,KeyedCallInitialize,0x272317f5ac20,194,"args_count: 2"
code-creation,LazyCompile,0x272317f5ad00,768,"Module.load module.js:346",0x18b1410564b0,~
code-creation,Stub,0x272317f5b000,317,"CallFunctionStub_Args5_Recording"
code-creation,LazyCompile,0x272317f5b140,296,"ok assert.js:111",0x18b14104d5b8,~
code-creation,StoreIC,0x272317f5b280,185,"filename"
code-creation,StoreIC,0x272317f5b280,185,"filename"
code-creation,LazyCompile,0x272317f5b340,420,"exports.dirname path.js:415",0x18b141054a10,~
code-creation,LazyCompile,0x272317f5b500,236,"splitPath path.js:298",0x18b1410546f0,~
code-creation,RegExp,0x272317f5b600,2575,"^(\\/?|)([\\s\\S]*?)((?:\\.{1\,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$"
code-creation,LazyCompile,0x272317f5c020,1728,"substr native string.js:695",0x18b141027c48,~
code-creation,LazyCompile,0x272317f5c6e0,1380,"Module._nodeModulePaths module.js:207",0x18b141056230,~
code-creation,LazyCompile,0x272317f5cc60,3208,"StringSplitOnRegExp native string.js:591",0x18b141027b08,~
code-creation,LazyCompile,0x272317f5d900,308,"DoRegExpExec native regexp.js:123",0x18b14103ae88,~
code-creation,CallIC,0x272317f5da40,190,"DoRegExpExec"
code-creation,CallIC,0x272317f5db00,653,"push"
code-creation,LazyCompile,0x272317f5dda0,796,"ArrayConcat native array.js:471",0x18b1410242b0,~
code-creation,CallIC,0x272317f5e0c0,190,"slice"
code-creation,CallIC,0x272317f5e180,190,"concat"
code-creation,LazyCompile,0x272317f5e240,240,"exports.extname path.js:444",0x18b141054b50,~
code-creation,CallIC,0x272317f5e340,190,"slice"
code-creation,Stub,0x272317f5e400,968,"StringDictionaryLookupStub"
code-creation,KeyedCallMegamorphic,0x272317f5e7e0,1451,"args_count: 2"
code-creation,LazyCompile,0x272317f5eda0,336,"Module._extensions..js module.js:472",0x18b141056690,~
tick,0x7fff9628ecae,0x7fff5fbfe380,0,0xff600030,2,0x272317f5ee59,0x272317f5af96,0x272317f4a387,0x272317f49d4b,0x272317f2e259,0x272317f2d7e5
code-creation,CallInitialize,0x272317f5ef00,241,"args_count: 4"
code-creation,LazyCompile,0x272317f5f000,2372,"fs.readFileSync fs.js:271",0x18b141059630,
code-creation,StoreIC,0x272317f5f960,185,"encoding"
code-creation,StoreIC,0x272317f5f960,185,"encoding"
code-creation,LazyCompile,0x272317f5fa20,348,"assertEncoding fs.js:111",0x18b1410585f0,~
code-creation,LazyCompile,0x272317f5fb80,688,"Buffer.isEncoding buffer.js:245",0x18b141048a40,~
code-creation,LazyCompile,0x272317f5fe40,496,"toLowerCase native string.js:739",0x18b141027ce8,~
code-creation,LazyCompile,0x272317f60040,400,"fs.openSync fs.js:424",0x18b1410598b0,~
code-creation,LazyCompile,0x272317f601e0,440,"modeNum fs.js:400",0x18b1410587d0,~
code-creation,Stub,0x272317f603a0,132,"UnaryOpStub_BIT_NOT_Alloc_Uninitialized"
code-creation,Stub,0x272317f60440,143,"BinaryOpStub_BIT_OR_OverwriteLeft_Uninitialized"
code-creation,LazyCompile,0x272317f604e0,1664,"stringToFlags fs.js:344",0x18b141058730,~
code-creation,LazyCompile,0x272317f60b60,216,"fs.fstatSync fs.js:673",0x18b14105a7b0,~
code-creation,Stub,0x272317f60c40,143,"BinaryOpStub_BIT_AND_OverwriteLeft_Uninitialized"
code-creation,LazyCompile,0x272317f60ce0,2768,"Buffer buffer.js:156",0x18b141048180,~
code-creation,LazyCompile,0x272317f617c0,296,"ceil native math.js:79",0x18b14102be00,~
code-creation,LazyCompile,0x272317f61900,316,"allocPool buffer.js:270",0x18b1410482c0,~
code-creation,Stub,0x272317f61a40,276,"BinaryOpStub_BIT_AND_OverwriteLeft_SMI"
code-creation,StoreIC,0x272317f61b60,189,"used"
code-creation,StoreIC,0x272317f61b60,189,"used"
code-creation,CallPreMonomorphic,0x272317f61c20,241,"args_count: 4"
code-creation,LazyCompile,0x272317f61d20,1280,"fs.readSync fs.js:460",0x18b1410599f0,~
code-creation,LazyCompile,0x272317f62220,268,"isBuffer buffer.js:277",0x18b141048ae0,~
code-creation,LazyCompile,0x272317f62340,216,"fs.closeSync fs.js:396",0x18b141059770,~
code-creation,LazyCompile,0x272317f62420,1452,"Buffer.toString buffer.js:392",0x18b141048ea0,~
tick,0x100173fa6,0x7fff5fbfed90,0,0x10064a700,2,0x272317f5ee8b,0x272317f5af96,0x272317f4a387,0x272317f49d4b,0x272317f2e259,0x272317f2d7e5
code-creation,LazyCompile,0x272317f629e0,288,"stripBOM module.js:460",0x18b141055fb0,~
code-creation,LazyCompile,0x272317f62b00,1376,"charCodeAt native string.js:80",0x18b1410271a8,~
code-creation,Stub,0x272317f63060,550,"FastCloneShallowArrayStub"
code-creation,Stub,0x272317f632a0,330,"StoreArrayLiteralElementStub"
code-creation,LazyCompile,0x272317f63400,3152,"Module._compile module.js:374",0x18b1410565f0,~
code-creation,LoadIC,0x272317f64060,147,"lastMatchInfoOverride"
code-creation,LoadIC,0x272317f64060,147,"lastMatchInfoOverride"
code-creation,RegExp,0x272317f64100,895,"^\\#\\!.*"
code-creation,StoreIC,0x272317f64480,185,"get"
code-creation,StoreIC,0x272317f64480,185,"get"
code-creation,CallIC,0x272317f64540,205,"substr"
code-creation,Function,0x272317f64620,296," /Users/wavded/Projects/node-in-practice/trunk/listings/debugging/prof/test.js:1",0x2922c5107da8,~
code-creation,Script,0x272317f64760,244,"/Users/wavded/Projects/node-in-practice/trunk/listings/debugging/prof/test.js",0x2922c5107ea0,~
code-creation,LazyCompile,0x272317f64860,296,"global.setInterval node.js:177",0x18b141051fb8,~
code-creation,LoadIC,0x272317f649a0,138,"moduleLoadList"
code-creation,LoadIC,0x272317f649a0,138,"moduleLoadList"
tick,0x1001be1d8,0x7fff5fbfd580,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f64909,0x272317f646e2,0x272317f64030,0x272317f5eea5,0x272317f5af96,0x272317f4a387,0x272317f49d4b,0x272317f2e259,0x272317f2d7e5
code-creation,Function,0x272317f64a40,2792," timers.js:1",0x2922c5108eb0,~
code-creation,Script,0x272317f65540,244,"timers.js",0x2922c5108fa8,~
code-creation,Function,0x272317f65640,504," _linklist.js:1",0x2922c510a348,~
code-creation,Script,0x272317f65840,244,"_linklist.js",0x2922c510a440,~
code-creation,LazyCompile,0x272317f65940,228,"init _linklist.js:22",0x2922c5109ed8,~
code-creation,Stub,0x272317f65a40,143,"BinaryOpStub_MUL_Alloc_Uninitialized"
code-creation,LazyCompile,0x272317f65ae0,1012,"exports.setInterval timers.js:234",0x2922c5108758,~
code-creation,Stub,0x272317f65ee0,320,"BinaryOpStub_MUL_Alloc_SMI"
code-creation,LazyCompile,0x272317f66020,340,"Timeout timers.js:274",0x2922c5108898,~
code-creation,LazyCompile,0x272317f66180,1340,"ArraySlice native array.js:621",0x18b1410245d0,~
code-creation,LazyCompile,0x272317f666c0,548,"SimpleSlice native array.js:324",0x18b141023e50,~
code-creation,StoreIC,0x272317f66900,185,"_onTimeout"
code-creation,StoreIC,0x272317f66900,185,"_onTimeout"
code-creation,StoreIC,0x272317f669c0,185,"_repeat"
code-creation,StoreIC,0x272317f669c0,185,"_repeat"
code-creation,LazyCompile,0x272317f66a80,472,"exports.active timers.js:165",0x2922c5108578,~
code-creation,KeyedLoadIC,0x272317f66c60,130,""
code-creation,KeyedLoadIC,0x272317f66c60,130,"args_count: 0"
code-creation,LazyCompile,0x272317f66d00,656,"insert timers.js:52",0x2922c5108078,~
code-creation,LazyCompile,0x272317f66fa0,220,"now native date.js:314",0x18b141036280,~
code-creation,StoreIC,0x272317f67080,185,"_idleStart"
code-creation,StoreIC,0x272317f67080,185,"_idleStart"
code-creation,StoreIC,0x272317f67140,185,"_idleTimeout"
code-creation,StoreIC,0x272317f67140,185,"_idleTimeout"
code-creation,Stub,0x272317f67200,257,"KeyedStoreElementStub"
code-creation,KeyedStoreIC,0x272317f67320,130,""
code-creation,KeyedStoreIC,0x272317f67320,130,"args_count: 0"
code-creation,LazyCompile,0x272317f673c0,352,"append _linklist.js:63",0x2922c510a158,~
tick,0x7fff94437e9a,0x7fff5fbfed28,0,0x7fff91edea10,2,0x272317f66f20,0x272317f66bad,0x272317f65e7f,0x272317f6493a,0x272317f646e2,0x272317f64030,0x272317f5eea5,0x272317f5af96,0x272317f4a387,0x272317f49d4b,0x272317f2e259,0x272317f2d7e5
code-creation,LazyCompile,0x272317f67520,420,"remove _linklist.js:47",0x2922c510a0b8,~
code-creation,StoreIC,0x272317f676e0,185,"_idlePrev"
code-creation,StoreIC,0x272317f676e0,185,"_idlePrev"
code-creation,StoreIC,0x272317f677a0,185,"_idleNext"
code-creation,StoreIC,0x272317f677a0,185,"_idleNext"
code-creation,StoreIC,0x272317f67860,189,"_idlePrev"
code-creation,StoreIC,0x272317f67860,189,"_idlePrev"
code-creation,StoreIC,0x272317f67920,189,"_idleNext"
code-creation,StoreIC,0x272317f67920,189,"_idleNext"
code-creation,LazyCompile,0x272317f679e0,248,"isEmpty _linklist.js:73",0x2922c510a1f8,~
code-creation,Stub,0x272317f67ae0,206,"CompareICStub"
code-creation,CallIC,0x272317f67bc0,157,"require"
code-creation,LoadIC,0x272317f67c60,140,"setInterval"
code-creation,LoadIC,0x272317f67c60,140,"setInterval"
code-creation,CallIC,0x272317f67d00,187,"apply"
code-creation,CallIC,0x272317f67dc0,189,"ToUint32"
code-creation,StoreIC,0x272317f67e80,328,"_idleTimeout"
code-creation,StoreIC,0x272317f67e80,328,"_idleTimeout"
code-creation,StoreIC,0x272317f67fe0,328,"_idlePrev"
code-creation,StoreIC,0x272317f67fe0,328,"_idlePrev"
code-creation,StoreIC,0x272317f68140,328,"_idleNext"
code-creation,StoreIC,0x272317f68140,328,"_idleNext"
code-creation,StoreIC,0x272317f682a0,328,"_idleStart"
code-creation,StoreIC,0x272317f682a0,328,"_idleStart"
code-creation,StoreIC,0x272317f68400,328,"_onTimeout"
code-creation,StoreIC,0x272317f68400,328,"_onTimeout"
code-creation,StoreIC,0x272317f68560,328,"_repeat"
code-creation,StoreIC,0x272317f68560,328,"_repeat"
code-creation,LoadIC,0x272317f686c0,157,"Array"
code-creation,LoadIC,0x272317f686c0,157,"Array"
code-creation,LoadIC,0x272317f68760,140,"slice"
code-creation,LoadIC,0x272317f68760,140,"slice"
code-creation,LoadIC,0x272317f68800,134,"length"
code-creation,LoadIC,0x272317f68800,134,"length"
code-creation,CallMiss,0x272317f688a0,243,"args_count: 5"
code-creation,CallIC,0x272317f689a0,190,"SimpleSlice"
code-creation,LoadIC,0x272317f68a60,138,"domain"
code-creation,LoadIC,0x272317f68a60,138,"domain"
code-creation,CallIC,0x272317f68b00,157,"active"
code-creation,LoadIC,0x272317f68ba0,134,"_idleTimeout"
code-creation,LoadIC,0x272317f68ba0,134,"_idleTimeout"
code-creation,Stub,0x272317f68c40,307,"KeyedLoadElementStub"
code-creation,KeyedLoadIC,0x272317f68d80,152,""
code-creation,KeyedLoadMegamorphicIC,0x272317f68d80,152,"args_count: 0"
code-creation,LoadIC,0x272317f68e20,157,"Date"
code-creation,LoadIC,0x272317f68e20,157,"Date"
code-creation,CallIC,0x272317f68ec0,157,"now"
code-creation,CallIC,0x272317f68f60,583,"start"
code-creation,CallIC,0x272317f691c0,160,"init"
code-creation,StoreIC,0x272317f69260,254,"_idleNext"
code-creation,StoreIC,0x272317f69260,254,"_idleNext"
code-creation,StoreIC,0x272317f69360,332,"_idlePrev"
code-creation,StoreIC,0x272317f69360,332,"_idlePrev"
code-creation,Stub,0x272317f694c0,118,"KeyedStoreElementStub"
code-creation,KeyedStoreIC,0x272317f69540,148,""
code-creation,KeyedStoreMegamorphicIC,0x272317f69540,148,"args_count: 0"
code-creation,StoreIC,0x272317f695e0,332,"msecs"
code-creation,StoreIC,0x272317f695e0,332,"msecs"
code-creation,CallIC,0x272317f69740,160,"append"
code-creation,LoadIC,0x272317f697e0,134,"_idleNext"
code-creation,LoadIC,0x272317f697e0,134,"_idleNext"
code-creation,LoadIC,0x272317f69880,134,"_idlePrev"
code-creation,LoadIC,0x272317f69880,134,"_idlePrev"
code-creation,LoadIC,0x272317f69920,138,"_idleNext"
code-creation,LoadIC,0x272317f69920,138,"_idleNext"
code-creation,CallIC,0x272317f699c0,160,"isEmpty"
code-creation,StoreIC,0x272317f69a60,185,"loaded"
code-creation,StoreIC,0x272317f69a60,185,"loaded"
code-creation,LazyCompile,0x272317f69b20,1376,"_tickCallback node.js:395",0x18b1410532a8,
code-creation,Stub,0x272317f6a080,274,"KeyedLoadElementStub"
code-creation,KeyedLoadIC,0x272317f6a1a0,130,""
code-creation,KeyedLoadIC,0x272317f6a1a0,130,"args_count: 0"
code-creation,Stub,0x272317f6a240,263,"KeyedStoreElementStub"
code-creation,KeyedStoreIC,0x272317f6a360,130,""
code-creation,KeyedStoreIC,0x272317f6a360,130,"args_count: 0"
code-creation,LazyCompile,0x272317f6a400,1800,"listOnTimeout timers.js:77",0x2922c5108118,
code-creation,CallIC,0x272317f6ab20,189,"ToPrimitive"
tick,0x7fff9628a9e6,0x7fff5fbfefe8,0,0x1001ba562,2,0x272317f6a513
code-creation,LazyCompile,0x272317f6abe0,184,"debug timers.js:33",0x2922c5108398,~
code-creation,LazyCompile,0x272317f6aca0,280,"peek _linklist.js:30",0x2922c5109f78,~
code-creation,Stub,0x272317f6adc0,206,"CompareICStub"
code-creation,Stub,0x272317f6aea0,320,"BinaryOpStub_SUB_Alloc_HeapNumbers"
code-creation,LazyCompile,0x272317f6afe0,516,"NonStringToString native runtime.js:558",0x18b14101a120,~
code-creation,Stub,0x272317f6b200,200,"BinaryOpStub_ADD_OverwriteLeft_Strings"
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
code-creation,LoadIC,0x272317f6b2e0,138,"msecs"
code-creation,LoadIC,0x272317f6b2e0,138,"msecs"
code-creation,CallIC,0x272317f6b380,160,"peek"
code-creation,LoadIC,0x272317f6b420,138,"_idlePrev"
code-creation,LoadIC,0x272317f6b420,138,"_idlePrev"
code-creation,LoadIC,0x272317f6b4c0,134,"_idleStart"
code-creation,LoadIC,0x272317f6b4c0,134,"_idleStart"
code-creation,Stub,0x272317f6b560,453,"CompareStub_LT"
code-creation,Stub,0x272317f6b740,286,"CompareICStub"
code-creation,LazyCompile,0x272317f6b860,444,"wrapper timers.js:251",0x2922c510a968,~
code-creation,LazyCompile,0x272317f6ba20,232,"logSomething /Users/wavded/Projects/node-in-practice/trunk/listings/debugging/prof/test.js:4",0x2922c5107c80,~
code-creation,LazyCompile,0x272317f6bb20,224," node.js:204",0x18b1410524d8,~
code-creation,Function,0x272317f6bc00,1344," console.js:1",0x2922c514bc18,~
code-creation,Script,0x272317f6c140,244,"console.js",0x2922c514bd10,~
code-creation,LazyCompile,0x272317f6c240,512," node.js:611",0x18b1410536e0,~
code-creation,Stub,0x272317f6c440,254,"FastCloneShallowObjectStub"
code-creation,LazyCompile,0x272317f6c540,1296,"createWritableStdioStream node.js:546",0x18b141042b58,~
tick,0x10032f30e,0x7fff5fbfca40,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f6c6bf,0x272317f6c32e,0x272317f6c083,0x272317f2f038,0x272317f2e828,0x272317f6bbb2,0x272317f6baa4,0x272317f6b8ef,0x272317f6a97e
code-creation,Function,0x272317f6ca60,2036," tty.js:1",0x2922c514e0f8,~
code-creation,Script,0x272317f6d260,244,"tty.js",0x2922c514e1f0,~
tick,0x10032df05,0x7fff5fbfc590,1,0x100017dd6,2,0x272317f2efcc,0x272317f2e828,0x272317f6ccaa,0x272317f2f038,0x272317f2e828,0x272317f6c6bf,0x272317f6c32e,0x272317f6c083,0x272317f2f038,0x272317f2e828,0x272317f6bbb2,0x272317f6baa4,0x272317f6b8ef,0x272317f6a97e
code-creation,Stub,0x272317f6d360,433,"FastNewContextStub"
code-creation,Function,0x272317f6d520,7256," net.js:1",0x2922c5151278,~
code-creation,Script,0x272317f6f180,244,"net.js",0x2922c5151370,~
tick,0x7fff944378ea,0x7fff5fbfdfb8,1,0x1000091d5,5,0x272317f6de7c,0x272317f2f038,0x272317f2e828,0x272317f6ccaa,0x272317f2f038,0x272317f2e828,0x272317f6c6bf,0x272317f6c32e,0x272317f6c083,0x272317f2f038,0x272317f2e828,0x272317f6bbb2,0x272317f6baa4,0x272317f6b8ef,0x272317f6a97e
code-creation,LoadIC,0x272317f6f280,134,"get"
code-creation,LoadIC,0x272317f6f280,134,"get"
code-creation,LoadIC,0x272317f6f320,220,""
code-creation,LoadIC,0x272317f6f320,220,""
code-creation,LazyCompile,0x272317f6f400,528,"WriteStream tty.js:71",0x2922c514d8a0,~
code-creation,StoreIC,0x272317f6f620,185,"handle"
code-creation,StoreIC,0x272317f6f620,185,"handle"
code-creation,LazyCompile,0x272317f6f6e0,1604,"Socket net.js:136",0x2922c514e948,~
code-creation,LazyCompile,0x272317f6fd40,724,"Duplex _stream_duplex.js:39",0x18b141082a38,~
code-creation,LazyCompile,0x272317f70020,376,"Readable _stream_readable.js:100",0x18b14107fe30,~
code-creation,Stub,0x272317f701a0,132,"UnaryOpStub_BIT_NOT_Overwrite_Uninitialized"
code-creation,LazyCompile,0x272317f70240,1360,"ReadableState _stream_readable.js:32",0x18b14107fd90,~
code-creation,Stub,0x272317f707a0,149,"UnaryOpStub_BIT_NOT_Alloc_Smi"
code-creation,Stub,0x272317f70840,149,"UnaryOpStub_BIT_NOT_Overwrite_Smi"
code-creation,StoreIC,0x272317f708e0,185,"highWaterMark"
code-creation,StoreIC,0x272317f708e0,185,"highWaterMark"
code-creation,LazyCompile,0x272317f709a0,212,"Stream stream.js:42",0x18b14107f7d0,~
code-creation,LoadIC,0x272317f70a80,138,"usingDomains"
code-creation,LoadIC,0x272317f70a80,138,"usingDomains"
code-creation,LoadIC,0x272317f70b20,332,""
code-creation,LoadIC,0x272317f70b20,332,""
code-creation,LoadIC,0x272317f70c80,332,""
code-creation,LoadIC,0x272317f70c80,332,""
tick,0x100330bac,0x7fff5fbfdb20,0,0x103022668,2,0x272317f6fe71,0x272317f6f91b,0x272317f6f582,0x272317f6c6f7,0x272317f6c32e,0x272317f6c083,0x272317f2f038,0x272317f2e828,0x272317f6bbb2,0x272317f6baa4,0x272317f6b8ef,0x272317f6a97e
code-creation,LazyCompile,0x272317f70de0,432,"Writable _stream_writable.js:109",0x18b1410818f8,~
code-creation,LazyCompile,0x272317f70fa0,1124,"WritableState _stream_writable.js:41",0x18b141081858,~
code-creation,StoreIC,0x272317f71420,185,"highWaterMark"
code-creation,StoreIC,0x272317f71420,185,"highWaterMark"
code-creation,CallIC,0x272317f714e0,192,"call"
code-creation,StoreIC,0x272317f715a0,185,"domain"
code-creation,StoreIC,0x272317f715a0,185,"domain"
code-creation,LoadIC,0x272317f71660,134,"_events"
code-creation,LoadIC,0x272317f71660,134,"_events"
code-creation,StoreIC,0x272317f71700,185,"_events"
code-creation,StoreIC,0x272317f71700,185,"_events"
code-creation,LoadIC,0x272317f717c0,134,"_maxListeners"
code-creation,LoadIC,0x272317f717c0,134,"_maxListeners"
code-creation,Stub,0x272317f71860,146,"ToBooleanStub_UndefinedSmi"
code-creation,StoreIC,0x272317f71900,185,"_maxListeners"
code-creation,StoreIC,0x272317f71900,185,"_maxListeners"
code-creation,StoreIC,0x272317f719c0,185,"readable"
code-creation,StoreIC,0x272317f719c0,185,"readable"
code-creation,LazyCompile,0x272317f71a80,608,"EventEmitter.once events.js:169",0x18b141046880,~
code-creation,LazyCompile,0x272317f71ce0,780,"Readable.on _stream_readable.js:688",0x18b141080d30,~
code-creation,LazyCompile,0x272317f72000,1568,"EventEmitter.addListener events.js:126",0x18b1410467e0,~
code-creation,StoreIC,0x272317f72620,185,"_handle"
code-creation,StoreIC,0x272317f72620,185,"_handle"
code-creation,LoadIC,0x272317f726e0,168,"on"
code-creation,LoadIC,0x272317f726e0,168,"on"
code-creation,CallMiss,0x272317f727a0,241,"args_count: 3"
code-creation,CallIC,0x272317f728a0,192,"call"
code-creation,LoadIC,0x272317f72960,134,"_events"
code-creation,LoadIC,0x272317f72960,134,"_events"
code-creation,LoadIC,0x272317f72a00,164,""
code-creation,LoadIC,0x272317f72a00,164,""
code-creation,KeyedLoadIC,0x272317f72ac0,163,"finish"
code-creation,KeyedLoadIC,0x272317f72ac0,163,"finish"
code-creation,LoadIC,0x272317f72b80,164,""
code-creation,LoadIC,0x272317f72b80,164,""
code-creation,KeyedLoadIC,0x272317f72c40,163,"_socketEnd"
code-creation,KeyedLoadIC,0x272317f72c40,163,"_socketEnd"
code-creation,LazyCompile,0x272317f72d00,404,"initSocketHandle net.js:123",0x2922c514e8a8,~
code-creation,StoreIC,0x272317f72ea0,185,"decodeStrings"
code-creation,StoreIC,0x272317f72ea0,185,"decodeStrings"
code-creation,StoreIC,0x272317f72f60,185,"allowHalfOpen"
code-creation,StoreIC,0x272317f72f60,185,"allowHalfOpen"
code-creation,LazyCompile,0x272317f73020,900,"process.on.process.addListener node.js:749",0x18b141053d30,~
code-creation,LazyCompile,0x272317f733c0,340,"isSignal node.js:743",0x18b141053c90,~
code-creation,CallIC,0x272317f73520,190,"SubString"
code-creation,LazyCompile,0x272317f735e0,304,"startup.lazyConstants node.js:212",0x18b141042e78,~
code-creation,StoreIC,0x272317f73720,189,"_lazyConstants"
code-creation,StoreIC,0x272317f73720,189,"_lazyConstants"
tick,0x7fff6fabaf44,0x7fff5fbfe738,1,0x10001c01e,5,0x272317f731e8,0x272317f6c421,0x272317f6c083,0x272317f2f038,0x272317f2e828,0x272317f6bbb2,0x272317f6baa4,0x272317f6b8ef,0x272317f6a97e
code-creation,LoadIC,0x272317f737e0,138,"_lazyConstants"
code-creation,LoadIC,0x272317f737e0,138,"_lazyConstants"
code-creation,Stub,0x272317f73880,173,"ToBooleanStub_NullSpecObject"
code-creation,LoadIC,0x272317f73940,138,"_events"
code-creation,LoadIC,0x272317f73940,138,"_events"
code-creation,LoadIC,0x272317f739e0,164,""
code-creation,LoadIC,0x272317f739e0,164,""
code-creation,LazyCompile,0x272317f73aa0,424," node.js:626",0x18b141053780,~
code-creation,CallIC,0x272317f73c60,555,"binding"
code-creation,CallIC,0x272317f73ea0,555,"guessHandleType"
code-creation,LoadIC,0x272317f740e0,143,"WriteStream"
code-creation,LoadIC,0x272317f740e0,143,"WriteStream"
code-creation,LoadIC,0x272317f74180,143,"Socket"
code-creation,LoadIC,0x272317f74180,143,"Socket"
code-creation,CallIC,0x272317f74220,192,"call"
code-creation,StoreIC,0x272317f742e0,468,"_connecting"
code-creation,StoreIC,0x272317f742e0,468,"_connecting"
code-creation,StoreIC,0x272317f744c0,468,"_handle"
code-creation,StoreIC,0x272317f744c0,468,"_handle"
code-creation,LoadIC,0x272317f746a0,143,"Duplex"
code-creation,LoadIC,0x272317f746a0,143,"Duplex"
code-creation,CallIC,0x272317f74740,192,"call"
code-creation,LoadIC,0x272317f74800,164,""
code-creation,LoadIC,0x272317f74800,164,""
code-creation,StoreIC,0x272317f748c0,328,"highWaterMark"
code-creation,StoreIC,0x272317f748c0,328,"highWaterMark"
code-creation,LoadIC,0x272317f74a20,134,"highWaterMark"
code-creation,LoadIC,0x272317f74a20,134,"highWaterMark"
code-creation,StoreIC,0x272317f74ac0,328,"buffer"
code-creation,StoreIC,0x272317f74ac0,328,"buffer"
code-creation,StoreIC,0x272317f74c20,328,"length"
code-creation,StoreIC,0x272317f74c20,328,"length"
code-creation,StoreIC,0x272317f74d80,328,"pipes"
code-creation,StoreIC,0x272317f74d80,328,"pipes"
code-creation,StoreIC,0x272317f74ee0,328,"pipesCount"
code-creation,StoreIC,0x272317f74ee0,328,"pipesCount"
code-creation,StoreIC,0x272317f75040,328,"flowing"
code-creation,StoreIC,0x272317f75040,328,"flowing"
code-creation,StoreIC,0x272317f751a0,328,"ended"
code-creation,StoreIC,0x272317f751a0,328,"ended"
code-creation,StoreIC,0x272317f75300,328,"endEmitted"
code-creation,StoreIC,0x272317f75300,328,"endEmitted"
code-creation,StoreIC,0x272317f75460,328,"reading"
code-creation,StoreIC,0x272317f75460,328,"reading"
code-creation,StoreIC,0x272317f755c0,328,"calledRead"
code-creation,StoreIC,0x272317f755c0,328,"calledRead"
code-creation,StoreIC,0x272317f75720,328,"sync"
code-creation,StoreIC,0x272317f75720,328,"sync"
code-creation,StoreIC,0x272317f75880,328,"needReadable"
code-creation,StoreIC,0x272317f75880,328,"needReadable"
code-creation,StoreIC,0x272317f759e0,328,"emittedReadable"
code-creation,StoreIC,0x272317f759e0,328,"emittedReadable"
code-creation,StoreIC,0x272317f75b40,328,"readableListening"
code-creation,StoreIC,0x272317f75b40,328,"readableListening"
code-creation,StoreIC,0x272317f75ca0,334,"objectMode"
code-creation,StoreIC,0x272317f75ca0,334,"objectMode"
code-creation,StoreIC,0x272317f75e00,334,"defaultEncoding"
code-creation,StoreIC,0x272317f75e00,334,"defaultEncoding"
code-creation,StoreIC,0x272317f75f60,334,"ranOut"
code-creation,StoreIC,0x272317f75f60,334,"ranOut"
code-creation,StoreIC,0x272317f760c0,334,"awaitDrain"
code-creation,StoreIC,0x272317f760c0,334,"awaitDrain"
code-creation,StoreIC,0x272317f76220,334,"readingMore"
code-creation,StoreIC,0x272317f76220,334,"readingMore"
code-creation,StoreIC,0x272317f76380,334,"decoder"
code-creation,StoreIC,0x272317f76380,334,"decoder"
code-creation,StoreIC,0x272317f764e0,334,"encoding"
code-creation,StoreIC,0x272317f764e0,334,"encoding"
code-creation,StoreIC,0x272317f76640,468,"_readableState"
code-creation,StoreIC,0x272317f76640,468,"_readableState"
code-creation,StoreIC,0x272317f76820,468,"readable"
code-creation,StoreIC,0x272317f76820,468,"readable"
code-creation,CallIC,0x272317f76a00,192,"call"
code-creation,StoreIC,0x272317f76ac0,468,"domain"
code-creation,StoreIC,0x272317f76ac0,468,"domain"
code-creation,StoreIC,0x272317f76ca0,468,"_events"
code-creation,StoreIC,0x272317f76ca0,468,"_events"
code-creation,StoreIC,0x272317f76e80,468,"_maxListeners"
code-creation,StoreIC,0x272317f76e80,468,"_maxListeners"
code-creation,CallIC,0x272317f77060,192,"call"
code-creation,StoreIC,0x272317f77120,328,"highWaterMark"
code-creation,StoreIC,0x272317f77120,328,"highWaterMark"
code-creation,StoreIC,0x272317f77280,328,"objectMode"
code-creation,StoreIC,0x272317f77280,328,"objectMode"
code-creation,LoadIC,0x272317f773e0,134,"highWaterMark"
code-creation,LoadIC,0x272317f773e0,134,"highWaterMark"
code-creation,StoreIC,0x272317f77480,328,"needDrain"
code-creation,StoreIC,0x272317f77480,328,"needDrain"
code-creation,StoreIC,0x272317f775e0,328,"ending"
code-creation,StoreIC,0x272317f775e0,328,"ending"
code-creation,StoreIC,0x272317f77740,328,"ended"
code-creation,StoreIC,0x272317f77740,328,"ended"
code-creation,StoreIC,0x272317f778a0,328,"finished"
code-creation,StoreIC,0x272317f778a0,328,"finished"
code-creation,StoreIC,0x272317f77a00,328,"decodeStrings"
code-creation,StoreIC,0x272317f77a00,328,"decodeStrings"
code-creation,StoreIC,0x272317f77b60,328,"defaultEncoding"
code-creation,StoreIC,0x272317f77b60,328,"defaultEncoding"
code-creation,StoreIC,0x272317f77cc0,328,"length"
code-creation,StoreIC,0x272317f77cc0,328,"length"
code-creation,StoreIC,0x272317f77e20,328,"writing"
code-creation,StoreIC,0x272317f77e20,328,"writing"
code-creation,StoreIC,0x272317f77f80,328,"sync"
code-creation,StoreIC,0x272317f77f80,328,"sync"
code-creation,StoreIC,0x272317f780e0,328,"bufferProcessing"
code-creation,StoreIC,0x272317f780e0,328,"bufferProcessing"
code-creation,StoreIC,0x272317f78240,468,"_writableState"
code-creation,StoreIC,0x272317f78240,468,"_writableState"
code-creation,StoreIC,0x272317f78420,468,"writable"
code-creation,StoreIC,0x272317f78420,468,"writable"
code-creation,LoadIC,0x272317f78600,134,"readable"
code-creation,LoadIC,0x272317f78600,134,"readable"
code-creation,LoadIC,0x272317f786a0,134,"writable"
code-creation,LoadIC,0x272317f786a0,134,"writable"
tick,0x7fff9447bbd4,0x7fff5fbfe568,0,0x7fff9937a6ea,0,0x272317f6ff0a,0x272317f6f91b,0x272317f6f582,0x272317f6c6f7,0x272317f73b92,0x272317f6c0a6,0x272317f2f038,0x272317f2e828,0x272317f6bbb2,0x272317f6baa4,0x272317f6b8ef,0x272317f6a97e
code-creation,StoreIC,0x272317f78740,468,"allowHalfOpen"
code-creation,StoreIC,0x272317f78740,468,"allowHalfOpen"
code-creation,CallIC,0x272317f78920,325,"once"
code-creation,CallIC,0x272317f78a80,269,"on"
code-creation,LoadIC,0x272317f78ba0,134,"_events"
code-creation,LoadIC,0x272317f78ba0,134,"_events"
code-creation,LoadIC,0x272317f78c40,164,""
code-creation,LoadIC,0x272317f78c40,164,""
code-creation,LoadIC,0x272317f78d00,134,"handle"
code-creation,LoadIC,0x272317f78d00,134,"handle"
code-creation,StoreIC,0x272317f78da0,394,"onend"
code-creation,StoreIC,0x272317f78da0,394,"onend"
code-creation,CallIC,0x272317f78f40,269,"on"
code-creation,LoadIC,0x272317f79060,164,""
code-creation,LoadIC,0x272317f79060,164,""
code-creation,LoadIC,0x272317f79120,164,""
code-creation,LoadIC,0x272317f79120,164,""
code-creation,StoreIC,0x272317f791e0,472,"destroyed"
code-creation,StoreIC,0x272317f791e0,472,"destroyed"
code-creation,StoreIC,0x272317f793c0,472,"errorEmitted"
code-creation,StoreIC,0x272317f793c0,472,"errorEmitted"
code-creation,StoreIC,0x272317f795a0,394,"bytesRead"
code-creation,StoreIC,0x272317f795a0,394,"bytesRead"
code-creation,StoreIC,0x272317f79740,472,"_bytesDispatched"
code-creation,StoreIC,0x272317f79740,472,"_bytesDispatched"
code-creation,LoadIC,0x272317f79920,134,"_handle"
code-creation,LoadIC,0x272317f79920,134,"_handle"
code-creation,StoreIC,0x272317f799c0,332,"owner"
code-creation,StoreIC,0x272317f799c0,332,"owner"
code-creation,StoreIC,0x272317f79b20,472,"_pendingData"
code-creation,StoreIC,0x272317f79b20,472,"_pendingData"
code-creation,StoreIC,0x272317f79d00,394,"_pendingEncoding"
code-creation,StoreIC,0x272317f79d00,394,"_pendingEncoding"
code-creation,LoadIC,0x272317f79ea0,134,"_writableState"
code-creation,LoadIC,0x272317f79ea0,134,"_writableState"
code-creation,StoreIC,0x272317f79f40,185,"decodeStrings"
code-creation,StoreIC,0x272317f79f40,185,"decodeStrings"
code-creation,LoadIC,0x272317f7a000,134,"_handle"
code-creation,LoadIC,0x272317f7a000,134,"_handle"
code-creation,CallIC,0x272317f7a0a0,583,"getWindowSize"
code-creation,StoreIC,0x272317f7a300,472,"columns"
code-creation,StoreIC,0x272317f7a300,472,"columns"
code-creation,StoreIC,0x272317f7a4e0,472,"rows"
code-creation,StoreIC,0x272317f7a4e0,472,"rows"
code-creation,StoreIC,0x272317f7a6c0,394,"_type"
code-creation,StoreIC,0x272317f7a6c0,394,"_type"
code-creation,LoadIC,0x272317f7a860,134,"_handle"
code-creation,LoadIC,0x272317f7a860,134,"_handle"
code-creation,LoadIC,0x272317f7a900,168,"unref"
code-creation,LoadIC,0x272317f7a900,168,"unref"
code-creation,CallIC,0x272317f7a9c0,583,"unref"
code-creation,StoreIC,0x272317f7ac20,472,"fd"
code-creation,StoreIC,0x272317f7ac20,472,"fd"
code-creation,StoreIC,0x272317f7ae00,472,"_isStdio"
code-creation,StoreIC,0x272317f7ae00,472,"_isStdio"
code-creation,LazyCompile,0x272317f7afe0,864,"Console console.js:24",0x2922c514b640,~
code-creation,LoadIC,0x272317f7b340,134,"enumerable"
code-creation,LoadIC,0x272317f7b340,134,"enumerable"
code-creation,LoadIC,0x272317f7b3e0,134,"configurable"
code-creation,LoadIC,0x272317f7b3e0,134,"configurable"
code-creation,LoadIC,0x272317f7b480,138,"value"
code-creation,LoadIC,0x272317f7b480,138,"value"
code-creation,LoadIC,0x272317f7b520,134,"writable"
code-creation,LoadIC,0x272317f7b520,134,"writable"
code-creation,StoreIC,0x272317f7b5c0,189,"value"
code-creation,StoreIC,0x272317f7b5c0,189,"value"
code-creation,LazyCompile,0x272317f7b680,232," console.js:47",0x2922c51550e8,~
code-creation,Stub,0x272317f7b780,390,"FastNewClosureStub"
code-creation,LazyCompile,0x272317f7b920,1020,"bind native v8natives.js:1578",0x18b14101fd40,~
code-creation,LazyCompile,0x272317f7bd20,308,"Console.log console.js:52",0x2922c514b6e0,~
code-creation,KeyedLoadIC,0x272317f7be60,188,"info"
code-creation,KeyedLoadIC,0x272317f7be60,188,"info"
code-creation,CallIC,0x272317f7bf20,187,"bind"
code-creation,KeyedLoadIC,0x272317f7bfe0,188,"warn"
code-creation,KeyedLoadIC,0x272317f7bfe0,188,"warn"
code-creation,LazyCompile,0x272317f7c0a0,308,"Console.warn console.js:60",0x2922c514b780,~
code-creation,LazyCompile,0x272317f7c1e0,268,"Console.dir console.js:68",0x2922c514b820,~
code-creation,LazyCompile,0x272317f7c300,252,"Console.time console.js:73",0x2922c514b8c0,~
tick,0x10032ffff,0x7fff5fbfdb90,0,0x35,2,0x272317f7bbaa,0x272317f7b717,0x272317f5524a,0x272317f7b32d,0x272317f6c0c0,0x272317f2f038,0x272317f2e828,0x272317f6bbb2,0x272317f6baa4,0x272317f6b8ef,0x272317f6a97e
code-creation,LazyCompile,0x272317f7c400,428,"Console.timeEnd console.js:78",0x2922c514b960,~
code-creation,LazyCompile,0x272317f7c5c0,452,"Console.trace console.js:88",0x2922c514ba00,~
code-creation,LazyCompile,0x272317f7c7a0,504,"Console.assert console.js:99",0x2922c514baa0,~
code-creation,Stub,0x272317f7c9a0,340,"ArgumentsAccessStub_NewStrict"
code-creation,LazyCompile,0x272317f7cb00,1256,"b native v8natives.js:1582",0x2922c5155290,~
code-creation,Stub,0x272317f7d000,143,"BinaryOpStub_ADD_OverwriteRight_Uninitialized"
code-creation,LazyCompile,0x272317f7d0a0,1668,"exports.format util.js:23",0x18b14104f928,~
code-creation,LazyCompile,0x272317f7d740,2100,"StringReplaceGlobalRegExpWithFunction native string.js:374",0x18b1410277e8,~
code-creation,StoreIC,0x272317f7df80,150,"reusableReplaceArray"
code-creation,StoreIC,0x272317f7df80,150,"reusableReplaceArray"
code-creation,RegExp,0x272317f7e020,823,"%[sdj%]"
code-creation,LazyCompile,0x272317f7e360,656,"Socket.write net.js:610",0x2922c5150248,~
code-creation,LazyCompile,0x272317f7e600,720,"Writable.write _stream_writable.js:160",0x18b1410822f8,~
code-creation,LazyCompile,0x272317f7e8e0,728,"validChunk _stream_writable.js:143",0x18b141081a38,~
code-creation,Stub,0x272317f7ebc0,317,"CallFunctionStub_Args6_Recording"
code-creation,LazyCompile,0x272317f7ed00,744,"writeOrBuffer _stream_writable.js:197",0x18b141081b78,~
code-creation,LazyCompile,0x272317f7f000,396,"decodeChunk _stream_writable.js:185",0x18b141081ad8,~
code-creation,StoreIC,0x272317f7f1a0,185,"length"
code-creation,StoreIC,0x272317f7f1a0,185,"length"
code-creation,StoreIC,0x272317f7f260,185,"needDrain"
code-creation,StoreIC,0x272317f7f260,185,"needDrain"
code-creation,LazyCompile,0x272317f7f320,364,"doWrite _stream_writable.js:216",0x18b141081c18,~
code-creation,StoreIC,0x272317f7f4a0,185,"writelen"
code-creation,StoreIC,0x272317f7f4a0,185,"writelen"
code-creation,StoreIC,0x272317f7f560,185,"writecb"
code-creation,StoreIC,0x272317f7f560,185,"writecb"
code-creation,StoreIC,0x272317f7f620,185,"writing"
code-creation,StoreIC,0x272317f7f620,185,"writing"
code-creation,StoreIC,0x272317f7f6e0,185,"sync"
code-creation,StoreIC,0x272317f7f6e0,185,"sync"
tick,0x10032ff67,0x7fff5fbfdea0,0,0x0,2,0x272317f7f425,0x272317f7ef90,0x272317f7e874,0x272317f7e5a2,0x272317f7be0c,0x272317f7cd56,0x272317f6bac0,0x272317f6b8ef,0x272317f6a97e
code-creation,LazyCompile,0x272317f7f7a0,1348,"Socket._write net.js:617",0x2922c51502e8,~
code-creation,StoreIC,0x272317f7fd00,189,"_pendingData"
code-creation,StoreIC,0x272317f7fd00,189,"_pendingData"
code-creation,StoreIC,0x272317f7fdc0,189,"_pendingEncoding"
code-creation,StoreIC,0x272317f7fdc0,189,"_pendingEncoding"
code-creation,LazyCompile,0x272317f7fe80,1980,"exports._unrefActive timers.js:425",0x2922c5108c58,~
code-creation,LazyCompile,0x272317f80640,696,"createWriteReq net.js:656",0x2922c514eda8,~
code-creation,StoreIC,0x272317f80900,189,"_bytesDispatched"
code-creation,StoreIC,0x272317f80900,189,"_bytesDispatched"
code-creation,LazyCompile,0x272317f809c0,236,"WritableState.onwrite _stream_writable.js:96",0x2922c51537f0,~
code-creation,LazyCompile,0x272317f80ac0,1004,"onwrite _stream_writable.js:243",0x18b141081df8,~
code-creation,LazyCompile,0x272317f80ec0,324,"onwriteStateUpdate _stream_writable.js:236",0x18b141081d58,~
code-creation,LazyCompile,0x272317f81020,432,"needFinish _stream_writable.js:343",0x18b141082078,~
code-creation,LazyCompile,0x272317f811e0,620,"nextTick node.js:475",0x18b1410533e8,~
code-creation,StoreIC,0x272317f81460,185,"callback"
code-creation,StoreIC,0x272317f81460,185,"callback"
code-creation,KeyedLoadIC,0x272317f81520,130,""
code-creation,KeyedLoadIC,0x272317f81520,130,"args_count: 0"
code-creation,CallIC,0x272317f815c0,583,"start"
code-creation,LazyCompile,0x272317f81820,252," _stream_writable.js:260",0x2922c5156378,~
code-creation,LazyCompile,0x272317f81920,360,"afterWrite _stream_writable.js:269",0x18b141081e98,~
code-creation,LazyCompile,0x272317f81aa0,336,"onwriteDrain _stream_writable.js:280",0x18b141081f38,~
code-creation,LazyCompile,0x272317f81c00,184,"cb _stream_writable.js:175",0x2922c5155b18,~
code-creation,LoadIC,0x272317f81cc0,141,"maxTickDepth"
code-creation,LoadIC,0x272317f81cc0,141,"maxTickDepth"
code-creation,LazyCompile,0x272317f81d60,748,"tickDone node.js:350",0x18b1410530c8,~
code-creation,LazyCompile,0x272317f82060,452,"_tickFromSpinner node.js:382",0x18b141053208,~
code-creation,LazyCompile,0x272317f82240,1156,"afterWrite net.js:704",0x2922c514ee48,~
tick,0x1001d04c8,0x7fff5fbff000,0,0xffffc60000000000,0,0x272317f82356
code-creation,Stub,0x272317f826e0,224,"CompareICStub"
code-creation,LoadIC,0x272317f827c0,332,""
code-creation,LoadIC,0x272317f827c0,332,""
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
code-creation,CallIC,0x272317f82920,160,"remove"
tick,0x7fff94437e9a,0x7fff5fbfef68,0,0x7fff91edea10,0,0x272317f6a739
code-creation,LoadIC,0x272317f829c0,134,"_onTimeout"
code-creation,LoadIC,0x272317f829c0,134,"_onTimeout"
code-creation,LoadIC,0x272317f82a60,192,""
code-creation,LoadIC,0x272317f82a60,192,""
code-creation,CallIC,0x272317f82b20,198,"_onTimeout"
code-creation,CallIC,0x272317f82c00,170,"log"
code-creation,LoadIC,0x272317f82cc0,134,"_stdout"
code-creation,LoadIC,0x272317f82cc0,134,"_stdout"
code-creation,LoadIC,0x272317f82d60,140,"format"
code-creation,LoadIC,0x272317f82d60,140,"format"
code-creation,CallIC,0x272317f82e00,190,"String"
code-creation,CallIC,0x272317f82ec0,205,"replace"
code-creation,CallIC,0x272317f82fa0,190,"StringReplaceGlobalRegExpWithFunction"
code-creation,LoadIC,0x272317f83060,147,"reusableReplaceArray"
code-creation,LoadIC,0x272317f83060,147,"reusableReplaceArray"
code-creation,CallIC,0x272317f83100,226,"write"
code-creation,LoadIC,0x272317f83200,140,"write"
code-creation,LoadIC,0x272317f83200,140,"write"
code-creation,LoadIC,0x272317f832a0,134,"_writableState"
code-creation,LoadIC,0x272317f832a0,134,"_writableState"
code-creation,LoadIC,0x272317f83340,157,"Buffer"
code-creation,LoadIC,0x272317f83340,157,"Buffer"
code-creation,CallIC,0x272317f833e0,157,"isBuffer"
code-creation,LoadIC,0x272317f83480,134,"defaultEncoding"
code-creation,LoadIC,0x272317f83480,134,"defaultEncoding"
code-creation,LoadIC,0x272317f83520,134,"ended"
code-creation,LoadIC,0x272317f83520,134,"ended"
code-creation,LoadIC,0x272317f835c0,134,"objectMode"
code-creation,LoadIC,0x272317f835c0,134,"objectMode"
code-creation,LoadIC,0x272317f83660,134,"decodeStrings"
code-creation,LoadIC,0x272317f83660,134,"decodeStrings"
code-creation,LoadIC,0x272317f83700,134,"length"
code-creation,LoadIC,0x272317f83700,134,"length"
code-creation,LoadIC,0x272317f837a0,134,"highWaterMark"
code-creation,LoadIC,0x272317f837a0,134,"highWaterMark"
code-creation,LoadIC,0x272317f83840,134,"writing"
code-creation,LoadIC,0x272317f83840,134,"writing"
code-creation,LoadIC,0x272317f838e0,140,"onwrite"
code-creation,LoadIC,0x272317f838e0,140,"onwrite"
code-creation,CallIC,0x272317f83980,213,"_write"
code-creation,LoadIC,0x272317f83a60,134,"_connecting"
code-creation,LoadIC,0x272317f83a60,134,"_connecting"
code-creation,CallIC,0x272317f83b00,157,"_unrefActive"
code-creation,LoadIC,0x272317f83ba0,134,"_handle"
code-creation,LoadIC,0x272317f83ba0,134,"_handle"
code-creation,CallIC,0x272317f83c40,583,"writeUtf8String"
code-creation,LoadIC,0x272317f83ea0,138,"_bytesDispatched"
code-creation,LoadIC,0x272317f83ea0,138,"_bytesDispatched"
code-creation,LoadIC,0x272317f83f40,138,"bytes"
tick,0x7fff94437e9a,0x7fff5fbfe908,0,0x7fff91edea10,0,0x272317f7fc31,0x272317f7f425,0x272317f7ef90,0x272317f7e874,0x272317f7e5a2,0x272317f7be0c,0x272317f7cd56,0x272317f6bac0,0x272317f6b8ef,0x272317f6a97e
code-creation,LoadIC,0x272317f83f40,138,"bytes"
code-creation,LoadIC,0x272317f83fe0,138,"writeQueueSize"
code-creation,LoadIC,0x272317f83fe0,138,"writeQueueSize"
code-creation,LoadIC,0x272317f84080,134,"sync"
code-creation,LoadIC,0x272317f84080,134,"sync"
code-creation,LoadIC,0x272317f84120,134,"writecb"
code-creation,LoadIC,0x272317f84120,134,"writecb"
code-creation,LoadIC,0x272317f841c0,134,"writelen"
code-creation,LoadIC,0x272317f841c0,134,"writelen"
code-creation,LoadIC,0x272317f84260,134,"ending"
code-creation,LoadIC,0x272317f84260,134,"ending"
code-creation,LoadIC,0x272317f84300,134,"bufferProcessing"
code-creation,LoadIC,0x272317f84300,134,"bufferProcessing"
code-creation,LoadIC,0x272317f843a0,137,"buffer"
code-creation,LoadIC,0x272317f843a0,137,"buffer"
code-creation,CallIC,0x272317f84440,160,"nextTick"
code-creation,LoadIC,0x272317f844e0,141,"_exiting"
code-creation,LoadIC,0x272317f844e0,141,"_exiting"
code-creation,LoadIC,0x272317f84580,134,"_repeat"
code-creation,LoadIC,0x272317f84580,134,"_repeat"
code-creation,LoadIC,0x272317f84620,134,"callback"
code-creation,LoadIC,0x272317f84620,134,"callback"
code-creation,LoadIC,0x272317f846c0,134,"needDrain"
code-creation,LoadIC,0x272317f846c0,134,"needDrain"
code-creation,LoadIC,0x272317f84760,138,"owner"
code-creation,LoadIC,0x272317f84760,138,"owner"
code-creation,LoadIC,0x272317f84800,193,"stderr"
code-creation,LoadIC,0x272317f84800,193,"stderr"
code-creation,LoadIC,0x272317f848e0,193,"stdout"
code-creation,LoadIC,0x272317f848e0,193,"stdout"
code-creation,LoadIC,0x272317f849c0,138,"destroyed"
code-creation,LoadIC,0x272317f849c0,138,"destroyed"
code-creation,LoadIC,0x272317f84a60,164,""
code-creation,LoadIC,0x272317f84a60,164,""
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10028a7ce,0x7fff5fbfea20,0,0x14b98881a5c1,4,0x272317f80857,0x272317f7fb06,0x272317f7f425,0x272317f7ef90,0x272317f7e874,0x272317f7e5a2,0x272317f7be0c,0x272317f7cd56,0x272317f6bac0,0x272317f6b8ef,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
code-creation,LazyCompile,0x272317f84b20,896,"INSTANCE_OF native runtime.js:367",0x18b141019720,~
code-creation,LazyCompile,0x272317f17b00,896,"INSTANCE_OF native runtime.js:367",0x18b141019720,
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f7f084,0x7fff5fbfee08,0,0x38e12fa3e81,0,0x272317f7eda1,0x272317f7e874,0x272317f7e5a2,0x272317f7be0c,0x272317f7cd56,0x272317f6bac0,0x272317f6b8ef,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10019deed,0x7fff5fbff580,0,0x0,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
code-creation,LazyCompile,0x272317f84ea0,296,"ok assert.js:111",0x18b14104d5b8,~
code-creation,Stub,0x272317f84fe0,244,"CallFunctionStub_Args5"
code-creation,LazyCompile,0x272317f850e0,333,"ok assert.js:111",0x18b14104d5b8,*
tick,0x272317f7e0c4,0x7fff5fbfeb78,0,0xfffffffffffffff6,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f7bde6,0x272317f7cd56,0x272317f6bac0,0x272317f6b8ef,0x272317f6a97e
code-creation,LazyCompile,0x272317f85240,420,"remove _linklist.js:47",0x2922c510a0b8,~
code-creation,LazyCompile,0x272317f85400,557,"remove _linklist.js:47",0x2922c510a0b8,*
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
code-creation,LazyCompile,0x272317f85640,424," node.js:626",0x18b141053780,~
code-creation,Stub,0x272317f85800,2654,"RecordWriteStub"
code-creation,LazyCompile,0x272317f86260,531," node.js:626",0x18b141053780,*
code-creation,LazyCompile,0x272317f86480,512," node.js:611",0x18b1410536e0,~
code-creation,LazyCompile,0x272317f86680,684," node.js:611",0x18b1410536e0,*
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9447d0c3,0x7fff5fbfeaa0,0,0x0,1
code-creation,LoadIC,0x272317f86940,134,"length"
code-creation,LoadIC,0x272317f86940,134,"length"
tick,0x7fff94438f92,0x7fff5fbfeb28,0,0x10012b240,0,0x272317f80857,0x272317f7fb06,0x272317f7f425,0x272317f7ef90,0x272317f7e874,0x272317f7e5a2,0x272317f7be0c,0x272317f7cd56,0x272317f6bac0,0x272317f6b8ef,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100133573,0x7fff5fbff6f0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbf76a8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
code-creation,LazyCompile,0x272317f869e0,184,"debug timers.js:33",0x2922c5108398,~
code-creation,LazyCompile,0x272317f86aa0,166,"debug timers.js:33",0x2922c5108398,*
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
code-creation,LazyCompile,0x272317f86b60,268,"isBuffer buffer.js:277",0x18b141048ae0,~
code-creation,LazyCompile,0x272317f86c80,222,"isBuffer buffer.js:277",0x18b141048ae0,*
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f68e88,0x7fff5fbff430,0,0x272317f6a52e,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
code-creation,LazyCompile,0x272317f86d60,1436,"APPLY_PREPARE native runtime.js:438",0x18b141019ae0,~
code-creation,LazyCompile,0x272317f197a0,1436,"APPLY_PREPARE native runtime.js:438",0x18b141019ae0,
code-creation,LazyCompile,0x272317f87300,472,"exports.active timers.js:165",0x2922c5108578,~
code-creation,Function,0x272317f874e0,656,"insert timers.js:52",0x2922c5108078,~
tick,0x100263cd9,0x7fff5fbfedb0,0,0x7fffffff7fffffff,2,0x272317f6ba0a,0x272317f6a97e
code-creation,Stub,0x272317f87780,2595,"RecordWriteStub"
code-creation,Stub,0x272317f881c0,2625,"RecordWriteStub"
code-creation,Stub,0x272317f88c20,1202,"RecordWriteStub"
code-creation,Stub,0x272317f890e0,2583,"RecordWriteStub"
code-creation,LazyCompile,0x272317f89b00,3144,"exports.active timers.js:165",0x2922c5108578,*
code-creation,LazyCompile,0x272317f8a760,220,"now native date.js:314",0x18b141036280,~
code-creation,LazyCompile,0x272317f8a840,200,"now native date.js:314",0x18b141036280,*
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
code-creation,LazyCompile,0x272317f8a920,280,"peek _linklist.js:30",0x2922c5109f78,~
code-creation,LazyCompile,0x272317f8aa40,330,"peek _linklist.js:30",0x2922c5109f78,*
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
code-creation,LazyCompile,0x272317f8aba0,444,"wrapper timers.js:251",0x2922c510a968,~
code-creation,Stub,0x272317f8ad60,2620,"RecordWriteStub"
code-creation,LazyCompile,0x272317f8b7a0,794,"wrapper timers.js:251",0x2922c510a968,*
code-creation,LazyCompile,0x272317f8bac0,232,"logSomething /Users/wavded/Projects/node-in-practice/trunk/listings/debugging/prof/test.js:4",0x2922c5107c80,~
code-creation,LazyCompile,0x272317f8bbc0,310,"logSomething /Users/wavded/Projects/node-in-practice/trunk/listings/debugging/prof/test.js:4",0x2922c5107c80,*
code-creation,LazyCompile,0x272317f8bd00,224," node.js:204",0x18b1410524d8,~
code-creation,Function,0x272317f8bde0,628,"NativeModule.require node.js:843",0x18b1410434b8,~
code-creation,Function,0x272317f8c060,220,"NativeModule.getCached node.js:867",0x18b141043558,~
tick,0x1002a052a,0x7fff5fbfe2e0,0,0x7fff5fbfe3a0,2,0x272317f8bc47,0x272317f8b87d,0x272317f6a97e
code-creation,Function,0x272317f8c140,232,"NativeModule.exists node.js:871",0x18b1410435f8,~
code-creation,Function,0x272317f8c240,320,"NativeModule node.js:833",0x18b141042bf8,~
code-creation,Function,0x272317f8c380,236,"NativeModule.cache node.js:898",0x18b141043878,~
code-creation,Function,0x272317f8c480,484,"NativeModule.compile node.js:888",0x18b1410437d8,~
code-creation,Function,0x272317f8c680,220,"NativeModule.getSource node.js:875",0x18b141043698,~
code-creation,Function,0x272317f8c760,272,"NativeModule.wrap node.js:879",0x18b141043738,~
code-creation,Stub,0x272317f8c880,1220,"RecordWriteStub"
code-creation,Stub,0x272317f8cd60,2654,"RecordWriteStub"
code-creation,Stub,0x272317f8d7c0,1196,"RecordWriteStub"
code-creation,Stub,0x272317f8dc80,244,"CallFunctionStub_Args4"
code-creation,LazyCompile,0x272317f8dd80,3436," node.js:204",0x18b1410524d8,*
code-creation,LazyCompile,0x272317f8eb00,308,"Console.log console.js:52",0x2922c514b6e0,~
code-creation,LazyCompile,0x272317f8ec40,907,"Console.log console.js:52",0x2922c514b6e0,*
code-creation,LazyCompile,0x272317f8efe0,656,"Socket.write net.js:610",0x2922c5150248,~
tick,0x1003c4aa0,0x7fff5fbfe948,0,0x100260b68,2,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
code-creation,Stub,0x272317f8f280,2595,"RecordWriteStub"
code-creation,LazyCompile,0x272317f8fcc0,1241,"Socket.write net.js:610",0x2922c5150248,*
code-creation,LazyCompile,0x272317f901a0,720,"Writable.write _stream_writable.js:160",0x18b1410822f8,~
code-creation,Function,0x272317f90480,744,"writeOrBuffer _stream_writable.js:197",0x18b141081b78,~
code-creation,Function,0x272317f90780,396,"decodeChunk _stream_writable.js:185",0x18b141081ad8,~
code-creation,Function,0x272317f90920,364,"doWrite _stream_writable.js:216",0x18b141081c18,~
code-creation,Stub,0x272317f90aa0,2594,"RecordWriteStub"
code-creation,Stub,0x272317f914e0,244,"CallFunctionStub_Args3"
code-creation,LazyCompile,0x272317f915e0,2468,"Writable.write _stream_writable.js:160",0x18b1410822f8,*
code-creation,LazyCompile,0x272317f91fa0,696,"createWriteReq net.js:656",0x2922c514eda8,~
tick,0x100354f86,0x7fff5fbfe960,0,0x10502b200,2,0x272317f7fb06,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
code-creation,LazyCompile,0x272317f92260,770,"createWriteReq net.js:656",0x2922c514eda8,*
code-creation,LazyCompile,0x272317f92580,236,"WritableState.onwrite _stream_writable.js:96",0x2922c51537f0,~
code-creation,LazyCompile,0x272317f92680,266,"WritableState.onwrite _stream_writable.js:96",0x2922c51537f0,*
code-creation,LazyCompile,0x272317f927a0,324,"onwriteStateUpdate _stream_writable.js:236",0x18b141081d58,~
code-creation,LazyCompile,0x272317f92900,438,"onwriteStateUpdate _stream_writable.js:236",0x18b141081d58,*
code-creation,LazyCompile,0x272317f92ac0,432,"needFinish _stream_writable.js:343",0x18b141082078,~
code-creation,LazyCompile,0x272317f92c80,834,"needFinish _stream_writable.js:343",0x18b141082078,*
code-creation,LazyCompile,0x272317f92fe0,620,"nextTick node.js:475",0x18b1410533e8,~
code-creation,Stub,0x272317f93260,238,"CallFunctionStub_Args0"
code-creation,Stub,0x272317f93360,2608,"RecordWriteStub"
code-creation,LazyCompile,0x272317f93da0,1139,"nextTick node.js:475",0x18b1410533e8,*
code-creation,LazyCompile,0x272317f94220,360,"afterWrite _stream_writable.js:269",0x18b141081e98,~
tick,0x10033428c,0x7fff5fbfe440,0,0x7fff5fbfe490,2,0x272317f818ce,0x272317f69ec9
code-creation,Function,0x272317f943a0,336,"onwriteDrain _stream_writable.js:280",0x18b141081f38,~
code-creation,Stub,0x272317f94500,244,"CallFunctionStub_Args2"
code-creation,LazyCompile,0x272317f94600,763,"afterWrite _stream_writable.js:269",0x18b141081e98,*
code-creation,LazyCompile,0x272317f94900,748,"tickDone node.js:350",0x18b1410530c8,~
code-creation,Stub,0x272317f94c00,2649,"RecordWriteStub"
code-creation,LazyCompile,0x272317f95660,1345,"tickDone node.js:350",0x18b1410530c8,*
code-creation,LazyCompile,0x272317f95bc0,452,"_tickFromSpinner node.js:382",0x18b141053208,~
code-creation,LazyCompile,0x272317f95da0,653,"_tickFromSpinner node.js:382",0x18b141053208,*
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002f5257,0x7fff5fbfec20,0,0x7fff5fbfed48,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10024e316,0x7fff5fbfecf0,0,0x101007800,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
code-creation,LazyCompile,0x272317f96040,248,"isEmpty _linklist.js:73",0x2922c510a1f8,~
code-creation,LazyCompile,0x272317f96140,334,"isEmpty _linklist.js:73",0x2922c510a1f8,*
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f82985,0x7fff5fbff420,0,0x272317f6a739,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x100123e42,0x7fff5fbff7c0,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f18144,0x7fff5fbfef88,0,0x272317f7d15c,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f0c9c0,0x7fff5fbfed40,0,0x272317f940a9,0,0x272317f80e18,0x272317f9273a,0x272317f7fcaf,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f12181,0x7fff5fbff3b8,0,0x7fff5fbff3f8,0,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100303635,0x7fff5fbfed30,0,0x7fff5fbfed70,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f23e8a,0x7fff5fbff418,0,0x272317f6a513,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f90026,0x7fff5fbfef78,0,0x38e13fb43d1,0,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002377e5,0x7fff5fbfef00,0,0x38e13f08621,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10019de4a,0x7fff5fbff580,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f07302,0x7fff5fbff3e8,0,0x272317f67917,0,0x272317f6a739
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10014377b,0x7fff5fbff6a0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f21300,0x7fff5fbfef70,0,0x10a5b612f6a9,0
code-creation,LazyCompile,0x272317f962a0,352,"append _linklist.js:63",0x2922c510a158,~
code-creation,Stub,0x272317f96400,2630,"RecordWriteStub"
code-creation,Stub,0x272317f96e60,2662,"RecordWriteStub"
code-creation,Stub,0x272317f978e0,2595,"RecordWriteStub"
code-creation,LazyCompile,0x272317f98320,961,"append _linklist.js:63",0x2922c510a158,*
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
code-creation,LazyCompile,0x272317f98700,728,"validChunk _stream_writable.js:143",0x18b141081a38,~
code-creation,LazyCompile,0x272317f989e0,960,"validChunk _stream_writable.js:143",0x18b141081a38,*
code-creation,LazyCompile,0x272317f98da0,1348,"Socket._write net.js:617",0x2922c51502e8,~
tick,0x1002612a0,0x7fff5fbfe7b0,0,0x400087d2cf9b3924,2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
code-creation,Stub,0x272317f99300,2630,"RecordWriteStub"
code-creation,LazyCompile,0x272317f99d60,2307,"Socket._write net.js:617",0x2922c51502e8,*
code-creation,LazyCompile,0x272317f9a680,1004,"onwrite _stream_writable.js:243",0x18b141081df8,~
code-creation,Stub,0x272317f9aa80,2654,"RecordWriteStub"
code-creation,Stub,0x272317f9b4e0,2588,"RecordWriteStub"
code-creation,LazyCompile,0x272317f9bf00,1463,"onwrite _stream_writable.js:243",0x18b141081df8,*
code-creation,LazyCompile,0x272317f9c4c0,1156,"afterWrite net.js:704",0x2922c514ee48,~
code-creation,Stub,0x272317f9c960,244,"CallFunctionStub_Args1"
code-creation,LazyCompile,0x272317f9ca60,2097,"afterWrite net.js:704",0x2922c514ee48,*
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10029e40c,0x7fff5fbff050,0,0x7fff5fbff130,0,0x272317f9ce33
tick,0x272317f2973e,0x7fff5fbff410,0,0x272317f6a56a,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f68e9c,0x7fff5fbff430,0,0x272317f6a52e,0
tick,0x10012fdf4,0x7fff5fbf76d0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10028a939,0x7fff5fbfeaa0,0,0x14b988813381,4,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002376f2,0x7fff5fbff2c0,0,0x0,0,0x272317f8bc47,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94438f92,0x7fff5fbfeba8,0,0x10012b240,0,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433bf5,0x7fff5fbff340,0,0x272317f0d507,0,0x272317f8a8d0,0x272317f6a53e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f7ca90,0x7fff5fbff2b0,0,0x272317f7cb8c,0,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f82eb0,0x7fff5fbfef90,0,0x272317f7d472,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10019deed,0x7fff5fbff580,0,0x0,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f06061,0x7fff5fbff570,0,0x0,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100386441,0x7fff5fbfee10,0,0x7fff5fbfee50,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002f5274,0x7fff5fbfec20,0,0x1e6627341dc1,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbf76a8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff91e9c801,0x7fff5fbff250,0,0x7fff5fbff280,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f21312,0x7fff5fbfef70,0,0x10a5b612f6a9,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10024e340,0x7fff5fbfecf0,0,0x101007800,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10013352b,0x7fff5fbff6f0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f83005,0x7fff5fbfef10,0,0x272317f421c4,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94438654,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f0f776,0x7fff5fbfefa0,0,0x272317f7d4ba,0,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbf76a8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100290f61,0x7fff5fbff520,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10024de61,0x7fff5fbfed00,0,0x7fff5fbfed20,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94438f92,0x7fff5fbfeba8,0,0x10012b240,0,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x10012cf31,0x7fff5fbff780,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94432cab,0x7fff5fbff790,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100293c7f,0x7fff5fbfe990,0,0x1010498d8,4,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbf76a8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012d393,0x7fff5fbff770,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002f521d,0x7fff5fbfec20,0,0x1e6627341dc1,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100303e23,0x7fff5fbfed30,0,0x272317f9c34c,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100133516,0x7fff5fbff6f0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001c1370,0x7fff5fbff538,0,0x0,4
tick,0x1003dfcd1,0x7fff5fbff6c0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f59720,0x7fff5fbfee98,0,0x272317f7d8a1,0,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001df554,0x7fff5fbff3a0,0,0x80000000,0,0x272317f8a8d0,0x272317f6a53e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012edec,0x7fff5fbf76b0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f6aa1f,0x7fff5fbff430,0,0x2922c519c319,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9937b4ef,0x7fff5fbff6c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001c139f,0x7fff5fbff650,0,0x0,4
tick,0x7fff9447cfe1,0x7fff5fbff250,0,0x7fff5fbff280,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100288ba0,0x7fff5fbfeac0,0,0x101007810,4,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x10012d49b,0x7fff5fbff790,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001b1947,0x7fff5fbff180,0,0x0,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f59888,0x7fff5fbfef30,0,0x272317f4219a,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9447d020,0x7fff5fbfec60,0,0x7fff5fbfecb0,0,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x10013351b,0x7fff5fbff6f0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100143768,0x7fff5fbff6a0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100133597,0x7fff5fbff6f0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f8aad8,0x7fff5fbff408,0,0x2922c517cc41,0,0x272317f6aa16
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff91e9c82c,0x7fff5fbff250,0,0x7fff5fbff280,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10019de50,0x7fff5fbff580,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f296e5,0x7fff5fbff410,0,0x272317f6a4fd,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100304682,0x7fff5fbff5e0,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10017bfe1,0x7fff5fbff310,0,0x7fff5fbff3c0,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10013017c,0x7fff5fbf76d0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443415f,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100303639,0x7fff5fbfed30,0,0x272317f9c34c,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10030461b,0x7fff5fbff5e0,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94438f92,0x7fff5fbfeba8,0,0x10012b240,0,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f18f00,0x7fff5fbff3f8,0,0x18b14101aca1,0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100143768,0x7fff5fbff6a0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f06061,0x7fff5fbff570,0,0x0,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100304379,0x7fff5fbfedc0,0,0x38e13f25619,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001ce2f0,0x7fff5fbff3c8,0,0x272317f06362,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100130179,0x7fff5fbf76d0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f830c8,0x7fff5fbfee98,0,0x272317f7d7e1,0,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001d12d3,0x7fff5fbfeba0,0,0x10498c8,4,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100288ad9,0x7fff5fbff570,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff98889580,0x7fff5fbff3c8,0,0x100313a74,0,0x272317f8a8d0,0x272317f6a53e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9937b4f8,0x7fff5fbff6c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
code-creation,LazyCompile,0x272317f9d2a0,376,"makeLoad /Users/wavded/Projects/node-in-practice/trunk/listings/debugging/prof/test.js:1",0x2922c5107be0,~
code-creation,LazyCompile,0x272317f9d420,376,"makeLoad /Users/wavded/Projects/node-in-practice/trunk/listings/debugging/prof/test.js:1",0x2922c5107be0,~
code-creation,LazyCompile,0x272317f9d5a0,382,"makeLoad /Users/wavded/Projects/node-in-practice/trunk/listings/debugging/prof/test.js:1",0x2922c5107be0,*
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0xbeeddead,0,0x272317f6b8ef,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94438f92,0x7fff5fbfeba8,0,0x10012b240,0,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002341cb,0x7fff5fbfee60,0,0x272317f062c1,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x100143721,0x7fff5fbff6d0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94438f92,0x7fff5fbfeba8,0,0x10012b240,0,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012d45e,0x7fff5fbff7b0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002b77aa,0x7fff5fbff4c0,0,0x0,4
tick,0x10013017c,0x7fff5fbf76d0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002b7771,0x7fff5fbfea10,0,0x38e13f96549,4,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x1001b1974,0x7fff5fbff180,0,0x0,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f0f71f,0x7fff5fbfefa0,0,0x272317f7d4ba,0,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10024de61,0x7fff5fbfed00,0,0x7fff5fbfed20,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001ce2f6,0x7fff5fbff3b8,0,0x7fff5fbff3f0,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100133534,0x7fff5fbff6f0,0,0x0,5
tick,0x100127140,0x7fff5fbff7b0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10023384f,0x7fff5fbff1c0,0,0x1,0,0x272317f8bc47,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10030b12d,0x7fff5fbff3c0,0,0x7fff5fbff3e0,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f55c47,0x7fff5fbfee30,0,0x272317f98a50,0,0x272317f91861,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f23e8a,0x7fff5fbff418,0,0x272317f6a513,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10019da51,0x7fff5fbff5c0,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10024e003,0x7fff5fbfecb0,0,0x2,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012edec,0x7fff5fbff7a0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100172521,0x7fff5fbfee50,0,0x7fff5fbfeef0,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10000618d,0x7fff5fbff720,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100132b51,0x7fff5fbfec00,1,0x100008407,5,0x272317f940a9,0x272317f9c34c,0x272317f9273a,0x272317f9a32c,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f7dfea,0x7fff5fbfee98,0,0x272317f7d8d7,0,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100127140,0x7fff5fbff7b0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100123f1e,0x7fff5fbff7c0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94438654,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001b48aa,0x7fff5fbff090,0,0x100b0e5e0,0,0x272317f19999,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f6a917,0x7fff5fbff438,0,0x18b141004121,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100123e36,0x7fff5fbff7c0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10019762e,0x7fff5fbfed90,0,0x1006632a0,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f0f79d,0x7fff5fbfefa0,0,0x38e13e11a41,0,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1000060e3,0x7fff5fbff670,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f7e1f1,0x7fff5fbfebb8,0,0x13e2a901,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x272317f6af04,0x7fff5fbff430,0,0x272317f6a5b6,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100143803,0x7fff5fbff6a0,0,0x0,5
tick,0x100143764,0x7fff5fbff6a0,0,0x0,5
tick,0x1001334f1,0x7fff5fbff720,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f2973e,0x7fff5fbff410,0,0x272317f6a56a,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100127150,0x7fff5fbff7a0,0,0x0,5
tick,0x10012cf31,0x7fff5fbff780,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f59729,0x7fff5fbfee98,0,0x272317f7d8a1,0,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012d45e,0x7fff5fbff7b0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f15b78,0x7fff5fbff3e0,0,0x272317f190fe,0,0x272317f6a56a
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f421d6,0x7fff5fbfef38,0,0x18b141004121,0,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002b7731,0x7fff5fbff4f0,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f8b878,0x7fff5fbff3c8,0,0x2922c519c3a1,0,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100006041,0x7fff5fbff6d8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10013fb60,0x7fff5fbfec78,0,0x10001c977,0,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100006192,0x7fff5fbff718,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002393f3,0x7fff5fbfee30,0,0x7fff5fbfef18,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001b1571,0x7fff5fbff230,0,0x7fff5fbff280,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94434168,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1000216c4,0x7fff5fbff730,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001515a1,0x7fff5fbfecb0,0,0x7fff5fbfed50,0,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10013352b,0x7fff5fbff6f0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f2b0a4,0x7fff5fbff2c8,0,0x272317f7cd06,0,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100234203,0x7fff5fbfee60,0,0x272317f062c1,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x100133573,0x7fff5fbff6f0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f18e15,0x7fff5fbff3e8,0,0x272317f190b0,0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f961ee,0x7fff5fbff330,0,0x2922c517cb69,0,0x272317f8a39b,0x272317f8b97e,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f8ff6a,0x7fff5fbfef78,0,0x38e13e9ecc1,0,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1003e258c,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001b65a3,0x7fff5fbfee00,0,0x272317f0f681,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94432c8d,0x7fff5fbff790,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012ede8,0x7fff5fbff7a0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f6b3fc,0x7fff5fbff420,0,0x272317f6aa16,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012fdf2,0x7fff5fbf76d0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100123e36,0x7fff5fbff7c0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002b779b,0x7fff5fbff4c0,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012d38b,0x7fff5fbff770,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbf76a8,0,0x0,5
tick,0x1003dfcd1,0x7fff5fbff6c0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002341ee,0x7fff5fbfee60,0,0x272317f062c1,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100231199,0x7fff5fbfee30,0,0x38e13ec9181,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10019deed,0x7fff5fbff580,0,0x0,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100288ef1,0x7fff5fbff220,0,0x7fff5fbff2b0,0,0x272317f8bc47,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012d49b,0x7fff5fbff790,0,0x0,5
tick,0x10002167b,0x7fff5fbff780,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001334f1,0x7fff5fbff720,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f0637c,0x7fff5fbff408,0,0x272317f8a8d0,0,0x272317f6a53e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f1cba5,0x7fff5fbff428,0,0x272317f6aa24,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012d49b,0x7fff5fbff790,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001334f1,0x7fff5fbff720,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9629232b,0x7fff5fbfeb70,0,0x101007800,0,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9937b4f8,0x7fff5fbff6f8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94438f92,0x7fff5fbfeba8,0,0x10012b240,0,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f91a03,0x7fff5fbfee90,0,0x10a5b612f6a9,0,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001244c4,0x7fff5fbff648,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100143768,0x7fff5fbff6a0,0,0x0,5
tick,0x10019deed,0x7fff5fbff580,0,0x0,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10001c925,0x7fff5fbfecb0,0,0x7fff5fbfed50,0,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1000216c4,0x7fff5fbff730,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100123dbc,0x7fff5fbff7c0,0,0x0,5
tick,0x1001b196a,0x7fff5fbff180,0,0x0,0,0x272317f190b0,0x272317f6a56a
tick,0x10013352b,0x7fff5fbff6f0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001334f1,0x7fff5fbff720,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbf76a8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100193231,0x7fff5fbff240,0,0x400087d2cf9b3924,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f23e92,0x7fff5fbff418,0,0x272317f6a7c7,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f29708,0x7fff5fbff410,0,0x272317f6a4fd,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f4209f,0x7fff5fbfef38,0,0x18b141004121,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f7e0c4,0x7fff5fbfebb8,0,0xfffffffffffffff6,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100196d01,0x7fff5fbfeda0,0,0x7fff5fbfede0,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100386441,0x7fff5fbfee10,0,0x7fff5fbfee50,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100143768,0x7fff5fbff6a0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100290fad,0x7fff5fbff4f0,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f1b9ca,0x7fff5fbff360,0,0x272317f198cd,0,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10013352b,0x7fff5fbff6f0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012d49b,0x7fff5fbff790,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94434168,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbf76a8,0,0x0,5
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d662,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d658,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x272317f9d64d,0x7fff5fbff350,0,0x2922c519bef9,0,0x272317f6b8ef,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001ce32b,0x7fff5fbff320,0,0x2922c5176329,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10019deed,0x7fff5fbff580,0,0x0,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012cfe3,0x7fff5fbff770,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100123da7,0x7fff5fbff7c0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100123dad,0x7fff5fbff7c0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100149af8,0x7fff5fbff610,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10017c002,0x7fff5fbff290,0,0x18b141004121,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f8a8ae,0x7fff5fbff428,0,0x272317f6a53e,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f6af24,0x7fff5fbff430,0,0x272317f6a5b6,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f7e08f,0x7fff5fbfebb8,0,0xfffffffffffffff6,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100304618,0x7fff5fbff5e0,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f0f6f7,0x7fff5fbfefa0,0,0x272317f7d4ba,0,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10024de61,0x7fff5fbfed00,0,0x7fff5fbfed20,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100143764,0x7fff5fbff6a0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f0e5e0,0x7fff5fbff2c8,0,0x272317f7ccfb,0,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f7fee1,0x7fff5fbfedf0,0,0x7fff5fbfee60,0,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100123f04,0x7fff5fbff7c0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100386441,0x7fff5fbfee10,0,0x7fff5fbfee50,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbf76a8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f2f407,0x7fff5fbfef98,0,0x272317f7d114,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002f525a,0x7fff5fbfec20,0,0x1e6627341dc1,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002461a1,0x7fff5fbff6e0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x10012d05f,0x7fff5fbff770,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f1ef97,0x7fff5fbff428,0,0x272317f6a476,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f6a4e7,0x7fff5fbff428,0,0x18b1410171f9,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f7e08f,0x7fff5fbfebb8,0,0xfffffffffffffff6,0,0x272317f7d888,0x272317f421c4,0x272317f7d49f,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10028e430,0x7fff5fbfe9c8,0,0x1002940ec,4,0x272317f92477,0x272317f9a0f2,0x272317f91c23,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001c1371,0x7fff5fbff690,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10000618d,0x7fff5fbff720,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbf76a8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94432c9e,0x7fff5fbf76a0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012d49b,0x7fff5fbff790,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f1810c,0x7fff5fbfef88,0,0x272317f7d15c,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100123da7,0x7fff5fbff7c0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f7ca88,0x7fff5fbff2b0,0,0x272317f7cb8c,0,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9937a3d8,0x7fff5fbfecd0,0,0x805fbfedf8,0,0x272317f17cfc,0x272317f86d17,0x272317f919c7,0x272317f90090,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f1f0ad,0x7fff5fbfef88,0,0x272317f7d48f,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001334f1,0x7fff5fbff720,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012d05f,0x7fff5fbff770,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f8de04,0x7fff5fbfef28,0,0x18b141004121,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1003e07e2,0x7fff5fbff3b0,0,0x52e5b5c6,0,0x272317f8a8d0,0x272317f6a53e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100291030,0x7fff5fbff4f0,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94432caf,0x7fff5fbff790,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10026e28e,0x7fff5fbff600,0,0x0,5
tick,0x100123e36,0x7fff5fbff7c0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10030461b,0x7fff5fbff5e0,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100193231,0x7fff5fbff240,0,0x400087d2cf9b3924,0,0x272317f190b0,0x272317f6a56a
tick,0x100291056,0x7fff5fbff4f0,0,0x0,4
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10023782a,0x7fff5fbfef00,0,0x2922c51a0251,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1002342fe,0x7fff5fbfee60,0,0x272317f062c1,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100304472,0x7fff5fbfedc0,0,0x38e12e76eb1,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f23e92,0x7fff5fbff418,0,0x272317f6a7c7,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012ee03,0x7fff5fbf76b0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100172521,0x7fff5fbfee50,0,0x7fff5fbfeef0,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9937b4f8,0x7fff5fbff6c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f8ff57,0x7fff5fbfef78,0,0x38e12e8ba51,0,0x272317f8eebe,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f0d4e9,0x7fff5fbff4b8,0,0x0,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9447d03c,0x7fff5fbff250,0,0x7fff5fbff280,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f7d45d,0x7fff5fbfefa0,0,0x18b1410170d9,0
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10012ee03,0x7fff5fbff7a0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x10028bcc0,0x7fff5fbfede8,0,0x100304716,0,0x272317f7d4ba,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbf76a8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f0f75e,0x7fff5fbfefa0,0,0x272317f7d4ba,0,0x272317f8ee0b,0x272317f7cd56,0x272317f8bc93,0x272317f8b87d,0x272317f6a97e
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x1001ce2f0,0x7fff5fbff3c8,0,0x272317f06362,0,0x272317f190b0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9937b4ef,0x7fff5fbff6c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x100133534,0x7fff5fbff6f0,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x272317f2597e,0x7fff5fbff3f0,0,0x272317f18f70,0,0x272317f6a56a
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff94433b2e,0x7fff5fbff798,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
tick,0x7fff9443864a,0x7fff5fbf76c8,0,0x0,5
================================================
FILE: listings/debugging/repl/repl-app.js
================================================
var http = require('http')
var stats = { numReqs: 0 }
var server = module.exports = http.createServer()
server.on('request', function (req, res) {
stats.numReqs++
res.end('Hello World')
})
server.listen(3000)
console.log('server listening on 3000')
var net = require('net')
var repl = require('repl')
net.createServer(function (socket) {
var r = repl.start({
input: socket,
output: socket,
terminal: true,
useGlobal: true
})
r.on('exit', function() {
socket.end()
})
r.context.server = server
r.context.stats = stats
}).listen(1337)
console.log('repl listening on 1337')
================================================
FILE: listings/debugging/repl/repl-basic.js
================================================
var repl = require('repl')
repl.start({
input: process.stdin,
output: process.stdout
})
================================================
FILE: listings/debugging/repl/repl-client.js
================================================
var net = require('net')
var socket = net.connect(1337)
process.stdin.setRawMode(true)
process.stdin.pipe(socket)
socket.pipe(process.stdout)
socket.once('close', function () {
process.stdin.destroy()
})
================================================
FILE: listings/debugging/repl/repl-tcp-terminal.js
================================================
var net = require('net')
var repl = require('repl')
net.createServer(function (socket) {
var r = repl.start({
input: socket,
output: socket,
terminal: true
})
r.on('exit', function() {
socket.end()
})
// r.context.socket = socket
}).listen(1337)
console.log('node repl listening on 1337')
================================================
FILE: listings/debugging/repl/repl-tcp.js
================================================
var net = require('net')
var repl = require('repl')
net.createServer(function (socket) {
var r = repl.start({
input: socket,
output: socket
})
r.on('exit', function() {
socket.end()
})
}).listen(1337)
console.log('node repl listening on 1337')
================================================
FILE: listings/debugging/trace/hello.js
================================================
console.log('hello world')
================================================
FILE: listings/events/category.js
================================================
var util = require('util');
var events = require('events');
function MusicPlayer() {
events.EventEmitter.call(this);
this.on(MusicPlayer.events.play, this.play.bind(this));
}
var e = MusicPlayer.events = { //
play: 'play'
, pause: 'pause'
, stop: 'stop'
, ff: 'ff'
, rw: 'rw'
, addTrack: 'add-track'
};
util.inherits(MusicPlayer, events.EventEmitter);
MusicPlayer.prototype.play = function() {
this.playing = true;
};
var musicPlayer = new MusicPlayer();
musicPlayer.on(e.play, function() { //
console.log('Now playing');
});
musicPlayer.emit(e.play);
================================================
FILE: listings/events/connect-utils-merge.js
================================================
exports.merge = function(a, b){
if (a && b) {
for (var key in b) {
a[key] = b[key];
}
}
return a;
};
================================================
FILE: listings/events/detect-2.js
================================================
var redis = require('redis'),
var client = redis.createClient();
client.on('error', function(err) {
console.error('Error:', err);
});
client.on('monitor', function(timestamp, args) { //
console.log('Time:', timestamp, 'arguments:', args);
});
client.on('ready', function() {
// Start app here
});
================================================
FILE: listings/events/errors.js
================================================
var util = require('util');
var events = require('events');
function MusicPlayer() {
events.EventEmitter.call(this);
}
util.inherits(MusicPlayer, events.EventEmitter);
var musicPlayer = new MusicPlayer();
musicPlayer.on('play', function(track) {
this.emit('error', 'unable to play!');
});
musicPlayer.on('error', function(err) { //
console.error('Error:', err);
});
setTimeout(function() {
musicPlayer.emit('play', 'Little Comets - Jennifer');
}, 1000);
================================================
FILE: listings/events/events-domains.js
================================================
var util = require('util');
var domain = require('domain'); //
var events = require('events');
var audioDomain = domain.create();
function AudioDevice() {
events.EventEmitter.call(this);
this.on('play', this.play.bind(this));
}
util.inherits(AudioDevice, events.EventEmitter);
AudioDevice.prototype.play = function() {
this.emit('error', 'not implemented yet');
};
function MusicPlayer() {
events.EventEmitter.call(this);
this.audioDevice = new AudioDevice();
this.on('play', this.play.bind(this));
this.emit('error', 'No audio tracks are available'); //
}
util.inherits(MusicPlayer, events.EventEmitter);
MusicPlayer.prototype.play = function() {
this.audioDevice.emit('play');
console.log('Now playing');
};
audioDomain.on('error', function(err) {
console.log('audioDomain error:', err);
});
audioDomain.run(function() { //
var musicPlayer = new MusicPlayer();
musicPlayer.play();
});
================================================
FILE: listings/events/express-1.js
================================================
var express = require('express');
var app = express();
app.on('hello-alert', function() {
console.warn('Warning!');
});
app.get('/', function(req, res){
res.app.emit('hello-alert'); //
res.send('hello world');
});
app.listen(3000);
================================================
FILE: listings/events/inherit-2.js
================================================
var util = require('util');
var events = require('events');
function MusicPlayer() {
this.playing = false;
events.EventEmitter.call(this);
}
util.inherits(MusicPlayer, events.EventEmitter);
var musicPlayer = new MusicPlayer();
musicPlayer.on('play', function(track) {
this.playing = true;
});
musicPlayer.on('stop', function() {
this.playing = false;
});
musicPlayer.on('play', function(track) { //
console.log('Track now playing:', track);
});
musicPlayer.emit('play', 'The Roots - The Fire');
setTimeout(function() {
musicPlayer.emit('stop');
}, 1000);
================================================
FILE: listings/events/inherit-3.js
================================================
function play(track) { //
this.playing = true;
});
musicPlayer.on('play', play);
musicPlayer.removeListener('play', play);
================================================
FILE: listings/events/inherit.js
================================================
var util = require('util');
var events = require('events');
var AudioDevice = {
play: function(track) {
// Stub: Trigger playback through iTunes, mpg123, etc.
},
stop: function() {
}
};
function MusicPlayer() {
this.playing = false; //
events.EventEmitter.call(this);
}
util.inherits(MusicPlayer, events.EventEmitter); //
var musicPlayer = new MusicPlayer();
musicPlayer.on('play', function(track) {
this.playing = true;
AudioDevice.play(track);
});
musicPlayer.on('stop', function() {
this.playing = false;
AudioDevice.stop();
});
musicPlayer.emit('play', 'The Roots - The Fire'); //
setTimeout(function() {
musicPlayer.emit('stop');
}, 1000);
================================================
FILE: listings/events/js-signals.js
================================================
var signals = require('signals');
var myObject = {
started: new signals.Signal()
};
function onStarted(param1, param2){
console.log(param1, param2);
}
myObject.started.add(onStarted); //
myObject.started.dispatch('hello', 'world'); //
================================================
FILE: listings/events/mixin-1.js
================================================
var EventEmitter = require('events').EventEmitter;
function MusicPlayer(track) {
this.track = track;
this.playing = false;
for (var methodName in EventEmitter.prototype) { //
this[methodName] = EventEmitter.prototype[methodName];
}
}
MusicPlayer.prototype = {
toString: function() {
if (this.playing) {
return 'Now playing: ' + this.track;
} else {
return 'Stopped';
}
}
};
var musicPlayer = new MusicPlayer('Girl Talk - Still Here');
musicPlayer.on('play', function() {
this.playing = true;
console.log(this.toString());
});
musicPlayer.emit('play');
================================================
FILE: listings/events/mqtest.js
================================================
var zmq = require('zmq');
var push = zmq.socket('push');
var pull = zmq.socket('pull');
push.bindSync('tcp://127.0.0.1:3000');
pull.connect('tcp://127.0.0.1:3000');
console.log('Producer bound to port 3000');
setInterval(function() {
console.log('sending work');
push.send('some work');
}, 500);
pull.on('message', function(msg) {
console.log('work: %s', msg.toString());
});
================================================
FILE: listings/events/rabbitmq.js
================================================
var rabbitHub = require('rabbitmq-nodejs-client');
var subHub = rabbitHub.create( { task: 'sub', channel: 'myChannel' } );
var pubHub = rabbitHub.create( { task: 'pub', channel: 'myChannel' } );
subHub.on('connection', function(hub) {
hub.on('message', function(msg) { //
console.log(msg);
}.bind(this));
});
subHub.connect();
pubHub.on('connection', function(hub) {
hub.send('Hello World!');
});
pubHub.connect();
================================================
FILE: listings/events/redis-pubsub.js
================================================
var redis = require('redis');
var client1 = redis.createClient();
var client2 = redis.createClient();
var msg_count = 0;
client1.on('subscribe', function(channel, count) {
client2.publish('channel', 'Hello world.');
});
client1.on('message', function(channel, message) {
console.log('client1 channel ' + channel + ': ' + message);
client1.unsubscribe();
client1.end(); //
client2.end();
});
client1.subscribe('channel');
================================================
FILE: listings/events/reflection-1.js
================================================
var util = require('util');
var events = require('events');
function EventTracker() {
events.EventEmitter.call(this);
}
util.inherits(EventTracker, events.EventEmitter);
var eventTracker = new EventTracker();
eventTracker.on('newListener', function(name, listener) // {
console.log('Event name added:', name);
});
eventTracker.on('a listener', function() {
// This will cause 'newListener' to fire
});
================================================
FILE: listings/events/reflection-2.js
================================================
var util = require('util');
var events = require('events');
function Pulsar(speed, times) {
events.EventEmitter.call(this);
var self = this;
this.speed = speed;
this.times = times;
this.on('newListener', function(eventName, listener) {
if (eventName === 'pulse') {
self.start();
}
});
}
util.inherits(Pulsar, events.EventEmitter);
Pulsar.prototype.start = function() {
var self = this;
var id = setInterval(function() {
self.emit('pulse');
self.times--;
if (self.times === 0) {
clearInterval(id);
}
}, this.speed);
};
var pulsar = new Pulsar(500, 5);
pulsar.on('pulse', function() { //
console.log('.');
});
================================================
FILE: listings/events/reflection-3.js
================================================
Pulsar.prototype.stop = function() {
if (this.listeners('pulse').length === 0) {
throw new Error('No listeners have been added!');
}
};
var pulsar = new Pulsar(500, 5);
pulsar.stop();
================================================
FILE: listings/events/short.js
================================================
var util = require('util');
var events = require('events');
function MusicPlayer() {
events.EventEmitter.call(this);
}
util.inherits(MusicPlayer, events.EventEmitter); //
================================================
FILE: listings/file-system/database/client.js
================================================
var Database = require('./database')
var client = new Database('./test.db')
client.on('load', function () {
var foo = client.get('foo')
client.set('bar', 'my sweet value', function (er) {
if (er) console.error(er)
console.log('write successful')
})
client.del('baz')
})
================================================
FILE: listings/file-system/database/database.js
================================================
var fs = require('fs')
var EventEmitter = require('events').EventEmitter
var Database = function (path) {
this.path = path
this._records = Object.create(null)
this._writeStream = fs.createWriteStream(this.path, {
encoding: 'utf8',
flags: 'a'
})
this._load()
}
Database.prototype = Object.create(EventEmitter.prototype)
Database.prototype._load = function () {
var stream = fs.createReadStream(this.path, { encoding: 'utf8' })
var database = this
var data = ''
stream.on('readable', function () {
data += stream.read()
var records = data.split('\n')
data = records.pop()
for (var i = 0; i < records.length; i++) {
try {
var record = JSON.parse(records[i])
if (record.value == null)
delete database._records[record.key]
else
database._records[record.key] = record.value
} catch (e) {
database.emit('error', 'found invalid record:', records[i])
}
}
})
stream.on('end', function () {
database.emit('load')
})
}
Database.prototype.get = function (key) {
return this._records[key] || null
}
Database.prototype.set = function (key, value, cb) {
var toWrite = JSON.stringify({ key: key, value: value }) + '\n'
if (value == null)
delete this._records[key]
else
this._records[key] = value
this._writeStream.write(toWrite, cb)
}
Database.prototype.del = function (key, cb) {
return this.set(key, null, cb)
}
module.exports = Database
================================================
FILE: listings/file-system/locking/index.js
================================================
var locker = require('./locker')
locker.lock(function (err) {
if (err) throw err
console.log('locked')
locker.unlock(function () {
console.log('unlocked')
})
})
================================================
FILE: listings/file-system/locking/locker.js
================================================
var fs = require('fs')
var hasLock = false
var lockDir = 'config.lock'
exports.lock = function (cb) {
if (hasLock) return cb()
fs.mkdir(lockDir, function (err) {
if (err) return cb(err)
fs.writeFile(lockDir+'/'+process.pid, function (err) {
if (err) console.error(err)
hasLock = true
return cb()
})
})
}
exports.unlock = function (cb) {
if (!hasLock) return cb()
fs.unlink(lockDir+'/'+process.pid, function (err) {
if (err) return cb(err)
fs.rmdir(lockDir, function (err) {
if (err) return cb(err)
hasLock = false
cb()
})
})
}
process.on('exit', function () {
if (hasLock) {
fs.unlinkSync(lockDir+'/'+process.pid)
fs.rmdirSync(lockDir)
console.log('removed lock')
}
})
================================================
FILE: listings/file-system/posix/file.txt
================================================
some data to write
================================================
FILE: listings/file-system/posix/posix.js
================================================
var fs = require('fs')
var assert = require('assert')
var fd = fs.openSync('./file.txt', 'w+')
var writeBuf = new Buffer('some data to write')
fs.writeSync(fd, writeBuf, 0, writeBuf.length, 0)
var readBuf = new Buffer(writeBuf.length)
fs.readSync(fd, readBuf, 0, writeBuf.length, 0)
assert.equal(writeBuf.toString(), readBuf.toString())
fs.closeSync(fd)
================================================
FILE: listings/file-system/recursive/dir-a/dir-b/file-c.js
================================================
================================================
FILE: listings/file-system/recursive/dir-a/dir-b/file-d.txt
================================================
================================================
FILE: listings/file-system/recursive/dir-a/file-a.js
================================================
================================================
FILE: listings/file-system/recursive/dir-a/file-b.txt
================================================
================================================
FILE: listings/file-system/recursive/finder.js
================================================
var fs = require('fs')
var join = require('path').join
exports.findSync = function (nameRe, startPath) {
var results = []
function finder (path) {
var files = fs.readdirSync(path)
for (var i = 0; i < files.length; i++) {
var fpath = join(path,files[i])
var stats = fs.statSync(fpath)
if (stats.isDirectory()) finder(fpath)
if (stats.isFile() && nameRe.test(files[i])) results.push(fpath)
}
}
finder(startPath)
return results
}
exports.find = function (nameRe, startPath, cb) {
var results = []
var asyncOps = 0
function finder (path) {
asyncOps++
fs.readdir(path, function (er, files) {
if (er) return cb(er)
files.forEach(function (file) {
var fpath = join(path,file)
asyncOps++
fs.stat(fpath, function (er, stats) {
if (er) return cb(er)
if (stats.isDirectory()) finder(fpath)
if (stats.isFile() && nameRe.test(file)) results.push(fpath)
asyncOps--
if (asyncOps == 0) cb(null, results)
})
})
asyncOps--
if (asyncOps == 0) cb(null, results)
})
}
finder(startPath)
}
console.log(exports.findSync(/file.*/, '.'))
exports.find(/file.*/, '.', console.log)
================================================
FILE: listings/file-system/sync-cost/bad.js
================================================
var fs = require('fs')
var http = require('http')
http.createServer(function (req, res) {
var data = fs.readFileSync('./output.dat')
res.end(data)
}).listen(3000)
================================================
FILE: listings/file-system/sync-cost/good.js
================================================
var fs = require('fs')
var http = require('http')
var data = fs.readFileSync('./output.dat')
http.createServer(function (req, res) {
res.end(data)
}).listen(3000)
================================================
FILE: listings/file-system/watching/watchdir/file.js
================================================
================================================
FILE: listings/file-system/watching/watcher.js
================================================
var fs = require('fs')
fs.watch('./watchdir', console.log)
fs.watchFile('./watchdir', console.log)
fs.watch('./watchfile', console.log)
fs.watchFile('./watchfile', console.log)
================================================
FILE: listings/file-system/watching/watchfile
================================================
================================================
FILE: listings/globals/arch.js
================================================
switch (process.arch) {
case 'x64':
require('./lib.x64.node');
break;
case 'ia32':
require('./lib.Win32.node');
break;
default:
throw new Error('Unsupported process.arch:', process.arch);
}
================================================
FILE: listings/globals/arguments-benchmark.js
================================================
var args = {
'-h': displayHelp,
'-r': readFile
};
function displayHelp() {
console.log('Argument processor:', args);
}
function readFile(file) {
if (file && file.length) {
console.log('Reading:', file);
console.time('read');
var stream = require('fs').createReadStream(file)
stream.on('end', function() {
console.timeEnd('read'); //
});
stream.pipe(process.stdout);
} else {
console.error('A file must be provided with the -r option');
process.exit(1);
}
}
if (process.argv.length > 0) {
process.argv.forEach(function(arg, index) {
if (args[arg]) {
args[arg].apply(this, process.argv.slice(index + 1));
}
});
}
================================================
FILE: listings/globals/arguments-status-code.js
================================================
var args = {
'-h': displayHelp,
'-r': readFile
};
function displayHelp() {
console.log('Argument processor:', args);
}
function readFile(file) {
if (file && file.length) {
console.log('Reading:', file);
require('fs').createReadStream(file).pipe(process.stdout);
} else {
console.error('A file must be provided with the -r option');
process.exit(1); //
}
}
if (process.argv.length > 0) {
process.argv.forEach(function(arg, index) {
args[arg].apply(this, process.argv.slice(index + 1));
});
}
================================================
FILE: listings/globals/arguments.js
================================================
var args = { //
'-h': displayHelp,
'-r': readFile
};
function displayHelp() {
console.log('Argument processor:', args);
}
function readFile(file) {
console.log('Reading:', file);
require('fs').createReadStream(file).pipe(process.stdout); //
}
if (process.argv.length > 0) {
process.argv.forEach(function(arg, index) {
if (args[arg]) {
args[arg].apply(this, process.argv.slice(index + 1)); //
}
});
}
================================================
FILE: listings/globals/bad-nexttick.js
================================================
var EventEmitter = require('events').EventEmitter;
function complexOperations() {
var events = new EventEmitter();
events.emit('success');
return events;
}
complexOperations().on('success', function() {
console.log('success!');
});
================================================
FILE: listings/globals/cleartimeout.js
================================================
function Bomb() {
this.message = 'Boom!';
}
Bomb.prototype.explode = function() {
console.log(this.message);
};
var bomb = new Bomb();
var timeoutId = setTimeout(bomb.explode.bind(bomb), 1000);
clearTimeout(timeoutId); //
================================================
FILE: listings/globals/console-1.js
================================================
var name = 'alex';
var user = { name: 'alex' };
console.log('Hello');
console.log('Hello %s', name); //
console.log('Hello:', name); //
console.log('Hello:', user);
console.error('Error, bad user:', user);
================================================
FILE: listings/globals/group/index.js
================================================
module.exports = { //
one: require('./one'),
two: require('./two')
};
================================================
FILE: listings/globals/group/one.js
================================================
module.exports = function() {
console.log('one');
};
================================================
FILE: listings/globals/group/package-text.json
================================================
{ "name" : "group",
"main" : "./index.js" } //
================================================
FILE: listings/globals/group/package.json
================================================
{ "name" : "group",
"main" : "./index.js" }
================================================
FILE: listings/globals/group/two.js
================================================
module.exports = function() {
console.log('two');
};
================================================
FILE: listings/globals/group_example.js
================================================
var group = require('./group'); //
group.one();
group.two();
================================================
FILE: listings/globals/module-2.js
================================================
exports.method = function() {
return 'Hello';
};
exports.method2 = function() {
return 'Hello again';
};
================================================
FILE: listings/globals/module-3.js
================================================
var myClass = require('./myclass'); //
var module2 = require('./module-2'); //
console.log(myClass.method());
console.log(module2.method());
console.log(module2.method2());
================================================
FILE: listings/globals/myclass.js
================================================
function MyClass() {
}
MyClass.prototype = {
method: function() {
return 'Hello';
}
};
var myClass = new MyClass();
module.exports = myClass; //
================================================
FILE: listings/globals/nexttick-order.js
================================================
var EventEmitter = require('events').EventEmitter;
var fs = require('fs');
var content;
function readFileIfRequired(cb) {
if (!content) { //
fs.readFile(__filename, 'utf8', function(err, data) {
content = data;
console.log('readFileIfRequired: readFile');
cb(err, content);
});
} else {
process.nextTick(function() { //
console.log('readFileIfRequired: cached');
cb(null, content);
});
}
}
readFileIfRequired(function(err, data) { //
console.log('1. Length:', data.length);
readFileIfRequired(function(err, data2) {
console.log('2. Length:', data2.length);
});
console.log('Reading file again...');
});
console.log('Reading file...');
================================================
FILE: listings/globals/nexttick.js
================================================
var EventEmitter = require('events').EventEmitter;
function complexOperations() {
var events = new EventEmitter();
process.nextTick(function() {
events.emit('success');
});
return events;
}
complexOperations().on('success', function() {
console.log('success!');
});
================================================
FILE: listings/globals/npm.txt
================================================
$ npm search express //
express Sinatra inspired web development framework
$ npm install express
express@x.x.x ./node_modules/express
├── methods@x.x.x
└── (Several more dependencies appear here)
$ node
> var express = require('express'); //
> typeof express
'function'
================================================
FILE: listings/globals/npm.txt2
================================================
$ npm search web framework //
$ npm install express
$ node
> require('express'); //
{ [Function: createApplication]
version: '3.0.3',
mime:
// ...
================================================
FILE: listings/globals/paths.js
================================================
console.log('__dirname:', __dirname); //
console.log('__filename:', __filename);
================================================
FILE: listings/globals/process.js
================================================
// Run with:
// cat file.txt | node process.js
process.stdin.resume(); //
process.stdin.setEncoding('utf8');
process.stdin.on('data', function(text) {
process.stdout.write(text.toUpperCase()); //
});
================================================
FILE: listings/globals/setinterval-unref.js
================================================
function monitor() {
console.log(process.memoryUsage());
}
var id = setInterval(monitor, 1000);
id.unref(); //
setTimeout(function() {
console.log('Done!');
}, 5000);
================================================
FILE: listings/globals/setinterval.js
================================================
function tick() {
console.log('tick:', Date.now());
}
function tock() {
console.log('tock:', Date.now());
}
setInterval(tick, 1000);
setTimeout(function() { //
setInterval(tock, 1000);
}, 500);
================================================
FILE: listings/globals/settimeout-bind.js
================================================
function Bomb() {
this.message = 'Boom!';
}
Bomb.prototype.explode = function() {
console.log(this.message);
};
var bomb = new Bomb();
setTimeout(bomb.explode.bind(bomb), 1000); //
================================================
FILE: listings/globals/signals.js
================================================
process.stdin.resume(); //
process.on('SIGHUP', function () { //
console.log('Reloading configuration...');
});
console.log('PID:', process.pid); //
================================================
FILE: listings/intro/bad-scope.js
================================================
if (!value) {
var value = {}; //
}
================================================
FILE: listings/intro/bad-semi.js
================================================
function createUser() {
return //
{
name: 'alex'
}
}
console.log(createUser());
================================================
FILE: listings/intro/equality-strict.js
================================================
'' === '0' // false
0 === '' // false
0 === '0' // false
false === undefined // false
false === null // false
null === undefined // false
================================================
FILE: listings/intro/equality.js
================================================
'' == '0' // false
0 == '' // true
0 == '0' // true
false == undefined // false
false == null // false
null == undefined // true
================================================
FILE: listings/intro/first-project/countstream.js
================================================
var Writable = require('stream').Writable;
var util = require('util');
module.exports = CountStream;
util.inherits(CountStream, Writable); //
function CountStream(matchText, options) {
Writable.call(this, options);
this.count = 0;
this.matcher = new RegExp(matchText, 'ig'); //
}
CountStream.prototype._write = function(chunk, encoding, cb) {
var matches = chunk.toString().match(this.matcher); //
if (matches) {
this.count += matches.length;
}
cb();
};
CountStream.prototype.end = function() {
this.emit('total', this.count); //
};
================================================
FILE: listings/intro/first-project/index.js
================================================
var CountStream = require('./countstream'); //
var countStream = new CountStream('book'); //
var https = require('https');
https.get('https://www.manning.com', function(res) { //
res.pipe(countStream); //
});
countStream.on('total', function(count) {
console.log('Total matches:', count);
});
================================================
FILE: listings/intro/first-project/package.json
================================================
{
"name": "first-project",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "node test.js"
},
"author": "",
"license": "ISC"
}
================================================
FILE: listings/intro/first-project/test.js
================================================
var assert = require('assert');
var CountStream = require('./countstream');
var countStream = new CountStream('example');
var fs = require('fs');
var passed = 0;
countStream.on('total', function(count) { //
assert.equal(count, 1); //
passed++;
});
fs.createReadStream(__filename).pipe(countStream); //
process.on('exit', function() { //
console.log('Assertions passed:', passed);
});
================================================
FILE: listings/intro/http.js
================================================
function Server(requestListener) {
net.Server.call(this, { allowHalfOpen: true }); //
this.addListener('connection', connectionListener);
this.addListener('clientError', function(err, conn) {
conn.destroy(err);
});
}
util.inherits(Server, net.Server); //
================================================
FILE: listings/intro/null-string.js
================================================
if (s.value === null || s.value === undefined) {
================================================
FILE: listings/intro/null.js
================================================
if (s.value == null) {
================================================
FILE: listings/modules/fastfib/benchmark/index.js
================================================
var assert = require('assert')
var recurse = require('../lib/recurse')
var tail = require('../lib/tail')
var iter = require('../lib/iter')
// var bigiter = require('../lib/bigiter')
var suite = new (require('benchmark')).Suite
suite
.add('recurse', function () { recurse(20) })
.add('tail', function () { tail(20) })
.add('iter', function () { iter(20) })
// .add('bigiter', function () { bigiter(20) })
.on('complete', function () {
console.log('results:')
this.forEach(function (result) {
console.log(result.name, result.count, result.times.elapsed)
})
assert.equal(this.filter('fastest').pluck('name')[0], 'iter', 'expect iter to be the fastest')
})
.run()
================================================
FILE: listings/modules/fastfib/bin/index.js
================================================
#!/usr/bin/env node
var fastfib = require('../')
var seqNo = Number(process.argv[2])
if (isNaN(seqNo)) return console.error('\nInvalid sequence number provided, try:\n fastfib 30\n')
console.log('The result is', fastfib(seqNo))
================================================
FILE: listings/modules/fastfib/index.js
================================================
module.exports = require('./lib/iter')
================================================
FILE: listings/modules/fastfib/lib/bigiter.js
================================================
var bignum = require('bignum')
module.exports = bignum
function bigiter (n) {
var current = bignum('0'), next = bignum('1'), swap
for (var i = 0; i < n; i++) {
swap = current, current = next
next = swap.add(next)
}
return current.toString()
}
================================================
FILE: listings/modules/fastfib/lib/iter.js
================================================
module.exports = iter
function iter (n) {
var current = 0, next = 1, swap
for (var i = 0; i < n; i++) {
swap = current, current = next
next = swap + next
}
return current
}
================================================
FILE: listings/modules/fastfib/lib/recurse.js
================================================
module.exports = recurse
function recurse (n) {
if (n === 0) return 0
if (n === 1) return 1
return recurse(n-1) + recurse(n-2)
}
================================================
FILE: listings/modules/fastfib/lib/tail.js
================================================
module.exports = tail
function tail (n) { return fib(n, 0, 1) }
function fib (n, current, next) {
if (n === 0) return current
return fib(n - 1, next, current + next)
}
================================================
FILE: listings/modules/fastfib/package.json
================================================
{
"name": "fastfib",
"private": true,
"version": "0.1.1",
"description": "Calculates a Fibonacci number as fast as possible with only JavaScript.",
"main": "index.js",
"bin": {
"fastfib": "./bin/index.js"
},
"directories": {
"test": "test"
},
"dependencies": {
},
"devDependencies": {
"benchmark": "1.0.0"
},
"optionalDependencies": {
"bignum": "^0.6.2"
},
"scripts": {
"test": "node test && node benchmark"
},
"repository": {
"type": "git",
"url": "git://github.com/wavded/fastfib.git"
},
"keywords": [
"fibonacci",
"fast"
],
"author": "Marc Harter (http://wavded.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wavded/fastfib/issues"
},
"homepage": "https://github.com/wavded/fastfib",
"engines": {
"node": "0.10.x"
}
}
================================================
FILE: listings/modules/fastfib/test/index.js
================================================
var assert = require('assert')
var fastfib = require ('../')
assert.equal(fastfib(0), 0)
assert.equal(fastfib(1), 1)
assert.equal(fastfib(2), 1)
assert.equal(fastfib(3), 2)
assert.equal(fastfib(4), 3)
assert.equal(fastfib(5), 5)
assert.equal(fastfib(6), 8)
assert.equal(fastfib(7), 13)
assert.equal(fastfib(8), 21)
assert.equal(fastfib(9), 34)
assert.equal(fastfib(10), 55)
assert.equal(fastfib(11), 89)
assert.equal(fastfib(12), 144)
// if we get this far we can assume we are on the right track
================================================
FILE: listings/modules/fastfibserver/package.json
================================================
{
"name": "fastfibserver",
"version": "0.0.0",
"description": "Test fastfibserver",
"main": "server.js",
"dependencies": {
"fastfib": "^0.1.1"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "",
"license": "ISC"
}
================================================
FILE: listings/modules/fastfibserver/server.js
================================================
var fastfib = require('fastfib')
var http = require('http')
http.createServer(function (req, res) {
res.end('The result is ' + fastfib(40))
}).listen(3000)
console.log('fastfibber running on port 3000')
================================================
FILE: listings/network/client.js
================================================
var assert = require('assert');
var net = require('net');
var clients = 0;
var expectedAssertions = 2;
var server = net.createServer(function(client) {
clients++;
var clientId = clients;
console.log('Client connected:', clientId);
client.on('end', function() {
console.log('Client disconnected:', clientId);
});
client.write('Welcome client: ' + clientId + '\r\n');
client.pipe(client);
});
server.listen(8000, function() {
console.log('Server started on port 8000');
runTest(1, function() { //
runTest(2, function() {
console.log('Tests finished');
assert.equal(0, expectedAssertions); //
server.close(); //
});
});
});
function runTest(expectedId, done) { //
var client = net.connect(8000); //
client.on('data', function(data) { //
var expected = 'Welcome client: ' + expectedId + '\r\n';
assert.equal(data.toString(), expected);
expectedAssertions--;
client.end(); //
});
client.on('end', done); //
}
================================================
FILE: listings/network/dns-lookup.js
================================================
var dns = require('dns'); //
dns.lookup('www.manning.com', function(err, address) { //
if (err) {
console.error('Error:', err);
}
console.log('Addresses:', address);
});
================================================
FILE: listings/network/dns-resolve.js
================================================
var dns = require('dns');
dns.resolve('www.manning.com', function(err, addresses) { //
if (err) {
console.error(err);
}
console.log('Addresses:', addresses);
});
================================================
FILE: listings/network/http-instruments-test.js
================================================
var assert = require('assert');
var http = require('http');
var server = http.createServer(function(req, res) {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.write('Hello, world.\r\n');
res.end();
});
server.listen(8000, function() {
console.log('Listening on port 8000');
});
function makeRequest() {
var req = http.request({
port: 8000
}, function(res) {
console.log('HTTP headers:', res.headers);
res.on('data', function(data) {
console.log('Body:', data.toString());
assert.equal('Hello, world.\r\n', data.toString());
assert.equal(200, res.statusCode);
makeRequest();
});
});
req.end();
}
makeRequest();
================================================
FILE: listings/network/http.js
================================================
var assert = require('assert');
var http = require('http'); //
var server = http.createServer(function(req, res) { //
res.writeHead(200, { 'Content-Type': 'text/plain' }); //
res.write('Hello, world.\r\n'); //
res.end();
});
server.listen(8000, function() { //
console.log('Listening on port 8000');
});
var req = http.request({ //
port: 8000
}, function(res) {
console.log('HTTP headers:', res.headers);
res.on('data', function(data) {
console.log('Body:', data.toString());
assert.equal('Hello, world.\r\n', data.toString()); //
assert.equal(200, res.statusCode);
server.unref();
});
});
req.end();
================================================
FILE: listings/network/https-client.js
================================================
var fs = require('fs');
var https = require('https');
var os = require('os');
var options = {
key: fs.readFileSync('client.pem'), //
cert: fs.readFileSync('client-cert.pem'), //
ca: [ fs.readFileSync('server-cert.pem') ], //
hostname: os.hostname(), //
port: 8000,
path: '/',
method: 'GET'
};
var req = https.request(options, function(res) { //
res.on('data', function(d) {
process.stdout.write(d);
});
});
req.end();
req.on('error', function(e) {
console.error(e);
});
================================================
FILE: listings/network/https.js
================================================
var fs = require('fs');
var https = require('https');
var options = {
key: fs.readFileSync('server.pem'), //
cert: fs.readFileSync('server-cert.pem'), //
ca: [ fs.readFileSync('client-cert.pem') ],
requestCert: true //
};
var server = https.createServer(options, function(req, res) {
var authorized = req.socket.authorized
? 'authorized' : 'unauthorized'; //
res.writeHead(200);
res.write('Welcome! You are ' + authorized + '\n');
res.end();
});
server.listen(8000, function() {
console.log('Server listening');
});
================================================
FILE: listings/network/nagle.js
================================================
var net = require('net');
var server = net.createServer(function(c) {
c.setNoDelay(true); //
c.write('\377\375\042\377\373\001', 'binary'); //
console.log('server connected');
c.on('end', function() {
console.log('server disconnected');
server.unref(); //
});
c.on('data', function(data) {
process.stdout.write(data.toString()); //
c.write(data.toString());
});
});
server.listen(8000, function() {
console.log('server bound');
});
================================================
FILE: listings/network/proxy.js
================================================
var http = require('http');
var url = require('url');
http.createServer(function(req, res) { //
console.log('start request:', req.url);
var options = url.parse(req.url);
options.headers = req.headers;
var proxyRequest = http.request(options, function(proxyResponse) { //
proxyResponse.on('data', function(chunk) { //
console.log('proxyResponse length:', chunk.length);
res.write(chunk, 'binary');
});
proxyResponse.on('end', function() { //
console.log('proxied request ended');
res.end();
});
res.writeHead(proxyResponse.statusCode, proxyResponse.headers); //
});
req.on('data', function(chunk) { //
console.log('in request length:', chunk.length);
proxyRequest.write(chunk, 'binary');
});
req.on('end', function() { //
console.log('original request ended');
proxyRequest.end();
});
}).listen(8080); //
================================================
FILE: listings/network/redirects.js
================================================
var http = require('http'); //
var https = require('https');
var url = require('url');
var request;
function Request() { //
this.maxRedirects = 10;
this.redirects = 0;
}
Request.prototype.get = function(href, callback) {
var uri = url.parse(href); //
var options = { host: uri.host, path: uri.path };
var httpGet = uri.protocol === 'http:' ? http.get : https.get;
console.log('GET:', href);
function processResponse(response) { //
if (response.statusCode >= 300 && response.statusCode < 400) {
if (this.redirects >= this.maxRedirects) {
this.error = new Error('Too many redirects for: ' + href);
} else {
this.redirects++; //
href = url.resolve(options.host, response.headers.location);
return this.get(href, callback);
}
}
response.url = href;
response.redirects = this.redirects;
console.log('Redirected:', href);
function end() {
console.log('Connection ended');
callback(this.error, response);
}
response.on('data', function(data) {
console.log('Got data, length:', data.length);
});
response.on('end', end.bind(this)); //
}
httpGet(options, processResponse.bind(this))
.on('error', function(err) {
callback(err);
});
};
request = new Request(); //
request.get('http://google.com/', function(err, res) {
if (err) {
console.error(err);
} else {
console.log('Fetched URL:', res.url,
'with', res.redirects, 'redirects');
process.exit();
}
});
================================================
FILE: listings/network/server.js
================================================
var net = require('net'); //
var clients = 0; //
var server = net.createServer(function(client) {
clients++; //
var clientId = clients;
console.log('Client connected:', clientId);
client.on('end', function() { //
console.log('Client disconnected:', clientId);
});
client.write('Welcome client: ' + clientId + '\r\n'); //
client.pipe(client); //
});
server.listen(8000, function() { //
console.log('Server started on port 8000');
});
================================================
FILE: listings/network/tls-client.js
================================================
var fs = require('fs');
var os = require('os');
var tls = require('tls');
var options = {
key: fs.readFileSync('client.pem'), //
cert: fs.readFileSync('client-cert.pem'), //
ca: [ fs.readFileSync('server-cert.pem') ], //
servername: os.hostname() //
};
var cleartextStream = tls.connect(8000, options, function() {
var authorized = cleartextStream.authorized ?
'authorized' : 'unauthorized';
console.log('Connected:', authorized);
process.stdin.pipe(cleartextStream); //
});
cleartextStream.setEncoding('utf8');
cleartextStream.on('data', function(data) {
console.log(data);
});
================================================
FILE: listings/network/tls.js
================================================
var fs = require('fs');
var tls = require('tls');
var options = {
key: fs.readFileSync('server.pem'), //
cert: fs.readFileSync('server-cert.pem'), //
ca: [ fs.readFileSync('client-cert.pem') ], //
requestCert: true //
};
var server = tls.createServer(options, function(cleartextStream) {
var authorized = cleartextStream.authorized ?
'authorized' : 'unauthorized'; //
console.log('Connected:', authorized);
cleartextStream.write('Welcome!\n');
cleartextStream.setEncoding('utf8');
cleartextStream.pipe(cleartextStream);
});
server.listen(8000, function() {
console.log('Server listening');
});
================================================
FILE: listings/network/udp-chat.js
================================================
var assert = require('assert');
var dgram = require('dgram');
var fs = require('fs');
var defaultSize = 16;
var port = 41234;
function Client(remoteIP) {
var socket = dgram.createSocket('udp4');
var readline = require('readline'); //
var rl = readline.createInterface(process.stdin, process.stdout);
socket.send(new Buffer(''), 0, 6, port, remoteIP); //
rl.setPrompt('Message> ');
rl.prompt();
rl.on('line', function(line) {
sendData(line); //
}).on('close', function() {
process.exit(0);
});
socket.on('message', function(msg, rinfo) { //
console.log('\n<' + rinfo.address + '>', msg.toString());
rl.prompt();
});
function sendData(message) {
socket.send(new Buffer(message), 0, message.length, port, remoteIP,
function(err, bytes) { //
console.log('Sent:', message);
rl.prompt();
}
);
}
}
function Server() {
var clients = [];
var server = dgram.createSocket('udp4');
server.on('message', function(msg, rinfo) { //
var clientId = rinfo.address + ':' + rinfo.port; //
msg = msg.toString();
if (!clients[clientId]) { //
clients[clientId] = rinfo;
}
if (msg.match(/^)) { //
console.log('Control message:', msg);
return;
}
for (var client in clients) { //
if (client !== clientId) {
client = clients[client];
server.send(
new Buffer(msg), 0,
msg.length, client.port, client.address,
function(err, bytes) {
if (err) console.error(err);
console.log('Bytes sent:', bytes);
}
);
}
}
});
server.on('listening', function() {
console.log('Server ready:', server.address());
});
server.bind(port);
}
module.exports = {
Client: Client,
Server: Server
};
if (!module.parent) {
switch (process.argv[2]) {
case 'client':
new Client(process.argv[3]);
break;
case 'server':
new Server();
break;
default:
console.log('Unknown option');
}
}
================================================
FILE: listings/network/udp-client-server.js
================================================
var dgram = require('dgram');
var fs = require('fs');
var port = 41230;
var defaultSize = 16;
function Client(remoteIP) {
var inStream = fs.createReadStream(__filename); //
var socket = dgram.createSocket('udp4'); //
inStream.on('readable', function() {
sendData(); //
});
function sendData() {
var message = inStream.read(defaultSize); //
if (!message) {
return socket.unref(); //
}
socket.send(message, 0, message.length, port, remoteIP,
function(err, bytes) { //
sendData();
}
);
}
}
function Server() {
var socket = dgram.createSocket('udp4'); //
socket.on('message', function(msg, rinfo) { //
process.stdout.write(msg.toString());
});
socket.on('listening', function() { //
console.log('Server ready:', socket.address());
});
socket.bind(port);
}
if (process.argv[2] === 'client') { //
new Client(process.argv[3]); //
} else {
new Server();
}
================================================
FILE: listings/production/apache.conf
================================================
ProxyPass / http://localhost:3000/ #
LoadModule proxy_module /lib/apache2/modules/mod_proxy.so #
LoadModule proxy_http_module /lib/apache2/modules/mod_proxy_http.so #
================================================
FILE: listings/production/haproxy/.vagrant/machines/default/virtualbox/action_provision
================================================
1.5:b1f05448-79b5-4cd7-ad84-19b429a0861c
================================================
FILE: listings/production/haproxy/.vagrant/machines/default/virtualbox/action_set_name
================================================
1395945119
================================================
FILE: listings/production/haproxy/.vagrant/machines/default/virtualbox/id
================================================
b1f05448-79b5-4cd7-ad84-19b429a0861c
================================================
FILE: listings/production/haproxy/Vagrantfile
================================================
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.network "public_network", :bridge => 'en0: Wi-Fi (AirPort)'
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "hashicorp/precise32"
# The url from where the 'config.vm.box' box will be fetched if it
# doesn't already exist on the user's system.
# config.vm.box_url = "http://domain.com/path/to/above.box"
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# config.vm.network "forwarded_port", guest: 80, host: 8080
# Create a private network, which allows host-only access to the machine
# using a specific IP.
# config.vm.network "private_network", ip: "192.168.33.10"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network"
# If true, then any SSH connections made will enable agent forwarding.
# Default value: false
# config.ssh.forward_agent = true
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# config.vm.provider "virtualbox" do |vb|
# # Don't boot with headless mode
# vb.gui = true
#
# # Use VBoxManage to customize the VM. For example to change memory:
# vb.customize ["modifyvm", :id, "--memory", "1024"]
# end
#
# View the documentation for the provider you're using for more
# information on available options.
# Enable provisioning with Puppet stand alone. Puppet manifests
# are contained in a directory path relative to this Vagrantfile.
# You will need to create the manifests directory and a manifest in
# the file hashicorp/precise32.pp in the manifests_path directory.
#
# An example Puppet manifest to provision the message of the day:
#
# # group { "puppet":
# # ensure => "present",
# # }
# #
# # File { owner => 0, group => 0, mode => 0644 }
# #
# # file { '/etc/motd':
# # content => "Welcome to your Vagrant-built virtual machine!
# # Managed by Puppet.\n"
# # }
#
# config.vm.provision "puppet" do |puppet|
# puppet.manifests_path = "manifests"
# puppet.manifest_file = "site.pp"
# end
# Enable provisioning with chef solo, specifying a cookbooks path, roles
# path, and data_bags path (all relative to this Vagrantfile), and adding
# some recipes and/or roles.
#
# config.vm.provision "chef_solo" do |chef|
# chef.cookbooks_path = "../my-recipes/cookbooks"
# chef.roles_path = "../my-recipes/roles"
# chef.data_bags_path = "../my-recipes/data_bags"
# chef.add_recipe "mysql"
# chef.add_role "web"
#
# # You may also specify custom JSON attributes:
# chef.json = { :mysql_password => "foo" }
# end
# Enable provisioning with chef server, specifying the chef server URL,
# and the path to the validation key (relative to this Vagrantfile).
#
# The Opscode Platform uses HTTPS. Substitute your organization for
# ORGNAME in the URL and validation key.
#
# If you have your own Chef Server, use the appropriate URL, which may be
# HTTP instead of HTTPS depending on your configuration. Also change the
# validation key to validation.pem.
#
# config.vm.provision "chef_client" do |chef|
# chef.chef_server_url = "https://api.opscode.com/organizations/ORGNAME"
# chef.validation_key_path = "ORGNAME-validator.pem"
# end
#
# If you're using the Opscode platform, your validator client is
# ORGNAME-validator, replacing ORGNAME with your organization name.
#
# If you have your own Chef Server, the default validation client name is
# chef-validator, unless you changed the configuration.
#
# chef.validation_client_name = "ORGNAME-validator"
end
================================================
FILE: listings/production/haproxy/haproxy.cfg
================================================
frontend http-in
mode http
bind *:80
timeout client 999s #
default_backend node_backend
backend node_backend #
mode http
timeout server 86400000
timeout connect 5000
server io_test localhost:3000
================================================
FILE: listings/production/haproxy/haproxy2.cfg
================================================
frontend http-in
mode http
bind *:80
acl is_websocket hdr(Upgrade) -i WebSocket #
acl is_websocket path_beg -i /chat #
use_backend ws if is_websocket
default_backend node_backend
backend node_backend
mode http
server www_static localhost:3000
backend ws
timeout server 600s
server ws1 localhost:3001
================================================
FILE: listings/production/haproxy/vagrant.ssh.config
================================================
Host default
HostName 127.0.0.1
User vagrant
Port 2222
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
IdentityFile /Users/alex/.vagrant.d/insecure_private_key
IdentitiesOnly yes
LogLevel FATAL
================================================
FILE: listings/production/http-proxy-scale.js
================================================
var http = require('http');
var httpProxy = require('http-proxy');
var targets = [
{ target: 'http://localhost:3000' },
{ target: 'http://localhost:3001' },
{ target: 'http://localhost:3002' }
];
var proxies = targets.map(function(options, i) {
var proxy = new httpProxy.createProxyServer(options); //
proxy.on('error', function(err) {
console.error('Proxy error:', err);
console.error('Server:', i);
});
return proxy;
});
var i = 0;
http.createServer(function(req, res) {
proxies[i].web(req, res);
i = (i + 1) % proxies.length; //
}).listen(9000);
================================================
FILE: listings/production/http-proxy-ws.js
================================================
var http = require('http');
var httpProxy = require('http-proxy');
var proxy = new httpProxy.createProxyServer({
target: 'http://localhost:3000'
});
var wsProxy = new httpProxy.createProxyServer({ //
target: 'http://localhost:3001'
});
var proxyServer = http.createServer(function(req, res) {
proxy.web(req, res);
});
proxyServer.on('upgrade', function(req, socket, head) { //
wsProxy.ws(req, socket, head);
});
proxyServer.listen(9000);
================================================
FILE: listings/production/http-proxy.js
================================================
var httpProxy = require('http-proxy');
var proxy = httpProxy.createProxyServer({
target: 'http://localhost:3000' //
});
proxy.on('error', function(err) { //
console.error('Error:', err);
});
proxy.listen(9000); //
================================================
FILE: listings/production/inky/.vagrant/machines/default/virtualbox/action_provision
================================================
1.5:b5d55e0b-4b17-42ec-9668-f91164dedb80
================================================
FILE: listings/production/inky/.vagrant/machines/default/virtualbox/action_set_name
================================================
1395268323
================================================
FILE: listings/production/inky/.vagrant/machines/default/virtualbox/id
================================================
b5d55e0b-4b17-42ec-9668-f91164dedb80
================================================
FILE: listings/production/inky/Vagrantfile
================================================
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.network "public_network", :bridge => 'en0: Wi-Fi (AirPort)'
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "hashicorp/precise32"
# The url from where the 'config.vm.box' box will be fetched if it
# doesn't already exist on the user's system.
# config.vm.box_url = "http://domain.com/path/to/above.box"
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# config.vm.network "forwarded_port", guest: 80, host: 8080
# Create a private network, which allows host-only access to the machine
# using a specific IP.
# config.vm.network "private_network", ip: "192.168.33.10"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network"
# If true, then any SSH connections made will enable agent forwarding.
# Default value: false
# config.ssh.forward_agent = true
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# config.vm.provider "virtualbox" do |vb|
# # Don't boot with headless mode
# vb.gui = true
#
# # Use VBoxManage to customize the VM. For example to change memory:
# vb.customize ["modifyvm", :id, "--memory", "1024"]
# end
#
# View the documentation for the provider you're using for more
# information on available options.
# Enable provisioning with Puppet stand alone. Puppet manifests
# are contained in a directory path relative to this Vagrantfile.
# You will need to create the manifests directory and a manifest in
# the file hashicorp/precise32.pp in the manifests_path directory.
#
# An example Puppet manifest to provision the message of the day:
#
# # group { "puppet":
# # ensure => "present",
# # }
# #
# # File { owner => 0, group => 0, mode => 0644 }
# #
# # file { '/etc/motd':
# # content => "Welcome to your Vagrant-built virtual machine!
# # Managed by Puppet.\n"
# # }
#
# config.vm.provision "puppet" do |puppet|
# puppet.manifests_path = "manifests"
# puppet.manifest_file = "site.pp"
# end
# Enable provisioning with chef solo, specifying a cookbooks path, roles
# path, and data_bags path (all relative to this Vagrantfile), and adding
# some recipes and/or roles.
#
# config.vm.provision "chef_solo" do |chef|
# chef.cookbooks_path = "../my-recipes/cookbooks"
# chef.roles_path = "../my-recipes/roles"
# chef.data_bags_path = "../my-recipes/data_bags"
# chef.add_recipe "mysql"
# chef.add_role "web"
#
# # You may also specify custom JSON attributes:
# chef.json = { :mysql_password => "foo" }
# end
# Enable provisioning with chef server, specifying the chef server URL,
# and the path to the validation key (relative to this Vagrantfile).
#
# The Opscode Platform uses HTTPS. Substitute your organization for
# ORGNAME in the URL and validation key.
#
# If you have your own Chef Server, use the appropriate URL, which may be
# HTTP instead of HTTPS depending on your configuration. Also change the
# validation key to validation.pem.
#
# config.vm.provision "chef_client" do |chef|
# chef.chef_server_url = "https://api.opscode.com/organizations/ORGNAME"
# chef.validation_key_path = "ORGNAME-validator.pem"
# end
#
# If you're using the Opscode platform, your validator client is
# ORGNAME-validator, replacing ORGNAME with your organization name.
#
# If you have your own Chef Server, the default validation client name is
# chef-validator, unless you changed the configuration.
#
# chef.validation_client_name = "ORGNAME-validator"
end
================================================
FILE: listings/production/inky/app.js
================================================
var express = require('express');
var app = express();
var routes = require('./routes');
app.use(express.logger());
app.set('env', process.env.NODE_ENV || 'development');
app.set('port', process.env.PORT || 3000);
app.set('views', './views');
app.set('view engine', 'jade');
app.use(app.router);
app.use(express.static('./public'));
app.get('/', routes.index);
module.exports = app;
================================================
FILE: listings/production/inky/models/posts.json
================================================
[
{ "title": "Node in Practice", "content": "You too can become a Node professional!" },
{ "title": "Welcome to my blog", "content": "This is my first post" }
]
================================================
FILE: listings/production/inky/package.json
================================================
{
"name": "inky",
"version": "0.0.0-1",
"description": "A little blog example",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "Alex R. Young",
"license": "MIT",
"dependencies": {
"express": "^3.4.8",
"jade": "^1.3.0"
},
"subdomain": "alexyoung-inky",
"engines": {
"node": "0.10.x"
}
}
================================================
FILE: listings/production/inky/public/css/style.css
================================================
body {
padding: 50px;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
a {
color: #00B7FF;
}
================================================
FILE: listings/production/inky/routes/index.js
================================================
var posts = require('./../models/posts');
module.exports.index = function(req, res) {
res.render('index', { posts: posts });
};
================================================
FILE: listings/production/inky/server.js
================================================
var app = require('./app');
app.listen(process.env.PORT || 3000);
================================================
FILE: listings/production/inky/vagrant.ssh.config
================================================
Host default
HostName 127.0.0.1
User vagrant
Port 2222
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
IdentityFile /Users/alex/.vagrant.d/insecure_private_key
IdentitiesOnly yes
LogLevel FATAL
================================================
FILE: listings/production/inky/views/index.jade
================================================
extends layout
block content
h1 Inky
each post in posts
h2= post.title
p= post.content
================================================
FILE: listings/production/inky/views/layout.jade
================================================
doctype html
html
head
title= title
link(rel='stylesheet', href='/css/style.css')
body
block content
================================================
FILE: listings/production/inky-cluster/.vagrant/machines/default/virtualbox/action_provision
================================================
1.5:b5d55e0b-4b17-42ec-9668-f91164dedb80
================================================
FILE: listings/production/inky-cluster/.vagrant/machines/default/virtualbox/action_set_name
================================================
1395268323
================================================
FILE: listings/production/inky-cluster/.vagrant/machines/default/virtualbox/id
================================================
b5d55e0b-4b17-42ec-9668-f91164dedb80
================================================
FILE: listings/production/inky-cluster/Vagrantfile
================================================
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.network "public_network", :bridge => 'en0: Wi-Fi (AirPort)'
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "hashicorp/precise32"
# The url from where the 'config.vm.box' box will be fetched if it
# doesn't already exist on the user's system.
# config.vm.box_url = "http://domain.com/path/to/above.box"
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# config.vm.network "forwarded_port", guest: 80, host: 8080
# Create a private network, which allows host-only access to the machine
# using a specific IP.
# config.vm.network "private_network", ip: "192.168.33.10"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network"
# If true, then any SSH connections made will enable agent forwarding.
# Default value: false
# config.ssh.forward_agent = true
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# config.vm.provider "virtualbox" do |vb|
# # Don't boot with headless mode
# vb.gui = true
#
# # Use VBoxManage to customize the VM. For example to change memory:
# vb.customize ["modifyvm", :id, "--memory", "1024"]
# end
#
# View the documentation for the provider you're using for more
# information on available options.
# Enable provisioning with Puppet stand alone. Puppet manifests
# are contained in a directory path relative to this Vagrantfile.
# You will need to create the manifests directory and a manifest in
# the file hashicorp/precise32.pp in the manifests_path directory.
#
# An example Puppet manifest to provision the message of the day:
#
# # group { "puppet":
# # ensure => "present",
# # }
# #
# # File { owner => 0, group => 0, mode => 0644 }
# #
# # file { '/etc/motd':
# # content => "Welcome to your Vagrant-built virtual machine!
# # Managed by Puppet.\n"
# # }
#
# config.vm.provision "puppet" do |puppet|
# puppet.manifests_path = "manifests"
# puppet.manifest_file = "site.pp"
# end
# Enable provisioning with chef solo, specifying a cookbooks path, roles
# path, and data_bags path (all relative to this Vagrantfile), and adding
# some recipes and/or roles.
#
# config.vm.provision "chef_solo" do |chef|
# chef.cookbooks_path = "../my-recipes/cookbooks"
# chef.roles_path = "../my-recipes/roles"
# chef.data_bags_path = "../my-recipes/data_bags"
# chef.add_recipe "mysql"
# chef.add_role "web"
#
# # You may also specify custom JSON attributes:
# chef.json = { :mysql_password => "foo" }
# end
# Enable provisioning with chef server, specifying the chef server URL,
# and the path to the validation key (relative to this Vagrantfile).
#
# The Opscode Platform uses HTTPS. Substitute your organization for
# ORGNAME in the URL and validation key.
#
# If you have your own Chef Server, use the appropriate URL, which may be
# HTTP instead of HTTPS depending on your configuration. Also change the
# validation key to validation.pem.
#
# config.vm.provision "chef_client" do |chef|
# chef.chef_server_url = "https://api.opscode.com/organizations/ORGNAME"
# chef.validation_key_path = "ORGNAME-validator.pem"
# end
#
# If you're using the Opscode platform, your validator client is
# ORGNAME-validator, replacing ORGNAME with your organization name.
#
# If you have your own Chef Server, the default validation client name is
# chef-validator, unless you changed the configuration.
#
# chef.validation_client_name = "ORGNAME-validator"
end
================================================
FILE: listings/production/inky-cluster/app.js
================================================
var express = require('express');
var app = express();
var routes = require('./routes');
app.use(express.logger());
app.set('env', process.env.NODE_ENV || 'development');
app.set('port', process.env.PORT || 3000);
app.set('views', './views');
app.set('view engine', 'jade');
app.use(app.router);
app.use(express.static('./public'));
app.get('/', routes.index);
module.exports = app;
================================================
FILE: listings/production/inky-cluster/models/posts.json
================================================
[
{ "title": "Node in Practice", "content": "You too can become a Node professional!" },
{ "title": "Welcome to my blog", "content": "This is my first post" }
]
================================================
FILE: listings/production/inky-cluster/package.json
================================================
{
"name": "inky",
"version": "0.0.0-1",
"description": "A little blog example",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "Alex R. Young",
"license": "MIT",
"dependencies": {
"express": "^3.4.8",
"jade": "^1.3.0"
},
"subdomain": "alexyoung-inky",
"engines": {
"node": "0.10.x"
}
}
================================================
FILE: listings/production/inky-cluster/public/css/style.css
================================================
body {
padding: 50px;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
a {
color: #00B7FF;
}
================================================
FILE: listings/production/inky-cluster/routes/index.js
================================================
var posts = require('./../models/posts');
module.exports.index = function(req, res) {
res.render('index', { posts: posts });
};
================================================
FILE: listings/production/inky-cluster/server-1.js
================================================
var app = require('./app');
var cluster = require('cluster'); //
if (cluster.isMaster) {
var totalWorkers = require('os').cpus().length - 1; //
console.log('Running %d total workers', totalWorkers);
for (var i = 0; i < totalWorkers; i += 1) {
cluster.fork(); //
}
} else {
console.log('Worker PID:', process.pid); //
app.listen(process.env.PORT || 3000);
}
================================================
FILE: listings/production/inky-cluster/server-single.js
================================================
var app = require('./app');
app.listen(process.env.PORT || 3000);
================================================
FILE: listings/production/inky-cluster/server.js
================================================
var app = require('./app');
var cluster = require('cluster');
if (cluster.isMaster) {
var totalWorkers = require('os').cpus().length - 1;
console.log('Running %d total workers', totalWorkers);
for (var i = 0; i < totalWorkers; i += 1) {
cluster.fork();
}
cluster.on('exit', function(worker) { //
console.log('Worker %d died', worker.id);
cluster.fork(); //
});
} else {
console.log('Worker PID:', process.pid);
app.listen(process.env.PORT || 3000);
}
================================================
FILE: listings/production/inky-cluster/vagrant.ssh.config
================================================
Host default
HostName 127.0.0.1
User vagrant
Port 2222
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
IdentityFile /Users/alex/.vagrant.d/insecure_private_key
IdentitiesOnly yes
LogLevel FATAL
================================================
FILE: listings/production/inky-cluster/views/index.jade
================================================
extends layout
block content
h1 Inky
each post in posts
h2= post.title
p= post.content
================================================
FILE: listings/production/inky-cluster/views/layout.jade
================================================
doctype html
html
head
title= title
link(rel='stylesheet', href='/css/style.css')
body
block content
================================================
FILE: listings/production/logrotate.conf
================================================
"/var/www/nodeapp/logs/application.log"
"/var/www/nodeapp/logs/application.err" {
daily #
rotate 20 #
compress #
copytruncate #
}
================================================
FILE: listings/production/nginx-websockets.conf
================================================
http {
server {
listen 80;
server_name example.com;
location / {
proxy_pass http://localhost:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade; #
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
}
================================================
FILE: listings/production/nginx.conf
================================================
http {
server {
listen 80;
location / {
proxy_pass http://localhost:3000; #
proxy_http_version 1.1;
}
}
}
================================================
FILE: listings/production/runit.sh
================================================
#!/bin/sh
export PATH=$PATH:/home/vagrant/.nvm/v0.10.26/bin #
cd /home/vagrant/inky #
exec npm start
================================================
FILE: listings/production/runit.txt
================================================
sudo mkdir /etc/service/nodeapp
sudo touch /etc/service/nodeapp/run
sudo chmod 700 /etc/service/nodeapp/run
sudo sv start /etc/service/nodeapp
================================================
FILE: listings/production/upstart.conf
================================================
#!upstart
description "ExampleApp"
author "alex"
env PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin #
respawn
start on runlevel [23] #
script
export NODE_ENV=production
exec /usr/bin/node /apps/example/app.js 2>&1 >> /var/log/node.log #
end script
================================================
FILE: listings/production/vagrant_nginx/.vagrant/machines/default/virtualbox/action_provision
================================================
1.5:03092ac0-f640-4ef3-9449-30df6826f39c
================================================
FILE: listings/production/vagrant_nginx/.vagrant/machines/default/virtualbox/action_set_name
================================================
1395510276
================================================
FILE: listings/production/vagrant_nginx/.vagrant/machines/default/virtualbox/id
================================================
03092ac0-f640-4ef3-9449-30df6826f39c
================================================
FILE: listings/production/vagrant_nginx/Vagrantfile
================================================
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "hashicorp/precise32"
config.vm.network "public_network", :bridge => 'en0: Wi-Fi (AirPort)'
# The url from where the 'config.vm.box' box will be fetched if it
# doesn't already exist on the user's system.
# config.vm.box_url = "http://domain.com/path/to/above.box"
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# config.vm.network "forwarded_port", guest: 80, host: 8080
# Create a private network, which allows host-only access to the machine
# using a specific IP.
# config.vm.network "private_network", ip: "192.168.33.10"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network"
# If true, then any SSH connections made will enable agent forwarding.
# Default value: false
# config.ssh.forward_agent = true
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# config.vm.provider "virtualbox" do |vb|
# # Don't boot with headless mode
# vb.gui = true
#
# # Use VBoxManage to customize the VM. For example to change memory:
# vb.customize ["modifyvm", :id, "--memory", "1024"]
# end
#
# View the documentation for the provider you're using for more
# information on available options.
# Enable provisioning with Puppet stand alone. Puppet manifests
# are contained in a directory path relative to this Vagrantfile.
# You will need to create the manifests directory and a manifest in
# the file hashicorp/precise32.pp in the manifests_path directory.
#
# An example Puppet manifest to provision the message of the day:
#
# # group { "puppet":
# # ensure => "present",
# # }
# #
# # File { owner => 0, group => 0, mode => 0644 }
# #
# # file { '/etc/motd':
# # content => "Welcome to your Vagrant-built virtual machine!
# # Managed by Puppet.\n"
# # }
#
# config.vm.provision "puppet" do |puppet|
# puppet.manifests_path = "manifests"
# puppet.manifest_file = "site.pp"
# end
# Enable provisioning with chef solo, specifying a cookbooks path, roles
# path, and data_bags path (all relative to this Vagrantfile), and adding
# some recipes and/or roles.
#
# config.vm.provision "chef_solo" do |chef|
# chef.cookbooks_path = "../my-recipes/cookbooks"
# chef.roles_path = "../my-recipes/roles"
# chef.data_bags_path = "../my-recipes/data_bags"
# chef.add_recipe "mysql"
# chef.add_role "web"
#
# # You may also specify custom JSON attributes:
# chef.json = { :mysql_password => "foo" }
# end
# Enable provisioning with chef server, specifying the chef server URL,
# and the path to the validation key (relative to this Vagrantfile).
#
# The Opscode Platform uses HTTPS. Substitute your organization for
# ORGNAME in the URL and validation key.
#
# If you have your own Chef Server, use the appropriate URL, which may be
# HTTP instead of HTTPS depending on your configuration. Also change the
# validation key to validation.pem.
#
# config.vm.provision "chef_client" do |chef|
# chef.chef_server_url = "https://api.opscode.com/organizations/ORGNAME"
# chef.validation_key_path = "ORGNAME-validator.pem"
# end
#
# If you're using the Opscode platform, your validator client is
# ORGNAME-validator, replacing ORGNAME with your organization name.
#
# If you have your own Chef Server, the default validation client name is
# chef-validator, unless you changed the configuration.
#
# chef.validation_client_name = "ORGNAME-validator"
end
================================================
FILE: listings/production/vagrant_nginx/vagrant.ssh.config
================================================
Host default
HostName 127.0.0.1
User vagrant
Port 2200
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
IdentityFile /Users/alex/.vagrant.d/insecure_private_key
IdentitiesOnly yes
LogLevel FATAL
================================================
FILE: listings/streams/node-0.10/advanced-pipe.js
================================================
var stream = require('stream');
var util = require('util');
util.inherits(MemoryStream, stream.Readable);
util.inherits(OutputStream, stream.Writable);
function MemoryStream() {
this.isTTY = process.stdout.isTTY; //
stream.Readable.call(this);
}
MemoryStream.prototype._read = function() {
var text = JSON.stringify(process.memoryUsage()) + '\n';
if (this.isTTY) { //
this.push('\u001b[32m' + text + '\u001b[39m');
} else {
this.push(text);
}
};
// A simple writable stream
function OutputStream() {
stream.Writable.call(this);
this.on('pipe', function(dest) { //
dest.isTTY = this.isTTY;
}.bind(this));
}
OutputStream.prototype._write = function(chunk, encoding, cb) {
util.print(chunk.toString());
cb();
};
var memoryStream = new MemoryStream();
// Switch the desired output stream by commenting one of these lines:
//memoryStream.pipe(new OutputStream);
memoryStream.pipe(process.stdout);
================================================
FILE: listings/streams/node-0.10/buffer-size.js
================================================
var fs = require('fs');
var zlib = require('zlib');
function benchStream(inSize, outSize) {
var time = process.hrtime(); //
var watermark = process.memoryUsage().rss;
var input = fs.createReadStream('/usr/share/dict/words', {
bufferSize: inSize
});
var gzip = zlib.createGzip({ chunkSize: outSize });
var output = fs.createWriteStream('out.gz', { bufferSize: inSize });
var memoryCheck = setInterval(function() { //
var rss = process.memoryUsage().rss;
if (rss > watermark) {
watermark = rss;
}
}, 50);
input.on('end', function() { //
var memoryEnd = process.memoryUsage();
clearInterval(memoryCheck);
var diff = process.hrtime(time);
console.log([
inSize,
outSize,
(diff[0] * 1e9 + diff[1]) / 1000000,
watermark / 1024].join(', ')
); //
});
input.pipe(gzip).pipe(output); //
return input;
}
console.log('file size, gzip size, ms, RSS');
var fileSize = 128;
var zipSize = 5024;
function run(times) {
benchStream(fileSize, zipSize).on('end', function() { //
times--;
fileSize *= 2;
zipSize *= 2;
if (times > 0) {
run(times); //
}
});
}
run(10); //
================================================
FILE: listings/streams/node-0.10/csvparser.js
================================================
var stream = require('stream');
module.exports = CSVParser; //
CSVParser.prototype = Object.create(stream.Transform.prototype, {
constructor: { value: CSVParser }
});
function CSVParser(options) {
options = options || {};
options.objectMode = true;
stream.Transform.call(this, options);
this.value = '';
this.headers = [];
this.values = [];
this.line = 0;
}
CSVParser.prototype._transform = function(chunk, encoding, done) { //
var c;
var i;
chunk = chunk.toString();
for (i = 0; i < chunk.length; i++) {
c = chunk.charAt(i);
if (c === ',') {
this.addValue();
} else if (c === '\n') {
this.addValue();
if (this.line > 0) {
this.push(this.toObject());
}
this.values = [];
this.line++;
} else {
this.value += c;
}
}
done();
};
CSVParser.prototype.toObject = function() {
var i;
var obj = {};
for (i = 0; i < this.headers.length; i++) {
obj[this.headers[i]] = this.values[i];
}
return obj;
};
CSVParser.prototype.addValue = function() {
if (this.line === 0) {
this.headers.push(this.value);
} else {
this.values.push(this.value);
}
this.value = '';
};
================================================
FILE: listings/streams/node-0.10/duplex.js
================================================
var stream = require('stream');
HungryStream.prototype = Object.create(stream.Duplex.prototype, {
constructor: { value: HungryStream }
});
function HungryStream(options) {
stream.Duplex.call(this, options);
this.waiting = false; //
}
HungryStream.prototype._write = function(chunk, encoding, callback) {
this.waiting = false;
this.push('\u001b[32m' + chunk + '\u001b[39m');
callback(); //
};
HungryStream.prototype._read = function(size) {
if (!this.waiting) {
this.push('Feed me data! > '); //
this.waiting = true;
}
};
var hungryStream = new HungryStream();
process.stdin.pipe(hungryStream).pipe(process.stdout); //
================================================
FILE: listings/streams/node-0.10/errors.js
================================================
var fs = require('fs');
var stream = fs.createReadStream('not-found'); //
stream.on('error', function(err) { //
console.trace();
console.error('Stack:', err.stack);
console.error('The error raised was:', err);
});
================================================
FILE: listings/streams/node-0.10/express.js
================================================
var stream = require('stream');
var util = require('util');
var express = require('express');
var app = express();
util.inherits(StatStream, stream.Readable); //
function StatStream(limit) {
stream.Readable.call(this);
this.limit = limit;
}
StatStream.prototype._read = function(size) {
if (this.limit === 0) {
// Done
this.push();
} else {
this.push(util.inspect(process.memoryUsage())); //
this.push('\n');
this.limit--;
}
};
app.get('/', function(req, res) {
var statStream = new StatStream(10);
statStream.pipe(res); //
});
app.listen(3000);
================================================
FILE: listings/streams/node-0.10/index.html
================================================
Node static assets
Streaming
... is the only way to fly!
================================================
FILE: listings/streams/node-0.10/json-line-reader.js
================================================
var stream = require('stream');
var util = require('util');
var fs = require('fs');
function JSONLineReader(source) {
stream.Readable.call(this); //
this._source = source;
this._foundLineEnd = false;
this._buffer = '';
source.on('readable', function() {
this.read(); //
}.bind(this));
}
util.inherits(JSONLineReader, stream.Readable); //
JSONLineReader.prototype._read = function(size) { //
var chunk;
var line;
var lineIndex;
var result;
if (this._buffer.length === 0) { //
chunk = this._source.read();
this._buffer += chunk;
}
lineIndex = this._buffer.indexOf('\n');
if (lineIndex !== -1) {
line = this._buffer.slice(0, lineIndex); //
if (line) {
result = JSON.parse(line);
this._buffer = this._buffer.slice(lineIndex + 1);
this.emit('object', result); //
this.push(util.inspect(result)); //
} else {
this._buffer = this._buffer.slice(1);
}
}
};
var input = fs.createReadStream(__dirname + '/json-lines.txt', {
encoding: 'utf8'
}); //
var jsonLineReader = new JSONLineReader(input);
jsonLineReader.on('object', function(obj) {
console.log('pos:', obj.position, '- letter:', obj.letter);
});
================================================
FILE: listings/streams/node-0.10/json-lines.txt
================================================
{ "position": 0, "letter": "a" }
{ "position": 1, "letter": "b" }
{ "position": 2, "letter": "c" }
{ "position": 3, "letter": "d" }
{ "position": 4, "letter": "e" }
{ "position": 5, "letter": "f" }
{ "position": 6, "letter": "g" }
{ "position": 7, "letter": "h" }
{ "position": 8, "letter": "i" }
{ "position": 9, "letter": "j" }
================================================
FILE: listings/streams/node-0.10/objectmode.js
================================================
var stream = require('stream');
var util = require('util');
util.inherits(MemoryStream, stream.Readable);
function MemoryStream(options) {
options = options || {};
options.objectMode = true; //
stream.Readable.call(this, options);
}
MemoryStream.prototype._read = function(size) {
this.push(process.memoryUsage()); //
};
var memoryStream = new MemoryStream();
memoryStream.on('readable', function() { //
var output = memoryStream.read();
console.log('Type: %s, value: %j', typeof output, output);
});
================================================
FILE: listings/streams/node-0.10/readable.js
================================================
var Readable = require('stream').Readable;
function MyStream(options) {
Readable.call(this, options); //
}
MyStream.prototype = Object.create(Readable.prototype, { //
constructor: { value: MyStream }
});
================================================
FILE: listings/streams/node-0.10/sample.csv
================================================
name,location,role
Alex,UK,admin
Sam,France,user
John,Canada,user
================================================
FILE: listings/streams/node-0.10/static-web-gz.js
================================================
var http = require('http');
var fs = require('fs');
var zlib = require('zlib');
http.createServer(function(req, res) {
res.writeHead(200, { 'content-encoding': 'gzip' }); //
fs.createReadStream(__dirname + '/index.html')
.pipe(zlib.createGzip())//
.pipe(res);
}).listen(8000);
================================================
FILE: listings/streams/node-0.10/static-web-server.js
================================================
var http = require('http');
var fs = require('fs');
http.createServer(function(req, res) {
fs.createReadStream(__dirname + '/index.html').pipe(res); //
}).listen(8000);
================================================
FILE: listings/streams/node-0.10/testing.js
================================================
var assert = require('assert');
var fs = require('fs');
var CSVParser = require('./csvparser');
var parser = new CSVParser();
var actual = [];
fs.createReadStream(__dirname + '/sample.csv')
.pipe(parser);
process.on('exit', function() { //
actual.push(parser.read()); //
actual.push(parser.read());
actual.push(parser.read());
var expected = [ //
{ name: 'Alex', location: 'UK', role: 'admin' },
{ name: 'Sam', location: 'France', role: 'user' },
{ name: 'John', location: 'Canada', role: 'user' }
];
assert.deepEqual(expected, actual); //
});
================================================
FILE: listings/streams/node-0.10/transform.js
================================================
var fs = require('fs');
var stream = require('stream');
CSVParser.prototype = Object.create(stream.Transform.prototype, {
constructor: { value: CSVParser }
});
function CSVParser(options) {
stream.Transform.call(this, options);
this.value = ''; //
this.headers = [];
this.values = [];
this.line = 0;
}
CSVParser.prototype._transform = function(chunk, encoding, done) { //
var c;
var i;
chunk = chunk.toString();
for (i = 0; i < chunk.length; i++) { //
c = chunk.charAt(i);
if (c === ',') { //
this.addValue();
} else if (c === '\n') {
this.addValue();
if (this.line > 0) {
this.push(JSON.stringify(this.toObject())); //
}
this.values = [];
this.line++;
} else {
this.value += c;
}
}
done(); //
};
CSVParser.prototype.toObject = function() {
var i;
var obj = {};
for (i = 0; i < this.headers.length; i++) { //
obj[this.headers[i]] = this.values[i];
}
return obj;
};
CSVParser.prototype.addValue = function() {
if (this.line === 0) { //
this.headers.push(this.value);
} else {
this.values.push(this.value);
}
this.value = '';
};
var parser = new CSVParser();
fs.createReadStream(__dirname + '/sample.csv')
.pipe(parser)
.pipe(process.stdout);
================================================
FILE: listings/streams/node-0.10/wrap.js
================================================
var stream = require('stream');
var Readable = stream.Readable;
var util = require('util');
util.inherits(MemoryStream, stream);
function MemoryStream(interval) {
this.readable = true; //
setInterval(function() {
var data = process.memoryUsage();
data.date = new Date();
this.emit('data', JSON.stringify(data) + '\n'); //
}.bind(this), interval);
}
var memoryStream = new MemoryStream(250);
var wrappedStream = new Readable().wrap(memoryStream); //
wrappedStream.pipe(process.stdout); //
================================================
FILE: listings/streams/node-0.10/writable.js
================================================
var stream = require('stream');
//
GreenStream.prototype = Object.create(stream.Writable.prototype, {
constructor: { value: GreenStream }
});
function GreenStream(options) {
stream.Writable.call(this, options);
}
GreenStream.prototype._write = function(chunk, encoding, callback) {
process.stdout.write('\u001b[32m' + chunk + '\u001b[39m'); //
callback(); //
};
process.stdin.pipe(new GreenStream()); //
================================================
FILE: listings/streams/node-0.8/advanced-pipe.js
================================================
var stream = require('readable-stream');
var util = require('util');
util.inherits(MemoryStream, stream.Readable);
util.inherits(OutputStream, stream.Writable);
function MemoryStream() {
this.isTTY = process.stdout.isTTY; //
stream.Readable.call(this);
}
MemoryStream.prototype._read = function() {
var text = JSON.stringify(process.memoryUsage()) + '\n';
if (this.isTTY) { //
this.push('\u001b[32m' + text + '\u001b[39m');
} else {
this.push(text);
}
};
// A simple writable stream
function OutputStream() {
stream.Writable.call(this);
this.on('pipe', function(dest) { //
dest.isTTY = this.isTTY;
}.bind(this));
}
OutputStream.prototype._write = function(chunk, encoding, cb) {
util.print(chunk.toString());
cb();
};
var memoryStream = new MemoryStream();
// Switch the desired output stream by commenting one of these lines:
//memoryStream.pipe(new OutputStream);
memoryStream.pipe(process.stdout);
================================================
FILE: listings/streams/node-0.8/buffer-size.js
================================================
var fs = require('fs');
var zlib = require('zlib');
function benchStream(inSize, outSize) {
var time = process.hrtime(); //
var watermark = process.memoryUsage().rss;
var input = fs.createReadStream('/usr/share/dict/words', {
bufferSize: inSize
});
var gzip = zlib.createGzip({ chunkSize: outSize });
var output = fs.createWriteStream('out.gz', {
bufferSize: inSize
});
var memoryCheck = setInterval(function() { //
var rss = process.memoryUsage().rss;
if (rss > watermark) {
watermark = rss;
}
}, 50);
input.on('end', function() { //
var memoryEnd = process.memoryUsage();
clearInterval(memoryCheck);
var diff = process.hrtime(time);
console.log([inSize, outSize, (diff[0] * 1e9 + diff[1]) / 1000000, watermark / 1024].join(', ')); //
});
input.pipe(gzip).pipe(output); //
return input;
}
console.log('file size, gzip size, ms, RSS');
var fileSize = 128;
var zipSize = 5024;
function run(times) {
benchStream(fileSize, zipSize).on('end', function() { //
times--;
fileSize *= 2;
zipSize *= 2;
if (times > 0) {
run(times); //
}
});
}
run(10); //
================================================
FILE: listings/streams/node-0.8/csvparser.js
================================================
var stream = require('readable-stream');
module.exports = CSVParser;
CSVParser.prototype = Object.create(stream.Transform.prototype, {
constructor: { value: CSVParser }
});
function CSVParser(options) {
options = options || {};
options.objectMode = true;
stream.Transform.call(this, options);
this.value = '';
this.headers = [];
this.values = [];
this.line = 0;
}
CSVParser.prototype._transform = function(chunk, encoding, done) {
var c;
var i;
chunk = chunk.toString();
for (i = 0; i < chunk.length; i++) {
c = chunk.charAt(i);
if (c === ',') {
this.addValue();
} else if (c === '\n') {
this.addValue();
if (this.line > 0) {
this.push(this.toObject());
}
this.values = [];
this.line++;
} else {
this.value += c;
}
}
done();
};
CSVParser.prototype.toObject = function() {
var i;
var obj = {};
for (i = 0; i < this.headers.length; i++) {
obj[this.headers[i]] = this.values[i];
}
return obj;
};
CSVParser.prototype.addValue = function() {
if (this.line === 0) {
this.headers.push(this.value);
} else {
this.values.push(this.value);
}
this.value = '';
};
================================================
FILE: listings/streams/node-0.8/duplex.js
================================================
var stream = require('readable-stream');
HungryStream.prototype = Object.create(stream.Duplex.prototype, {
constructor: { value: HungryStream }
});
function HungryStream(options) {
stream.Duplex.call(this, options);
this.waiting = false; //
}
HungryStream.prototype._write = function(chunk, encoding, callback) {
this.waiting = false;
this.push('\u001b[32m' + chunk + '\u001b[39m');
callback(); //
};
HungryStream.prototype._read = function(size) {
if (!this.waiting) {
this.push('Feed me data! > '); //
this.waiting = true;
}
};
var hungryStream = new HungryStream();
process.stdin.pipe(hungryStream).pipe(process.stdout); //
================================================
FILE: listings/streams/node-0.8/errors.js
================================================
var fs = require('fs');
var stream = fs.createReadStream('not-found'); //
stream.on('error', function(err) { //
console.trace();
console.error('Stack:', err.stack);
console.error('The error raised was:', err);
});
================================================
FILE: listings/streams/node-0.8/index.html
================================================
Node static assets
Streaming
... is the only way to fly!
================================================
FILE: listings/streams/node-0.8/json-line-reader.js
================================================
var stream = require('readable-stream');
var util = require('util');
var fs = require('fs');
function JSONLineReader(source) {
stream.Readable.call(this); //
this._source = source;
this._foundLineEnd = false;
this._buffer = '';
source.on('readable', function() {
this.read(0); //
}.bind(this));
}
util.inherits(JSONLineReader, stream.Readable); //
JSONLineReader.prototype._read = function(size) { //
var chunk;
var line;
var lineIndex;
var result;
if (this._buffer.length === 0) { //
chunk = this._source.read();
this._buffer += chunk;
}
lineIndex = this._buffer.indexOf('\n');
if (lineIndex !== -1) {
line = this._buffer.slice(0, lineIndex); //
if (line) {
result = JSON.parse(line);
this._buffer = this._buffer.slice(lineIndex + 1);
this.emit('object', result); //
this.push(util.inspect(result)); //
} else {
this._buffer = this._buffer.slice(1);
}
}
};
var input = fs.createReadStream(__dirname + '/json-lines.txt', { encoding: 'utf8' }); //
var jsonLineReader = new JSONLineReader(input);
jsonLineReader.on('object', function(obj) {
console.log('pos:', obj.position, '- letter:', obj.letter);
});
================================================
FILE: listings/streams/node-0.8/json-lines.txt
================================================
{ "position": 0, "letter": "a" }
{ "position": 1, "letter": "b" }
{ "position": 2, "letter": "c" }
{ "position": 3, "letter": "d" }
{ "position": 4, "letter": "e" }
{ "position": 5, "letter": "f" }
{ "position": 6, "letter": "g" }
{ "position": 7, "letter": "h" }
{ "position": 8, "letter": "i" }
{ "position": 9, "letter": "j" }
================================================
FILE: listings/streams/node-0.8/objectmode.js
================================================
var stream = require('readable-stream');
var util = require('util');
util.inherits(MemoryStream, stream.Readable);
function MemoryStream(options) {
options = options || {};
options.objectMode = true; //
stream.Readable.call(this, options);
}
MemoryStream.prototype._read = function(size) {
this.push(process.memoryUsage()); //
};
var memoryStream = new MemoryStream();
memoryStream.on('readable', function() { //
var output = memoryStream.read();
console.log('Type: %s, value: %j', typeof output, output);
});
================================================
FILE: listings/streams/node-0.8/sample.csv
================================================
name,location,role
Alex,UK,admin
Sam,France,user
John,Canada,user
================================================
FILE: listings/streams/node-0.8/static-web-gz.js
================================================
var http = require('http');
var fs = require('fs');
var zlib = require('zlib');
http.createServer(function(req, res) {
res.writeHead(200, { 'content-encoding': 'gzip' }); //
fs.createReadStream(__dirname + '/index.html')
.pipe(zlib.createGzip())//
.pipe(res);
}).listen(8000);
================================================
FILE: listings/streams/node-0.8/static-web-server.js
================================================
var http = require('http');
var fs = require('fs');
http.createServer(function(req, res) {
fs.createReadStream(__dirname + '/index.html').pipe(res); //
}).listen(8000);
================================================
FILE: listings/streams/node-0.8/testing.js
================================================
var assert = require('assert');
var fs = require('fs');
var CSVParser = require('./csvparser');
var parser = new CSVParser();
var actual = [];
fs.createReadStream(__dirname + '/sample.csv').pipe(parser);
process.on('exit', function() { //
actual.push(parser.read()); //
actual.push(parser.read());
actual.push(parser.read());
var expected = [ //
{ name: 'Alex', location: 'UK', role: 'admin' },
{ name: 'Sam', location: 'France', role: 'user' },
{ name: 'John', location: 'Canada', role: 'user' }
];
assert.deepEqual(expected, actual); //
});
================================================
FILE: listings/streams/node-0.8/transform.js
================================================
var fs = require('fs');
var stream = require('readable-stream');
CSVParser.prototype = Object.create(stream.Transform.prototype, {
constructor: { value: CSVParser }
});
function CSVParser(options) {
stream.Transform.call(this, options);
this.value = ''; //
this.headers = [];
this.values = [];
this.line = 0;
}
CSVParser.prototype._transform = function(chunk, encoding, done) { //
var c;
var i;
chunk = chunk.toString();
for (i = 0; i < chunk.length; i++) { //
c = chunk.charAt(i);
if (c === ',') { //
this.addValue();
} else if (c === '\n') {
this.addValue();
if (this.line > 0) {
this.push(JSON.stringify(this.toObject())); //
}
this.values = [];
this.line++;
} else {
this.value += c;
}
}
done(); //
};
CSVParser.prototype.toObject = function() {
var i;
var obj = {};
for (i = 0; i < this.headers.length; i++) { //
obj[this.headers[i]] = this.values[i];
}
return obj;
};
CSVParser.prototype.addValue = function() {
if (this.line === 0) { //
this.headers.push(this.value);
} else {
this.values.push(this.value);
}
this.value = '';
};
var parser = new CSVParser();
fs.createReadStream(__dirname + '/sample.csv').pipe(parser).pipe(process.stdout);
================================================
FILE: listings/streams/node-0.8/writable.js
================================================
var stream = require('readable-stream');
//
GreenStream.prototype = Object.create(stream.Writable.prototype, {
constructor: { value: GreenStream }
});
function GreenStream(options) {
stream.Writable.call(this, options);
}
GreenStream.prototype._write = function(chunk, encoding, callback) {
process.stdout.write('\u001b[32m' + chunk + '\u001b[39m'); //
callback(); //
};
process.stdin.pipe(new GreenStream()); //
================================================
FILE: listings/testing/assertions.js
================================================
var assert = require('assert'); //
var actual = square(2);
var expected = 4;
assert(actual, 'square() should have returned a value'); //
assert.equal(
actual,
expected,
'square() did not calculate the correct value'
); //
function square(number) { //
return number * number + 1;
}
================================================
FILE: listings/testing/custom_assert.js
================================================
var assert = require('assert'); //
assert.match = match;
function match(actual, regex, message) {
if (!actual.match(regex)) { //
assert.fail(actual, regex, message, 'match', assert.match);
}
}
assert.match('{ name: "Alex" }', /Alex/, 'The name should be "Alex"'); //
assert.throws( //
function() {
assert.match('{ name: "Alex" }', /xlex/, 'This should fail');
},
assert.AssertionError,
'A non-matching regex should throw an AssertionError'
);
================================================
FILE: listings/testing/deepequal.js
================================================
var assert = require('assert'); //
var actual = login('Alex');
var expected = new User('Alex');
assert.deepEqual(actual, expected, 'The user state was not correct'); //
function User(name) {
this.name = name;
this.permissions = {
admin: false
};
}
function login(name) {
var user = new User(name);
user.permissions.admin = true; //
return user;
}
================================================
FILE: listings/testing/iferror.js
================================================
var assert = require('assert');
var fs = require('fs');
function readConfigFile(cb) { //
fs.readFile('config.cfg', function(err, data) {
if (err && err.code === 'ENOENT') { //
cb(null, { database: 'psql://localhost/test' });
} else if (err) {
cb(err); //
} else {
// Do important configuration stuff
cb(null, data);
}
});
}
// Test to make sure non-existent configuration
// files are handled correctly.
readConfigFile(function(err, data) {
assert.ifError(err); //
});
================================================
FILE: listings/testing/mocha-data-loading.js
================================================
var assert = require('assert');
var crypto = require('crypto');
function User(fields) { //
this.fields = fields;
}
User.prototype.save = function(cb) {
process.nextTick(cb); //
};
User.prototype.signIn = function(password) {
var shasum = crypto.createHash('sha1');
shasum.update(password);
return shasum.digest('hex') === this.fields.hashed_password;
};
describe('user model', function() {
describe('sign in', function() {
var user = new User({ //
email: 'alex@example.com',
hashed_password: 'a94a8fe5ccb19ba61c4c0873d391e987982fbbd3'
});
before(function(done) {
user.save(done); //
});
it('should accept the correct password', function() {
assert(user.signIn('test'));
});
it('should not accept the wrong password', function() {
assert.equal(user.signIn('wrong'), false);
});
});
});
================================================
FILE: listings/testing/mocha-example-1/index.js
================================================
module.exports.square = function(a) { //
return a * a;
};
module.exports.randomTimeout = function(cb) {
setTimeout(cb, Math.random() * 500); //
};
================================================
FILE: listings/testing/mocha-example-1/package.json
================================================
{
"name": "mocha-example-1",
"version": "0.0.0",
"description": "A basic Mocha example",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"mocha": "~1.13.0"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --slow 2000 test/*.js"
},
"author": "Alex R. Young",
"license": "MIT"
}
================================================
FILE: listings/testing/mocha-example-1/test/example_test.js
================================================
var index = require('./../index');
var assert = require('assert');
describe('Amazing mathematical operations', function() { //
it('should square numbers', function() {
assert.equal(index.square(4), 16);
});
it('should run a callback after a delay', function(done) { //
index.randomTimeout(function() {
assert(true);
done(); //
});
});
});
================================================
FILE: listings/testing/mocha-example-web/index.js
================================================
var http = require('http');
var server = http.createServer(function(req, res) {
if (req.url.match(/^\/square/)) {
var params = req.url.split('/'); //
var number;
if (params.length > 1 && params[2]) {
number = parseInt(params[2], 10);
res.writeHead(200);
res.end((number * number).toString()); //
} else {
res.writeHead(500); //
res.end('Invalid input');
}
} else {
res.writeHead(404);
res.end('Not found');
}
})
server.listen(8000);
module.exports = server;
================================================
FILE: listings/testing/mocha-example-web/package.json
================================================
{
"name": "mocha-example-web",
"version": "0.0.0",
"description": "A Mocha example for web applications",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"mocha": "~1.13.0",
"supertest": "~0.8.0"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --slow 500 test/*.js"
},
"author": "Alex R. Young",
"license": "MIT"
}
================================================
FILE: listings/testing/mocha-example-web/test/example_test.js
================================================
var assert = require('assert');
var http = require('http');
var index = require('./../index');
function request(method, url, cb) {//
http.request({
hostname: 'localhost',
port: 8000,
path: url,
method: method
}, function(res) {
res.body = '';
res.on('data', function(chunk) {//
res.body += chunk;
});
res.on('end', function() {
cb(res);//
});
}).end();
}
describe('Example web app', function() {
it('should square numbers', function(done) {
request('GET', '/square/4', function(res) {
assert.equal(res.statusCode, 200);
assert.equal(res.body, '16');//
done();
});
});
it('should return a 500 for invalid square requests', function(done) {
request('GET', '/square', function(res) {
assert.equal(res.statusCode, 500);//
done();
});
});
});
================================================
FILE: listings/testing/mocha-example-web/test/improved_test.js
================================================
var assert = require('assert');
var index = require('./../index');
var request = require('supertest');
describe('Example web app', function() {
it('should square numbers', function(done) {
request(index) //
.get('/square/4')
.expect(200) //
.expect(/16/, done); //
});
it('should return a 500 for invalid square requests', function(done) {
request(index)
.get('/square')
.expect(500, done); //
});
});
================================================
FILE: listings/testing/mocha-init.js
================================================
var assert = require('assert');
var exec = require('child_process').exec;
var path = require('path');
var ran = 0; //
var db = {
config: {
username: 'nodeinpractice',
password: 'password'
}
};
function loadFixture(sqlFile, cb) { //
sqlFile = path.resolve(sqlFile);
var command = 'mysql -u ' + db.config.username + ' ';
command += db.config.database + ' < ' + sqlFile; //
exec(command, function(err, stdout, stderr) { //
if (err) {
console.error(stderr);
throw err;
} else {
cb();
}
});
}
before(function(done) { //
ran++;
assert.equal(1, ran); //
assert.equal(process.env.NODE_ENV, 'test', 'NODE_ENV is not test'); //
loadFixture(__dirname + '/fixtures/file.sql', function() { //
process.nextTick(done);
});
});
================================================
FILE: listings/testing/mocha-sinon/db.js
================================================
var redis = require('redis');
var db = redis.createClient();
module.exports = db;
================================================
FILE: listings/testing/mocha-sinon/index.js
================================================
var User = require('./user');
var alex = new User(1, { name: 'Alex' });
alex.save(function(err, reply) {
if (err) {
console.error(err);
}
var savedUser = new User(1);
savedUser.load(function(err, reply) {
if (err) {
console.error(err);
}
console.log(savedUser.fields);
alex.db.unref();
});
});
================================================
FILE: listings/testing/mocha-sinon/package.json
================================================
{
"name": "mocha-sinon",
"version": "0.0.0",
"description": "An example using Sinon.JS and Mocha.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/**/*_test.js"
},
"author": "Alex R. Young",
"license": "MIT",
"devDependencies": {
"sinon": "~1.7.3",
"mocha": "~1.13.0"
},
"dependencies": {
"redis": "~0.9.0"
}
}
================================================
FILE: listings/testing/mocha-sinon/test/integration_equivalent.js
================================================
var assert = require('assert');
var sinon = require('sinon');
var User = require('./../user');
describe('Users (integration test)', function() {
var fields = {
name: 'Huxley',
hashedPassword: 'a94a8fe5ccb19ba61c4c0873d391e987982fbbd3'
};
var user;
var userId = 1;
before(function(done) {
user = new User(userId, fields);
user.save(done);
});
after(function() {
// Tell Redis to close the connection when ready
user.db.unref();
});
it('should load users', function(done) {
var testUser = new User(userId);
testUser.load(function(err) {
assert.equal(testUser.fields.name, user.fields.name);
done(err);
});
});
it('should allow users to sign in', function(done) {
user.signIn('test', function(err, signedIn) {
assert(signedIn);
done(err);
});
});
it('should require the correct password', function(done) {
user.signIn('wrong', function(err, signedIn) {
assert(!signedIn);
done(err);
});
});
});
================================================
FILE: listings/testing/mocha-sinon/test/user_test.js
================================================
var assert = require('assert');
var sinon = require('sinon');
var db = sinon.mock(require('./../db')); //
var User = require('./../user');
describe('Users', function() {
var fields = {
name: 'Huxley',
hashedPassword: 'a94a8fe5ccb19ba61c4c0873d391e987982fbbd3' //
};
var user;
before(function() {
user = new User(1, fields);
var stub = sinon
.stub(user.db, 'hmget') //
.callsArgWith(2, null, JSON.stringify(fields)); //
});
it('should allow users to sign in', function(done) {
user.signIn('test', function(err, signedIn) {
assert(signedIn);
done(err);
});
});
it('should require the correct password', function(done) {
user.signIn('wrong', function(err, signedIn) {
assert(!signedIn);
done(err);
});
});
});
================================================
FILE: listings/testing/mocha-sinon/user.js
================================================
var crypto = require('crypto');
function User(id, fields) {
this.id = id;
this.fields = fields;
this.db = require('./db');
}
User.prototype = {
hashPassword: function(text) {
var shasum = crypto.createHash('sha1');
shasum.update(text);
return shasum.digest('hex');
},
save: function(cb) {
this.db.hmset('user:' + this.id, 'fields', JSON.stringify(this.fields), cb)
},
load: function(cb) {
this.db.hmget('user:' + this.id, 'fields', function(err, fields) {
this.fields = JSON.parse(fields);
cb(err, this);
}.bind(this));
},
signIn: function(password, cb) {
var hashedPassword = this.hashPassword(password);
this.load(function(err) {
if (err) {
cb(err);
} else {
cb(null, this.fields.hashedPassword === hashedPassword);
}
}.bind(this));
}
};
module.exports = User;
================================================
FILE: listings/testing/runner/package-text.json
================================================
{
"name": "testrunner",
"version": "0.0.0",
"description": "A test runner",
"main": "test-runner.js",
"dependencies": {},
"devDependencies": {},
"scripts": {
"test": "node test-runner.js test.js test2.js" //
},
"author": "",
"license": "MIT"
}
================================================
FILE: listings/testing/runner/package.json
================================================
{
"name": "testrunner",
"version": "0.0.0",
"description": "A test runner",
"main": "test-runner.js",
"dependencies": {},
"devDependencies": {},
"scripts": {
"test": "node test-runner.js test.js test2.js"
},
"author": "",
"license": "MIT"
}
================================================
FILE: listings/testing/runner/test-runner.js
================================================
var assert = require('assert');
var exitCode = 0;
var filenames = process.argv.slice(2);
it = function(name, test) { //
var err;
try {
test();//
} catch (e) {
err = e;
}
console.log(' - it', name, err ? '[FAIL]' : '[OK]');//
if (err) {
console.error(err);
console.error(err.stack);//
exitCode = 1;
}
};
filenames.forEach(function(filename) {//
console.log(filename);
require('./' + filename);
});
process.on('exit', function() {//
process.exit(exitCode);
});
================================================
FILE: listings/testing/runner/test.js
================================================
var assert = require('assert');
it('should run a test', function() { //
assert('a' === 'a');
});
it('should allow a test to fail', function() {
assert(true);
assert.equal('a', 'b', 'Bad test'); //
});
it('should run a test after the failed test', function() {
assert(true); //
});
================================================
FILE: listings/testing/runner/test2.js
================================================
var assert = require('assert');
it('should run a test from another file', function() {
assert('a' === 'a');
});
it('should run a test after the failed test', function() {
assert(true);
});
================================================
FILE: listings/testing/tap-example/index.js
================================================
module.exports.square = function(a) {
return a * a;
};
module.exports.randomTimeout = function(cb) {
setTimeout(cb, Math.random() * 500);
};
================================================
FILE: listings/testing/tap-example/package.json
================================================
{
"name": "tap-example",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "./node_modules/tap/bin/tap.js test/*_test.js"
},
"author": "",
"license": "BSD-2-Clause",
"devDependencies": {
"tap": "~0.4.4"
}
}
================================================
FILE: listings/testing/tap-example/test/index_test.js
================================================
var index = require('./../index');
var test = require('tap').test; //
test("Alex's handy mathematics module", function(t) { //
t.test('square', function(t) {
t.equal(index.square(4), 16);//
t.end();//
});
t.test('randomTimeout', function(t) {
t.plan(1);//
index.randomTimeout(function() {
t.ok(true);//
});
});
t.end();
});
================================================
FILE: listings/testing/throws.js
================================================
var assert = require('assert');
var util = require('util');
assert.throws(
function() { //
loginAdmin('Alex');
},
PermissionError, //
'A PermissionError was expected'
);
function PermissionError() { //
Error.call(this, arguments);
}
util.inherits(PermissionError, Error);
function User(name) {
this.name = name;
this.permissions = {
admin: false
};
}
function loginAdmin(name) {
var user = new User(name);
if (!user.permissions.admin) {
throw new PermissionError('You are not an administrator'); //
}
return user;
}
================================================
FILE: listings/testing/travis-example/.travis.yml
================================================
language: node_js
node_js:
- "0.10"
================================================
FILE: listings/testing/travis-example/package.json
================================================
{
"name": "travis-example",
"version": "0.0.0",
"description": "A sample project for setting up Travis CI and Node.",
"main": "test.js",
"scripts": {
"test": "node test.js"
},
"author": "Alex R. Young",
"license": "MIT"
}
================================================
FILE: listings/testing/travis-example/test.js
================================================
var assert = require('assert');
function square(a) {
return a * a;
}
assert.equal(square(4), 16); //
================================================
FILE: listings/web/browserify-1/bundle.js
================================================
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o 0 && this._events[type].length > m) {
this._events[type].warned = true;
console.error('(node) warning: possible EventEmitter memory ' +
'leak detected. %d listeners added. ' +
'Use emitter.setMaxListeners() to increase limit.',
this._events[type].length);
console.trace();
}
}
return this;
};
EventEmitter.prototype.on = EventEmitter.prototype.addListener;
EventEmitter.prototype.once = function(type, listener) {
if (!isFunction(listener))
throw TypeError('listener must be a function');
var fired = false;
function g() {
this.removeListener(type, g);
if (!fired) {
fired = true;
listener.apply(this, arguments);
}
}
g.listener = listener;
this.on(type, g);
return this;
};
// emits a 'removeListener' event iff the listener was removed
EventEmitter.prototype.removeListener = function(type, listener) {
var list, position, length, i;
if (!isFunction(listener))
throw TypeError('listener must be a function');
if (!this._events || !this._events[type])
return this;
list = this._events[type];
length = list.length;
position = -1;
if (list === listener ||
(isFunction(list.listener) && list.listener === listener)) {
delete this._events[type];
if (this._events.removeListener)
this.emit('removeListener', type, listener);
} else if (isObject(list)) {
for (i = length; i-- > 0;) {
if (list[i] === listener ||
(list[i].listener && list[i].listener === listener)) {
position = i;
break;
}
}
if (position < 0)
return this;
if (list.length === 1) {
list.length = 0;
delete this._events[type];
} else {
list.splice(position, 1);
}
if (this._events.removeListener)
this.emit('removeListener', type, listener);
}
return this;
};
EventEmitter.prototype.removeAllListeners = function(type) {
var key, listeners;
if (!this._events)
return this;
// not listening for removeListener, no need to emit
if (!this._events.removeListener) {
if (arguments.length === 0)
this._events = {};
else if (this._events[type])
delete this._events[type];
return this;
}
// emit removeListener for all listeners on all events
if (arguments.length === 0) {
for (key in this._events) {
if (key === 'removeListener') continue;
this.removeAllListeners(key);
}
this.removeAllListeners('removeListener');
this._events = {};
return this;
}
listeners = this._events[type];
if (isFunction(listeners)) {
this.removeListener(type, listeners);
} else {
// LIFO order
while (listeners.length)
this.removeListener(type, listeners[listeners.length - 1]);
}
delete this._events[type];
return this;
};
EventEmitter.prototype.listeners = function(type) {
var ret;
if (!this._events || !this._events[type])
ret = [];
else if (isFunction(this._events[type]))
ret = [this._events[type]];
else
ret = this._events[type].slice();
return ret;
};
EventEmitter.listenerCount = function(emitter, type) {
var ret;
if (!emitter._events || !emitter._events[type])
ret = 0;
else if (isFunction(emitter._events[type]))
ret = 1;
else
ret = emitter._events[type].length;
return ret;
};
function isFunction(arg) {
return typeof arg === 'function';
}
function isNumber(arg) {
return typeof arg === 'number';
}
function isObject(arg) {
return typeof arg === 'object' && arg !== null;
}
function isUndefined(arg) {
return arg === void 0;
}
},{}],3:[function(require,module,exports){
if (typeof Object.create === 'function') {
// implementation from standard node.js 'util' module
module.exports = function inherits(ctor, superCtor) {
ctor.super_ = superCtor
ctor.prototype = Object.create(superCtor.prototype, {
constructor: {
value: ctor,
enumerable: false,
writable: true,
configurable: true
}
});
};
} else {
// old school shim for old browsers
module.exports = function inherits(ctor, superCtor) {
ctor.super_ = superCtor
var TempCtor = function () {}
TempCtor.prototype = superCtor.prototype
ctor.prototype = new TempCtor()
ctor.prototype.constructor = ctor
}
}
},{}],4:[function(require,module,exports){
// shim for using process in browser
var process = module.exports = {};
process.nextTick = (function () {
var canSetImmediate = typeof window !== 'undefined'
&& window.setImmediate;
var canPost = typeof window !== 'undefined'
&& window.postMessage && window.addEventListener
;
if (canSetImmediate) {
return function (f) { return window.setImmediate(f) };
}
if (canPost) {
var queue = [];
window.addEventListener('message', function (ev) {
var source = ev.source;
if ((source === window || source === null) && ev.data === 'process-tick') {
ev.stopPropagation();
if (queue.length > 0) {
var fn = queue.shift();
fn();
}
}
}, true);
return function nextTick(fn) {
queue.push(fn);
window.postMessage('process-tick', '*');
};
}
return function nextTick(fn) {
setTimeout(fn, 0);
};
})();
process.title = 'browser';
process.browser = true;
process.env = {};
process.argv = [];
process.binding = function (name) {
throw new Error('process.binding is not supported');
}
// TODO(shtylman)
process.cwd = function () { return '/' };
process.chdir = function (dir) {
throw new Error('process.chdir is not supported');
};
},{}],5:[function(require,module,exports){
module.exports = function isBuffer(arg) {
return arg && typeof arg === 'object'
&& typeof arg.copy === 'function'
&& typeof arg.fill === 'function'
&& typeof arg.readUInt8 === 'function';
}
},{}],6:[function(require,module,exports){
var process=require("__browserify_process"),global=typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {};// Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to permit
// persons to whom the Software is furnished to do so, subject to the
// following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
var formatRegExp = /%[sdj%]/g;
exports.format = function(f) {
if (!isString(f)) {
var objects = [];
for (var i = 0; i < arguments.length; i++) {
objects.push(inspect(arguments[i]));
}
return objects.join(' ');
}
var i = 1;
var args = arguments;
var len = args.length;
var str = String(f).replace(formatRegExp, function(x) {
if (x === '%%') return '%';
if (i >= len) return x;
switch (x) {
case '%s': return String(args[i++]);
case '%d': return Number(args[i++]);
case '%j':
try {
return JSON.stringify(args[i++]);
} catch (_) {
return '[Circular]';
}
default:
return x;
}
});
for (var x = args[i]; i < len; x = args[++i]) {
if (isNull(x) || !isObject(x)) {
str += ' ' + x;
} else {
str += ' ' + inspect(x);
}
}
return str;
};
// Mark that a method should not be used.
// Returns a modified function which warns once by default.
// If --no-deprecation is set, then it is a no-op.
exports.deprecate = function(fn, msg) {
// Allow for deprecating things in the process of starting up.
if (isUndefined(global.process)) {
return function() {
return exports.deprecate(fn, msg).apply(this, arguments);
};
}
if (process.noDeprecation === true) {
return fn;
}
var warned = false;
function deprecated() {
if (!warned) {
if (process.throwDeprecation) {
throw new Error(msg);
} else if (process.traceDeprecation) {
console.trace(msg);
} else {
console.error(msg);
}
warned = true;
}
return fn.apply(this, arguments);
}
return deprecated;
};
var debugs = {};
var debugEnviron;
exports.debuglog = function(set) {
if (isUndefined(debugEnviron))
debugEnviron = process.env.NODE_DEBUG || '';
set = set.toUpperCase();
if (!debugs[set]) {
if (new RegExp('\\b' + set + '\\b', 'i').test(debugEnviron)) {
var pid = process.pid;
debugs[set] = function() {
var msg = exports.format.apply(exports, arguments);
console.error('%s %d: %s', set, pid, msg);
};
} else {
debugs[set] = function() {};
}
}
return debugs[set];
};
/**
* Echos the value of a value. Trys to print the value out
* in the best way possible given the different types.
*
* @param {Object} obj The object to print out.
* @param {Object} opts Optional options object that alters the output.
*/
/* legacy: obj, showHidden, depth, colors*/
function inspect(obj, opts) {
// default options
var ctx = {
seen: [],
stylize: stylizeNoColor
};
// legacy...
if (arguments.length >= 3) ctx.depth = arguments[2];
if (arguments.length >= 4) ctx.colors = arguments[3];
if (isBoolean(opts)) {
// legacy...
ctx.showHidden = opts;
} else if (opts) {
// got an "options" object
exports._extend(ctx, opts);
}
// set default options
if (isUndefined(ctx.showHidden)) ctx.showHidden = false;
if (isUndefined(ctx.depth)) ctx.depth = 2;
if (isUndefined(ctx.colors)) ctx.colors = false;
if (isUndefined(ctx.customInspect)) ctx.customInspect = true;
if (ctx.colors) ctx.stylize = stylizeWithColor;
return formatValue(ctx, obj, ctx.depth);
}
exports.inspect = inspect;
// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics
inspect.colors = {
'bold' : [1, 22],
'italic' : [3, 23],
'underline' : [4, 24],
'inverse' : [7, 27],
'white' : [37, 39],
'grey' : [90, 39],
'black' : [30, 39],
'blue' : [34, 39],
'cyan' : [36, 39],
'green' : [32, 39],
'magenta' : [35, 39],
'red' : [31, 39],
'yellow' : [33, 39]
};
// Don't use 'blue' not visible on cmd.exe
inspect.styles = {
'special': 'cyan',
'number': 'yellow',
'boolean': 'yellow',
'undefined': 'grey',
'null': 'bold',
'string': 'green',
'date': 'magenta',
// "name": intentionally not styling
'regexp': 'red'
};
function stylizeWithColor(str, styleType) {
var style = inspect.styles[styleType];
if (style) {
return '\u001b[' + inspect.colors[style][0] + 'm' + str +
'\u001b[' + inspect.colors[style][1] + 'm';
} else {
return str;
}
}
function stylizeNoColor(str, styleType) {
return str;
}
function arrayToHash(array) {
var hash = {};
array.forEach(function(val, idx) {
hash[val] = true;
});
return hash;
}
function formatValue(ctx, value, recurseTimes) {
// Provide a hook for user-specified inspect functions.
// Check that value is an object with an inspect function on it
if (ctx.customInspect &&
value &&
isFunction(value.inspect) &&
// Filter out the util module, it's inspect function is special
value.inspect !== exports.inspect &&
// Also filter out any prototype objects using the circular check.
!(value.constructor && value.constructor.prototype === value)) {
var ret = value.inspect(recurseTimes, ctx);
if (!isString(ret)) {
ret = formatValue(ctx, ret, recurseTimes);
}
return ret;
}
// Primitive types cannot have properties
var primitive = formatPrimitive(ctx, value);
if (primitive) {
return primitive;
}
// Look up the keys of the object.
var keys = Object.keys(value);
var visibleKeys = arrayToHash(keys);
if (ctx.showHidden) {
keys = Object.getOwnPropertyNames(value);
}
// IE doesn't make error fields non-enumerable
// http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx
if (isError(value)
&& (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {
return formatError(value);
}
// Some type of object without properties can be shortcutted.
if (keys.length === 0) {
if (isFunction(value)) {
var name = value.name ? ': ' + value.name : '';
return ctx.stylize('[Function' + name + ']', 'special');
}
if (isRegExp(value)) {
return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
}
if (isDate(value)) {
return ctx.stylize(Date.prototype.toString.call(value), 'date');
}
if (isError(value)) {
return formatError(value);
}
}
var base = '', array = false, braces = ['{', '}'];
// Make Array say that they are Array
if (isArray(value)) {
array = true;
braces = ['[', ']'];
}
// Make functions say that they are functions
if (isFunction(value)) {
var n = value.name ? ': ' + value.name : '';
base = ' [Function' + n + ']';
}
// Make RegExps say that they are RegExps
if (isRegExp(value)) {
base = ' ' + RegExp.prototype.toString.call(value);
}
// Make dates with properties first say the date
if (isDate(value)) {
base = ' ' + Date.prototype.toUTCString.call(value);
}
// Make error with message first say the error
if (isError(value)) {
base = ' ' + formatError(value);
}
if (keys.length === 0 && (!array || value.length == 0)) {
return braces[0] + base + braces[1];
}
if (recurseTimes < 0) {
if (isRegExp(value)) {
return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
} else {
return ctx.stylize('[Object]', 'special');
}
}
ctx.seen.push(value);
var output;
if (array) {
output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);
} else {
output = keys.map(function(key) {
return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);
});
}
ctx.seen.pop();
return reduceToSingleString(output, base, braces);
}
function formatPrimitive(ctx, value) {
if (isUndefined(value))
return ctx.stylize('undefined', 'undefined');
if (isString(value)) {
var simple = '\'' + JSON.stringify(value).replace(/^"|"$/g, '')
.replace(/'/g, "\\'")
.replace(/\\"/g, '"') + '\'';
return ctx.stylize(simple, 'string');
}
if (isNumber(value))
return ctx.stylize('' + value, 'number');
if (isBoolean(value))
return ctx.stylize('' + value, 'boolean');
// For some reason typeof null is "object", so special case here.
if (isNull(value))
return ctx.stylize('null', 'null');
}
function formatError(value) {
return '[' + Error.prototype.toString.call(value) + ']';
}
function formatArray(ctx, value, recurseTimes, visibleKeys, keys) {
var output = [];
for (var i = 0, l = value.length; i < l; ++i) {
if (hasOwnProperty(value, String(i))) {
output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,
String(i), true));
} else {
output.push('');
}
}
keys.forEach(function(key) {
if (!key.match(/^\d+$/)) {
output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,
key, true));
}
});
return output;
}
function formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {
var name, str, desc;
desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] };
if (desc.get) {
if (desc.set) {
str = ctx.stylize('[Getter/Setter]', 'special');
} else {
str = ctx.stylize('[Getter]', 'special');
}
} else {
if (desc.set) {
str = ctx.stylize('[Setter]', 'special');
}
}
if (!hasOwnProperty(visibleKeys, key)) {
name = '[' + key + ']';
}
if (!str) {
if (ctx.seen.indexOf(desc.value) < 0) {
if (isNull(recurseTimes)) {
str = formatValue(ctx, desc.value, null);
} else {
str = formatValue(ctx, desc.value, recurseTimes - 1);
}
if (str.indexOf('\n') > -1) {
if (array) {
str = str.split('\n').map(function(line) {
return ' ' + line;
}).join('\n').substr(2);
} else {
str = '\n' + str.split('\n').map(function(line) {
return ' ' + line;
}).join('\n');
}
}
} else {
str = ctx.stylize('[Circular]', 'special');
}
}
if (isUndefined(name)) {
if (array && key.match(/^\d+$/)) {
return str;
}
name = JSON.stringify('' + key);
if (name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) {
name = name.substr(1, name.length - 2);
name = ctx.stylize(name, 'name');
} else {
name = name.replace(/'/g, "\\'")
.replace(/\\"/g, '"')
.replace(/(^"|"$)/g, "'");
name = ctx.stylize(name, 'string');
}
}
return name + ': ' + str;
}
function reduceToSingleString(output, base, braces) {
var numLinesEst = 0;
var length = output.reduce(function(prev, cur) {
numLinesEst++;
if (cur.indexOf('\n') >= 0) numLinesEst++;
return prev + cur.replace(/\u001b\[\d\d?m/g, '').length + 1;
}, 0);
if (length > 60) {
return braces[0] +
(base === '' ? '' : base + '\n ') +
' ' +
output.join(',\n ') +
' ' +
braces[1];
}
return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];
}
// NOTE: These type checking functions intentionally don't use `instanceof`
// because it is fragile and can be easily faked with `Object.create()`.
function isArray(ar) {
return Array.isArray(ar);
}
exports.isArray = isArray;
function isBoolean(arg) {
return typeof arg === 'boolean';
}
exports.isBoolean = isBoolean;
function isNull(arg) {
return arg === null;
}
exports.isNull = isNull;
function isNullOrUndefined(arg) {
return arg == null;
}
exports.isNullOrUndefined = isNullOrUndefined;
function isNumber(arg) {
return typeof arg === 'number';
}
exports.isNumber = isNumber;
function isString(arg) {
return typeof arg === 'string';
}
exports.isString = isString;
function isSymbol(arg) {
return typeof arg === 'symbol';
}
exports.isSymbol = isSymbol;
function isUndefined(arg) {
return arg === void 0;
}
exports.isUndefined = isUndefined;
function isRegExp(re) {
return isObject(re) && objectToString(re) === '[object RegExp]';
}
exports.isRegExp = isRegExp;
function isObject(arg) {
return typeof arg === 'object' && arg !== null;
}
exports.isObject = isObject;
function isDate(d) {
return isObject(d) && objectToString(d) === '[object Date]';
}
exports.isDate = isDate;
function isError(e) {
return isObject(e) &&
(objectToString(e) === '[object Error]' || e instanceof Error);
}
exports.isError = isError;
function isFunction(arg) {
return typeof arg === 'function';
}
exports.isFunction = isFunction;
function isPrimitive(arg) {
return arg === null ||
typeof arg === 'boolean' ||
typeof arg === 'number' ||
typeof arg === 'string' ||
typeof arg === 'symbol' || // ES6 symbol
typeof arg === 'undefined';
}
exports.isPrimitive = isPrimitive;
exports.isBuffer = require('./support/isBuffer');
function objectToString(o) {
return Object.prototype.toString.call(o);
}
function pad(n) {
return n < 10 ? '0' + n.toString(10) : n.toString(10);
}
var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep',
'Oct', 'Nov', 'Dec'];
// 26 Feb 16:19:34
function timestamp() {
var d = new Date();
var time = [pad(d.getHours()),
pad(d.getMinutes()),
pad(d.getSeconds())].join(':');
return [d.getDate(), months[d.getMonth()], time].join(' ');
}
// log is just a thin wrapper to console.log that prepends a timestamp
exports.log = function() {
console.log('%s - %s', timestamp(), exports.format.apply(exports, arguments));
};
/**
* Inherit the prototype methods from one constructor into another.
*
* The Function.prototype.inherits from lang.js rewritten as a standalone
* function (not on Function.prototype). NOTE: If this file is to be loaded
* during bootstrapping this function needs to be rewritten using some native
* functions as prototype setup using normal JavaScript does not work as
* expected during bootstrapping (see mirror.js in r114903).
*
* @param {function} ctor Constructor function which needs to inherit the
* prototype.
* @param {function} superCtor Constructor function to inherit prototype from.
*/
exports.inherits = require('inherits');
exports._extend = function(origin, add) {
// Don't do anything if add isn't an object
if (!add || !isObject(add)) return origin;
var keys = Object.keys(add);
var i = keys.length;
while (i--) {
origin[keys[i]] = add[keys[i]];
}
return origin;
};
function hasOwnProperty(obj, prop) {
return Object.prototype.hasOwnProperty.call(obj, prop);
}
},{"./support/isBuffer":5,"__browserify_process":4,"inherits":3}]},{},[1])
================================================
FILE: listings/web/browserify-1/index.html
================================================
Browserify example
Messages
================================================
FILE: listings/web/browserify-1/index.js
================================================
var EventEmitter = require('events').EventEmitter; //
var util = require('util');
function MessageBus(options) {
EventEmitter.call(this, options);
this.on('message', this.messageReceived.bind(this));
}
util.inherits(MessageBus, EventEmitter); //
MessageBus.prototype.messageReceived = function(message) {
console.log('RX:', message);
};
var messageBus = new MessageBus();
messageBus.emit('message', 'Hello world!');
================================================
FILE: listings/web/browserify-2/bundle.js
================================================
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o' + msg + '
');
});
$(function() {
messageBus.emit('message', 'Hello from example 2');
});
},{"./messagebus":2,"jquery":3}],2:[function(require,module,exports){
var EventEmitter = require('events').EventEmitter;
var util = require('util');
function MessageBus(options) {
EventEmitter.call(this, options);
}
util.inherits(MessageBus, EventEmitter);
module.exports = MessageBus;
},{"events":4,"util":8}],3:[function(require,module,exports){
/*!
* jQuery JavaScript Library v2.1.0-beta3
* http://jquery.com/
*
* Includes Sizzle.js
* http://sizzlejs.com/
*
* Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2013-12-20T22:31Z
*/
(function( global, factory ) {
if ( typeof module === "object" && typeof module.exports === "object" ) {
// For CommonJS and CommonJS-like environments where a proper window is present,
// execute the factory and get jQuery
// For environments that do not inherently posses a window with a document
// (such as Node.js), expose a jQuery-making factory as module.exports
// This accentuates the need for the creation of a real window
// e.g. var jQuery = require("jquery")(window);
// See ticket #14549 for more info
module.exports = global.document ?
factory( global ) :
function( w ) {
if ( !w.document ) {
throw new Error( "jQuery requires a window with a document" );
}
return factory( w );
};
} else {
factory( global );
}
// Pass this, window may not be defined yet
}(this, function( window ) {
// Can't do this because several apps including ASP.NET trace
// the stack via arguments.caller.callee and Firefox dies if
// you try to trace through "use strict" call chains. (#13335)
// Support: Firefox 18+
//
var arr = [];
var slice = arr.slice;
var concat = arr.concat;
var push = arr.push;
var indexOf = arr.indexOf;
var class2type = {};
var toString = class2type.toString;
var hasOwn = class2type.hasOwnProperty;
var trim = "".trim;
var support = {};
var
// Use the correct document accordingly with window argument (sandbox)
document = window.document,
version = "2.1.0-beta3",
// Define a local copy of jQuery
jQuery = function( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
// Need init if jQuery is called (just allow error to be thrown if not included)
return new jQuery.fn.init( selector, context );
},
// Matches dashed string for camelizing
rmsPrefix = /^-ms-/,
rdashAlpha = /-([\da-z])/gi,
// Used by jQuery.camelCase as callback to replace()
fcamelCase = function( all, letter ) {
return letter.toUpperCase();
};
jQuery.fn = jQuery.prototype = {
// The current version of jQuery being used
jquery: version,
constructor: jQuery,
// Start with an empty selector
selector: "",
// The default length of a jQuery object is 0
length: 0,
toArray: function() {
return slice.call( this );
},
// Get the Nth element in the matched element set OR
// Get the whole matched element set as a clean array
get: function( num ) {
return num != null ?
// Return a 'clean' array
( num < 0 ? this[ num + this.length ] : this[ num ] ) :
// Return just the object
slice.call( this );
},
// Take an array of elements and push it onto the stack
// (returning the new matched element set)
pushStack: function( elems ) {
// Build a new jQuery matched element set
var ret = jQuery.merge( this.constructor(), elems );
// Add the old object onto the stack (as a reference)
ret.prevObject = this;
ret.context = this.context;
// Return the newly-formed element set
return ret;
},
// Execute a callback for every element in the matched set.
// (You can seed the arguments with an array of args, but this is
// only used internally.)
each: function( callback, args ) {
return jQuery.each( this, callback, args );
},
map: function( callback ) {
return this.pushStack( jQuery.map(this, function( elem, i ) {
return callback.call( elem, i, elem );
}));
},
slice: function() {
return this.pushStack( slice.apply( this, arguments ) );
},
first: function() {
return this.eq( 0 );
},
last: function() {
return this.eq( -1 );
},
eq: function( i ) {
var len = this.length,
j = +i + ( i < 0 ? len : 0 );
return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );
},
end: function() {
return this.prevObject || this.constructor(null);
},
// For internal use only.
// Behaves like an Array's method, not like a jQuery method.
push: push,
sort: arr.sort,
splice: arr.splice
};
jQuery.extend = jQuery.fn.extend = function() {
var options, name, src, copy, copyIsArray, clone,
target = arguments[0] || {},
i = 1,
length = arguments.length,
deep = false;
// Handle a deep copy situation
if ( typeof target === "boolean" ) {
deep = target;
// skip the boolean and the target
target = arguments[ i ] || {};
i++;
}
// Handle case when target is a string or something (possible in deep copy)
if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
target = {};
}
// extend jQuery itself if only one argument is passed
if ( i === length ) {
target = this;
i--;
}
for ( ; i < length; i++ ) {
// Only deal with non-null/undefined values
if ( (options = arguments[ i ]) != null ) {
// Extend the base object
for ( name in options ) {
src = target[ name ];
copy = options[ name ];
// Prevent never-ending loop
if ( target === copy ) {
continue;
}
// Recurse if we're merging plain objects or arrays
if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
if ( copyIsArray ) {
copyIsArray = false;
clone = src && jQuery.isArray(src) ? src : [];
} else {
clone = src && jQuery.isPlainObject(src) ? src : {};
}
// Never move original objects, clone them
target[ name ] = jQuery.extend( deep, clone, copy );
// Don't bring in undefined values
} else if ( copy !== undefined ) {
target[ name ] = copy;
}
}
}
}
// Return the modified object
return target;
};
jQuery.extend({
// Unique for each copy of jQuery on the page
expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
// Assume jQuery is ready without the ready module
isReady: true,
error: function( msg ) {
throw new Error( msg );
},
noop: function() {},
// See test/unit/core.js for details concerning isFunction.
// Since version 1.3, DOM methods and functions like alert
// aren't supported. They return false on IE (#2968).
isFunction: function( obj ) {
return jQuery.type(obj) === "function";
},
isArray: Array.isArray,
isWindow: function( obj ) {
return obj != null && obj === obj.window;
},
isNumeric: function( obj ) {
// parseFloat NaNs numeric-cast false positives (null|true|false|"")
// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
// subtraction forces infinities to NaN
return obj - parseFloat( obj ) >= 0;
},
isPlainObject: function( obj ) {
// Not plain objects:
// - Any object or value whose internal [[Class]] property is not "[object Object]"
// - DOM nodes
// - window
if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
return false;
}
// Support: Firefox <20
// The try/catch suppresses exceptions thrown when attempting to access
// the "constructor" property of certain host objects, ie. |window.location|
// https://bugzilla.mozilla.org/show_bug.cgi?id=814622
try {
if ( obj.constructor &&
!hasOwn.call( obj.constructor.prototype, "isPrototypeOf" ) ) {
return false;
}
} catch ( e ) {
return false;
}
// If the function hasn't returned already, we're confident that
// |obj| is a plain object, created by {} or constructed with new Object
return true;
},
isEmptyObject: function( obj ) {
var name;
for ( name in obj ) {
return false;
}
return true;
},
type: function( obj ) {
if ( obj == null ) {
return obj + "";
}
// Support: Android < 4.0, iOS < 6 (functionish RegExp)
return typeof obj === "object" || typeof obj === "function" ?
class2type[ toString.call(obj) ] || "object" :
typeof obj;
},
// Evaluates a script in a global context
globalEval: function( code ) {
var script,
indirect = eval;
code = jQuery.trim( code );
if ( code ) {
// If the code includes a valid, prologue position
// strict mode pragma, execute code by injecting a
// script tag into the document.
if ( code.indexOf("use strict") === 1 ) {
script = document.createElement("script");
script.text = code;
document.head.appendChild( script ).parentNode.removeChild( script );
} else {
// Otherwise, avoid the DOM node creation, insertion
// and removal by using an indirect global eval
indirect( code );
}
}
},
// Convert dashed to camelCase; used by the css and data modules
// Microsoft forgot to hump their vendor prefix (#9572)
camelCase: function( string ) {
return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
},
nodeName: function( elem, name ) {
return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
},
// args is for internal usage only
each: function( obj, callback, args ) {
var value,
i = 0,
length = obj.length,
isArray = isArraylike( obj );
if ( args ) {
if ( isArray ) {
for ( ; i < length; i++ ) {
value = callback.apply( obj[ i ], args );
if ( value === false ) {
break;
}
}
} else {
for ( i in obj ) {
value = callback.apply( obj[ i ], args );
if ( value === false ) {
break;
}
}
}
// A special, fast, case for the most common use of each
} else {
if ( isArray ) {
for ( ; i < length; i++ ) {
value = callback.call( obj[ i ], i, obj[ i ] );
if ( value === false ) {
break;
}
}
} else {
for ( i in obj ) {
value = callback.call( obj[ i ], i, obj[ i ] );
if ( value === false ) {
break;
}
}
}
}
return obj;
},
trim: function( text ) {
return text == null ? "" : trim.call( text );
},
// results is for internal usage only
makeArray: function( arr, results ) {
var ret = results || [];
if ( arr != null ) {
if ( isArraylike( Object(arr) ) ) {
jQuery.merge( ret,
typeof arr === "string" ?
[ arr ] : arr
);
} else {
push.call( ret, arr );
}
}
return ret;
},
inArray: function( elem, arr, i ) {
return arr == null ? -1 : indexOf.call( arr, elem, i );
},
merge: function( first, second ) {
var len = +second.length,
j = 0,
i = first.length;
for ( ; j < len; j++ ) {
first[ i++ ] = second[ j ];
}
first.length = i;
return first;
},
grep: function( elems, callback, invert ) {
var callbackInverse,
matches = [],
i = 0,
length = elems.length,
callbackExpect = !invert;
// Go through the array, only saving the items
// that pass the validator function
for ( ; i < length; i++ ) {
callbackInverse = !callback( elems[ i ], i );
if ( callbackInverse !== callbackExpect ) {
matches.push( elems[ i ] );
}
}
return matches;
},
// arg is for internal usage only
map: function( elems, callback, arg ) {
var value,
i = 0,
length = elems.length,
isArray = isArraylike( elems ),
ret = [];
// Go through the array, translating each of the items to their new values
if ( isArray ) {
for ( ; i < length; i++ ) {
value = callback( elems[ i ], i, arg );
if ( value != null ) {
ret.push( value );
}
}
// Go through every key on the object,
} else {
for ( i in elems ) {
value = callback( elems[ i ], i, arg );
if ( value != null ) {
ret.push( value );
}
}
}
// Flatten any nested arrays
return concat.apply( [], ret );
},
// A global GUID counter for objects
guid: 1,
// Bind a function to a context, optionally partially applying any
// arguments.
proxy: function( fn, context ) {
var tmp, args, proxy;
if ( typeof context === "string" ) {
tmp = fn[ context ];
context = fn;
fn = tmp;
}
// Quick check to determine if target is callable, in the spec
// this throws a TypeError, but we will just return undefined.
if ( !jQuery.isFunction( fn ) ) {
return undefined;
}
// Simulated bind
args = slice.call( arguments, 2 );
proxy = function() {
return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
};
// Set the guid of unique handler to the same of original handler, so it can be removed
proxy.guid = fn.guid = fn.guid || jQuery.guid++;
return proxy;
},
now: Date.now,
// jQuery.support is not used in Core but other projects attach their
// properties to it so it needs to exist.
support: support
});
// Populate the class2type map
jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) {
class2type[ "[object " + name + "]" ] = name.toLowerCase();
});
function isArraylike( obj ) {
var length = obj.length,
type = jQuery.type( obj );
if ( type === "function" || jQuery.isWindow( obj ) ) {
return false;
}
if ( obj.nodeType === 1 && length ) {
return true;
}
return type === "array" || length === 0 ||
typeof length === "number" && length > 0 && ( length - 1 ) in obj;
}
var Sizzle =
/*!
* Sizzle CSS Selector Engine v1.10.15
* http://sizzlejs.com/
*
* Copyright 2013 jQuery Foundation, Inc. and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2013-12-20
*/
(function( window ) {
var i,
support,
cachedruns,
Expr,
getText,
isXML,
compile,
outermostContext,
sortInput,
hasDuplicate,
// Local document vars
setDocument,
document,
docElem,
documentIsHTML,
rbuggyQSA,
rbuggyMatches,
matches,
contains,
// Instance-specific data
expando = "sizzle" + -(new Date()),
preferredDoc = window.document,
dirruns = 0,
done = 0,
classCache = createCache(),
tokenCache = createCache(),
compilerCache = createCache(),
sortOrder = function( a, b ) {
if ( a === b ) {
hasDuplicate = true;
}
return 0;
},
// General-purpose constants
strundefined = typeof undefined,
MAX_NEGATIVE = 1 << 31,
// Instance methods
hasOwn = ({}).hasOwnProperty,
arr = [],
pop = arr.pop,
push_native = arr.push,
push = arr.push,
slice = arr.slice,
// Use a stripped-down indexOf if we can't use a native one
indexOf = arr.indexOf || function( elem ) {
var i = 0,
len = this.length;
for ( ; i < len; i++ ) {
if ( this[i] === elem ) {
return i;
}
}
return -1;
},
booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
// Regular expressions
// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace
whitespace = "[\\x20\\t\\r\\n\\f]",
// http://www.w3.org/TR/css3-syntax/#characters
characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
// Loosely modeled on CSS identifier characters
// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors
// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
identifier = characterEncoding.replace( "w", "w#" ),
// Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors
attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace +
"*(?:([*^$|!~]?=)" + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]",
// Prefer arguments quoted,
// then not containing pseudos/brackets,
// then attribute selectors/non-parenthetical expressions,
// then anything else
// These preferences are here to reduce the number of selectors
// needing tokenize in the PSEUDO preFilter
pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)",
// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
rpseudo = new RegExp( pseudos ),
ridentifier = new RegExp( "^" + identifier + "$" ),
matchExpr = {
"ID": new RegExp( "^#(" + characterEncoding + ")" ),
"CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ),
"TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ),
"ATTR": new RegExp( "^" + attributes ),
"PSEUDO": new RegExp( "^" + pseudos ),
"CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
"*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
"*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
"bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
// For use in libraries implementing .is()
// We use this for POS matching in `select`
"needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
},
rinputs = /^(?:input|select|textarea|button)$/i,
rheader = /^h\d$/i,
rnative = /^[^{]+\{\s*\[native \w/,
// Easily-parseable/retrievable ID or TAG or CLASS selectors
rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
rsibling = /[+~]/,
rescape = /'|\\/g,
// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
funescape = function( _, escaped, escapedWhitespace ) {
var high = "0x" + escaped - 0x10000;
// NaN means non-codepoint
// Support: Firefox
// Workaround erroneous numeric interpretation of +"0x"
return high !== high || escapedWhitespace ?
escaped :
high < 0 ?
// BMP codepoint
String.fromCharCode( high + 0x10000 ) :
// Supplemental Plane codepoint (surrogate pair)
String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
};
// Optimize for push.apply( _, NodeList )
try {
push.apply(
(arr = slice.call( preferredDoc.childNodes )),
preferredDoc.childNodes
);
// Support: Android<4.0
// Detect silently failing push.apply
arr[ preferredDoc.childNodes.length ].nodeType;
} catch ( e ) {
push = { apply: arr.length ?
// Leverage slice if possible
function( target, els ) {
push_native.apply( target, slice.call(els) );
} :
// Support: IE<9
// Otherwise append directly
function( target, els ) {
var j = target.length,
i = 0;
// Can't trust NodeList.length
while ( (target[j++] = els[i++]) ) {}
target.length = j - 1;
}
};
}
function Sizzle( selector, context, results, seed ) {
var match, elem, m, nodeType,
// QSA vars
i, groups, old, nid, newContext, newSelector;
if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
setDocument( context );
}
context = context || document;
results = results || [];
if ( !selector || typeof selector !== "string" ) {
return results;
}
if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) {
return [];
}
if ( documentIsHTML && !seed ) {
// Shortcuts
if ( (match = rquickExpr.exec( selector )) ) {
// Speed-up: Sizzle("#ID")
if ( (m = match[1]) ) {
if ( nodeType === 9 ) {
elem = context.getElementById( m );
// Check parentNode to catch when Blackberry 4.6 returns
// nodes that are no longer in the document (jQuery #6963)
if ( elem && elem.parentNode ) {
// Handle the case where IE, Opera, and Webkit return items
// by name instead of ID
if ( elem.id === m ) {
results.push( elem );
return results;
}
} else {
return results;
}
} else {
// Context is not a document
if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
contains( context, elem ) && elem.id === m ) {
results.push( elem );
return results;
}
}
// Speed-up: Sizzle("TAG")
} else if ( match[2] ) {
push.apply( results, context.getElementsByTagName( selector ) );
return results;
// Speed-up: Sizzle(".CLASS")
} else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) {
push.apply( results, context.getElementsByClassName( m ) );
return results;
}
}
// QSA path
if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
nid = old = expando;
newContext = context;
newSelector = nodeType === 9 && selector;
// qSA works strangely on Element-rooted queries
// We can work around this by specifying an extra ID on the root
// and working up from there (Thanks to Andrew Dupont for the technique)
// IE 8 doesn't work on object elements
if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) {
groups = tokenize( selector );
if ( (old = context.getAttribute("id")) ) {
nid = old.replace( rescape, "\\$&" );
} else {
context.setAttribute( "id", nid );
}
nid = "[id='" + nid + "'] ";
i = groups.length;
while ( i-- ) {
groups[i] = nid + toSelector( groups[i] );
}
newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;
newSelector = groups.join(",");
}
if ( newSelector ) {
try {
push.apply( results,
newContext.querySelectorAll( newSelector )
);
return results;
} catch(qsaError) {
} finally {
if ( !old ) {
context.removeAttribute("id");
}
}
}
}
}
// All others
return select( selector.replace( rtrim, "$1" ), context, results, seed );
}
/**
* Create key-value caches of limited size
* @returns {Function(string, Object)} Returns the Object data after storing it on itself with
* property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
* deleting the oldest entry
*/
function createCache() {
var keys = [];
function cache( key, value ) {
// Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
if ( keys.push( key + " " ) > Expr.cacheLength ) {
// Only keep the most recent entries
delete cache[ keys.shift() ];
}
return (cache[ key + " " ] = value);
}
return cache;
}
/**
* Mark a function for special use by Sizzle
* @param {Function} fn The function to mark
*/
function markFunction( fn ) {
fn[ expando ] = true;
return fn;
}
/**
* Support testing using an element
* @param {Function} fn Passed the created div and expects a boolean result
*/
function assert( fn ) {
var div = document.createElement("div");
try {
return !!fn( div );
} catch (e) {
return false;
} finally {
// Remove from its parent by default
if ( div.parentNode ) {
div.parentNode.removeChild( div );
}
// release memory in IE
div = null;
}
}
/**
* Adds the same handler for all of the specified attrs
* @param {String} attrs Pipe-separated list of attributes
* @param {Function} handler The method that will be applied
*/
function addHandle( attrs, handler ) {
var arr = attrs.split("|"),
i = attrs.length;
while ( i-- ) {
Expr.attrHandle[ arr[i] ] = handler;
}
}
/**
* Checks document order of two siblings
* @param {Element} a
* @param {Element} b
* @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
*/
function siblingCheck( a, b ) {
var cur = b && a,
diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
( ~b.sourceIndex || MAX_NEGATIVE ) -
( ~a.sourceIndex || MAX_NEGATIVE );
// Use IE sourceIndex if available on both nodes
if ( diff ) {
return diff;
}
// Check if b follows a
if ( cur ) {
while ( (cur = cur.nextSibling) ) {
if ( cur === b ) {
return -1;
}
}
}
return a ? 1 : -1;
}
/**
* Returns a function to use in pseudos for input types
* @param {String} type
*/
function createInputPseudo( type ) {
return function( elem ) {
var name = elem.nodeName.toLowerCase();
return name === "input" && elem.type === type;
};
}
/**
* Returns a function to use in pseudos for buttons
* @param {String} type
*/
function createButtonPseudo( type ) {
return function( elem ) {
var name = elem.nodeName.toLowerCase();
return (name === "input" || name === "button") && elem.type === type;
};
}
/**
* Returns a function to use in pseudos for positionals
* @param {Function} fn
*/
function createPositionalPseudo( fn ) {
return markFunction(function( argument ) {
argument = +argument;
return markFunction(function( seed, matches ) {
var j,
matchIndexes = fn( [], seed.length, argument ),
i = matchIndexes.length;
// Match elements found at the specified indexes
while ( i-- ) {
if ( seed[ (j = matchIndexes[i]) ] ) {
seed[j] = !(matches[j] = seed[j]);
}
}
});
});
}
/**
* Checks a node for validity as a Sizzle context
* @param {Element|Object=} context
* @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
*/
function testContext( context ) {
return context && typeof context.getElementsByTagName !== strundefined && context;
}
// Expose support vars for convenience
support = Sizzle.support = {};
/**
* Detects XML nodes
* @param {Element|Object} elem An element or a document
* @returns {Boolean} True iff elem is a non-HTML XML node
*/
isXML = Sizzle.isXML = function( elem ) {
// documentElement is verified for cases where it doesn't yet exist
// (such as loading iframes in IE - #4833)
var documentElement = elem && (elem.ownerDocument || elem).documentElement;
return documentElement ? documentElement.nodeName !== "HTML" : false;
};
/**
* Sets document-related variables once based on the current document
* @param {Element|Object} [doc] An element or document object to use to set the document
* @returns {Object} Returns the current document
*/
setDocument = Sizzle.setDocument = function( node ) {
var hasCompare,
doc = node ? node.ownerDocument || node : preferredDoc,
parent = doc.defaultView;
// If no document and documentElement is available, return
if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
return document;
}
// Set our document
document = doc;
docElem = doc.documentElement;
// Support tests
documentIsHTML = !isXML( doc );
// Support: IE>8
// If iframe document is assigned to "document" variable and if iframe has been reloaded,
// IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936
// IE6-8 do not support the defaultView property so parent will be undefined
if ( parent && parent !== parent.top ) {
// IE11 does not have attachEvent, so all must suffer
if ( parent.addEventListener ) {
parent.addEventListener( "unload", function() {
setDocument();
}, false );
} else if ( parent.attachEvent ) {
parent.attachEvent( "onunload", function() {
setDocument();
});
}
}
/* Attributes
---------------------------------------------------------------------- */
// Support: IE<8
// Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans)
support.attributes = assert(function( div ) {
div.className = "i";
return !div.getAttribute("className");
});
/* getElement(s)By*
---------------------------------------------------------------------- */
// Check if getElementsByTagName("*") returns only elements
support.getElementsByTagName = assert(function( div ) {
div.appendChild( doc.createComment("") );
return !div.getElementsByTagName("*").length;
});
// Check if getElementsByClassName can be trusted
support.getElementsByClassName = rnative.test( doc.getElementsByClassName ) && assert(function( div ) {
div.innerHTML = "
";
// Support: Safari<4
// Catch class over-caching
div.firstChild.className = "i";
// Support: Opera<10
// Catch gEBCN failure to find non-leading classes
return div.getElementsByClassName("i").length === 2;
});
// Support: IE<10
// Check if getElementById returns elements by name
// The broken getElementById methods don't pick up programatically-set names,
// so use a roundabout getElementsByName test
support.getById = assert(function( div ) {
docElem.appendChild( div ).id = expando;
return !doc.getElementsByName || !doc.getElementsByName( expando ).length;
});
// ID find and filter
if ( support.getById ) {
Expr.find["ID"] = function( id, context ) {
if ( typeof context.getElementById !== strundefined && documentIsHTML ) {
var m = context.getElementById( id );
// Check parentNode to catch when Blackberry 4.6 returns
// nodes that are no longer in the document #6963
return m && m.parentNode ? [m] : [];
}
};
Expr.filter["ID"] = function( id ) {
var attrId = id.replace( runescape, funescape );
return function( elem ) {
return elem.getAttribute("id") === attrId;
};
};
} else {
// Support: IE6/7
// getElementById is not reliable as a find shortcut
delete Expr.find["ID"];
Expr.filter["ID"] = function( id ) {
var attrId = id.replace( runescape, funescape );
return function( elem ) {
var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id");
return node && node.value === attrId;
};
};
}
// Tag
Expr.find["TAG"] = support.getElementsByTagName ?
function( tag, context ) {
if ( typeof context.getElementsByTagName !== strundefined ) {
return context.getElementsByTagName( tag );
}
} :
function( tag, context ) {
var elem,
tmp = [],
i = 0,
results = context.getElementsByTagName( tag );
// Filter out possible comments
if ( tag === "*" ) {
while ( (elem = results[i++]) ) {
if ( elem.nodeType === 1 ) {
tmp.push( elem );
}
}
return tmp;
}
return results;
};
// Class
Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) {
return context.getElementsByClassName( className );
}
};
/* QSA/matchesSelector
---------------------------------------------------------------------- */
// QSA and matchesSelector support
// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
rbuggyMatches = [];
// qSa(:focus) reports false when true (Chrome 21)
// We allow this because of a bug in IE8/9 that throws an error
// whenever `document.activeElement` is accessed on an iframe
// So, we allow :focus to pass through QSA all the time to avoid the IE error
// See http://bugs.jquery.com/ticket/13378
rbuggyQSA = [];
if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {
// Build QSA regex
// Regex strategy adopted from Diego Perini
assert(function( div ) {
// Select is set to empty string on purpose
// This is to test IE's treatment of not explicitly
// setting a boolean content attribute,
// since its presence should be enough
// http://bugs.jquery.com/ticket/12359
div.innerHTML = " ";
// Support: IE8, Opera 10-12
// Nothing should be selected when empty strings follow ^= or $= or *=
if ( div.querySelectorAll("[t^='']").length ) {
rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
}
// Support: IE8
// Boolean attributes and "value" are not treated correctly
if ( !div.querySelectorAll("[selected]").length ) {
rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
}
// Webkit/Opera - :checked should return selected option elements
// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
// IE8 throws error here and will not see later tests
if ( !div.querySelectorAll(":checked").length ) {
rbuggyQSA.push(":checked");
}
});
assert(function( div ) {
// Support: Windows 8 Native Apps
// The type and name attributes are restricted during .innerHTML assignment
var input = doc.createElement("input");
input.setAttribute( "type", "hidden" );
div.appendChild( input ).setAttribute( "name", "D" );
// Support: IE8
// Enforce case-sensitivity of name attribute
if ( div.querySelectorAll("[name=d]").length ) {
rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
}
// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
// IE8 throws error here and will not see later tests
if ( !div.querySelectorAll(":enabled").length ) {
rbuggyQSA.push( ":enabled", ":disabled" );
}
// Opera 10-11 does not throw on post-comma invalid pseudos
div.querySelectorAll("*,:x");
rbuggyQSA.push(",.*:");
});
}
if ( (support.matchesSelector = rnative.test( (matches = docElem.webkitMatchesSelector ||
docElem.mozMatchesSelector ||
docElem.oMatchesSelector ||
docElem.msMatchesSelector) )) ) {
assert(function( div ) {
// Check to see if it's possible to do matchesSelector
// on a disconnected node (IE 9)
support.disconnectedMatch = matches.call( div, "div" );
// This should fail with an exception
// Gecko does not error, returns false instead
matches.call( div, "[s!='']:x" );
rbuggyMatches.push( "!=", pseudos );
});
}
rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
/* Contains
---------------------------------------------------------------------- */
hasCompare = rnative.test( docElem.compareDocumentPosition );
// Element contains another
// Purposefully does not implement inclusive descendent
// As in, an element does not contain itself
contains = hasCompare || rnative.test( docElem.contains ) ?
function( a, b ) {
var adown = a.nodeType === 9 ? a.documentElement : a,
bup = b && b.parentNode;
return a === bup || !!( bup && bup.nodeType === 1 && (
adown.contains ?
adown.contains( bup ) :
a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
));
} :
function( a, b ) {
if ( b ) {
while ( (b = b.parentNode) ) {
if ( b === a ) {
return true;
}
}
}
return false;
};
/* Sorting
---------------------------------------------------------------------- */
// Document order sorting
sortOrder = hasCompare ?
function( a, b ) {
// Flag for duplicate removal
if ( a === b ) {
hasDuplicate = true;
return 0;
}
// Sort on method existence if only one input has compareDocumentPosition
var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
if ( compare ) {
return compare;
}
// Calculate position if both inputs belong to the same document
compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
a.compareDocumentPosition( b ) :
// Otherwise we know they are disconnected
1;
// Disconnected nodes
if ( compare & 1 ||
(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
// Choose the first element that is related to our preferred document
if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
return -1;
}
if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
return 1;
}
// Maintain original order
return sortInput ?
( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
0;
}
return compare & 4 ? -1 : 1;
} :
function( a, b ) {
// Exit early if the nodes are identical
if ( a === b ) {
hasDuplicate = true;
return 0;
}
var cur,
i = 0,
aup = a.parentNode,
bup = b.parentNode,
ap = [ a ],
bp = [ b ];
// Parentless nodes are either documents or disconnected
if ( !aup || !bup ) {
return a === doc ? -1 :
b === doc ? 1 :
aup ? -1 :
bup ? 1 :
sortInput ?
( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
0;
// If the nodes are siblings, we can do a quick check
} else if ( aup === bup ) {
return siblingCheck( a, b );
}
// Otherwise we need full lists of their ancestors for comparison
cur = a;
while ( (cur = cur.parentNode) ) {
ap.unshift( cur );
}
cur = b;
while ( (cur = cur.parentNode) ) {
bp.unshift( cur );
}
// Walk down the tree looking for a discrepancy
while ( ap[i] === bp[i] ) {
i++;
}
return i ?
// Do a sibling check if the nodes have a common ancestor
siblingCheck( ap[i], bp[i] ) :
// Otherwise nodes in our document sort first
ap[i] === preferredDoc ? -1 :
bp[i] === preferredDoc ? 1 :
0;
};
return doc;
};
Sizzle.matches = function( expr, elements ) {
return Sizzle( expr, null, null, elements );
};
Sizzle.matchesSelector = function( elem, expr ) {
// Set document vars if needed
if ( ( elem.ownerDocument || elem ) !== document ) {
setDocument( elem );
}
// Make sure that attribute selectors are quoted
expr = expr.replace( rattributeQuotes, "='$1']" );
if ( support.matchesSelector && documentIsHTML &&
( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {
try {
var ret = matches.call( elem, expr );
// IE 9's matchesSelector returns false on disconnected nodes
if ( ret || support.disconnectedMatch ||
// As well, disconnected nodes are said to be in a document
// fragment in IE 9
elem.document && elem.document.nodeType !== 11 ) {
return ret;
}
} catch(e) {}
}
return Sizzle( expr, document, null, [elem] ).length > 0;
};
Sizzle.contains = function( context, elem ) {
// Set document vars if needed
if ( ( context.ownerDocument || context ) !== document ) {
setDocument( context );
}
return contains( context, elem );
};
Sizzle.attr = function( elem, name ) {
// Set document vars if needed
if ( ( elem.ownerDocument || elem ) !== document ) {
setDocument( elem );
}
var fn = Expr.attrHandle[ name.toLowerCase() ],
// Don't get fooled by Object.prototype properties (jQuery #13807)
val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
fn( elem, name, !documentIsHTML ) :
undefined;
return val !== undefined ?
val :
support.attributes || !documentIsHTML ?
elem.getAttribute( name ) :
(val = elem.getAttributeNode(name)) && val.specified ?
val.value :
null;
};
Sizzle.error = function( msg ) {
throw new Error( "Syntax error, unrecognized expression: " + msg );
};
/**
* Document sorting and removing duplicates
* @param {ArrayLike} results
*/
Sizzle.uniqueSort = function( results ) {
var elem,
duplicates = [],
j = 0,
i = 0;
// Unless we *know* we can detect duplicates, assume their presence
hasDuplicate = !support.detectDuplicates;
sortInput = !support.sortStable && results.slice( 0 );
results.sort( sortOrder );
if ( hasDuplicate ) {
while ( (elem = results[i++]) ) {
if ( elem === results[ i ] ) {
j = duplicates.push( i );
}
}
while ( j-- ) {
results.splice( duplicates[ j ], 1 );
}
}
// Clear input after sorting to release objects
// See https://github.com/jquery/sizzle/pull/225
sortInput = null;
return results;
};
/**
* Utility function for retrieving the text value of an array of DOM nodes
* @param {Array|Element} elem
*/
getText = Sizzle.getText = function( elem ) {
var node,
ret = "",
i = 0,
nodeType = elem.nodeType;
if ( !nodeType ) {
// If no nodeType, this is expected to be an array
while ( (node = elem[i++]) ) {
// Do not traverse comment nodes
ret += getText( node );
}
} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
// Use textContent for elements
// innerText usage removed for consistency of new lines (jQuery #11153)
if ( typeof elem.textContent === "string" ) {
return elem.textContent;
} else {
// Traverse its children
for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
ret += getText( elem );
}
}
} else if ( nodeType === 3 || nodeType === 4 ) {
return elem.nodeValue;
}
// Do not include comment or processing instruction nodes
return ret;
};
Expr = Sizzle.selectors = {
// Can be adjusted by the user
cacheLength: 50,
createPseudo: markFunction,
match: matchExpr,
attrHandle: {},
find: {},
relative: {
">": { dir: "parentNode", first: true },
" ": { dir: "parentNode" },
"+": { dir: "previousSibling", first: true },
"~": { dir: "previousSibling" }
},
preFilter: {
"ATTR": function( match ) {
match[1] = match[1].replace( runescape, funescape );
// Move the given value to match[3] whether quoted or unquoted
match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape );
if ( match[2] === "~=" ) {
match[3] = " " + match[3] + " ";
}
return match.slice( 0, 4 );
},
"CHILD": function( match ) {
/* matches from matchExpr["CHILD"]
1 type (only|nth|...)
2 what (child|of-type)
3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
4 xn-component of xn+y argument ([+-]?\d*n|)
5 sign of xn-component
6 x of xn-component
7 sign of y-component
8 y of y-component
*/
match[1] = match[1].toLowerCase();
if ( match[1].slice( 0, 3 ) === "nth" ) {
// nth-* requires argument
if ( !match[3] ) {
Sizzle.error( match[0] );
}
// numeric x and y parameters for Expr.filter.CHILD
// remember that false/true cast respectively to 0/1
match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
// other types prohibit arguments
} else if ( match[3] ) {
Sizzle.error( match[0] );
}
return match;
},
"PSEUDO": function( match ) {
var excess,
unquoted = !match[5] && match[2];
if ( matchExpr["CHILD"].test( match[0] ) ) {
return null;
}
// Accept quoted arguments as-is
if ( match[3] && match[4] !== undefined ) {
match[2] = match[4];
// Strip excess characters from unquoted arguments
} else if ( unquoted && rpseudo.test( unquoted ) &&
// Get excess from tokenize (recursively)
(excess = tokenize( unquoted, true )) &&
// advance to the next closing parenthesis
(excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
// excess is a negative index
match[0] = match[0].slice( 0, excess );
match[2] = unquoted.slice( 0, excess );
}
// Return only captures needed by the pseudo filter method (type and argument)
return match.slice( 0, 3 );
}
},
filter: {
"TAG": function( nodeNameSelector ) {
var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
return nodeNameSelector === "*" ?
function() { return true; } :
function( elem ) {
return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
};
},
"CLASS": function( className ) {
var pattern = classCache[ className + " " ];
return pattern ||
(pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
classCache( className, function( elem ) {
return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" );
});
},
"ATTR": function( name, operator, check ) {
return function( elem ) {
var result = Sizzle.attr( elem, name );
if ( result == null ) {
return operator === "!=";
}
if ( !operator ) {
return true;
}
result += "";
return operator === "=" ? result === check :
operator === "!=" ? result !== check :
operator === "^=" ? check && result.indexOf( check ) === 0 :
operator === "*=" ? check && result.indexOf( check ) > -1 :
operator === "$=" ? check && result.slice( -check.length ) === check :
operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 :
operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
false;
};
},
"CHILD": function( type, what, argument, first, last ) {
var simple = type.slice( 0, 3 ) !== "nth",
forward = type.slice( -4 ) !== "last",
ofType = what === "of-type";
return first === 1 && last === 0 ?
// Shortcut for :nth-*(n)
function( elem ) {
return !!elem.parentNode;
} :
function( elem, context, xml ) {
var cache, outerCache, node, diff, nodeIndex, start,
dir = simple !== forward ? "nextSibling" : "previousSibling",
parent = elem.parentNode,
name = ofType && elem.nodeName.toLowerCase(),
useCache = !xml && !ofType;
if ( parent ) {
// :(first|last|only)-(child|of-type)
if ( simple ) {
while ( dir ) {
node = elem;
while ( (node = node[ dir ]) ) {
if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {
return false;
}
}
// Reverse direction for :only-* (if we haven't yet done so)
start = dir = type === "only" && !start && "nextSibling";
}
return true;
}
start = [ forward ? parent.firstChild : parent.lastChild ];
// non-xml :nth-child(...) stores cache data on `parent`
if ( forward && useCache ) {
// Seek `elem` from a previously-cached index
outerCache = parent[ expando ] || (parent[ expando ] = {});
cache = outerCache[ type ] || [];
nodeIndex = cache[0] === dirruns && cache[1];
diff = cache[0] === dirruns && cache[2];
node = nodeIndex && parent.childNodes[ nodeIndex ];
while ( (node = ++nodeIndex && node && node[ dir ] ||
// Fallback to seeking `elem` from the start
(diff = nodeIndex = 0) || start.pop()) ) {
// When found, cache indexes on `parent` and break
if ( node.nodeType === 1 && ++diff && node === elem ) {
outerCache[ type ] = [ dirruns, nodeIndex, diff ];
break;
}
}
// Use previously-cached element index if available
} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {
diff = cache[1];
// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)
} else {
// Use the same loop as above to seek `elem` from the start
while ( (node = ++nodeIndex && node && node[ dir ] ||
(diff = nodeIndex = 0) || start.pop()) ) {
if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {
// Cache the index of each encountered element
if ( useCache ) {
(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];
}
if ( node === elem ) {
break;
}
}
}
}
// Incorporate the offset, then check against cycle size
diff -= last;
return diff === first || ( diff % first === 0 && diff / first >= 0 );
}
};
},
"PSEUDO": function( pseudo, argument ) {
// pseudo-class names are case-insensitive
// http://www.w3.org/TR/selectors/#pseudo-classes
// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
// Remember that setFilters inherits from pseudos
var args,
fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
Sizzle.error( "unsupported pseudo: " + pseudo );
// The user may use createPseudo to indicate that
// arguments are needed to create the filter function
// just as Sizzle does
if ( fn[ expando ] ) {
return fn( argument );
}
// But maintain support for old signatures
if ( fn.length > 1 ) {
args = [ pseudo, pseudo, "", argument ];
return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
markFunction(function( seed, matches ) {
var idx,
matched = fn( seed, argument ),
i = matched.length;
while ( i-- ) {
idx = indexOf.call( seed, matched[i] );
seed[ idx ] = !( matches[ idx ] = matched[i] );
}
}) :
function( elem ) {
return fn( elem, 0, args );
};
}
return fn;
}
},
pseudos: {
// Potentially complex pseudos
"not": markFunction(function( selector ) {
// Trim the selector passed to compile
// to avoid treating leading and trailing
// spaces as combinators
var input = [],
results = [],
matcher = compile( selector.replace( rtrim, "$1" ) );
return matcher[ expando ] ?
markFunction(function( seed, matches, context, xml ) {
var elem,
unmatched = matcher( seed, null, xml, [] ),
i = seed.length;
// Match elements unmatched by `matcher`
while ( i-- ) {
if ( (elem = unmatched[i]) ) {
seed[i] = !(matches[i] = elem);
}
}
}) :
function( elem, context, xml ) {
input[0] = elem;
matcher( input, null, xml, results );
return !results.pop();
};
}),
"has": markFunction(function( selector ) {
return function( elem ) {
return Sizzle( selector, elem ).length > 0;
};
}),
"contains": markFunction(function( text ) {
return function( elem ) {
return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
};
}),
// "Whether an element is represented by a :lang() selector
// is based solely on the element's language value
// being equal to the identifier C,
// or beginning with the identifier C immediately followed by "-".
// The matching of C against the element's language value is performed case-insensitively.
// The identifier C does not have to be a valid language name."
// http://www.w3.org/TR/selectors/#lang-pseudo
"lang": markFunction( function( lang ) {
// lang value must be a valid identifier
if ( !ridentifier.test(lang || "") ) {
Sizzle.error( "unsupported lang: " + lang );
}
lang = lang.replace( runescape, funescape ).toLowerCase();
return function( elem ) {
var elemLang;
do {
if ( (elemLang = documentIsHTML ?
elem.lang :
elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
elemLang = elemLang.toLowerCase();
return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
}
} while ( (elem = elem.parentNode) && elem.nodeType === 1 );
return false;
};
}),
// Miscellaneous
"target": function( elem ) {
var hash = window.location && window.location.hash;
return hash && hash.slice( 1 ) === elem.id;
},
"root": function( elem ) {
return elem === docElem;
},
"focus": function( elem ) {
return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
},
// Boolean properties
"enabled": function( elem ) {
return elem.disabled === false;
},
"disabled": function( elem ) {
return elem.disabled === true;
},
"checked": function( elem ) {
// In CSS3, :checked should return both checked and selected elements
// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
var nodeName = elem.nodeName.toLowerCase();
return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
},
"selected": function( elem ) {
// Accessing this property makes selected-by-default
// options in Safari work properly
if ( elem.parentNode ) {
elem.parentNode.selectedIndex;
}
return elem.selected === true;
},
// Contents
"empty": function( elem ) {
// http://www.w3.org/TR/selectors/#empty-pseudo
// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
// but not by others (comment: 8; processing instruction: 7; etc.)
// nodeType < 6 works because attributes (2) do not appear as children
for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
if ( elem.nodeType < 6 ) {
return false;
}
}
return true;
},
"parent": function( elem ) {
return !Expr.pseudos["empty"]( elem );
},
// Element/input types
"header": function( elem ) {
return rheader.test( elem.nodeName );
},
"input": function( elem ) {
return rinputs.test( elem.nodeName );
},
"button": function( elem ) {
var name = elem.nodeName.toLowerCase();
return name === "input" && elem.type === "button" || name === "button";
},
"text": function( elem ) {
var attr;
return elem.nodeName.toLowerCase() === "input" &&
elem.type === "text" &&
// Support: IE<8
// New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
},
// Position-in-collection
"first": createPositionalPseudo(function() {
return [ 0 ];
}),
"last": createPositionalPseudo(function( matchIndexes, length ) {
return [ length - 1 ];
}),
"eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
return [ argument < 0 ? argument + length : argument ];
}),
"even": createPositionalPseudo(function( matchIndexes, length ) {
var i = 0;
for ( ; i < length; i += 2 ) {
matchIndexes.push( i );
}
return matchIndexes;
}),
"odd": createPositionalPseudo(function( matchIndexes, length ) {
var i = 1;
for ( ; i < length; i += 2 ) {
matchIndexes.push( i );
}
return matchIndexes;
}),
"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
var i = argument < 0 ? argument + length : argument;
for ( ; --i >= 0; ) {
matchIndexes.push( i );
}
return matchIndexes;
}),
"gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
var i = argument < 0 ? argument + length : argument;
for ( ; ++i < length; ) {
matchIndexes.push( i );
}
return matchIndexes;
})
}
};
Expr.pseudos["nth"] = Expr.pseudos["eq"];
// Add button/input type pseudos
for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
Expr.pseudos[ i ] = createInputPseudo( i );
}
for ( i in { submit: true, reset: true } ) {
Expr.pseudos[ i ] = createButtonPseudo( i );
}
// Easy API for creating new setFilters
function setFilters() {}
setFilters.prototype = Expr.filters = Expr.pseudos;
Expr.setFilters = new setFilters();
function tokenize( selector, parseOnly ) {
var matched, match, tokens, type,
soFar, groups, preFilters,
cached = tokenCache[ selector + " " ];
if ( cached ) {
return parseOnly ? 0 : cached.slice( 0 );
}
soFar = selector;
groups = [];
preFilters = Expr.preFilter;
while ( soFar ) {
// Comma and first run
if ( !matched || (match = rcomma.exec( soFar )) ) {
if ( match ) {
// Don't consume trailing commas as valid
soFar = soFar.slice( match[0].length ) || soFar;
}
groups.push( (tokens = []) );
}
matched = false;
// Combinators
if ( (match = rcombinators.exec( soFar )) ) {
matched = match.shift();
tokens.push({
value: matched,
// Cast descendant combinators to space
type: match[0].replace( rtrim, " " )
});
soFar = soFar.slice( matched.length );
}
// Filters
for ( type in Expr.filter ) {
if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
(match = preFilters[ type ]( match ))) ) {
matched = match.shift();
tokens.push({
value: matched,
type: type,
matches: match
});
soFar = soFar.slice( matched.length );
}
}
if ( !matched ) {
break;
}
}
// Return the length of the invalid excess
// if we're just parsing
// Otherwise, throw an error or return tokens
return parseOnly ?
soFar.length :
soFar ?
Sizzle.error( selector ) :
// Cache the tokens
tokenCache( selector, groups ).slice( 0 );
}
function toSelector( tokens ) {
var i = 0,
len = tokens.length,
selector = "";
for ( ; i < len; i++ ) {
selector += tokens[i].value;
}
return selector;
}
function addCombinator( matcher, combinator, base ) {
var dir = combinator.dir,
checkNonElements = base && dir === "parentNode",
doneName = done++;
return combinator.first ?
// Check against closest ancestor/preceding element
function( elem, context, xml ) {
while ( (elem = elem[ dir ]) ) {
if ( elem.nodeType === 1 || checkNonElements ) {
return matcher( elem, context, xml );
}
}
} :
// Check against all ancestor/preceding elements
function( elem, context, xml ) {
var data, cache, outerCache,
dirkey = dirruns + " " + doneName;
// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching
if ( xml ) {
while ( (elem = elem[ dir ]) ) {
if ( elem.nodeType === 1 || checkNonElements ) {
if ( matcher( elem, context, xml ) ) {
return true;
}
}
}
} else {
while ( (elem = elem[ dir ]) ) {
if ( elem.nodeType === 1 || checkNonElements ) {
outerCache = elem[ expando ] || (elem[ expando ] = {});
if ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) {
if ( (data = cache[1]) === true || data === cachedruns ) {
return data === true;
}
} else {
cache = outerCache[ dir ] = [ dirkey ];
cache[1] = matcher( elem, context, xml ) || cachedruns;
if ( cache[1] === true ) {
return true;
}
}
}
}
}
};
}
function elementMatcher( matchers ) {
return matchers.length > 1 ?
function( elem, context, xml ) {
var i = matchers.length;
while ( i-- ) {
if ( !matchers[i]( elem, context, xml ) ) {
return false;
}
}
return true;
} :
matchers[0];
}
function condense( unmatched, map, filter, context, xml ) {
var elem,
newUnmatched = [],
i = 0,
len = unmatched.length,
mapped = map != null;
for ( ; i < len; i++ ) {
if ( (elem = unmatched[i]) ) {
if ( !filter || filter( elem, context, xml ) ) {
newUnmatched.push( elem );
if ( mapped ) {
map.push( i );
}
}
}
}
return newUnmatched;
}
function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
if ( postFilter && !postFilter[ expando ] ) {
postFilter = setMatcher( postFilter );
}
if ( postFinder && !postFinder[ expando ] ) {
postFinder = setMatcher( postFinder, postSelector );
}
return markFunction(function( seed, results, context, xml ) {
var temp, i, elem,
preMap = [],
postMap = [],
preexisting = results.length,
// Get initial elements from seed or context
elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
// Prefilter to get matcher input, preserving a map for seed-results synchronization
matcherIn = preFilter && ( seed || !selector ) ?
condense( elems, preMap, preFilter, context, xml ) :
elems,
matcherOut = matcher ?
// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
// ...intermediate processing is necessary
[] :
// ...otherwise use results directly
results :
matcherIn;
// Find primary matches
if ( matcher ) {
matcher( matcherIn, matcherOut, context, xml );
}
// Apply postFilter
if ( postFilter ) {
temp = condense( matcherOut, postMap );
postFilter( temp, [], context, xml );
// Un-match failing elements by moving them back to matcherIn
i = temp.length;
while ( i-- ) {
if ( (elem = temp[i]) ) {
matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
}
}
}
if ( seed ) {
if ( postFinder || preFilter ) {
if ( postFinder ) {
// Get the final matcherOut by condensing this intermediate into postFinder contexts
temp = [];
i = matcherOut.length;
while ( i-- ) {
if ( (elem = matcherOut[i]) ) {
// Restore matcherIn since elem is not yet a final match
temp.push( (matcherIn[i] = elem) );
}
}
postFinder( null, (matcherOut = []), temp, xml );
}
// Move matched elements from seed to results to keep them synchronized
i = matcherOut.length;
while ( i-- ) {
if ( (elem = matcherOut[i]) &&
(temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) {
seed[temp] = !(results[temp] = elem);
}
}
}
// Add elements to results, through postFinder if defined
} else {
matcherOut = condense(
matcherOut === results ?
matcherOut.splice( preexisting, matcherOut.length ) :
matcherOut
);
if ( postFinder ) {
postFinder( null, results, matcherOut, xml );
} else {
push.apply( results, matcherOut );
}
}
});
}
function matcherFromTokens( tokens ) {
var checkContext, matcher, j,
len = tokens.length,
leadingRelative = Expr.relative[ tokens[0].type ],
implicitRelative = leadingRelative || Expr.relative[" "],
i = leadingRelative ? 1 : 0,
// The foundational matcher ensures that elements are reachable from top-level context(s)
matchContext = addCombinator( function( elem ) {
return elem === checkContext;
}, implicitRelative, true ),
matchAnyContext = addCombinator( function( elem ) {
return indexOf.call( checkContext, elem ) > -1;
}, implicitRelative, true ),
matchers = [ function( elem, context, xml ) {
return ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
(checkContext = context).nodeType ?
matchContext( elem, context, xml ) :
matchAnyContext( elem, context, xml ) );
} ];
for ( ; i < len; i++ ) {
if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
} else {
matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
// Return special upon seeing a positional matcher
if ( matcher[ expando ] ) {
// Find the next relative operator (if any) for proper handling
j = ++i;
for ( ; j < len; j++ ) {
if ( Expr.relative[ tokens[j].type ] ) {
break;
}
}
return setMatcher(
i > 1 && elementMatcher( matchers ),
i > 1 && toSelector(
// If the preceding token was a descendant combinator, insert an implicit any-element `*`
tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
).replace( rtrim, "$1" ),
matcher,
i < j && matcherFromTokens( tokens.slice( i, j ) ),
j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
j < len && toSelector( tokens )
);
}
matchers.push( matcher );
}
}
return elementMatcher( matchers );
}
function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
// A counter to specify which element is currently being matched
var matcherCachedRuns = 0,
bySet = setMatchers.length > 0,
byElement = elementMatchers.length > 0,
superMatcher = function( seed, context, xml, results, outermost ) {
var elem, j, matcher,
matchedCount = 0,
i = "0",
unmatched = seed && [],
setMatched = [],
contextBackup = outermostContext,
// We must always have either seed elements or outermost context
elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
// Use integer dirruns iff this is the outermost matcher
dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
len = elems.length;
if ( outermost ) {
outermostContext = context !== document && context;
cachedruns = matcherCachedRuns;
}
// Add elements passing elementMatchers directly to results
// Keep `i` a string if there are no elements so `matchedCount` will be "00" below
// Support: IE<9, Safari
// Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id
for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
if ( byElement && elem ) {
j = 0;
while ( (matcher = elementMatchers[j++]) ) {
if ( matcher( elem, context, xml ) ) {
results.push( elem );
break;
}
}
if ( outermost ) {
dirruns = dirrunsUnique;
cachedruns = ++matcherCachedRuns;
}
}
// Track unmatched elements for set filters
if ( bySet ) {
// They will have gone through all possible matchers
if ( (elem = !matcher && elem) ) {
matchedCount--;
}
// Lengthen the array for every element, matched or not
if ( seed ) {
unmatched.push( elem );
}
}
}
// Apply set filters to unmatched elements
matchedCount += i;
if ( bySet && i !== matchedCount ) {
j = 0;
while ( (matcher = setMatchers[j++]) ) {
matcher( unmatched, setMatched, context, xml );
}
if ( seed ) {
// Reintegrate element matches to eliminate the need for sorting
if ( matchedCount > 0 ) {
while ( i-- ) {
if ( !(unmatched[i] || setMatched[i]) ) {
setMatched[i] = pop.call( results );
}
}
}
// Discard index placeholder values to get only actual matches
setMatched = condense( setMatched );
}
// Add matches to results
push.apply( results, setMatched );
// Seedless set matches succeeding multiple successful matchers stipulate sorting
if ( outermost && !seed && setMatched.length > 0 &&
( matchedCount + setMatchers.length ) > 1 ) {
Sizzle.uniqueSort( results );
}
}
// Override manipulation of globals by nested matchers
if ( outermost ) {
dirruns = dirrunsUnique;
outermostContext = contextBackup;
}
return unmatched;
};
return bySet ?
markFunction( superMatcher ) :
superMatcher;
}
compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) {
var i,
setMatchers = [],
elementMatchers = [],
cached = compilerCache[ selector + " " ];
if ( !cached ) {
// Generate a function of recursive functions that can be used to check each element
if ( !group ) {
group = tokenize( selector );
}
i = group.length;
while ( i-- ) {
cached = matcherFromTokens( group[i] );
if ( cached[ expando ] ) {
setMatchers.push( cached );
} else {
elementMatchers.push( cached );
}
}
// Cache the compiled function
cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
}
return cached;
};
function multipleContexts( selector, contexts, results ) {
var i = 0,
len = contexts.length;
for ( ; i < len; i++ ) {
Sizzle( selector, contexts[i], results );
}
return results;
}
function select( selector, context, results, seed ) {
var i, tokens, token, type, find,
match = tokenize( selector );
if ( !seed ) {
// Try to minimize operations if there is only one group
if ( match.length === 1 ) {
// Take a shortcut and set the context if the root selector is an ID
tokens = match[0] = match[0].slice( 0 );
if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
support.getById && context.nodeType === 9 && documentIsHTML &&
Expr.relative[ tokens[1].type ] ) {
context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
if ( !context ) {
return results;
}
selector = selector.slice( tokens.shift().value.length );
}
// Fetch a seed set for right-to-left matching
i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
while ( i-- ) {
token = tokens[i];
// Abort if we hit a combinator
if ( Expr.relative[ (type = token.type) ] ) {
break;
}
if ( (find = Expr.find[ type ]) ) {
// Search, expanding context for leading sibling combinators
if ( (seed = find(
token.matches[0].replace( runescape, funescape ),
rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
)) ) {
// If seed is empty or no tokens remain, we can return early
tokens.splice( i, 1 );
selector = seed.length && toSelector( tokens );
if ( !selector ) {
push.apply( results, seed );
return results;
}
break;
}
}
}
}
}
// Compile and execute a filtering function
// Provide `match` to avoid retokenization if we modified the selector above
compile( selector, match )(
seed,
context,
!documentIsHTML,
results,
rsibling.test( selector ) && testContext( context.parentNode ) || context
);
return results;
}
// One-time assignments
// Sort stability
support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
// Support: Chrome<14
// Always assume duplicates if they aren't passed to the comparison function
support.detectDuplicates = !!hasDuplicate;
// Initialize against the default document
setDocument();
// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
// Detached nodes confoundingly follow *each other*
support.sortDetached = assert(function( div1 ) {
// Should return 1, but returns 4 (following)
return div1.compareDocumentPosition( document.createElement("div") ) & 1;
});
// Support: IE<8
// Prevent attribute/property "interpolation"
// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
if ( !assert(function( div ) {
div.innerHTML = " ";
return div.firstChild.getAttribute("href") === "#" ;
}) ) {
addHandle( "type|href|height|width", function( elem, name, isXML ) {
if ( !isXML ) {
return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
}
});
}
// Support: IE<9
// Use defaultValue in place of getAttribute("value")
if ( !support.attributes || !assert(function( div ) {
div.innerHTML = " ";
div.firstChild.setAttribute( "value", "" );
return div.firstChild.getAttribute( "value" ) === "";
}) ) {
addHandle( "value", function( elem, name, isXML ) {
if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
return elem.defaultValue;
}
});
}
// Support: IE<9
// Use getAttributeNode to fetch booleans when getAttribute lies
if ( !assert(function( div ) {
return div.getAttribute("disabled") == null;
}) ) {
addHandle( booleans, function( elem, name, isXML ) {
var val;
if ( !isXML ) {
return elem[ name ] === true ? name.toLowerCase() :
(val = elem.getAttributeNode( name )) && val.specified ?
val.value :
null;
}
});
}
return Sizzle;
})( window );
jQuery.find = Sizzle;
jQuery.expr = Sizzle.selectors;
jQuery.expr[":"] = jQuery.expr.pseudos;
jQuery.unique = Sizzle.uniqueSort;
jQuery.text = Sizzle.getText;
jQuery.isXMLDoc = Sizzle.isXML;
jQuery.contains = Sizzle.contains;
var rneedsContext = jQuery.expr.match.needsContext;
var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
var risSimple = /^.[^:#\[\.,]*$/;
// Implement the identical functionality for filter and not
function winnow( elements, qualifier, not ) {
if ( jQuery.isFunction( qualifier ) ) {
return jQuery.grep( elements, function( elem, i ) {
/* jshint -W018 */
return !!qualifier.call( elem, i, elem ) !== not;
});
}
if ( qualifier.nodeType ) {
return jQuery.grep( elements, function( elem ) {
return ( elem === qualifier ) !== not;
});
}
if ( typeof qualifier === "string" ) {
if ( risSimple.test( qualifier ) ) {
return jQuery.filter( qualifier, elements, not );
}
qualifier = jQuery.filter( qualifier, elements );
}
return jQuery.grep( elements, function( elem ) {
return ( indexOf.call( qualifier, elem ) >= 0 ) !== not;
});
}
jQuery.filter = function( expr, elems, not ) {
var elem = elems[ 0 ];
if ( not ) {
expr = ":not(" + expr + ")";
}
return elems.length === 1 && elem.nodeType === 1 ?
jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :
jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
return elem.nodeType === 1;
}));
};
jQuery.fn.extend({
find: function( selector ) {
var i = 0,
len = this.length,
ret = [],
self = this;
if ( typeof selector !== "string" ) {
return this.pushStack( jQuery( selector ).filter(function() {
for ( ; i < len; i++ ) {
if ( jQuery.contains( self[ i ], this ) ) {
return true;
}
}
}) );
}
i = 0;
for ( ; i < len; i++ ) {
jQuery.find( selector, self[ i ], ret );
}
// Needed because $( selector, context ) becomes $( context ).find( selector )
ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );
ret.selector = this.selector ? this.selector + " " + selector : selector;
return ret;
},
filter: function( selector ) {
return this.pushStack( winnow(this, selector || [], false) );
},
not: function( selector ) {
return this.pushStack( winnow(this, selector || [], true) );
},
is: function( selector ) {
return !!winnow(
this,
// If this is a positional/relative selector, check membership in the returned set
// so $("p:first").is("p:last") won't return true for a doc with two "p".
typeof selector === "string" && rneedsContext.test( selector ) ?
jQuery( selector ) :
selector || [],
false
).length;
}
});
// Initialize a jQuery object
// A central reference to the root jQuery(document)
var rootjQuery,
// A simple way to check for HTML strings
// Prioritize #id over to avoid XSS via location.hash (#9521)
// Strict HTML recognition (#11290: must start with <)
rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
init = jQuery.fn.init = function( selector, context ) {
var match, elem;
// HANDLE: $(""), $(null), $(undefined), $(false)
if ( !selector ) {
return this;
}
// Handle HTML strings
if ( typeof selector === "string" ) {
if ( selector[0] === "<" && selector[ selector.length - 1 ] === ">" && selector.length >= 3 ) {
// Assume that strings that start and end with <> are HTML and skip the regex check
match = [ null, selector, null ];
} else {
match = rquickExpr.exec( selector );
}
// Match html or make sure no context is specified for #id
if ( match && (match[1] || !context) ) {
// HANDLE: $(html) -> $(array)
if ( match[1] ) {
context = context instanceof jQuery ? context[0] : context;
// scripts is true for back-compat
// Intentionally let the error be thrown if parseHTML is not present
jQuery.merge( this, jQuery.parseHTML(
match[1],
context && context.nodeType ? context.ownerDocument || context : document,
true
) );
// HANDLE: $(html, props)
if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
for ( match in context ) {
// Properties of context are called as methods if possible
if ( jQuery.isFunction( this[ match ] ) ) {
this[ match ]( context[ match ] );
// ...and otherwise set as attributes
} else {
this.attr( match, context[ match ] );
}
}
}
return this;
// HANDLE: $(#id)
} else {
elem = document.getElementById( match[2] );
// Check parentNode to catch when Blackberry 4.6 returns
// nodes that are no longer in the document #6963
if ( elem && elem.parentNode ) {
// Inject the element directly into the jQuery object
this.length = 1;
this[0] = elem;
}
this.context = document;
this.selector = selector;
return this;
}
// HANDLE: $(expr, $(...))
} else if ( !context || context.jquery ) {
return ( context || rootjQuery ).find( selector );
// HANDLE: $(expr, context)
// (which is just equivalent to: $(context).find(expr)
} else {
return this.constructor( context ).find( selector );
}
// HANDLE: $(DOMElement)
} else if ( selector.nodeType ) {
this.context = this[0] = selector;
this.length = 1;
return this;
// HANDLE: $(function)
// Shortcut for document ready
} else if ( jQuery.isFunction( selector ) ) {
return typeof rootjQuery.ready !== "undefined" ?
rootjQuery.ready( selector ) :
// Execute immediately if ready is not present
selector( jQuery );
}
if ( selector.selector !== undefined ) {
this.selector = selector.selector;
this.context = selector.context;
}
return jQuery.makeArray( selector, this );
};
// Give the init function the jQuery prototype for later instantiation
init.prototype = jQuery.fn;
// Initialize central reference
rootjQuery = jQuery( document );
var rparentsprev = /^(?:parents|prev(?:Until|All))/,
// methods guaranteed to produce a unique set when starting from a unique set
guaranteedUnique = {
children: true,
contents: true,
next: true,
prev: true
};
jQuery.extend({
dir: function( elem, dir, until ) {
var matched = [],
truncate = until !== undefined;
while ( (elem = elem[ dir ]) && elem.nodeType !== 9 ) {
if ( elem.nodeType === 1 ) {
if ( truncate && jQuery( elem ).is( until ) ) {
break;
}
matched.push( elem );
}
}
return matched;
},
sibling: function( n, elem ) {
var matched = [];
for ( ; n; n = n.nextSibling ) {
if ( n.nodeType === 1 && n !== elem ) {
matched.push( n );
}
}
return matched;
}
});
jQuery.fn.extend({
has: function( target ) {
var targets = jQuery( target, this ),
l = targets.length;
return this.filter(function() {
var i = 0;
for ( ; i < l; i++ ) {
if ( jQuery.contains( this, targets[i] ) ) {
return true;
}
}
});
},
closest: function( selectors, context ) {
var cur,
i = 0,
l = this.length,
matched = [],
pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
jQuery( selectors, context || this.context ) :
0;
for ( ; i < l; i++ ) {
for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {
// Always skip document fragments
if ( cur.nodeType < 11 && (pos ?
pos.index(cur) > -1 :
// Don't pass non-elements to Sizzle
cur.nodeType === 1 &&
jQuery.find.matchesSelector(cur, selectors)) ) {
matched.push( cur );
break;
}
}
}
return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );
},
// Determine the position of an element within
// the matched set of elements
index: function( elem ) {
// No argument, return index in parent
if ( !elem ) {
return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
}
// index in selector
if ( typeof elem === "string" ) {
return indexOf.call( jQuery( elem ), this[ 0 ] );
}
// Locate the position of the desired element
return indexOf.call( this,
// If it receives a jQuery object, the first element is used
elem.jquery ? elem[ 0 ] : elem
);
},
add: function( selector, context ) {
var set = typeof selector === "string" ?
jQuery( selector, context ) :
jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ),
all = jQuery.merge( this.get(), set );
return this.pushStack( jQuery.unique(all) );
},
addBack: function( selector ) {
return this.add( selector == null ?
this.prevObject : this.prevObject.filter(selector)
);
}
});
function sibling( cur, dir ) {
while ( (cur = cur[dir]) && cur.nodeType !== 1 ) {}
return cur;
}
jQuery.each({
parent: function( elem ) {
var parent = elem.parentNode;
return parent && parent.nodeType !== 11 ? parent : null;
},
parents: function( elem ) {
return jQuery.dir( elem, "parentNode" );
},
parentsUntil: function( elem, i, until ) {
return jQuery.dir( elem, "parentNode", until );
},
next: function( elem ) {
return sibling( elem, "nextSibling" );
},
prev: function( elem ) {
return sibling( elem, "previousSibling" );
},
nextAll: function( elem ) {
return jQuery.dir( elem, "nextSibling" );
},
prevAll: function( elem ) {
return jQuery.dir( elem, "previousSibling" );
},
nextUntil: function( elem, i, until ) {
return jQuery.dir( elem, "nextSibling", until );
},
prevUntil: function( elem, i, until ) {
return jQuery.dir( elem, "previousSibling", until );
},
siblings: function( elem ) {
return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );
},
children: function( elem ) {
return jQuery.sibling( elem.firstChild );
},
contents: function( elem ) {
return elem.contentDocument || jQuery.merge( [], elem.childNodes );
}
}, function( name, fn ) {
jQuery.fn[ name ] = function( until, selector ) {
var matched = jQuery.map( this, fn, until );
if ( name.slice( -5 ) !== "Until" ) {
selector = until;
}
if ( selector && typeof selector === "string" ) {
matched = jQuery.filter( selector, matched );
}
if ( this.length > 1 ) {
// Remove duplicates
if ( !guaranteedUnique[ name ] ) {
jQuery.unique( matched );
}
// Reverse order for parents* and prev-derivatives
if ( rparentsprev.test( name ) ) {
matched.reverse();
}
}
return this.pushStack( matched );
};
});
var rnotwhite = (/\S+/g);
// String to Object options format cache
var optionsCache = {};
// Convert String-formatted options into Object-formatted ones and store in cache
function createOptions( options ) {
var object = optionsCache[ options ] = {};
jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {
object[ flag ] = true;
});
return object;
}
/*
* Create a callback list using the following parameters:
*
* options: an optional list of space-separated options that will change how
* the callback list behaves or a more traditional option object
*
* By default a callback list will act like an event callback list and can be
* "fired" multiple times.
*
* Possible options:
*
* once: will ensure the callback list can only be fired once (like a Deferred)
*
* memory: will keep track of previous values and will call any callback added
* after the list has been fired right away with the latest "memorized"
* values (like a Deferred)
*
* unique: will ensure a callback can only be added once (no duplicate in the list)
*
* stopOnFalse: interrupt callings when a callback returns false
*
*/
jQuery.Callbacks = function( options ) {
// Convert options from String-formatted to Object-formatted if needed
// (we check in cache first)
options = typeof options === "string" ?
( optionsCache[ options ] || createOptions( options ) ) :
jQuery.extend( {}, options );
var // Last fire value (for non-forgettable lists)
memory,
// Flag to know if list was already fired
fired,
// Flag to know if list is currently firing
firing,
// First callback to fire (used internally by add and fireWith)
firingStart,
// End of the loop when firing
firingLength,
// Index of currently firing callback (modified by remove if needed)
firingIndex,
// Actual callback list
list = [],
// Stack of fire calls for repeatable lists
stack = !options.once && [],
// Fire callbacks
fire = function( data ) {
memory = options.memory && data;
fired = true;
firingIndex = firingStart || 0;
firingStart = 0;
firingLength = list.length;
firing = true;
for ( ; list && firingIndex < firingLength; firingIndex++ ) {
if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {
memory = false; // To prevent further calls using add
break;
}
}
firing = false;
if ( list ) {
if ( stack ) {
if ( stack.length ) {
fire( stack.shift() );
}
} else if ( memory ) {
list = [];
} else {
self.disable();
}
}
},
// Actual Callbacks object
self = {
// Add a callback or a collection of callbacks to the list
add: function() {
if ( list ) {
// First, we save the current length
var start = list.length;
(function add( args ) {
jQuery.each( args, function( _, arg ) {
var type = jQuery.type( arg );
if ( type === "function" ) {
if ( !options.unique || !self.has( arg ) ) {
list.push( arg );
}
} else if ( arg && arg.length && type !== "string" ) {
// Inspect recursively
add( arg );
}
});
})( arguments );
// Do we need to add the callbacks to the
// current firing batch?
if ( firing ) {
firingLength = list.length;
// With memory, if we're not firing then
// we should call right away
} else if ( memory ) {
firingStart = start;
fire( memory );
}
}
return this;
},
// Remove a callback from the list
remove: function() {
if ( list ) {
jQuery.each( arguments, function( _, arg ) {
var index;
while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
list.splice( index, 1 );
// Handle firing indexes
if ( firing ) {
if ( index <= firingLength ) {
firingLength--;
}
if ( index <= firingIndex ) {
firingIndex--;
}
}
}
});
}
return this;
},
// Check if a given callback is in the list.
// If no argument is given, return whether or not list has callbacks attached.
has: function( fn ) {
return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );
},
// Remove all callbacks from the list
empty: function() {
list = [];
firingLength = 0;
return this;
},
// Have the list do nothing anymore
disable: function() {
list = stack = memory = undefined;
return this;
},
// Is it disabled?
disabled: function() {
return !list;
},
// Lock the list in its current state
lock: function() {
stack = undefined;
if ( !memory ) {
self.disable();
}
return this;
},
// Is it locked?
locked: function() {
return !stack;
},
// Call all callbacks with the given context and arguments
fireWith: function( context, args ) {
if ( list && ( !fired || stack ) ) {
args = args || [];
args = [ context, args.slice ? args.slice() : args ];
if ( firing ) {
stack.push( args );
} else {
fire( args );
}
}
return this;
},
// Call all the callbacks with the given arguments
fire: function() {
self.fireWith( this, arguments );
return this;
},
// To know if the callbacks have already been called at least once
fired: function() {
return !!fired;
}
};
return self;
};
jQuery.extend({
Deferred: function( func ) {
var tuples = [
// action, add listener, listener list, final state
[ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
[ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
[ "notify", "progress", jQuery.Callbacks("memory") ]
],
state = "pending",
promise = {
state: function() {
return state;
},
always: function() {
deferred.done( arguments ).fail( arguments );
return this;
},
then: function( /* fnDone, fnFail, fnProgress */ ) {
var fns = arguments;
return jQuery.Deferred(function( newDefer ) {
jQuery.each( tuples, function( i, tuple ) {
var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
// deferred[ done | fail | progress ] for forwarding actions to newDefer
deferred[ tuple[1] ](function() {
var returned = fn && fn.apply( this, arguments );
if ( returned && jQuery.isFunction( returned.promise ) ) {
returned.promise()
.done( newDefer.resolve )
.fail( newDefer.reject )
.progress( newDefer.notify );
} else {
newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );
}
});
});
fns = null;
}).promise();
},
// Get a promise for this deferred
// If obj is provided, the promise aspect is added to the object
promise: function( obj ) {
return obj != null ? jQuery.extend( obj, promise ) : promise;
}
},
deferred = {};
// Keep pipe for back-compat
promise.pipe = promise.then;
// Add list-specific methods
jQuery.each( tuples, function( i, tuple ) {
var list = tuple[ 2 ],
stateString = tuple[ 3 ];
// promise[ done | fail | progress ] = list.add
promise[ tuple[1] ] = list.add;
// Handle state
if ( stateString ) {
list.add(function() {
// state = [ resolved | rejected ]
state = stateString;
// [ reject_list | resolve_list ].disable; progress_list.lock
}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
}
// deferred[ resolve | reject | notify ]
deferred[ tuple[0] ] = function() {
deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments );
return this;
};
deferred[ tuple[0] + "With" ] = list.fireWith;
});
// Make the deferred a promise
promise.promise( deferred );
// Call given func if any
if ( func ) {
func.call( deferred, deferred );
}
// All done!
return deferred;
},
// Deferred helper
when: function( subordinate /* , ..., subordinateN */ ) {
var i = 0,
resolveValues = slice.call( arguments ),
length = resolveValues.length,
// the count of uncompleted subordinates
remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
// the master Deferred. If resolveValues consist of only a single Deferred, just use that.
deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
// Update function for both resolve and progress values
updateFunc = function( i, contexts, values ) {
return function( value ) {
contexts[ i ] = this;
values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
if ( values === progressValues ) {
deferred.notifyWith( contexts, values );
} else if ( !( --remaining ) ) {
deferred.resolveWith( contexts, values );
}
};
},
progressValues, progressContexts, resolveContexts;
// add listeners to Deferred subordinates; treat others as resolved
if ( length > 1 ) {
progressValues = new Array( length );
progressContexts = new Array( length );
resolveContexts = new Array( length );
for ( ; i < length; i++ ) {
if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
resolveValues[ i ].promise()
.done( updateFunc( i, resolveContexts, resolveValues ) )
.fail( deferred.reject )
.progress( updateFunc( i, progressContexts, progressValues ) );
} else {
--remaining;
}
}
}
// if we're not waiting on anything, resolve the master
if ( !remaining ) {
deferred.resolveWith( resolveContexts, resolveValues );
}
return deferred.promise();
}
});
// The deferred used on DOM ready
var readyList;
jQuery.fn.ready = function( fn ) {
// Add the callback
jQuery.ready.promise().done( fn );
return this;
};
jQuery.extend({
// Is the DOM ready to be used? Set to true once it occurs.
isReady: false,
// A counter to track how many items to wait for before
// the ready event fires. See #6781
readyWait: 1,
// Hold (or release) the ready event
holdReady: function( hold ) {
if ( hold ) {
jQuery.readyWait++;
} else {
jQuery.ready( true );
}
},
// Handle when the DOM is ready
ready: function( wait ) {
// Abort if there are pending holds or we're already ready
if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
return;
}
// Remember that the DOM is ready
jQuery.isReady = true;
// If a normal DOM Ready event fired, decrement, and wait if need be
if ( wait !== true && --jQuery.readyWait > 0 ) {
return;
}
// If there are functions bound, to execute
readyList.resolveWith( document, [ jQuery ] );
// Trigger any bound ready events
if ( jQuery.fn.trigger ) {
jQuery( document ).trigger("ready").off("ready");
}
}
});
/**
* The ready event handler and self cleanup method
*/
function completed() {
document.removeEventListener( "DOMContentLoaded", completed, false );
window.removeEventListener( "load", completed, false );
jQuery.ready();
}
jQuery.ready.promise = function( obj ) {
if ( !readyList ) {
readyList = jQuery.Deferred();
// Catch cases where $(document).ready() is called after the browser event has already occurred.
// we once tried to use readyState "interactive" here, but it caused issues like the one
// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15
if ( document.readyState === "complete" ) {
// Handle it asynchronously to allow scripts the opportunity to delay ready
setTimeout( jQuery.ready );
} else {
// Use the handy event callback
document.addEventListener( "DOMContentLoaded", completed, false );
// A fallback to window.onload, that will always work
window.addEventListener( "load", completed, false );
}
}
return readyList.promise( obj );
};
// Kick off the DOM ready check even if the user does not
jQuery.ready.promise();
// Multifunctional method to get and set values of a collection
// The value/s can optionally be executed if it's a function
var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
var i = 0,
len = elems.length,
bulk = key == null;
// Sets many values
if ( jQuery.type( key ) === "object" ) {
chainable = true;
for ( i in key ) {
jQuery.access( elems, fn, i, key[i], true, emptyGet, raw );
}
// Sets one value
} else if ( value !== undefined ) {
chainable = true;
if ( !jQuery.isFunction( value ) ) {
raw = true;
}
if ( bulk ) {
// Bulk operations run against the entire set
if ( raw ) {
fn.call( elems, value );
fn = null;
// ...except when executing function values
} else {
bulk = fn;
fn = function( elem, key, value ) {
return bulk.call( jQuery( elem ), value );
};
}
}
if ( fn ) {
for ( ; i < len; i++ ) {
fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );
}
}
}
return chainable ?
elems :
// Gets
bulk ?
fn.call( elems ) :
len ? fn( elems[0], key ) : emptyGet;
};
/**
* Determines whether an object can have data
*/
jQuery.acceptData = function( owner ) {
// Accepts only:
// - Node
// - Node.ELEMENT_NODE
// - Node.DOCUMENT_NODE
// - Object
// - Any
/* jshint -W018 */
return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
};
function Data() {
// Support: Android < 4,
// Old WebKit does not have Object.preventExtensions/freeze method,
// return new empty object instead with no [[set]] accessor
Object.defineProperty( this.cache = {}, 0, {
get: function() {
return {};
}
});
this.expando = jQuery.expando + Math.random();
}
Data.uid = 1;
Data.accepts = jQuery.acceptData;
Data.prototype = {
key: function( owner ) {
// We can accept data for non-element nodes in modern browsers,
// but we should not, see #8335.
// Always return the key for a frozen object.
if ( !Data.accepts( owner ) ) {
return 0;
}
var descriptor = {},
// Check if the owner object already has a cache key
unlock = owner[ this.expando ];
// If not, create one
if ( !unlock ) {
unlock = Data.uid++;
// Secure it in a non-enumerable, non-writable property
try {
descriptor[ this.expando ] = { value: unlock };
Object.defineProperties( owner, descriptor );
// Support: Android < 4
// Fallback to a less secure definition
} catch ( e ) {
descriptor[ this.expando ] = unlock;
jQuery.extend( owner, descriptor );
}
}
// Ensure the cache object
if ( !this.cache[ unlock ] ) {
this.cache[ unlock ] = {};
}
return unlock;
},
set: function( owner, data, value ) {
var prop,
// There may be an unlock assigned to this node,
// if there is no entry for this "owner", create one inline
// and set the unlock as though an owner entry had always existed
unlock = this.key( owner ),
cache = this.cache[ unlock ];
// Handle: [ owner, key, value ] args
if ( typeof data === "string" ) {
cache[ data ] = value;
// Handle: [ owner, { properties } ] args
} else {
// Fresh assignments by object are shallow copied
if ( jQuery.isEmptyObject( cache ) ) {
jQuery.extend( this.cache[ unlock ], data );
// Otherwise, copy the properties one-by-one to the cache object
} else {
for ( prop in data ) {
cache[ prop ] = data[ prop ];
}
}
}
return cache;
},
get: function( owner, key ) {
// Either a valid cache is found, or will be created.
// New caches will be created and the unlock returned,
// allowing direct access to the newly created
// empty data object. A valid owner object must be provided.
var cache = this.cache[ this.key( owner ) ];
return key === undefined ?
cache : cache[ key ];
},
access: function( owner, key, value ) {
var stored;
// In cases where either:
//
// 1. No key was specified
// 2. A string key was specified, but no value provided
//
// Take the "read" path and allow the get method to determine
// which value to return, respectively either:
//
// 1. The entire cache object
// 2. The data stored at the key
//
if ( key === undefined ||
((key && typeof key === "string") && value === undefined) ) {
stored = this.get( owner, key );
return stored !== undefined ?
stored : this.get( owner, jQuery.camelCase(key) );
}
// [*]When the key is not a string, or both a key and value
// are specified, set or extend (existing objects) with either:
//
// 1. An object of properties
// 2. A key and value
//
this.set( owner, key, value );
// Since the "set" path can have two possible entry points
// return the expected data based on which path was taken[*]
return value !== undefined ? value : key;
},
remove: function( owner, key ) {
var i, name, camel,
unlock = this.key( owner ),
cache = this.cache[ unlock ];
if ( key === undefined ) {
this.cache[ unlock ] = {};
} else {
// Support array or space separated string of keys
if ( jQuery.isArray( key ) ) {
// If "name" is an array of keys...
// When data is initially created, via ("key", "val") signature,
// keys will be converted to camelCase.
// Since there is no way to tell _how_ a key was added, remove
// both plain key and camelCase key. #12786
// This will only penalize the array argument path.
name = key.concat( key.map( jQuery.camelCase ) );
} else {
camel = jQuery.camelCase( key );
// Try the string as a key before any manipulation
if ( key in cache ) {
name = [ key, camel ];
} else {
// If a key with the spaces exists, use it.
// Otherwise, create an array by matching non-whitespace
name = camel;
name = name in cache ?
[ name ] : ( name.match( rnotwhite ) || [] );
}
}
i = name.length;
while ( i-- ) {
delete cache[ name[ i ] ];
}
}
},
hasData: function( owner ) {
return !jQuery.isEmptyObject(
this.cache[ owner[ this.expando ] ] || {}
);
},
discard: function( owner ) {
if ( owner[ this.expando ] ) {
delete this.cache[ owner[ this.expando ] ];
}
}
};
var data_priv = new Data();
var data_user = new Data();
/*
Implementation Summary
1. Enforce API surface and semantic compatibility with 1.9.x branch
2. Improve the module's maintainability by reducing the storage
paths to a single mechanism.
3. Use the same single mechanism to support "private" and "user" data.
4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
5. Avoid exposing implementation details on user objects (eg. expando properties)
6. Provide a clear path for implementation upgrade to WeakMap in 2014
*/
var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
rmultiDash = /([A-Z])/g;
function dataAttr( elem, key, data ) {
var name;
// If nothing was found internally, try to fetch any
// data from the HTML5 data-* attribute
if ( data === undefined && elem.nodeType === 1 ) {
name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();
data = elem.getAttribute( name );
if ( typeof data === "string" ) {
try {
data = data === "true" ? true :
data === "false" ? false :
data === "null" ? null :
// Only convert to a number if it doesn't change the string
+data + "" === data ? +data :
rbrace.test( data ) ? jQuery.parseJSON( data ) :
data;
} catch( e ) {}
// Make sure we set the data so it isn't changed later
data_user.set( elem, key, data );
} else {
data = undefined;
}
}
return data;
}
jQuery.extend({
hasData: function( elem ) {
return data_user.hasData( elem ) || data_priv.hasData( elem );
},
data: function( elem, name, data ) {
return data_user.access( elem, name, data );
},
removeData: function( elem, name ) {
data_user.remove( elem, name );
},
// TODO: Now that all calls to _data and _removeData have been replaced
// with direct calls to data_priv methods, these can be deprecated.
_data: function( elem, name, data ) {
return data_priv.access( elem, name, data );
},
_removeData: function( elem, name ) {
data_priv.remove( elem, name );
}
});
jQuery.fn.extend({
data: function( key, value ) {
var i, name, data,
elem = this[ 0 ],
attrs = elem && elem.attributes;
// Gets all values
if ( key === undefined ) {
if ( this.length ) {
data = data_user.get( elem );
if ( elem.nodeType === 1 && !data_priv.get( elem, "hasDataAttrs" ) ) {
i = attrs.length;
while ( i-- ) {
name = attrs[ i ].name;
if ( name.indexOf( "data-" ) === 0 ) {
name = jQuery.camelCase( name.slice(5) );
dataAttr( elem, name, data[ name ] );
}
}
data_priv.set( elem, "hasDataAttrs", true );
}
}
return data;
}
// Sets multiple values
if ( typeof key === "object" ) {
return this.each(function() {
data_user.set( this, key );
});
}
return access( this, function( value ) {
var data,
camelKey = jQuery.camelCase( key );
// The calling jQuery object (element matches) is not empty
// (and therefore has an element appears at this[ 0 ]) and the
// `value` parameter was not undefined. An empty jQuery object
// will result in `undefined` for elem = this[ 0 ] which will
// throw an exception if an attempt to read a data cache is made.
if ( elem && value === undefined ) {
// Attempt to get data from the cache
// with the key as-is
data = data_user.get( elem, key );
if ( data !== undefined ) {
return data;
}
// Attempt to get data from the cache
// with the key camelized
data = data_user.get( elem, camelKey );
if ( data !== undefined ) {
return data;
}
// Attempt to "discover" the data in
// HTML5 custom data-* attrs
data = dataAttr( elem, camelKey, undefined );
if ( data !== undefined ) {
return data;
}
// We tried really hard, but the data doesn't exist.
return;
}
// Set the data...
this.each(function() {
// First, attempt to store a copy or reference of any
// data that might've been store with a camelCased key.
var data = data_user.get( this, camelKey );
// For HTML5 data-* attribute interop, we have to
// store property names with dashes in a camelCase form.
// This might not apply to all properties...*
data_user.set( this, camelKey, value );
// *... In the case of properties that might _actually_
// have dashes, we need to also store a copy of that
// unchanged property.
if ( key.indexOf("-") !== -1 && data !== undefined ) {
data_user.set( this, key, value );
}
});
}, null, value, arguments.length > 1, null, true );
},
removeData: function( key ) {
return this.each(function() {
data_user.remove( this, key );
});
}
});
jQuery.extend({
queue: function( elem, type, data ) {
var queue;
if ( elem ) {
type = ( type || "fx" ) + "queue";
queue = data_priv.get( elem, type );
// Speed up dequeue by getting out quickly if this is just a lookup
if ( data ) {
if ( !queue || jQuery.isArray( data ) ) {
queue = data_priv.access( elem, type, jQuery.makeArray(data) );
} else {
queue.push( data );
}
}
return queue || [];
}
},
dequeue: function( elem, type ) {
type = type || "fx";
var queue = jQuery.queue( elem, type ),
startLength = queue.length,
fn = queue.shift(),
hooks = jQuery._queueHooks( elem, type ),
next = function() {
jQuery.dequeue( elem, type );
};
// If the fx queue is dequeued, always remove the progress sentinel
if ( fn === "inprogress" ) {
fn = queue.shift();
startLength--;
}
if ( fn ) {
// Add a progress sentinel to prevent the fx queue from being
// automatically dequeued
if ( type === "fx" ) {
queue.unshift( "inprogress" );
}
// clear up the last queue stop function
delete hooks.stop;
fn.call( elem, next, hooks );
}
if ( !startLength && hooks ) {
hooks.empty.fire();
}
},
// not intended for public consumption - generates a queueHooks object, or returns the current one
_queueHooks: function( elem, type ) {
var key = type + "queueHooks";
return data_priv.get( elem, key ) || data_priv.access( elem, key, {
empty: jQuery.Callbacks("once memory").add(function() {
data_priv.remove( elem, [ type + "queue", key ] );
})
});
}
});
jQuery.fn.extend({
queue: function( type, data ) {
var setter = 2;
if ( typeof type !== "string" ) {
data = type;
type = "fx";
setter--;
}
if ( arguments.length < setter ) {
return jQuery.queue( this[0], type );
}
return data === undefined ?
this :
this.each(function() {
var queue = jQuery.queue( this, type, data );
// ensure a hooks for this queue
jQuery._queueHooks( this, type );
if ( type === "fx" && queue[0] !== "inprogress" ) {
jQuery.dequeue( this, type );
}
});
},
dequeue: function( type ) {
return this.each(function() {
jQuery.dequeue( this, type );
});
},
clearQueue: function( type ) {
return this.queue( type || "fx", [] );
},
// Get a promise resolved when queues of a certain type
// are emptied (fx is the type by default)
promise: function( type, obj ) {
var tmp,
count = 1,
defer = jQuery.Deferred(),
elements = this,
i = this.length,
resolve = function() {
if ( !( --count ) ) {
defer.resolveWith( elements, [ elements ] );
}
};
if ( typeof type !== "string" ) {
obj = type;
type = undefined;
}
type = type || "fx";
while ( i-- ) {
tmp = data_priv.get( elements[ i ], type + "queueHooks" );
if ( tmp && tmp.empty ) {
count++;
tmp.empty.add( resolve );
}
}
resolve();
return defer.promise( obj );
}
});
var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
var isHidden = function( elem, el ) {
// isHidden might be called from jQuery#filter function;
// in that case, element will be second argument
elem = el || elem;
return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
};
var rcheckableType = (/^(?:checkbox|radio)$/i);
(function() {
var input,
fragment = document.createDocumentFragment(),
div = fragment.appendChild( document.createElement( "div" ) );
// #11217 - WebKit loses check when the name is after the checked attribute
div.innerHTML = " ";
// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3
// old WebKit doesn't clone checked state correctly in fragments
support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
// Make sure checked status is properly cloned
// Support: IE9, IE10
input = document.createElement("input");
input.type = "checkbox";
input.checked = true;
support.noCloneChecked = input.cloneNode( true ).checked;
})();
var strundefined = typeof undefined;
support.focusinBubbles = "onfocusin" in window;
var
rkeyEvent = /^key/,
rmouseEvent = /^(?:mouse|contextmenu)|click/,
rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
rtypenamespace = /^([^.]*)(?:\.(.+)|)$/;
function returnTrue() {
return true;
}
function returnFalse() {
return false;
}
function safeActiveElement() {
try {
return document.activeElement;
} catch ( err ) { }
}
/*
* Helper functions for managing events -- not part of the public interface.
* Props to Dean Edwards' addEvent library for many of the ideas.
*/
jQuery.event = {
global: {},
add: function( elem, types, handler, data, selector ) {
var handleObjIn, eventHandle, tmp,
events, t, handleObj,
special, handlers, type, namespaces, origType,
elemData = data_priv.get( elem );
// Don't attach events to noData or text/comment nodes (but allow plain objects)
if ( !elemData ) {
return;
}
// Caller can pass in an object of custom data in lieu of the handler
if ( handler.handler ) {
handleObjIn = handler;
handler = handleObjIn.handler;
selector = handleObjIn.selector;
}
// Make sure that the handler has a unique ID, used to find/remove it later
if ( !handler.guid ) {
handler.guid = jQuery.guid++;
}
// Init the element's event structure and main handler, if this is the first
if ( !(events = elemData.events) ) {
events = elemData.events = {};
}
if ( !(eventHandle = elemData.handle) ) {
eventHandle = elemData.handle = function( e ) {
// Discard the second event of a jQuery.event.trigger() and
// when an event is called after a page has unloaded
return typeof jQuery !== strundefined && jQuery.event.triggered !== e.type ?
jQuery.event.dispatch.apply( elem, arguments ) : undefined;
};
}
// Handle multiple events separated by a space
types = ( types || "" ).match( rnotwhite ) || [ "" ];
t = types.length;
while ( t-- ) {
tmp = rtypenamespace.exec( types[t] ) || [];
type = origType = tmp[1];
namespaces = ( tmp[2] || "" ).split( "." ).sort();
// There *must* be a type, no attaching namespace-only handlers
if ( !type ) {
continue;
}
// If event changes its type, use the special event handlers for the changed type
special = jQuery.event.special[ type ] || {};
// If selector defined, determine special event api type, otherwise given type
type = ( selector ? special.delegateType : special.bindType ) || type;
// Update special based on newly reset type
special = jQuery.event.special[ type ] || {};
// handleObj is passed to all event handlers
handleObj = jQuery.extend({
type: type,
origType: origType,
data: data,
handler: handler,
guid: handler.guid,
selector: selector,
needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
namespace: namespaces.join(".")
}, handleObjIn );
// Init the event handler queue if we're the first
if ( !(handlers = events[ type ]) ) {
handlers = events[ type ] = [];
handlers.delegateCount = 0;
// Only use addEventListener if the special events handler returns false
if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
if ( elem.addEventListener ) {
elem.addEventListener( type, eventHandle, false );
}
}
}
if ( special.add ) {
special.add.call( elem, handleObj );
if ( !handleObj.handler.guid ) {
handleObj.handler.guid = handler.guid;
}
}
// Add to the element's handler list, delegates in front
if ( selector ) {
handlers.splice( handlers.delegateCount++, 0, handleObj );
} else {
handlers.push( handleObj );
}
// Keep track of which events have ever been used, for event optimization
jQuery.event.global[ type ] = true;
}
},
// Detach an event or set of events from an element
remove: function( elem, types, handler, selector, mappedTypes ) {
var j, origCount, tmp,
events, t, handleObj,
special, handlers, type, namespaces, origType,
elemData = data_priv.hasData( elem ) && data_priv.get( elem );
if ( !elemData || !(events = elemData.events) ) {
return;
}
// Once for each type.namespace in types; type may be omitted
types = ( types || "" ).match( rnotwhite ) || [ "" ];
t = types.length;
while ( t-- ) {
tmp = rtypenamespace.exec( types[t] ) || [];
type = origType = tmp[1];
namespaces = ( tmp[2] || "" ).split( "." ).sort();
// Unbind all events (on this namespace, if provided) for the element
if ( !type ) {
for ( type in events ) {
jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
}
continue;
}
special = jQuery.event.special[ type ] || {};
type = ( selector ? special.delegateType : special.bindType ) || type;
handlers = events[ type ] || [];
tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" );
// Remove matching events
origCount = j = handlers.length;
while ( j-- ) {
handleObj = handlers[ j ];
if ( ( mappedTypes || origType === handleObj.origType ) &&
( !handler || handler.guid === handleObj.guid ) &&
( !tmp || tmp.test( handleObj.namespace ) ) &&
( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
handlers.splice( j, 1 );
if ( handleObj.selector ) {
handlers.delegateCount--;
}
if ( special.remove ) {
special.remove.call( elem, handleObj );
}
}
}
// Remove generic event handler if we removed something and no more handlers exist
// (avoids potential for endless recursion during removal of special event handlers)
if ( origCount && !handlers.length ) {
if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
jQuery.removeEvent( elem, type, elemData.handle );
}
delete events[ type ];
}
}
// Remove the expando if it's no longer used
if ( jQuery.isEmptyObject( events ) ) {
delete elemData.handle;
data_priv.remove( elem, "events" );
}
},
trigger: function( event, data, elem, onlyHandlers ) {
var i, cur, tmp, bubbleType, ontype, handle, special,
eventPath = [ elem || document ],
type = hasOwn.call( event, "type" ) ? event.type : event,
namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : [];
cur = tmp = elem = elem || document;
// Don't do events on text and comment nodes
if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
return;
}
// focus/blur morphs to focusin/out; ensure we're not firing them right now
if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
return;
}
if ( type.indexOf(".") >= 0 ) {
// Namespaced trigger; create a regexp to match event type in handle()
namespaces = type.split(".");
type = namespaces.shift();
namespaces.sort();
}
ontype = type.indexOf(":") < 0 && "on" + type;
// Caller can pass in a jQuery.Event object, Object, or just an event type string
event = event[ jQuery.expando ] ?
event :
new jQuery.Event( type, typeof event === "object" && event );
// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
event.isTrigger = onlyHandlers ? 2 : 3;
event.namespace = namespaces.join(".");
event.namespace_re = event.namespace ?
new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) :
null;
// Clean up the event in case it is being reused
event.result = undefined;
if ( !event.target ) {
event.target = elem;
}
// Clone any incoming data and prepend the event, creating the handler arg list
data = data == null ?
[ event ] :
jQuery.makeArray( data, [ event ] );
// Allow special events to draw outside the lines
special = jQuery.event.special[ type ] || {};
if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
return;
}
// Determine event propagation path in advance, per W3C events spec (#9951)
// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
bubbleType = special.delegateType || type;
if ( !rfocusMorph.test( bubbleType + type ) ) {
cur = cur.parentNode;
}
for ( ; cur; cur = cur.parentNode ) {
eventPath.push( cur );
tmp = cur;
}
// Only add window if we got to document (e.g., not plain obj or detached DOM)
if ( tmp === (elem.ownerDocument || document) ) {
eventPath.push( tmp.defaultView || tmp.parentWindow || window );
}
}
// Fire handlers on the event path
i = 0;
while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {
event.type = i > 1 ?
bubbleType :
special.bindType || type;
// jQuery handler
handle = ( data_priv.get( cur, "events" ) || {} )[ event.type ] && data_priv.get( cur, "handle" );
if ( handle ) {
handle.apply( cur, data );
}
// Native handler
handle = ontype && cur[ ontype ];
if ( handle && handle.apply && jQuery.acceptData( cur ) ) {
event.result = handle.apply( cur, data );
if ( event.result === false ) {
event.preventDefault();
}
}
}
event.type = type;
// If nobody prevented the default action, do it now
if ( !onlyHandlers && !event.isDefaultPrevented() ) {
if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&
jQuery.acceptData( elem ) ) {
// Call a native DOM method on the target with the same name name as the event.
// Don't do default actions on window, that's where global variables be (#6170)
if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) {
// Don't re-trigger an onFOO event when we call its FOO() method
tmp = elem[ ontype ];
if ( tmp ) {
elem[ ontype ] = null;
}
// Prevent re-triggering of the same event, since we already bubbled it above
jQuery.event.triggered = type;
elem[ type ]();
jQuery.event.triggered = undefined;
if ( tmp ) {
elem[ ontype ] = tmp;
}
}
}
}
return event.result;
},
dispatch: function( event ) {
// Make a writable jQuery.Event from the native event object
event = jQuery.event.fix( event );
var i, j, ret, matched, handleObj,
handlerQueue = [],
args = slice.call( arguments ),
handlers = ( data_priv.get( this, "events" ) || {} )[ event.type ] || [],
special = jQuery.event.special[ event.type ] || {};
// Use the fix-ed jQuery.Event rather than the (read-only) native event
args[0] = event;
event.delegateTarget = this;
// Call the preDispatch hook for the mapped type, and let it bail if desired
if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
return;
}
// Determine handlers
handlerQueue = jQuery.event.handlers.call( this, event, handlers );
// Run delegates first; they may want to stop propagation beneath us
i = 0;
while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {
event.currentTarget = matched.elem;
j = 0;
while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {
// Triggered event must either 1) have no namespace, or
// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).
if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {
event.handleObj = handleObj;
event.data = handleObj.data;
ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )
.apply( matched.elem, args );
if ( ret !== undefined ) {
if ( (event.result = ret) === false ) {
event.preventDefault();
event.stopPropagation();
}
}
}
}
}
// Call the postDispatch hook for the mapped type
if ( special.postDispatch ) {
special.postDispatch.call( this, event );
}
return event.result;
},
handlers: function( event, handlers ) {
var i, matches, sel, handleObj,
handlerQueue = [],
delegateCount = handlers.delegateCount,
cur = event.target;
// Find delegate handlers
// Black-hole SVG instance trees (#13180)
// Avoid non-left-click bubbling in Firefox (#3861)
if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) {
for ( ; cur !== this; cur = cur.parentNode || this ) {
// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
if ( cur.disabled !== true || event.type !== "click" ) {
matches = [];
for ( i = 0; i < delegateCount; i++ ) {
handleObj = handlers[ i ];
// Don't conflict with Object.prototype properties (#13203)
sel = handleObj.selector + " ";
if ( matches[ sel ] === undefined ) {
matches[ sel ] = handleObj.needsContext ?
jQuery( sel, this ).index( cur ) >= 0 :
jQuery.find( sel, this, null, [ cur ] ).length;
}
if ( matches[ sel ] ) {
matches.push( handleObj );
}
}
if ( matches.length ) {
handlerQueue.push({ elem: cur, handlers: matches });
}
}
}
}
// Add the remaining (directly-bound) handlers
if ( delegateCount < handlers.length ) {
handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });
}
return handlerQueue;
},
// Includes some event props shared by KeyEvent and MouseEvent
props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),
fixHooks: {},
keyHooks: {
props: "char charCode key keyCode".split(" "),
filter: function( event, original ) {
// Add which for key events
if ( event.which == null ) {
event.which = original.charCode != null ? original.charCode : original.keyCode;
}
return event;
}
},
mouseHooks: {
props: "button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
filter: function( event, original ) {
var eventDoc, doc, body,
button = original.button;
// Calculate pageX/Y if missing and clientX/Y available
if ( event.pageX == null && original.clientX != null ) {
eventDoc = event.target.ownerDocument || document;
doc = eventDoc.documentElement;
body = eventDoc.body;
event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );
event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 );
}
// Add which for click: 1 === left; 2 === middle; 3 === right
// Note: button is not normalized, so don't use it
if ( !event.which && button !== undefined ) {
event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
}
return event;
}
},
fix: function( event ) {
if ( event[ jQuery.expando ] ) {
return event;
}
// Create a writable copy of the event object and normalize some properties
var i, prop, copy,
type = event.type,
originalEvent = event,
fixHook = this.fixHooks[ type ];
if ( !fixHook ) {
this.fixHooks[ type ] = fixHook =
rmouseEvent.test( type ) ? this.mouseHooks :
rkeyEvent.test( type ) ? this.keyHooks :
{};
}
copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
event = new jQuery.Event( originalEvent );
i = copy.length;
while ( i-- ) {
prop = copy[ i ];
event[ prop ] = originalEvent[ prop ];
}
// Support: Cordova 2.5 (WebKit) (#13255)
// All events should have a target; Cordova deviceready doesn't
if ( !event.target ) {
event.target = document;
}
// Support: Safari 6.0+, Chrome < 28
// Target should not be a text node (#504, #13143)
if ( event.target.nodeType === 3 ) {
event.target = event.target.parentNode;
}
return fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
},
special: {
load: {
// Prevent triggered image.load events from bubbling to window.load
noBubble: true
},
focus: {
// Fire native event if possible so blur/focus sequence is correct
trigger: function() {
if ( this !== safeActiveElement() && this.focus ) {
this.focus();
return false;
}
},
delegateType: "focusin"
},
blur: {
trigger: function() {
if ( this === safeActiveElement() && this.blur ) {
this.blur();
return false;
}
},
delegateType: "focusout"
},
click: {
// For checkbox, fire native event so checked state will be right
trigger: function() {
if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) {
this.click();
return false;
}
},
// For cross-browser consistency, don't fire native .click() on links
_default: function( event ) {
return jQuery.nodeName( event.target, "a" );
}
},
beforeunload: {
postDispatch: function( event ) {
// Support: Firefox 20+
// Firefox doesn't alert if the returnValue field is not set.
if ( event.result !== undefined ) {
event.originalEvent.returnValue = event.result;
}
}
}
},
simulate: function( type, elem, event, bubble ) {
// Piggyback on a donor event to simulate a different one.
// Fake originalEvent to avoid donor's stopPropagation, but if the
// simulated event prevents default then we do the same on the donor.
var e = jQuery.extend(
new jQuery.Event(),
event,
{
type: type,
isSimulated: true,
originalEvent: {}
}
);
if ( bubble ) {
jQuery.event.trigger( e, null, elem );
} else {
jQuery.event.dispatch.call( elem, e );
}
if ( e.isDefaultPrevented() ) {
event.preventDefault();
}
}
};
jQuery.removeEvent = function( elem, type, handle ) {
if ( elem.removeEventListener ) {
elem.removeEventListener( type, handle, false );
}
};
jQuery.Event = function( src, props ) {
// Allow instantiation without the 'new' keyword
if ( !(this instanceof jQuery.Event) ) {
return new jQuery.Event( src, props );
}
// Event object
if ( src && src.type ) {
this.originalEvent = src;
this.type = src.type;
// Events bubbling up the document may have been marked as prevented
// by a handler lower down the tree; reflect the correct value.
this.isDefaultPrevented = src.defaultPrevented ||
// Support: Android < 4.0
src.defaultPrevented === undefined &&
src.getPreventDefault && src.getPreventDefault() ?
returnTrue :
returnFalse;
// Event type
} else {
this.type = src;
}
// Put explicitly provided properties onto the event object
if ( props ) {
jQuery.extend( this, props );
}
// Create a timestamp if incoming event doesn't have one
this.timeStamp = src && src.timeStamp || jQuery.now();
// Mark it as fixed
this[ jQuery.expando ] = true;
};
// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
jQuery.Event.prototype = {
isDefaultPrevented: returnFalse,
isPropagationStopped: returnFalse,
isImmediatePropagationStopped: returnFalse,
preventDefault: function() {
var e = this.originalEvent;
this.isDefaultPrevented = returnTrue;
if ( e && e.preventDefault ) {
e.preventDefault();
}
},
stopPropagation: function() {
var e = this.originalEvent;
this.isPropagationStopped = returnTrue;
if ( e && e.stopPropagation ) {
e.stopPropagation();
}
},
stopImmediatePropagation: function() {
this.isImmediatePropagationStopped = returnTrue;
this.stopPropagation();
}
};
// Create mouseenter/leave events using mouseover/out and event-time checks
// Support: Chrome 15+
jQuery.each({
mouseenter: "mouseover",
mouseleave: "mouseout"
}, function( orig, fix ) {
jQuery.event.special[ orig ] = {
delegateType: fix,
bindType: fix,
handle: function( event ) {
var ret,
target = this,
related = event.relatedTarget,
handleObj = event.handleObj;
// For mousenter/leave call the handler if related is outside the target.
// NB: No relatedTarget if the mouse left/entered the browser window
if ( !related || (related !== target && !jQuery.contains( target, related )) ) {
event.type = handleObj.origType;
ret = handleObj.handler.apply( this, arguments );
event.type = fix;
}
return ret;
}
};
});
// Create "bubbling" focus and blur events
// Support: Firefox, Chrome, Safari
if ( !support.focusinBubbles ) {
jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {
// Attach a single capturing handler on the document while someone wants focusin/focusout
var handler = function( event ) {
jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );
};
jQuery.event.special[ fix ] = {
setup: function() {
var doc = this.ownerDocument || this,
attaches = data_priv.access( doc, fix );
if ( !attaches ) {
doc.addEventListener( orig, handler, true );
}
data_priv.access( doc, fix, ( attaches || 0 ) + 1 );
},
teardown: function() {
var doc = this.ownerDocument || this,
attaches = data_priv.access( doc, fix ) - 1;
if ( !attaches ) {
doc.removeEventListener( orig, handler, true );
data_priv.remove( doc, fix );
} else {
data_priv.access( doc, fix, attaches );
}
}
};
});
}
jQuery.fn.extend({
on: function( types, selector, data, fn, /*INTERNAL*/ one ) {
var origFn, type;
// Types can be a map of types/handlers
if ( typeof types === "object" ) {
// ( types-Object, selector, data )
if ( typeof selector !== "string" ) {
// ( types-Object, data )
data = data || selector;
selector = undefined;
}
for ( type in types ) {
this.on( type, selector, data, types[ type ], one );
}
return this;
}
if ( data == null && fn == null ) {
// ( types, fn )
fn = selector;
data = selector = undefined;
} else if ( fn == null ) {
if ( typeof selector === "string" ) {
// ( types, selector, fn )
fn = data;
data = undefined;
} else {
// ( types, data, fn )
fn = data;
data = selector;
selector = undefined;
}
}
if ( fn === false ) {
fn = returnFalse;
} else if ( !fn ) {
return this;
}
if ( one === 1 ) {
origFn = fn;
fn = function( event ) {
// Can use an empty set, since event contains the info
jQuery().off( event );
return origFn.apply( this, arguments );
};
// Use same guid so caller can remove using origFn
fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
}
return this.each( function() {
jQuery.event.add( this, types, fn, data, selector );
});
},
one: function( types, selector, data, fn ) {
return this.on( types, selector, data, fn, 1 );
},
off: function( types, selector, fn ) {
var handleObj, type;
if ( types && types.preventDefault && types.handleObj ) {
// ( event ) dispatched jQuery.Event
handleObj = types.handleObj;
jQuery( types.delegateTarget ).off(
handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType,
handleObj.selector,
handleObj.handler
);
return this;
}
if ( typeof types === "object" ) {
// ( types-object [, selector] )
for ( type in types ) {
this.off( type, selector, types[ type ] );
}
return this;
}
if ( selector === false || typeof selector === "function" ) {
// ( types [, fn] )
fn = selector;
selector = undefined;
}
if ( fn === false ) {
fn = returnFalse;
}
return this.each(function() {
jQuery.event.remove( this, types, fn, selector );
});
},
trigger: function( type, data ) {
return this.each(function() {
jQuery.event.trigger( type, data, this );
});
},
triggerHandler: function( type, data ) {
var elem = this[0];
if ( elem ) {
return jQuery.event.trigger( type, data, elem, true );
}
}
});
var
rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
rtagName = /<([\w:]+)/,
rhtml = /<|?\w+;/,
rnoInnerhtml = /<(?:script|style|link)/i,
// checked="checked" or checked
rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
rscriptType = /^$|\/(?:java|ecma)script/i,
rscriptTypeMasked = /^true\/(.*)/,
rcleanScript = /^\s*\s*$/g,
// We have to close these tags to support XHTML (#13200)
wrapMap = {
// Support: IE 9
option: [ 1, "", " " ],
thead: [ 1, "" ],
col: [ 2, "" ],
tr: [ 2, "" ],
td: [ 3, "" ],
_default: [ 0, "", "" ]
};
// Support: IE 9
wrapMap.optgroup = wrapMap.option;
wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
wrapMap.th = wrapMap.td;
// Support: 1.x compatibility
// Manipulating tables requires a tbody
function manipulationTarget( elem, content ) {
return jQuery.nodeName( elem, "table" ) &&
jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ?
elem.getElementsByTagName("tbody")[0] ||
elem.appendChild( elem.ownerDocument.createElement("tbody") ) :
elem;
}
// Replace/restore the type attribute of script elements for safe DOM manipulation
function disableScript( elem ) {
elem.type = (elem.getAttribute("type") !== null) + "/" + elem.type;
return elem;
}
function restoreScript( elem ) {
var match = rscriptTypeMasked.exec( elem.type );
if ( match ) {
elem.type = match[ 1 ];
} else {
elem.removeAttribute("type");
}
return elem;
}
// Mark scripts as having already been evaluated
function setGlobalEval( elems, refElements ) {
var i = 0,
l = elems.length;
for ( ; i < l; i++ ) {
data_priv.set(
elems[ i ], "globalEval", !refElements || data_priv.get( refElements[ i ], "globalEval" )
);
}
}
function cloneCopyEvent( src, dest ) {
var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
if ( dest.nodeType !== 1 ) {
return;
}
// 1. Copy private data: events, handlers, etc.
if ( data_priv.hasData( src ) ) {
pdataOld = data_priv.access( src );
pdataCur = data_priv.set( dest, pdataOld );
events = pdataOld.events;
if ( events ) {
delete pdataCur.handle;
pdataCur.events = {};
for ( type in events ) {
for ( i = 0, l = events[ type ].length; i < l; i++ ) {
jQuery.event.add( dest, type, events[ type ][ i ] );
}
}
}
}
// 2. Copy user data
if ( data_user.hasData( src ) ) {
udataOld = data_user.access( src );
udataCur = jQuery.extend( {}, udataOld );
data_user.set( dest, udataCur );
}
}
function getAll( context, tag ) {
var ret = context.getElementsByTagName ? context.getElementsByTagName( tag || "*" ) :
context.querySelectorAll ? context.querySelectorAll( tag || "*" ) :
[];
return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
jQuery.merge( [ context ], ret ) :
ret;
}
// Support: IE >= 9
function fixInput( src, dest ) {
var nodeName = dest.nodeName.toLowerCase();
// Fails to persist the checked state of a cloned checkbox or radio button.
if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
dest.checked = src.checked;
// Fails to return the selected option to the default selected state when cloning options
} else if ( nodeName === "input" || nodeName === "textarea" ) {
dest.defaultValue = src.defaultValue;
}
}
jQuery.extend({
clone: function( elem, dataAndEvents, deepDataAndEvents ) {
var i, l, srcElements, destElements,
clone = elem.cloneNode( true ),
inPage = jQuery.contains( elem.ownerDocument, elem );
// Support: IE >= 9
// Fix Cloning issues
if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
!jQuery.isXMLDoc( elem ) ) {
// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2
destElements = getAll( clone );
srcElements = getAll( elem );
for ( i = 0, l = srcElements.length; i < l; i++ ) {
fixInput( srcElements[ i ], destElements[ i ] );
}
}
// Copy the events from the original to the clone
if ( dataAndEvents ) {
if ( deepDataAndEvents ) {
srcElements = srcElements || getAll( elem );
destElements = destElements || getAll( clone );
for ( i = 0, l = srcElements.length; i < l; i++ ) {
cloneCopyEvent( srcElements[ i ], destElements[ i ] );
}
} else {
cloneCopyEvent( elem, clone );
}
}
// Preserve script evaluation history
destElements = getAll( clone, "script" );
if ( destElements.length > 0 ) {
setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
}
// Return the cloned set
return clone;
},
buildFragment: function( elems, context, scripts, selection ) {
var elem, tmp, tag, wrap, contains, j,
fragment = context.createDocumentFragment(),
nodes = [],
i = 0,
l = elems.length;
for ( ; i < l; i++ ) {
elem = elems[ i ];
if ( elem || elem === 0 ) {
// Add nodes directly
if ( jQuery.type( elem ) === "object" ) {
// Support: QtWebKit
// jQuery.merge because push.apply(_, arraylike) throws
jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
// Convert non-html into a text node
} else if ( !rhtml.test( elem ) ) {
nodes.push( context.createTextNode( elem ) );
// Convert html into DOM nodes
} else {
tmp = tmp || fragment.appendChild( context.createElement("div") );
// Deserialize a standard representation
tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
wrap = wrapMap[ tag ] || wrapMap._default;
tmp.innerHTML = wrap[ 1 ] + elem.replace( rxhtmlTag, "<$1>$2>" ) + wrap[ 2 ];
// Descend through wrappers to the right content
j = wrap[ 0 ];
while ( j-- ) {
tmp = tmp.lastChild;
}
// Support: QtWebKit
// jQuery.merge because push.apply(_, arraylike) throws
jQuery.merge( nodes, tmp.childNodes );
// Remember the top-level container
tmp = fragment.firstChild;
// Fixes #12346
// Support: Webkit, IE
tmp.textContent = "";
}
}
}
// Remove wrapper from fragment
fragment.textContent = "";
i = 0;
while ( (elem = nodes[ i++ ]) ) {
// #4087 - If origin and destination elements are the same, and this is
// that element, do not do anything
if ( selection && jQuery.inArray( elem, selection ) !== -1 ) {
continue;
}
contains = jQuery.contains( elem.ownerDocument, elem );
// Append to fragment
tmp = getAll( fragment.appendChild( elem ), "script" );
// Preserve script evaluation history
if ( contains ) {
setGlobalEval( tmp );
}
// Capture executables
if ( scripts ) {
j = 0;
while ( (elem = tmp[ j++ ]) ) {
if ( rscriptType.test( elem.type || "" ) ) {
scripts.push( elem );
}
}
}
}
return fragment;
},
cleanData: function( elems ) {
var data, elem, events, type, key, j,
special = jQuery.event.special,
i = 0;
for ( ; (elem = elems[ i ]) !== undefined; i++ ) {
if ( jQuery.acceptData( elem ) ) {
key = elem[ data_priv.expando ];
if ( key && (data = data_priv.cache[ key ]) ) {
events = Object.keys( data.events || {} );
if ( events.length ) {
for ( j = 0; (type = events[j]) !== undefined; j++ ) {
if ( special[ type ] ) {
jQuery.event.remove( elem, type );
// This is a shortcut to avoid jQuery.event.remove's overhead
} else {
jQuery.removeEvent( elem, type, data.handle );
}
}
}
if ( data_priv.cache[ key ] ) {
// Discard any remaining `private` data
delete data_priv.cache[ key ];
}
}
}
// Discard any remaining `user` data
delete data_user.cache[ elem[ data_user.expando ] ];
}
}
});
jQuery.fn.extend({
text: function( value ) {
return access( this, function( value ) {
return value === undefined ?
jQuery.text( this ) :
this.empty().each(function() {
if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
this.textContent = value;
}
});
}, null, value, arguments.length );
},
append: function() {
return this.domManip( arguments, function( elem ) {
if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
var target = manipulationTarget( this, elem );
target.appendChild( elem );
}
});
},
prepend: function() {
return this.domManip( arguments, function( elem ) {
if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
var target = manipulationTarget( this, elem );
target.insertBefore( elem, target.firstChild );
}
});
},
before: function() {
return this.domManip( arguments, function( elem ) {
if ( this.parentNode ) {
this.parentNode.insertBefore( elem, this );
}
});
},
after: function() {
return this.domManip( arguments, function( elem ) {
if ( this.parentNode ) {
this.parentNode.insertBefore( elem, this.nextSibling );
}
});
},
remove: function( selector, keepData /* Internal Use Only */ ) {
var elem,
elems = selector ? jQuery.filter( selector, this ) : this,
i = 0;
for ( ; (elem = elems[i]) != null; i++ ) {
if ( !keepData && elem.nodeType === 1 ) {
jQuery.cleanData( getAll( elem ) );
}
if ( elem.parentNode ) {
if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {
setGlobalEval( getAll( elem, "script" ) );
}
elem.parentNode.removeChild( elem );
}
}
return this;
},
empty: function() {
var elem,
i = 0;
for ( ; (elem = this[i]) != null; i++ ) {
if ( elem.nodeType === 1 ) {
// Prevent memory leaks
jQuery.cleanData( getAll( elem, false ) );
// Remove any remaining nodes
elem.textContent = "";
}
}
return this;
},
clone: function( dataAndEvents, deepDataAndEvents ) {
dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
return this.map(function() {
return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
});
},
html: function( value ) {
return access( this, function( value ) {
var elem = this[ 0 ] || {},
i = 0,
l = this.length;
if ( value === undefined && elem.nodeType === 1 ) {
return elem.innerHTML;
}
// See if we can take a shortcut and just use innerHTML
if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
!wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
value = value.replace( rxhtmlTag, "<$1>$2>" );
try {
for ( ; i < l; i++ ) {
elem = this[ i ] || {};
// Remove element nodes and prevent memory leaks
if ( elem.nodeType === 1 ) {
jQuery.cleanData( getAll( elem, false ) );
elem.innerHTML = value;
}
}
elem = 0;
// If using innerHTML throws an exception, use the fallback method
} catch( e ) {}
}
if ( elem ) {
this.empty().append( value );
}
}, null, value, arguments.length );
},
replaceWith: function() {
var arg = arguments[ 0 ];
// Make the changes, replacing each context element with the new content
this.domManip( arguments, function( elem ) {
arg = this.parentNode;
jQuery.cleanData( getAll( this ) );
if ( arg ) {
arg.replaceChild( elem, this );
}
});
// Force removal if there was no new content (e.g., from empty arguments)
return arg && (arg.length || arg.nodeType) ? this : this.remove();
},
detach: function( selector ) {
return this.remove( selector, true );
},
domManip: function( args, callback ) {
// Flatten any nested arrays
args = concat.apply( [], args );
var fragment, first, scripts, hasScripts, node, doc,
i = 0,
l = this.length,
set = this,
iNoClone = l - 1,
value = args[ 0 ],
isFunction = jQuery.isFunction( value );
// We can't cloneNode fragments that contain checked, in WebKit
if ( isFunction ||
( l > 1 && typeof value === "string" &&
!support.checkClone && rchecked.test( value ) ) ) {
return this.each(function( index ) {
var self = set.eq( index );
if ( isFunction ) {
args[ 0 ] = value.call( this, index, self.html() );
}
self.domManip( args, callback );
});
}
if ( l ) {
fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );
first = fragment.firstChild;
if ( fragment.childNodes.length === 1 ) {
fragment = first;
}
if ( first ) {
scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
hasScripts = scripts.length;
// Use the original fragment for the last item instead of the first because it can end up
// being emptied incorrectly in certain situations (#8070).
for ( ; i < l; i++ ) {
node = fragment;
if ( i !== iNoClone ) {
node = jQuery.clone( node, true, true );
// Keep references to cloned scripts for later restoration
if ( hasScripts ) {
// Support: QtWebKit
// jQuery.merge because push.apply(_, arraylike) throws
jQuery.merge( scripts, getAll( node, "script" ) );
}
}
callback.call( this[ i ], node, i );
}
if ( hasScripts ) {
doc = scripts[ scripts.length - 1 ].ownerDocument;
// Reenable scripts
jQuery.map( scripts, restoreScript );
// Evaluate executable scripts on first document insertion
for ( i = 0; i < hasScripts; i++ ) {
node = scripts[ i ];
if ( rscriptType.test( node.type || "" ) &&
!data_priv.access( node, "globalEval" ) && jQuery.contains( doc, node ) ) {
if ( node.src ) {
// Optional AJAX dependency, but won't run scripts if not present
if ( jQuery._evalUrl ) {
jQuery._evalUrl( node.src );
}
} else {
jQuery.globalEval( node.textContent.replace( rcleanScript, "" ) );
}
}
}
}
}
}
return this;
}
});
jQuery.each({
appendTo: "append",
prependTo: "prepend",
insertBefore: "before",
insertAfter: "after",
replaceAll: "replaceWith"
}, function( name, original ) {
jQuery.fn[ name ] = function( selector ) {
var elems,
ret = [],
insert = jQuery( selector ),
last = insert.length - 1,
i = 0;
for ( ; i <= last; i++ ) {
elems = i === last ? this : this.clone( true );
jQuery( insert[ i ] )[ original ]( elems );
// Support: QtWebKit
// .get() because push.apply(_, arraylike) throws
push.apply( ret, elems.get() );
}
return this.pushStack( ret );
};
});
var iframe,
elemdisplay = {};
/**
* Retrieve the actual display of a element
* @param {String} name nodeName of the element
* @param {Object} doc Document object
*/
// Called only from within defaultDisplay
function actualDisplay( name, doc ) {
var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
// getDefaultComputedStyle might be reliably used only on attached element
display = window.getDefaultComputedStyle ?
// Use of this method is a temporary fix (more like optmization) until something better comes along,
// since it was removed from specification and supported only in FF
window.getDefaultComputedStyle( elem[ 0 ] ).display : jQuery.css( elem[ 0 ], "display" );
// We don't have any data stored on the element,
// so use "detach" method as fast way to get rid of the element
elem.detach();
return display;
}
/**
* Try to determine the default display value of an element
* @param {String} nodeName
*/
function defaultDisplay( nodeName ) {
var doc = document,
display = elemdisplay[ nodeName ];
if ( !display ) {
display = actualDisplay( nodeName, doc );
// If the simple way fails, read from inside an iframe
if ( display === "none" || !display ) {
// Use the already-created iframe if possible
iframe = (iframe || jQuery( "" )).appendTo( doc.documentElement );
// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse
doc = iframe[ 0 ].contentDocument;
// Support: IE
doc.write();
doc.close();
display = actualDisplay( nodeName, doc );
iframe.detach();
}
// Store the correct default display
elemdisplay[ nodeName ] = display;
}
return display;
}
var rmargin = (/^margin/);
var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
var getStyles = function( elem ) {
return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
};
function curCSS( elem, name, computed ) {
var width, minWidth, maxWidth, ret,
style = elem.style;
computed = computed || getStyles( elem );
// Support: IE9
// getPropertyValue is only needed for .css('filter') in IE9, see #12537
if ( computed ) {
ret = computed.getPropertyValue( name ) || computed[ name ];
}
if ( computed ) {
if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
ret = jQuery.style( elem, name );
}
// Support: iOS < 6
// A tribute to the "awesome hack by Dean Edwards"
// iOS < 6 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels
// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values
if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {
// Remember the original values
width = style.width;
minWidth = style.minWidth;
maxWidth = style.maxWidth;
// Put in the new values to get a computed value out
style.minWidth = style.maxWidth = style.width = ret;
ret = computed.width;
// Revert the changed values
style.width = width;
style.minWidth = minWidth;
style.maxWidth = maxWidth;
}
}
return ret !== undefined ?
// Support: IE
// IE returns zIndex value as an integer.
ret + "" :
ret;
}
function addGetHookIf( conditionFn, hookFn ) {
// Define the hook, we'll check on the first run if it's really needed.
return {
get: function() {
if ( conditionFn() ) {
// Hook not needed (or it's not possible to use it due to missing dependency),
// remove it.
// Since there are no other hooks for marginRight, remove the whole object.
delete this.get;
return;
}
// Hook needed; redefine it so that the support test is not executed again.
return (this.get = hookFn).apply( this, arguments );
}
};
}
(function() {
var pixelPositionVal, boxSizingReliableVal,
// Support: Firefox, Android 2.3 (Prefixed box-sizing versions).
divReset = "padding:0;margin:0;border:0;display:block;-webkit-box-sizing:content-box;" +
"-moz-box-sizing:content-box;box-sizing:content-box",
docElem = document.documentElement,
container = document.createElement( "div" ),
div = document.createElement( "div" );
div.style.backgroundClip = "content-box";
div.cloneNode( true ).style.backgroundClip = "";
support.clearCloneStyle = div.style.backgroundClip === "content-box";
container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;" +
"margin-top:1px";
container.appendChild( div );
// Executing both pixelPosition & boxSizingReliable tests require only one layout
// so they're executed at the same time to save the second computation.
function computePixelPositionAndBoxSizingReliable() {
// Support: Firefox, Android 2.3 (Prefixed box-sizing versions).
div.style.cssText = "-webkit-box-sizing:border-box;-moz-box-sizing:border-box;" +
"box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;" +
"position:absolute;top:1%";
docElem.appendChild( container );
var divStyle = window.getComputedStyle( div, null );
pixelPositionVal = divStyle.top !== "1%";
boxSizingReliableVal = divStyle.width === "4px";
docElem.removeChild( container );
}
// Use window.getComputedStyle because jsdom on node.js will break without it.
if ( window.getComputedStyle ) {
jQuery.extend(support, {
pixelPosition: function() {
// This test is executed only once but we still do memoizing
// since we can use the boxSizingReliable pre-computing.
// No need to check if the test was already performed, though.
computePixelPositionAndBoxSizingReliable();
return pixelPositionVal;
},
boxSizingReliable: function() {
if ( boxSizingReliableVal == null ) {
computePixelPositionAndBoxSizingReliable();
}
return boxSizingReliableVal;
},
reliableMarginRight: function() {
// Support: Android 2.3
// Check if div with explicit width and no margin-right incorrectly
// gets computed margin-right based on width of container. (#3333)
// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
// This support function is only executed once so no memoizing is needed.
var ret,
marginDiv = div.appendChild( document.createElement( "div" ) );
marginDiv.style.cssText = div.style.cssText = divReset;
marginDiv.style.marginRight = marginDiv.style.width = "0";
div.style.width = "1px";
docElem.appendChild( container );
ret = !parseFloat( window.getComputedStyle( marginDiv, null ).marginRight );
docElem.removeChild( container );
// Clean up the div for other support tests.
div.innerHTML = "";
return ret;
}
});
}
})();
// A method for quickly swapping in/out CSS properties to get correct calculations.
jQuery.swap = function( elem, options, callback, args ) {
var ret, name,
old = {};
// Remember the old values, and insert the new ones
for ( name in options ) {
old[ name ] = elem.style[ name ];
elem.style[ name ] = options[ name ];
}
ret = callback.apply( elem, args || [] );
// Revert the old values
for ( name in options ) {
elem.style[ name ] = old[ name ];
}
return ret;
};
var
// swappable if display is none or starts with table except "table", "table-cell", or "table-caption"
// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
rdisplayswap = /^(none|table(?!-c[ea]).+)/,
rnumsplit = new RegExp( "^(" + pnum + ")(.*)$", "i" ),
rrelNum = new RegExp( "^([+-])=(" + pnum + ")", "i" ),
cssShow = { position: "absolute", visibility: "hidden", display: "block" },
cssNormalTransform = {
letterSpacing: 0,
fontWeight: 400
},
cssPrefixes = [ "Webkit", "O", "Moz", "ms" ];
// return a css property mapped to a potentially vendor prefixed property
function vendorPropName( style, name ) {
// shortcut for names that are not vendor prefixed
if ( name in style ) {
return name;
}
// check for vendor prefixed names
var capName = name[0].toUpperCase() + name.slice(1),
origName = name,
i = cssPrefixes.length;
while ( i-- ) {
name = cssPrefixes[ i ] + capName;
if ( name in style ) {
return name;
}
}
return origName;
}
function setPositiveNumber( elem, value, subtract ) {
var matches = rnumsplit.exec( value );
return matches ?
// Guard against undefined "subtract", e.g., when used as in cssHooks
Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) :
value;
}
function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
var i = extra === ( isBorderBox ? "border" : "content" ) ?
// If we already have the right measurement, avoid augmentation
4 :
// Otherwise initialize for horizontal or vertical properties
name === "width" ? 1 : 0,
val = 0;
for ( ; i < 4; i += 2 ) {
// both box models exclude margin, so add it if we want it
if ( extra === "margin" ) {
val += jQuery.css( elem, extra + cssExpand[ i ], true, styles );
}
if ( isBorderBox ) {
// border-box includes padding, so remove it if we want content
if ( extra === "content" ) {
val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
}
// at this point, extra isn't border nor margin, so remove border
if ( extra !== "margin" ) {
val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
}
} else {
// at this point, extra isn't content, so add padding
val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
// at this point, extra isn't content nor padding, so add border
if ( extra !== "padding" ) {
val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
}
}
}
return val;
}
function getWidthOrHeight( elem, name, extra ) {
// Start with offset property, which is equivalent to the border-box value
var valueIsBorderBox = true,
val = name === "width" ? elem.offsetWidth : elem.offsetHeight,
styles = getStyles( elem ),
isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
// some non-html elements return undefined for offsetWidth, so check for null/undefined
// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
if ( val <= 0 || val == null ) {
// Fall back to computed then uncomputed css if necessary
val = curCSS( elem, name, styles );
if ( val < 0 || val == null ) {
val = elem.style[ name ];
}
// Computed unit is not pixels. Stop here and return.
if ( rnumnonpx.test(val) ) {
return val;
}
// we need the check for style in case a browser which returns unreliable values
// for getComputedStyle silently falls back to the reliable elem.style
valueIsBorderBox = isBorderBox &&
( support.boxSizingReliable() || val === elem.style[ name ] );
// Normalize "", auto, and prepare for extra
val = parseFloat( val ) || 0;
}
// use the active box-sizing model to add/subtract irrelevant styles
return ( val +
augmentWidthOrHeight(
elem,
name,
extra || ( isBorderBox ? "border" : "content" ),
valueIsBorderBox,
styles
)
) + "px";
}
function showHide( elements, show ) {
var display, elem, hidden,
values = [],
index = 0,
length = elements.length;
for ( ; index < length; index++ ) {
elem = elements[ index ];
if ( !elem.style ) {
continue;
}
values[ index ] = data_priv.get( elem, "olddisplay" );
display = elem.style.display;
if ( show ) {
// Reset the inline display of this element to learn if it is
// being hidden by cascaded rules or not
if ( !values[ index ] && display === "none" ) {
elem.style.display = "";
}
// Set elements which have been overridden with display: none
// in a stylesheet to whatever the default browser style is
// for such an element
if ( elem.style.display === "" && isHidden( elem ) ) {
values[ index ] = data_priv.access( elem, "olddisplay", defaultDisplay(elem.nodeName) );
}
} else {
if ( !values[ index ] ) {
hidden = isHidden( elem );
if ( display && display !== "none" || !hidden ) {
data_priv.set( elem, "olddisplay", hidden ? display : jQuery.css(elem, "display") );
}
}
}
}
// Set the display of most of the elements in a second loop
// to avoid the constant reflow
for ( index = 0; index < length; index++ ) {
elem = elements[ index ];
if ( !elem.style ) {
continue;
}
if ( !show || elem.style.display === "none" || elem.style.display === "" ) {
elem.style.display = show ? values[ index ] || "" : "none";
}
}
return elements;
}
jQuery.extend({
// Add in style property hooks for overriding the default
// behavior of getting and setting a style property
cssHooks: {
opacity: {
get: function( elem, computed ) {
if ( computed ) {
// We should always get a number back from opacity
var ret = curCSS( elem, "opacity" );
return ret === "" ? "1" : ret;
}
}
}
},
// Don't automatically add "px" to these possibly-unitless properties
cssNumber: {
"columnCount": true,
"fillOpacity": true,
"fontWeight": true,
"lineHeight": true,
"opacity": true,
"order": true,
"orphans": true,
"widows": true,
"zIndex": true,
"zoom": true
},
// Add in properties whose names you wish to fix before
// setting or getting the value
cssProps: {
// normalize float css property
"float": "cssFloat"
},
// Get and set the style property on a DOM Node
style: function( elem, name, value, extra ) {
// Don't set styles on text and comment nodes
if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
return;
}
// Make sure that we're working with the right name
var ret, type, hooks,
origName = jQuery.camelCase( name ),
style = elem.style;
name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );
// gets hook for the prefixed version
// followed by the unprefixed version
hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
// Check if we're setting a value
if ( value !== undefined ) {
type = typeof value;
// convert relative number strings (+= or -=) to relative numbers. #7345
if ( type === "string" && (ret = rrelNum.exec( value )) ) {
value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );
// Fixes bug #9237
type = "number";
}
// Make sure that null and NaN values aren't set. See: #7116
if ( value == null || value !== value ) {
return;
}
// If a number was passed in, add 'px' to the (except for certain CSS properties)
if ( type === "number" && !jQuery.cssNumber[ origName ] ) {
value += "px";
}
// Fixes #8908, it can be done more correctly by specifying setters in cssHooks,
// but it would mean to define eight (for every problematic property) identical functions
if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
style[ name ] = "inherit";
}
// If a hook was provided, use that value, otherwise just set the specified value
if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {
// Support: Chrome, Safari
// Setting style to blank string required to delete "style: x !important;"
style[ name ] = "";
style[ name ] = value;
}
} else {
// If a hook was provided get the non-computed value from there
if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {
return ret;
}
// Otherwise just get the value from the style object
return style[ name ];
}
},
css: function( elem, name, extra, styles ) {
var val, num, hooks,
origName = jQuery.camelCase( name );
// Make sure that we're working with the right name
name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );
// gets hook for the prefixed version
// followed by the unprefixed version
hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
// If a hook was provided get the computed value from there
if ( hooks && "get" in hooks ) {
val = hooks.get( elem, true, extra );
}
// Otherwise, if a way to get the computed value exists, use that
if ( val === undefined ) {
val = curCSS( elem, name, styles );
}
//convert "normal" to computed value
if ( val === "normal" && name in cssNormalTransform ) {
val = cssNormalTransform[ name ];
}
// Return, converting to number if forced or a qualifier was provided and val looks numeric
if ( extra === "" || extra ) {
num = parseFloat( val );
return extra === true || jQuery.isNumeric( num ) ? num || 0 : val;
}
return val;
}
});
jQuery.each([ "height", "width" ], function( i, name ) {
jQuery.cssHooks[ name ] = {
get: function( elem, computed, extra ) {
if ( computed ) {
// certain elements can have dimension info if we invisibly show them
// however, it must have a current display style that would benefit from this
return elem.offsetWidth === 0 && rdisplayswap.test( jQuery.css( elem, "display" ) ) ?
jQuery.swap( elem, cssShow, function() {
return getWidthOrHeight( elem, name, extra );
}) :
getWidthOrHeight( elem, name, extra );
}
},
set: function( elem, value, extra ) {
var styles = extra && getStyles( elem );
return setPositiveNumber( elem, value, extra ?
augmentWidthOrHeight(
elem,
name,
extra,
jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
styles
) : 0
);
}
};
});
// Support: Android 2.3
jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,
function( elem, computed ) {
if ( computed ) {
// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
// Work around by temporarily setting element display to inline-block
return jQuery.swap( elem, { "display": "inline-block" },
curCSS, [ elem, "marginRight" ] );
}
}
);
// These hooks are used by animate to expand properties
jQuery.each({
margin: "",
padding: "",
border: "Width"
}, function( prefix, suffix ) {
jQuery.cssHooks[ prefix + suffix ] = {
expand: function( value ) {
var i = 0,
expanded = {},
// assumes a single number if not a string
parts = typeof value === "string" ? value.split(" ") : [ value ];
for ( ; i < 4; i++ ) {
expanded[ prefix + cssExpand[ i ] + suffix ] =
parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
}
return expanded;
}
};
if ( !rmargin.test( prefix ) ) {
jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
}
});
jQuery.fn.extend({
css: function( name, value ) {
return access( this, function( elem, name, value ) {
var styles, len,
map = {},
i = 0;
if ( jQuery.isArray( name ) ) {
styles = getStyles( elem );
len = name.length;
for ( ; i < len; i++ ) {
map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
}
return map;
}
return value !== undefined ?
jQuery.style( elem, name, value ) :
jQuery.css( elem, name );
}, name, value, arguments.length > 1 );
},
show: function() {
return showHide( this, true );
},
hide: function() {
return showHide( this );
},
toggle: function( state ) {
if ( typeof state === "boolean" ) {
return state ? this.show() : this.hide();
}
return this.each(function() {
if ( isHidden( this ) ) {
jQuery( this ).show();
} else {
jQuery( this ).hide();
}
});
}
});
function Tween( elem, options, prop, end, easing ) {
return new Tween.prototype.init( elem, options, prop, end, easing );
}
jQuery.Tween = Tween;
Tween.prototype = {
constructor: Tween,
init: function( elem, options, prop, end, easing, unit ) {
this.elem = elem;
this.prop = prop;
this.easing = easing || "swing";
this.options = options;
this.start = this.now = this.cur();
this.end = end;
this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
},
cur: function() {
var hooks = Tween.propHooks[ this.prop ];
return hooks && hooks.get ?
hooks.get( this ) :
Tween.propHooks._default.get( this );
},
run: function( percent ) {
var eased,
hooks = Tween.propHooks[ this.prop ];
if ( this.options.duration ) {
this.pos = eased = jQuery.easing[ this.easing ](
percent, this.options.duration * percent, 0, 1, this.options.duration
);
} else {
this.pos = eased = percent;
}
this.now = ( this.end - this.start ) * eased + this.start;
if ( this.options.step ) {
this.options.step.call( this.elem, this.now, this );
}
if ( hooks && hooks.set ) {
hooks.set( this );
} else {
Tween.propHooks._default.set( this );
}
return this;
}
};
Tween.prototype.init.prototype = Tween.prototype;
Tween.propHooks = {
_default: {
get: function( tween ) {
var result;
if ( tween.elem[ tween.prop ] != null &&
(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {
return tween.elem[ tween.prop ];
}
// passing an empty string as a 3rd parameter to .css will automatically
// attempt a parseFloat and fallback to a string if the parse fails
// so, simple values such as "10px" are parsed to Float.
// complex values such as "rotate(1rad)" are returned as is.
result = jQuery.css( tween.elem, tween.prop, "" );
// Empty strings, null, undefined and "auto" are converted to 0.
return !result || result === "auto" ? 0 : result;
},
set: function( tween ) {
// use step hook for back compat - use cssHook if its there - use .style if its
// available and use plain properties where available
if ( jQuery.fx.step[ tween.prop ] ) {
jQuery.fx.step[ tween.prop ]( tween );
} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {
jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
} else {
tween.elem[ tween.prop ] = tween.now;
}
}
}
};
// Support: IE9
// Panic based approach to setting things on disconnected nodes
Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
set: function( tween ) {
if ( tween.elem.nodeType && tween.elem.parentNode ) {
tween.elem[ tween.prop ] = tween.now;
}
}
};
jQuery.easing = {
linear: function( p ) {
return p;
},
swing: function( p ) {
return 0.5 - Math.cos( p * Math.PI ) / 2;
}
};
jQuery.fx = Tween.prototype.init;
// Back Compat <1.8 extension point
jQuery.fx.step = {};
var
fxNow, timerId,
rfxtypes = /^(?:toggle|show|hide)$/,
rfxnum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ),
rrun = /queueHooks$/,
animationPrefilters = [ defaultPrefilter ],
tweeners = {
"*": [ function( prop, value ) {
var tween = this.createTween( prop, value ),
target = tween.cur(),
parts = rfxnum.exec( value ),
unit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
// Starting value computation is required for potential unit mismatches
start = ( jQuery.cssNumber[ prop ] || unit !== "px" && +target ) &&
rfxnum.exec( jQuery.css( tween.elem, prop ) ),
scale = 1,
maxIterations = 20;
if ( start && start[ 3 ] !== unit ) {
// Trust units reported by jQuery.css
unit = unit || start[ 3 ];
// Make sure we update the tween properties later on
parts = parts || [];
// Iteratively approximate from a nonzero starting point
start = +target || 1;
do {
// If previous iteration zeroed out, double until we get *something*
// Use a string for doubling factor so we don't accidentally see scale as unchanged below
scale = scale || ".5";
// Adjust and apply
start = start / scale;
jQuery.style( tween.elem, prop, start + unit );
// Update scale, tolerating zero or NaN from tween.cur()
// And breaking the loop if scale is unchanged or perfect, or if we've just had enough
} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
}
// Update tween properties
if ( parts ) {
start = tween.start = +start || +target || 0;
tween.unit = unit;
// If a +=/-= token was provided, we're doing a relative animation
tween.end = parts[ 1 ] ?
start + ( parts[ 1 ] + 1 ) * parts[ 2 ] :
+parts[ 2 ];
}
return tween;
} ]
};
// Animations created synchronously will run synchronously
function createFxNow() {
setTimeout(function() {
fxNow = undefined;
});
return ( fxNow = jQuery.now() );
}
// Generate parameters to create a standard animation
function genFx( type, includeWidth ) {
var which,
i = 0,
attrs = { height: type };
// if we include width, step value is 1 to do all cssExpand values,
// if we don't include width, step value is 2 to skip over Left and Right
includeWidth = includeWidth ? 1 : 0;
for ( ; i < 4 ; i += 2 - includeWidth ) {
which = cssExpand[ i ];
attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
}
if ( includeWidth ) {
attrs.opacity = attrs.width = type;
}
return attrs;
}
function createTween( value, prop, animation ) {
var tween,
collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
index = 0,
length = collection.length;
for ( ; index < length; index++ ) {
if ( (tween = collection[ index ].call( animation, prop, value )) ) {
// we're done with this property
return tween;
}
}
}
function defaultPrefilter( elem, props, opts ) {
/* jshint validthis: true */
var prop, value, toggle, tween, hooks, oldfire, display,
anim = this,
orig = {},
style = elem.style,
hidden = elem.nodeType && isHidden( elem ),
dataShow = data_priv.get( elem, "fxshow" );
// handle queue: false promises
if ( !opts.queue ) {
hooks = jQuery._queueHooks( elem, "fx" );
if ( hooks.unqueued == null ) {
hooks.unqueued = 0;
oldfire = hooks.empty.fire;
hooks.empty.fire = function() {
if ( !hooks.unqueued ) {
oldfire();
}
};
}
hooks.unqueued++;
anim.always(function() {
// doing this makes sure that the complete handler will be called
// before this completes
anim.always(function() {
hooks.unqueued--;
if ( !jQuery.queue( elem, "fx" ).length ) {
hooks.empty.fire();
}
});
});
}
// height/width overflow pass
if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
// Make sure that nothing sneaks out
// Record all 3 overflow attributes because IE9-10 do not
// change the overflow attribute when overflowX and
// overflowY are set to the same value
opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
// Set display property to inline-block for height/width
// animations on inline elements that are having width/height animated
display = jQuery.css( elem, "display" );
// Get default display if display is currently "none"
if ( display === "none" ) {
display = defaultDisplay( elem.nodeName );
}
if ( display === "inline" &&
jQuery.css( elem, "float" ) === "none" ) {
style.display = "inline-block";
}
}
if ( opts.overflow ) {
style.overflow = "hidden";
anim.always(function() {
style.overflow = opts.overflow[ 0 ];
style.overflowX = opts.overflow[ 1 ];
style.overflowY = opts.overflow[ 2 ];
});
}
// show/hide pass
for ( prop in props ) {
value = props[ prop ];
if ( rfxtypes.exec( value ) ) {
delete props[ prop ];
toggle = toggle || value === "toggle";
if ( value === ( hidden ? "hide" : "show" ) ) {
// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden
if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
hidden = true;
} else {
continue;
}
}
orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
}
}
if ( !jQuery.isEmptyObject( orig ) ) {
if ( dataShow ) {
if ( "hidden" in dataShow ) {
hidden = dataShow.hidden;
}
} else {
dataShow = data_priv.access( elem, "fxshow", {} );
}
// store state if its toggle - enables .stop().toggle() to "reverse"
if ( toggle ) {
dataShow.hidden = !hidden;
}
if ( hidden ) {
jQuery( elem ).show();
} else {
anim.done(function() {
jQuery( elem ).hide();
});
}
anim.done(function() {
var prop;
data_priv.remove( elem, "fxshow" );
for ( prop in orig ) {
jQuery.style( elem, prop, orig[ prop ] );
}
});
for ( prop in orig ) {
tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
if ( !( prop in dataShow ) ) {
dataShow[ prop ] = tween.start;
if ( hidden ) {
tween.end = tween.start;
tween.start = prop === "width" || prop === "height" ? 1 : 0;
}
}
}
}
}
function propFilter( props, specialEasing ) {
var index, name, easing, value, hooks;
// camelCase, specialEasing and expand cssHook pass
for ( index in props ) {
name = jQuery.camelCase( index );
easing = specialEasing[ name ];
value = props[ index ];
if ( jQuery.isArray( value ) ) {
easing = value[ 1 ];
value = props[ index ] = value[ 0 ];
}
if ( index !== name ) {
props[ name ] = value;
delete props[ index ];
}
hooks = jQuery.cssHooks[ name ];
if ( hooks && "expand" in hooks ) {
value = hooks.expand( value );
delete props[ name ];
// not quite $.extend, this wont overwrite keys already present.
// also - reusing 'index' from above because we have the correct "name"
for ( index in value ) {
if ( !( index in props ) ) {
props[ index ] = value[ index ];
specialEasing[ index ] = easing;
}
}
} else {
specialEasing[ name ] = easing;
}
}
}
function Animation( elem, properties, options ) {
var result,
stopped,
index = 0,
length = animationPrefilters.length,
deferred = jQuery.Deferred().always( function() {
// don't match elem in the :animated selector
delete tick.elem;
}),
tick = function() {
if ( stopped ) {
return false;
}
var currentTime = fxNow || createFxNow(),
remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)
temp = remaining / animation.duration || 0,
percent = 1 - temp,
index = 0,
length = animation.tweens.length;
for ( ; index < length ; index++ ) {
animation.tweens[ index ].run( percent );
}
deferred.notifyWith( elem, [ animation, percent, remaining ]);
if ( percent < 1 && length ) {
return remaining;
} else {
deferred.resolveWith( elem, [ animation ] );
return false;
}
},
animation = deferred.promise({
elem: elem,
props: jQuery.extend( {}, properties ),
opts: jQuery.extend( true, { specialEasing: {} }, options ),
originalProperties: properties,
originalOptions: options,
startTime: fxNow || createFxNow(),
duration: options.duration,
tweens: [],
createTween: function( prop, end ) {
var tween = jQuery.Tween( elem, animation.opts, prop, end,
animation.opts.specialEasing[ prop ] || animation.opts.easing );
animation.tweens.push( tween );
return tween;
},
stop: function( gotoEnd ) {
var index = 0,
// if we are going to the end, we want to run all the tweens
// otherwise we skip this part
length = gotoEnd ? animation.tweens.length : 0;
if ( stopped ) {
return this;
}
stopped = true;
for ( ; index < length ; index++ ) {
animation.tweens[ index ].run( 1 );
}
// resolve when we played the last frame
// otherwise, reject
if ( gotoEnd ) {
deferred.resolveWith( elem, [ animation, gotoEnd ] );
} else {
deferred.rejectWith( elem, [ animation, gotoEnd ] );
}
return this;
}
}),
props = animation.props;
propFilter( props, animation.opts.specialEasing );
for ( ; index < length ; index++ ) {
result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
if ( result ) {
return result;
}
}
jQuery.map( props, createTween, animation );
if ( jQuery.isFunction( animation.opts.start ) ) {
animation.opts.start.call( elem, animation );
}
jQuery.fx.timer(
jQuery.extend( tick, {
elem: elem,
anim: animation,
queue: animation.opts.queue
})
);
// attach callbacks from options
return animation.progress( animation.opts.progress )
.done( animation.opts.done, animation.opts.complete )
.fail( animation.opts.fail )
.always( animation.opts.always );
}
jQuery.Animation = jQuery.extend( Animation, {
tweener: function( props, callback ) {
if ( jQuery.isFunction( props ) ) {
callback = props;
props = [ "*" ];
} else {
props = props.split(" ");
}
var prop,
index = 0,
length = props.length;
for ( ; index < length ; index++ ) {
prop = props[ index ];
tweeners[ prop ] = tweeners[ prop ] || [];
tweeners[ prop ].unshift( callback );
}
},
prefilter: function( callback, prepend ) {
if ( prepend ) {
animationPrefilters.unshift( callback );
} else {
animationPrefilters.push( callback );
}
}
});
jQuery.speed = function( speed, easing, fn ) {
var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
complete: fn || !fn && easing ||
jQuery.isFunction( speed ) && speed,
duration: speed,
easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
};
opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
// normalize opt.queue - true/undefined/null -> "fx"
if ( opt.queue == null || opt.queue === true ) {
opt.queue = "fx";
}
// Queueing
opt.old = opt.complete;
opt.complete = function() {
if ( jQuery.isFunction( opt.old ) ) {
opt.old.call( this );
}
if ( opt.queue ) {
jQuery.dequeue( this, opt.queue );
}
};
return opt;
};
jQuery.fn.extend({
fadeTo: function( speed, to, easing, callback ) {
// show any hidden elements after setting opacity to 0
return this.filter( isHidden ).css( "opacity", 0 ).show()
// animate to the value specified
.end().animate({ opacity: to }, speed, easing, callback );
},
animate: function( prop, speed, easing, callback ) {
var empty = jQuery.isEmptyObject( prop ),
optall = jQuery.speed( speed, easing, callback ),
doAnimation = function() {
// Operate on a copy of prop so per-property easing won't be lost
var anim = Animation( this, jQuery.extend( {}, prop ), optall );
// Empty animations, or finishing resolves immediately
if ( empty || data_priv.get( this, "finish" ) ) {
anim.stop( true );
}
};
doAnimation.finish = doAnimation;
return empty || optall.queue === false ?
this.each( doAnimation ) :
this.queue( optall.queue, doAnimation );
},
stop: function( type, clearQueue, gotoEnd ) {
var stopQueue = function( hooks ) {
var stop = hooks.stop;
delete hooks.stop;
stop( gotoEnd );
};
if ( typeof type !== "string" ) {
gotoEnd = clearQueue;
clearQueue = type;
type = undefined;
}
if ( clearQueue && type !== false ) {
this.queue( type || "fx", [] );
}
return this.each(function() {
var dequeue = true,
index = type != null && type + "queueHooks",
timers = jQuery.timers,
data = data_priv.get( this );
if ( index ) {
if ( data[ index ] && data[ index ].stop ) {
stopQueue( data[ index ] );
}
} else {
for ( index in data ) {
if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
stopQueue( data[ index ] );
}
}
}
for ( index = timers.length; index--; ) {
if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
timers[ index ].anim.stop( gotoEnd );
dequeue = false;
timers.splice( index, 1 );
}
}
// start the next in the queue if the last step wasn't forced
// timers currently will call their complete callbacks, which will dequeue
// but only if they were gotoEnd
if ( dequeue || !gotoEnd ) {
jQuery.dequeue( this, type );
}
});
},
finish: function( type ) {
if ( type !== false ) {
type = type || "fx";
}
return this.each(function() {
var index,
data = data_priv.get( this ),
queue = data[ type + "queue" ],
hooks = data[ type + "queueHooks" ],
timers = jQuery.timers,
length = queue ? queue.length : 0;
// enable finishing flag on private data
data.finish = true;
// empty the queue first
jQuery.queue( this, type, [] );
if ( hooks && hooks.stop ) {
hooks.stop.call( this, true );
}
// look for any active animations, and finish them
for ( index = timers.length; index--; ) {
if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
timers[ index ].anim.stop( true );
timers.splice( index, 1 );
}
}
// look for any animations in the old queue and finish them
for ( index = 0; index < length; index++ ) {
if ( queue[ index ] && queue[ index ].finish ) {
queue[ index ].finish.call( this );
}
}
// turn off finishing flag
delete data.finish;
});
}
});
jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
var cssFn = jQuery.fn[ name ];
jQuery.fn[ name ] = function( speed, easing, callback ) {
return speed == null || typeof speed === "boolean" ?
cssFn.apply( this, arguments ) :
this.animate( genFx( name, true ), speed, easing, callback );
};
});
// Generate shortcuts for custom animations
jQuery.each({
slideDown: genFx("show"),
slideUp: genFx("hide"),
slideToggle: genFx("toggle"),
fadeIn: { opacity: "show" },
fadeOut: { opacity: "hide" },
fadeToggle: { opacity: "toggle" }
}, function( name, props ) {
jQuery.fn[ name ] = function( speed, easing, callback ) {
return this.animate( props, speed, easing, callback );
};
});
jQuery.timers = [];
jQuery.fx.tick = function() {
var timer,
i = 0,
timers = jQuery.timers;
fxNow = jQuery.now();
for ( ; i < timers.length; i++ ) {
timer = timers[ i ];
// Checks the timer has not already been removed
if ( !timer() && timers[ i ] === timer ) {
timers.splice( i--, 1 );
}
}
if ( !timers.length ) {
jQuery.fx.stop();
}
fxNow = undefined;
};
jQuery.fx.timer = function( timer ) {
if ( timer() && jQuery.timers.push( timer ) ) {
jQuery.fx.start();
}
};
jQuery.fx.interval = 13;
jQuery.fx.start = function() {
if ( !timerId ) {
timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
}
};
jQuery.fx.stop = function() {
clearInterval( timerId );
timerId = null;
};
jQuery.fx.speeds = {
slow: 600,
fast: 200,
// Default speed
_default: 400
};
// Based off of the plugin by Clint Helfers, with permission.
// http://blindsignals.com/index.php/2009/07/jquery-delay/
jQuery.fn.delay = function( time, type ) {
time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
type = type || "fx";
return this.queue( type, function( next, hooks ) {
var timeout = setTimeout( next, time );
hooks.stop = function() {
clearTimeout( timeout );
};
});
};
(function() {
var input = document.createElement( "input" ),
select = document.createElement( "select" ),
opt = select.appendChild( document.createElement( "option" ) );
input.type = "checkbox";
// Support: iOS 5.1, Android 4.x, Android 2.3
// Check the default checkbox/radio value ("" on old WebKit; "on" elsewhere)
support.checkOn = input.value !== "";
// Must access the parent to make an option select properly
// Support: IE9, IE10
support.optSelected = opt.selected;
// Make sure that the options inside disabled selects aren't marked as disabled
// (WebKit marks them as disabled)
select.disabled = true;
support.optDisabled = !opt.disabled;
// Check if an input maintains its value after becoming a radio
// Support: IE9, IE10
input = document.createElement( "input" );
input.value = "t";
input.type = "radio";
support.radioValue = input.value === "t";
})();
var nodeHook, boolHook,
attrHandle = jQuery.expr.attrHandle;
jQuery.fn.extend({
attr: function( name, value ) {
return access( this, jQuery.attr, name, value, arguments.length > 1 );
},
removeAttr: function( name ) {
return this.each(function() {
jQuery.removeAttr( this, name );
});
}
});
jQuery.extend({
attr: function( elem, name, value ) {
var hooks, ret,
nType = elem.nodeType;
// don't get/set attributes on text, comment and attribute nodes
if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
return;
}
// Fallback to prop when attributes are not supported
if ( typeof elem.getAttribute === strundefined ) {
return jQuery.prop( elem, name, value );
}
// All attributes are lowercase
// Grab necessary hook if one is defined
if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
name = name.toLowerCase();
hooks = jQuery.attrHooks[ name ] ||
( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );
}
if ( value !== undefined ) {
if ( value === null ) {
jQuery.removeAttr( elem, name );
} else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
return ret;
} else {
elem.setAttribute( name, value + "" );
return value;
}
} else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
return ret;
} else {
ret = jQuery.find.attr( elem, name );
// Non-existent attributes return null, we normalize to undefined
return ret == null ?
undefined :
ret;
}
},
removeAttr: function( elem, value ) {
var name, propName,
i = 0,
attrNames = value && value.match( rnotwhite );
if ( attrNames && elem.nodeType === 1 ) {
while ( (name = attrNames[i++]) ) {
propName = jQuery.propFix[ name ] || name;
// Boolean attributes get special treatment (#10870)
if ( jQuery.expr.match.bool.test( name ) ) {
// Set corresponding property to false
elem[ propName ] = false;
}
elem.removeAttribute( name );
}
}
},
attrHooks: {
type: {
set: function( elem, value ) {
if ( !support.radioValue && value === "radio" &&
jQuery.nodeName( elem, "input" ) ) {
// Setting the type on a radio button after the value resets the value in IE6-9
// Reset value to default in case type is set after value during creation
var val = elem.value;
elem.setAttribute( "type", value );
if ( val ) {
elem.value = val;
}
return value;
}
}
}
}
});
// Hooks for boolean attributes
boolHook = {
set: function( elem, value, name ) {
if ( value === false ) {
// Remove boolean attributes when set to false
jQuery.removeAttr( elem, name );
} else {
elem.setAttribute( name, name );
}
return name;
}
};
jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
var getter = attrHandle[ name ] || jQuery.find.attr;
attrHandle[ name ] = function( elem, name, isXML ) {
var ret, handle;
if ( !isXML ) {
// Avoid an infinite loop by temporarily removing this function from the getter
handle = attrHandle[ name ];
attrHandle[ name ] = ret;
ret = getter( elem, name, isXML ) != null ?
name.toLowerCase() :
null;
attrHandle[ name ] = handle;
}
return ret;
};
});
var rfocusable = /^(?:input|select|textarea|button)$/i;
jQuery.fn.extend({
prop: function( name, value ) {
return access( this, jQuery.prop, name, value, arguments.length > 1 );
},
removeProp: function( name ) {
return this.each(function() {
delete this[ jQuery.propFix[ name ] || name ];
});
}
});
jQuery.extend({
propFix: {
"for": "htmlFor",
"class": "className"
},
prop: function( elem, name, value ) {
var ret, hooks, notxml,
nType = elem.nodeType;
// don't get/set properties on text, comment and attribute nodes
if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
return;
}
notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
if ( notxml ) {
// Fix name and attach hooks
name = jQuery.propFix[ name ] || name;
hooks = jQuery.propHooks[ name ];
}
if ( value !== undefined ) {
return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?
ret :
( elem[ name ] = value );
} else {
return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ?
ret :
elem[ name ];
}
},
propHooks: {
tabIndex: {
get: function( elem ) {
return elem.hasAttribute( "tabindex" ) || rfocusable.test( elem.nodeName ) || elem.href ?
elem.tabIndex :
-1;
}
}
}
});
// Support: IE9+
// Selectedness for an option in an optgroup can be inaccurate
if ( !support.optSelected ) {
jQuery.propHooks.selected = {
get: function( elem ) {
var parent = elem.parentNode;
if ( parent && parent.parentNode ) {
parent.parentNode.selectedIndex;
}
return null;
}
};
}
jQuery.each([
"tabIndex",
"readOnly",
"maxLength",
"cellSpacing",
"cellPadding",
"rowSpan",
"colSpan",
"useMap",
"frameBorder",
"contentEditable"
], function() {
jQuery.propFix[ this.toLowerCase() ] = this;
});
var rclass = /[\t\r\n\f]/g;
jQuery.fn.extend({
addClass: function( value ) {
var classes, elem, cur, clazz, j, finalValue,
proceed = typeof value === "string" && value,
i = 0,
len = this.length;
if ( jQuery.isFunction( value ) ) {
return this.each(function( j ) {
jQuery( this ).addClass( value.call( this, j, this.className ) );
});
}
if ( proceed ) {
// The disjunction here is for better compressibility (see removeClass)
classes = ( value || "" ).match( rnotwhite ) || [];
for ( ; i < len; i++ ) {
elem = this[ i ];
cur = elem.nodeType === 1 && ( elem.className ?
( " " + elem.className + " " ).replace( rclass, " " ) :
" "
);
if ( cur ) {
j = 0;
while ( (clazz = classes[j++]) ) {
if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
cur += clazz + " ";
}
}
// only assign if different to avoid unneeded rendering.
finalValue = jQuery.trim( cur );
if ( elem.className !== finalValue ) {
elem.className = finalValue;
}
}
}
}
return this;
},
removeClass: function( value ) {
var classes, elem, cur, clazz, j, finalValue,
proceed = arguments.length === 0 || typeof value === "string" && value,
i = 0,
len = this.length;
if ( jQuery.isFunction( value ) ) {
return this.each(function( j ) {
jQuery( this ).removeClass( value.call( this, j, this.className ) );
});
}
if ( proceed ) {
classes = ( value || "" ).match( rnotwhite ) || [];
for ( ; i < len; i++ ) {
elem = this[ i ];
// This expression is here for better compressibility (see addClass)
cur = elem.nodeType === 1 && ( elem.className ?
( " " + elem.className + " " ).replace( rclass, " " ) :
""
);
if ( cur ) {
j = 0;
while ( (clazz = classes[j++]) ) {
// Remove *all* instances
while ( cur.indexOf( " " + clazz + " " ) >= 0 ) {
cur = cur.replace( " " + clazz + " ", " " );
}
}
// only assign if different to avoid unneeded rendering.
finalValue = value ? jQuery.trim( cur ) : "";
if ( elem.className !== finalValue ) {
elem.className = finalValue;
}
}
}
}
return this;
},
toggleClass: function( value, stateVal ) {
var type = typeof value;
if ( typeof stateVal === "boolean" && type === "string" ) {
return stateVal ? this.addClass( value ) : this.removeClass( value );
}
if ( jQuery.isFunction( value ) ) {
return this.each(function( i ) {
jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
});
}
return this.each(function() {
if ( type === "string" ) {
// toggle individual class names
var className,
i = 0,
self = jQuery( this ),
classNames = value.match( rnotwhite ) || [];
while ( (className = classNames[ i++ ]) ) {
// check each className given, space separated list
if ( self.hasClass( className ) ) {
self.removeClass( className );
} else {
self.addClass( className );
}
}
// Toggle whole class name
} else if ( type === strundefined || type === "boolean" ) {
if ( this.className ) {
// store className if set
data_priv.set( this, "__className__", this.className );
}
// If the element has a class name or if we're passed "false",
// then remove the whole classname (if there was one, the above saved it).
// Otherwise bring back whatever was previously saved (if anything),
// falling back to the empty string if nothing was stored.
this.className = this.className || value === false ? "" : data_priv.get( this, "__className__" ) || "";
}
});
},
hasClass: function( selector ) {
var className = " " + selector + " ",
i = 0,
l = this.length;
for ( ; i < l; i++ ) {
if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {
return true;
}
}
return false;
}
});
var rreturn = /\r/g;
jQuery.fn.extend({
val: function( value ) {
var hooks, ret, isFunction,
elem = this[0];
if ( !arguments.length ) {
if ( elem ) {
hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
return ret;
}
ret = elem.value;
return typeof ret === "string" ?
// handle most common string cases
ret.replace(rreturn, "") :
// handle cases where value is null/undef or number
ret == null ? "" : ret;
}
return;
}
isFunction = jQuery.isFunction( value );
return this.each(function( i ) {
var val;
if ( this.nodeType !== 1 ) {
return;
}
if ( isFunction ) {
val = value.call( this, i, jQuery( this ).val() );
} else {
val = value;
}
// Treat null/undefined as ""; convert numbers to string
if ( val == null ) {
val = "";
} else if ( typeof val === "number" ) {
val += "";
} else if ( jQuery.isArray( val ) ) {
val = jQuery.map( val, function( value ) {
return value == null ? "" : value + "";
});
}
hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
// If set returns undefined, fall back to normal setting
if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
this.value = val;
}
});
}
});
jQuery.extend({
valHooks: {
option: {
get: function( elem ) {
// attributes.value is undefined in Blackberry 4.7 but
// uses .value. See #6932
var val = elem.attributes.value;
return !val || val.specified ? elem.value : elem.text;
}
},
select: {
get: function( elem ) {
var value, option,
options = elem.options,
index = elem.selectedIndex,
one = elem.type === "select-one" || index < 0,
values = one ? null : [],
max = one ? index + 1 : options.length,
i = index < 0 ?
max :
one ? index : 0;
// Loop through all the selected options
for ( ; i < max; i++ ) {
option = options[ i ];
// IE6-9 doesn't update selected after form reset (#2551)
if ( ( option.selected || i === index ) &&
// Don't return options that are disabled or in a disabled optgroup
( support.optDisabled ? !option.disabled : option.getAttribute( "disabled" ) === null ) &&
( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
// Get the specific value for the option
value = jQuery( option ).val();
// We don't need an array for one selects
if ( one ) {
return value;
}
// Multi-Selects return an array
values.push( value );
}
}
return values;
},
set: function( elem, value ) {
var optionSet, option,
options = elem.options,
values = jQuery.makeArray( value ),
i = options.length;
while ( i-- ) {
option = options[ i ];
if ( (option.selected = jQuery.inArray( jQuery(option).val(), values ) >= 0) ) {
optionSet = true;
}
}
// force browsers to behave consistently when non-matching value is set
if ( !optionSet ) {
elem.selectedIndex = -1;
}
return values;
}
}
}
});
// Radios and checkboxes getter/setter
jQuery.each([ "radio", "checkbox" ], function() {
jQuery.valHooks[ this ] = {
set: function( elem, value ) {
if ( jQuery.isArray( value ) ) {
return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
}
}
};
if ( !support.checkOn ) {
jQuery.valHooks[ this ].get = function( elem ) {
// Support: Webkit
// "" is returned instead of "on" if a value isn't specified
return elem.getAttribute("value") === null ? "on" : elem.value;
};
}
});
// Return jQuery for attributes-only inclusion
jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " +
"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
"change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) {
// Handle event binding
jQuery.fn[ name ] = function( data, fn ) {
return arguments.length > 0 ?
this.on( name, null, data, fn ) :
this.trigger( name );
};
});
jQuery.fn.extend({
hover: function( fnOver, fnOut ) {
return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
},
bind: function( types, data, fn ) {
return this.on( types, null, data, fn );
},
unbind: function( types, fn ) {
return this.off( types, null, fn );
},
delegate: function( selector, types, data, fn ) {
return this.on( types, selector, data, fn );
},
undelegate: function( selector, types, fn ) {
// ( namespace ) or ( selector, types [, fn] )
return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn );
}
});
var nonce = jQuery.now();
var rquery = (/\?/);
// Support: Android 2.3
// Workaround failure to string-cast null input
jQuery.parseJSON = function( data ) {
return JSON.parse( data + "" );
};
// Cross-browser xml parsing
jQuery.parseXML = function( data ) {
var xml, tmp;
if ( !data || typeof data !== "string" ) {
return null;
}
// Support: IE9
try {
tmp = new DOMParser();
xml = tmp.parseFromString( data, "text/xml" );
} catch ( e ) {
xml = undefined;
}
if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
jQuery.error( "Invalid XML: " + data );
}
return xml;
};
var
// Document location
ajaxLocParts,
ajaxLocation,
rhash = /#.*$/,
rts = /([?&])_=[^&]*/,
rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
// #7653, #8125, #8152: local protocol detection
rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
rnoContent = /^(?:GET|HEAD)$/,
rprotocol = /^\/\//,
rurl = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,
/* Prefilters
* 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
* 2) These are called:
* - BEFORE asking for a transport
* - AFTER param serialization (s.data is a string if s.processData is true)
* 3) key is the dataType
* 4) the catchall symbol "*" can be used
* 5) execution will start with transport dataType and THEN continue down to "*" if needed
*/
prefilters = {},
/* Transports bindings
* 1) key is the dataType
* 2) the catchall symbol "*" can be used
* 3) selection will start with transport dataType and THEN go to "*" if needed
*/
transports = {},
// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
allTypes = "*/".concat("*");
// #8138, IE may throw an exception when accessing
// a field from window.location if document.domain has been set
try {
ajaxLocation = location.href;
} catch( e ) {
// Use the href attribute of an A element
// since IE will modify it given document.location
ajaxLocation = document.createElement( "a" );
ajaxLocation.href = "";
ajaxLocation = ajaxLocation.href;
}
// Segment location into parts
ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];
// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
function addToPrefiltersOrTransports( structure ) {
// dataTypeExpression is optional and defaults to "*"
return function( dataTypeExpression, func ) {
if ( typeof dataTypeExpression !== "string" ) {
func = dataTypeExpression;
dataTypeExpression = "*";
}
var dataType,
i = 0,
dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];
if ( jQuery.isFunction( func ) ) {
// For each dataType in the dataTypeExpression
while ( (dataType = dataTypes[i++]) ) {
// Prepend if requested
if ( dataType[0] === "+" ) {
dataType = dataType.slice( 1 ) || "*";
(structure[ dataType ] = structure[ dataType ] || []).unshift( func );
// Otherwise append
} else {
(structure[ dataType ] = structure[ dataType ] || []).push( func );
}
}
}
};
}
// Base inspection function for prefilters and transports
function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
var inspected = {},
seekingTransport = ( structure === transports );
function inspect( dataType ) {
var selected;
inspected[ dataType ] = true;
jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
options.dataTypes.unshift( dataTypeOrTransport );
inspect( dataTypeOrTransport );
return false;
} else if ( seekingTransport ) {
return !( selected = dataTypeOrTransport );
}
});
return selected;
}
return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
}
// A special extend for ajax options
// that takes "flat" options (not to be deep extended)
// Fixes #9887
function ajaxExtend( target, src ) {
var key, deep,
flatOptions = jQuery.ajaxSettings.flatOptions || {};
for ( key in src ) {
if ( src[ key ] !== undefined ) {
( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];
}
}
if ( deep ) {
jQuery.extend( true, target, deep );
}
return target;
}
/* Handles responses to an ajax request:
* - finds the right dataType (mediates between content-type and expected dataType)
* - returns the corresponding response
*/
function ajaxHandleResponses( s, jqXHR, responses ) {
var ct, type, finalDataType, firstDataType,
contents = s.contents,
dataTypes = s.dataTypes;
// Remove auto dataType and get content-type in the process
while ( dataTypes[ 0 ] === "*" ) {
dataTypes.shift();
if ( ct === undefined ) {
ct = s.mimeType || jqXHR.getResponseHeader("Content-Type");
}
}
// Check if we're dealing with a known content-type
if ( ct ) {
for ( type in contents ) {
if ( contents[ type ] && contents[ type ].test( ct ) ) {
dataTypes.unshift( type );
break;
}
}
}
// Check to see if we have a response for the expected dataType
if ( dataTypes[ 0 ] in responses ) {
finalDataType = dataTypes[ 0 ];
} else {
// Try convertible dataTypes
for ( type in responses ) {
if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
finalDataType = type;
break;
}
if ( !firstDataType ) {
firstDataType = type;
}
}
// Or just use first one
finalDataType = finalDataType || firstDataType;
}
// If we found a dataType
// We add the dataType to the list if needed
// and return the corresponding response
if ( finalDataType ) {
if ( finalDataType !== dataTypes[ 0 ] ) {
dataTypes.unshift( finalDataType );
}
return responses[ finalDataType ];
}
}
/* Chain conversions given the request and the original response
* Also sets the responseXXX fields on the jqXHR instance
*/
function ajaxConvert( s, response, jqXHR, isSuccess ) {
var conv2, current, conv, tmp, prev,
converters = {},
// Work with a copy of dataTypes in case we need to modify it for conversion
dataTypes = s.dataTypes.slice();
// Create converters map with lowercased keys
if ( dataTypes[ 1 ] ) {
for ( conv in s.converters ) {
converters[ conv.toLowerCase() ] = s.converters[ conv ];
}
}
current = dataTypes.shift();
// Convert to each sequential dataType
while ( current ) {
if ( s.responseFields[ current ] ) {
jqXHR[ s.responseFields[ current ] ] = response;
}
// Apply the dataFilter if provided
if ( !prev && isSuccess && s.dataFilter ) {
response = s.dataFilter( response, s.dataType );
}
prev = current;
current = dataTypes.shift();
if ( current ) {
// There's only work to do if current dataType is non-auto
if ( current === "*" ) {
current = prev;
// Convert response if prev dataType is non-auto and differs from current
} else if ( prev !== "*" && prev !== current ) {
// Seek a direct converter
conv = converters[ prev + " " + current ] || converters[ "* " + current ];
// If none found, seek a pair
if ( !conv ) {
for ( conv2 in converters ) {
// If conv2 outputs current
tmp = conv2.split( " " );
if ( tmp[ 1 ] === current ) {
// If prev can be converted to accepted input
conv = converters[ prev + " " + tmp[ 0 ] ] ||
converters[ "* " + tmp[ 0 ] ];
if ( conv ) {
// Condense equivalence converters
if ( conv === true ) {
conv = converters[ conv2 ];
// Otherwise, insert the intermediate dataType
} else if ( converters[ conv2 ] !== true ) {
current = tmp[ 0 ];
dataTypes.unshift( tmp[ 1 ] );
}
break;
}
}
}
}
// Apply converter (if not an equivalence)
if ( conv !== true ) {
// Unless errors are allowed to bubble, catch and return them
if ( conv && s[ "throws" ] ) {
response = conv( response );
} else {
try {
response = conv( response );
} catch ( e ) {
return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current };
}
}
}
}
}
}
return { state: "success", data: response };
}
jQuery.extend({
// Counter for holding the number of active queries
active: 0,
// Last-Modified header cache for next request
lastModified: {},
etag: {},
ajaxSettings: {
url: ajaxLocation,
type: "GET",
isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
global: true,
processData: true,
async: true,
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
/*
timeout: 0,
data: null,
dataType: null,
username: null,
password: null,
cache: null,
throws: false,
traditional: false,
headers: {},
*/
accepts: {
"*": allTypes,
text: "text/plain",
html: "text/html",
xml: "application/xml, text/xml",
json: "application/json, text/javascript"
},
contents: {
xml: /xml/,
html: /html/,
json: /json/
},
responseFields: {
xml: "responseXML",
text: "responseText",
json: "responseJSON"
},
// Data converters
// Keys separate source (or catchall "*") and destination types with a single space
converters: {
// Convert anything to text
"* text": String,
// Text to html (true = no transformation)
"text html": true,
// Evaluate text as a json expression
"text json": jQuery.parseJSON,
// Parse text as xml
"text xml": jQuery.parseXML
},
// For options that shouldn't be deep extended:
// you can add your own custom options here if
// and when you create one that shouldn't be
// deep extended (see ajaxExtend)
flatOptions: {
url: true,
context: true
}
},
// Creates a full fledged settings object into target
// with both ajaxSettings and settings fields.
// If target is omitted, writes into ajaxSettings.
ajaxSetup: function( target, settings ) {
return settings ?
// Building a settings object
ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
// Extending ajaxSettings
ajaxExtend( jQuery.ajaxSettings, target );
},
ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
ajaxTransport: addToPrefiltersOrTransports( transports ),
// Main method
ajax: function( url, options ) {
// If url is an object, simulate pre-1.5 signature
if ( typeof url === "object" ) {
options = url;
url = undefined;
}
// Force options to be an object
options = options || {};
var transport,
// URL without anti-cache param
cacheURL,
// Response headers
responseHeadersString,
responseHeaders,
// timeout handle
timeoutTimer,
// Cross-domain detection vars
parts,
// To know if global events are to be dispatched
fireGlobals,
// Loop variable
i,
// Create the final options object
s = jQuery.ajaxSetup( {}, options ),
// Callbacks context
callbackContext = s.context || s,
// Context for global events is callbackContext if it is a DOM node or jQuery collection
globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?
jQuery( callbackContext ) :
jQuery.event,
// Deferreds
deferred = jQuery.Deferred(),
completeDeferred = jQuery.Callbacks("once memory"),
// Status-dependent callbacks
statusCode = s.statusCode || {},
// Headers (they are sent all at once)
requestHeaders = {},
requestHeadersNames = {},
// The jqXHR state
state = 0,
// Default abort message
strAbort = "canceled",
// Fake xhr
jqXHR = {
readyState: 0,
// Builds headers hashtable if needed
getResponseHeader: function( key ) {
var match;
if ( state === 2 ) {
if ( !responseHeaders ) {
responseHeaders = {};
while ( (match = rheaders.exec( responseHeadersString )) ) {
responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
}
}
match = responseHeaders[ key.toLowerCase() ];
}
return match == null ? null : match;
},
// Raw string
getAllResponseHeaders: function() {
return state === 2 ? responseHeadersString : null;
},
// Caches the header
setRequestHeader: function( name, value ) {
var lname = name.toLowerCase();
if ( !state ) {
name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
requestHeaders[ name ] = value;
}
return this;
},
// Overrides response content-type header
overrideMimeType: function( type ) {
if ( !state ) {
s.mimeType = type;
}
return this;
},
// Status-dependent callbacks
statusCode: function( map ) {
var code;
if ( map ) {
if ( state < 2 ) {
for ( code in map ) {
// Lazy-add the new callback in a way that preserves old ones
statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
}
} else {
// Execute the appropriate callbacks
jqXHR.always( map[ jqXHR.status ] );
}
}
return this;
},
// Cancel the request
abort: function( statusText ) {
var finalText = statusText || strAbort;
if ( transport ) {
transport.abort( finalText );
}
done( 0, finalText );
return this;
}
};
// Attach deferreds
deferred.promise( jqXHR ).complete = completeDeferred.add;
jqXHR.success = jqXHR.done;
jqXHR.error = jqXHR.fail;
// Remove hash character (#7531: and string promotion)
// Add protocol if not provided (prefilters might expect it)
// Handle falsy url in the settings object (#10093: consistency with old signature)
// We also use the url parameter if available
s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" )
.replace( rprotocol, ajaxLocParts[ 1 ] + "//" );
// Alias method option to type as per ticket #12004
s.type = options.method || options.type || s.method || s.type;
// Extract dataTypes list
s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ];
// A cross-domain request is in order when we have a protocol:host:port mismatch
if ( s.crossDomain == null ) {
parts = rurl.exec( s.url.toLowerCase() );
s.crossDomain = !!( parts &&
( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||
( parts[ 3 ] || ( parts[ 1 ] === "http:" ? "80" : "443" ) ) !==
( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? "80" : "443" ) ) )
);
}
// Convert data if not already a string
if ( s.data && s.processData && typeof s.data !== "string" ) {
s.data = jQuery.param( s.data, s.traditional );
}
// Apply prefilters
inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
// If request was aborted inside a prefilter, stop there
if ( state === 2 ) {
return jqXHR;
}
// We can fire global events as of now if asked to
fireGlobals = s.global;
// Watch for a new set of requests
if ( fireGlobals && jQuery.active++ === 0 ) {
jQuery.event.trigger("ajaxStart");
}
// Uppercase the type
s.type = s.type.toUpperCase();
// Determine if request has content
s.hasContent = !rnoContent.test( s.type );
// Save the URL in case we're toying with the If-Modified-Since
// and/or If-None-Match header later on
cacheURL = s.url;
// More options handling for requests with no content
if ( !s.hasContent ) {
// If data is available, append data to url
if ( s.data ) {
cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data );
// #9682: remove data so that it's not used in an eventual retry
delete s.data;
}
// Add anti-cache in url if needed
if ( s.cache === false ) {
s.url = rts.test( cacheURL ) ?
// If there is already a '_' parameter, set its value
cacheURL.replace( rts, "$1_=" + nonce++ ) :
// Otherwise add one to the end
cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++;
}
}
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
if ( s.ifModified ) {
if ( jQuery.lastModified[ cacheURL ] ) {
jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
}
if ( jQuery.etag[ cacheURL ] ) {
jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
}
}
// Set the correct header, if data is being sent
if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
jqXHR.setRequestHeader( "Content-Type", s.contentType );
}
// Set the Accepts header for the server, depending on the dataType
jqXHR.setRequestHeader(
"Accept",
s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
s.accepts[ "*" ]
);
// Check for headers option
for ( i in s.headers ) {
jqXHR.setRequestHeader( i, s.headers[ i ] );
}
// Allow custom headers/mimetypes and early abort
if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
// Abort if not done already and return
return jqXHR.abort();
}
// aborting is no longer a cancellation
strAbort = "abort";
// Install callbacks on deferreds
for ( i in { success: 1, error: 1, complete: 1 } ) {
jqXHR[ i ]( s[ i ] );
}
// Get transport
transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
// If no transport, we auto-abort
if ( !transport ) {
done( -1, "No Transport" );
} else {
jqXHR.readyState = 1;
// Send global event
if ( fireGlobals ) {
globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
}
// Timeout
if ( s.async && s.timeout > 0 ) {
timeoutTimer = setTimeout(function() {
jqXHR.abort("timeout");
}, s.timeout );
}
try {
state = 1;
transport.send( requestHeaders, done );
} catch ( e ) {
// Propagate exception as error if not done
if ( state < 2 ) {
done( -1, e );
// Simply rethrow otherwise
} else {
throw e;
}
}
}
// Callback for when everything is done
function done( status, nativeStatusText, responses, headers ) {
var isSuccess, success, error, response, modified,
statusText = nativeStatusText;
// Called once
if ( state === 2 ) {
return;
}
// State is "done" now
state = 2;
// Clear timeout if it exists
if ( timeoutTimer ) {
clearTimeout( timeoutTimer );
}
// Dereference transport for early garbage collection
// (no matter how long the jqXHR object will be used)
transport = undefined;
// Cache response headers
responseHeadersString = headers || "";
// Set readyState
jqXHR.readyState = status > 0 ? 4 : 0;
// Determine if successful
isSuccess = status >= 200 && status < 300 || status === 304;
// Get response data
if ( responses ) {
response = ajaxHandleResponses( s, jqXHR, responses );
}
// Convert no matter what (that way responseXXX fields are always set)
response = ajaxConvert( s, response, jqXHR, isSuccess );
// If successful, handle type chaining
if ( isSuccess ) {
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
if ( s.ifModified ) {
modified = jqXHR.getResponseHeader("Last-Modified");
if ( modified ) {
jQuery.lastModified[ cacheURL ] = modified;
}
modified = jqXHR.getResponseHeader("etag");
if ( modified ) {
jQuery.etag[ cacheURL ] = modified;
}
}
// if no content
if ( status === 204 || s.type === "HEAD" ) {
statusText = "nocontent";
// if not modified
} else if ( status === 304 ) {
statusText = "notmodified";
// If we have data, let's convert it
} else {
statusText = response.state;
success = response.data;
error = response.error;
isSuccess = !error;
}
} else {
// We extract error from statusText
// then normalize statusText and status for non-aborts
error = statusText;
if ( status || !statusText ) {
statusText = "error";
if ( status < 0 ) {
status = 0;
}
}
}
// Set data for the fake xhr object
jqXHR.status = status;
jqXHR.statusText = ( nativeStatusText || statusText ) + "";
// Success/Error
if ( isSuccess ) {
deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
} else {
deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
}
// Status-dependent callbacks
jqXHR.statusCode( statusCode );
statusCode = undefined;
if ( fireGlobals ) {
globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
[ jqXHR, s, isSuccess ? success : error ] );
}
// Complete
completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
if ( fireGlobals ) {
globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
// Handle the global AJAX counter
if ( !( --jQuery.active ) ) {
jQuery.event.trigger("ajaxStop");
}
}
}
return jqXHR;
},
getJSON: function( url, data, callback ) {
return jQuery.get( url, data, callback, "json" );
},
getScript: function( url, callback ) {
return jQuery.get( url, undefined, callback, "script" );
}
});
jQuery.each( [ "get", "post" ], function( i, method ) {
jQuery[ method ] = function( url, data, callback, type ) {
// shift arguments if data argument was omitted
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
data = undefined;
}
return jQuery.ajax({
url: url,
type: method,
dataType: type,
data: data,
success: callback
});
};
});
// Attach a bunch of functions for handling common AJAX events
jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
jQuery.fn[ type ] = function( fn ) {
return this.on( type, fn );
};
});
jQuery._evalUrl = function( url ) {
return jQuery.ajax({
url: url,
type: "GET",
dataType: "script",
async: false,
global: false,
"throws": true
});
};
jQuery.fn.extend({
wrapAll: function( html ) {
var wrap;
if ( jQuery.isFunction( html ) ) {
return this.each(function( i ) {
jQuery( this ).wrapAll( html.call(this, i) );
});
}
if ( this[ 0 ] ) {
// The elements to wrap the target around
wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
if ( this[ 0 ].parentNode ) {
wrap.insertBefore( this[ 0 ] );
}
wrap.map(function() {
var elem = this;
while ( elem.firstElementChild ) {
elem = elem.firstElementChild;
}
return elem;
}).append( this );
}
return this;
},
wrapInner: function( html ) {
if ( jQuery.isFunction( html ) ) {
return this.each(function( i ) {
jQuery( this ).wrapInner( html.call(this, i) );
});
}
return this.each(function() {
var self = jQuery( this ),
contents = self.contents();
if ( contents.length ) {
contents.wrapAll( html );
} else {
self.append( html );
}
});
},
wrap: function( html ) {
var isFunction = jQuery.isFunction( html );
return this.each(function( i ) {
jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );
});
},
unwrap: function() {
return this.parent().each(function() {
if ( !jQuery.nodeName( this, "body" ) ) {
jQuery( this ).replaceWith( this.childNodes );
}
}).end();
}
});
jQuery.expr.filters.hidden = function( elem ) {
// Support: Opera <= 12.12
// Opera reports offsetWidths and offsetHeights less than zero on some elements
return elem.offsetWidth <= 0 && elem.offsetHeight <= 0;
};
jQuery.expr.filters.visible = function( elem ) {
return !jQuery.expr.filters.hidden( elem );
};
var r20 = /%20/g,
rbracket = /\[\]$/,
rCRLF = /\r?\n/g,
rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
rsubmittable = /^(?:input|select|textarea|keygen)/i;
function buildParams( prefix, obj, traditional, add ) {
var name;
if ( jQuery.isArray( obj ) ) {
// Serialize array item.
jQuery.each( obj, function( i, v ) {
if ( traditional || rbracket.test( prefix ) ) {
// Treat each array item as a scalar.
add( prefix, v );
} else {
// Item is non-scalar (array or object), encode its numeric index.
buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add );
}
});
} else if ( !traditional && jQuery.type( obj ) === "object" ) {
// Serialize object item.
for ( name in obj ) {
buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
}
} else {
// Serialize scalar item.
add( prefix, obj );
}
}
// Serialize an array of form elements or a set of
// key/values into a query string
jQuery.param = function( a, traditional ) {
var prefix,
s = [],
add = function( key, value ) {
// If value is a function, invoke it and return its value
value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value );
s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
};
// Set traditional to true for jQuery <= 1.3.2 behavior.
if ( traditional === undefined ) {
traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
}
// If an array was passed in, assume that it is an array of form elements.
if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
// Serialize the form elements
jQuery.each( a, function() {
add( this.name, this.value );
});
} else {
// If traditional, encode the "old" way (the way 1.3.2 or older
// did it), otherwise encode params recursively.
for ( prefix in a ) {
buildParams( prefix, a[ prefix ], traditional, add );
}
}
// Return the resulting serialization
return s.join( "&" ).replace( r20, "+" );
};
jQuery.fn.extend({
serialize: function() {
return jQuery.param( this.serializeArray() );
},
serializeArray: function() {
return this.map(function() {
// Can add propHook for "elements" to filter or add form elements
var elements = jQuery.prop( this, "elements" );
return elements ? jQuery.makeArray( elements ) : this;
})
.filter(function() {
var type = this.type;
// Use .is( ":disabled" ) so that fieldset[disabled] works
return this.name && !jQuery( this ).is( ":disabled" ) &&
rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
( this.checked || !rcheckableType.test( type ) );
})
.map(function( i, elem ) {
var val = jQuery( this ).val();
return val == null ?
null :
jQuery.isArray( val ) ?
jQuery.map( val, function( val ) {
return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
}) :
{ name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
}).get();
}
});
jQuery.ajaxSettings.xhr = function() {
try {
return new XMLHttpRequest();
} catch( e ) {}
};
var xhrId = 0,
xhrCallbacks = {},
xhrSuccessStatus = {
// file protocol always yields status code 0, assume 200
0: 200,
// Support: IE9
// #1450: sometimes IE returns 1223 when it should be 204
1223: 204
},
xhrSupported = jQuery.ajaxSettings.xhr();
// Support: IE9
// Open requests must be manually aborted on unload (#5280)
if ( window.ActiveXObject ) {
jQuery( window ).on( "unload", function() {
for ( var key in xhrCallbacks ) {
xhrCallbacks[ key ]();
}
});
}
support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
support.ajax = xhrSupported = !!xhrSupported;
jQuery.ajaxTransport(function( options ) {
var callback;
// Cross domain only allowed if supported through XMLHttpRequest
if ( support.cors || xhrSupported && !options.crossDomain ) {
return {
send: function( headers, complete ) {
var i,
xhr = options.xhr(),
id = ++xhrId;
xhr.open( options.type, options.url, options.async, options.username, options.password );
// Apply custom fields if provided
if ( options.xhrFields ) {
for ( i in options.xhrFields ) {
xhr[ i ] = options.xhrFields[ i ];
}
}
// Override mime type if needed
if ( options.mimeType && xhr.overrideMimeType ) {
xhr.overrideMimeType( options.mimeType );
}
// X-Requested-With header
// For cross-domain requests, seeing as conditions for a preflight are
// akin to a jigsaw puzzle, we simply never set it to be sure.
// (it can always be set on a per-request basis or even using ajaxSetup)
// For same-domain requests, won't change header if already provided.
if ( !options.crossDomain && !headers["X-Requested-With"] ) {
headers["X-Requested-With"] = "XMLHttpRequest";
}
// Set headers
for ( i in headers ) {
xhr.setRequestHeader( i, headers[ i ] );
}
// Callback
callback = function( type ) {
return function() {
if ( callback ) {
delete xhrCallbacks[ id ];
callback = xhr.onload = xhr.onerror = null;
if ( type === "abort" ) {
xhr.abort();
} else if ( type === "error" ) {
complete(
// file: protocol always yields status 0; see #8605, #14207
xhr.status,
xhr.statusText
);
} else {
complete(
xhrSuccessStatus[ xhr.status ] || xhr.status,
xhr.statusText,
// Support: IE9
// Accessing binary-data responseText throws an exception
// (#11426)
typeof xhr.responseText === "string" ? {
text: xhr.responseText
} : undefined,
xhr.getAllResponseHeaders()
);
}
}
};
};
// Listen to events
xhr.onload = callback();
xhr.onerror = callback("error");
// Create the abort callback
callback = xhrCallbacks[ id ] = callback("abort");
// Do send the request
// This may raise an exception which is actually
// handled in jQuery.ajax (so no try/catch here)
xhr.send( options.hasContent && options.data || null );
},
abort: function() {
if ( callback ) {
callback();
}
}
};
}
});
// Install script dataType
jQuery.ajaxSetup({
accepts: {
script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
},
contents: {
script: /(?:java|ecma)script/
},
converters: {
"text script": function( text ) {
jQuery.globalEval( text );
return text;
}
}
});
// Handle cache's special case and crossDomain
jQuery.ajaxPrefilter( "script", function( s ) {
if ( s.cache === undefined ) {
s.cache = false;
}
if ( s.crossDomain ) {
s.type = "GET";
}
});
// Bind script tag hack transport
jQuery.ajaxTransport( "script", function( s ) {
// This transport only deals with cross domain requests
if ( s.crossDomain ) {
var script, callback;
return {
send: function( _, complete ) {
script = jQuery("
Messages